@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
13 lines (12 loc) • 563 B
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { TableDataFootPropType, TableDataPropType, TableHeaderCellsPropType, TableStatelessProps, TableCallbacksPropType, TableSelectionPropType } from '../../schema';
export declare class KolTableStateless implements TableStatelessProps {
_data: TableDataPropType;
_dataFoot?: TableDataFootPropType;
_headerCells: TableHeaderCellsPropType;
_label: string;
_minWidth?: string;
_on?: TableCallbacksPropType;
_selection?: TableSelectionPropType;
render(): JSX.Element;
}