crm-project-ui 0.1.13 → 0.1.14
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +143 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +12 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crm-project-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.14",
|
|
5
5
|
"description": "UI Component Library for CRM",
|
|
6
6
|
"author": "Vitor Gabriel Silva <vitorgabrielsbo1460@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -60,7 +60,9 @@
|
|
|
60
60
|
"lint": "eslint .",
|
|
61
61
|
"test": "vitest run --browser.headless",
|
|
62
62
|
"test:watch": "vitest",
|
|
63
|
-
"test:watch:headless": "vitest --browser.headless"
|
|
63
|
+
"test:watch:headless": "vitest --browser.headless",
|
|
64
|
+
"storybook": "storybook dev -p 6006",
|
|
65
|
+
"storybook:build": "storybook build"
|
|
64
66
|
},
|
|
65
67
|
"peerDependencies": {
|
|
66
68
|
"react": "^19.0.0 || ^18.0.0",
|
|
@@ -69,6 +71,12 @@
|
|
|
69
71
|
},
|
|
70
72
|
"devDependencies": {
|
|
71
73
|
"@eslint/js": "^9.39.1",
|
|
74
|
+
"@storybook/addon-essentials": "^8.x",
|
|
75
|
+
"@storybook/addon-interactions": "^8.x",
|
|
76
|
+
"@storybook/addon-links": "^8.x",
|
|
77
|
+
"@storybook/react": "^8.x",
|
|
78
|
+
"@storybook/react-vite": "^8.x",
|
|
79
|
+
"@storybook/test": "^8.6.15",
|
|
72
80
|
"@tailwindcss/postcss": "^4.1.18",
|
|
73
81
|
"@types/node": "^24.10.1",
|
|
74
82
|
"@types/postcss-import": "^14.0.3",
|
|
@@ -96,11 +104,11 @@
|
|
|
96
104
|
"prettier": "^3.5.3",
|
|
97
105
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
98
106
|
"react-dom": "^19.2.0",
|
|
107
|
+
"storybook": "^8.x",
|
|
108
|
+
"tailwindcss": "^4",
|
|
99
109
|
"tsup": "^8.5.1",
|
|
100
110
|
"typescript": "~5.9.3",
|
|
101
111
|
"typescript-eslint": "^8.46.4",
|
|
102
|
-
"vite": "^7.2.4",
|
|
103
|
-
"vite-plugin-dts": "^4.5.4",
|
|
104
112
|
"vitest": "^4.0.17",
|
|
105
113
|
"vitest-browser-react": "^2.0.2"
|
|
106
114
|
},
|
|
@@ -132,7 +140,6 @@
|
|
|
132
140
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
133
141
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
134
142
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
135
|
-
"@tailwindcss/vite": "^4.1.18",
|
|
136
143
|
"@vitest/browser": "^4.0.17",
|
|
137
144
|
"@vitest/browser-playwright": "^4.0.17",
|
|
138
145
|
"class-variance-authority": "^0.7.1",
|