@redsift/charts 11.9.4-muiv5 → 12.0.0-muiv5
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 +1 -5
- package/_internal/BarChart2.js +2 -2
- package/_internal/ChartContainer2.js +14 -5
- package/_internal/ChartContainer2.js.map +1 -1
- package/_internal/DataPoint2.js +1 -1
- package/_internal/DataPoint2.js.map +1 -1
- package/_internal/Legend3.js +19 -11
- package/_internal/Legend3.js.map +1 -1
- package/_internal/LegendItem2.js +9 -11
- package/_internal/LegendItem2.js.map +1 -1
- package/_internal/LineChart2.js +2 -3
- package/_internal/LineChart2.js.map +1 -1
- package/_internal/PieChart2.js +2 -2
- package/_internal/ScatterPlot2.js +2 -3
- package/_internal/ScatterPlot2.js.map +1 -1
- package/index.d.ts +2674 -64
- package/index.js +2 -2
- package/package.json +5 -6
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { a as LabelVariant, L as LegendVariant, T as TooltipVariant } from './_internal/legend2.js';
|
|
2
|
-
export { C as ChartSize, a as ColorTheme, g as getSortingMethod, i as isValidDate, m as mergeLegends, u as useColor } from './_internal/theme.js';
|
|
3
1
|
export { e as empty, g as getColorScale, m as monochrome, s as scheme, a as successDangerScheme } from './_internal/scheme.js';
|
|
2
|
+
export { C as ChartSize, a as ColorTheme, g as getSortingMethod, i as isValidDate, m as mergeLegends, u as useColor } from './_internal/theme.js';
|
|
4
3
|
export { S as ScatterPlot, c as ScatterPlotLegendVariant, b as ScatterPlotVariant, d as StyledScatterPlot, e as StyledScatterPlotEmptyText, u as useBrush, a as useZoom } from './_internal/ScatterPlot2.js';
|
|
5
4
|
export { u as useFormatCategoricalData } from './_internal/useFormatCategoricalData.js';
|
|
5
|
+
export { a as LabelVariant, L as LegendVariant, T as TooltipVariant } from './_internal/legend2.js';
|
|
6
6
|
export { A as Arc, S as StyledArc } from './_internal/Arc2.js';
|
|
7
7
|
export { A as Arcs, S as StyledArcs } from './_internal/Arcs2.js';
|
|
8
8
|
export { A as Axis, b as AxisPosition, a as AxisVariant, S as StyledAxis, g as getAxisType } from './_internal/Axis2.js';
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"test": "yarn test:unit && yarn test:storybook"
|
|
31
31
|
},
|
|
32
32
|
"types": "types.d.ts",
|
|
33
|
-
"version": "
|
|
33
|
+
"version": "12.0.0-muiv5",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@emotion/react": "^11.10.4",
|
|
36
36
|
"@emotion/styled": "^11.10.4",
|
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
"@types/jest": "^27.5.1",
|
|
66
66
|
"@types/react": "18.0.12",
|
|
67
67
|
"@types/react-dom": "18.0.5",
|
|
68
|
-
"@types/styled-components": "^5.1.25",
|
|
69
68
|
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
70
69
|
"@typescript-eslint/parser": "^5.26.0",
|
|
71
70
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -88,11 +87,11 @@
|
|
|
88
87
|
"ts-jest": "^28.0.3"
|
|
89
88
|
},
|
|
90
89
|
"peerDependencies": {
|
|
91
|
-
"@redsift/design-system": "^
|
|
92
|
-
"@redsift/popovers": "^
|
|
90
|
+
"@redsift/design-system": "^12.0.0-0",
|
|
91
|
+
"@redsift/popovers": "^12.0.0-0",
|
|
93
92
|
"react": ">=17",
|
|
94
93
|
"react-dom": ">=17",
|
|
95
|
-
"styled-components": "
|
|
94
|
+
"styled-components": "6.1.19"
|
|
96
95
|
},
|
|
97
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "afa26ac447592f7bfac07db4dd5f6a28ba562ba3"
|
|
98
97
|
}
|