@redsift/table 7.7.0-alpha.1 → 7.7.0-alpha.3

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 CHANGED
@@ -52,7 +52,7 @@ The Design System is following a monorepo architecture, providing multiple packa
52
52
 
53
53
  - `@redsift/dashboard`
54
54
 
55
- This package provides dashboard-related components. Charts are based on [dc.js](https://dc-js.github.io/dc.js/) and [crossfilter](https://crossfilter.github.io/crossfilter/) and datagrids are based on `@redsift/table`. It contains every filterable elements to use inside a dashboard. For static charts, see `@redsift/charts`.
55
+ This package provides dashboard-related components. Charts are based on [dc.js](https://dc-js.github.io/dc.js/), [d3fc](https://d3fc.io/) and [crossfilter](https://crossfilter.github.io/crossfilter/) and datagrids are based on `@redsift/table`. It contains every filterable elements to use inside a dashboard. For static charts, see `@redsift/charts`.
56
56
 
57
57
  - _Deprecated_ `@redsift/design-system-legacy`
58
58
 
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _mui_x_data_grid_pro from '@mui/x-data-grid-pro';
2
- import { GridFilterItem, GridCellParams, GridFilterInputMultipleValue, GridFilterOperator, DataGridProProps, GridColumns, GridToolbarExportProps, GridToolbarFilterButtonProps, GridToolbarColumnsButton, GridToolbarDensitySelector } from '@mui/x-data-grid-pro';
2
+ import { GridFilterItem, GridCellParams, GridFilterInputMultipleValue, GridFilterOperator, DataGridProProps, GridToolbarExportProps, GridToolbarFilterButtonProps, GridToolbarColumnsButton, GridToolbarDensitySelector } from '@mui/x-data-grid-pro';
3
3
  export { GridAlignment, GridColDef, GridColumns, GridFilterItem, GridFilterModel, GridSelectionModel, getGridBooleanOperators, getGridDateOperators, getGridNumericOperators, getGridSingleSelectOperators, getGridStringOperators } from '@mui/x-data-grid-pro';
4
4
  import { Comp as Comp$1, ShieldVariant } from '@redsift/design-system';
5
5
  import { JSXElementConstructor, RefObject, Ref, ReactElement, ComponentProps, ReactNode } from 'react';
@@ -36,8 +36,6 @@ interface DataGridProps extends DataGridProProps {
36
36
  license?: string;
37
37
  /** Height. A default one is set to prevent rendering all rows. */
38
38
  height?: string;
39
- /** Columns. */
40
- column?: GridColumns;
41
39
  /** Toolbar. A default one is provided but every button from this default Toolbar can be customized and the entire Toolbar can be replaced. */
42
40
  toolbar?: JSXElementConstructor<any>;
43
41
  /** Whether the Toolbar is displayed or not. */
package/package.json CHANGED
@@ -28,12 +28,12 @@
28
28
  "test": "cp -f ../../.env ./ && NODE_ENV=test jest --verbose"
29
29
  },
30
30
  "types": "types.d.ts",
31
- "version": "7.7.0-alpha.1",
31
+ "version": "7.7.0-alpha.3",
32
32
  "dependencies": {
33
33
  "@mui/material": "^5.11.0",
34
34
  "@mui/styled-engine-sc": "^5.11.0",
35
- "@redsift/design-system": "^7.7.0-alpha.1",
36
- "@redsift/icons": "^7.7.0-alpha.1"
35
+ "@redsift/design-system": "^7.7.0-alpha.3",
36
+ "@redsift/icons": "^7.7.0-alpha.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@babel/core": "^7.8.3",
@@ -92,5 +92,5 @@
92
92
  "react-dom": "17 || 18",
93
93
  "styled-components": "^5.3.5"
94
94
  },
95
- "gitHead": "b918b728f4a5dd5674bf07fe006d73993090d108"
95
+ "gitHead": "1fe6148b6c8a47fdc02153c0a905e0d73e85812f"
96
96
  }