UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

32 lines (31 loc) 1.76 kB
import '@ui5/webcomponents/dist/TableHeaderCellActionAI.js'; import type { TableHeaderCellActionClickEventDetail } from '@ui5/webcomponents/dist/TableHeaderCellActionBase.js'; import type { CommonProps, Ui5CustomEvent, Ui5DomRef } from '@ui5/webcomponents-react-base'; interface TableHeaderCellActionAIAttributes { } interface TableHeaderCellActionAIDomRef extends Required<TableHeaderCellActionAIAttributes>, Ui5DomRef { } interface TableHeaderCellActionAIPropTypes extends TableHeaderCellActionAIAttributes, Omit<CommonProps, 'onClick'> { /** * Fired when a header cell action is clicked. * * **Note:** Available since [v2.8.0](https://github.com/UI5/webcomponents/releases/tag/v2.8.0) of **@ui5/webcomponents**. * * | cancelable | bubbles | * | :--------: | :-----: | * | ❌|✅| */ onClick?: (event: Ui5CustomEvent<TableHeaderCellActionAIDomRef, TableHeaderCellActionClickEventDetail>) => void; } /** * The `TableHeaderCellActionAI` component defines a dedicated AI action for the table column. * * * * __Note:__ This is a UI5 Web Component! [TableHeaderCellActionAI UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/TableHeaderCellActionAI) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.8.0](https://github.com/UI5/webcomponents/releases/tag/v2.8.0) of __@ui5/webcomponents__. */ declare const TableHeaderCellActionAI: import("react").ForwardRefExoticComponent<TableHeaderCellActionAIPropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<TableHeaderCellActionAIDomRef>>; export { TableHeaderCellActionAI }; export type { TableHeaderCellActionAIDomRef, TableHeaderCellActionAIPropTypes };