UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

16 lines (15 loc) 766 B
import type { JSX } from '../../stencil-public-runtime'; import type { TableCallbacksPropType, TableDataFootPropType, TableDataPropType, TableHeaderCellsPropType, TableSelectionPropType, TableStatelessProps } from '../../schema'; import type { MinWidthPropType } from '../../schema/props/min-width'; import type { TableSettingsPropType } from '../../schema/props/table-settings'; export declare class KolTableStateless implements TableStatelessProps { _data: TableDataPropType; _dataFoot?: TableDataFootPropType; _headerCells: TableHeaderCellsPropType; _label: string; _minWidth: MinWidthPropType; _on?: TableCallbacksPropType; _selection?: TableSelectionPropType; _tableSettings?: TableSettingsPropType; render(): JSX.Element; }