sellmate-design-system-react 9.0.0-beta.2 → 9.0.0-beta.21
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/AGENTS.md +488 -90
- package/README.md +101 -0
- package/dist/components/SBadge/README.md +24 -0
- package/dist/components/SBadge/SBadge.d.ts +1 -1
- package/dist/components/SBarcodeInput/README.md +9 -1
- package/dist/components/SBarcodeInput/SBarcodeInput.d.ts +7 -1
- package/dist/components/SButton/README.md +36 -0
- package/dist/components/SCalendar/README.md +13 -0
- package/dist/components/SCallout/README.md +15 -0
- package/dist/components/SCard/README.md +16 -0
- package/dist/components/SCard/SCard.d.ts +17 -2
- package/dist/components/SCheckbox/README.md +8 -0
- package/dist/components/SChipFilter/README.md +288 -5
- package/dist/components/SChipFilter/SChipFilter.d.ts +95 -40
- package/dist/components/SChipFilter/index.d.ts +1 -1
- package/dist/components/SChipInput/README.md +15 -1
- package/dist/components/SChipInput/SChipInput.d.ts +7 -1
- package/dist/components/SCircleProgress/README.md +8 -0
- package/dist/components/SConfirmModal/README.md +16 -0
- package/dist/components/SDatePicker/README.md +60 -4
- package/dist/components/SDatePicker/SDatePicker.d.ts +61 -5
- package/dist/components/SDatePicker/index.d.ts +1 -1
- package/dist/components/SDateRangePicker/README.md +17 -2
- package/dist/components/SDateRangePicker/SDateRangePicker.d.ts +16 -3
- package/dist/components/SDivider/README.md +4 -0
- package/dist/components/SDraggableItem/README.md +37 -0
- package/dist/components/SDraggableItem/SDraggableItem.d.ts +2 -0
- package/dist/components/SDraggableList/README.md +29 -0
- package/dist/components/SDraggableList/SDraggableList.d.ts +10 -0
- package/dist/components/SDraggableList/index.d.ts +1 -1
- package/dist/components/SDrawer/README.md +8 -0
- package/dist/components/SDropdownButton/README.md +19 -0
- package/dist/components/SEditor/EditorBody.d.ts +40 -0
- package/dist/components/SEditor/EditorToolbar.d.ts +87 -0
- package/dist/components/SEditor/README.md +230 -0
- package/dist/components/SEditor/SEditor.d.ts +124 -0
- package/dist/components/SEditor/editor-icons.d.ts +59 -0
- package/dist/components/SEditor/editor.config.d.ts +85 -0
- package/dist/components/SEditor/index.d.ts +2 -0
- package/dist/components/SEditor/tiptap-api.d.ts +29 -0
- package/dist/components/SEditor/use-is-mobile.d.ts +14 -0
- package/dist/components/SExpansionItem/README.md +36 -0
- package/dist/components/SField/README.md +27 -2
- package/dist/components/SField/SField.d.ts +22 -4
- package/dist/components/SFilePicker/README.md +15 -1
- package/dist/components/SFilePicker/SFilePicker.d.ts +7 -1
- package/dist/components/SFooter/README.md +25 -0
- package/dist/components/SFooter/SFooter.d.ts +4 -3
- package/dist/components/SForm/README.md +11 -0
- package/dist/components/SGhostButton/README.md +20 -2
- package/dist/components/SGnb/README.md +45 -0
- package/dist/components/SGnb/gnb.config.d.ts +7 -0
- package/dist/components/SGuide/README.md +15 -0
- package/dist/components/SIcon/README.md +4 -0
- package/dist/components/SIcon/SIcon.d.ts +1 -1
- package/dist/components/SIcon/icons.gen.d.ts +2 -0
- package/dist/components/SImage/README.md +14 -0
- package/dist/components/SInput/README.md +3 -1
- package/dist/components/SInput/SInput.d.ts +7 -1
- package/dist/components/SKeyValueTable/README.md +87 -0
- package/dist/components/SKeyValueTable/SKeyValueTable.d.ts +14 -3
- package/dist/components/SLayout/README.md +16 -0
- package/dist/components/SLinearProgress/README.md +8 -0
- package/dist/components/SList/README.md +5 -1
- package/dist/components/SList/SList.d.ts +0 -2
- package/dist/components/SListItem/README.md +41 -0
- package/dist/components/SLoadingModal/README.md +8 -0
- package/dist/components/SNumberInput/README.md +9 -1
- package/dist/components/SNumberInput/SNumberInput.d.ts +7 -1
- package/dist/components/SPage/README.md +41 -1
- package/dist/components/SPage/SPage.d.ts +24 -2
- package/dist/components/SPage/index.d.ts +1 -1
- package/dist/components/SPage/page.config.d.ts +8 -0
- package/dist/components/SPopover/README.md +15 -0
- package/dist/components/SPopup/README.md +19 -0
- package/dist/components/SPortal/README.md +14 -0
- package/dist/components/SRadio/README.md +20 -0
- package/dist/components/SRadioButton/README.md +18 -0
- package/dist/components/SScrollArea/README.md +14 -0
- package/dist/components/SSearchInput/README.md +61 -0
- package/dist/components/SSearchInput/SSearchInput.d.ts +52 -0
- package/dist/components/SSearchInput/index.d.ts +1 -0
- package/dist/components/SSectionHeaderCard/README.md +44 -20
- package/dist/components/SSectionHeaderCard/SSectionHeaderCard.d.ts +31 -14
- package/dist/components/SSectionHeaderCard/index.d.ts +1 -1
- package/dist/components/SSelect/README.md +23 -3
- package/dist/components/SSelect/SSelect.d.ts +13 -1
- package/dist/components/SSplitter/README.md +15 -0
- package/dist/components/SStepper/README.md +26 -0
- package/dist/components/SSwitch/README.md +13 -0
- package/dist/components/STable/README.md +72 -1
- package/dist/components/STable/STable.d.ts +129 -11
- package/dist/components/STable/index.d.ts +1 -1
- package/dist/components/STabs/README.md +12 -1
- package/dist/components/STabs/STabs.d.ts +2 -4
- package/dist/components/STabs/index.d.ts +1 -1
- package/dist/components/STabs/tabs.config.d.ts +3 -4
- package/dist/components/STag/README.md +47 -0
- package/dist/components/STextLink/README.md +17 -0
- package/dist/components/STextLink/STextLink.d.ts +2 -0
- package/dist/components/STextarea/README.md +1 -1
- package/dist/components/STextarea/STextarea.d.ts +7 -1
- package/dist/components/STimePicker/README.md +15 -1
- package/dist/components/STimePicker/STimePicker.d.ts +7 -1
- package/dist/components/STimePicker/timepicker.config.d.ts +7 -0
- package/dist/components/STimeRangePicker/README.md +27 -1
- package/dist/components/STimeRangePicker/STimeRangePicker.d.ts +7 -1
- package/dist/components/SToast/README.md +24 -0
- package/dist/components/SToggle/README.md +8 -0
- package/dist/components/STooltip/README.md +22 -0
- package/dist/components/STree/README.md +41 -0
- package/dist/components/STree/STree.d.ts +8 -0
- package/dist/components/STree/index.d.ts +1 -1
- package/dist/index.cjs +4266 -750
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4249 -750
- package/dist/index.js.map +1 -1
- package/dist/lib/field-width.d.ts +31 -0
- package/dist/lib/story-docs.d.ts +19 -3
- package/dist/lib/truncated-value-tooltip.d.ts +18 -0
- package/dist/llms-full.txt +2337 -183
- package/dist/llms.txt +490 -92
- package/dist/styles.css +684 -41
- package/dist/theme.css +22 -6
- package/eslint/index.mjs +10 -0
- package/eslint/lib/table-column.mjs +26 -0
- package/eslint/rules/field-width-grade.d.mts +41 -0
- package/eslint/rules/field-width-grade.mjs +311 -0
- package/eslint/rules/table-column-width.mjs +110 -0
- package/eslint/scale.gen.mjs +3 -0
- package/package.json +13 -1
package/dist/styles.css
CHANGED
|
@@ -590,6 +590,9 @@
|
|
|
590
590
|
.inset-y-0 {
|
|
591
591
|
inset-block: 0;
|
|
592
592
|
}
|
|
593
|
+
.-top-\[9999px\] {
|
|
594
|
+
top: calc(9999px * -1);
|
|
595
|
+
}
|
|
593
596
|
.top-0 {
|
|
594
597
|
top: 0;
|
|
595
598
|
}
|
|
@@ -602,6 +605,9 @@
|
|
|
602
605
|
.top-\[12px\] {
|
|
603
606
|
top: 12px;
|
|
604
607
|
}
|
|
608
|
+
.top-\[13px\] {
|
|
609
|
+
top: 13px;
|
|
610
|
+
}
|
|
605
611
|
.top-\[15px\] {
|
|
606
612
|
top: 15px;
|
|
607
613
|
}
|
|
@@ -632,6 +638,9 @@
|
|
|
632
638
|
.right-1\/2 {
|
|
633
639
|
right: calc(1 / 2 * 100%);
|
|
634
640
|
}
|
|
641
|
+
.right-\[2px\] {
|
|
642
|
+
right: 2px;
|
|
643
|
+
}
|
|
635
644
|
.right-\[10px\] {
|
|
636
645
|
right: 10px;
|
|
637
646
|
}
|
|
@@ -650,8 +659,8 @@
|
|
|
650
659
|
.bottom-\[-1px\] {
|
|
651
660
|
bottom: -1px;
|
|
652
661
|
}
|
|
653
|
-
.bottom
|
|
654
|
-
bottom:
|
|
662
|
+
.bottom-\[2px\] {
|
|
663
|
+
bottom: 2px;
|
|
655
664
|
}
|
|
656
665
|
.left-0 {
|
|
657
666
|
left: 0;
|
|
@@ -704,6 +713,9 @@
|
|
|
704
713
|
.z-\[60\] {
|
|
705
714
|
z-index: 60;
|
|
706
715
|
}
|
|
716
|
+
.z-\[100\] {
|
|
717
|
+
z-index: 100;
|
|
718
|
+
}
|
|
707
719
|
.z-\[9000\] {
|
|
708
720
|
z-index: 9000;
|
|
709
721
|
}
|
|
@@ -743,9 +755,15 @@
|
|
|
743
755
|
.mx-3 {
|
|
744
756
|
margin-inline: calc(var(--spacing) * 3);
|
|
745
757
|
}
|
|
758
|
+
.mx-\[2px\] {
|
|
759
|
+
margin-inline: 2px;
|
|
760
|
+
}
|
|
746
761
|
.mx-\[calc\(12px-var\(--cmp-chipFilter-chip-group\)\)\] {
|
|
747
762
|
margin-inline: calc(12px - var(--cmp-chipFilter-chip-group));
|
|
748
763
|
}
|
|
764
|
+
.my-\[6px\] {
|
|
765
|
+
margin-block: 6px;
|
|
766
|
+
}
|
|
749
767
|
.my-auto {
|
|
750
768
|
margin-block: auto;
|
|
751
769
|
}
|
|
@@ -761,6 +779,12 @@
|
|
|
761
779
|
.mt-\(--cmp-field-contents-gap\) {
|
|
762
780
|
margin-top: var(--cmp-field-contents-gap);
|
|
763
781
|
}
|
|
782
|
+
.mt-1 {
|
|
783
|
+
margin-top: var(--spacing);
|
|
784
|
+
}
|
|
785
|
+
.mt-3 {
|
|
786
|
+
margin-top: calc(var(--spacing) * 3);
|
|
787
|
+
}
|
|
764
788
|
.mt-8 {
|
|
765
789
|
margin-top: calc(var(--spacing) * 8);
|
|
766
790
|
}
|
|
@@ -782,6 +806,9 @@
|
|
|
782
806
|
.mt-sd-2 {
|
|
783
807
|
margin-top: var(--spacing-sd-2);
|
|
784
808
|
}
|
|
809
|
+
.mt-sd-4 {
|
|
810
|
+
margin-top: var(--spacing-sd-4);
|
|
811
|
+
}
|
|
785
812
|
.mt-sd-8 {
|
|
786
813
|
margin-top: var(--spacing-sd-8);
|
|
787
814
|
}
|
|
@@ -800,6 +827,9 @@
|
|
|
800
827
|
.-mr-px {
|
|
801
828
|
margin-right: -1px;
|
|
802
829
|
}
|
|
830
|
+
.mr-\[6px\] {
|
|
831
|
+
margin-right: 6px;
|
|
832
|
+
}
|
|
803
833
|
.mr-\[8px\] {
|
|
804
834
|
margin-right: 8px;
|
|
805
835
|
}
|
|
@@ -888,15 +918,30 @@
|
|
|
888
918
|
.h-11 {
|
|
889
919
|
height: calc(var(--spacing) * 11);
|
|
890
920
|
}
|
|
921
|
+
.h-16 {
|
|
922
|
+
height: calc(var(--spacing) * 16);
|
|
923
|
+
}
|
|
891
924
|
.h-48 {
|
|
892
925
|
height: calc(var(--spacing) * 48);
|
|
893
926
|
}
|
|
894
927
|
.h-\[2px\] {
|
|
895
928
|
height: 2px;
|
|
896
929
|
}
|
|
930
|
+
.h-\[3px\] {
|
|
931
|
+
height: 3px;
|
|
932
|
+
}
|
|
933
|
+
.h-\[8px\] {
|
|
934
|
+
height: 8px;
|
|
935
|
+
}
|
|
897
936
|
.h-\[10px\] {
|
|
898
937
|
height: 10px;
|
|
899
938
|
}
|
|
939
|
+
.h-\[12px\] {
|
|
940
|
+
height: 12px;
|
|
941
|
+
}
|
|
942
|
+
.h-\[15px\] {
|
|
943
|
+
height: 15px;
|
|
944
|
+
}
|
|
900
945
|
.h-\[16px\] {
|
|
901
946
|
height: 16px;
|
|
902
947
|
}
|
|
@@ -915,9 +960,6 @@
|
|
|
915
960
|
.h-\[32px\] {
|
|
916
961
|
height: 32px;
|
|
917
962
|
}
|
|
918
|
-
.h-\[40px\] {
|
|
919
|
-
height: 40px;
|
|
920
|
-
}
|
|
921
963
|
.h-\[48px\] {
|
|
922
964
|
height: 48px;
|
|
923
965
|
}
|
|
@@ -927,6 +969,9 @@
|
|
|
927
969
|
.h-\[56px\] {
|
|
928
970
|
height: 56px;
|
|
929
971
|
}
|
|
972
|
+
.h-\[72px\] {
|
|
973
|
+
height: 72px;
|
|
974
|
+
}
|
|
930
975
|
.h-\[80vh\] {
|
|
931
976
|
height: 80vh;
|
|
932
977
|
}
|
|
@@ -954,6 +999,9 @@
|
|
|
954
999
|
.h-\[364px\] {
|
|
955
1000
|
height: 364px;
|
|
956
1001
|
}
|
|
1002
|
+
.h-\[380px\] {
|
|
1003
|
+
height: 380px;
|
|
1004
|
+
}
|
|
957
1005
|
.h-\[420px\] {
|
|
958
1006
|
height: 420px;
|
|
959
1007
|
}
|
|
@@ -1023,6 +1071,9 @@
|
|
|
1023
1071
|
.h-sd-8 {
|
|
1024
1072
|
height: var(--spacing-sd-8);
|
|
1025
1073
|
}
|
|
1074
|
+
.h-sd-32 {
|
|
1075
|
+
height: var(--spacing-sd-32);
|
|
1076
|
+
}
|
|
1026
1077
|
.h-sd-48 {
|
|
1027
1078
|
height: var(--spacing-sd-48);
|
|
1028
1079
|
}
|
|
@@ -1053,18 +1104,15 @@
|
|
|
1053
1104
|
.min-h-\[28px\] {
|
|
1054
1105
|
min-height: 28px;
|
|
1055
1106
|
}
|
|
1056
|
-
.min-h-\[32px\] {
|
|
1057
|
-
min-height: 32px;
|
|
1058
|
-
}
|
|
1059
1107
|
.min-h-\[40px\] {
|
|
1060
1108
|
min-height: 40px;
|
|
1061
1109
|
}
|
|
1062
|
-
.min-h-\[52px\] {
|
|
1063
|
-
min-height: 52px;
|
|
1064
|
-
}
|
|
1065
1110
|
.min-h-\[60px\] {
|
|
1066
1111
|
min-height: 60px;
|
|
1067
1112
|
}
|
|
1113
|
+
.min-h-\[80px\] {
|
|
1114
|
+
min-height: 80px;
|
|
1115
|
+
}
|
|
1068
1116
|
.min-h-\[328px\] {
|
|
1069
1117
|
min-height: 328px;
|
|
1070
1118
|
}
|
|
@@ -1095,18 +1143,33 @@
|
|
|
1095
1143
|
.w-11 {
|
|
1096
1144
|
width: calc(var(--spacing) * 11);
|
|
1097
1145
|
}
|
|
1146
|
+
.w-60 {
|
|
1147
|
+
width: calc(var(--spacing) * 60);
|
|
1148
|
+
}
|
|
1098
1149
|
.w-64 {
|
|
1099
1150
|
width: calc(var(--spacing) * 64);
|
|
1100
1151
|
}
|
|
1152
|
+
.w-80 {
|
|
1153
|
+
width: calc(var(--spacing) * 80);
|
|
1154
|
+
}
|
|
1155
|
+
.w-\[1px\] {
|
|
1156
|
+
width: 1px;
|
|
1157
|
+
}
|
|
1101
1158
|
.w-\[4px\] {
|
|
1102
1159
|
width: 4px;
|
|
1103
1160
|
}
|
|
1161
|
+
.w-\[8px\] {
|
|
1162
|
+
width: 8px;
|
|
1163
|
+
}
|
|
1104
1164
|
.w-\[9px\] {
|
|
1105
1165
|
width: 9px;
|
|
1106
1166
|
}
|
|
1107
1167
|
.w-\[10px\] {
|
|
1108
1168
|
width: 10px;
|
|
1109
1169
|
}
|
|
1170
|
+
.w-\[12px\] {
|
|
1171
|
+
width: 12px;
|
|
1172
|
+
}
|
|
1110
1173
|
.w-\[14px\] {
|
|
1111
1174
|
width: 14px;
|
|
1112
1175
|
}
|
|
@@ -1137,6 +1200,9 @@
|
|
|
1137
1200
|
.w-\[220px\] {
|
|
1138
1201
|
width: 220px;
|
|
1139
1202
|
}
|
|
1203
|
+
.w-\[240px\] {
|
|
1204
|
+
width: 240px;
|
|
1205
|
+
}
|
|
1140
1206
|
.w-\[280px\] {
|
|
1141
1207
|
width: 280px;
|
|
1142
1208
|
}
|
|
@@ -1179,6 +1245,9 @@
|
|
|
1179
1245
|
.w-\[calc\(14px\+var\(--cmp-tree-item-arrow-icon\)\)\] {
|
|
1180
1246
|
width: calc(14px + var(--cmp-tree-item-arrow-icon));
|
|
1181
1247
|
}
|
|
1248
|
+
.w-\[var\(--border-width-1\)\] {
|
|
1249
|
+
width: var(--border-width-1);
|
|
1250
|
+
}
|
|
1182
1251
|
.w-\[var\(--cmp-checkbox-size\)\] {
|
|
1183
1252
|
width: var(--cmp-checkbox-size);
|
|
1184
1253
|
}
|
|
@@ -1191,6 +1260,12 @@
|
|
|
1191
1260
|
.w-\[var\(--cmp-datepicker-calendar-day-width\)\] {
|
|
1192
1261
|
width: var(--cmp-datepicker-calendar-day-width);
|
|
1193
1262
|
}
|
|
1263
|
+
.w-\[var\(--cmp-datepicker-mode-year-width\)\] {
|
|
1264
|
+
width: var(--cmp-datepicker-mode-year-width);
|
|
1265
|
+
}
|
|
1266
|
+
.w-\[var\(--cmp-datepicker-mode-yearMonth-column-width\)\] {
|
|
1267
|
+
width: var(--cmp-datepicker-mode-yearMonth-column-width);
|
|
1268
|
+
}
|
|
1194
1269
|
.w-\[var\(--cmp-pagination-height\)\] {
|
|
1195
1270
|
width: var(--cmp-pagination-height);
|
|
1196
1271
|
}
|
|
@@ -1227,6 +1302,9 @@
|
|
|
1227
1302
|
.max-w-\[calc\(100dvw-48px\)\] {
|
|
1228
1303
|
max-width: calc(100dvw - 48px);
|
|
1229
1304
|
}
|
|
1305
|
+
.max-w-\[calc\(100vw-32px\)\] {
|
|
1306
|
+
max-width: calc(100vw - 32px);
|
|
1307
|
+
}
|
|
1230
1308
|
.max-w-\[var\(--radix-dropdown-menu-content-available-width\)\] {
|
|
1231
1309
|
max-width: var(--radix-dropdown-menu-content-available-width);
|
|
1232
1310
|
}
|
|
@@ -1293,6 +1371,9 @@
|
|
|
1293
1371
|
.flex-shrink-0 {
|
|
1294
1372
|
flex-shrink: 0;
|
|
1295
1373
|
}
|
|
1374
|
+
.shrink {
|
|
1375
|
+
flex-shrink: 1;
|
|
1376
|
+
}
|
|
1296
1377
|
.shrink-0 {
|
|
1297
1378
|
flex-shrink: 0;
|
|
1298
1379
|
}
|
|
@@ -1407,6 +1488,9 @@
|
|
|
1407
1488
|
.grid-cols-\[200px_1fr\] {
|
|
1408
1489
|
grid-template-columns: 200px 1fr;
|
|
1409
1490
|
}
|
|
1491
|
+
.grid-cols-\[minmax\(0\,1fr\)_minmax\(0\,1fr\)\] {
|
|
1492
|
+
grid-template-columns: minmax(0,1fr) minmax(0,1fr);
|
|
1493
|
+
}
|
|
1410
1494
|
.grid-cols-\[repeat\(7\,var\(--cmp-datepicker-calendar-day-width\)\)\] {
|
|
1411
1495
|
grid-template-columns: repeat(7,var(--cmp-datepicker-calendar-day-width));
|
|
1412
1496
|
}
|
|
@@ -1434,6 +1518,9 @@
|
|
|
1434
1518
|
.items-center {
|
|
1435
1519
|
align-items: center;
|
|
1436
1520
|
}
|
|
1521
|
+
.items-end {
|
|
1522
|
+
align-items: flex-end;
|
|
1523
|
+
}
|
|
1437
1524
|
.items-start {
|
|
1438
1525
|
align-items: flex-start;
|
|
1439
1526
|
}
|
|
@@ -1500,6 +1587,9 @@
|
|
|
1500
1587
|
.gap-4 {
|
|
1501
1588
|
gap: calc(var(--spacing) * 4);
|
|
1502
1589
|
}
|
|
1590
|
+
.gap-6 {
|
|
1591
|
+
gap: calc(var(--spacing) * 6);
|
|
1592
|
+
}
|
|
1503
1593
|
.gap-8 {
|
|
1504
1594
|
gap: calc(var(--spacing) * 8);
|
|
1505
1595
|
}
|
|
@@ -1509,6 +1599,9 @@
|
|
|
1509
1599
|
.gap-13 {
|
|
1510
1600
|
gap: calc(var(--spacing) * 13);
|
|
1511
1601
|
}
|
|
1602
|
+
.gap-\[1px\] {
|
|
1603
|
+
gap: 1px;
|
|
1604
|
+
}
|
|
1512
1605
|
.gap-\[2px\] {
|
|
1513
1606
|
gap: 2px;
|
|
1514
1607
|
}
|
|
@@ -1605,6 +1698,12 @@
|
|
|
1605
1698
|
.gap-\[var\(--cmp-datepicker-calendar-time-unit-gap\)\] {
|
|
1606
1699
|
gap: var(--cmp-datepicker-calendar-time-unit-gap);
|
|
1607
1700
|
}
|
|
1701
|
+
.gap-\[var\(--cmp-datepicker-mode-item-gap\)\] {
|
|
1702
|
+
gap: var(--cmp-datepicker-mode-item-gap);
|
|
1703
|
+
}
|
|
1704
|
+
.gap-\[var\(--cmp-datepicker-mode-yearMonth-gap\)\] {
|
|
1705
|
+
gap: var(--cmp-datepicker-mode-yearMonth-gap);
|
|
1706
|
+
}
|
|
1608
1707
|
.gap-\[var\(--cmp-filepicker-md-gap\)\] {
|
|
1609
1708
|
gap: var(--cmp-filepicker-md-gap);
|
|
1610
1709
|
}
|
|
@@ -1750,6 +1849,9 @@
|
|
|
1750
1849
|
.overflow-y-hidden {
|
|
1751
1850
|
overflow-y: hidden;
|
|
1752
1851
|
}
|
|
1852
|
+
.overscroll-contain {
|
|
1853
|
+
overscroll-behavior: contain;
|
|
1854
|
+
}
|
|
1753
1855
|
.rounded {
|
|
1754
1856
|
border-radius: 0.25rem;
|
|
1755
1857
|
}
|
|
@@ -1765,9 +1867,15 @@
|
|
|
1765
1867
|
.rounded-8 {
|
|
1766
1868
|
border-radius: var(--radius-8);
|
|
1767
1869
|
}
|
|
1870
|
+
.rounded-\[1px\] {
|
|
1871
|
+
border-radius: 1px;
|
|
1872
|
+
}
|
|
1768
1873
|
.rounded-\[2px\] {
|
|
1769
1874
|
border-radius: 2px;
|
|
1770
1875
|
}
|
|
1876
|
+
.rounded-\[3px\] {
|
|
1877
|
+
border-radius: 3px;
|
|
1878
|
+
}
|
|
1771
1879
|
.rounded-\[4px\] {
|
|
1772
1880
|
border-radius: 4px;
|
|
1773
1881
|
}
|
|
@@ -1798,6 +1906,9 @@
|
|
|
1798
1906
|
.rounded-\[var\(--cmp-datepicker-calendar-time-radius\)\] {
|
|
1799
1907
|
border-radius: var(--cmp-datepicker-calendar-time-radius);
|
|
1800
1908
|
}
|
|
1909
|
+
.rounded-\[var\(--cmp-datepicker-mode-radius\)\] {
|
|
1910
|
+
border-radius: var(--cmp-datepicker-mode-radius);
|
|
1911
|
+
}
|
|
1801
1912
|
.rounded-\[var\(--cmp-datepicker-sm-radius\)\] {
|
|
1802
1913
|
border-radius: var(--cmp-datepicker-sm-radius);
|
|
1803
1914
|
}
|
|
@@ -1969,9 +2080,6 @@
|
|
|
1969
2080
|
--tw-border-style: solid;
|
|
1970
2081
|
border-style: solid;
|
|
1971
2082
|
}
|
|
1972
|
-
.\!border-\[\#93C4FF\] {
|
|
1973
|
-
border-color: #93C4FF !important;
|
|
1974
|
-
}
|
|
1975
2083
|
.\!border-border-accentLight {
|
|
1976
2084
|
border-color: var(--color-border-accentLight) !important;
|
|
1977
2085
|
}
|
|
@@ -2017,6 +2125,9 @@
|
|
|
2017
2125
|
.border-\[\#E1E1E1\] {
|
|
2018
2126
|
border-color: #E1E1E1;
|
|
2019
2127
|
}
|
|
2128
|
+
.border-\[\#e1e1e1\] {
|
|
2129
|
+
border-color: #e1e1e1;
|
|
2130
|
+
}
|
|
2020
2131
|
.border-\[\#e5e7eb\] {
|
|
2021
2132
|
border-color: #e5e7eb;
|
|
2022
2133
|
}
|
|
@@ -2059,9 +2170,6 @@
|
|
|
2059
2170
|
.border-\[color\:var\(--color-grey-30\)\] {
|
|
2060
2171
|
border-color: var(--color-grey-30);
|
|
2061
2172
|
}
|
|
2062
|
-
.border-\[color\:var\(--color-grey-45\)\] {
|
|
2063
|
-
border-color: var(--color-grey-45);
|
|
2064
|
-
}
|
|
2065
2173
|
.border-\[color\:var\(--dd-border\)\] {
|
|
2066
2174
|
border-color: var(--dd-border);
|
|
2067
2175
|
}
|
|
@@ -2200,6 +2308,9 @@
|
|
|
2200
2308
|
.bg-\[\#FFE3F7\] {
|
|
2201
2309
|
background-color: #FFE3F7;
|
|
2202
2310
|
}
|
|
2311
|
+
.bg-\[\#FFF4F4\] {
|
|
2312
|
+
background-color: #FFF4F4;
|
|
2313
|
+
}
|
|
2203
2314
|
.bg-\[\#eee\] {
|
|
2204
2315
|
background-color: #eee;
|
|
2205
2316
|
}
|
|
@@ -2245,6 +2356,12 @@
|
|
|
2245
2356
|
.bg-\[var\(--cmp-datepicker-calendar-time-bg-selected\)\] {
|
|
2246
2357
|
background-color: var(--cmp-datepicker-calendar-time-bg-selected);
|
|
2247
2358
|
}
|
|
2359
|
+
.bg-\[var\(--cmp-datepicker-mode-bg\)\] {
|
|
2360
|
+
background-color: var(--cmp-datepicker-mode-bg);
|
|
2361
|
+
}
|
|
2362
|
+
.bg-\[var\(--cmp-datepicker-mode-item-bg-default\)\] {
|
|
2363
|
+
background-color: var(--cmp-datepicker-mode-item-bg-default);
|
|
2364
|
+
}
|
|
2248
2365
|
.bg-\[var\(--cmp-drawer-bg\)\] {
|
|
2249
2366
|
background-color: var(--cmp-drawer-bg);
|
|
2250
2367
|
}
|
|
@@ -2296,6 +2413,9 @@
|
|
|
2296
2413
|
.bg-\[var\(--color-grey-15\)\] {
|
|
2297
2414
|
background-color: var(--color-grey-15);
|
|
2298
2415
|
}
|
|
2416
|
+
.bg-\[var\(--color-grey-45\)\] {
|
|
2417
|
+
background-color: var(--color-grey-45);
|
|
2418
|
+
}
|
|
2299
2419
|
.bg-\[var\(--color-white\)\] {
|
|
2300
2420
|
background-color: var(--color-white);
|
|
2301
2421
|
}
|
|
@@ -2368,9 +2488,15 @@
|
|
|
2368
2488
|
.bg-grey-20 {
|
|
2369
2489
|
background-color: var(--color-grey-20);
|
|
2370
2490
|
}
|
|
2491
|
+
.bg-grey-30 {
|
|
2492
|
+
background-color: var(--color-grey-30);
|
|
2493
|
+
}
|
|
2371
2494
|
.bg-grey-90 {
|
|
2372
2495
|
background-color: var(--color-grey-90);
|
|
2373
2496
|
}
|
|
2497
|
+
.bg-primary-50 {
|
|
2498
|
+
background-color: var(--color-primary-50);
|
|
2499
|
+
}
|
|
2374
2500
|
.bg-red-50 {
|
|
2375
2501
|
background-color: var(--color-red-50);
|
|
2376
2502
|
}
|
|
@@ -2416,6 +2542,9 @@
|
|
|
2416
2542
|
.p-\[2px\] {
|
|
2417
2543
|
padding: 2px;
|
|
2418
2544
|
}
|
|
2545
|
+
.p-\[4px\] {
|
|
2546
|
+
padding: 4px;
|
|
2547
|
+
}
|
|
2419
2548
|
.p-\[8px\] {
|
|
2420
2549
|
padding: 8px;
|
|
2421
2550
|
}
|
|
@@ -2494,6 +2623,9 @@
|
|
|
2494
2623
|
.px-\(--cmp-tree-item-paddingX\) {
|
|
2495
2624
|
padding-inline: var(--cmp-tree-item-paddingX);
|
|
2496
2625
|
}
|
|
2626
|
+
.px-\(--sys-space-panel-padding-default\) {
|
|
2627
|
+
padding-inline: var(--sys-space-panel-padding-default);
|
|
2628
|
+
}
|
|
2497
2629
|
.px-3 {
|
|
2498
2630
|
padding-inline: calc(var(--spacing) * 3);
|
|
2499
2631
|
}
|
|
@@ -2545,6 +2677,9 @@
|
|
|
2545
2677
|
.px-\[var\(--cmp-datepicker-calendar-time-paddingX\)\] {
|
|
2546
2678
|
padding-inline: var(--cmp-datepicker-calendar-time-paddingX);
|
|
2547
2679
|
}
|
|
2680
|
+
.px-\[var\(--cmp-datepicker-mode-item-paddingX\)\] {
|
|
2681
|
+
padding-inline: var(--cmp-datepicker-mode-item-paddingX);
|
|
2682
|
+
}
|
|
2548
2683
|
.px-\[var\(--cmp-guide-button-paddingX\)\] {
|
|
2549
2684
|
padding-inline: var(--cmp-guide-button-paddingX);
|
|
2550
2685
|
}
|
|
@@ -2578,6 +2713,9 @@
|
|
|
2578
2713
|
.px-sd-8 {
|
|
2579
2714
|
padding-inline: var(--spacing-sd-8);
|
|
2580
2715
|
}
|
|
2716
|
+
.px-sd-10 {
|
|
2717
|
+
padding-inline: var(--spacing-sd-10);
|
|
2718
|
+
}
|
|
2581
2719
|
.px-sd-12 {
|
|
2582
2720
|
padding-inline: var(--spacing-sd-12);
|
|
2583
2721
|
}
|
|
@@ -2662,6 +2800,9 @@
|
|
|
2662
2800
|
.py-\[var\(--cmp-datepicker-calendar-time-paddingY\)\] {
|
|
2663
2801
|
padding-block: var(--cmp-datepicker-calendar-time-paddingY);
|
|
2664
2802
|
}
|
|
2803
|
+
.py-\[var\(--cmp-datepicker-mode-item-paddingY\)\] {
|
|
2804
|
+
padding-block: var(--cmp-datepicker-mode-item-paddingY);
|
|
2805
|
+
}
|
|
2665
2806
|
.py-\[var\(--cmp-overlay-footer-paddingY\)\] {
|
|
2666
2807
|
padding-block: var(--cmp-overlay-footer-paddingY);
|
|
2667
2808
|
}
|
|
@@ -2740,6 +2881,9 @@
|
|
|
2740
2881
|
.pb-sd-16 {
|
|
2741
2882
|
padding-bottom: var(--spacing-sd-16);
|
|
2742
2883
|
}
|
|
2884
|
+
.pb-sd-48 {
|
|
2885
|
+
padding-bottom: var(--spacing-sd-48);
|
|
2886
|
+
}
|
|
2743
2887
|
.pl-\(--cmp-guide-contents-depth-paddingLeft\) {
|
|
2744
2888
|
padding-left: var(--cmp-guide-contents-depth-paddingLeft);
|
|
2745
2889
|
}
|
|
@@ -2776,6 +2920,9 @@
|
|
|
2776
2920
|
.align-middle {
|
|
2777
2921
|
vertical-align: middle;
|
|
2778
2922
|
}
|
|
2923
|
+
.font-base {
|
|
2924
|
+
font-family: var(--font-base);
|
|
2925
|
+
}
|
|
2779
2926
|
.text-base {
|
|
2780
2927
|
font-size: var(--text-base);
|
|
2781
2928
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
@@ -2796,6 +2943,9 @@
|
|
|
2796
2943
|
font-size: var(--text-xs);
|
|
2797
2944
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2798
2945
|
}
|
|
2946
|
+
.text-11 {
|
|
2947
|
+
font-size: var(--text-11);
|
|
2948
|
+
}
|
|
2799
2949
|
.text-12 {
|
|
2800
2950
|
font-size: var(--text-12);
|
|
2801
2951
|
}
|
|
@@ -2846,6 +2996,10 @@
|
|
|
2846
2996
|
--tw-leading: calc(var(--spacing) * 6);
|
|
2847
2997
|
line-height: calc(var(--spacing) * 6);
|
|
2848
2998
|
}
|
|
2999
|
+
.leading-\[0\] {
|
|
3000
|
+
--tw-leading: 0;
|
|
3001
|
+
line-height: 0;
|
|
3002
|
+
}
|
|
2849
3003
|
.leading-\[16px\] {
|
|
2850
3004
|
--tw-leading: 16px;
|
|
2851
3005
|
line-height: 16px;
|
|
@@ -3011,9 +3165,6 @@
|
|
|
3011
3165
|
.text-\(--cmp-tree-item-text-default\) {
|
|
3012
3166
|
color: var(--cmp-tree-item-text-default);
|
|
3013
3167
|
}
|
|
3014
|
-
.text-\(--cmp-tree-item-text-selected\) {
|
|
3015
|
-
color: var(--cmp-tree-item-text-selected);
|
|
3016
|
-
}
|
|
3017
3168
|
.text-\(--color-grey-65\) {
|
|
3018
3169
|
color: var(--color-grey-65);
|
|
3019
3170
|
}
|
|
@@ -3074,6 +3225,15 @@
|
|
|
3074
3225
|
.text-\[color\:var\(--cmp-datepicker-calendar-week-color\)\] {
|
|
3075
3226
|
color: var(--cmp-datepicker-calendar-week-color);
|
|
3076
3227
|
}
|
|
3228
|
+
.text-\[color\:var\(--cmp-datepicker-mode-item-content-default\)\] {
|
|
3229
|
+
color: var(--cmp-datepicker-mode-item-content-default);
|
|
3230
|
+
}
|
|
3231
|
+
.text-\[color\:var\(--cmp-datepicker-mode-item-content-disabled\)\] {
|
|
3232
|
+
color: var(--cmp-datepicker-mode-item-content-disabled);
|
|
3233
|
+
}
|
|
3234
|
+
.text-\[color\:var\(--cmp-datepicker-mode-item-content-selected\)\] {
|
|
3235
|
+
color: var(--cmp-datepicker-mode-item-content-selected);
|
|
3236
|
+
}
|
|
3077
3237
|
.text-\[color\:var\(--cmp-datepicker-text-default\)\] {
|
|
3078
3238
|
color: var(--cmp-datepicker-text-default);
|
|
3079
3239
|
}
|
|
@@ -3122,9 +3282,6 @@
|
|
|
3122
3282
|
.text-\[color\:var\(--cmp-progress-color-label\)\] {
|
|
3123
3283
|
color: var(--cmp-progress-color-label);
|
|
3124
3284
|
}
|
|
3125
|
-
.text-\[color\:var\(--cmp-select-text-default\)\] {
|
|
3126
|
-
color: var(--cmp-select-text-default);
|
|
3127
|
-
}
|
|
3128
3285
|
.text-\[color\:var\(--co-content\)\] {
|
|
3129
3286
|
color: var(--co-content);
|
|
3130
3287
|
}
|
|
@@ -3215,9 +3372,15 @@
|
|
|
3215
3372
|
.text-grey-55 {
|
|
3216
3373
|
color: var(--color-grey-55);
|
|
3217
3374
|
}
|
|
3375
|
+
.text-grey-60 {
|
|
3376
|
+
color: var(--color-grey-60);
|
|
3377
|
+
}
|
|
3218
3378
|
.text-grey-65 {
|
|
3219
3379
|
color: var(--color-grey-65);
|
|
3220
3380
|
}
|
|
3381
|
+
.text-grey-70 {
|
|
3382
|
+
color: var(--color-grey-70);
|
|
3383
|
+
}
|
|
3221
3384
|
.text-grey-80 {
|
|
3222
3385
|
color: var(--color-grey-80);
|
|
3223
3386
|
}
|
|
@@ -3242,6 +3405,9 @@
|
|
|
3242
3405
|
.uppercase {
|
|
3243
3406
|
text-transform: uppercase;
|
|
3244
3407
|
}
|
|
3408
|
+
.italic {
|
|
3409
|
+
font-style: italic;
|
|
3410
|
+
}
|
|
3245
3411
|
.no-underline {
|
|
3246
3412
|
text-decoration-line: none;
|
|
3247
3413
|
}
|
|
@@ -3278,6 +3444,10 @@
|
|
|
3278
3444
|
--tw-shadow: 0 2px 4px var(--tw-shadow-color, rgba(0,0,0,0.16));
|
|
3279
3445
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3280
3446
|
}
|
|
3447
|
+
.shadow-\[0_8px_16px_rgba\(15_23_42_\/_0\.12\)\] {
|
|
3448
|
+
--tw-shadow: 0 8px 16px var(--tw-shadow-color, rgba(15 23 42 / 0.12));
|
|
3449
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3450
|
+
}
|
|
3281
3451
|
.shadow-\[2px_2px_12px_2px_rgba\(0\,0\,0\,0\.1\)\] {
|
|
3282
3452
|
--tw-shadow: 2px 2px 12px 2px var(--tw-shadow-color, rgba(0,0,0,0.1));
|
|
3283
3453
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3322,6 +3492,19 @@
|
|
|
3322
3492
|
outline-style: var(--tw-outline-style);
|
|
3323
3493
|
outline-width: 1px;
|
|
3324
3494
|
}
|
|
3495
|
+
.outline-2 {
|
|
3496
|
+
outline-style: var(--tw-outline-style);
|
|
3497
|
+
outline-width: 2px;
|
|
3498
|
+
}
|
|
3499
|
+
.outline-offset-\[-2px\] {
|
|
3500
|
+
outline-offset: -2px;
|
|
3501
|
+
}
|
|
3502
|
+
.outline-\(--sys-color-border-accent\) {
|
|
3503
|
+
outline-color: var(--sys-color-border-accent);
|
|
3504
|
+
}
|
|
3505
|
+
.outline-\[var\(--color-border-accent\)\] {
|
|
3506
|
+
outline-color: var(--color-border-accent);
|
|
3507
|
+
}
|
|
3325
3508
|
.blur {
|
|
3326
3509
|
--tw-blur: blur(8px);
|
|
3327
3510
|
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,);
|
|
@@ -3442,6 +3625,13 @@
|
|
|
3442
3625
|
}
|
|
3443
3626
|
}
|
|
3444
3627
|
}
|
|
3628
|
+
.group-hover\/editor-tool\:opacity-5 {
|
|
3629
|
+
&:is(:where(.group\/editor-tool):hover *) {
|
|
3630
|
+
@media (hover: hover) {
|
|
3631
|
+
opacity: 5%;
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
}
|
|
3445
3635
|
.group-hover\/filepicker\:text-\[color\:var\(--cmp-filepicker-text-default\)\] {
|
|
3446
3636
|
&:is(:where(.group\/filepicker):hover *) {
|
|
3447
3637
|
@media (hover: hover) {
|
|
@@ -3456,6 +3646,13 @@
|
|
|
3456
3646
|
}
|
|
3457
3647
|
}
|
|
3458
3648
|
}
|
|
3649
|
+
.group-hover\/select-clear\:opacity-5 {
|
|
3650
|
+
&:is(:where(.group\/select-clear):hover *) {
|
|
3651
|
+
@media (hover: hover) {
|
|
3652
|
+
opacity: 5%;
|
|
3653
|
+
}
|
|
3654
|
+
}
|
|
3655
|
+
}
|
|
3459
3656
|
.group-hover\/table-row\:bg-\[var\(--color-grey-05\)\] {
|
|
3460
3657
|
&:is(:where(.group\/table-row):hover *) {
|
|
3461
3658
|
@media (hover: hover) {
|
|
@@ -3488,14 +3685,14 @@
|
|
|
3488
3685
|
color: var(--cmp-textinput-text-placeholder);
|
|
3489
3686
|
}
|
|
3490
3687
|
}
|
|
3491
|
-
.placeholder\:text-\[color\:var\(--color-
|
|
3688
|
+
.placeholder\:text-\[color\:var\(--sys-color-field-text-placeholder\)\] {
|
|
3492
3689
|
&::placeholder {
|
|
3493
|
-
color: var(--color-
|
|
3690
|
+
color: var(--sys-color-field-text-placeholder);
|
|
3494
3691
|
}
|
|
3495
3692
|
}
|
|
3496
|
-
.placeholder\:text
|
|
3693
|
+
.placeholder\:text-gray-400 {
|
|
3497
3694
|
&::placeholder {
|
|
3498
|
-
color: var(--
|
|
3695
|
+
color: var(--color-gray-400);
|
|
3499
3696
|
}
|
|
3500
3697
|
}
|
|
3501
3698
|
.before\:absolute {
|
|
@@ -3648,6 +3845,12 @@
|
|
|
3648
3845
|
content: var(--tw-content);
|
|
3649
3846
|
}
|
|
3650
3847
|
}
|
|
3848
|
+
.last\:border-b-0 {
|
|
3849
|
+
&:last-child {
|
|
3850
|
+
border-bottom-style: var(--tw-border-style);
|
|
3851
|
+
border-bottom-width: 0px;
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3651
3854
|
.autofill\:\[box-shadow\:0_0_0_1000px_var\(--sys-color-field-bg-default\)_inset\] {
|
|
3652
3855
|
&:autofill {
|
|
3653
3856
|
box-shadow: 0 0 0 1000px var(--sys-color-field-bg-default) inset;
|
|
@@ -3855,6 +4058,13 @@
|
|
|
3855
4058
|
}
|
|
3856
4059
|
}
|
|
3857
4060
|
}
|
|
4061
|
+
.hover\:bg-\[var\(--cmp-datepicker-mode-item-bg-hover\)\] {
|
|
4062
|
+
&:hover {
|
|
4063
|
+
@media (hover: hover) {
|
|
4064
|
+
background-color: var(--cmp-datepicker-mode-item-bg-hover);
|
|
4065
|
+
}
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
3858
4068
|
.hover\:bg-\[var\(--cmp-listBoxItem-bg-hover\)\] {
|
|
3859
4069
|
&:hover {
|
|
3860
4070
|
@media (hover: hover) {
|
|
@@ -3876,6 +4086,13 @@
|
|
|
3876
4086
|
}
|
|
3877
4087
|
}
|
|
3878
4088
|
}
|
|
4089
|
+
.hover\:bg-\[var\(--color-bg-neutralLight\)\] {
|
|
4090
|
+
&:hover {
|
|
4091
|
+
@media (hover: hover) {
|
|
4092
|
+
background-color: var(--color-bg-neutralLight);
|
|
4093
|
+
}
|
|
4094
|
+
}
|
|
4095
|
+
}
|
|
3879
4096
|
.hover\:bg-\[var\(--color-grey-05\)\] {
|
|
3880
4097
|
&:hover {
|
|
3881
4098
|
@media (hover: hover) {
|
|
@@ -3950,6 +4167,13 @@
|
|
|
3950
4167
|
}
|
|
3951
4168
|
}
|
|
3952
4169
|
}
|
|
4170
|
+
.hover\:text-\[color\:var\(--cmp-datepicker-mode-item-content-hover\)\] {
|
|
4171
|
+
&:hover {
|
|
4172
|
+
@media (hover: hover) {
|
|
4173
|
+
color: var(--cmp-datepicker-mode-item-content-hover);
|
|
4174
|
+
}
|
|
4175
|
+
}
|
|
4176
|
+
}
|
|
3953
4177
|
.hover\:text-\[color\:var\(--cmp-listBoxItem-content-hover\)\] {
|
|
3954
4178
|
&:hover {
|
|
3955
4179
|
@media (hover: hover) {
|
|
@@ -3991,6 +4215,11 @@
|
|
|
3991
4215
|
border-color: var(--cmp-datepicker-border-focus);
|
|
3992
4216
|
}
|
|
3993
4217
|
}
|
|
4218
|
+
.focus\:border-gray-400 {
|
|
4219
|
+
&:focus {
|
|
4220
|
+
border-color: var(--color-gray-400);
|
|
4221
|
+
}
|
|
4222
|
+
}
|
|
3994
4223
|
.focus-visible\:bg-\[var\(--cmp-listBoxItem-bg-hover\)\] {
|
|
3995
4224
|
&:focus-visible {
|
|
3996
4225
|
background-color: var(--cmp-listBoxItem-bg-hover);
|
|
@@ -4013,6 +4242,12 @@
|
|
|
4013
4242
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4014
4243
|
}
|
|
4015
4244
|
}
|
|
4245
|
+
.focus-visible\:shadow-\[0_0_0_2px_var\(--cmp-toggle-border-select\)\] {
|
|
4246
|
+
&:focus-visible {
|
|
4247
|
+
--tw-shadow: 0 0 0 2px var(--tw-shadow-color, var(--cmp-toggle-border-select));
|
|
4248
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4249
|
+
}
|
|
4250
|
+
}
|
|
4016
4251
|
.focus-visible\:outline {
|
|
4017
4252
|
&:focus-visible {
|
|
4018
4253
|
outline-style: var(--tw-outline-style);
|
|
@@ -4071,6 +4306,11 @@
|
|
|
4071
4306
|
color: var(--cmp-button-text-disabled);
|
|
4072
4307
|
}
|
|
4073
4308
|
}
|
|
4309
|
+
.data-\[highlighted\]\:bg-\[var\(--color-bg-neutralLight\)\] {
|
|
4310
|
+
&[data-highlighted] {
|
|
4311
|
+
background-color: var(--color-bg-neutralLight);
|
|
4312
|
+
}
|
|
4313
|
+
}
|
|
4074
4314
|
.data-\[highlighted\]\:bg-\[var\(--sys-color-bg-accent\)\] {
|
|
4075
4315
|
&[data-highlighted] {
|
|
4076
4316
|
background-color: var(--sys-color-bg-accent);
|
|
@@ -4280,6 +4520,384 @@
|
|
|
4280
4520
|
}
|
|
4281
4521
|
}
|
|
4282
4522
|
}
|
|
4523
|
+
.\[\&_\.ProseMirror\]\:min-h-full {
|
|
4524
|
+
& .ProseMirror {
|
|
4525
|
+
min-height: 100%;
|
|
4526
|
+
}
|
|
4527
|
+
}
|
|
4528
|
+
.\[\&_\.ProseMirror\]\:break-words {
|
|
4529
|
+
& .ProseMirror {
|
|
4530
|
+
overflow-wrap: break-word;
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
.\[\&_\.ProseMirror\]\:whitespace-pre-wrap {
|
|
4534
|
+
& .ProseMirror {
|
|
4535
|
+
white-space: pre-wrap;
|
|
4536
|
+
}
|
|
4537
|
+
}
|
|
4538
|
+
.\[\&_\.ProseMirror\]\:outline-none {
|
|
4539
|
+
& .ProseMirror {
|
|
4540
|
+
--tw-outline-style: none;
|
|
4541
|
+
outline-style: none;
|
|
4542
|
+
}
|
|
4543
|
+
}
|
|
4544
|
+
.\[\&_\.ProseMirror-selectednode\]\:outline {
|
|
4545
|
+
& .ProseMirror-selectednode {
|
|
4546
|
+
outline-style: var(--tw-outline-style);
|
|
4547
|
+
outline-width: 1px;
|
|
4548
|
+
}
|
|
4549
|
+
}
|
|
4550
|
+
.\[\&_\.ProseMirror-selectednode\]\:outline-2 {
|
|
4551
|
+
& .ProseMirror-selectednode {
|
|
4552
|
+
outline-style: var(--tw-outline-style);
|
|
4553
|
+
outline-width: 2px;
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
.\[\&_\.ProseMirror-selectednode\]\:outline-\[var\(--color-border-accent\)\] {
|
|
4557
|
+
& .ProseMirror-selectednode {
|
|
4558
|
+
outline-color: var(--color-border-accent);
|
|
4559
|
+
}
|
|
4560
|
+
}
|
|
4561
|
+
.\[\&_a\]\:cursor-pointer {
|
|
4562
|
+
& a {
|
|
4563
|
+
cursor: pointer;
|
|
4564
|
+
}
|
|
4565
|
+
}
|
|
4566
|
+
.\[\&_a\]\:text-\[color\:var\(--color-fg-accent\)\] {
|
|
4567
|
+
& a {
|
|
4568
|
+
color: var(--color-fg-accent);
|
|
4569
|
+
}
|
|
4570
|
+
}
|
|
4571
|
+
.\[\&_a\]\:underline {
|
|
4572
|
+
& a {
|
|
4573
|
+
text-decoration-line: underline;
|
|
4574
|
+
}
|
|
4575
|
+
}
|
|
4576
|
+
.\[\&_blockquote\]\:my-\[8px\] {
|
|
4577
|
+
& blockquote {
|
|
4578
|
+
margin-block: 8px;
|
|
4579
|
+
}
|
|
4580
|
+
}
|
|
4581
|
+
.\[\&_blockquote\]\:border-l-\[3px\] {
|
|
4582
|
+
& blockquote {
|
|
4583
|
+
border-left-style: var(--tw-border-style);
|
|
4584
|
+
border-left-width: 3px;
|
|
4585
|
+
}
|
|
4586
|
+
}
|
|
4587
|
+
.\[\&_blockquote\]\:border-solid {
|
|
4588
|
+
& blockquote {
|
|
4589
|
+
--tw-border-style: solid;
|
|
4590
|
+
border-style: solid;
|
|
4591
|
+
}
|
|
4592
|
+
}
|
|
4593
|
+
.\[\&_blockquote\]\:border-l-\[color\:var\(--color-border-default\)\] {
|
|
4594
|
+
& blockquote {
|
|
4595
|
+
border-left-color: var(--color-border-default);
|
|
4596
|
+
}
|
|
4597
|
+
}
|
|
4598
|
+
.\[\&_blockquote\]\:pl-\[12px\] {
|
|
4599
|
+
& blockquote {
|
|
4600
|
+
padding-left: 12px;
|
|
4601
|
+
}
|
|
4602
|
+
}
|
|
4603
|
+
.\[\&_blockquote\]\:text-\[color\:var\(--color-fg-tertiary\)\] {
|
|
4604
|
+
& blockquote {
|
|
4605
|
+
color: var(--color-fg-tertiary);
|
|
4606
|
+
}
|
|
4607
|
+
}
|
|
4608
|
+
.\[\&_code\]\:rounded-\[3px\] {
|
|
4609
|
+
& code {
|
|
4610
|
+
border-radius: 3px;
|
|
4611
|
+
}
|
|
4612
|
+
}
|
|
4613
|
+
.\[\&_code\]\:bg-\[var\(--color-bg-neutralLight\)\] {
|
|
4614
|
+
& code {
|
|
4615
|
+
background-color: var(--color-bg-neutralLight);
|
|
4616
|
+
}
|
|
4617
|
+
}
|
|
4618
|
+
.\[\&_code\]\:px-\[4px\] {
|
|
4619
|
+
& code {
|
|
4620
|
+
padding-inline: 4px;
|
|
4621
|
+
}
|
|
4622
|
+
}
|
|
4623
|
+
.\[\&_code\]\:py-\[1px\] {
|
|
4624
|
+
& code {
|
|
4625
|
+
padding-block: 1px;
|
|
4626
|
+
}
|
|
4627
|
+
}
|
|
4628
|
+
.\[\&_em\]\:italic {
|
|
4629
|
+
& em {
|
|
4630
|
+
font-style: italic;
|
|
4631
|
+
}
|
|
4632
|
+
}
|
|
4633
|
+
.\[\&_h1\]\:mt-\[12px\] {
|
|
4634
|
+
& h1 {
|
|
4635
|
+
margin-top: 12px;
|
|
4636
|
+
}
|
|
4637
|
+
}
|
|
4638
|
+
.\[\&_h1\]\:mb-\[4px\] {
|
|
4639
|
+
& h1 {
|
|
4640
|
+
margin-bottom: 4px;
|
|
4641
|
+
}
|
|
4642
|
+
}
|
|
4643
|
+
.\[\&_h1\]\:text-\[18px\] {
|
|
4644
|
+
& h1 {
|
|
4645
|
+
font-size: 18px;
|
|
4646
|
+
}
|
|
4647
|
+
}
|
|
4648
|
+
.\[\&_h1\]\:leading-\[28px\] {
|
|
4649
|
+
& h1 {
|
|
4650
|
+
--tw-leading: 28px;
|
|
4651
|
+
line-height: 28px;
|
|
4652
|
+
}
|
|
4653
|
+
}
|
|
4654
|
+
.\[\&_h1\]\:font-bold {
|
|
4655
|
+
& h1 {
|
|
4656
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
4657
|
+
font-weight: var(--font-weight-bold);
|
|
4658
|
+
}
|
|
4659
|
+
}
|
|
4660
|
+
.\[\&_h2\]\:mt-\[12px\] {
|
|
4661
|
+
& h2 {
|
|
4662
|
+
margin-top: 12px;
|
|
4663
|
+
}
|
|
4664
|
+
}
|
|
4665
|
+
.\[\&_h2\]\:mb-\[4px\] {
|
|
4666
|
+
& h2 {
|
|
4667
|
+
margin-bottom: 4px;
|
|
4668
|
+
}
|
|
4669
|
+
}
|
|
4670
|
+
.\[\&_h2\]\:text-\[16px\] {
|
|
4671
|
+
& h2 {
|
|
4672
|
+
font-size: 16px;
|
|
4673
|
+
}
|
|
4674
|
+
}
|
|
4675
|
+
.\[\&_h2\]\:leading-\[24px\] {
|
|
4676
|
+
& h2 {
|
|
4677
|
+
--tw-leading: 24px;
|
|
4678
|
+
line-height: 24px;
|
|
4679
|
+
}
|
|
4680
|
+
}
|
|
4681
|
+
.\[\&_h2\]\:font-bold {
|
|
4682
|
+
& h2 {
|
|
4683
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
4684
|
+
font-weight: var(--font-weight-bold);
|
|
4685
|
+
}
|
|
4686
|
+
}
|
|
4687
|
+
.\[\&_h3\]\:mt-\[8px\] {
|
|
4688
|
+
& h3 {
|
|
4689
|
+
margin-top: 8px;
|
|
4690
|
+
}
|
|
4691
|
+
}
|
|
4692
|
+
.\[\&_h3\]\:mb-\[4px\] {
|
|
4693
|
+
& h3 {
|
|
4694
|
+
margin-bottom: 4px;
|
|
4695
|
+
}
|
|
4696
|
+
}
|
|
4697
|
+
.\[\&_h3\]\:text-\[14px\] {
|
|
4698
|
+
& h3 {
|
|
4699
|
+
font-size: 14px;
|
|
4700
|
+
}
|
|
4701
|
+
}
|
|
4702
|
+
.\[\&_h3\]\:leading-\[22px\] {
|
|
4703
|
+
& h3 {
|
|
4704
|
+
--tw-leading: 22px;
|
|
4705
|
+
line-height: 22px;
|
|
4706
|
+
}
|
|
4707
|
+
}
|
|
4708
|
+
.\[\&_h3\]\:font-bold {
|
|
4709
|
+
& h3 {
|
|
4710
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
4711
|
+
font-weight: var(--font-weight-bold);
|
|
4712
|
+
}
|
|
4713
|
+
}
|
|
4714
|
+
.\[\&_hr\]\:my-\[12px\] {
|
|
4715
|
+
& hr {
|
|
4716
|
+
margin-block: 12px;
|
|
4717
|
+
}
|
|
4718
|
+
}
|
|
4719
|
+
.\[\&_hr\]\:border-t {
|
|
4720
|
+
& hr {
|
|
4721
|
+
border-top-style: var(--tw-border-style);
|
|
4722
|
+
border-top-width: 1px;
|
|
4723
|
+
}
|
|
4724
|
+
}
|
|
4725
|
+
.\[\&_hr\]\:border-\[color\:var\(--color-border-default\)\] {
|
|
4726
|
+
& hr {
|
|
4727
|
+
border-color: var(--color-border-default);
|
|
4728
|
+
}
|
|
4729
|
+
}
|
|
4730
|
+
.\[\&_li\]\:my-0 {
|
|
4731
|
+
& li {
|
|
4732
|
+
margin-block: 0;
|
|
4733
|
+
}
|
|
4734
|
+
}
|
|
4735
|
+
.\[\&_li\>p\]\:my-0 {
|
|
4736
|
+
& li>p {
|
|
4737
|
+
margin-block: 0;
|
|
4738
|
+
}
|
|
4739
|
+
}
|
|
4740
|
+
.\[\&_mark\]\:rounded-\[2px\] {
|
|
4741
|
+
& mark {
|
|
4742
|
+
border-radius: 2px;
|
|
4743
|
+
}
|
|
4744
|
+
}
|
|
4745
|
+
.\[\&_mark\]\:bg-transparent {
|
|
4746
|
+
& mark {
|
|
4747
|
+
background-color: transparent;
|
|
4748
|
+
}
|
|
4749
|
+
}
|
|
4750
|
+
.\[\&_mark\]\:px-\[1px\] {
|
|
4751
|
+
& mark {
|
|
4752
|
+
padding-inline: 1px;
|
|
4753
|
+
}
|
|
4754
|
+
}
|
|
4755
|
+
.\[\&_ol\]\:my-\[4px\] {
|
|
4756
|
+
& ol {
|
|
4757
|
+
margin-block: 4px;
|
|
4758
|
+
}
|
|
4759
|
+
}
|
|
4760
|
+
.\[\&_ol\]\:list-decimal {
|
|
4761
|
+
& ol {
|
|
4762
|
+
list-style-type: decimal;
|
|
4763
|
+
}
|
|
4764
|
+
}
|
|
4765
|
+
.\[\&_ol\]\:pl-\[20px\] {
|
|
4766
|
+
& ol {
|
|
4767
|
+
padding-left: 20px;
|
|
4768
|
+
}
|
|
4769
|
+
}
|
|
4770
|
+
.\[\&_p\]\:my-0 {
|
|
4771
|
+
& p {
|
|
4772
|
+
margin-block: 0;
|
|
4773
|
+
}
|
|
4774
|
+
}
|
|
4775
|
+
.\[\&_p\+p\]\:mt-\[4px\] {
|
|
4776
|
+
& p+p {
|
|
4777
|
+
margin-top: 4px;
|
|
4778
|
+
}
|
|
4779
|
+
}
|
|
4780
|
+
.\[\&_p\.is-editor-empty\:first-child\]\:before\:pointer-events-none {
|
|
4781
|
+
& p.is-editor-empty:first-child {
|
|
4782
|
+
&::before {
|
|
4783
|
+
content: var(--tw-content);
|
|
4784
|
+
pointer-events: none;
|
|
4785
|
+
}
|
|
4786
|
+
}
|
|
4787
|
+
}
|
|
4788
|
+
.\[\&_p\.is-editor-empty\:first-child\]\:before\:float-left {
|
|
4789
|
+
& p.is-editor-empty:first-child {
|
|
4790
|
+
&::before {
|
|
4791
|
+
content: var(--tw-content);
|
|
4792
|
+
float: left;
|
|
4793
|
+
}
|
|
4794
|
+
}
|
|
4795
|
+
}
|
|
4796
|
+
.\[\&_p\.is-editor-empty\:first-child\]\:before\:h-0 {
|
|
4797
|
+
& p.is-editor-empty:first-child {
|
|
4798
|
+
&::before {
|
|
4799
|
+
content: var(--tw-content);
|
|
4800
|
+
height: 0;
|
|
4801
|
+
}
|
|
4802
|
+
}
|
|
4803
|
+
}
|
|
4804
|
+
.\[\&_p\.is-editor-empty\:first-child\]\:before\:text-\[color\:var\(--sys-color-field-text-placeholder\)\] {
|
|
4805
|
+
& p.is-editor-empty:first-child {
|
|
4806
|
+
&::before {
|
|
4807
|
+
content: var(--tw-content);
|
|
4808
|
+
color: var(--sys-color-field-text-placeholder);
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4811
|
+
}
|
|
4812
|
+
.\[\&_p\.is-editor-empty\:first-child\]\:before\:content-\[attr\(data-placeholder\)\] {
|
|
4813
|
+
& p.is-editor-empty:first-child {
|
|
4814
|
+
&::before {
|
|
4815
|
+
--tw-content: attr(data-placeholder);
|
|
4816
|
+
content: var(--tw-content);
|
|
4817
|
+
}
|
|
4818
|
+
}
|
|
4819
|
+
}
|
|
4820
|
+
.\[\&_pre\]\:my-\[8px\] {
|
|
4821
|
+
& pre {
|
|
4822
|
+
margin-block: 8px;
|
|
4823
|
+
}
|
|
4824
|
+
}
|
|
4825
|
+
.\[\&_pre\]\:rounded-\[4px\] {
|
|
4826
|
+
& pre {
|
|
4827
|
+
border-radius: 4px;
|
|
4828
|
+
}
|
|
4829
|
+
}
|
|
4830
|
+
.\[\&_pre\]\:bg-\[var\(--color-bg-neutralLight\)\] {
|
|
4831
|
+
& pre {
|
|
4832
|
+
background-color: var(--color-bg-neutralLight);
|
|
4833
|
+
}
|
|
4834
|
+
}
|
|
4835
|
+
.\[\&_pre\]\:p-\[12px\] {
|
|
4836
|
+
& pre {
|
|
4837
|
+
padding: 12px;
|
|
4838
|
+
}
|
|
4839
|
+
}
|
|
4840
|
+
.\[\&_pre_code\]\:bg-transparent {
|
|
4841
|
+
& pre code {
|
|
4842
|
+
background-color: transparent;
|
|
4843
|
+
}
|
|
4844
|
+
}
|
|
4845
|
+
.\[\&_pre_code\]\:p-0 {
|
|
4846
|
+
& pre code {
|
|
4847
|
+
padding: 0;
|
|
4848
|
+
}
|
|
4849
|
+
}
|
|
4850
|
+
.\[\&_s\]\:line-through {
|
|
4851
|
+
& s {
|
|
4852
|
+
text-decoration-line: line-through;
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4855
|
+
.\[\&_strong\]\:font-bold {
|
|
4856
|
+
& strong {
|
|
4857
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
4858
|
+
font-weight: var(--font-weight-bold);
|
|
4859
|
+
}
|
|
4860
|
+
}
|
|
4861
|
+
.\[\&_sub\]\:align-sub {
|
|
4862
|
+
& sub {
|
|
4863
|
+
vertical-align: sub;
|
|
4864
|
+
}
|
|
4865
|
+
}
|
|
4866
|
+
.\[\&_sub\]\:text-\[0\.75em\] {
|
|
4867
|
+
& sub {
|
|
4868
|
+
font-size: 0.75em;
|
|
4869
|
+
}
|
|
4870
|
+
}
|
|
4871
|
+
.\[\&_sup\]\:align-super {
|
|
4872
|
+
& sup {
|
|
4873
|
+
vertical-align: super;
|
|
4874
|
+
}
|
|
4875
|
+
}
|
|
4876
|
+
.\[\&_sup\]\:text-\[0\.75em\] {
|
|
4877
|
+
& sup {
|
|
4878
|
+
font-size: 0.75em;
|
|
4879
|
+
}
|
|
4880
|
+
}
|
|
4881
|
+
.\[\&_u\]\:underline {
|
|
4882
|
+
& u {
|
|
4883
|
+
text-decoration-line: underline;
|
|
4884
|
+
}
|
|
4885
|
+
}
|
|
4886
|
+
.\[\&_ul\]\:my-\[4px\] {
|
|
4887
|
+
& ul {
|
|
4888
|
+
margin-block: 4px;
|
|
4889
|
+
}
|
|
4890
|
+
}
|
|
4891
|
+
.\[\&_ul\]\:list-disc {
|
|
4892
|
+
& ul {
|
|
4893
|
+
list-style-type: disc;
|
|
4894
|
+
}
|
|
4895
|
+
}
|
|
4896
|
+
.\[\&_ul\]\:pl-\[20px\] {
|
|
4897
|
+
& ul {
|
|
4898
|
+
padding-left: 20px;
|
|
4899
|
+
}
|
|
4900
|
+
}
|
|
4283
4901
|
.\[\&\:-webkit-autofill\]\:\[box-shadow\:0_0_0_1000px_var\(--sys-color-field-bg-default\)_inset\] {
|
|
4284
4902
|
&:-webkit-autofill {
|
|
4285
4903
|
box-shadow: 0 0 0 1000px var(--sys-color-field-bg-default) inset;
|
|
@@ -4412,20 +5030,19 @@
|
|
|
4412
5030
|
border-left: 1px solid var(--sys-color-border-default);
|
|
4413
5031
|
}
|
|
4414
5032
|
}
|
|
5033
|
+
.\[\&\:\:-webkit-search-cancel-button\]\:hidden {
|
|
5034
|
+
&::-webkit-search-cancel-button {
|
|
5035
|
+
display: none;
|
|
5036
|
+
}
|
|
5037
|
+
}
|
|
4415
5038
|
.\[\&\:has\(\>button\:hover\)\]\:border-border-strong {
|
|
4416
5039
|
&:has(>button:hover) {
|
|
4417
5040
|
border-color: var(--color-border-strong);
|
|
4418
5041
|
}
|
|
4419
5042
|
}
|
|
4420
|
-
.\[\&\>\*\]\:
|
|
5043
|
+
.\[\&\>\*\]\:w-full {
|
|
4421
5044
|
&>* {
|
|
4422
|
-
|
|
4423
|
-
border-bottom-width: 1px;
|
|
4424
|
-
}
|
|
4425
|
-
}
|
|
4426
|
-
.\[\&\>\*\]\:border-\(--cmp-listItem-border-default\) {
|
|
4427
|
-
&>* {
|
|
4428
|
-
border-color: var(--cmp-listItem-border-default);
|
|
5045
|
+
width: 100%;
|
|
4429
5046
|
}
|
|
4430
5047
|
}
|
|
4431
5048
|
.\[\&\>\*\:not\(\:last-child\)\]\:border-b {
|
|
@@ -4444,6 +5061,16 @@
|
|
|
4444
5061
|
background-color: var(--cmp-listExpansionItem-title-bg-hover);
|
|
4445
5062
|
}
|
|
4446
5063
|
}
|
|
5064
|
+
.\[\&\>div\:last-child\]\:min-h-0 {
|
|
5065
|
+
&>div:last-child {
|
|
5066
|
+
min-height: 0;
|
|
5067
|
+
}
|
|
5068
|
+
}
|
|
5069
|
+
.\[\&\>div\:last-child\]\:flex-1 {
|
|
5070
|
+
&>div:last-child {
|
|
5071
|
+
flex: 1;
|
|
5072
|
+
}
|
|
5073
|
+
}
|
|
4447
5074
|
}
|
|
4448
5075
|
:root {
|
|
4449
5076
|
--sys-size-control-xs-height: 24px;
|
|
@@ -4849,6 +5476,11 @@
|
|
|
4849
5476
|
--cmp-field-errorMessage-color: #E30000;
|
|
4850
5477
|
--cmp-field-contents-gap: 4px;
|
|
4851
5478
|
--cmp-field-message-paddingX: 8px;
|
|
5479
|
+
--cmp-field-width-xs: 80px;
|
|
5480
|
+
--cmp-field-width-sm: 120px;
|
|
5481
|
+
--cmp-field-width-md: 160px;
|
|
5482
|
+
--cmp-field-width-lg: 240px;
|
|
5483
|
+
--cmp-field-width-xl: 480px;
|
|
4852
5484
|
--cmp-textinput-sm-height: 28px;
|
|
4853
5485
|
--cmp-textinput-sm-paddingX: 12px;
|
|
4854
5486
|
--cmp-textinput-sm-paddingY: 4px;
|
|
@@ -4996,6 +5628,20 @@
|
|
|
4996
5628
|
--cmp-datepicker-calendar-time-gap: 12px;
|
|
4997
5629
|
--cmp-datepicker-calendar-time-section-gap: 12px;
|
|
4998
5630
|
--cmp-datepicker-calendar-time-unit-gap: 2px;
|
|
5631
|
+
--cmp-datepicker-mode-bg: #FFFFFF;
|
|
5632
|
+
--cmp-datepicker-mode-radius: 4px;
|
|
5633
|
+
--cmp-datepicker-mode-year-width: 120px;
|
|
5634
|
+
--cmp-datepicker-mode-yearMonth-column-width: 64px;
|
|
5635
|
+
--cmp-datepicker-mode-yearMonth-gap: 4px;
|
|
5636
|
+
--cmp-datepicker-mode-item-paddingY: 4px;
|
|
5637
|
+
--cmp-datepicker-mode-item-paddingX: 12px;
|
|
5638
|
+
--cmp-datepicker-mode-item-gap: 8px;
|
|
5639
|
+
--cmp-datepicker-mode-item-bg-default: #FFFFFF;
|
|
5640
|
+
--cmp-datepicker-mode-item-bg-hover: #0075FF;
|
|
5641
|
+
--cmp-datepicker-mode-item-content-default: #222222;
|
|
5642
|
+
--cmp-datepicker-mode-item-content-hover: #FFFFFF;
|
|
5643
|
+
--cmp-datepicker-mode-item-content-disabled: #888888;
|
|
5644
|
+
--cmp-datepicker-mode-item-content-selected: #0075FF;
|
|
4999
5645
|
--cmp-chip-height: 24px;
|
|
5000
5646
|
--cmp-chip-paddingX: 8px;
|
|
5001
5647
|
--cmp-chip-gap: 4px;
|
|
@@ -5327,10 +5973,8 @@
|
|
|
5327
5973
|
--cmp-stepper-vertical-title-paddingTop: 12px;
|
|
5328
5974
|
--cmp-stepper-vertical-title-paddingBottom: 6px;
|
|
5329
5975
|
--cmp-stepper-vertical-title-text: #004290;
|
|
5330
|
-
--cmp-tab-main-
|
|
5331
|
-
--cmp-tab-main-
|
|
5332
|
-
--cmp-tab-main-md-height: 36px;
|
|
5333
|
-
--cmp-tab-main-md-paddingX: 24px;
|
|
5976
|
+
--cmp-tab-main-height: 36px;
|
|
5977
|
+
--cmp-tab-main-paddingX: 24px;
|
|
5334
5978
|
--cmp-tab-main-gap: 8px;
|
|
5335
5979
|
--cmp-tab-main-container-gap: 4px;
|
|
5336
5980
|
--cmp-tab-main-radius: 6px;
|
|
@@ -5486,9 +6130,8 @@
|
|
|
5486
6130
|
--cmp-tree-item-rowGap: 8px;
|
|
5487
6131
|
--cmp-tree-item-contentGap: 12px;
|
|
5488
6132
|
--cmp-tree-item-text-default: #222222;
|
|
5489
|
-
--cmp-tree-item-text-selected: #0075FF;
|
|
5490
6133
|
--cmp-tree-item-arrow-icon: 16px;
|
|
5491
|
-
--cmp-tree-connector-line-color: #
|
|
6134
|
+
--cmp-tree-connector-line-color: #E1E1E1;
|
|
5492
6135
|
--cmp-pageHeader-paddingX: 16px;
|
|
5493
6136
|
--cmp-pageHeader-gap: 12px;
|
|
5494
6137
|
--cmp-pageHeader-title-paddingLeft: 4px;
|