UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

168 lines (167 loc) 8.16 kB
import '@ui5/webcomponents/dist/ComboBox.js'; import type { ComboBoxSelectionChangeEventDetail } from '@ui5/webcomponents/dist/ComboBox.js'; import type ComboBoxFilter from '@ui5/webcomponents/dist/types/ComboBoxFilter.js'; import type ValueState from '@ui5/webcomponents-base/dist/types/ValueState.js'; import type { ReactNode } from 'react'; import type { CommonProps, Ui5CustomEvent, Ui5DomRef, UI5WCSlotsNode } from '../../types/index.js'; interface ComboBoxAttributes { /** * Defines the accessible ARIA name of the component. * @default undefined */ accessibleName?: string | undefined; /** * Receives id(or many ids) of the elements that label the component * @default undefined */ accessibleNameRef?: string | undefined; /** * Defines whether the component is in disabled state. * * **Note:** A disabled component is completely noninteractive. * @default false */ disabled?: boolean; /** * Defines the filter type of the component. * @default "StartsWithPerTerm" */ filter?: ComboBoxFilter | keyof typeof ComboBoxFilter; /** * Indicates whether a loading indicator should be shown in the picker. * @default false */ loading?: boolean; /** * Determines the name by which the component will be identified upon submission in an HTML form. * * **Note:** This property is only applicable within the context of an HTML Form element. * * **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents**. * @default undefined */ name?: string | undefined; /** * Defines whether the value will be autocompleted to match an item * * **Note:** Available since [v1.19.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v1.19.0) of **@ui5/webcomponents**. * @default false */ noTypeahead?: boolean; /** * Defines a short hint intended to aid the user with data entry when the * component has no value. * @default undefined */ placeholder?: string | undefined; /** * Defines whether the component is read-only. * * **Note:** A read-only component is not editable, * but still provides visual feedback upon user interaction. * @default false */ readonly?: boolean; /** * Defines whether the component is required. * @default false */ required?: boolean; /** * Defines whether the clear icon of the combobox will be shown. * * **Note:** Available since [v1.20.1](https://github.com/SAP/ui5-webcomponents/releases/tag/v1.20.1) of **@ui5/webcomponents**. * @default false */ showClearIcon?: boolean; /** * Defines the value of the component. */ value?: string; /** * Defines the value state of the component. * @default "None" */ valueState?: ValueState | keyof typeof ValueState; } interface ComboBoxDomRef extends Required<ComboBoxAttributes>, Ui5DomRef { } interface ComboBoxPropTypes extends ComboBoxAttributes, Omit<CommonProps, keyof ComboBoxAttributes | 'children' | 'icon' | 'valueStateMessage' | 'onChange' | 'onInput' | 'onSelectionChange'> { /** * Defines the component items. */ children?: ReactNode | ReactNode[]; /** * Defines the icon to be displayed in the input field. * * __Note:__ The content of the prop will be rendered into a [&lt;slot&gt;](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot) by assigning the respective [slot](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/slot) attribute (`slot="icon"`). * Since you can't change the DOM order of slots when declaring them within a prop, it might prove beneficial to manually mount them as part of the component's children, especially when facing problems with the reading order of screen readers. * * __Note:__ When passing a custom React component to this prop, you have to make sure your component reads the `slot` prop and appends it to the most outer element of your component. * Learn more about it [here](https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs). */ icon?: UI5WCSlotsNode; /** * Defines the value state message that will be displayed as pop up under the component. * The value state message slot should contain only one root element. * * **Note:** If not specified, a default text (in the respective language) will be displayed. * * **Note:** The `valueStateMessage` would be displayed, * when the `ComboBox` is in `Information`, `Critical` or `Negative` value state. * * __Note:__ The content of the prop will be rendered into a [&lt;slot&gt;](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot) by assigning the respective [slot](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/slot) attribute (`slot="valueStateMessage"`). * Since you can't change the DOM order of slots when declaring them within a prop, it might prove beneficial to manually mount them as part of the component's children, especially when facing problems with the reading order of screen readers. * * __Note:__ When passing a custom React component to this prop, you have to make sure your component reads the `slot` prop and appends it to the most outer element of your component. * Learn more about it [here](https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs). */ valueStateMessage?: UI5WCSlotsNode; /** * Fired when the input operation has finished by pressing Enter, focusout or an item is selected. */ onChange?: (event: Ui5CustomEvent<ComboBoxDomRef>) => void; /** * Fired when typing in input or clear icon is pressed. * * **Note:** filterValue property is updated, input is changed. */ onInput?: (event: Ui5CustomEvent<ComboBoxDomRef>) => void; /** * Fired when selection is changed by user interaction */ onSelectionChange?: (event: Ui5CustomEvent<ComboBoxDomRef, ComboBoxSelectionChangeEventDetail>) => void; } /** * The `ComboBox` component represents a drop-down menu with a list of the available options and a text input field to narrow down the options. * * It is commonly used to enable users to select an option from a predefined list. * * ### Structure * The `ComboBox` consists of the following elements: * * - Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value. * - Drop-down arrow - expands\collapses the option list. * - Option list - the list of available options. * * ### Keyboard Handling * * The `ComboBox` provides advanced keyboard handling. * * - [F4], [Alt]+[Up], or [Alt]+[Down] - Toggles the picker. * - [Escape] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value. * - [Enter] or [Return] - If picker is open, takes over the currently selected item and closes it. * - [Down] - Selects the next matching item in the picker. * - [Up] - Selects the previous matching item in the picker. * - [Page Down] - Moves selection down by page size (10 items by default). * - [Page Up] - Moves selection up by page size (10 items by default). * - [Home] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item. * - [End] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) */ declare const ComboBox: import("react").ForwardRefExoticComponent<ComboBoxPropTypes & import("../../internal/withWebComponent.js").WithWebComponentPropTypes & import("react").RefAttributes<ComboBoxDomRef>>; export { ComboBox }; export type { ComboBoxDomRef, ComboBoxPropTypes };