@ssa-ui-kit/core 2.9.0-canary-4b2c248-20250414 → 2.9.1
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/dist/components/Charts/BarGaugeChart/BarGaugeChart.d.ts +6 -0
- package/dist/components/Charts/BarGaugeChart/components/BarGaugeChartHeader.d.ts +5 -0
- package/dist/components/Charts/BarGaugeChart/components/Brick.d.ts +8 -0
- package/dist/components/Charts/BarGaugeChart/components/GaugeBar.d.ts +2 -0
- package/dist/components/Charts/BarGaugeChart/components/index.d.ts +3 -0
- package/dist/components/Charts/BarGaugeChart/index.d.ts +2 -0
- package/dist/components/Charts/BarGaugeChart/types.d.ts +27 -0
- package/dist/components/Charts/index.d.ts +1 -0
- package/dist/components/NumberField/NumberField.d.ts +18 -0
- package/dist/components/NumberField/index.d.ts +1 -0
- package/dist/components/Typeahead/index.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +322 -26
- package/dist/index.js.map +1 -1
- package/package.json +8 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssa-ui-kit/core",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"private": false,
|
|
@@ -22,13 +22,16 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@react-input/mask": "^2.0.4",
|
|
26
25
|
"@floating-ui/react": "0.27.4",
|
|
26
|
+
"@react-input/mask": "^2.0.4",
|
|
27
|
+
"@react-input/number-format": "^2.0.3",
|
|
27
28
|
"dotenv": "^16.0.3",
|
|
28
29
|
"loose-envify": "^1.4.0",
|
|
29
30
|
"luxon": "^3.5.0",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
31
|
+
"plotly.js": "3.0.0",
|
|
32
|
+
"react-plotly.js": "2.6.0",
|
|
33
|
+
"@ssa-ui-kit/hooks": "^2.9.1",
|
|
34
|
+
"@ssa-ui-kit/utils": "^2.9.1"
|
|
32
35
|
},
|
|
33
36
|
"devDependencies": {
|
|
34
37
|
"@emotion/css": "^11.13.5",
|
|
@@ -39,12 +42,10 @@
|
|
|
39
42
|
"@nivo/line": "^0.88.0",
|
|
40
43
|
"@nivo/pie": "^0.88.0",
|
|
41
44
|
"@nivo/treemap": "^0.88.0",
|
|
42
|
-
"
|
|
43
|
-
"react-plotly.js": "2.6.0",
|
|
45
|
+
"@playwright/test": "^1.48.0",
|
|
44
46
|
"@rjsf/core": "^5.24.8",
|
|
45
47
|
"@rjsf/utils": "^5.24.8",
|
|
46
48
|
"@rjsf/validator-ajv8": "^5.24.8",
|
|
47
|
-
"@playwright/test": "^1.48.0",
|
|
48
49
|
"@types/luxon": "^3.4.2",
|
|
49
50
|
"@types/react-plotly.js": "2.6.3"
|
|
50
51
|
},
|
|
@@ -61,8 +62,6 @@
|
|
|
61
62
|
"@nivo/line": "^0.88.0",
|
|
62
63
|
"@nivo/pie": "^0.88.0",
|
|
63
64
|
"@nivo/treemap": "^0.88.0",
|
|
64
|
-
"plotly.js": "^3.0.0",
|
|
65
|
-
"react-plotly.js": "^2.6.0",
|
|
66
65
|
"@rjsf/core": "^5.0.0",
|
|
67
66
|
"@rjsf/utils": "^5.0.0",
|
|
68
67
|
"react": "18.x",
|
|
@@ -73,30 +72,6 @@
|
|
|
73
72
|
"peerDependenciesMeta": {
|
|
74
73
|
"@types/react": {
|
|
75
74
|
"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
|
|
100
75
|
}
|
|
101
76
|
},
|
|
102
77
|
"scripts": {
|