@redsift/table 7.8.1 → 8.0.0-alpha.0
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/CONTRIBUTING.md +2 -2
- package/index.d.ts +8 -1
- package/index.js +14807 -112
- package/index.js.map +1 -1
- package/package.json +9 -6
package/CONTRIBUTING.md
CHANGED
|
@@ -48,11 +48,11 @@ The Design System is following a monorepo architecture, providing multiple packa
|
|
|
48
48
|
|
|
49
49
|
- `@redsift/charts`
|
|
50
50
|
|
|
51
|
-
This package provides charts components. Charts are based on [d3.js](https://d3js.org/) and
|
|
51
|
+
This package provides charts components. Charts are based on [d3.js](https://d3js.org/) for computation, [react](https://react.dev/) for rendering and events and [react-spring](https://www.react-spring.dev/) for animations and transitions.
|
|
52
52
|
|
|
53
53
|
- `@redsift/dashboard`
|
|
54
54
|
|
|
55
|
-
This package provides dashboard-related components
|
|
55
|
+
This package provides dashboard-related components and decorators to make charts and datagrid filterable using [crossfilter](https://crossfilter.github.io/crossfilter/).
|
|
56
56
|
|
|
57
57
|
- _Deprecated_ `@redsift/design-system-legacy`
|
|
58
58
|
|
package/index.d.ts
CHANGED
|
@@ -22,6 +22,13 @@ declare const ENDS_WITH_ANY_OF: {
|
|
|
22
22
|
|
|
23
23
|
declare const IS_ANY_OF: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>;
|
|
24
24
|
|
|
25
|
+
declare const IS_BETWEEN: {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
29
|
+
InputComponent: (props: any) => JSX.Element;
|
|
30
|
+
};
|
|
31
|
+
|
|
25
32
|
declare const STARTS_WITH_ANY_OF: {
|
|
26
33
|
label: string;
|
|
27
34
|
value: string;
|
|
@@ -122,4 +129,4 @@ interface TextCellProps extends ComponentProps<'div'> {
|
|
|
122
129
|
*/
|
|
123
130
|
declare const TextCell: Comp<TextCellProps, HTMLDivElement>;
|
|
124
131
|
|
|
125
|
-
export { CONTAINS_ANY_OF, DETAIL_PANEL_TOGGLE_COL_DEF, DataGrid, DataGridProps, ENDS_WITH_ANY_OF, IS_ANY_OF, STARTS_WITH_ANY_OF, StyledDataGridProps, TextCell, Toolbar, getGridStringArrayOperators };
|
|
132
|
+
export { CONTAINS_ANY_OF, DETAIL_PANEL_TOGGLE_COL_DEF, DataGrid, DataGridProps, ENDS_WITH_ANY_OF, IS_ANY_OF, IS_BETWEEN, STARTS_WITH_ANY_OF, StyledDataGridProps, TextCell, Toolbar, getGridStringArrayOperators };
|