@ssa-ui-kit/core 2.8.3 → 2.9.0-canary-4b2c248-20250414

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.
Files changed (25) hide show
  1. package/dist/components/AccordionGroup/types.d.ts +6 -3
  2. package/dist/components/Charts/GaugeChart/GaugeChart.d.ts +25 -0
  3. package/dist/components/Charts/GaugeChart/components/GaugeChartBase.d.ts +7 -0
  4. package/dist/components/Charts/GaugeChart/components/GaugeChartCanvas.d.ts +4 -0
  5. package/dist/components/Charts/GaugeChart/components/GaugeChartHeader.d.ts +8 -0
  6. package/dist/components/Charts/GaugeChart/components/GaugeChartLabels.d.ts +14 -0
  7. package/dist/components/Charts/GaugeChart/components/GaugeChartLayer.d.ts +4 -0
  8. package/dist/components/Charts/GaugeChart/components/GaugeChartNeedle.d.ts +12 -0
  9. package/dist/components/Charts/GaugeChart/components/GaugeChartTickers.d.ts +17 -0
  10. package/dist/components/Charts/GaugeChart/components/index.d.ts +7 -0
  11. package/dist/components/Charts/GaugeChart/index.d.ts +1 -0
  12. package/dist/components/Charts/GaugeChart/utils/index.d.ts +1 -0
  13. package/dist/components/Charts/GaugeChart/utils/math.d.ts +19 -0
  14. package/dist/components/Charts/TreeMapChart/TreeMapChart.d.ts +2 -2
  15. package/dist/components/Charts/index.d.ts +1 -0
  16. package/dist/components/JsonSchemaForm/fields/AccordionField.d.ts +6 -0
  17. package/dist/components/JsonSchemaForm/fields/DateRangeField.d.ts +2 -0
  18. package/dist/components/JsonSchemaForm/fields/index.d.ts +4 -0
  19. package/dist/components/JsonSchemaForm/index.d.ts +2 -1
  20. package/dist/components/JsonSchemaForm/utils/index.d.ts +1 -0
  21. package/dist/components/JsonSchemaForm/utils/schema.d.ts +3 -0
  22. package/dist/components/JsonSchemaForm/widgets/DateWidget.d.ts +2 -0
  23. package/dist/index.js +669 -37
  24. package/dist/index.js.map +1 -1
  25. package/package.json +31 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssa-ui-kit/core",
3
- "version": "2.8.3",
3
+ "version": "2.9.0-canary-4b2c248-20250414",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "private": false,
@@ -27,10 +27,8 @@
27
27
  "dotenv": "^16.0.3",
28
28
  "loose-envify": "^1.4.0",
29
29
  "luxon": "^3.5.0",
30
- "plotly.js": "3.0.0",
31
- "react-plotly.js": "2.6.0",
32
- "@ssa-ui-kit/hooks": "^2.8.3",
33
- "@ssa-ui-kit/utils": "^2.8.3"
30
+ "@ssa-ui-kit/hooks": "^2.9.0-canary-4b2c248-20250414",
31
+ "@ssa-ui-kit/utils": "^2.9.0-canary-4b2c248-20250414"
34
32
  },
35
33
  "devDependencies": {
36
34
  "@emotion/css": "^11.13.5",
@@ -41,6 +39,8 @@
41
39
  "@nivo/line": "^0.88.0",
42
40
  "@nivo/pie": "^0.88.0",
43
41
  "@nivo/treemap": "^0.88.0",
42
+ "plotly.js": "3.0.0",
43
+ "react-plotly.js": "2.6.0",
44
44
  "@rjsf/core": "^5.24.8",
45
45
  "@rjsf/utils": "^5.24.8",
46
46
  "@rjsf/validator-ajv8": "^5.24.8",
@@ -61,6 +61,8 @@
61
61
  "@nivo/line": "^0.88.0",
62
62
  "@nivo/pie": "^0.88.0",
63
63
  "@nivo/treemap": "^0.88.0",
64
+ "plotly.js": "^3.0.0",
65
+ "react-plotly.js": "^2.6.0",
64
66
  "@rjsf/core": "^5.0.0",
65
67
  "@rjsf/utils": "^5.0.0",
66
68
  "react": "18.x",
@@ -71,6 +73,30 @@
71
73
  "peerDependenciesMeta": {
72
74
  "@types/react": {
73
75
  "optional": true
76
+ },
77
+ "@nivo/core": {
78
+ "optional": true
79
+ },
80
+ "@nivo/line": {
81
+ "optional": true
82
+ },
83
+ "@nivo/pie": {
84
+ "optional": true
85
+ },
86
+ "@nivo/treemap": {
87
+ "optional": true
88
+ },
89
+ "plotly.js": {
90
+ "optional": true
91
+ },
92
+ "react-plotly.js": {
93
+ "optional": true
94
+ },
95
+ "@rjsf/core": {
96
+ "optional": true
97
+ },
98
+ "@rjsf/utils": {
99
+ "optional": true
74
100
  }
75
101
  },
76
102
  "scripts": {