@ssa-ui-kit/core 2.9.0 → 2.10.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/dist/components/AccordionGroup/types.d.ts +6 -3
- 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/BigNumberChart/BigNumberChart.d.ts +18 -0
- package/dist/components/Charts/BigNumberChart/components/BigNumberChartHeader.d.ts +8 -0
- package/dist/components/Charts/BigNumberChart/components/TrendLine.d.ts +7 -0
- package/dist/components/Charts/BigNumberChart/components/TrendLineTooltip.d.ts +5 -0
- package/dist/components/Charts/BigNumberChart/components/index.d.ts +3 -0
- package/dist/components/Charts/BigNumberChart/index.d.ts +1 -0
- package/dist/components/Charts/index.d.ts +2 -0
- package/dist/components/JsonSchemaForm/fields/AccordionField.d.ts +6 -0
- package/dist/components/JsonSchemaForm/fields/DateRangeField.d.ts +2 -0
- package/dist/components/JsonSchemaForm/fields/index.d.ts +4 -0
- package/dist/components/JsonSchemaForm/index.d.ts +2 -1
- package/dist/components/JsonSchemaForm/utils/index.d.ts +1 -0
- package/dist/components/JsonSchemaForm/utils/schema.d.ts +3 -0
- package/dist/components/JsonSchemaForm/widgets/DateWidget.d.ts +2 -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 +819 -63
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssa-ui-kit/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"private": false,
|
|
@@ -22,15 +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
|
"plotly.js": "3.0.0",
|
|
31
32
|
"react-plotly.js": "2.6.0",
|
|
32
|
-
"@ssa-ui-kit/hooks": "^2.
|
|
33
|
-
"@ssa-ui-kit/utils": "^2.
|
|
33
|
+
"@ssa-ui-kit/hooks": "^2.10.0",
|
|
34
|
+
"@ssa-ui-kit/utils": "^2.10.0"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
37
|
"@emotion/css": "^11.13.5",
|
|
@@ -41,10 +42,10 @@
|
|
|
41
42
|
"@nivo/line": "^0.88.0",
|
|
42
43
|
"@nivo/pie": "^0.88.0",
|
|
43
44
|
"@nivo/treemap": "^0.88.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
|
},
|