@clasing/ui 0.1.21 → 0.1.23
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/README.md +33 -0
- package/dist/index.d.ts +10 -4
- package/dist/index.es.js +1073 -994
- package/dist/index.umd.js +10 -13
- package/dist/style.css +1 -1
- package/package.json +26 -25
- package/tailwind.config.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clasing/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -36,45 +36,46 @@
|
|
|
36
36
|
"clsx": "^2.1.1",
|
|
37
37
|
"express": "^4.19.2",
|
|
38
38
|
"express-basic-auth": "^1.2.1",
|
|
39
|
-
"react": "^18.
|
|
40
|
-
"react-dom": "^18.
|
|
39
|
+
"react": "^18.3.1",
|
|
40
|
+
"react-dom": "^18.3.1",
|
|
41
41
|
"tailwind-merge": "^2.3.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@chromatic-com/storybook": "1.3.5",
|
|
45
|
-
"@storybook/addon-essentials": "^8.
|
|
46
|
-
"@storybook/addon-interactions": "^8.
|
|
47
|
-
"@storybook/addon-links": "^8.
|
|
48
|
-
"@storybook/addon-onboarding": "^8.
|
|
49
|
-
"@storybook/blocks": "^8.
|
|
50
|
-
"@storybook/react": "^8.
|
|
51
|
-
"@storybook/react-vite": "^8.
|
|
52
|
-
"@storybook/test": "^8.
|
|
53
|
-
"@
|
|
45
|
+
"@storybook/addon-essentials": "^8.1.11",
|
|
46
|
+
"@storybook/addon-interactions": "^8.1.11",
|
|
47
|
+
"@storybook/addon-links": "^8.1.11",
|
|
48
|
+
"@storybook/addon-onboarding": "^8.1.11",
|
|
49
|
+
"@storybook/blocks": "^8.1.11",
|
|
50
|
+
"@storybook/react": "^8.1.11",
|
|
51
|
+
"@storybook/react-vite": "^8.1.11",
|
|
52
|
+
"@storybook/test": "^8.1.11",
|
|
53
|
+
"@tailwindcss/forms": "^0.5.7",
|
|
54
|
+
"@testing-library/jest-dom": "^6.4.6",
|
|
54
55
|
"@testing-library/react": "^15.0.7",
|
|
55
56
|
"@testing-library/user-event": "^14.5.2",
|
|
56
|
-
"@types/react": "^18.
|
|
57
|
-
"@types/react-dom": "^18.
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
59
|
-
"@typescript-eslint/parser": "^7.
|
|
60
|
-
"@vitejs/plugin-react-swc": "^3.
|
|
57
|
+
"@types/react": "^18.3.3",
|
|
58
|
+
"@types/react-dom": "^18.3.0",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^7.15.0",
|
|
60
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
61
|
+
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
61
62
|
"autoprefixer": "^10.4.19",
|
|
62
63
|
"eslint": "^8.57.0",
|
|
63
64
|
"eslint-config-prettier": "^9.1.0",
|
|
64
65
|
"eslint-plugin-import": "^2.29.1",
|
|
65
66
|
"eslint-plugin-prettier": "^5.1.3",
|
|
66
|
-
"eslint-plugin-react-hooks": "^4.6.
|
|
67
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
67
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
68
|
+
"eslint-plugin-react-refresh": "^0.4.7",
|
|
68
69
|
"eslint-plugin-storybook": "^0.8.0",
|
|
69
|
-
"jsdom": "^24.
|
|
70
|
-
"postcss": "^8.4.
|
|
70
|
+
"jsdom": "^24.1.0",
|
|
71
|
+
"postcss": "^8.4.39",
|
|
71
72
|
"prettier": "3.2.5",
|
|
72
73
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
73
74
|
"prettier-plugin-tailwindcss": "^0.5.14",
|
|
74
|
-
"storybook": "^8.
|
|
75
|
-
"tailwindcss": "^3.4.
|
|
76
|
-
"typescript": "^5.
|
|
77
|
-
"vite": "^5.
|
|
75
|
+
"storybook": "^8.1.11",
|
|
76
|
+
"tailwindcss": "^3.4.4",
|
|
77
|
+
"typescript": "^5.5.3",
|
|
78
|
+
"vite": "^5.3.3",
|
|
78
79
|
"vite-plugin-dts": "^3.9.1",
|
|
79
80
|
"vite-tsconfig-paths": "^4.3.2",
|
|
80
81
|
"vitest": "^1.6.0"
|
package/tailwind.config.js
CHANGED