@redsift/table 10.2.0-muiv5 → 10.3.0-alpha.1
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 +10 -7
- package/index.js +440 -372
- package/index.js.map +1 -1
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as _mui_x_data_grid_pro from '@mui/x-data-grid-pro';
|
|
2
2
|
import { GridFilterItem, GridCellParams, GridFilterOperator, GridFilterInputMultipleValue, DataGridProProps, GridFilterModel, GridToolbarExportProps, GridToolbarFilterButtonProps, GridToolbarColumnsButton, GridToolbarDensitySelector } from '@mui/x-data-grid-pro';
|
|
3
|
-
export
|
|
3
|
+
export * from '@mui/x-data-grid-pro';
|
|
4
|
+
export { GridAlignment, GridColDef, GridFilterItem, GridFilterModel, getGridBooleanOperators, getGridDateOperators, getGridSingleSelectOperators } from '@mui/x-data-grid-pro';
|
|
4
5
|
import { Theme, Comp, IconProps, NotificationsColorPalette, ProductColorPalette, ShieldVariant } from '@redsift/design-system';
|
|
5
6
|
import React, { ReactNode, ComponentProps, RefObject } from 'react';
|
|
6
7
|
import { TablePaginationProps } from '@mui/material';
|
|
@@ -10,7 +11,7 @@ declare const DETAIL_PANEL_TOGGLE_COL_DEF: _mui_x_data_grid_pro.GridColDef<any,
|
|
|
10
11
|
declare const IS_BETWEEN: {
|
|
11
12
|
label: string;
|
|
12
13
|
value: string;
|
|
13
|
-
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
14
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams<any, any>) => boolean) | null;
|
|
14
15
|
InputComponent: (props: any) => JSX.Element;
|
|
15
16
|
};
|
|
16
17
|
|
|
@@ -78,9 +79,11 @@ interface DataGridProps extends Partial<Pick<DataGridProProps, 'rows'>>, Omit<Da
|
|
|
78
79
|
paginationProps?: Omit<TablePaginationProps, 'component' | 'count' | 'page' | 'onPageChange' | 'rowsPerPage' | 'onRowsPerPageChange' | 'rowsPerPageOptions' | 'paginationMode'>;
|
|
79
80
|
/** Theme. */
|
|
80
81
|
theme?: Theme;
|
|
82
|
+
onSelectionStatusChange?: (newSelectionStatus: SelectionStatusType) => void;
|
|
81
83
|
}
|
|
84
|
+
type SelectionStatusType = 'page' | 'table' | 'other' | 'none';
|
|
82
85
|
type SelectionStatus = {
|
|
83
|
-
type:
|
|
86
|
+
type: SelectionStatusType;
|
|
84
87
|
numberOfSelectedRows: number;
|
|
85
88
|
numberOfSelectedRowsInPage?: number;
|
|
86
89
|
page?: number;
|
|
@@ -95,12 +98,12 @@ type StyledDataGridProps = {
|
|
|
95
98
|
declare const DataGrid: Comp<DataGridProps, HTMLDivElement>;
|
|
96
99
|
|
|
97
100
|
interface CompletionResponseItem {
|
|
98
|
-
|
|
99
|
-
|
|
101
|
+
field: string;
|
|
102
|
+
operator: string;
|
|
100
103
|
value?: string;
|
|
101
104
|
}
|
|
102
105
|
type CompletionResponse = {
|
|
103
|
-
|
|
106
|
+
logicOperator: 'and' | 'or';
|
|
104
107
|
items: CompletionResponseItem[];
|
|
105
108
|
};
|
|
106
109
|
interface LocaleText {
|
|
@@ -215,4 +218,4 @@ interface TextCellProps extends ComponentProps<'div'> {
|
|
|
215
218
|
*/
|
|
216
219
|
declare const TextCell: Comp<TextCellProps, HTMLDivElement>;
|
|
217
220
|
|
|
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 };
|
|
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 };
|