@redsift/dashboard 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 +41 -446
- package/index.js +1478 -6479
- package/index.js.map +1 -1
- package/package.json +9 -6
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/redsift/design-system/issues"
|
|
7
7
|
},
|
|
8
|
-
"description": "Dashboard component library as part of Red Sift's Design System. This package
|
|
8
|
+
"description": "Dashboard component library as part of Red Sift's Design System. This package provides dashboard-related components and decorators to make charts and datagrid filterable using crossfilter2.",
|
|
9
9
|
"homepage": "https://github.com/redsift/design-system",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"main": "index.js",
|
|
@@ -28,13 +28,16 @@
|
|
|
28
28
|
"test": "cp -f ../../.env ./ && NODE_ENV=test jest --verbose"
|
|
29
29
|
},
|
|
30
30
|
"types": "types.d.ts",
|
|
31
|
-
"version": "
|
|
31
|
+
"version": "8.0.0-alpha.0",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@emotion/react": "^11.10.4",
|
|
34
34
|
"@emotion/styled": "^11.10.4",
|
|
35
35
|
"@react-pdf/renderer": "^3.0.1",
|
|
36
|
-
"@redsift/charts": "^
|
|
37
|
-
"@redsift/
|
|
36
|
+
"@redsift/charts": "^8.0.0-alpha.0",
|
|
37
|
+
"@redsift/design-system": "^8.0.0-alpha.0",
|
|
38
|
+
"@redsift/icons": "^8.0.0-alpha.0",
|
|
39
|
+
"@redsift/table": "^8.0.0-alpha.0",
|
|
40
|
+
"classnames": "^2.3.1",
|
|
38
41
|
"d3": "7",
|
|
39
42
|
"d3-selection": "^3.0.0",
|
|
40
43
|
"d3-shape": "^3.1.0",
|
|
@@ -69,7 +72,7 @@
|
|
|
69
72
|
"@storybook/react": "^6.5.14",
|
|
70
73
|
"@testing-library/jest-dom": "^5.16.4",
|
|
71
74
|
"@testing-library/react": "^13.4.0",
|
|
72
|
-
"@testing-library/user-event": "
|
|
75
|
+
"@testing-library/user-event": "14.2.1",
|
|
73
76
|
"@types/crossfilter": "^0.0.34",
|
|
74
77
|
"@types/d3": "^7.4.0",
|
|
75
78
|
"@types/d3-shape": "^3.1.0",
|
|
@@ -112,5 +115,5 @@
|
|
|
112
115
|
"react-dom": "18",
|
|
113
116
|
"styled-components": "^5.3.5"
|
|
114
117
|
},
|
|
115
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "e18c06abeed582e7cb119cc94fc45d1b187a7e30"
|
|
116
119
|
}
|