@veracity/vui 2.21.4 → 2.22.0
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/cjs/button/theme.d.ts +1 -217
- package/dist/cjs/button/theme.d.ts.map +1 -1
- package/dist/cjs/button/theme.js +19 -15
- package/dist/cjs/button/theme.js.map +1 -1
- package/dist/cjs/buttonGroup/buttonGroup.js +6 -6
- package/dist/cjs/buttonGroup/buttonGroup.js.map +1 -1
- package/dist/cjs/select/select.d.ts.map +1 -1
- package/dist/cjs/select/select.js +3 -2
- package/dist/cjs/select/select.js.map +1 -1
- package/dist/cjs/select/select.types.d.ts +2 -0
- package/dist/cjs/select/select.types.d.ts.map +1 -1
- package/dist/cjs/select/useSelect.d.ts +2 -1
- package/dist/cjs/select/useSelect.d.ts.map +1 -1
- package/dist/cjs/select/useSelect.js +8 -4
- package/dist/cjs/select/useSelect.js.map +1 -1
- package/dist/cjs/select/useSelect.types.d.ts +2 -0
- package/dist/cjs/select/useSelect.types.d.ts.map +1 -1
- package/dist/cjs/theme/components.d.ts +1 -217
- package/dist/cjs/theme/components.d.ts.map +1 -1
- package/dist/cjs/theme/defaultTheme.d.ts +1 -217
- package/dist/cjs/theme/defaultTheme.d.ts.map +1 -1
- package/dist/esm/button/theme.d.ts +1 -217
- package/dist/esm/button/theme.d.ts.map +1 -1
- package/dist/esm/button/theme.js +22 -15
- package/dist/esm/button/theme.js.map +1 -1
- package/dist/esm/buttonGroup/buttonGroup.js +6 -6
- package/dist/esm/buttonGroup/buttonGroup.js.map +1 -1
- package/dist/esm/select/select.d.ts.map +1 -1
- package/dist/esm/select/select.js +3 -2
- package/dist/esm/select/select.js.map +1 -1
- package/dist/esm/select/select.types.d.ts +2 -0
- package/dist/esm/select/select.types.d.ts.map +1 -1
- package/dist/esm/select/useSelect.d.ts +2 -1
- package/dist/esm/select/useSelect.d.ts.map +1 -1
- package/dist/esm/select/useSelect.js +6 -4
- package/dist/esm/select/useSelect.js.map +1 -1
- package/dist/esm/select/useSelect.types.d.ts +2 -0
- package/dist/esm/select/useSelect.types.d.ts.map +1 -1
- package/dist/esm/theme/components.d.ts +1 -217
- package/dist/esm/theme/components.d.ts.map +1 -1
- package/dist/esm/theme/defaultTheme.d.ts +1 -217
- package/dist/esm/theme/defaultTheme.d.ts.map +1 -1
- package/dist/tsconfig.legacy.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/button/theme.ts +25 -16
- package/src/buttonGroup/buttonGroup.tsx +7 -7
- package/src/select/select.tsx +4 -2
- package/src/select/select.types.ts +2 -0
- package/src/select/useSelect.tsx +16 -6
- package/src/select/useSelect.types.ts +2 -0
|
@@ -490,223 +490,7 @@ declare const _default: {
|
|
|
490
490
|
text: {};
|
|
491
491
|
};
|
|
492
492
|
};
|
|
493
|
-
variants:
|
|
494
|
-
primaryDark: {
|
|
495
|
-
container: {
|
|
496
|
-
bg: string;
|
|
497
|
-
borderColor: string;
|
|
498
|
-
color: string;
|
|
499
|
-
hoverBg: string;
|
|
500
|
-
hoverBorderColor: string;
|
|
501
|
-
hoverColor: string;
|
|
502
|
-
activeBg: string;
|
|
503
|
-
activeBorderColor: string;
|
|
504
|
-
activeColor: string;
|
|
505
|
-
};
|
|
506
|
-
};
|
|
507
|
-
primaryLight: {
|
|
508
|
-
container: {
|
|
509
|
-
bg: string;
|
|
510
|
-
borderColor: string;
|
|
511
|
-
color: string;
|
|
512
|
-
hoverBg: string;
|
|
513
|
-
hoverBorderColor: string;
|
|
514
|
-
hoverColor: string;
|
|
515
|
-
activeBg: string;
|
|
516
|
-
activeBorderColor: string;
|
|
517
|
-
activeColor: string;
|
|
518
|
-
};
|
|
519
|
-
};
|
|
520
|
-
secondaryDark: {
|
|
521
|
-
container: {
|
|
522
|
-
bg: string;
|
|
523
|
-
borderColor: string;
|
|
524
|
-
color: string;
|
|
525
|
-
hoverBg: string;
|
|
526
|
-
hoverBorderColor: string;
|
|
527
|
-
hoverColor: string;
|
|
528
|
-
activeBg: string;
|
|
529
|
-
activeBorderColor: string;
|
|
530
|
-
activeColor: string;
|
|
531
|
-
};
|
|
532
|
-
};
|
|
533
|
-
secondaryLight: {
|
|
534
|
-
container: {
|
|
535
|
-
bg: string;
|
|
536
|
-
borderColor: string;
|
|
537
|
-
color: string;
|
|
538
|
-
hoverBg: string;
|
|
539
|
-
hoverBorderColor: string;
|
|
540
|
-
hoverColor: string;
|
|
541
|
-
activeBg: string;
|
|
542
|
-
activeBorderColor: string;
|
|
543
|
-
activeColor: string;
|
|
544
|
-
};
|
|
545
|
-
};
|
|
546
|
-
tertiaryDark: {
|
|
547
|
-
container: {
|
|
548
|
-
bg: string;
|
|
549
|
-
borderColor: string;
|
|
550
|
-
color: string;
|
|
551
|
-
hoverBg: string;
|
|
552
|
-
hoverBorderColor: string;
|
|
553
|
-
hoverColor: string;
|
|
554
|
-
activeBg: string;
|
|
555
|
-
activeBorderColor: string;
|
|
556
|
-
activeColor: string;
|
|
557
|
-
};
|
|
558
|
-
};
|
|
559
|
-
tertiaryLight: {
|
|
560
|
-
container: {
|
|
561
|
-
bg: string;
|
|
562
|
-
borderColor: string;
|
|
563
|
-
color: string;
|
|
564
|
-
hoverBg: string;
|
|
565
|
-
hoverBorderColor: string;
|
|
566
|
-
hoverColor: string;
|
|
567
|
-
activeBg: string;
|
|
568
|
-
activeBorderColor: string;
|
|
569
|
-
activeColor: string;
|
|
570
|
-
};
|
|
571
|
-
};
|
|
572
|
-
solidBlue: {
|
|
573
|
-
container: {
|
|
574
|
-
bg: string;
|
|
575
|
-
borderColor: string;
|
|
576
|
-
color: string;
|
|
577
|
-
disabledBg: string;
|
|
578
|
-
disabledBorderColor: string;
|
|
579
|
-
disabledColor: string;
|
|
580
|
-
hoverBg: string;
|
|
581
|
-
hoverBorderColor: string;
|
|
582
|
-
focusBg: string;
|
|
583
|
-
activeBg: string;
|
|
584
|
-
activeBorderColor: string;
|
|
585
|
-
};
|
|
586
|
-
};
|
|
587
|
-
blueOutlined: {
|
|
588
|
-
container: {
|
|
589
|
-
bg: string;
|
|
590
|
-
borderColor: string;
|
|
591
|
-
color: string;
|
|
592
|
-
disabledBg: string;
|
|
593
|
-
disabledBorderColor: string;
|
|
594
|
-
disabledColor: string;
|
|
595
|
-
hoverBg: string;
|
|
596
|
-
hoverBorderColor: string;
|
|
597
|
-
activeBg: string;
|
|
598
|
-
activeBorderColor: string;
|
|
599
|
-
};
|
|
600
|
-
};
|
|
601
|
-
blueText: {
|
|
602
|
-
container: {
|
|
603
|
-
bg: string;
|
|
604
|
-
borderColor: string;
|
|
605
|
-
color: string;
|
|
606
|
-
disabledBg: string;
|
|
607
|
-
disabledBorderColor: string;
|
|
608
|
-
disabledColor: string;
|
|
609
|
-
hoverBg: string;
|
|
610
|
-
hoverBorderColor: string;
|
|
611
|
-
focusBg: string;
|
|
612
|
-
activeBg: string;
|
|
613
|
-
activeBorderColor: string;
|
|
614
|
-
};
|
|
615
|
-
};
|
|
616
|
-
solidGreen: {
|
|
617
|
-
container: {
|
|
618
|
-
bg: string;
|
|
619
|
-
borderColor: string;
|
|
620
|
-
color: string;
|
|
621
|
-
disabledBg: string;
|
|
622
|
-
disabledBorderColor: string;
|
|
623
|
-
disabledColor: string;
|
|
624
|
-
hoverBg: string;
|
|
625
|
-
hoverBorderColor: string;
|
|
626
|
-
focusBg: string;
|
|
627
|
-
activeBg: string;
|
|
628
|
-
activeBorderColor: string;
|
|
629
|
-
};
|
|
630
|
-
};
|
|
631
|
-
solidRed: {
|
|
632
|
-
container: {
|
|
633
|
-
bg: string;
|
|
634
|
-
borderColor: string;
|
|
635
|
-
color: string;
|
|
636
|
-
disabledBg: string;
|
|
637
|
-
disabledBorderColor: string;
|
|
638
|
-
disabledColor: string;
|
|
639
|
-
hoverBg: string;
|
|
640
|
-
hoverBorderColor: string;
|
|
641
|
-
focusBg: string;
|
|
642
|
-
activeBg: string;
|
|
643
|
-
activeBorderColor: string;
|
|
644
|
-
};
|
|
645
|
-
};
|
|
646
|
-
subtleBlue: {
|
|
647
|
-
container: {
|
|
648
|
-
bg: string;
|
|
649
|
-
borderColor: string;
|
|
650
|
-
color: string;
|
|
651
|
-
disabledBg: string;
|
|
652
|
-
disabledBorderColor: string;
|
|
653
|
-
disabledColor: string;
|
|
654
|
-
hoverBg: string;
|
|
655
|
-
hoverBorderColor: string;
|
|
656
|
-
focusBg: string;
|
|
657
|
-
activeBg: string;
|
|
658
|
-
activeBorderColor: string;
|
|
659
|
-
};
|
|
660
|
-
};
|
|
661
|
-
subtleRed: {
|
|
662
|
-
container: {
|
|
663
|
-
bg: string;
|
|
664
|
-
borderColor: string;
|
|
665
|
-
hoverBg: string;
|
|
666
|
-
hoverBorderColor: string;
|
|
667
|
-
focusBg: string;
|
|
668
|
-
activeBg: string;
|
|
669
|
-
color: string;
|
|
670
|
-
};
|
|
671
|
-
};
|
|
672
|
-
subtleYellow: {
|
|
673
|
-
container: {
|
|
674
|
-
bg: string;
|
|
675
|
-
borderColor: string;
|
|
676
|
-
hoverBg: string;
|
|
677
|
-
hoverBorderColor: string;
|
|
678
|
-
focusBg: string;
|
|
679
|
-
activeBg: string;
|
|
680
|
-
color: string;
|
|
681
|
-
};
|
|
682
|
-
};
|
|
683
|
-
subtleGreen: {
|
|
684
|
-
container: {
|
|
685
|
-
bg: string;
|
|
686
|
-
borderColor: string;
|
|
687
|
-
hoverBg: string;
|
|
688
|
-
hoverBorderColor: string;
|
|
689
|
-
focusBg: string;
|
|
690
|
-
activeBg: string;
|
|
691
|
-
color: string;
|
|
692
|
-
};
|
|
693
|
-
};
|
|
694
|
-
buttonGroupRounded: {
|
|
695
|
-
container: {
|
|
696
|
-
bg: string;
|
|
697
|
-
borderColor: string;
|
|
698
|
-
color: string;
|
|
699
|
-
hoverBg: string;
|
|
700
|
-
hoverBorderColor: string;
|
|
701
|
-
hoverColor: string;
|
|
702
|
-
activeBg: string;
|
|
703
|
-
activeBorderColor: string;
|
|
704
|
-
activeColor: string;
|
|
705
|
-
borderRadius: string;
|
|
706
|
-
marginRight: string;
|
|
707
|
-
};
|
|
708
|
-
};
|
|
709
|
-
};
|
|
493
|
+
variants: Record<string, Record<string, Record<string, string>>>;
|
|
710
494
|
};
|
|
711
495
|
Calendar: {
|
|
712
496
|
baseStyle: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyDA,wBAoDC"}
|
|
@@ -996,223 +996,7 @@ declare const defaultTheme: {
|
|
|
996
996
|
text: {};
|
|
997
997
|
};
|
|
998
998
|
};
|
|
999
|
-
variants:
|
|
1000
|
-
primaryDark: {
|
|
1001
|
-
container: {
|
|
1002
|
-
bg: string;
|
|
1003
|
-
borderColor: string;
|
|
1004
|
-
color: string;
|
|
1005
|
-
hoverBg: string;
|
|
1006
|
-
hoverBorderColor: string;
|
|
1007
|
-
hoverColor: string;
|
|
1008
|
-
activeBg: string;
|
|
1009
|
-
activeBorderColor: string;
|
|
1010
|
-
activeColor: string;
|
|
1011
|
-
};
|
|
1012
|
-
};
|
|
1013
|
-
primaryLight: {
|
|
1014
|
-
container: {
|
|
1015
|
-
bg: string;
|
|
1016
|
-
borderColor: string;
|
|
1017
|
-
color: string;
|
|
1018
|
-
hoverBg: string;
|
|
1019
|
-
hoverBorderColor: string;
|
|
1020
|
-
hoverColor: string;
|
|
1021
|
-
activeBg: string;
|
|
1022
|
-
activeBorderColor: string;
|
|
1023
|
-
activeColor: string;
|
|
1024
|
-
};
|
|
1025
|
-
};
|
|
1026
|
-
secondaryDark: {
|
|
1027
|
-
container: {
|
|
1028
|
-
bg: string;
|
|
1029
|
-
borderColor: string;
|
|
1030
|
-
color: string;
|
|
1031
|
-
hoverBg: string;
|
|
1032
|
-
hoverBorderColor: string;
|
|
1033
|
-
hoverColor: string;
|
|
1034
|
-
activeBg: string;
|
|
1035
|
-
activeBorderColor: string;
|
|
1036
|
-
activeColor: string;
|
|
1037
|
-
};
|
|
1038
|
-
};
|
|
1039
|
-
secondaryLight: {
|
|
1040
|
-
container: {
|
|
1041
|
-
bg: string;
|
|
1042
|
-
borderColor: string;
|
|
1043
|
-
color: string;
|
|
1044
|
-
hoverBg: string;
|
|
1045
|
-
hoverBorderColor: string;
|
|
1046
|
-
hoverColor: string;
|
|
1047
|
-
activeBg: string;
|
|
1048
|
-
activeBorderColor: string;
|
|
1049
|
-
activeColor: string;
|
|
1050
|
-
};
|
|
1051
|
-
};
|
|
1052
|
-
tertiaryDark: {
|
|
1053
|
-
container: {
|
|
1054
|
-
bg: string;
|
|
1055
|
-
borderColor: string;
|
|
1056
|
-
color: string;
|
|
1057
|
-
hoverBg: string;
|
|
1058
|
-
hoverBorderColor: string;
|
|
1059
|
-
hoverColor: string;
|
|
1060
|
-
activeBg: string;
|
|
1061
|
-
activeBorderColor: string;
|
|
1062
|
-
activeColor: string;
|
|
1063
|
-
};
|
|
1064
|
-
};
|
|
1065
|
-
tertiaryLight: {
|
|
1066
|
-
container: {
|
|
1067
|
-
bg: string;
|
|
1068
|
-
borderColor: string;
|
|
1069
|
-
color: string;
|
|
1070
|
-
hoverBg: string;
|
|
1071
|
-
hoverBorderColor: string;
|
|
1072
|
-
hoverColor: string;
|
|
1073
|
-
activeBg: string;
|
|
1074
|
-
activeBorderColor: string;
|
|
1075
|
-
activeColor: string;
|
|
1076
|
-
};
|
|
1077
|
-
};
|
|
1078
|
-
solidBlue: {
|
|
1079
|
-
container: {
|
|
1080
|
-
bg: string;
|
|
1081
|
-
borderColor: string;
|
|
1082
|
-
color: string;
|
|
1083
|
-
disabledBg: string;
|
|
1084
|
-
disabledBorderColor: string;
|
|
1085
|
-
disabledColor: string;
|
|
1086
|
-
hoverBg: string;
|
|
1087
|
-
hoverBorderColor: string;
|
|
1088
|
-
focusBg: string;
|
|
1089
|
-
activeBg: string;
|
|
1090
|
-
activeBorderColor: string;
|
|
1091
|
-
};
|
|
1092
|
-
};
|
|
1093
|
-
blueOutlined: {
|
|
1094
|
-
container: {
|
|
1095
|
-
bg: string;
|
|
1096
|
-
borderColor: string;
|
|
1097
|
-
color: string;
|
|
1098
|
-
disabledBg: string;
|
|
1099
|
-
disabledBorderColor: string;
|
|
1100
|
-
disabledColor: string;
|
|
1101
|
-
hoverBg: string;
|
|
1102
|
-
hoverBorderColor: string;
|
|
1103
|
-
activeBg: string;
|
|
1104
|
-
activeBorderColor: string;
|
|
1105
|
-
};
|
|
1106
|
-
};
|
|
1107
|
-
blueText: {
|
|
1108
|
-
container: {
|
|
1109
|
-
bg: string;
|
|
1110
|
-
borderColor: string;
|
|
1111
|
-
color: string;
|
|
1112
|
-
disabledBg: string;
|
|
1113
|
-
disabledBorderColor: string;
|
|
1114
|
-
disabledColor: string;
|
|
1115
|
-
hoverBg: string;
|
|
1116
|
-
hoverBorderColor: string;
|
|
1117
|
-
focusBg: string;
|
|
1118
|
-
activeBg: string;
|
|
1119
|
-
activeBorderColor: string;
|
|
1120
|
-
};
|
|
1121
|
-
};
|
|
1122
|
-
solidGreen: {
|
|
1123
|
-
container: {
|
|
1124
|
-
bg: string;
|
|
1125
|
-
borderColor: string;
|
|
1126
|
-
color: string;
|
|
1127
|
-
disabledBg: string;
|
|
1128
|
-
disabledBorderColor: string;
|
|
1129
|
-
disabledColor: string;
|
|
1130
|
-
hoverBg: string;
|
|
1131
|
-
hoverBorderColor: string;
|
|
1132
|
-
focusBg: string;
|
|
1133
|
-
activeBg: string;
|
|
1134
|
-
activeBorderColor: string;
|
|
1135
|
-
};
|
|
1136
|
-
};
|
|
1137
|
-
solidRed: {
|
|
1138
|
-
container: {
|
|
1139
|
-
bg: string;
|
|
1140
|
-
borderColor: string;
|
|
1141
|
-
color: string;
|
|
1142
|
-
disabledBg: string;
|
|
1143
|
-
disabledBorderColor: string;
|
|
1144
|
-
disabledColor: string;
|
|
1145
|
-
hoverBg: string;
|
|
1146
|
-
hoverBorderColor: string;
|
|
1147
|
-
focusBg: string;
|
|
1148
|
-
activeBg: string;
|
|
1149
|
-
activeBorderColor: string;
|
|
1150
|
-
};
|
|
1151
|
-
};
|
|
1152
|
-
subtleBlue: {
|
|
1153
|
-
container: {
|
|
1154
|
-
bg: string;
|
|
1155
|
-
borderColor: string;
|
|
1156
|
-
color: string;
|
|
1157
|
-
disabledBg: string;
|
|
1158
|
-
disabledBorderColor: string;
|
|
1159
|
-
disabledColor: string;
|
|
1160
|
-
hoverBg: string;
|
|
1161
|
-
hoverBorderColor: string;
|
|
1162
|
-
focusBg: string;
|
|
1163
|
-
activeBg: string;
|
|
1164
|
-
activeBorderColor: string;
|
|
1165
|
-
};
|
|
1166
|
-
};
|
|
1167
|
-
subtleRed: {
|
|
1168
|
-
container: {
|
|
1169
|
-
bg: string;
|
|
1170
|
-
borderColor: string;
|
|
1171
|
-
hoverBg: string;
|
|
1172
|
-
hoverBorderColor: string;
|
|
1173
|
-
focusBg: string;
|
|
1174
|
-
activeBg: string;
|
|
1175
|
-
color: string;
|
|
1176
|
-
};
|
|
1177
|
-
};
|
|
1178
|
-
subtleYellow: {
|
|
1179
|
-
container: {
|
|
1180
|
-
bg: string;
|
|
1181
|
-
borderColor: string;
|
|
1182
|
-
hoverBg: string;
|
|
1183
|
-
hoverBorderColor: string;
|
|
1184
|
-
focusBg: string;
|
|
1185
|
-
activeBg: string;
|
|
1186
|
-
color: string;
|
|
1187
|
-
};
|
|
1188
|
-
};
|
|
1189
|
-
subtleGreen: {
|
|
1190
|
-
container: {
|
|
1191
|
-
bg: string;
|
|
1192
|
-
borderColor: string;
|
|
1193
|
-
hoverBg: string;
|
|
1194
|
-
hoverBorderColor: string;
|
|
1195
|
-
focusBg: string;
|
|
1196
|
-
activeBg: string;
|
|
1197
|
-
color: string;
|
|
1198
|
-
};
|
|
1199
|
-
};
|
|
1200
|
-
buttonGroupRounded: {
|
|
1201
|
-
container: {
|
|
1202
|
-
bg: string;
|
|
1203
|
-
borderColor: string;
|
|
1204
|
-
color: string;
|
|
1205
|
-
hoverBg: string;
|
|
1206
|
-
hoverBorderColor: string;
|
|
1207
|
-
hoverColor: string;
|
|
1208
|
-
activeBg: string;
|
|
1209
|
-
activeBorderColor: string;
|
|
1210
|
-
activeColor: string;
|
|
1211
|
-
borderRadius: string;
|
|
1212
|
-
marginRight: string;
|
|
1213
|
-
};
|
|
1214
|
-
};
|
|
1215
|
-
};
|
|
999
|
+
variants: Record<string, Record<string, Record<string, string>>>;
|
|
1216
1000
|
};
|
|
1217
1001
|
Calendar: {
|
|
1218
1002
|
baseStyle: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGjB,CAAA;AAED,eAAe,YAAY,CAAA"}
|