@redsift/table 10.3.0-muiv5-alpha.6 → 10.3.0-muiv5-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 CHANGED
@@ -78,12 +78,9 @@ interface DataGridProps extends Partial<Pick<DataGridProProps, 'rows'>>, Omit<Da
78
78
  paginationProps?: Omit<TablePaginationProps, 'component' | 'count' | 'page' | 'onPageChange' | 'rowsPerPage' | 'onRowsPerPageChange' | 'rowsPerPageOptions' | 'paginationMode'>;
79
79
  /** Theme. */
80
80
  theme?: Theme;
81
- onSelectionStatusChange?: (newSelectionStatus: SelectionStatusType) => void;
82
- isPreviousData?: boolean;
83
81
  }
84
- type SelectionStatusType = 'page' | 'table' | 'other' | 'none';
85
82
  type SelectionStatus = {
86
- type: SelectionStatusType;
83
+ type: 'page' | 'table' | 'other' | 'none';
87
84
  numberOfSelectedRows: number;
88
85
  numberOfSelectedRowsInPage?: number;
89
86
  page?: number;
@@ -218,4 +215,4 @@ interface TextCellProps extends ComponentProps<'div'> {
218
215
  */
219
216
  declare const TextCell: Comp<TextCellProps, HTMLDivElement>;
220
217
 
221
- 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, SelectionStatusType, StyledDataGridProps, TextCell, Toolbar, getCompletion, getGridNumericOperators, getGridStringArrayOperators, getGridStringOperators };
218
+ 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 };