@ssa-ui-kit/core 2.8.2 → 2.9.0-canary-07014b1-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 +672 -38
  24. package/dist/index.js.map +1 -1
  25. package/package.json +21 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssa-ui-kit/core",
3
- "version": "2.8.2",
3
+ "version": "2.9.0-canary-07014b1-20250414",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "private": false,
@@ -29,8 +29,8 @@
29
29
  "luxon": "^3.5.0",
30
30
  "plotly.js": "3.0.0",
31
31
  "react-plotly.js": "2.6.0",
32
- "@ssa-ui-kit/hooks": "^2.8.2",
33
- "@ssa-ui-kit/utils": "^2.8.2"
32
+ "@ssa-ui-kit/hooks": "^2.9.0-canary-07014b1-20250414",
33
+ "@ssa-ui-kit/utils": "^2.9.0-canary-07014b1-20250414"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@emotion/css": "^11.13.5",
@@ -71,6 +71,24 @@
71
71
  "peerDependenciesMeta": {
72
72
  "@types/react": {
73
73
  "optional": true
74
+ },
75
+ "@nivo/core": {
76
+ "optional": true
77
+ },
78
+ "@nivo/line": {
79
+ "optional": true
80
+ },
81
+ "@nivo/pie": {
82
+ "optional": true
83
+ },
84
+ "@nivo/treemap": {
85
+ "optional": true
86
+ },
87
+ "@rjsf/core": {
88
+ "optional": true
89
+ },
90
+ "@rjsf/utils": {
91
+ "optional": true
74
92
  }
75
93
  },
76
94
  "scripts": {