@syscore/ui-library 1.1.2 → 1.1.4
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/client/components/ui/badge.tsx +1 -1
- package/client/components/ui/breadcrumb.tsx +1 -1
- package/client/components/ui/button.tsx +1 -1
- package/client/components/ui/card.tsx +1 -1
- package/client/components/ui/chart.tsx +3 -3
- package/client/components/ui/checkbox.tsx +1 -1
- package/client/components/ui/command.tsx +4 -4
- package/client/components/ui/context-menu.tsx +6 -6
- package/client/components/ui/dialog.tsx +1 -1
- package/client/components/ui/dropdown-menu.tsx +6 -6
- package/client/components/ui/hover-card.tsx +1 -1
- package/client/components/ui/input-otp.tsx +1 -1
- package/client/components/ui/input.tsx +1 -1
- package/client/components/ui/menubar.tsx +7 -7
- package/client/components/ui/navigation-menu.tsx +4 -4
- package/client/components/ui/pagination.tsx +1 -1
- package/client/components/ui/popover.tsx +1 -1
- package/client/components/ui/radio-group.tsx +1 -1
- package/client/components/ui/resizable.tsx +1 -1
- package/client/components/ui/scroll-area.tsx +2 -2
- package/client/components/ui/select.tsx +4 -4
- package/client/components/ui/separator.tsx +1 -1
- package/client/components/ui/sheet.tsx +1 -1
- package/client/components/ui/sidebar.tsx +22 -22
- package/client/components/ui/slider.tsx +1 -1
- package/client/components/ui/sonner.tsx +1 -1
- package/client/components/ui/switch.tsx +1 -1
- package/client/components/ui/table.tsx +1 -1
- package/client/components/ui/tabs.tsx +2 -2
- package/client/components/ui/textarea.tsx +1 -1
- package/client/components/ui/toast.tsx +4 -4
- package/client/components/ui/toggle.tsx +1 -1
- package/client/global.css +581 -0
- package/dist/ui/index.cjs.js +1 -1
- package/dist/ui/index.es.js +83 -83
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syscore/ui-library",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A comprehensive React component library built with Radix UI, Tailwind CSS, and TypeScript",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"dist",
|
|
27
27
|
"client/components/ui",
|
|
28
28
|
"client/lib",
|
|
29
|
-
"tailwind.preset.ts"
|
|
29
|
+
"tailwind.preset.ts",
|
|
30
|
+
"client/global.css"
|
|
30
31
|
],
|
|
31
32
|
"exports": {
|
|
32
33
|
".": {
|
|
@@ -91,10 +92,6 @@
|
|
|
91
92
|
"vaul": "^1.1.2"
|
|
92
93
|
},
|
|
93
94
|
"devDependencies": {
|
|
94
|
-
"vite-plugin-dts": "^4.5.4",
|
|
95
|
-
"terser": "^5.27.0",
|
|
96
|
-
"@types/cors": "^2.8.19",
|
|
97
|
-
"@types/express": "^4.17.17",
|
|
98
95
|
"@hookform/resolvers": "^5.2.1",
|
|
99
96
|
"@storybook/addon-essentials": "^8.4.1",
|
|
100
97
|
"@storybook/addon-interactions": "^8.4.1",
|
|
@@ -102,21 +99,25 @@
|
|
|
102
99
|
"@storybook/react": "^8.4.1",
|
|
103
100
|
"@storybook/react-vite": "^8.4.1",
|
|
104
101
|
"@swc/core": "^1.13.3",
|
|
102
|
+
"@tailwindcss/postcss": "^4.1.16",
|
|
105
103
|
"@tailwindcss/typography": "^0.5.16",
|
|
104
|
+
"@types/cors": "^2.8.19",
|
|
105
|
+
"@types/express": "^4.17.17",
|
|
106
106
|
"@types/node": "^24.2.1",
|
|
107
107
|
"@types/react": "^19.0.0",
|
|
108
108
|
"@types/react-dom": "^19.0.0",
|
|
109
109
|
"@vitejs/plugin-react-swc": "^4.0.0",
|
|
110
|
-
"autoprefixer": "^10.4.21",
|
|
111
110
|
"dotenv": "^17.2.1",
|
|
112
111
|
"postcss": "^8.5.6",
|
|
113
112
|
"prettier": "^3.6.2",
|
|
114
113
|
"serverless-http": "^4.0.0",
|
|
115
114
|
"storybook": "^8.4.1",
|
|
116
|
-
"tailwindcss": "^
|
|
115
|
+
"tailwindcss": "^4.1.16",
|
|
117
116
|
"tailwindcss-animate": "^1.0.7",
|
|
117
|
+
"terser": "^5.27.0",
|
|
118
118
|
"typescript": "^5.9.2",
|
|
119
119
|
"vite": "^6.0.11",
|
|
120
|
+
"vite-plugin-dts": "^4.5.4",
|
|
120
121
|
"vitest": "^3.2.4"
|
|
121
122
|
},
|
|
122
123
|
"scripts": {
|