@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
17 lines (16 loc) • 1 kB
JavaScript
'use client';
import '@ui5/webcomponents/dist/MultiComboBoxItemCustom.js';
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 };