@economic/taco 2.54.1 → 2.54.3
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/taco.js +19 -42
- package/dist/taco.js.map +1 -1
- package/dist/taco.umd.cjs +19 -42
- package/dist/taco.umd.cjs.map +1 -1
- package/package.json +5 -6
- package/tailwind.config.js +550 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@economic/taco",
|
3
|
-
"version": "2.54.
|
3
|
+
"version": "2.54.3",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"main": "./dist/taco.umd.cjs",
|
@@ -10,7 +10,7 @@
|
|
10
10
|
"dist",
|
11
11
|
"plugins",
|
12
12
|
"tailwind.colors.js",
|
13
|
-
"tailwind.config.
|
13
|
+
"tailwind.config.js"
|
14
14
|
],
|
15
15
|
"sideEffects": false,
|
16
16
|
"scripts": {
|
@@ -46,6 +46,7 @@
|
|
46
46
|
"date-fns": "^2.29.3",
|
47
47
|
"framer-motion": "^6.5.1",
|
48
48
|
"lodash-es": "4.17.21",
|
49
|
+
"nanoid": "^5.1.3",
|
49
50
|
"react-day-picker": "^8.10.0",
|
50
51
|
"react-intersection-observer": "^9.4.0",
|
51
52
|
"react-joyride": "^2.5.3",
|
@@ -53,8 +54,7 @@
|
|
53
54
|
"react-window": "^1.8.8",
|
54
55
|
"react-window-infinite-loader": "^1.0.8",
|
55
56
|
"recharts": "^2.13.3",
|
56
|
-
"typeface-open-sans": "^1.1.13"
|
57
|
-
"uuid": "^9.0.0"
|
57
|
+
"typeface-open-sans": "^1.1.13"
|
58
58
|
},
|
59
59
|
"peerDependencies": {
|
60
60
|
"react": "^18.0",
|
@@ -73,7 +73,6 @@
|
|
73
73
|
"@types/react-table": "^7.7.12",
|
74
74
|
"@types/react-window": "^1.8.5",
|
75
75
|
"@types/react-window-infinite-loader": "^1.0.6",
|
76
|
-
"@types/uuid": "^7.0.3",
|
77
76
|
"fast-sort": "^2.2.0",
|
78
77
|
"jsdom": "^26.0.0",
|
79
78
|
"lodash.flatten": "^4.4.0",
|
@@ -100,5 +99,5 @@
|
|
100
99
|
"not ie < 11"
|
101
100
|
]
|
102
101
|
},
|
103
|
-
"gitHead": "
|
102
|
+
"gitHead": "a3f0d0a95383ce678c843d65e3693f5c328dc1d8"
|
104
103
|
}
|
@@ -0,0 +1,550 @@
|
|
1
|
+
const plugin = require('tailwindcss/plugin');
|
2
|
+
const defaultTheme = require('tailwindcss/defaultTheme');
|
3
|
+
|
4
|
+
const colors = require('./tailwind.colors.js').default;
|
5
|
+
|
6
|
+
module.exports = {
|
7
|
+
theme: {
|
8
|
+
colors,
|
9
|
+
fontFamily: {
|
10
|
+
display: ['Helvetica, Arial, sans-serif'],
|
11
|
+
mono: ['Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'],
|
12
|
+
},
|
13
|
+
extend: {
|
14
|
+
cursor: {
|
15
|
+
grab: 'grab',
|
16
|
+
grabbing: 'grabbing',
|
17
|
+
},
|
18
|
+
listStyleType: {
|
19
|
+
circle: 'circle',
|
20
|
+
},
|
21
|
+
spacing: {
|
22
|
+
18: '4.5rem',
|
23
|
+
72: '18rem',
|
24
|
+
80: '20rem',
|
25
|
+
88: '22rem',
|
26
|
+
96: '24rem',
|
27
|
+
104: '26rem',
|
28
|
+
112: '28rem',
|
29
|
+
120: '30rem',
|
30
|
+
128: '32rem',
|
31
|
+
xs: '32rem',
|
32
|
+
sm: '48rem',
|
33
|
+
md: '64rem',
|
34
|
+
lg: '80rem',
|
35
|
+
},
|
36
|
+
screens: {
|
37
|
+
xs: '375px',
|
38
|
+
...defaultTheme.screens,
|
39
|
+
},
|
40
|
+
},
|
41
|
+
},
|
42
|
+
plugins: [
|
43
|
+
require('./plugins/tailwindcss-aria-attributes'),
|
44
|
+
require('./plugins/tailwindcss-group-peer'),
|
45
|
+
plugin(function ({ addUtilities, theme }) {
|
46
|
+
// ideally we would do this using the @layer utilities directive, but
|
47
|
+
// that causes issues in tools like tailwind where the typescript is loaded before the css
|
48
|
+
// resulting in "yt-focus class does not exist" errors
|
49
|
+
addUtilities({
|
50
|
+
'.fixed-center': {
|
51
|
+
position: 'fixed',
|
52
|
+
left: '50%',
|
53
|
+
top: '50%',
|
54
|
+
transform: 'translateX(-50%) translateY(-50%)',
|
55
|
+
},
|
56
|
+
'.fixed-center-x': {
|
57
|
+
position: 'fixed',
|
58
|
+
left: '50%',
|
59
|
+
transform: 'translateX(-50%)',
|
60
|
+
},
|
61
|
+
'.fixed-center-y': {
|
62
|
+
position: 'fixed',
|
63
|
+
top: '50%',
|
64
|
+
transform: 'translateY(-50%)',
|
65
|
+
},
|
66
|
+
'.absolute-center': {
|
67
|
+
position: 'absolute',
|
68
|
+
left: '50%',
|
69
|
+
top: '50%',
|
70
|
+
transform: 'translateX(-50%) translateY(-50%)',
|
71
|
+
},
|
72
|
+
'.absolute-center-x': {
|
73
|
+
position: 'absolute',
|
74
|
+
left: '50%',
|
75
|
+
transform: 'translateX(-50%)',
|
76
|
+
},
|
77
|
+
'.absolute-center-y': {
|
78
|
+
position: 'absolute',
|
79
|
+
top: '50%',
|
80
|
+
transform: 'translateY(-50%)',
|
81
|
+
},
|
82
|
+
'.break-word': {
|
83
|
+
'word-break': 'break-word',
|
84
|
+
}, // WCAG contrast combinations
|
85
|
+
'.wcag-black': {
|
86
|
+
background: theme('colors.black'),
|
87
|
+
color: theme('colors.white'),
|
88
|
+
},
|
89
|
+
'.wcag-white': {
|
90
|
+
background: theme('colors.white'),
|
91
|
+
color: theme('colors.black'),
|
92
|
+
},
|
93
|
+
'.wcag-grey-50': {
|
94
|
+
background: theme('colors.grey.50'),
|
95
|
+
color: theme('colors.black'),
|
96
|
+
},
|
97
|
+
'.wcag-grey-100': {
|
98
|
+
background: theme('colors.grey.100'),
|
99
|
+
color: theme('colors.black'),
|
100
|
+
},
|
101
|
+
'.wcag-grey-200': {
|
102
|
+
background: theme('colors.grey.200'),
|
103
|
+
color: theme('colors.black'),
|
104
|
+
},
|
105
|
+
'.wcag-grey-300': {
|
106
|
+
background: theme('colors.grey.300'),
|
107
|
+
color: theme('colors.black'),
|
108
|
+
},
|
109
|
+
'.wcag-grey-500': {
|
110
|
+
background: theme('colors.grey.500'),
|
111
|
+
color: theme('colors.black'),
|
112
|
+
},
|
113
|
+
'.wcag-grey-700': {
|
114
|
+
background: theme('colors.grey.700'),
|
115
|
+
color: theme('colors.white'),
|
116
|
+
},
|
117
|
+
'.wcag-grey-900': {
|
118
|
+
background: theme('colors.grey.900'),
|
119
|
+
color: theme('colors.white'),
|
120
|
+
},
|
121
|
+
'.wcag-grey-darkNew': {
|
122
|
+
background: theme('colors.grey.darkNew'),
|
123
|
+
color: theme('colors.white'),
|
124
|
+
},
|
125
|
+
'.wcag-grey-lightest': {
|
126
|
+
background: theme('colors.grey.lightest'),
|
127
|
+
color: theme('colors.white'),
|
128
|
+
},
|
129
|
+
'.wcag-grey-light': {
|
130
|
+
background: theme('colors.grey.light'),
|
131
|
+
color: theme('colors.white'),
|
132
|
+
},
|
133
|
+
'.wcag-grey': {
|
134
|
+
background: theme('colors.grey.DEFAULT'),
|
135
|
+
color: theme('colors.white'),
|
136
|
+
},
|
137
|
+
'.wcag-grey-dark': {
|
138
|
+
background: theme('colors.grey.dark'),
|
139
|
+
color: theme('colors.white'),
|
140
|
+
},
|
141
|
+
'.wcag-grey-darker': {
|
142
|
+
background: theme('colors.grey.darker'),
|
143
|
+
color: theme('colors.white'),
|
144
|
+
},
|
145
|
+
'.wcag-grey-darkest': {
|
146
|
+
background: theme('colors.grey.darkest'),
|
147
|
+
color: theme('colors.white'),
|
148
|
+
},
|
149
|
+
|
150
|
+
'.wcag-pink-100': {
|
151
|
+
background: theme('colors.pink.100'),
|
152
|
+
color: theme('colors.pink.900'),
|
153
|
+
},
|
154
|
+
'.wcag-pink-200': {
|
155
|
+
background: theme('colors.pink.200'),
|
156
|
+
color: theme('colors.pink.900'),
|
157
|
+
},
|
158
|
+
'.wcag-pink-300': {
|
159
|
+
background: theme('colors.pink.300'),
|
160
|
+
color: theme('colors.pink.900'),
|
161
|
+
},
|
162
|
+
'.wcag-pink-500': {
|
163
|
+
background: theme('colors.pink.500'),
|
164
|
+
color: theme('colors.black'),
|
165
|
+
},
|
166
|
+
'.wcag-pink-700': {
|
167
|
+
background: theme('colors.pink.700'),
|
168
|
+
color: theme('colors.white'),
|
169
|
+
},
|
170
|
+
'.wcag-pink-900': {
|
171
|
+
background: theme('colors.pink.900'),
|
172
|
+
color: theme('colors.white'),
|
173
|
+
},
|
174
|
+
'.wcag-purple-100': {
|
175
|
+
background: theme('colors.purple.100'),
|
176
|
+
color: theme('colors.purple.900'),
|
177
|
+
},
|
178
|
+
'.wcag-purple-200': {
|
179
|
+
background: theme('colors.purple.200'),
|
180
|
+
color: theme('colors.purple.900'),
|
181
|
+
},
|
182
|
+
'.wcag-purple-300': {
|
183
|
+
background: theme('colors.purple.300'),
|
184
|
+
color: theme('colors.purple.900'),
|
185
|
+
},
|
186
|
+
'.wcag-purple-500': {
|
187
|
+
background: theme('colors.purple.500'),
|
188
|
+
color: theme('colors.white'),
|
189
|
+
},
|
190
|
+
'.wcag-purple-700': {
|
191
|
+
background: theme('colors.purple.700'),
|
192
|
+
color: theme('colors.white'),
|
193
|
+
},
|
194
|
+
'.wcag-purple-900': {
|
195
|
+
background: theme('colors.purple.900'),
|
196
|
+
color: theme('colors.white'),
|
197
|
+
},
|
198
|
+
|
199
|
+
'.wcag-purple-lightest': {
|
200
|
+
background: theme('colors.purple.lightest'),
|
201
|
+
color: theme('colors.white'),
|
202
|
+
},
|
203
|
+
'.wcag-purple-light': {
|
204
|
+
background: theme('colors.purple.light'),
|
205
|
+
color: theme('colors.white'),
|
206
|
+
},
|
207
|
+
'.wcag-purple': {
|
208
|
+
background: theme('colors.purple.DEFAULT'),
|
209
|
+
color: theme('colors.white'),
|
210
|
+
},
|
211
|
+
'.wcag-purple-dark': {
|
212
|
+
background: theme('colors.purple.dark'),
|
213
|
+
color: theme('colors.white'),
|
214
|
+
},
|
215
|
+
'.wcag-purple-darker': {
|
216
|
+
background: theme('colors.purple.darker'),
|
217
|
+
color: theme('colors.white'),
|
218
|
+
},
|
219
|
+
'.wcag-purple-darkest': {
|
220
|
+
background: theme('colors.purple.darkest'),
|
221
|
+
color: theme('colors.white'),
|
222
|
+
},
|
223
|
+
'.wcag-purple-darkNew_1': {
|
224
|
+
background: theme('colors.purple.darkNew_1'),
|
225
|
+
color: theme('colors.white'),
|
226
|
+
},
|
227
|
+
'.wcag-purple-darkNew_2': {
|
228
|
+
background: theme('colors.purple.darkNew_2'),
|
229
|
+
color: theme('colors.white'),
|
230
|
+
},
|
231
|
+
'.wcag-blue-lightest': {
|
232
|
+
background: theme('colors.blue.lightest'),
|
233
|
+
color: theme('colors.blue.dark'),
|
234
|
+
},
|
235
|
+
'.wcag-blue-light': {
|
236
|
+
background: theme('colors.blue.light'),
|
237
|
+
color: theme('colors.white'),
|
238
|
+
},
|
239
|
+
'.wcag-blue': {
|
240
|
+
background: theme('colors.blue.DEFAULT'),
|
241
|
+
color: theme('colors.white'),
|
242
|
+
},
|
243
|
+
'.wcag-blue-dark': {
|
244
|
+
background: theme('colors.blue.dark'),
|
245
|
+
color: theme('colors.white'),
|
246
|
+
},
|
247
|
+
'.wcag-blue-100': {
|
248
|
+
background: theme('colors.blue.100'),
|
249
|
+
color: theme('colors.blue.900'),
|
250
|
+
},
|
251
|
+
'.wcag-blue-200': {
|
252
|
+
background: theme('colors.blue.200'),
|
253
|
+
color: theme('colors.blue.900'),
|
254
|
+
},
|
255
|
+
'.wcag-blue-300': {
|
256
|
+
background: theme('colors.blue.300'),
|
257
|
+
color: theme('colors.blue.900'),
|
258
|
+
},
|
259
|
+
'.wcag-blue-500': {
|
260
|
+
background: theme('colors.blue.500'),
|
261
|
+
color: theme('colors.white'),
|
262
|
+
},
|
263
|
+
'.wcag-blue-700': {
|
264
|
+
background: theme('colors.blue.700'),
|
265
|
+
color: theme('colors.white'),
|
266
|
+
},
|
267
|
+
'.wcag-blue-900': {
|
268
|
+
background: theme('colors.blue.900'),
|
269
|
+
color: theme('colors.white'),
|
270
|
+
},
|
271
|
+
'.wcag-red-lightest': {
|
272
|
+
background: theme('colors.red.lightest'),
|
273
|
+
color: theme('colors.red.dark'),
|
274
|
+
},
|
275
|
+
'.wcag-red-light': {
|
276
|
+
background: theme('colors.red.light'),
|
277
|
+
color: theme('colors.white'),
|
278
|
+
},
|
279
|
+
'.wcag-red': {
|
280
|
+
background: theme('colors.red.DEFAULT'),
|
281
|
+
color: theme('colors.white'),
|
282
|
+
},
|
283
|
+
'.wcag-red-dark': {
|
284
|
+
background: theme('colors.red.dark'),
|
285
|
+
color: theme('colors.white'),
|
286
|
+
},
|
287
|
+
|
288
|
+
'.wcag-red-100': {
|
289
|
+
background: theme('colors.red.100'),
|
290
|
+
color: theme('colors.red.900'),
|
291
|
+
},
|
292
|
+
'.wcag-red-200': {
|
293
|
+
background: theme('colors.red.200'),
|
294
|
+
color: theme('colors.red.900'),
|
295
|
+
},
|
296
|
+
'.wcag-red-300': {
|
297
|
+
background: theme('colors.red.300'),
|
298
|
+
color: theme('colors.black'),
|
299
|
+
},
|
300
|
+
'.wcag-red-500': {
|
301
|
+
background: theme('colors.red.500'),
|
302
|
+
color: theme('colors.white'),
|
303
|
+
},
|
304
|
+
'.wcag-red-700': {
|
305
|
+
background: theme('colors.red.700'),
|
306
|
+
color: theme('colors.white'),
|
307
|
+
},
|
308
|
+
'.wcag-red-900': {
|
309
|
+
background: theme('colors.red.900'),
|
310
|
+
color: theme('colors.white'),
|
311
|
+
},
|
312
|
+
|
313
|
+
'.wcag-green-lightest': {
|
314
|
+
background: theme('colors.green.lightest'),
|
315
|
+
color: theme('colors.black'),
|
316
|
+
},
|
317
|
+
'.wcag-green-light': {
|
318
|
+
background: theme('colors.green.light'),
|
319
|
+
color: theme('colors.black'),
|
320
|
+
},
|
321
|
+
'.wcag-green': {
|
322
|
+
background: theme('colors.green.DEFAULT'),
|
323
|
+
color: theme('colors.white'),
|
324
|
+
},
|
325
|
+
'.wcag-green-dark': {
|
326
|
+
background: theme('colors.green.dark'),
|
327
|
+
color: theme('colors.white'),
|
328
|
+
},
|
329
|
+
|
330
|
+
'.wcag-green-100': {
|
331
|
+
background: theme('colors.green.100'),
|
332
|
+
color: theme('colors.green.900'),
|
333
|
+
},
|
334
|
+
'.wcag-green-200': {
|
335
|
+
background: theme('colors.green.200'),
|
336
|
+
color: theme('colors.green.900'),
|
337
|
+
},
|
338
|
+
'.wcag-green-300': {
|
339
|
+
background: theme('colors.green.300'),
|
340
|
+
color: theme('colors.green.900'),
|
341
|
+
},
|
342
|
+
'.wcag-green-500': {
|
343
|
+
background: theme('colors.green.500'),
|
344
|
+
color: theme('colors.black'),
|
345
|
+
},
|
346
|
+
'.wcag-green-700': {
|
347
|
+
background: theme('colors.green.700'),
|
348
|
+
color: theme('colors.white'),
|
349
|
+
},
|
350
|
+
'.wcag-green-900': {
|
351
|
+
background: theme('colors.green.900'),
|
352
|
+
color: theme('colors.white'),
|
353
|
+
},
|
354
|
+
|
355
|
+
'.wcag-yellow-lightest': {
|
356
|
+
background: theme('colors.yellow.lightest'),
|
357
|
+
color: theme('colors.black'),
|
358
|
+
},
|
359
|
+
'.wcag-yellow-light': {
|
360
|
+
background: theme('colors.yellow.light'),
|
361
|
+
color: theme('colors.black'),
|
362
|
+
},
|
363
|
+
'.wcag-yellow': {
|
364
|
+
background: theme('colors.yellow.DEFAULT'),
|
365
|
+
color: theme('colors.black'),
|
366
|
+
},
|
367
|
+
'.wcag-yellow-dark': {
|
368
|
+
background: theme('colors.yellow.dark'),
|
369
|
+
color: theme('colors.white'),
|
370
|
+
},
|
371
|
+
|
372
|
+
'.wcag-yellow-100': {
|
373
|
+
background: theme('colors.yellow.100'),
|
374
|
+
color: theme('colors.yellow.900'),
|
375
|
+
},
|
376
|
+
'.wcag-yellow-200': {
|
377
|
+
background: theme('colors.yellow.200'),
|
378
|
+
color: theme('colors.yellow.900'),
|
379
|
+
},
|
380
|
+
'.wcag-yellow-300': {
|
381
|
+
background: theme('colors.yellow.300'),
|
382
|
+
color: theme('colors.yellow.900'),
|
383
|
+
},
|
384
|
+
'.wcag-yellow-500': {
|
385
|
+
background: theme('colors.yellow.500'),
|
386
|
+
color: theme('colors.yellow.900'),
|
387
|
+
},
|
388
|
+
'.wcag-yellow-700': {
|
389
|
+
background: theme('colors.yellow.700'),
|
390
|
+
color: theme('colors.black'),
|
391
|
+
},
|
392
|
+
'.wcag-yellow-900': {
|
393
|
+
background: theme('colors.yellow.900'),
|
394
|
+
color: theme('colors.white'),
|
395
|
+
},
|
396
|
+
'.wcag-brown-100': {
|
397
|
+
background: theme('colors.brown.100'),
|
398
|
+
color: theme('colors.brown.900'),
|
399
|
+
},
|
400
|
+
'.wcag-brown-200': {
|
401
|
+
background: theme('colors.brown.200'),
|
402
|
+
color: theme('colors.brown.900'),
|
403
|
+
},
|
404
|
+
'.wcag-brown-300': {
|
405
|
+
background: theme('colors.brown.300'),
|
406
|
+
color: theme('colors.brown.900'),
|
407
|
+
},
|
408
|
+
'.wcag-brown-500': {
|
409
|
+
background: theme('colors.brown.500'),
|
410
|
+
color: theme('colors.white'),
|
411
|
+
},
|
412
|
+
'.wcag-brown-700': {
|
413
|
+
background: theme('colors.brown.700'),
|
414
|
+
color: theme('colors.white'),
|
415
|
+
},
|
416
|
+
'.wcag-brown-900': {
|
417
|
+
background: theme('colors.brown.900'),
|
418
|
+
color: theme('colors.white'),
|
419
|
+
},
|
420
|
+
'.wcag-orange-100': {
|
421
|
+
background: theme('colors.orange.100'),
|
422
|
+
color: theme('colors.orange.900'),
|
423
|
+
},
|
424
|
+
'.wcag-orange-200': {
|
425
|
+
background: theme('colors.orange.200'),
|
426
|
+
color: theme('colors.orange.900'),
|
427
|
+
},
|
428
|
+
'.wcag-orange-300': {
|
429
|
+
background: theme('colors.orange.300'),
|
430
|
+
color: theme('colors.orange.900'),
|
431
|
+
},
|
432
|
+
'.wcag-orange-500': {
|
433
|
+
background: theme('colors.orange.500'),
|
434
|
+
color: theme('colors.orange.900'),
|
435
|
+
},
|
436
|
+
'.wcag-orange-700': {
|
437
|
+
background: theme('colors.orange.700'),
|
438
|
+
color: theme('colors.orange.900'),
|
439
|
+
},
|
440
|
+
'.wcag-orange-900': {
|
441
|
+
background: theme('colors.orange.900'),
|
442
|
+
color: theme('colors.white'),
|
443
|
+
},
|
444
|
+
'.wcag-brand-vismaRed': {
|
445
|
+
background: theme('colors.brand.vismaRed'),
|
446
|
+
color: theme('colors.white'),
|
447
|
+
},
|
448
|
+
'.wcag-brand-paleOrange': {
|
449
|
+
background: theme('colors.brand.paleOrange'),
|
450
|
+
color: theme('colors.orange.900'),
|
451
|
+
},
|
452
|
+
'.wcag-brand-sunsetOrange': {
|
453
|
+
background: theme('colors.brand.sunsetOrange'),
|
454
|
+
color: theme('colors.yellow.900'),
|
455
|
+
},
|
456
|
+
'.wcag-brand-midnightBlue': {
|
457
|
+
background: theme('colors.brand.midnightBlue'),
|
458
|
+
color: theme('colors.white'),
|
459
|
+
},
|
460
|
+
'.wcag-brand-coolBlue': {
|
461
|
+
background: theme('colors.brand.coolBlue'),
|
462
|
+
color: theme('colors.blue.900'),
|
463
|
+
},
|
464
|
+
// Legacy
|
465
|
+
'.yt-transparent': {
|
466
|
+
background: theme('colors.transparent'),
|
467
|
+
color: theme('colors.blue.500'),
|
468
|
+
},
|
469
|
+
'.yt-focus': {
|
470
|
+
'box-shadow': `0 0 0 1px #fff, 0 0 0 3px ${theme('colors.blue.500')}`,
|
471
|
+
outline: 'none',
|
472
|
+
},
|
473
|
+
'.yt-focus-inset': {
|
474
|
+
'box-shadow': `inset 0 0 0 2px ${theme('colors.blue.500')}`,
|
475
|
+
outline: 'none',
|
476
|
+
},
|
477
|
+
'.yt-focus-dark': {
|
478
|
+
'box-shadow': `0 0 0 3px ${theme('colors.blue.500')}`,
|
479
|
+
outline: 'none',
|
480
|
+
},
|
481
|
+
'.yt-focus-green': {
|
482
|
+
'box-shadow': '0 0 0 0.15rem rgba(0, 213, 165, 0.25)',
|
483
|
+
outline: 'none',
|
484
|
+
},
|
485
|
+
'.yt-focus-yellow': {
|
486
|
+
'box-shadow': '0 0 0 0.15rem rgba(239, 125, 0, 0.25)',
|
487
|
+
outline: 'none',
|
488
|
+
},
|
489
|
+
'.yt-focus-red': {
|
490
|
+
'box-shadow': '0 0 0 0.15rem rgba(253, 99, 97, 0.25)',
|
491
|
+
outline: 'none',
|
492
|
+
},
|
493
|
+
'.yt-blue-solid': {
|
494
|
+
background: theme('colors.blue.500'),
|
495
|
+
color: theme('colors.white'),
|
496
|
+
},
|
497
|
+
'.yt-blue-inverted': {
|
498
|
+
background: theme('colors.transparent'),
|
499
|
+
border: `1px solid ${theme('colors.blue.500')}`,
|
500
|
+
color: theme('colors.blue.500'),
|
501
|
+
},
|
502
|
+
'.yt-yellow-solid': {
|
503
|
+
background: theme('colors.yellow.500'),
|
504
|
+
color: theme('colors.black'),
|
505
|
+
},
|
506
|
+
'.yt-yellow-inverted': {
|
507
|
+
background: theme('colors.transparent'),
|
508
|
+
border: `1px solid ${theme('colors.yellow.700')}`,
|
509
|
+
color: theme('colors.yellow.700'),
|
510
|
+
},
|
511
|
+
'.yt-red-solid': {
|
512
|
+
background: theme('colors.red.500'),
|
513
|
+
color: theme('colors.white'),
|
514
|
+
},
|
515
|
+
'.yt-red-inverted': {
|
516
|
+
background: theme('colors.transparent'),
|
517
|
+
border: `1px solid ${theme('colors.red.500')}`,
|
518
|
+
color: theme('colors.red.500'),
|
519
|
+
},
|
520
|
+
'.yt-green-solid': {
|
521
|
+
background: theme('colors.green.700'),
|
522
|
+
color: theme('colors.white'),
|
523
|
+
},
|
524
|
+
'.yt-green-inverted': {
|
525
|
+
background: theme('colors.transparent'),
|
526
|
+
border: `1px solid ${theme('colors.green.700')}`,
|
527
|
+
color: theme('colors.green.700'),
|
528
|
+
},
|
529
|
+
'.yt-grey-solid': {
|
530
|
+
background: theme('colors.grey.200'),
|
531
|
+
color: theme('colors.black'),
|
532
|
+
},
|
533
|
+
'.yt-grey-inverted': {
|
534
|
+
background: theme('colors.transparent'),
|
535
|
+
border: `1px solid ${theme('colors.grey.700')}`,
|
536
|
+
color: theme('colors.grey.700'),
|
537
|
+
},
|
538
|
+
'.yt-shadow': {
|
539
|
+
'box-shadow': '0px 1px 3px 1px rgba(89, 85, 98, 0.35), 0px 0px 1px 0px rgba(89, 85, 98, 0.2)',
|
540
|
+
},
|
541
|
+
'.yt-shadow-inset': {
|
542
|
+
'box-shadow': 'inset 0px 1px 4px 0px rgba(89, 85, 98, 0.3), inset 0px 0px 1px 0px rgba(89, 85, 98, 0.2)',
|
543
|
+
},
|
544
|
+
'.pointer-events-all': {
|
545
|
+
'pointer-events': 'all',
|
546
|
+
},
|
547
|
+
});
|
548
|
+
}),
|
549
|
+
],
|
550
|
+
};
|