UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 941 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `MultiComboBoxItemCustom` is a multi-combobox item component * that allows placing custom content inside a multi-combobox item. * The `text` property is used for filtering and token display. * For highlighting functionality, see `@ui5/webcomponents-base/dist/util/generateHighlightedMarkup.js`. * * __Note:__ This is a UI5 Web Component! [MultiComboBoxItemCustom UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/MultiComboBoxItemCustom) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.24.0](https://github.com/UI5/webcomponents/releases/tag/v2.24.0) of __@ui5/webcomponents__. */ const MultiComboBoxItemCustom = withWebComponent('ui5-mcb-item-custom', ['text', 'value'], [], [], ['click']); MultiComboBoxItemCustom.displayName = 'MultiComboBoxItemCustom'; export { MultiComboBoxItemCustom };