ChangeEvent
Specifies the event arguments triggered when the selected value in the dropdown changes.
Props
The following table outlines the props for the ChangeEvent:
| Name | Type | Default | Description |
|---|---|---|---|
| event | MouseEvent<Element> | KeyboardEvent<Element> | ChangeEvent<HTMLInputElement> | - | Specifies the original event arguments. |
| itemData | T | null | - | Specifies the currently selected list item. |
| previousItemData | T | null | - | Specifies the previously selected list item. |
| value | number | string | boolean | object | null | - | Specifies the changed value. |