@redsift/table 10.3.0-alpha.6 → 10.3.0-alpha.8
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.
- package/index.d.ts +2 -5
- package/index.js +356 -496
- package/index.js.map +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -79,12 +79,9 @@ interface DataGridProps extends Partial<Pick<DataGridProProps, 'rows'>>, Omit<Da
|
|
|
79
79
|
paginationProps?: Omit<TablePaginationProps, 'component' | 'count' | 'page' | 'onPageChange' | 'rowsPerPage' | 'onRowsPerPageChange' | 'rowsPerPageOptions' | 'paginationMode'>;
|
|
80
80
|
/** Theme. */
|
|
81
81
|
theme?: Theme;
|
|
82
|
-
onSelectionStatusChange?: (newSelectionStatus: SelectionStatusType) => void;
|
|
83
|
-
isPreviousData?: boolean;
|
|
84
82
|
}
|
|
85
|
-
type SelectionStatusType = 'page' | 'table' | 'other' | 'none';
|
|
86
83
|
type SelectionStatus = {
|
|
87
|
-
type:
|
|
84
|
+
type: 'page' | 'table' | 'other' | 'none';
|
|
88
85
|
numberOfSelectedRows: number;
|
|
89
86
|
numberOfSelectedRowsInPage?: number;
|
|
90
87
|
page?: number;
|
|
@@ -219,4 +216,4 @@ interface TextCellProps extends ComponentProps<'div'> {
|
|
|
219
216
|
*/
|
|
220
217
|
declare const TextCell: Comp<TextCellProps, HTMLDivElement>;
|
|
221
218
|
|
|
222
|
-
export { CONTAINS_ANY_OF, CONTAINS_ANY_OF_I, CompletionResponse, DEFAULT_OPERATORS, DETAIL_PANEL_TOGGLE_COL_DEF, DataGrid, DataGridProps, ENDS_WITH_ANY_OF, FilterConfig, GridToolbarFilterSemanticField, GridToolbarFilterSemanticFieldProps, IS_ANY_OF, IS_BETWEEN, IS_NOT_ANY_OF, STARTS_WITH_ANY_OF, SelectionStatus,
|
|
219
|
+
export { CONTAINS_ANY_OF, CONTAINS_ANY_OF_I, CompletionResponse, DEFAULT_OPERATORS, DETAIL_PANEL_TOGGLE_COL_DEF, DataGrid, DataGridProps, ENDS_WITH_ANY_OF, FilterConfig, GridToolbarFilterSemanticField, GridToolbarFilterSemanticFieldProps, IS_ANY_OF, IS_BETWEEN, IS_NOT_ANY_OF, STARTS_WITH_ANY_OF, SelectionStatus, StyledDataGridProps, TextCell, Toolbar, getCompletion, getGridNumericOperators, getGridStringArrayOperators, getGridStringOperators };
|