@mdigital_ui/ui 0.1.4 → 0.2.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/README.md +31 -68
- package/dist/index.js +4 -4
- package/dist/styles/base.css +3027 -137
- package/dist/styles/global.css +4199 -285
- package/package.json +21 -67
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mdigital_ui/ui",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Modern React component library built with Tailwind CSS v4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|
|
79
79
|
"build": "tsup && npm run build:css",
|
|
80
|
-
"build:css": "mkdir -p dist/styles/themes &&
|
|
80
|
+
"build:css": "mkdir -p dist/styles/themes && postcss src/styles/global.css -o dist/styles/global.css && postcss src/styles/base.css -o dist/styles/base.css && postcss src/styles/themes/light.css -o dist/styles/themes/light.css && postcss src/styles/themes/dark.css -o dist/styles/themes/dark.css",
|
|
81
81
|
"dev": "tsup --watch",
|
|
82
82
|
"typecheck": "tsc --noEmit",
|
|
83
83
|
"storybook": "storybook dev -p 6006",
|
|
@@ -86,89 +86,43 @@
|
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"class-variance-authority": "^0.7.0",
|
|
88
88
|
"clsx": "^2.1.0",
|
|
89
|
-
"tailwind-merge": "^2.2.0"
|
|
89
|
+
"tailwind-merge": "^2.2.0",
|
|
90
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
91
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
92
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
93
|
+
"@tanstack/react-table": "^8.21.3",
|
|
94
|
+
"@tanstack/react-virtual": "^3.13.12",
|
|
95
|
+
"cmdk": "^1.1.1",
|
|
96
|
+
"dayjs": "^1.11.19",
|
|
97
|
+
"lucide-react": "^0.552.0",
|
|
98
|
+
"react-datepicker": "^8.8.0",
|
|
99
|
+
"recharts": "^3.3.0",
|
|
100
|
+
"swiper": "^12.0.3",
|
|
101
|
+
"vaul": "^1.1.2"
|
|
90
102
|
},
|
|
91
103
|
"peerDependencies": {
|
|
92
104
|
"react": "^18.0.0 || ^19.0.0",
|
|
93
105
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
94
|
-
"tailwindcss": "^4.0.0"
|
|
95
|
-
"@radix-ui/react-dialog": "^1.0.0",
|
|
96
|
-
"@radix-ui/react-popover": "^1.0.0",
|
|
97
|
-
"@radix-ui/react-tooltip": "^1.0.0",
|
|
98
|
-
"@tanstack/react-table": "^8.0.0",
|
|
99
|
-
"@tanstack/react-virtual": "^3.0.0",
|
|
100
|
-
"cmdk": "^1.0.0",
|
|
101
|
-
"dayjs": "^1.11.0",
|
|
102
|
-
"lucide-react": "^0.400.0",
|
|
103
|
-
"react-datepicker": "^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
104
|
-
"recharts": "^2.0.0 || ^3.0.0",
|
|
105
|
-
"swiper": "^11.0.0 || ^12.0.0",
|
|
106
|
-
"vaul": "^0.9.0 || ^1.0.0"
|
|
107
|
-
},
|
|
108
|
-
"peerDependenciesMeta": {
|
|
109
|
-
"@radix-ui/react-dialog": {
|
|
110
|
-
"optional": true
|
|
111
|
-
},
|
|
112
|
-
"@radix-ui/react-popover": {
|
|
113
|
-
"optional": true
|
|
114
|
-
},
|
|
115
|
-
"@radix-ui/react-tooltip": {
|
|
116
|
-
"optional": true
|
|
117
|
-
},
|
|
118
|
-
"@tanstack/react-table": {
|
|
119
|
-
"optional": true
|
|
120
|
-
},
|
|
121
|
-
"@tanstack/react-virtual": {
|
|
122
|
-
"optional": true
|
|
123
|
-
},
|
|
124
|
-
"cmdk": {
|
|
125
|
-
"optional": true
|
|
126
|
-
},
|
|
127
|
-
"dayjs": {
|
|
128
|
-
"optional": true
|
|
129
|
-
},
|
|
130
|
-
"lucide-react": {
|
|
131
|
-
"optional": true
|
|
132
|
-
},
|
|
133
|
-
"react-datepicker": {
|
|
134
|
-
"optional": true
|
|
135
|
-
},
|
|
136
|
-
"recharts": {
|
|
137
|
-
"optional": true
|
|
138
|
-
},
|
|
139
|
-
"swiper": {
|
|
140
|
-
"optional": true
|
|
141
|
-
},
|
|
142
|
-
"vaul": {
|
|
143
|
-
"optional": true
|
|
144
|
-
}
|
|
106
|
+
"tailwindcss": "^4.0.0"
|
|
145
107
|
},
|
|
146
108
|
"devDependencies": {
|
|
147
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
148
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
149
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
150
109
|
"@storybook/addon-a11y": "^8.0.0",
|
|
151
110
|
"@storybook/addon-essentials": "^8.0.0",
|
|
152
111
|
"@storybook/addon-themes": "^8.0.0",
|
|
153
112
|
"@storybook/react": "^8.0.0",
|
|
154
113
|
"@storybook/react-vite": "^8.0.0",
|
|
155
114
|
"@tailwindcss/postcss": "^4.1.13",
|
|
156
|
-
"@tanstack/react-table": "^8.21.3",
|
|
157
|
-
"@tanstack/react-virtual": "^3.13.12",
|
|
158
115
|
"@types/react": "^19.0.0",
|
|
159
116
|
"@types/react-datepicker": "^6.2.0",
|
|
160
117
|
"@types/react-dom": "^19.0.0",
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"react-
|
|
165
|
-
"recharts": "^3.3.0",
|
|
118
|
+
"postcss": "^8.4.0",
|
|
119
|
+
"postcss-cli": "^11.0.0",
|
|
120
|
+
"react": "^19.0.0",
|
|
121
|
+
"react-dom": "^19.0.0",
|
|
166
122
|
"storybook": "^8.0.0",
|
|
167
|
-
"swiper": "^12.0.3",
|
|
168
123
|
"tailwindcss": "^4.0.0",
|
|
169
124
|
"tsup": "^8.0.0",
|
|
170
|
-
"typescript": "^5.0.0"
|
|
171
|
-
"vaul": "^1.1.2"
|
|
125
|
+
"typescript": "^5.0.0"
|
|
172
126
|
},
|
|
173
127
|
"keywords": [
|
|
174
128
|
"react",
|