Input
Input component is a component that is used to get user input in a text field.
Import
import { CInput } from '@chakra-ui/vue-next';
Usage
Here's a basic usage example of the CInput
component:
<c-input placeholder="Basic usage" />
Changing the size of the Input
The Input
component comes in four sizes. The default is md
.
- xs (24px)
- sm (32px)
- md (40px)
- lg (48px)
<c-stack spacing="3" w="2xl" align-items="center"> <c-input placeholder="extra small size" size="xs" /> <c-input placeholder="small size" size="sm" /> <c-input placeholder="medium size" size="md" /> <c-input placeholder="large size" size="lg" /></c-stack>
If you want to use the native DOM size
attribute you can use the htmlSize
prop. For it to work as expected you will also need to provide the width
prop set to auto
.
<c-input html-size="4" width="auto" />
Changing the appearance of the input
The input component comes in 4 variants: outline
, unstyled
, flushed
, and filled
. Pass the variant
prop and set it to one of these values.
<c-stack spacing="3" w="2xl" align-items="center"> <c-input variant='outline' placeholder='Outline' /> <c-input variant='filled' placeholder='Filled' /> <c-input variant='flushed' placeholder='Flushed' /> <c-input variant='unstyled' placeholder='Unstyled' /></c-stack>
Left and Right Addons
Like bootstrap, you can add addons to the left and right of the Input
component. Chakra UI exports InputGroup
, InputLeftAddon
, and InputRightAddon
to help with this use case.
<c-stack spacing="4" w="xl" align-items="center"> <c-input-group> <c-input-left-addon>+234</c-input-left-addon> <c-input type="tel" rounded-left="0" placeholder="phone number" /> </c-input-group> <c-input-group> <c-input-left-addon>https://</c-input-left-addon> <c-input rounded="0" placeholder="mysite" /> <c-input-right-addon>.com</c-input-right-addon> </c-input-group></c-stack>
Add elements inside Input
In some scenarios, you might need to add an icon or button inside the input component. Chakra UI exports InputLeftElement
and InputRightElement
to help with this use case.
If the left or right is an icon or text, you can pass pointerEvents="none"
to InputLeftElement
or InputRightElement
to ensure that clicking on them focused the input.
<c-stack spacing="4" w="xl" align-items="center"> <c-input-group> <c-input-left-element><c-icon name="phone" color="gray.300" /></c-input-left-element> <c-input type="phone" placeholder="Phone number" /> </c-input-group> <c-input-group> <c-input-left-element color="gray.300" fontSize="1.2em">¥</c-input-left-element> <c-input placeholder="Enter amount" /> <c-input-right-element><c-icon name="check" color="green.500" /></c-input-right-element> </c-input-group></c-stack>
Password Input Example
Let's use these components to create a password input with a show/hide password functionality:
<template> <c-input-group size="md"> <c-input pr="4.5rem" :type="show ? 'text' : 'password'" placeholder="Enter password" v-model="password" /> <c-input-right-element width="4.5rem"> <c-button h="1.75rem" size="sm" @click="show = !show"> {{ show ? 'Hide' : 'Show' }}
</c-button> </c-input-right-element> </c-input-group></template>
<script setup> import { CInput, CInputGroup, CInputRightElement } from '@chakra-ui/vue-next'; const show = ref(false); const password = ref('kurama<3naruto');</script>
Changing the focus and error border colors
You can change the border color that shows when the input receives focus (focusBorderColor
) and when isInvalid
is set to true
(errorBorderColor
). The value can be set to a color in the $chakraTheme
object, like green.400
or a raw CSS value.
<c-stack spacing="4" w="xl" align-items="center"> <c-input focus-border-color="lime" placeholder="Here is a sample placeholder" /> <c-input focus-border-color="pink.400" placeholder="Here is a sample placeholder" /> <c-input is-invalid error-border-color="red.300" placeholder="Here is a sample placeholder" /> <c-input is-invalid error-border-color="crimson" placeholder="Here is a sample placeholder" /></c-stack>
Styling the placeholder
The placeholder of an input can be styled by using the _placeholder
prop. Per default the placeholder has an opacity of 0.6, so it can be necessary to set the opacity to 1 if you want the placeholder to have a specific color.
<c-stack spacing="4" w="xl" align-items="center"> <c-input placeholder='default placeholder' /> <c-input placeholder='custom placeholder' :_placeholder="{ opacity: 1, color: 'gray.500' }" /> <c-input color='teal' placeholder='custom placeholder' :_placeholder="{ color: 'inherit' }" /> <c-input color='tomato' placeholder='custom placeholder' :_placeholder="{ opacity: 0.4, color: 'inherit' }" /></c-stack>
Input Methods other than Text
You can use different types with Input
such as dateTime, color, search, file etc.
Date and Time Picker
<c-input type="datetime-local" placeholder="Select Date and Time" size="md" />
Check for different input types available : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input#input_types
Props
The Input component composes PseudoBox so you can pass all CPseudoBox
props, and normal HTMLInput
attributes.
Name | Type | Default | Description |
---|---|---|---|
as | HTMLElement or Vue.Component | input | The component to use in place of input . |
aria-label | string | Accessibility label to use, in scenarios where the input has no visible label. A11y: It's usefult for screen readers. | |
aria-describedby | string | Accessibility label to use, in scenarios where the input has no visible label. A11y: It's usefult for screen readers. | |
isDisabled | boolean | false | If true , the input will be disabled. This sets aria-disabled=true and you can style this state by passing _disabled prop. |
isInvalid | boolean | false | If true , the input will indicate an error. This sets aria-invalid=true and you can style this state by passing _invalid prop. |
isRequired | boolean | false | If true , the input element will be required. |
isFullWidth | boolean | false | If true , the input element will span the full width of it's parent. |
isReadOnly | boolean | false | If true , prevents the value of the input from being edited. |
size | sm , md , lg | md | The visual size of the input element. |
variant | outline , unstyled , flushed , filled | outline | The variant of the input style to use. |
focusBorderColor | string | The border color when the input is focused. | |
errorBorderColor | string | The border color when isInvalid is set to true . |
Edit this page on GitHub