@esic-lab/data-core-ui 0.0.14 → 0.0.16

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/index.css CHANGED
@@ -27,23 +27,41 @@
27
27
  --color-red-400: #f16965;
28
28
  --color-red-500: #ee443f;
29
29
  --color-red-600: #d93e39;
30
+ --color-yellow-400: #ffbb33;
31
+ --color-green-400: #69c57d;
30
32
  --color-green-500: #43b75d;
31
33
  --color-blue-500: #0095ff;
34
+ --color-indigo-100: oklch(93% 0.034 272.788);
35
+ --color-indigo-800: oklch(39.8% 0.195 277.366);
36
+ --color-gray-50: #f9fafb;
37
+ --color-gray-100: #f3f4f6;
32
38
  --color-gray-200: #e5e7ea;
33
39
  --color-gray-300: #d2d5db;
34
40
  --color-gray-400: #9ea2ae;
41
+ --color-gray-500: #6d717f;
35
42
  --color-gray-600: #4d5461;
43
+ --color-gray-700: #394050;
36
44
  --color-black: #000;
37
45
  --color-white: #fff;
38
46
  --spacing: 0.25rem;
47
+ --text-sm: 0.875rem;
48
+ --text-sm--line-height: calc(1.25 / 0.875);
49
+ --text-lg: 1.125rem;
50
+ --text-lg--line-height: calc(1.75 / 1.125);
51
+ --font-weight-medium: 500;
39
52
  --font-weight-semibold: 600;
40
53
  --radius-md: 0.375rem;
54
+ --radius-lg: 0.5rem;
55
+ --radius-2xl: 1rem;
41
56
  --animate-spin: spin 1s linear infinite;
42
57
  --default-transition-duration: 150ms;
43
58
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
44
59
  --default-font-family: var(--font-sans);
45
60
  --default-mono-font-family: var(--font-mono);
46
61
  --color-primary-500: #4e61f6;
62
+ --color-primary-400: #7181f8;
63
+ --color-primary-200: #aeb6fb;
64
+ --color-primary-50: #edeffe;
47
65
  }
48
66
  }
49
67
  @layer base {
@@ -236,14 +254,56 @@
236
254
  }
237
255
  }
238
256
  @layer utilities {
257
+ .pointer-events-none {
258
+ pointer-events: none;
259
+ }
260
+ .invisible {
261
+ visibility: hidden;
262
+ }
263
+ .absolute {
264
+ position: absolute;
265
+ }
266
+ .fixed {
267
+ position: fixed;
268
+ }
239
269
  .relative {
240
270
  position: relative;
241
271
  }
242
272
  .static {
243
273
  position: static;
244
274
  }
245
- .top-4 {
246
- top: calc(var(--spacing) * 4);
275
+ .inset-0 {
276
+ inset: calc(var(--spacing) * 0);
277
+ }
278
+ .top-0 {
279
+ top: calc(var(--spacing) * 0);
280
+ }
281
+ .top-1\/2 {
282
+ top: calc(1/2 * 100%);
283
+ }
284
+ .top-3 {
285
+ top: calc(var(--spacing) * 3);
286
+ }
287
+ .right-3 {
288
+ right: calc(var(--spacing) * 3);
289
+ }
290
+ .left-full {
291
+ left: 100%;
292
+ }
293
+ .z-10 {
294
+ z-index: 10;
295
+ }
296
+ .z-50 {
297
+ z-index: 50;
298
+ }
299
+ .my-2 {
300
+ margin-block: calc(var(--spacing) * 2);
301
+ }
302
+ .mt-4 {
303
+ margin-top: calc(var(--spacing) * 4);
304
+ }
305
+ .mt-\[8px\] {
306
+ margin-top: 8px;
247
307
  }
248
308
  .mt-\[10px\] {
249
309
  margin-top: 10px;
@@ -251,9 +311,18 @@
251
311
  .mr-\[8px\] {
252
312
  margin-right: 8px;
253
313
  }
314
+ .mb-2 {
315
+ margin-bottom: calc(var(--spacing) * 2);
316
+ }
317
+ .mb-4 {
318
+ margin-bottom: calc(var(--spacing) * 4);
319
+ }
254
320
  .mb-\[8px\] {
255
321
  margin-bottom: 8px;
256
322
  }
323
+ .ml-3 {
324
+ margin-left: calc(var(--spacing) * 3);
325
+ }
257
326
  .ml-auto {
258
327
  margin-left: auto;
259
328
  }
@@ -278,12 +347,18 @@
278
347
  .h-5 {
279
348
  height: calc(var(--spacing) * 5);
280
349
  }
350
+ .h-6 {
351
+ height: calc(var(--spacing) * 6);
352
+ }
281
353
  .h-7 {
282
354
  height: calc(var(--spacing) * 7);
283
355
  }
284
356
  .h-\[10px\] {
285
357
  height: 10px;
286
358
  }
359
+ .h-\[15px\] {
360
+ height: 15px;
361
+ }
287
362
  .h-\[16px\] {
288
363
  height: 16px;
289
364
  }
@@ -296,6 +371,12 @@
296
371
  .h-\[30px\] {
297
372
  height: 30px;
298
373
  }
374
+ .h-\[32px\] {
375
+ height: 32px;
376
+ }
377
+ .h-\[34px\] {
378
+ height: 34px;
379
+ }
299
380
  .h-\[35px\] {
300
381
  height: 35px;
301
382
  }
@@ -308,21 +389,51 @@
308
389
  .h-\[47px\] {
309
390
  height: 47px;
310
391
  }
392
+ .h-\[500px\] {
393
+ height: 500px;
394
+ }
311
395
  .h-\[700px\] {
312
396
  height: 700px;
313
397
  }
398
+ .h-auto {
399
+ height: auto;
400
+ }
314
401
  .h-full {
315
402
  height: 100%;
316
403
  }
404
+ .h-screen {
405
+ height: 100vh;
406
+ }
407
+ .min-h-\[120px\] {
408
+ min-height: 120px;
409
+ }
410
+ .w-0 {
411
+ width: calc(var(--spacing) * 0);
412
+ }
317
413
  .w-5 {
318
414
  width: calc(var(--spacing) * 5);
319
415
  }
416
+ .w-6 {
417
+ width: calc(var(--spacing) * 6);
418
+ }
320
419
  .w-13 {
321
420
  width: calc(var(--spacing) * 13);
322
421
  }
422
+ .w-16 {
423
+ width: calc(var(--spacing) * 16);
424
+ }
425
+ .w-52 {
426
+ width: calc(var(--spacing) * 52);
427
+ }
428
+ .w-64 {
429
+ width: calc(var(--spacing) * 64);
430
+ }
323
431
  .w-\[10px\] {
324
432
  width: 10px;
325
433
  }
434
+ .w-\[15px\] {
435
+ width: 15px;
436
+ }
326
437
  .w-\[16px\] {
327
438
  width: 16px;
328
439
  }
@@ -332,27 +443,52 @@
332
443
  .w-\[30px\] {
333
444
  width: 30px;
334
445
  }
446
+ .w-\[32px\] {
447
+ width: 32px;
448
+ }
335
449
  .w-\[40px\] {
336
450
  width: 40px;
337
451
  }
452
+ .w-\[75\%\] {
453
+ width: 75%;
454
+ }
338
455
  .w-\[80px\] {
339
456
  width: 80px;
340
457
  }
341
458
  .w-\[100px\] {
342
459
  width: 100px;
343
460
  }
461
+ .w-\[200px\] {
462
+ width: 200px;
463
+ }
344
464
  .w-\[202px\] {
345
465
  width: 202px;
346
466
  }
347
467
  .w-\[242px\] {
348
468
  width: 242px;
349
469
  }
350
- .w-\[1500px\] {
351
- width: 1500px;
470
+ .w-\[250px\] {
471
+ width: 250px;
472
+ }
473
+ .w-\[500px\] {
474
+ width: 500px;
475
+ }
476
+ .w-\[1000px\] {
477
+ width: 1000px;
352
478
  }
353
479
  .w-full {
354
480
  width: 100%;
355
481
  }
482
+ .min-w-\[400px\] {
483
+ min-width: 400px;
484
+ }
485
+ .flex-1 {
486
+ flex: 1;
487
+ }
488
+ .-translate-x-2 {
489
+ --tw-translate-x: calc(var(--spacing) * -2);
490
+ translate: var(--tw-translate-x) var(--tw-translate-y);
491
+ }
356
492
  .translate-x-0 {
357
493
  --tw-translate-x: calc(var(--spacing) * 0);
358
494
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -361,6 +497,10 @@
361
497
  --tw-translate-x: calc(var(--spacing) * 6);
362
498
  translate: var(--tw-translate-x) var(--tw-translate-y);
363
499
  }
500
+ .-translate-y-1\/2 {
501
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
502
+ translate: var(--tw-translate-x) var(--tw-translate-y);
503
+ }
364
504
  .scale-0 {
365
505
  --tw-scale-x: 0%;
366
506
  --tw-scale-y: 0%;
@@ -379,9 +519,15 @@
379
519
  .animate-spin {
380
520
  animation: var(--animate-spin);
381
521
  }
522
+ .cursor-not-allowed {
523
+ cursor: not-allowed;
524
+ }
382
525
  .cursor-pointer {
383
526
  cursor: pointer;
384
527
  }
528
+ .resize {
529
+ resize: both;
530
+ }
385
531
  .\[grid-template-columns\:repeat\(var\(--cols\)\,minmax\(0\,1fr\)\)\] {
386
532
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
387
533
  }
@@ -391,15 +537,24 @@
391
537
  .items-center {
392
538
  align-items: center;
393
539
  }
540
+ .justify-between {
541
+ justify-content: space-between;
542
+ }
394
543
  .justify-center {
395
544
  justify-content: center;
396
545
  }
397
546
  .gap-2 {
398
547
  gap: calc(var(--spacing) * 2);
399
548
  }
549
+ .gap-3 {
550
+ gap: calc(var(--spacing) * 3);
551
+ }
400
552
  .gap-4 {
401
553
  gap: calc(var(--spacing) * 4);
402
554
  }
555
+ .gap-\[8px\] {
556
+ gap: 8px;
557
+ }
403
558
  .gap-\[10px\] {
404
559
  gap: 10px;
405
560
  }
@@ -411,12 +566,21 @@
411
566
  text-overflow: ellipsis;
412
567
  white-space: nowrap;
413
568
  }
569
+ .overflow-hidden {
570
+ overflow: hidden;
571
+ }
414
572
  .rounded {
415
573
  border-radius: 0.25rem;
416
574
  }
575
+ .rounded-2xl {
576
+ border-radius: var(--radius-2xl);
577
+ }
417
578
  .rounded-\[2px\] {
418
579
  border-radius: 2px;
419
580
  }
581
+ .rounded-\[4px\] {
582
+ border-radius: 4px;
583
+ }
420
584
  .rounded-\[6px\] {
421
585
  border-radius: 6px;
422
586
  }
@@ -426,6 +590,9 @@
426
590
  .rounded-full {
427
591
  border-radius: calc(infinity * 1px);
428
592
  }
593
+ .rounded-lg {
594
+ border-radius: var(--radius-lg);
595
+ }
429
596
  .rounded-md {
430
597
  border-radius: var(--radius-md);
431
598
  }
@@ -433,14 +600,18 @@
433
600
  border-style: var(--tw-border-style);
434
601
  border-width: 1px;
435
602
  }
436
- .border-4 {
603
+ .border-2 {
437
604
  border-style: var(--tw-border-style);
438
- border-width: 4px;
605
+ border-width: 2px;
439
606
  }
440
607
  .border-\[1px\] {
441
608
  border-style: var(--tw-border-style);
442
609
  border-width: 1px;
443
610
  }
611
+ .border-r {
612
+ border-right-style: var(--tw-border-style);
613
+ border-right-width: 1px;
614
+ }
444
615
  .border-b {
445
616
  border-bottom-style: var(--tw-border-style);
446
617
  border-bottom-width: 1px;
@@ -449,9 +620,9 @@
449
620
  border-left-style: var(--tw-border-style);
450
621
  border-left-width: 10px;
451
622
  }
452
- .border-solid {
453
- --tw-border-style: solid;
454
- border-style: solid;
623
+ .border-dashed {
624
+ --tw-border-style: dashed;
625
+ border-style: dashed;
455
626
  }
456
627
  .border-black {
457
628
  border-color: var(--color-black);
@@ -459,30 +630,54 @@
459
630
  .border-gray-200 {
460
631
  border-color: var(--color-gray-200);
461
632
  }
633
+ .border-gray-300 {
634
+ border-color: var(--color-gray-300);
635
+ }
636
+ .border-gray-400 {
637
+ border-color: var(--color-gray-400);
638
+ }
462
639
  .border-green-500 {
463
640
  border-color: var(--color-green-500);
464
641
  }
642
+ .border-primary-500 {
643
+ border-color: var(--color-primary-500);
644
+ }
465
645
  .border-red-600 {
466
646
  border-color: var(--color-red-600);
467
647
  }
468
- .border-t-transparent {
469
- border-top-color: transparent;
470
- }
471
648
  .bg-\[\#E9E9E9\] {
472
649
  background-color: #E9E9E9;
473
650
  }
474
651
  .bg-black {
475
652
  background-color: var(--color-black);
476
653
  }
654
+ .bg-black\/50 {
655
+ background-color: color-mix(in srgb, #000 50%, transparent);
656
+ @supports (color: color-mix(in lab, red, red)) {
657
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
658
+ }
659
+ }
477
660
  .bg-blue-500 {
478
661
  background-color: var(--color-blue-500);
479
662
  }
663
+ .bg-gray-50 {
664
+ background-color: var(--color-gray-50);
665
+ }
666
+ .bg-gray-100 {
667
+ background-color: var(--color-gray-100);
668
+ }
480
669
  .bg-gray-300 {
481
670
  background-color: var(--color-gray-300);
482
671
  }
483
672
  .bg-gray-400 {
484
673
  background-color: var(--color-gray-400);
485
674
  }
675
+ .bg-indigo-100 {
676
+ background-color: var(--color-indigo-100);
677
+ }
678
+ .bg-primary-50 {
679
+ background-color: var(--color-primary-50);
680
+ }
486
681
  .bg-primary-500 {
487
682
  background-color: var(--color-primary-500);
488
683
  }
@@ -498,46 +693,136 @@
498
693
  .p-1 {
499
694
  padding: calc(var(--spacing) * 1);
500
695
  }
696
+ .p-1\.5 {
697
+ padding: calc(var(--spacing) * 1.5);
698
+ }
699
+ .p-4 {
700
+ padding: calc(var(--spacing) * 4);
701
+ }
702
+ .p-6 {
703
+ padding: calc(var(--spacing) * 6);
704
+ }
501
705
  .p-\[4px\] {
502
706
  padding: 4px;
503
707
  }
504
708
  .p-\[10px\] {
505
709
  padding: 10px;
506
710
  }
711
+ .px-2 {
712
+ padding-inline: calc(var(--spacing) * 2);
713
+ }
714
+ .px-3 {
715
+ padding-inline: calc(var(--spacing) * 3);
716
+ }
717
+ .px-6 {
718
+ padding-inline: calc(var(--spacing) * 6);
719
+ }
720
+ .px-\[8px\] {
721
+ padding-inline: 8px;
722
+ }
507
723
  .px-\[16px\] {
508
724
  padding-inline: 16px;
509
725
  }
726
+ .px-\[20px\] {
727
+ padding-inline: 20px;
728
+ }
729
+ .py-1 {
730
+ padding-block: calc(var(--spacing) * 1);
731
+ }
732
+ .py-2 {
733
+ padding-block: calc(var(--spacing) * 2);
734
+ }
735
+ .py-4 {
736
+ padding-block: calc(var(--spacing) * 4);
737
+ }
738
+ .py-\[4px\] {
739
+ padding-block: 4px;
740
+ }
510
741
  .py-\[8px\] {
511
742
  padding-block: 8px;
512
743
  }
744
+ .py-\[10px\] {
745
+ padding-block: 10px;
746
+ }
747
+ .pb-2 {
748
+ padding-bottom: calc(var(--spacing) * 2);
749
+ }
513
750
  .text-left {
514
751
  text-align: left;
515
752
  }
753
+ .text-lg {
754
+ font-size: var(--text-lg);
755
+ line-height: var(--tw-leading, var(--text-lg--line-height));
756
+ }
757
+ .text-sm {
758
+ font-size: var(--text-sm);
759
+ line-height: var(--tw-leading, var(--text-sm--line-height));
760
+ }
516
761
  .text-\[20px\] {
517
762
  font-size: 20px;
518
763
  }
764
+ .font-medium {
765
+ --tw-font-weight: var(--font-weight-medium);
766
+ font-weight: var(--font-weight-medium);
767
+ }
519
768
  .font-semibold {
520
769
  --tw-font-weight: var(--font-weight-semibold);
521
770
  font-weight: var(--font-weight-semibold);
522
771
  }
772
+ .text-nowrap {
773
+ text-wrap: nowrap;
774
+ }
775
+ .whitespace-nowrap {
776
+ white-space: nowrap;
777
+ }
523
778
  .text-black {
524
779
  color: var(--color-black);
525
780
  }
781
+ .text-gray-400 {
782
+ color: var(--color-gray-400);
783
+ }
784
+ .text-gray-500 {
785
+ color: var(--color-gray-500);
786
+ }
526
787
  .text-gray-600 {
527
788
  color: var(--color-gray-600);
528
789
  }
790
+ .text-gray-700 {
791
+ color: var(--color-gray-700);
792
+ }
793
+ .text-indigo-800 {
794
+ color: var(--color-indigo-800);
795
+ }
796
+ .text-red-500 {
797
+ color: var(--color-red-500);
798
+ }
529
799
  .text-red-600 {
530
800
  color: var(--color-red-600);
531
801
  }
532
802
  .text-white {
533
803
  color: var(--color-white);
534
804
  }
805
+ .uppercase {
806
+ text-transform: uppercase;
807
+ }
535
808
  .opacity-0 {
536
809
  opacity: 0%;
537
810
  }
811
+ .opacity-50 {
812
+ opacity: 50%;
813
+ }
538
814
  .opacity-100 {
539
815
  opacity: 100%;
540
816
  }
817
+ .shadow-2xl {
818
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
819
+ box-shadow:
820
+ var(--tw-inset-shadow),
821
+ var(--tw-inset-ring-shadow),
822
+ var(--tw-ring-offset-shadow),
823
+ var(--tw-ring-shadow),
824
+ var(--tw-shadow);
825
+ }
541
826
  .shadow-md {
542
827
  --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));
543
828
  box-shadow:
@@ -547,10 +832,48 @@
547
832
  var(--tw-ring-shadow),
548
833
  var(--tw-shadow);
549
834
  }
835
+ .shadow-sm {
836
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
837
+ box-shadow:
838
+ var(--tw-inset-shadow),
839
+ var(--tw-inset-ring-shadow),
840
+ var(--tw-ring-offset-shadow),
841
+ var(--tw-ring-shadow),
842
+ var(--tw-shadow);
843
+ }
550
844
  .outline {
551
845
  outline-style: var(--tw-outline-style);
552
846
  outline-width: 1px;
553
847
  }
848
+ .transition {
849
+ transition-property:
850
+ color,
851
+ background-color,
852
+ border-color,
853
+ outline-color,
854
+ text-decoration-color,
855
+ fill,
856
+ stroke,
857
+ --tw-gradient-from,
858
+ --tw-gradient-via,
859
+ --tw-gradient-to,
860
+ opacity,
861
+ box-shadow,
862
+ transform,
863
+ translate,
864
+ scale,
865
+ rotate,
866
+ filter,
867
+ -webkit-backdrop-filter,
868
+ backdrop-filter,
869
+ display,
870
+ visibility,
871
+ content-visibility,
872
+ overlay,
873
+ pointer-events;
874
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
875
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
876
+ }
554
877
  .transition-all {
555
878
  transition-property: all;
556
879
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -592,6 +915,29 @@
592
915
  --tw-duration: 300ms;
593
916
  transition-duration: 300ms;
594
917
  }
918
+ .duration-400 {
919
+ --tw-duration: 400ms;
920
+ transition-duration: 400ms;
921
+ }
922
+ .select-none {
923
+ -webkit-user-select: none;
924
+ user-select: none;
925
+ }
926
+ .group-hover\:visible {
927
+ &:is(:where(.group):hover *) {
928
+ @media (hover: hover) {
929
+ visibility: visible;
930
+ }
931
+ }
932
+ }
933
+ .group-hover\:translate-x-0 {
934
+ &:is(:where(.group):hover *) {
935
+ @media (hover: hover) {
936
+ --tw-translate-x: calc(var(--spacing) * 0);
937
+ translate: var(--tw-translate-x) var(--tw-translate-y);
938
+ }
939
+ }
940
+ }
595
941
  .group-hover\:border-\[1px\] {
596
942
  &:is(:where(.group):hover *) {
597
943
  @media (hover: hover) {
@@ -621,6 +967,13 @@
621
967
  }
622
968
  }
623
969
  }
970
+ .group-hover\:opacity-100 {
971
+ &:is(:where(.group):hover *) {
972
+ @media (hover: hover) {
973
+ opacity: 100%;
974
+ }
975
+ }
976
+ }
624
977
  .group-active\:block {
625
978
  &:is(:where(.group):active *) {
626
979
  display: block;
@@ -641,6 +994,34 @@
641
994
  color: var(--color-white);
642
995
  }
643
996
  }
997
+ .hover\:border-primary-200 {
998
+ &:hover {
999
+ @media (hover: hover) {
1000
+ border-color: var(--color-primary-200);
1001
+ }
1002
+ }
1003
+ }
1004
+ .hover\:bg-\[\#d6d6d6\] {
1005
+ &:hover {
1006
+ @media (hover: hover) {
1007
+ background-color: #d6d6d6;
1008
+ }
1009
+ }
1010
+ }
1011
+ .hover\:bg-gray-100 {
1012
+ &:hover {
1013
+ @media (hover: hover) {
1014
+ background-color: var(--color-gray-100);
1015
+ }
1016
+ }
1017
+ }
1018
+ .hover\:bg-gray-200 {
1019
+ &:hover {
1020
+ @media (hover: hover) {
1021
+ background-color: var(--color-gray-200);
1022
+ }
1023
+ }
1024
+ }
644
1025
  .hover\:bg-red-100 {
645
1026
  &:hover {
646
1027
  @media (hover: hover) {
@@ -648,6 +1029,48 @@
648
1029
  }
649
1030
  }
650
1031
  }
1032
+ .hover\:bg-transparent {
1033
+ &:hover {
1034
+ @media (hover: hover) {
1035
+ background-color: transparent;
1036
+ }
1037
+ }
1038
+ }
1039
+ .hover\:text-black {
1040
+ &:hover {
1041
+ @media (hover: hover) {
1042
+ color: var(--color-black);
1043
+ }
1044
+ }
1045
+ }
1046
+ .hover\:text-gray-400 {
1047
+ &:hover {
1048
+ @media (hover: hover) {
1049
+ color: var(--color-gray-400);
1050
+ }
1051
+ }
1052
+ }
1053
+ .hover\:text-primary-400 {
1054
+ &:hover {
1055
+ @media (hover: hover) {
1056
+ color: var(--color-primary-400);
1057
+ }
1058
+ }
1059
+ }
1060
+ .hover\:text-red-400 {
1061
+ &:hover {
1062
+ @media (hover: hover) {
1063
+ color: var(--color-red-400);
1064
+ }
1065
+ }
1066
+ }
1067
+ .hover\:text-red-500 {
1068
+ &:hover {
1069
+ @media (hover: hover) {
1070
+ color: var(--color-red-500);
1071
+ }
1072
+ }
1073
+ }
651
1074
  .hover\:text-white {
652
1075
  &:hover {
653
1076
  @media (hover: hover) {
@@ -655,16 +1078,67 @@
655
1078
  }
656
1079
  }
657
1080
  }
1081
+ .hover\:underline {
1082
+ &:hover {
1083
+ @media (hover: hover) {
1084
+ text-decoration-line: underline;
1085
+ }
1086
+ }
1087
+ }
1088
+ .hover\:brightness-95 {
1089
+ &:hover {
1090
+ @media (hover: hover) {
1091
+ --tw-brightness: brightness(95%);
1092
+ 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,);
1093
+ }
1094
+ }
1095
+ }
1096
+ .active\:bg-\[\#c4c4c4\] {
1097
+ &:active {
1098
+ background-color: #c4c4c4;
1099
+ }
1100
+ }
1101
+ .active\:bg-gray-200 {
1102
+ &:active {
1103
+ background-color: var(--color-gray-200);
1104
+ }
1105
+ }
658
1106
  .active\:bg-primary-500 {
659
1107
  &:active {
660
1108
  background-color: var(--color-primary-500);
661
1109
  }
662
1110
  }
1111
+ .active\:bg-transparent {
1112
+ &:active {
1113
+ background-color: transparent;
1114
+ }
1115
+ }
1116
+ .active\:text-black {
1117
+ &:active {
1118
+ color: var(--color-black);
1119
+ }
1120
+ }
1121
+ .active\:text-gray-400 {
1122
+ &:active {
1123
+ color: var(--color-gray-400);
1124
+ }
1125
+ }
663
1126
  .active\:text-white {
664
1127
  &:active {
665
1128
  color: var(--color-white);
666
1129
  }
667
1130
  }
1131
+ .active\:brightness-90 {
1132
+ &:active {
1133
+ --tw-brightness: brightness(90%);
1134
+ 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,);
1135
+ }
1136
+ }
1137
+ .disabled\:opacity-50 {
1138
+ &:disabled {
1139
+ opacity: 50%;
1140
+ }
1141
+ }
668
1142
  }
669
1143
  @layer base {
670
1144
  *,
@@ -864,6 +1338,23 @@
864
1338
  font-weight: 400;
865
1339
  line-height: 16px;
866
1340
  }
1341
+ .fc-scrollgrid-shrink-cushion {
1342
+ font-family: "Kanit";
1343
+ font-size: 14px;
1344
+ font-style: normal;
1345
+ font-weight: 400;
1346
+ line-height: 20px;
1347
+ }
1348
+ .message {
1349
+ font-family: "Kanit";
1350
+ font-size: 12px;
1351
+ font-style: normal;
1352
+ font-weight: 400;
1353
+ line-height: 16px;
1354
+ }
1355
+ .custom-select .ant-select-selection-item {
1356
+ color: #fff !important;
1357
+ }
867
1358
  @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
868
1359
  @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
869
1360
  @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
@@ -893,6 +1384,19 @@
893
1384
  @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
894
1385
  @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
895
1386
  @property --tw-duration { syntax: "*"; inherits: false; }
1387
+ @property --tw-blur { syntax: "*"; inherits: false; }
1388
+ @property --tw-brightness { syntax: "*"; inherits: false; }
1389
+ @property --tw-contrast { syntax: "*"; inherits: false; }
1390
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
1391
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1392
+ @property --tw-invert { syntax: "*"; inherits: false; }
1393
+ @property --tw-opacity { syntax: "*"; inherits: false; }
1394
+ @property --tw-saturate { syntax: "*"; inherits: false; }
1395
+ @property --tw-sepia { syntax: "*"; inherits: false; }
1396
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1397
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1398
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1399
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
896
1400
  @keyframes spin {
897
1401
  to {
898
1402
  transform: rotate(360deg);
@@ -933,6 +1437,19 @@
933
1437
  --tw-ring-offset-shadow: 0 0 #0000;
934
1438
  --tw-outline-style: solid;
935
1439
  --tw-duration: initial;
1440
+ --tw-blur: initial;
1441
+ --tw-brightness: initial;
1442
+ --tw-contrast: initial;
1443
+ --tw-grayscale: initial;
1444
+ --tw-hue-rotate: initial;
1445
+ --tw-invert: initial;
1446
+ --tw-opacity: initial;
1447
+ --tw-saturate: initial;
1448
+ --tw-sepia: initial;
1449
+ --tw-drop-shadow: initial;
1450
+ --tw-drop-shadow-color: initial;
1451
+ --tw-drop-shadow-alpha: 100%;
1452
+ --tw-drop-shadow-size: initial;
936
1453
  }
937
1454
  }
938
1455
  }