stratosphere-ui 2.2.4 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,10 +16,11 @@ export interface TableProps<DataType extends GenericDataType> extends Omit<Table
|
|
|
16
16
|
highlightWhenSelected?: boolean;
|
|
17
17
|
isLoading?: boolean;
|
|
18
18
|
metadata?: PaginationMetadata;
|
|
19
|
+
onRowClick?: (row: Row<DataType>) => void;
|
|
19
20
|
pinCols?: boolean;
|
|
20
21
|
pinRows?: boolean;
|
|
21
22
|
rowClassName?: Argument | ((row: Row<DataType>) => Argument);
|
|
22
23
|
size?: TableSize;
|
|
23
24
|
zebra?: boolean;
|
|
24
25
|
}
|
|
25
|
-
export declare const Table: <DataType extends GenericDataType>({ bodyClassName, cellClassName, cellClassNames, className, enableGlobalFilter, enableRowHover, enableRowSelection, enableSelectAll, headerClassName, hideHeader, highlightWhenSelected, initialState, isLoading, metadata, pinCols, pinRows, rowClassName, size, zebra, ...props }: TableProps<DataType>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const Table: <DataType extends GenericDataType>({ bodyClassName, cellClassName, cellClassNames, className, enableGlobalFilter, enableRowHover, enableRowSelection, enableSelectAll, headerClassName, hideHeader, highlightWhenSelected, initialState, isLoading, metadata, onRowClick, pinCols, pinRows, rowClassName, size, zebra, ...props }: TableProps<DataType>) => import("react/jsx-runtime").JSX.Element;
|