Overview
Input Number is a form entry component, where users can enter a number to submit.
Input Number can limit the number of characters with max and min, as well as limit the values with its min and max properties.
Sample
Usage
- Number submissions in forms
Accessibility
Keyboard navigation
| Key | Function |
|---|---|
Tab | Moves focus in and out of the component. |
Tab and Shift | Moves focus in and out of the component. |
Esc | When clearable is true, clears the component's value. |
API reference
Properties
| Property | Attribute | Description | Type | Default |
|---|---|---|---|---|
| alignment | alignment | Specifies the text alignment of the component's | Alignment | "start" |
| autocomplete | autocomplete | Specifies the type of content to autocomplete, for use in forms. Read the native attribute's documentation on MDN for more info. | AutoFill | |
| clearable | clearable | When | boolean | false |
| disabled | disabled | When | boolean | false |
| form | form | Specifies the When not set, the component is associated with its ancestor form element, if one exists. | string | |
| groupSeparator | group-separator | When | boolean | false |
| icon | icon | Specifies an icon to display. | IconName | boolean | |
| iconFlipRtl | icon-flip-rtl | When | boolean | false |
| integer | integer | When | boolean | false |
| label | label | Specifies an accessible label for the component's button or hyperlink. | string | |
| labelText | label-text | Specifies the component's label text. | string | |
| loading | loading | When | boolean | false |
| max | max | When the component resides in a form,
specifies the maximum | number | |
| maxLength | max-length | When the component resides in a form,
specifies the maximum length of text for the component's | number | |
| messageOverrides | Overrides individual strings used by the component. | Record<string, unknown> | undefined | ||
| min | min | When the component resides in a form,
specifies the minimum | number | |
| minLength | min-length | When the component resides in a form,
specifies the minimum length of text for the component's | number | |
| name | name | Specifies the name of the component. Required to pass the component's | string | |
| numberButtonType | number-button-type | Specifies the placement of the buttons. | InputPlacement | "vertical" |
| numberingSystem | numbering-system | Specifies the Unicode numeral system used by the component for localization. | NumberingSystem | |
| placeholder | placeholder | Specifies the component's placeholder text. | string | |
| prefixText | prefix-text | Specifies text to display at the start of the component. | string | |
| readOnly | read-only | When | boolean | false |
| required | required | When | boolean | false |
| scale | scale | Specifies the size of the component. | Scale | "m" |
| status | status | Specifies the input field's status, which determines message and icons. | Status | "idle" |
| step | step | Specifies the granularity that the component's | number | "any" | |
| suffixText | suffix-text | Specifies text to display at the end of the component. | string | |
| validationIcon | validation-icon | Specifies the validation icon to display under the component. | IconName | boolean | |
| validationMessage | validation-message | Specifies the validation message to display under the component. | string | |
| validity | The component's current validation state. | ValidityState | ||
| value | value | The component's value. | string |
Slots
| Name | Description |
|---|---|
| action | A slot for positioning a |
| label-content | A slot for rendering content next to the component's |
Styles
| Name | Description |
|---|---|
| --calcite-input-actions-background-color | Specifies the background color of the component's |
| --calcite-input-actions-background-color-hover | Specifies the background color of the component's |
| --calcite-input-actions-background-color-press | Specifies the background color of the component's |
| --calcite-input-actions-icon-color | Specifies the icon color of the component's |
| --calcite-input-actions-icon-color-hover | Specifies the icon color of the component's |
| --calcite-input-actions-icon-color-press | Specifies the icon color of the component's |
| --calcite-input-loading-background-color | When |
| --calcite-input-loading-fill-color | When |
| --calcite-input-number-background-color | Specifies the component's background color. |
| --calcite-input-number-border-color | Specifies the component's border color. |
| --calcite-input-number-corner-radius | Specifies the component's border radius. |
| --calcite-input-number-icon-color | Specifies the component's icon color. |
| --calcite-input-number-height | Specifies the component's height. |
| --calcite-input-number-placeholder-text-color | Specifies the text color of the component's placeholder. |
| --calcite-input-number-text-color | Specifies the component's text color. |
| --calcite-input-number-text-color-focus | Specifies the component's text color when focused. |
| --calcite-input-prefix-size | When |
| --calcite-input-prefix-text-color | When |
| --calcite-input-suffix-size | When |
| --calcite-input-suffix-text-color | When |
Events
| Name | Description | Behavior |
|---|---|---|
| calciteInputNumberChange | Fires each time a new | |
| calciteInputNumberInput | Fires each time a new |
Methods
| Name | Description | Signature |
|---|---|---|
| componentOnReady | Creates a promise that resolves once the component is fully loaded. | componentOnReady(): Promise<this> |
| selectText | Selects the text of the component's | selectText(): Promise<void> |
| setFocus | Sets focus on the component. | setFocus(options?: FocusOptions): Promise<void> |