kwant-ui 3.21.3 → 3.21.5
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/Calendar/CalendarComponents.d.ts +1 -6
- package/dist/components/Calendar/CalendarTypes.d.ts +10 -0
- package/dist/components/Calendar/CalendarUtils.d.ts +11 -3
- package/dist/components/Charts/GaugeChart/GaugeChart.d.ts +3 -0
- package/dist/components/Charts/GaugeChart/GaugeChartStyled.d.ts +9 -0
- package/dist/components/Charts/GaugeChart/GaugeChartTypes.d.ts +26 -0
- package/dist/components/Charts/GaugeChart/index.d.ts +2 -0
- package/dist/components/Charts/HorizontalStackedBarChart/HorizontalStackedBarChart.d.ts +3 -0
- package/dist/components/Charts/HorizontalStackedBarChart/HorizontalStackedBarChartData.d.ts +19 -0
- package/dist/components/Charts/HorizontalStackedBarChart/HorizontalStackedBarChartStyled.d.ts +18 -0
- package/dist/components/Charts/HorizontalStackedBarChart/HorizontalStackedBarChartTypes.d.ts +60 -0
- package/dist/components/Charts/HorizontalStackedBarChart/HorizontalStackedBarChartUtils.d.ts +10 -0
- package/dist/components/Charts/HorizontalStackedBarChart/index.d.ts +2 -0
- package/dist/components/Charts/ProgressChart/ProgressChart.d.ts +3 -0
- package/dist/components/Charts/ProgressChart/ProgressChartStyled.d.ts +1 -0
- package/dist/components/Charts/ProgressChart/ProgressChartTypes.d.ts +13 -0
- package/dist/components/Charts/ProgressChart/index.d.ts +2 -0
- package/dist/components/Charts/WeekwiseBarChart/WeekwiseBarChartTypes.d.ts +1 -1
- package/dist/components/Charts/WorkerTimeChart/WorkerTimeChartUtils.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.es.js +232 -130
- package/dist/index.js +355 -253
- package/dist/package.json +3 -1
- package/package.json +3 -1
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kwant-ui",
|
|
3
|
-
"version": "3.21.
|
|
3
|
+
"version": "3.21.5",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"@storybook/react-vite": "^7.6.4",
|
|
31
31
|
"@storybook/testing-library": "^0.2.2",
|
|
32
32
|
"@svgr/rollup": "^8.1.0",
|
|
33
|
+
"@types/d3": "^7.4.3",
|
|
33
34
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
34
35
|
"@typescript-eslint/parser": "^5.57.1",
|
|
35
36
|
"@vitejs/plugin-react": "^4.0.0",
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"@types/react-dom": "^18.2.0",
|
|
54
55
|
"@types/react-router-dom": "^5.3.3",
|
|
55
56
|
"@types/styled-components": "^5.1.26",
|
|
57
|
+
"d3": "^7.8.5",
|
|
56
58
|
"dayjs": "^1.11.10",
|
|
57
59
|
"eslint-config-custom": "*",
|
|
58
60
|
"react": "^18.2.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kwant-ui",
|
|
3
|
-
"version": "3.21.
|
|
3
|
+
"version": "3.21.5",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"@storybook/react-vite": "^7.6.4",
|
|
31
31
|
"@storybook/testing-library": "^0.2.2",
|
|
32
32
|
"@svgr/rollup": "^8.1.0",
|
|
33
|
+
"@types/d3": "^7.4.3",
|
|
33
34
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
34
35
|
"@typescript-eslint/parser": "^5.57.1",
|
|
35
36
|
"@vitejs/plugin-react": "^4.0.0",
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"@types/react-dom": "^18.2.0",
|
|
54
55
|
"@types/react-router-dom": "^5.3.3",
|
|
55
56
|
"@types/styled-components": "^5.1.26",
|
|
57
|
+
"d3": "^7.8.5",
|
|
56
58
|
"dayjs": "^1.11.10",
|
|
57
59
|
"eslint-config-custom": "*",
|
|
58
60
|
"react": "^18.2.0",
|