@szum-tech/design-system 1.16.2 → 1.17.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/index.d.mts +47 -1
- package/dist/index.d.ts +47 -1
- package/dist/index.js +61 -51
- package/dist/index.mjs +11 -10
- package/icons/index.js +324 -12
- package/icons/index.mjs +3 -3
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@szum-tech/design-system",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "Szum-Tech design system with tailwindcss support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"szum-tech",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@radix-ui/react-avatar": "^1.0.4",
|
|
58
58
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
59
|
-
"@radix-ui/react-
|
|
59
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
60
60
|
"@radix-ui/react-select": "^1.2.2",
|
|
61
61
|
"@radix-ui/react-separator": "^1.0.3",
|
|
62
62
|
"@radix-ui/react-slot": "^1.0.2",
|
|
@@ -69,6 +69,8 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@babel/core": "^7.22.1",
|
|
72
|
+
"@hookform/resolvers": "^3.3.2",
|
|
73
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
72
74
|
"@storybook/addon-a11y": "^7.0.18",
|
|
73
75
|
"@storybook/addon-essentials": "^7.0.18",
|
|
74
76
|
"@storybook/addon-interactions": "^7.0.18",
|
|
@@ -98,6 +100,7 @@
|
|
|
98
100
|
"react-docgen": "^5.4.3",
|
|
99
101
|
"react-docgen-typescript": "^2.2.2",
|
|
100
102
|
"react-dom": "^18.2.0",
|
|
103
|
+
"react-hook-form": "^7.47.0",
|
|
101
104
|
"semantic-release": "^21.0.2",
|
|
102
105
|
"serve": "^14.2.0",
|
|
103
106
|
"storybook": "^7.0.18",
|
|
@@ -108,11 +111,13 @@
|
|
|
108
111
|
"typescript": "^5.0.4",
|
|
109
112
|
"vite": "^4.3.9",
|
|
110
113
|
"vite-tsconfig-paths": "^4.2.0",
|
|
111
|
-
"vitest": "^0.31.1"
|
|
114
|
+
"vitest": "^0.31.1",
|
|
115
|
+
"zod": "^3.22.4"
|
|
112
116
|
},
|
|
113
117
|
"peerDependencies": {
|
|
114
118
|
"react": "^18.2.0",
|
|
115
119
|
"react-dom": "^18.2.0",
|
|
120
|
+
"react-hook-form": "^7.47.0",
|
|
116
121
|
"tailwindcss": "^3.3.2"
|
|
117
122
|
},
|
|
118
123
|
"publishConfig": {
|