@easy-ui-react/easy-ui-react 1.5.0 → 1.6.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.
@@ -0,0 +1,805 @@
1
+ /*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme {
4
+ :root, :host {
5
+ --color-red-500: oklch(63.7% 0.237 25.331);
6
+ --color-green-500: oklch(72.3% 0.219 149.579);
7
+ --color-blue-500: oklch(62.3% 0.214 259.815);
8
+ --color-black: #000;
9
+ --color-white: #fff;
10
+ --spacing: 0.25rem;
11
+ --text-xs: 0.75rem;
12
+ --text-xs--line-height: calc(1 / 0.75);
13
+ --text-sm: 0.875rem;
14
+ --text-sm--line-height: calc(1.25 / 0.875);
15
+ --text-base: 1rem;
16
+ --text-base--line-height: calc(1.5 / 1);
17
+ --font-weight-normal: 400;
18
+ --font-weight-medium: 500;
19
+ --font-weight-semibold: 600;
20
+ --font-weight-bold: 700;
21
+ --tracking-wide: 0.025em;
22
+ --radius-xl: 0.75rem;
23
+ --animate-spin: spin 1s linear infinite;
24
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
25
+ --default-transition-duration: 150ms;
26
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
27
+ }
28
+ }
29
+ @layer utilities {
30
+ .container {
31
+ width: 100%;
32
+ @media (width >= 40rem) {
33
+ max-width: 40rem;
34
+ }
35
+ @media (width >= 48rem) {
36
+ max-width: 48rem;
37
+ }
38
+ @media (width >= 64rem) {
39
+ max-width: 64rem;
40
+ }
41
+ @media (width >= 80rem) {
42
+ max-width: 80rem;
43
+ }
44
+ @media (width >= 96rem) {
45
+ max-width: 96rem;
46
+ }
47
+ }
48
+ .contents {
49
+ display: contents;
50
+ }
51
+ .inline-flex {
52
+ display: inline-flex;
53
+ }
54
+ .size-3 {
55
+ width: calc(var(--spacing) * 3);
56
+ height: calc(var(--spacing) * 3);
57
+ }
58
+ .size-4 {
59
+ width: calc(var(--spacing) * 4);
60
+ height: calc(var(--spacing) * 4);
61
+ }
62
+ .size-6 {
63
+ width: calc(var(--spacing) * 6);
64
+ height: calc(var(--spacing) * 6);
65
+ }
66
+ .h-8 {
67
+ height: calc(var(--spacing) * 8);
68
+ }
69
+ .h-10 {
70
+ height: calc(var(--spacing) * 10);
71
+ }
72
+ .h-12 {
73
+ height: calc(var(--spacing) * 12);
74
+ }
75
+ .w-full {
76
+ width: 100%;
77
+ }
78
+ .flex-1 {
79
+ flex: 1;
80
+ }
81
+ .grow {
82
+ flex-grow: 1;
83
+ }
84
+ .animate-pulse {
85
+ animation: var(--animate-pulse);
86
+ }
87
+ .animate-spin {
88
+ animation: var(--animate-spin);
89
+ }
90
+ .cursor-pointer {
91
+ cursor: pointer;
92
+ }
93
+ .flex-col {
94
+ flex-direction: column;
95
+ }
96
+ .items-center {
97
+ align-items: center;
98
+ }
99
+ .justify-center {
100
+ justify-content: center;
101
+ }
102
+ .gap-1 {
103
+ gap: var(--spacing);
104
+ }
105
+ .gap-2 {
106
+ gap: calc(var(--spacing) * 2);
107
+ }
108
+ .rounded-\(--easyui-radius-lg\) {
109
+ border-radius: var(--easyui-radius-lg);
110
+ }
111
+ .rounded-\(--easyui-radius-md\) {
112
+ border-radius: var(--easyui-radius-md);
113
+ }
114
+ .rounded-\(--easyui-radius-sm\) {
115
+ border-radius: var(--easyui-radius-sm);
116
+ }
117
+ .rounded-full {
118
+ border-radius: calc(infinity * 1px);
119
+ }
120
+ .rounded-none {
121
+ border-radius: 0;
122
+ }
123
+ .rounded-xl {
124
+ border-radius: var(--radius-xl);
125
+ }
126
+ .border {
127
+ border-style: var(--tw-border-style);
128
+ border-width: 1px;
129
+ }
130
+ .border-\[length\:var\(--easyui-border-width-md\)\] {
131
+ border-style: var(--tw-border-style);
132
+ border-width: var(--easyui-border-width-md);
133
+ }
134
+ .border-solid {
135
+ --tw-border-style: solid;
136
+ border-style: solid;
137
+ }
138
+ .border-\(--easyui-color-default\) {
139
+ border-color: var(--easyui-color-default);
140
+ }
141
+ .border-\(--easyui-color-error\) {
142
+ border-color: var(--easyui-color-error);
143
+ }
144
+ .border-\(--easyui-color-primary\) {
145
+ border-color: var(--easyui-color-primary);
146
+ }
147
+ .border-\(--easyui-color-secondary\) {
148
+ border-color: var(--easyui-color-secondary);
149
+ }
150
+ .border-\(--easyui-color-success\) {
151
+ border-color: var(--easyui-color-success);
152
+ }
153
+ .border-\(--easyui-color-warning\) {
154
+ border-color: var(--easyui-color-warning);
155
+ }
156
+ .border-red-500 {
157
+ border-color: var(--color-red-500);
158
+ }
159
+ .bg-\(--easyui-color-default\) {
160
+ background-color: var(--easyui-color-default);
161
+ }
162
+ .bg-\(--easyui-color-default\)\/40 {
163
+ background-color: var(--easyui-color-default);
164
+ @supports (color: color-mix(in lab, red, red)) {
165
+ background-color: color-mix(in oklab, var(--easyui-color-default) 40%, transparent);
166
+ }
167
+ }
168
+ .bg-\(--easyui-color-error\) {
169
+ background-color: var(--easyui-color-error);
170
+ }
171
+ .bg-\(--easyui-color-error\)\/20 {
172
+ background-color: var(--easyui-color-error);
173
+ @supports (color: color-mix(in lab, red, red)) {
174
+ background-color: color-mix(in oklab, var(--easyui-color-error) 20%, transparent);
175
+ }
176
+ }
177
+ .bg-\(--easyui-color-primary\) {
178
+ background-color: var(--easyui-color-primary);
179
+ }
180
+ .bg-\(--easyui-color-primary\)\/20 {
181
+ background-color: var(--easyui-color-primary);
182
+ @supports (color: color-mix(in lab, red, red)) {
183
+ background-color: color-mix(in oklab, var(--easyui-color-primary) 20%, transparent);
184
+ }
185
+ }
186
+ .bg-\(--easyui-color-secondary\) {
187
+ background-color: var(--easyui-color-secondary);
188
+ }
189
+ .bg-\(--easyui-color-secondary\)\/20 {
190
+ background-color: var(--easyui-color-secondary);
191
+ @supports (color: color-mix(in lab, red, red)) {
192
+ background-color: color-mix(in oklab, var(--easyui-color-secondary) 20%, transparent);
193
+ }
194
+ }
195
+ .bg-\(--easyui-color-success\) {
196
+ background-color: var(--easyui-color-success);
197
+ }
198
+ .bg-\(--easyui-color-success\)\/20 {
199
+ background-color: var(--easyui-color-success);
200
+ @supports (color: color-mix(in lab, red, red)) {
201
+ background-color: color-mix(in oklab, var(--easyui-color-success) 20%, transparent);
202
+ }
203
+ }
204
+ .bg-\(--easyui-color-warning\) {
205
+ background-color: var(--easyui-color-warning);
206
+ }
207
+ .bg-\(--easyui-color-warning\)\/20 {
208
+ background-color: var(--easyui-color-warning);
209
+ @supports (color: color-mix(in lab, red, red)) {
210
+ background-color: color-mix(in oklab, var(--easyui-color-warning) 20%, transparent);
211
+ }
212
+ }
213
+ .bg-blue-500 {
214
+ background-color: var(--color-blue-500);
215
+ }
216
+ .bg-green-500 {
217
+ background-color: var(--color-green-500);
218
+ }
219
+ .bg-red-500 {
220
+ background-color: var(--color-red-500);
221
+ }
222
+ .bg-white {
223
+ background-color: var(--color-white);
224
+ }
225
+ .px-3 {
226
+ padding-inline: calc(var(--spacing) * 3);
227
+ }
228
+ .px-4 {
229
+ padding-inline: calc(var(--spacing) * 4);
230
+ }
231
+ .px-5 {
232
+ padding-inline: calc(var(--spacing) * 5);
233
+ }
234
+ .text-base {
235
+ font-size: var(--text-base);
236
+ line-height: var(--tw-leading, var(--text-base--line-height));
237
+ }
238
+ .text-sm {
239
+ font-size: var(--text-sm);
240
+ line-height: var(--tw-leading, var(--text-sm--line-height));
241
+ }
242
+ .text-xs {
243
+ font-size: var(--text-xs);
244
+ line-height: var(--tw-leading, var(--text-xs--line-height));
245
+ }
246
+ .font-bold {
247
+ --tw-font-weight: var(--font-weight-bold);
248
+ font-weight: var(--font-weight-bold);
249
+ }
250
+ .font-medium {
251
+ --tw-font-weight: var(--font-weight-medium);
252
+ font-weight: var(--font-weight-medium);
253
+ }
254
+ .font-normal {
255
+ --tw-font-weight: var(--font-weight-normal);
256
+ font-weight: var(--font-weight-normal);
257
+ }
258
+ .font-semibold {
259
+ --tw-font-weight: var(--font-weight-semibold);
260
+ font-weight: var(--font-weight-semibold);
261
+ }
262
+ .tracking-wide {
263
+ --tw-tracking: var(--tracking-wide);
264
+ letter-spacing: var(--tracking-wide);
265
+ }
266
+ .text-\(--easyui-color-default-foreground\) {
267
+ color: var(--easyui-color-default-foreground);
268
+ }
269
+ .text-\(--easyui-color-default-foreground\)\/60 {
270
+ color: var(--easyui-color-default-foreground);
271
+ @supports (color: color-mix(in lab, red, red)) {
272
+ color: color-mix(in oklab, var(--easyui-color-default-foreground) 60%, transparent);
273
+ }
274
+ }
275
+ .text-\(--easyui-color-error\) {
276
+ color: var(--easyui-color-error);
277
+ }
278
+ .text-\(--easyui-color-error-dark\) {
279
+ color: var(--easyui-color-error-dark);
280
+ }
281
+ .text-\(--easyui-color-error-foreground\) {
282
+ color: var(--easyui-color-error-foreground);
283
+ }
284
+ .text-\(--easyui-color-primary\) {
285
+ color: var(--easyui-color-primary);
286
+ }
287
+ .text-\(--easyui-color-primary-dark\) {
288
+ color: var(--easyui-color-primary-dark);
289
+ }
290
+ .text-\(--easyui-color-primary-foreground\) {
291
+ color: var(--easyui-color-primary-foreground);
292
+ }
293
+ .text-\(--easyui-color-secondary\) {
294
+ color: var(--easyui-color-secondary);
295
+ }
296
+ .text-\(--easyui-color-secondary-dark\) {
297
+ color: var(--easyui-color-secondary-dark);
298
+ }
299
+ .text-\(--easyui-color-secondary-foreground\) {
300
+ color: var(--easyui-color-secondary-foreground);
301
+ }
302
+ .text-\(--easyui-color-success\) {
303
+ color: var(--easyui-color-success);
304
+ }
305
+ .text-\(--easyui-color-success-dark\) {
306
+ color: var(--easyui-color-success-dark);
307
+ }
308
+ .text-\(--easyui-color-success-foreground\) {
309
+ color: var(--easyui-color-success-foreground);
310
+ }
311
+ .text-\(--easyui-color-warning\) {
312
+ color: var(--easyui-color-warning);
313
+ }
314
+ .text-\(--easyui-color-warning-dark\) {
315
+ color: var(--easyui-color-warning-dark);
316
+ }
317
+ .text-\(--easyui-color-warning-foreground\) {
318
+ color: var(--easyui-color-warning-foreground);
319
+ }
320
+ .text-white {
321
+ color: var(--color-white);
322
+ }
323
+ .uppercase {
324
+ text-transform: uppercase;
325
+ }
326
+ .opacity-25 {
327
+ opacity: 25%;
328
+ }
329
+ .opacity-75 {
330
+ opacity: 75%;
331
+ }
332
+ .shadow-md {
333
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
334
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
335
+ }
336
+ .ring {
337
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
338
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
339
+ }
340
+ .outline {
341
+ outline-style: var(--tw-outline-style);
342
+ outline-width: 1px;
343
+ }
344
+ .filter {
345
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
346
+ }
347
+ .transition-\[filter\,background-color\] {
348
+ transition-property: filter,background-color;
349
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
350
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
351
+ }
352
+ .duration-150 {
353
+ --tw-duration: 150ms;
354
+ transition-duration: 150ms;
355
+ }
356
+ .select-none {
357
+ -webkit-user-select: none;
358
+ user-select: none;
359
+ }
360
+ .hover\:bg-\(--easyui-color-default\)\/50 {
361
+ &:hover {
362
+ @media (hover: hover) {
363
+ background-color: var(--easyui-color-default);
364
+ @supports (color: color-mix(in lab, red, red)) {
365
+ background-color: color-mix(in oklab, var(--easyui-color-default) 50%, transparent);
366
+ }
367
+ }
368
+ }
369
+ }
370
+ .hover\:bg-\(--easyui-color-error\)\/10 {
371
+ &:hover {
372
+ @media (hover: hover) {
373
+ background-color: var(--easyui-color-error);
374
+ @supports (color: color-mix(in lab, red, red)) {
375
+ background-color: color-mix(in oklab, var(--easyui-color-error) 10%, transparent);
376
+ }
377
+ }
378
+ }
379
+ }
380
+ .hover\:bg-\(--easyui-color-error\)\/25 {
381
+ &:hover {
382
+ @media (hover: hover) {
383
+ background-color: var(--easyui-color-error);
384
+ @supports (color: color-mix(in lab, red, red)) {
385
+ background-color: color-mix(in oklab, var(--easyui-color-error) 25%, transparent);
386
+ }
387
+ }
388
+ }
389
+ }
390
+ .hover\:bg-\(--easyui-color-primary\)\/10 {
391
+ &:hover {
392
+ @media (hover: hover) {
393
+ background-color: var(--easyui-color-primary);
394
+ @supports (color: color-mix(in lab, red, red)) {
395
+ background-color: color-mix(in oklab, var(--easyui-color-primary) 10%, transparent);
396
+ }
397
+ }
398
+ }
399
+ }
400
+ .hover\:bg-\(--easyui-color-primary\)\/25 {
401
+ &:hover {
402
+ @media (hover: hover) {
403
+ background-color: var(--easyui-color-primary);
404
+ @supports (color: color-mix(in lab, red, red)) {
405
+ background-color: color-mix(in oklab, var(--easyui-color-primary) 25%, transparent);
406
+ }
407
+ }
408
+ }
409
+ }
410
+ .hover\:bg-\(--easyui-color-secondary\)\/10 {
411
+ &:hover {
412
+ @media (hover: hover) {
413
+ background-color: var(--easyui-color-secondary);
414
+ @supports (color: color-mix(in lab, red, red)) {
415
+ background-color: color-mix(in oklab, var(--easyui-color-secondary) 10%, transparent);
416
+ }
417
+ }
418
+ }
419
+ }
420
+ .hover\:bg-\(--easyui-color-secondary\)\/25 {
421
+ &:hover {
422
+ @media (hover: hover) {
423
+ background-color: var(--easyui-color-secondary);
424
+ @supports (color: color-mix(in lab, red, red)) {
425
+ background-color: color-mix(in oklab, var(--easyui-color-secondary) 25%, transparent);
426
+ }
427
+ }
428
+ }
429
+ }
430
+ .hover\:bg-\(--easyui-color-success\)\/10 {
431
+ &:hover {
432
+ @media (hover: hover) {
433
+ background-color: var(--easyui-color-success);
434
+ @supports (color: color-mix(in lab, red, red)) {
435
+ background-color: color-mix(in oklab, var(--easyui-color-success) 10%, transparent);
436
+ }
437
+ }
438
+ }
439
+ }
440
+ .hover\:bg-\(--easyui-color-success\)\/25 {
441
+ &:hover {
442
+ @media (hover: hover) {
443
+ background-color: var(--easyui-color-success);
444
+ @supports (color: color-mix(in lab, red, red)) {
445
+ background-color: color-mix(in oklab, var(--easyui-color-success) 25%, transparent);
446
+ }
447
+ }
448
+ }
449
+ }
450
+ .hover\:bg-\(--easyui-color-warning\)\/10 {
451
+ &:hover {
452
+ @media (hover: hover) {
453
+ background-color: var(--easyui-color-warning);
454
+ @supports (color: color-mix(in lab, red, red)) {
455
+ background-color: color-mix(in oklab, var(--easyui-color-warning) 10%, transparent);
456
+ }
457
+ }
458
+ }
459
+ }
460
+ .hover\:bg-\(--easyui-color-warning\)\/25 {
461
+ &:hover {
462
+ @media (hover: hover) {
463
+ background-color: var(--easyui-color-warning);
464
+ @supports (color: color-mix(in lab, red, red)) {
465
+ background-color: color-mix(in oklab, var(--easyui-color-warning) 25%, transparent);
466
+ }
467
+ }
468
+ }
469
+ }
470
+ .hover\:bg-black\/5 {
471
+ &:hover {
472
+ @media (hover: hover) {
473
+ background-color: color-mix(in srgb, #000 5%, transparent);
474
+ @supports (color: color-mix(in lab, red, red)) {
475
+ background-color: color-mix(in oklab, var(--color-black) 5%, transparent);
476
+ }
477
+ }
478
+ }
479
+ }
480
+ .hover\:brightness-95 {
481
+ &:hover {
482
+ @media (hover: hover) {
483
+ --tw-brightness: brightness(95%);
484
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
485
+ }
486
+ }
487
+ }
488
+ .focus-visible\:outline-2 {
489
+ &:focus-visible {
490
+ outline-style: var(--tw-outline-style);
491
+ outline-width: 2px;
492
+ }
493
+ }
494
+ .focus-visible\:outline-offset-2 {
495
+ &:focus-visible {
496
+ outline-offset: 2px;
497
+ }
498
+ }
499
+ .focus-visible\:outline-\(--easyui-color-focus-ring\) {
500
+ &:focus-visible {
501
+ outline-color: var(--easyui-color-focus-ring);
502
+ }
503
+ }
504
+ .active\:bg-\(--easyui-color-default\)\/70 {
505
+ &:active {
506
+ background-color: var(--easyui-color-default);
507
+ @supports (color: color-mix(in lab, red, red)) {
508
+ background-color: color-mix(in oklab, var(--easyui-color-default) 70%, transparent);
509
+ }
510
+ }
511
+ }
512
+ .active\:bg-\(--easyui-color-error\)\/15 {
513
+ &:active {
514
+ background-color: var(--easyui-color-error);
515
+ @supports (color: color-mix(in lab, red, red)) {
516
+ background-color: color-mix(in oklab, var(--easyui-color-error) 15%, transparent);
517
+ }
518
+ }
519
+ }
520
+ .active\:bg-\(--easyui-color-primary\)\/15 {
521
+ &:active {
522
+ background-color: var(--easyui-color-primary);
523
+ @supports (color: color-mix(in lab, red, red)) {
524
+ background-color: color-mix(in oklab, var(--easyui-color-primary) 15%, transparent);
525
+ }
526
+ }
527
+ }
528
+ .active\:bg-\(--easyui-color-secondary\)\/15 {
529
+ &:active {
530
+ background-color: var(--easyui-color-secondary);
531
+ @supports (color: color-mix(in lab, red, red)) {
532
+ background-color: color-mix(in oklab, var(--easyui-color-secondary) 15%, transparent);
533
+ }
534
+ }
535
+ }
536
+ .active\:bg-\(--easyui-color-success\)\/15 {
537
+ &:active {
538
+ background-color: var(--easyui-color-success);
539
+ @supports (color: color-mix(in lab, red, red)) {
540
+ background-color: color-mix(in oklab, var(--easyui-color-success) 15%, transparent);
541
+ }
542
+ }
543
+ }
544
+ .active\:bg-\(--easyui-color-warning\)\/15 {
545
+ &:active {
546
+ background-color: var(--easyui-color-warning);
547
+ @supports (color: color-mix(in lab, red, red)) {
548
+ background-color: color-mix(in oklab, var(--easyui-color-warning) 15%, transparent);
549
+ }
550
+ }
551
+ }
552
+ .active\:bg-black\/10 {
553
+ &:active {
554
+ background-color: color-mix(in srgb, #000 10%, transparent);
555
+ @supports (color: color-mix(in lab, red, red)) {
556
+ background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
557
+ }
558
+ }
559
+ }
560
+ .active\:brightness-90 {
561
+ &:active {
562
+ --tw-brightness: brightness(90%);
563
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
564
+ }
565
+ }
566
+ .disabled\:cursor-not-allowed {
567
+ &:disabled {
568
+ cursor: not-allowed;
569
+ }
570
+ }
571
+ .disabled\:opacity-50 {
572
+ &:disabled {
573
+ opacity: 50%;
574
+ }
575
+ }
576
+ }
577
+ :root {
578
+ --easyui-color-default: #d7d7dd;
579
+ --easyui-color-default-foreground: #18181b;
580
+ --easyui-color-primary: #1c5eca;
581
+ --easyui-color-primary-foreground: #ffffff;
582
+ --easyui-color-secondary: #5e2bd4;
583
+ --easyui-color-secondary-foreground: #ffffff;
584
+ --easyui-color-success: #11ab3c;
585
+ --easyui-color-success-foreground: #ffffff;
586
+ --easyui-color-warning: #da820d;
587
+ --easyui-color-warning-foreground: #ffffff;
588
+ --easyui-color-error: #d61515;
589
+ --easyui-color-error-foreground: #ffffff;
590
+ --easyui-color-primary-dark: var(--easyui-color-primary);
591
+ @supports (color: color-mix(in lab, red, red)) {
592
+ --easyui-color-primary-dark: color-mix(in srgb, var(--easyui-color-primary) 70%, black);
593
+ }
594
+ --easyui-color-secondary-dark: var(--easyui-color-secondary);
595
+ @supports (color: color-mix(in lab, red, red)) {
596
+ --easyui-color-secondary-dark: color-mix(in srgb, var(--easyui-color-secondary) 70%, black);
597
+ }
598
+ --easyui-color-success-dark: var(--easyui-color-success);
599
+ @supports (color: color-mix(in lab, red, red)) {
600
+ --easyui-color-success-dark: color-mix(in srgb, var(--easyui-color-success) 70%, black);
601
+ }
602
+ --easyui-color-warning-dark: var(--easyui-color-warning);
603
+ @supports (color: color-mix(in lab, red, red)) {
604
+ --easyui-color-warning-dark: color-mix(in srgb, var(--easyui-color-warning) 70%, black);
605
+ }
606
+ --easyui-color-error-dark: var(--easyui-color-error);
607
+ @supports (color: color-mix(in lab, red, red)) {
608
+ --easyui-color-error-dark: color-mix(in srgb, var(--easyui-color-error) 70%, black);
609
+ }
610
+ --easyui-color-focus-ring: var(--easyui-color-primary);
611
+ --easyui-radius-sm: 8px;
612
+ --easyui-radius-md: 12px;
613
+ --easyui-radius-lg: 14px;
614
+ --easyui-border-width-sm: 1px;
615
+ --easyui-border-width-md: 2px;
616
+ --easyui-border-width-lg: 3px;
617
+ }
618
+ @property --tw-border-style {
619
+ syntax: "*";
620
+ inherits: false;
621
+ initial-value: solid;
622
+ }
623
+ @property --tw-font-weight {
624
+ syntax: "*";
625
+ inherits: false;
626
+ }
627
+ @property --tw-tracking {
628
+ syntax: "*";
629
+ inherits: false;
630
+ }
631
+ @property --tw-shadow {
632
+ syntax: "*";
633
+ inherits: false;
634
+ initial-value: 0 0 #0000;
635
+ }
636
+ @property --tw-shadow-color {
637
+ syntax: "*";
638
+ inherits: false;
639
+ }
640
+ @property --tw-shadow-alpha {
641
+ syntax: "<percentage>";
642
+ inherits: false;
643
+ initial-value: 100%;
644
+ }
645
+ @property --tw-inset-shadow {
646
+ syntax: "*";
647
+ inherits: false;
648
+ initial-value: 0 0 #0000;
649
+ }
650
+ @property --tw-inset-shadow-color {
651
+ syntax: "*";
652
+ inherits: false;
653
+ }
654
+ @property --tw-inset-shadow-alpha {
655
+ syntax: "<percentage>";
656
+ inherits: false;
657
+ initial-value: 100%;
658
+ }
659
+ @property --tw-ring-color {
660
+ syntax: "*";
661
+ inherits: false;
662
+ }
663
+ @property --tw-ring-shadow {
664
+ syntax: "*";
665
+ inherits: false;
666
+ initial-value: 0 0 #0000;
667
+ }
668
+ @property --tw-inset-ring-color {
669
+ syntax: "*";
670
+ inherits: false;
671
+ }
672
+ @property --tw-inset-ring-shadow {
673
+ syntax: "*";
674
+ inherits: false;
675
+ initial-value: 0 0 #0000;
676
+ }
677
+ @property --tw-ring-inset {
678
+ syntax: "*";
679
+ inherits: false;
680
+ }
681
+ @property --tw-ring-offset-width {
682
+ syntax: "<length>";
683
+ inherits: false;
684
+ initial-value: 0px;
685
+ }
686
+ @property --tw-ring-offset-color {
687
+ syntax: "*";
688
+ inherits: false;
689
+ initial-value: #fff;
690
+ }
691
+ @property --tw-ring-offset-shadow {
692
+ syntax: "*";
693
+ inherits: false;
694
+ initial-value: 0 0 #0000;
695
+ }
696
+ @property --tw-outline-style {
697
+ syntax: "*";
698
+ inherits: false;
699
+ initial-value: solid;
700
+ }
701
+ @property --tw-blur {
702
+ syntax: "*";
703
+ inherits: false;
704
+ }
705
+ @property --tw-brightness {
706
+ syntax: "*";
707
+ inherits: false;
708
+ }
709
+ @property --tw-contrast {
710
+ syntax: "*";
711
+ inherits: false;
712
+ }
713
+ @property --tw-grayscale {
714
+ syntax: "*";
715
+ inherits: false;
716
+ }
717
+ @property --tw-hue-rotate {
718
+ syntax: "*";
719
+ inherits: false;
720
+ }
721
+ @property --tw-invert {
722
+ syntax: "*";
723
+ inherits: false;
724
+ }
725
+ @property --tw-opacity {
726
+ syntax: "*";
727
+ inherits: false;
728
+ }
729
+ @property --tw-saturate {
730
+ syntax: "*";
731
+ inherits: false;
732
+ }
733
+ @property --tw-sepia {
734
+ syntax: "*";
735
+ inherits: false;
736
+ }
737
+ @property --tw-drop-shadow {
738
+ syntax: "*";
739
+ inherits: false;
740
+ }
741
+ @property --tw-drop-shadow-color {
742
+ syntax: "*";
743
+ inherits: false;
744
+ }
745
+ @property --tw-drop-shadow-alpha {
746
+ syntax: "<percentage>";
747
+ inherits: false;
748
+ initial-value: 100%;
749
+ }
750
+ @property --tw-drop-shadow-size {
751
+ syntax: "*";
752
+ inherits: false;
753
+ }
754
+ @property --tw-duration {
755
+ syntax: "*";
756
+ inherits: false;
757
+ }
758
+ @keyframes spin {
759
+ to {
760
+ transform: rotate(360deg);
761
+ }
762
+ }
763
+ @keyframes pulse {
764
+ 50% {
765
+ opacity: 0.5;
766
+ }
767
+ }
768
+ @layer properties {
769
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
770
+ *, ::before, ::after, ::backdrop {
771
+ --tw-border-style: solid;
772
+ --tw-font-weight: initial;
773
+ --tw-tracking: initial;
774
+ --tw-shadow: 0 0 #0000;
775
+ --tw-shadow-color: initial;
776
+ --tw-shadow-alpha: 100%;
777
+ --tw-inset-shadow: 0 0 #0000;
778
+ --tw-inset-shadow-color: initial;
779
+ --tw-inset-shadow-alpha: 100%;
780
+ --tw-ring-color: initial;
781
+ --tw-ring-shadow: 0 0 #0000;
782
+ --tw-inset-ring-color: initial;
783
+ --tw-inset-ring-shadow: 0 0 #0000;
784
+ --tw-ring-inset: initial;
785
+ --tw-ring-offset-width: 0px;
786
+ --tw-ring-offset-color: #fff;
787
+ --tw-ring-offset-shadow: 0 0 #0000;
788
+ --tw-outline-style: solid;
789
+ --tw-blur: initial;
790
+ --tw-brightness: initial;
791
+ --tw-contrast: initial;
792
+ --tw-grayscale: initial;
793
+ --tw-hue-rotate: initial;
794
+ --tw-invert: initial;
795
+ --tw-opacity: initial;
796
+ --tw-saturate: initial;
797
+ --tw-sepia: initial;
798
+ --tw-drop-shadow: initial;
799
+ --tw-drop-shadow-color: initial;
800
+ --tw-drop-shadow-alpha: 100%;
801
+ --tw-drop-shadow-size: initial;
802
+ --tw-duration: initial;
803
+ }
804
+ }
805
+ }