Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@commercetools-uikit/creatable-select-input
Advanced tools
An input component getting a selection from the user, and where options can also be created by the user.
import { CreatableSelectInput } from '@commercetools-frontend/ui-kit';
<CreatableSelectInput
name="form-field-name"
value={value}
onChange={handleChange}
options={[
{ value: 'one', label: 'One' },
{ value: 'two', label: 'Two' },
]}
/>;
Props | Type | Required | Values | Default | Description |
---|---|---|---|---|---|
horizontalConstraint | object | - | s , m , l , xl , scale | scale | Horizontal size limit of the input fields. |
hasError | bool | - | - | - | Indicates the input field has an error |
hasWarning | bool | - | - | - | Indicates the input field has a warning |
aria-label | string | - | - | - | Aria label (for assistive tech) |
aria-labelledby | string | - | - | - | HTML ID of an element that should be used as the label (for assistive tech) |
isAutofocussed | bool | - | - | - | Focus the control when it is mounted |
backspaceRemovesValue | bool | - | - | true | Remove the currently focused option when the user presses backspace |
components | objectOf(func) | - | - | - | Map of components to overwrite the default ones, see what components you can override |
filterOption | func | - | - | - | Custom method to filter whether an option should be displayed in the menu |
id | string | - | - | - | The id of the search input |
containerId | string | - | - | - | The id to set on the SelectContainer component |
isClearable | bool | - | - | - | Is the select value clearable |
isDisabled | bool | - | - | - | Is the select disabled |
isReadOnly | bool | - | - | - | Is the select read-only |
isOptionDisabled | func | - | - | - | Override the built-in logic to detect whether an option is disabled |
isMulti | bool | - | - | - | Support multiple selected options |
isSearchable | bool | - | - | true | Whether to enable search functionality |
maxMenuHeight | number | - | - | - | Maximum height of the menu before scrolling |
menuPortalTarget | HTMLElement | - | - | - | Dom element to portal the select menu to |
menuPortalZIndex | number | - | - | - | z-index value for the menu portal |
menuShouldBlockScroll | bool | - | - | false | whether the menu should block scroll while open |
name | string | - | - | - | Name of the HTML Input (optional - without this, no input will be rendered) |
noOptionsMessage | func | - | - | - | Can be used to render a custom value when there are no options (either because of no search results, or all options have been used, or there were none in the first place). Gets called with { inputValue: String } . inputValue will be an empty string when no search text is present. |
onBlur | func | - | - | - | Handle blur events on the control |
onChange | func | ✅ | - | - | Called with a fake event when value changes. The event's target.name will be the name supplied in props. The event's target.value will hold the value. The value will be the selected option, or an array of options in case isMulti is true . |
onFocus | func | - | - | - | Handle focus events on the control |
onInputChange | func | - | - | - | Handle change events on the input |
options | arrayOf() | - | - | - | Array of options that populate the select menu |
placeholder | string | - | - | - | Placeholder text for the select value |
tabIndex | string | - | - | "0" | Sets the tabIndex attribute on the input |
tabSelectsValue | bool | - | - | true | Select the currently focused option when the user presses tab |
value | string / array | - | - | - | The value of the select; reflected by the selected option |
allowCreateWhileLoading | bool | - | - | - | Allow options to be created while the isLoading prop is true. Useful to prevent the "create new ..." option being displayed while async results are still being loaded. |
formatCreateLabel | func | - | - | - | Gets the label for the "create new ..." option in the menu. Is given the current input value. |
isValidNewOption | func | - | - | - | Determines whether the "create new ..." option should be displayed based on the current input value, select value and options array. |
getNewOptionData | func | - | - | - | Returns the data for the new option when it is created. Used to display the value, and is passed to onChange. |
onCreateOption | func | - | - | - | If provided, this will be called with the input value when a new option is created, and onChange will not be called. Use this when you need more control over what happens when new options are created. |
createOptionPosition | string | - | "first" , "last" | "last" | Sets the position of the createOption element in your options list. |
showOptionGroupDivider | boolean | - | - | false | Determines if option groups will be separated by a divider |
This input is built on top of react-select
v2.
It supports mostly same properties as react-select
. Behaviour for some props was changed, and support for others was dropped.
In case you need one of the currently excluded props, feel free to open a PR adding them.
options
The options support a isDisabled
property which will render the option with a disabled style and will prevent users from selecting it.
isTouched(touched)
Expects to be called with an array or boolean.
Returns true
when truthy.
It is possible to customize SelectInput
by passing the components
property.
SelectInput
exports the default underlying components as static exports.
Components available as static exports are:
ClearIndicator
Control
DropdownIndicator
DownChevron
CrossIcon
Group
GroupHeading
IndicatorsContainer
IndicatorSeparator
Input
LoadingIndicator
Menu
MenuList
MenuPortal
LoadingMessage
NoOptionsMessage
MultiValue
MultiValueContainer
MultiValueLabel
MultiValueRemove
Option
Placeholder
SelectContainer
SingleValue
ValueContainer
See the official documentation for more information about the props they receive.
FAQs
An input component getting a selection from the user, and where options can also be created by the user.
The npm package @commercetools-uikit/creatable-select-input receives a total of 2,982 weekly downloads. As such, @commercetools-uikit/creatable-select-input popularity was classified as popular.
We found that @commercetools-uikit/creatable-select-input demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.