@vef-framework/dev 1.0.128 → 1.0.129
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/cjs/cli.cjs +4 -227
- package/cjs/commitlint-config.cjs +1 -13
- package/cjs/config.cjs +1 -81
- package/cjs/constants.cjs +1 -26
- package/cjs/eslint-config.cjs +1 -412
- package/cjs/index.cjs +1 -15
- package/cjs/json/monaco.nls.json.cjs +15920 -7
- package/cjs/json/monaco.theme.github-light.json.cjs +349 -7
- package/cjs/modules.d.cjs +0 -2
- package/cjs/plugin-app-config.cjs +1 -36
- package/cjs/plugin-conventional-config.cjs +3 -107
- package/cjs/plugin-eslint.cjs +1 -22
- package/cjs/plugin-html.cjs +2 -70
- package/cjs/plugin-icons.cjs +1 -20
- package/cjs/plugin-initialization.cjs +3 -26
- package/cjs/plugin-injection.cjs +2 -19
- package/cjs/plugin-inspect.cjs +1 -13
- package/cjs/plugin-monaco-nls.cjs +3 -59
- package/cjs/plugin-react-swc.cjs +1 -12
- package/cjs/plugin-router.cjs +4 -40
- package/cjs/plugin-stylelint.cjs +1 -22
- package/cjs/plugin-svgr.cjs +1 -57
- package/cjs/plugin-tailwind.cjs +1 -10
- package/cjs/plugin-tailwindcss.cjs +2 -23
- package/cjs/plugin-tsconfig-paths.cjs +1 -12
- package/cjs/plugin-visualizer.cjs +1 -14
- package/cjs/plugin-webfont.cjs +1 -13
- package/cjs/stylelint-config.cjs +1 -66
- package/cjs/tailwind-config.cjs +1 -394
- package/cjs/types.cjs +0 -2
- package/esm/cli.js +4 -225
- package/esm/commitlint-config.js +1 -11
- package/esm/config.js +1 -79
- package/esm/constants.js +1 -14
- package/esm/eslint-config.js +1 -410
- package/esm/index.js +1 -7
- package/esm/json/monaco.nls.json.js +15920 -3
- package/esm/json/monaco.theme.github-light.json.js +349 -3
- package/esm/plugin-app-config.js +1 -34
- package/esm/plugin-conventional-config.js +3 -105
- package/esm/plugin-eslint.js +1 -20
- package/esm/plugin-html.js +2 -68
- package/esm/plugin-icons.js +1 -17
- package/esm/plugin-initialization.js +3 -24
- package/esm/plugin-injection.js +2 -17
- package/esm/plugin-inspect.js +1 -11
- package/esm/plugin-monaco-nls.js +3 -56
- package/esm/plugin-react-swc.js +1 -10
- package/esm/plugin-router.js +4 -38
- package/esm/plugin-stylelint.js +1 -20
- package/esm/plugin-svgr.js +1 -55
- package/esm/plugin-tailwind.js +1 -8
- package/esm/plugin-tailwindcss.js +2 -21
- package/esm/plugin-tsconfig-paths.js +1 -10
- package/esm/plugin-visualizer.js +1 -12
- package/esm/plugin-webfont.js +1 -11
- package/esm/stylelint-config.js +1 -64
- package/esm/tailwind-config.js +1 -392
- package/package.json +1 -1
- package/template/_package.json +5 -5
package/esm/tailwind-config.js
CHANGED
|
@@ -1,393 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
import containerQueries from '@tailwindcss/container-queries';
|
|
3
|
-
import colors from 'tailwindcss/colors';
|
|
4
|
-
|
|
5
|
-
"use strict";
|
|
6
|
-
function defineTailwindConfig() {
|
|
7
|
-
return {
|
|
8
|
-
content: ["./src/**/*.{ts,tsx}"],
|
|
9
|
-
plugins: [containerQueries],
|
|
10
|
-
theme: {
|
|
11
|
-
colors: {
|
|
12
|
-
"inherit": "inherit",
|
|
13
|
-
"current": "currentColor",
|
|
14
|
-
"transparent": "transparent",
|
|
15
|
-
"black": "#000000",
|
|
16
|
-
"white": "var(--vef-color-white)",
|
|
17
|
-
"primary": "var(--vef-color-primary)",
|
|
18
|
-
"primary-hover": "var(--vef-color-primary-hover)",
|
|
19
|
-
"primary-active": "var(--vef-color-primary-active)",
|
|
20
|
-
"success": "var(--vef-color-success)",
|
|
21
|
-
"success-hover": "var(--vef-color-success-hover)",
|
|
22
|
-
"success-active": "var(--vef-color-success-active)",
|
|
23
|
-
"warning": "var(--vef-color-warning)",
|
|
24
|
-
"warning-hover": "var(--vef-color-warning-hover)",
|
|
25
|
-
"warning-active": "var(--vef-color-warning-active)",
|
|
26
|
-
"error": "var(--vef-color-error)",
|
|
27
|
-
"error-hover": "var(--vef-color-error-hover)",
|
|
28
|
-
"error-active": "var(--vef-color-error-active)",
|
|
29
|
-
"info": "var(--vef-color-info)",
|
|
30
|
-
"info-hover": "var(--vef-color-info-hover)",
|
|
31
|
-
"info-active": "var(--vef-color-info-active)",
|
|
32
|
-
"link": "var(--vef-color-link)",
|
|
33
|
-
"link-hover": "var(--vef-color-link-hover)",
|
|
34
|
-
"link-active": "var(--vef-color-link-active)",
|
|
35
|
-
"blue": {
|
|
36
|
-
DEFAULT: "var(--vef-blue-6)",
|
|
37
|
-
1: "var(--vef-blue-1)",
|
|
38
|
-
2: "var(--vef-blue-2)",
|
|
39
|
-
3: "var(--vef-blue-3)",
|
|
40
|
-
4: "var(--vef-blue-4)",
|
|
41
|
-
5: "var(--vef-blue-5)",
|
|
42
|
-
6: "var(--vef-blue-6)",
|
|
43
|
-
7: "var(--vef-blue-7)",
|
|
44
|
-
8: "var(--vef-blue-8)",
|
|
45
|
-
9: "var(--vef-blue-9)",
|
|
46
|
-
10: "var(--vef-blue-10)"
|
|
47
|
-
},
|
|
48
|
-
"purple": {
|
|
49
|
-
DEFAULT: "var(--vef-purple-6)",
|
|
50
|
-
1: "var(--vef-purple-1)",
|
|
51
|
-
2: "var(--vef-purple-2)",
|
|
52
|
-
3: "var(--vef-purple-3)",
|
|
53
|
-
4: "var(--vef-purple-4)",
|
|
54
|
-
5: "var(--vef-purple-5)",
|
|
55
|
-
6: "var(--vef-purple-6)",
|
|
56
|
-
7: "var(--vef-purple-7)",
|
|
57
|
-
8: "var(--vef-purple-8)",
|
|
58
|
-
9: "var(--vef-purple-9)",
|
|
59
|
-
10: "var(--vef-purple-10)"
|
|
60
|
-
},
|
|
61
|
-
"cyan": {
|
|
62
|
-
DEFAULT: "var(--vef-cyan-6)",
|
|
63
|
-
1: "var(--vef-cyan-1)",
|
|
64
|
-
2: "var(--vef-cyan-2)",
|
|
65
|
-
3: "var(--vef-cyan-3)",
|
|
66
|
-
4: "var(--vef-cyan-4)",
|
|
67
|
-
5: "var(--vef-cyan-5)",
|
|
68
|
-
6: "var(--vef-cyan-6)",
|
|
69
|
-
7: "var(--vef-cyan-7)",
|
|
70
|
-
8: "var(--vef-cyan-8)",
|
|
71
|
-
9: "var(--vef-cyan-9)",
|
|
72
|
-
10: "var(--vef-cyan-10)"
|
|
73
|
-
},
|
|
74
|
-
"green": {
|
|
75
|
-
DEFAULT: "var(--vef-green-6)",
|
|
76
|
-
1: "var(--vef-green-1)",
|
|
77
|
-
2: "var(--vef-green-2)",
|
|
78
|
-
3: "var(--vef-green-3)",
|
|
79
|
-
4: "var(--vef-green-4)",
|
|
80
|
-
5: "var(--vef-green-5)",
|
|
81
|
-
6: "var(--vef-green-6)",
|
|
82
|
-
7: "var(--vef-green-7)",
|
|
83
|
-
8: "var(--vef-green-8)",
|
|
84
|
-
9: "var(--vef-green-9)",
|
|
85
|
-
10: "var(--vef-green-10)"
|
|
86
|
-
},
|
|
87
|
-
"magenta": {
|
|
88
|
-
DEFAULT: "var(--vef-magenta-6)",
|
|
89
|
-
1: "var(--vef-magenta-1)",
|
|
90
|
-
2: "var(--vef-magenta-2)",
|
|
91
|
-
3: "var(--vef-magenta-3)",
|
|
92
|
-
4: "var(--vef-magenta-4)",
|
|
93
|
-
5: "var(--vef-magenta-5)",
|
|
94
|
-
6: "var(--vef-magenta-6)",
|
|
95
|
-
7: "var(--vef-magenta-7)",
|
|
96
|
-
8: "var(--vef-magenta-8)",
|
|
97
|
-
9: "var(--vef-magenta-9)",
|
|
98
|
-
10: "var(--vef-magenta-10)"
|
|
99
|
-
},
|
|
100
|
-
"pink": {
|
|
101
|
-
DEFAULT: "var(--vef-pink-6)",
|
|
102
|
-
1: "var(--vef-pink-1)",
|
|
103
|
-
2: "var(--vef-pink-2)",
|
|
104
|
-
3: "var(--vef-pink-3)",
|
|
105
|
-
4: "var(--vef-pink-4)",
|
|
106
|
-
5: "var(--vef-pink-5)",
|
|
107
|
-
6: "var(--vef-pink-6)",
|
|
108
|
-
7: "var(--vef-pink-7)",
|
|
109
|
-
8: "var(--vef-pink-8)",
|
|
110
|
-
9: "var(--vef-pink-9)",
|
|
111
|
-
10: "var(--vef-pink-10)"
|
|
112
|
-
},
|
|
113
|
-
"red": {
|
|
114
|
-
DEFAULT: "var(--vef-red-6)",
|
|
115
|
-
1: "var(--vef-red-1)",
|
|
116
|
-
2: "var(--vef-red-2)",
|
|
117
|
-
3: "var(--vef-red-3)",
|
|
118
|
-
4: "var(--vef-red-4)",
|
|
119
|
-
5: "var(--vef-red-5)",
|
|
120
|
-
6: "var(--vef-red-6)",
|
|
121
|
-
7: "var(--vef-red-7)",
|
|
122
|
-
8: "var(--vef-red-8)",
|
|
123
|
-
9: "var(--vef-red-9)",
|
|
124
|
-
10: "var(--vef-red-10)"
|
|
125
|
-
},
|
|
126
|
-
"orange": {
|
|
127
|
-
DEFAULT: "var(--vef-orange-6)",
|
|
128
|
-
1: "var(--vef-orange-1)",
|
|
129
|
-
2: "var(--vef-orange-2)",
|
|
130
|
-
3: "var(--vef-orange-3)",
|
|
131
|
-
4: "var(--vef-orange-4)",
|
|
132
|
-
5: "var(--vef-orange-5)",
|
|
133
|
-
6: "var(--vef-orange-6)",
|
|
134
|
-
7: "var(--vef-orange-7)",
|
|
135
|
-
8: "var(--vef-orange-8)",
|
|
136
|
-
9: "var(--vef-orange-9)",
|
|
137
|
-
10: "var(--vef-orange-10)"
|
|
138
|
-
},
|
|
139
|
-
"yellow": {
|
|
140
|
-
DEFAULT: "var(--vef-yellow-6)",
|
|
141
|
-
1: "var(--vef-yellow-1)",
|
|
142
|
-
2: "var(--vef-yellow-2)",
|
|
143
|
-
3: "var(--vef-yellow-3)",
|
|
144
|
-
4: "var(--vef-yellow-4)",
|
|
145
|
-
5: "var(--vef-yellow-5)",
|
|
146
|
-
6: "var(--vef-yellow-6)",
|
|
147
|
-
7: "var(--vef-yellow-7)",
|
|
148
|
-
8: "var(--vef-yellow-8)",
|
|
149
|
-
9: "var(--vef-yellow-9)",
|
|
150
|
-
10: "var(--vef-yellow-10)"
|
|
151
|
-
},
|
|
152
|
-
"volcano": {
|
|
153
|
-
DEFAULT: "var(--vef-volcano-6)",
|
|
154
|
-
1: "var(--vef-volcano-1)",
|
|
155
|
-
2: "var(--vef-volcano-2)",
|
|
156
|
-
3: "var(--vef-volcano-3)",
|
|
157
|
-
4: "var(--vef-volcano-4)",
|
|
158
|
-
5: "var(--vef-volcano-5)",
|
|
159
|
-
6: "var(--vef-volcano-6)",
|
|
160
|
-
7: "var(--vef-volcano-7)",
|
|
161
|
-
8: "var(--vef-volcano-8)",
|
|
162
|
-
9: "var(--vef-volcano-9)",
|
|
163
|
-
10: "var(--vef-volcano-10)"
|
|
164
|
-
},
|
|
165
|
-
"geekblue": {
|
|
166
|
-
DEFAULT: "var(--vef-geekblue-6)",
|
|
167
|
-
1: "var(--vef-geekblue-1)",
|
|
168
|
-
2: "var(--vef-geekblue-2)",
|
|
169
|
-
3: "var(--vef-geekblue-3)",
|
|
170
|
-
4: "var(--vef-geekblue-4)",
|
|
171
|
-
5: "var(--vef-geekblue-5)",
|
|
172
|
-
6: "var(--vef-geekblue-6)",
|
|
173
|
-
7: "var(--vef-geekblue-7)",
|
|
174
|
-
8: "var(--vef-geekblue-8)",
|
|
175
|
-
9: "var(--vef-geekblue-9)",
|
|
176
|
-
10: "var(--vef-geekblue-10)"
|
|
177
|
-
},
|
|
178
|
-
"gold": {
|
|
179
|
-
DEFAULT: "var(--vef-gold-6)",
|
|
180
|
-
1: "var(--vef-gold-1)",
|
|
181
|
-
2: "var(--vef-gold-2)",
|
|
182
|
-
3: "var(--vef-gold-3)",
|
|
183
|
-
4: "var(--vef-gold-4)",
|
|
184
|
-
5: "var(--vef-gold-5)",
|
|
185
|
-
6: "var(--vef-gold-6)",
|
|
186
|
-
7: "var(--vef-gold-7)",
|
|
187
|
-
8: "var(--vef-gold-8)",
|
|
188
|
-
9: "var(--vef-gold-9)",
|
|
189
|
-
10: "var(--vef-gold-10)"
|
|
190
|
-
},
|
|
191
|
-
"lime": {
|
|
192
|
-
DEFAULT: "var(--vef-lime-6)",
|
|
193
|
-
1: "var(--vef-lime-1)",
|
|
194
|
-
2: "var(--vef-lime-2)",
|
|
195
|
-
3: "var(--vef-lime-3)",
|
|
196
|
-
4: "var(--vef-lime-4)",
|
|
197
|
-
5: "var(--vef-lime-5)",
|
|
198
|
-
6: "var(--vef-lime-6)",
|
|
199
|
-
7: "var(--vef-lime-7)",
|
|
200
|
-
8: "var(--vef-lime-8)",
|
|
201
|
-
9: "var(--vef-lime-9)",
|
|
202
|
-
10: "var(--vef-lime-10)"
|
|
203
|
-
},
|
|
204
|
-
"slate": {
|
|
205
|
-
DEFAULT: colors.slate[500],
|
|
206
|
-
1: colors.slate[50],
|
|
207
|
-
2: colors.slate[100],
|
|
208
|
-
3: colors.slate[200],
|
|
209
|
-
4: colors.slate[300],
|
|
210
|
-
5: colors.slate[400],
|
|
211
|
-
6: colors.slate[500],
|
|
212
|
-
7: colors.slate[600],
|
|
213
|
-
8: colors.slate[700],
|
|
214
|
-
9: colors.slate[800],
|
|
215
|
-
10: colors.slate[900]
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
extend: {
|
|
219
|
-
textColor: {
|
|
220
|
-
"primary-alt": "var(--vef-color-primary-text)",
|
|
221
|
-
"primary-alt-hover": "var(--vef-color-primary-text-hover)",
|
|
222
|
-
"primary-alt-active": "var(--vef-color-primary-text-active)",
|
|
223
|
-
"success-alt": "var(--vef-color-success-text)",
|
|
224
|
-
"success-alt-hover": "var(--vef-color-success-text-hover)",
|
|
225
|
-
"success-alt-active": "var(--vef-color-success-text-active)",
|
|
226
|
-
"warning-alt": "var(--vef-color-warning-text)",
|
|
227
|
-
"warning-alt-hover": "var(--vef-color-warning-text-hover)",
|
|
228
|
-
"warning-alt-active": "var(--vef-color-warning-text-active)",
|
|
229
|
-
"error-alt": "var(--vef-color-error-text)",
|
|
230
|
-
"error-alt-hover": "var(--vef-color-error-text-hover)",
|
|
231
|
-
"error-alt-active": "var(--vef-color-error-text-active)",
|
|
232
|
-
"info-alt": "var(--vef-color-info-text)",
|
|
233
|
-
"info-alt-hover": "var(--vef-color-info-text-hover)",
|
|
234
|
-
"info-alt-active": "var(--vef-color-info-text-active)",
|
|
235
|
-
"base": "var(--vef-color-text-base)",
|
|
236
|
-
"default": "var(--vef-color-text)",
|
|
237
|
-
"secondary": "var(--vef-color-text-secondary)",
|
|
238
|
-
"tertiary": "var(--vef-color-text-tertiary)",
|
|
239
|
-
"quaternary": "var(--vef-color-text-quaternary)",
|
|
240
|
-
"placeholder": "var(--vef-color-text-placeholder)",
|
|
241
|
-
"disabled": "var(--vef-color-text-disabled)",
|
|
242
|
-
"heading": "var(--vef-color-text-heading)",
|
|
243
|
-
"label": "var(--vef-color-text-label)",
|
|
244
|
-
"description": "var(--vef-color-text-description)",
|
|
245
|
-
"light-solid": "var(--vef-color-text-light-solid)",
|
|
246
|
-
"highlight": "var(--vef-color-highlight)",
|
|
247
|
-
"icon": "var(--vef-color-icon)",
|
|
248
|
-
"icon-hover": "var(--vef-color-icon-hover)"
|
|
249
|
-
},
|
|
250
|
-
outlineColor: {
|
|
251
|
-
error: "var(--vef-color-error-outline)",
|
|
252
|
-
warning: "var(--vef-color-warning-outline)"
|
|
253
|
-
},
|
|
254
|
-
backgroundColor: {
|
|
255
|
-
"primary-alt": "var(--vef-color-primary-bg)",
|
|
256
|
-
"primary-alt-hover": "var(--vef-color-primary-bg-hover)",
|
|
257
|
-
"success-alt": "var(--vef-color-success-bg)",
|
|
258
|
-
"success-alt-hover": "var(--vef-color-success-bg-hover)",
|
|
259
|
-
"warning-alt": "var(--vef-color-warning-bg)",
|
|
260
|
-
"warning-alt-hover": "var(--vef-color-warning-bg-hover)",
|
|
261
|
-
"error-alt": "var(--vef-color-error-bg)",
|
|
262
|
-
"error-alt-hover": "var(--vef-color-error-bg-hover)",
|
|
263
|
-
"info-alt": "var(--vef-color-info-bg)",
|
|
264
|
-
"info-alt-hover": "var(--vef-color-info-bg-hover)",
|
|
265
|
-
"base": "var(--vef-color-bg-base)",
|
|
266
|
-
"layout": "var(--vef-color-bg-layout)",
|
|
267
|
-
"spotlight": "var(--vef-color-bg-spotlight)",
|
|
268
|
-
"solid": "var(--vef-color-bg-solid)",
|
|
269
|
-
"solid-hover": "var(--vef-color-bg-solid-hover)",
|
|
270
|
-
"solid-active": "var(--vef-color-bg-solid-active)",
|
|
271
|
-
"container": "var(--vef-color-bg-container)",
|
|
272
|
-
"container-disabled": "var(--vef-color-bg-container-disabled)",
|
|
273
|
-
"elevated": "var(--vef-color-bg-elevated)",
|
|
274
|
-
"blur": "var(--vef-color-bg-blur)",
|
|
275
|
-
"fill": "var(--vef-color-fill)",
|
|
276
|
-
"fill-secondary": "var(--vef-color-fill-secondary)",
|
|
277
|
-
"fill-tertiary": "var(--vef-color-fill-tertiary)",
|
|
278
|
-
"fill-quaternary": "var(--vef-color-fill-quaternary)",
|
|
279
|
-
"fill-content": "var(--vef-color-fill-content)",
|
|
280
|
-
"fill-content-hover": "var(--vef-color-fill-content-hover)",
|
|
281
|
-
"fill-alt": "var(--vef-color-fill-alter)",
|
|
282
|
-
"mask": "var(--vef-color-bg-mask)",
|
|
283
|
-
"text-hover": "var(--vef-color-bg-text-hover)",
|
|
284
|
-
"text-active": "var(--vef-color-bg-text-active)",
|
|
285
|
-
"control-item-hover": "var(--vef-control-item-bg-hover)",
|
|
286
|
-
"control-item-active": "var(--vef-control-item-bg-active)",
|
|
287
|
-
"control-item-active-hover": "var(--vef-control-item-bg-active-hover)",
|
|
288
|
-
"control-item-active-disabled": "var(--vef-control-item-bg-active-disabled)"
|
|
289
|
-
},
|
|
290
|
-
borderColor: {
|
|
291
|
-
"primary-alt": "var(--vef-color-primary-border)",
|
|
292
|
-
"primary-alt-hover": "var(--vef-color-primary-border-hover)",
|
|
293
|
-
"success-alt": "var(--vef-color-success-border)",
|
|
294
|
-
"success-alt-hover": "var(--vef-color-success-border-hover)",
|
|
295
|
-
"warning-alt": "var(--vef-color-warning-border)",
|
|
296
|
-
"warning-alt-hover": "var(--vef-color-warning-border-hover)",
|
|
297
|
-
"error-alt": "var(--vef-color-error-border)",
|
|
298
|
-
"error-alt-hover": "var(--vef-color-error-border-hover)",
|
|
299
|
-
"info-alt": "var(--vef-color-info-border)",
|
|
300
|
-
"info-alt-hover": "var(--vef-color-info-border-hover)",
|
|
301
|
-
"base": "var(--vef-color-border)",
|
|
302
|
-
"secondary": "var(--vef-color-border-secondary)"
|
|
303
|
-
},
|
|
304
|
-
fontFamily: {
|
|
305
|
-
base: "var(--vef-font-family)",
|
|
306
|
-
code: "var(--vef-font-family-code)"
|
|
307
|
-
},
|
|
308
|
-
fontSize: {
|
|
309
|
-
base: "var(--vef-font-size)",
|
|
310
|
-
sm: "var(--vef-font-size-sm)",
|
|
311
|
-
lg: "var(--vef-font-size-lg)",
|
|
312
|
-
xl: "var(--vef-font-size-xl)",
|
|
313
|
-
heading1: "var(--vef-font-size-heading-1)",
|
|
314
|
-
heading2: "var(--vef-font-size-heading-2)",
|
|
315
|
-
heading3: "var(--vef-font-size-heading-3)",
|
|
316
|
-
heading4: "var(--vef-font-size-heading-4)",
|
|
317
|
-
heading5: "var(--vef-font-size-heading-5)"
|
|
318
|
-
},
|
|
319
|
-
fontWeight: {
|
|
320
|
-
strong: "var(--vef-font-weight-strong)"
|
|
321
|
-
},
|
|
322
|
-
borderWidth: {
|
|
323
|
-
base: "var(--vef-line-width)",
|
|
324
|
-
bold: "var(--vef-line-width-bold)"
|
|
325
|
-
},
|
|
326
|
-
borderRadius: {
|
|
327
|
-
DEFAULT: "var(--vef-border-radius)",
|
|
328
|
-
xs: "var(--vef-border-radius-xs)",
|
|
329
|
-
sm: "var(--vef-border-radius-sm)",
|
|
330
|
-
lg: "var(--vef-border-radius-lg)",
|
|
331
|
-
outer: "var(--vef-border-radius-outer)"
|
|
332
|
-
},
|
|
333
|
-
height: {
|
|
334
|
-
"control": "var(--vef-control-height)",
|
|
335
|
-
"control-sm": "var(--vef-control-height-sm)",
|
|
336
|
-
"control-xs": "var(--vef-control-height-xs)",
|
|
337
|
-
"control-lg": "var(--vef-control-height-lg)",
|
|
338
|
-
"font": "var(--vef-font-height)",
|
|
339
|
-
"font-sm": "var(--vef-font-height-sm)",
|
|
340
|
-
"font-lg": "var(--vef-font-height-lg)"
|
|
341
|
-
},
|
|
342
|
-
lineHeight: {
|
|
343
|
-
"base": "var(--vef-line-height)",
|
|
344
|
-
"sm": "var(--vef-line-height-sm)",
|
|
345
|
-
"lg": "var(--vef-line-height-lg)",
|
|
346
|
-
"heading-1": "var(--vef-line-height-heading-1)",
|
|
347
|
-
"heading-2": "var(--vef-line-height-heading-2)",
|
|
348
|
-
"heading-3": "var(--vef-line-height-heading-3)",
|
|
349
|
-
"heading-4": "var(--vef-line-height-heading-4)",
|
|
350
|
-
"heading-5": "var(--vef-line-height-heading-5)"
|
|
351
|
-
},
|
|
352
|
-
spacing: {
|
|
353
|
-
base: "var(--vef-margin)",
|
|
354
|
-
xxs: "var(--vef-margin-xxs)",
|
|
355
|
-
xs: "var(--vef-margin-xs)",
|
|
356
|
-
sm: "var(--vef-margin-sm)",
|
|
357
|
-
md: "var(--vef-margin-md)",
|
|
358
|
-
lg: "var(--vef-margin-lg)",
|
|
359
|
-
xl: "var(--vef-margin-xl)",
|
|
360
|
-
xxl: "var(--vef-margin-xxl)"
|
|
361
|
-
},
|
|
362
|
-
boxShadow: {
|
|
363
|
-
base: "var(--vef-box-shadow)",
|
|
364
|
-
secondary: "var(--vef-box-shadow-secondary)",
|
|
365
|
-
tertiary: "var(--vef-box-shadow-tertiary)",
|
|
366
|
-
card: "var(--vef-box-shadow-card)",
|
|
367
|
-
elevated: "0 0 1px rgb(0 0 0 / 30%), 0 4px 14px rgb(0 0 0 / 10%)"
|
|
368
|
-
},
|
|
369
|
-
transitionDuration: {
|
|
370
|
-
fast: "var(--vef-motion-duration-fast)",
|
|
371
|
-
mid: "var(--vef-motion-duration-mid)",
|
|
372
|
-
slow: "var(--vef-motion-duration-slow)"
|
|
373
|
-
},
|
|
374
|
-
transitionTimingFunction: {
|
|
375
|
-
"ease-out-circ": "var(--vef-motion-ease-out-circ)",
|
|
376
|
-
"ease-in-out-circ": "var(--vef-motion-ease-in-out-circ)",
|
|
377
|
-
"ease-out": "var(--vef-motion-ease-out)",
|
|
378
|
-
"ease-in-out": "var(--vef-motion-ease-in-out)",
|
|
379
|
-
"ease-out-back": "var(--vef-motion-ease-out-back)",
|
|
380
|
-
"ease-in-back": "var(--vef-motion-ease-in-back)",
|
|
381
|
-
"ease-in-quint": "var(--vef-motion-ease-in-quint)",
|
|
382
|
-
"ease-out-quint": "var(--vef-motion-ease-out-quint)"
|
|
383
|
-
},
|
|
384
|
-
zIndex: {
|
|
385
|
-
base: "var(--vef-z-index-base)",
|
|
386
|
-
popup: "var(--vef-z-index-popup)"
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
};
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
export { defineTailwindConfig };
|
|
2
|
+
import r from"@tailwindcss/container-queries";import e from"tailwindcss/colors";function v(){return{content:["./src/**/*.{ts,tsx}"],plugins:[r],theme:{colors:{inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000000",white:"var(--vef-color-white)",primary:"var(--vef-color-primary)","primary-hover":"var(--vef-color-primary-hover)","primary-active":"var(--vef-color-primary-active)",success:"var(--vef-color-success)","success-hover":"var(--vef-color-success-hover)","success-active":"var(--vef-color-success-active)",warning:"var(--vef-color-warning)","warning-hover":"var(--vef-color-warning-hover)","warning-active":"var(--vef-color-warning-active)",error:"var(--vef-color-error)","error-hover":"var(--vef-color-error-hover)","error-active":"var(--vef-color-error-active)",info:"var(--vef-color-info)","info-hover":"var(--vef-color-info-hover)","info-active":"var(--vef-color-info-active)",link:"var(--vef-color-link)","link-hover":"var(--vef-color-link-hover)","link-active":"var(--vef-color-link-active)",blue:{DEFAULT:"var(--vef-blue-6)",1:"var(--vef-blue-1)",2:"var(--vef-blue-2)",3:"var(--vef-blue-3)",4:"var(--vef-blue-4)",5:"var(--vef-blue-5)",6:"var(--vef-blue-6)",7:"var(--vef-blue-7)",8:"var(--vef-blue-8)",9:"var(--vef-blue-9)",10:"var(--vef-blue-10)"},purple:{DEFAULT:"var(--vef-purple-6)",1:"var(--vef-purple-1)",2:"var(--vef-purple-2)",3:"var(--vef-purple-3)",4:"var(--vef-purple-4)",5:"var(--vef-purple-5)",6:"var(--vef-purple-6)",7:"var(--vef-purple-7)",8:"var(--vef-purple-8)",9:"var(--vef-purple-9)",10:"var(--vef-purple-10)"},cyan:{DEFAULT:"var(--vef-cyan-6)",1:"var(--vef-cyan-1)",2:"var(--vef-cyan-2)",3:"var(--vef-cyan-3)",4:"var(--vef-cyan-4)",5:"var(--vef-cyan-5)",6:"var(--vef-cyan-6)",7:"var(--vef-cyan-7)",8:"var(--vef-cyan-8)",9:"var(--vef-cyan-9)",10:"var(--vef-cyan-10)"},green:{DEFAULT:"var(--vef-green-6)",1:"var(--vef-green-1)",2:"var(--vef-green-2)",3:"var(--vef-green-3)",4:"var(--vef-green-4)",5:"var(--vef-green-5)",6:"var(--vef-green-6)",7:"var(--vef-green-7)",8:"var(--vef-green-8)",9:"var(--vef-green-9)",10:"var(--vef-green-10)"},magenta:{DEFAULT:"var(--vef-magenta-6)",1:"var(--vef-magenta-1)",2:"var(--vef-magenta-2)",3:"var(--vef-magenta-3)",4:"var(--vef-magenta-4)",5:"var(--vef-magenta-5)",6:"var(--vef-magenta-6)",7:"var(--vef-magenta-7)",8:"var(--vef-magenta-8)",9:"var(--vef-magenta-9)",10:"var(--vef-magenta-10)"},pink:{DEFAULT:"var(--vef-pink-6)",1:"var(--vef-pink-1)",2:"var(--vef-pink-2)",3:"var(--vef-pink-3)",4:"var(--vef-pink-4)",5:"var(--vef-pink-5)",6:"var(--vef-pink-6)",7:"var(--vef-pink-7)",8:"var(--vef-pink-8)",9:"var(--vef-pink-9)",10:"var(--vef-pink-10)"},red:{DEFAULT:"var(--vef-red-6)",1:"var(--vef-red-1)",2:"var(--vef-red-2)",3:"var(--vef-red-3)",4:"var(--vef-red-4)",5:"var(--vef-red-5)",6:"var(--vef-red-6)",7:"var(--vef-red-7)",8:"var(--vef-red-8)",9:"var(--vef-red-9)",10:"var(--vef-red-10)"},orange:{DEFAULT:"var(--vef-orange-6)",1:"var(--vef-orange-1)",2:"var(--vef-orange-2)",3:"var(--vef-orange-3)",4:"var(--vef-orange-4)",5:"var(--vef-orange-5)",6:"var(--vef-orange-6)",7:"var(--vef-orange-7)",8:"var(--vef-orange-8)",9:"var(--vef-orange-9)",10:"var(--vef-orange-10)"},yellow:{DEFAULT:"var(--vef-yellow-6)",1:"var(--vef-yellow-1)",2:"var(--vef-yellow-2)",3:"var(--vef-yellow-3)",4:"var(--vef-yellow-4)",5:"var(--vef-yellow-5)",6:"var(--vef-yellow-6)",7:"var(--vef-yellow-7)",8:"var(--vef-yellow-8)",9:"var(--vef-yellow-9)",10:"var(--vef-yellow-10)"},volcano:{DEFAULT:"var(--vef-volcano-6)",1:"var(--vef-volcano-1)",2:"var(--vef-volcano-2)",3:"var(--vef-volcano-3)",4:"var(--vef-volcano-4)",5:"var(--vef-volcano-5)",6:"var(--vef-volcano-6)",7:"var(--vef-volcano-7)",8:"var(--vef-volcano-8)",9:"var(--vef-volcano-9)",10:"var(--vef-volcano-10)"},geekblue:{DEFAULT:"var(--vef-geekblue-6)",1:"var(--vef-geekblue-1)",2:"var(--vef-geekblue-2)",3:"var(--vef-geekblue-3)",4:"var(--vef-geekblue-4)",5:"var(--vef-geekblue-5)",6:"var(--vef-geekblue-6)",7:"var(--vef-geekblue-7)",8:"var(--vef-geekblue-8)",9:"var(--vef-geekblue-9)",10:"var(--vef-geekblue-10)"},gold:{DEFAULT:"var(--vef-gold-6)",1:"var(--vef-gold-1)",2:"var(--vef-gold-2)",3:"var(--vef-gold-3)",4:"var(--vef-gold-4)",5:"var(--vef-gold-5)",6:"var(--vef-gold-6)",7:"var(--vef-gold-7)",8:"var(--vef-gold-8)",9:"var(--vef-gold-9)",10:"var(--vef-gold-10)"},lime:{DEFAULT:"var(--vef-lime-6)",1:"var(--vef-lime-1)",2:"var(--vef-lime-2)",3:"var(--vef-lime-3)",4:"var(--vef-lime-4)",5:"var(--vef-lime-5)",6:"var(--vef-lime-6)",7:"var(--vef-lime-7)",8:"var(--vef-lime-8)",9:"var(--vef-lime-9)",10:"var(--vef-lime-10)"},slate:{DEFAULT:e.slate[500],1:e.slate[50],2:e.slate[100],3:e.slate[200],4:e.slate[300],5:e.slate[400],6:e.slate[500],7:e.slate[600],8:e.slate[700],9:e.slate[800],10:e.slate[900]}},extend:{textColor:{"primary-alt":"var(--vef-color-primary-text)","primary-alt-hover":"var(--vef-color-primary-text-hover)","primary-alt-active":"var(--vef-color-primary-text-active)","success-alt":"var(--vef-color-success-text)","success-alt-hover":"var(--vef-color-success-text-hover)","success-alt-active":"var(--vef-color-success-text-active)","warning-alt":"var(--vef-color-warning-text)","warning-alt-hover":"var(--vef-color-warning-text-hover)","warning-alt-active":"var(--vef-color-warning-text-active)","error-alt":"var(--vef-color-error-text)","error-alt-hover":"var(--vef-color-error-text-hover)","error-alt-active":"var(--vef-color-error-text-active)","info-alt":"var(--vef-color-info-text)","info-alt-hover":"var(--vef-color-info-text-hover)","info-alt-active":"var(--vef-color-info-text-active)",base:"var(--vef-color-text-base)",default:"var(--vef-color-text)",secondary:"var(--vef-color-text-secondary)",tertiary:"var(--vef-color-text-tertiary)",quaternary:"var(--vef-color-text-quaternary)",placeholder:"var(--vef-color-text-placeholder)",disabled:"var(--vef-color-text-disabled)",heading:"var(--vef-color-text-heading)",label:"var(--vef-color-text-label)",description:"var(--vef-color-text-description)","light-solid":"var(--vef-color-text-light-solid)",highlight:"var(--vef-color-highlight)",icon:"var(--vef-color-icon)","icon-hover":"var(--vef-color-icon-hover)"},outlineColor:{error:"var(--vef-color-error-outline)",warning:"var(--vef-color-warning-outline)"},backgroundColor:{"primary-alt":"var(--vef-color-primary-bg)","primary-alt-hover":"var(--vef-color-primary-bg-hover)","success-alt":"var(--vef-color-success-bg)","success-alt-hover":"var(--vef-color-success-bg-hover)","warning-alt":"var(--vef-color-warning-bg)","warning-alt-hover":"var(--vef-color-warning-bg-hover)","error-alt":"var(--vef-color-error-bg)","error-alt-hover":"var(--vef-color-error-bg-hover)","info-alt":"var(--vef-color-info-bg)","info-alt-hover":"var(--vef-color-info-bg-hover)",base:"var(--vef-color-bg-base)",layout:"var(--vef-color-bg-layout)",spotlight:"var(--vef-color-bg-spotlight)",solid:"var(--vef-color-bg-solid)","solid-hover":"var(--vef-color-bg-solid-hover)","solid-active":"var(--vef-color-bg-solid-active)",container:"var(--vef-color-bg-container)","container-disabled":"var(--vef-color-bg-container-disabled)",elevated:"var(--vef-color-bg-elevated)",blur:"var(--vef-color-bg-blur)",fill:"var(--vef-color-fill)","fill-secondary":"var(--vef-color-fill-secondary)","fill-tertiary":"var(--vef-color-fill-tertiary)","fill-quaternary":"var(--vef-color-fill-quaternary)","fill-content":"var(--vef-color-fill-content)","fill-content-hover":"var(--vef-color-fill-content-hover)","fill-alt":"var(--vef-color-fill-alter)",mask:"var(--vef-color-bg-mask)","text-hover":"var(--vef-color-bg-text-hover)","text-active":"var(--vef-color-bg-text-active)","control-item-hover":"var(--vef-control-item-bg-hover)","control-item-active":"var(--vef-control-item-bg-active)","control-item-active-hover":"var(--vef-control-item-bg-active-hover)","control-item-active-disabled":"var(--vef-control-item-bg-active-disabled)"},borderColor:{"primary-alt":"var(--vef-color-primary-border)","primary-alt-hover":"var(--vef-color-primary-border-hover)","success-alt":"var(--vef-color-success-border)","success-alt-hover":"var(--vef-color-success-border-hover)","warning-alt":"var(--vef-color-warning-border)","warning-alt-hover":"var(--vef-color-warning-border-hover)","error-alt":"var(--vef-color-error-border)","error-alt-hover":"var(--vef-color-error-border-hover)","info-alt":"var(--vef-color-info-border)","info-alt-hover":"var(--vef-color-info-border-hover)",base:"var(--vef-color-border)",secondary:"var(--vef-color-border-secondary)"},fontFamily:{base:"var(--vef-font-family)",code:"var(--vef-font-family-code)"},fontSize:{base:"var(--vef-font-size)",sm:"var(--vef-font-size-sm)",lg:"var(--vef-font-size-lg)",xl:"var(--vef-font-size-xl)",heading1:"var(--vef-font-size-heading-1)",heading2:"var(--vef-font-size-heading-2)",heading3:"var(--vef-font-size-heading-3)",heading4:"var(--vef-font-size-heading-4)",heading5:"var(--vef-font-size-heading-5)"},fontWeight:{strong:"var(--vef-font-weight-strong)"},borderWidth:{base:"var(--vef-line-width)",bold:"var(--vef-line-width-bold)"},borderRadius:{DEFAULT:"var(--vef-border-radius)",xs:"var(--vef-border-radius-xs)",sm:"var(--vef-border-radius-sm)",lg:"var(--vef-border-radius-lg)",outer:"var(--vef-border-radius-outer)"},height:{control:"var(--vef-control-height)","control-sm":"var(--vef-control-height-sm)","control-xs":"var(--vef-control-height-xs)","control-lg":"var(--vef-control-height-lg)",font:"var(--vef-font-height)","font-sm":"var(--vef-font-height-sm)","font-lg":"var(--vef-font-height-lg)"},lineHeight:{base:"var(--vef-line-height)",sm:"var(--vef-line-height-sm)",lg:"var(--vef-line-height-lg)","heading-1":"var(--vef-line-height-heading-1)","heading-2":"var(--vef-line-height-heading-2)","heading-3":"var(--vef-line-height-heading-3)","heading-4":"var(--vef-line-height-heading-4)","heading-5":"var(--vef-line-height-heading-5)"},spacing:{base:"var(--vef-margin)",xxs:"var(--vef-margin-xxs)",xs:"var(--vef-margin-xs)",sm:"var(--vef-margin-sm)",md:"var(--vef-margin-md)",lg:"var(--vef-margin-lg)",xl:"var(--vef-margin-xl)",xxl:"var(--vef-margin-xxl)"},boxShadow:{base:"var(--vef-box-shadow)",secondary:"var(--vef-box-shadow-secondary)",tertiary:"var(--vef-box-shadow-tertiary)",card:"var(--vef-box-shadow-card)",elevated:"0 0 1px rgb(0 0 0 / 30%), 0 4px 14px rgb(0 0 0 / 10%)"},transitionDuration:{fast:"var(--vef-motion-duration-fast)",mid:"var(--vef-motion-duration-mid)",slow:"var(--vef-motion-duration-slow)"},transitionTimingFunction:{"ease-out-circ":"var(--vef-motion-ease-out-circ)","ease-in-out-circ":"var(--vef-motion-ease-in-out-circ)","ease-out":"var(--vef-motion-ease-out)","ease-in-out":"var(--vef-motion-ease-in-out)","ease-out-back":"var(--vef-motion-ease-out-back)","ease-in-back":"var(--vef-motion-ease-in-back)","ease-in-quint":"var(--vef-motion-ease-in-quint)","ease-out-quint":"var(--vef-motion-ease-out-quint)"},zIndex:{base:"var(--vef-z-index-base)",popup:"var(--vef-z-index-popup)"}}}}}export{v as defineTailwindConfig};
|
package/package.json
CHANGED
package/template/_package.json
CHANGED
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@tanstack/react-router": "^1.0.0",
|
|
19
|
-
"@vef-framework/components": "1.0.
|
|
20
|
-
"@vef-framework/core": "1.0.
|
|
21
|
-
"@vef-framework/hooks": "1.0.
|
|
22
|
-
"@vef-framework/shared": "1.0.
|
|
23
|
-
"@vef-framework/starter": "1.0.
|
|
19
|
+
"@vef-framework/components": "1.0.129",
|
|
20
|
+
"@vef-framework/core": "1.0.129",
|
|
21
|
+
"@vef-framework/hooks": "1.0.129",
|
|
22
|
+
"@vef-framework/shared": "1.0.129",
|
|
23
|
+
"@vef-framework/starter": "1.0.129",
|
|
24
24
|
"react": "18.3.1",
|
|
25
25
|
"react-dom": "18.3.1"
|
|
26
26
|
},
|