@m4l/styles 0.0.22 → 0.0.24
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/index.js +17 -17
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.733652aa.js → defaultThemeOptions.d50c50f1.js} +5 -5
- package/theme/index.5e193e78.js +7 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +1 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +85 -25
- package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +2 -4
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +5965 -218
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +22 -2
- package/theme/overrides/M4LExtendedComponents/M4LAvatar.d.ts +9 -1
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +26 -1
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +287 -821
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +17 -12
- package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +1 -3
- package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +955 -4
- package/theme/overrides/M4LExtendedComponents/M4LModuleLayout.d.ts +0 -3
- package/theme/overrides/M4LExtendedComponents/M4LPager.d.ts +76 -0
- package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +14 -1
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +158 -53
- package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +2 -1
- package/theme/overrides/M4LExtendedComponents/{index.28d622ba.js → index.83dad55c.js} +626 -240
- package/theme/overrides/MUIComponents/Avatar.d.ts +2 -0
- package/theme/overrides/MUIComponents/Button.d.ts +7 -0
- package/theme/overrides/MUIComponents/DataGrid.d.ts +1 -1616
- package/theme/overrides/MUIComponents/Input.d.ts +1 -1
- package/theme/overrides/MUIComponents/Menu.d.ts +1 -0
- package/theme/overrides/MUIComponents/{index.d308ce65.js → index.1489876d.js} +33 -22
- package/theme/overrides/{index.76becad2.js → index.03494fe3.js} +3 -3
- package/theme/palette.d.ts +10 -6
- package/theme/{palette.a914c187.js → palette.d06284f6.js} +53 -33
- package/theme/{shadows.3dfe77c2.js → shadows.7ecb0e23.js} +1 -1
- package/theme/{typography.dd335f0f.js → typography.b693a0c9.js} +4 -4
- package/types/augmentations.d.ts +1 -1
- package/types/types.d.ts +1 -1
- package/utils/getColorPresets.826b8bc5.js +70 -0
- package/utils/getColorPresets.d.ts +1 -1
- package/utils/{getColorState.184e9d10.js → getColorState.c9741929.js} +39 -27
- package/utils/getColorState.d.ts +1 -0
- package/theme/index.fa6b03ae.js +0 -7
- package/utils/getColorPresets.9c103b85.js +0 -70
|
@@ -6,13 +6,15 @@ const i = (o) => ({
|
|
|
6
6
|
"&.M4LDynamicFilter-root": {
|
|
7
7
|
borderRadius: "4px",
|
|
8
8
|
background: o.palette.background.default,
|
|
9
|
-
boxShadow: o.customShadows.
|
|
9
|
+
boxShadow: o.customShadows.z1,
|
|
10
10
|
padding: "0px",
|
|
11
|
-
border: "
|
|
12
|
-
borderColor: o.palette.background.background,
|
|
11
|
+
border: "none",
|
|
13
12
|
overflow: "hidden",
|
|
13
|
+
height: "35px",
|
|
14
|
+
marginBottom: "8px",
|
|
14
15
|
[o.breakpoints.down("sm")]: {
|
|
15
|
-
gap: "0px"
|
|
16
|
+
gap: "0px",
|
|
17
|
+
height: "auto"
|
|
16
18
|
},
|
|
17
19
|
"& .M4LDynamicFilter-containerFistRow": {
|
|
18
20
|
height: "32px",
|
|
@@ -30,7 +32,8 @@ const i = (o) => ({
|
|
|
30
32
|
alignItems: "center",
|
|
31
33
|
maxWidth: "100%",
|
|
32
34
|
[o.breakpoints.down("sm")]: {
|
|
33
|
-
height: "
|
|
35
|
+
height: "100%",
|
|
36
|
+
padding: "8px"
|
|
34
37
|
}
|
|
35
38
|
}
|
|
36
39
|
},
|
|
@@ -41,8 +44,10 @@ const i = (o) => ({
|
|
|
41
44
|
display: "flex",
|
|
42
45
|
flexDirection: "row",
|
|
43
46
|
gap: "4px",
|
|
44
|
-
backgroundColor: o.palette.background.
|
|
47
|
+
backgroundColor: o.palette.background.background,
|
|
45
48
|
padding: "4px",
|
|
49
|
+
height: "100%",
|
|
50
|
+
alignItems: "center",
|
|
46
51
|
[o.breakpoints.down("sm")]: {
|
|
47
52
|
gap: "12px",
|
|
48
53
|
padding: "8px"
|
|
@@ -52,15 +57,15 @@ const i = (o) => ({
|
|
|
52
57
|
display: "flex",
|
|
53
58
|
flexDirection: "row",
|
|
54
59
|
gap: "8px",
|
|
55
|
-
padding: "4px",
|
|
56
|
-
backgroundColor: o.palette.background.
|
|
60
|
+
padding: "4px 6px 4px 4px",
|
|
61
|
+
backgroundColor: o.palette.background.background,
|
|
57
62
|
height: "100%",
|
|
58
63
|
maxWidth: "135px",
|
|
59
64
|
width: "100%",
|
|
60
65
|
alignItems: "center",
|
|
61
66
|
"& > input": {
|
|
62
67
|
border: "1px solid",
|
|
63
|
-
borderColor: o.palette.background.
|
|
68
|
+
borderColor: o.palette.background.default,
|
|
64
69
|
background: "none",
|
|
65
70
|
...o.typography.body,
|
|
66
71
|
color: o.palette.text.primary,
|
|
@@ -96,7 +101,6 @@ const i = (o) => ({
|
|
|
96
101
|
color: o.palette.text.secondary,
|
|
97
102
|
...o.typography.body,
|
|
98
103
|
border: "none",
|
|
99
|
-
borderTop: "1px solid",
|
|
100
104
|
borderColor: o.palette.state.default,
|
|
101
105
|
"& .css-5ca9fi": {
|
|
102
106
|
...o.typography.body
|
|
@@ -489,7 +493,8 @@ const i = (o) => ({
|
|
|
489
493
|
}), c = (o) => ({
|
|
490
494
|
M4LPopover: {
|
|
491
495
|
styleOverrides: {
|
|
492
|
-
|
|
496
|
+
"&.M4LPopover-root": {
|
|
497
|
+
zIndex: "unset",
|
|
493
498
|
".MuiPaper-root": {
|
|
494
499
|
background: o.palette.background.default,
|
|
495
500
|
borderRadius: "6px",
|
|
@@ -500,10 +505,12 @@ const i = (o) => ({
|
|
|
500
505
|
"& .M4LanguagePopover-containerItems": {
|
|
501
506
|
"& .M4LanguagePopover-labelItem": {
|
|
502
507
|
...o.typography.body,
|
|
503
|
-
color: o.palette.text.secondary
|
|
508
|
+
color: o.palette.text.secondary,
|
|
509
|
+
borderRadius: "4px"
|
|
504
510
|
},
|
|
505
511
|
"& .MuiButtonBase-root:hover": {
|
|
506
|
-
backgroundColor: o.palette.state?.active12
|
|
512
|
+
backgroundColor: o.palette.state?.active12,
|
|
513
|
+
borderRadius: "4px"
|
|
507
514
|
},
|
|
508
515
|
"& .MuiButtonBase-root.Mui-selected": {
|
|
509
516
|
backgroundColor: o.palette.state?.active12,
|
|
@@ -550,6 +557,16 @@ const i = (o) => ({
|
|
|
550
557
|
M4LButton: {
|
|
551
558
|
styleOverrides: {
|
|
552
559
|
"&.M4LButton-root": {
|
|
560
|
+
"&.M4LButton-colorError .MuiButtonBase-root": {
|
|
561
|
+
backgroundColor: `${o.palette.state.error.normal}!important`,
|
|
562
|
+
test: "bruce button"
|
|
563
|
+
},
|
|
564
|
+
"&.M4LButton-colorWarning .MuiButtonBase-root": {
|
|
565
|
+
backgroundColor: `${o.palette.state.warning.normal}!important`
|
|
566
|
+
},
|
|
567
|
+
"&.M4LButton-colorSuccess .MuiButtonBase-root": {
|
|
568
|
+
backgroundColor: `${o.palette.state.success.normal}!important`
|
|
569
|
+
},
|
|
553
570
|
width: "fit-content",
|
|
554
571
|
display: "flex",
|
|
555
572
|
justifyContent: "center",
|
|
@@ -649,7 +666,7 @@ const i = (o) => ({
|
|
|
649
666
|
"& .MuiButtonBase-root": {
|
|
650
667
|
backgroundColor: o.palette.state?.active,
|
|
651
668
|
color: o.palette.patronus?.marbleLight[10],
|
|
652
|
-
boxShadow: o.customShadows?.
|
|
669
|
+
boxShadow: o.customShadows?.z1,
|
|
653
670
|
position: "relative",
|
|
654
671
|
"& .M4LIcon-icon": {
|
|
655
672
|
backgroundColor: o.palette.patronus?.marbleLight[10]
|
|
@@ -741,6 +758,21 @@ const i = (o) => ({
|
|
|
741
758
|
}
|
|
742
759
|
}
|
|
743
760
|
}
|
|
761
|
+
},
|
|
762
|
+
"& .M4LButton-colorWarning": {
|
|
763
|
+
backgroundColor: o.palette.state?.warning,
|
|
764
|
+
color: o.palette.patronus?.marbleLight[10],
|
|
765
|
+
boxShadow: o.customShadows?.warning
|
|
766
|
+
},
|
|
767
|
+
"& .M4LButton-colorError": {
|
|
768
|
+
backgroundColor: o.palette.state?.error,
|
|
769
|
+
color: o.palette.patronus?.marbleLight[10],
|
|
770
|
+
boxShadow: o.customShadows?.error
|
|
771
|
+
},
|
|
772
|
+
"& .M4LButton-colorSuccess": {
|
|
773
|
+
backgroundColor: o.palette.state?.success,
|
|
774
|
+
color: o.palette.patronus?.marbleLight[10],
|
|
775
|
+
boxShadow: o.customShadows?.success
|
|
744
776
|
}
|
|
745
777
|
}
|
|
746
778
|
}
|
|
@@ -994,14 +1026,26 @@ const i = (o) => ({
|
|
|
994
1026
|
height: "100%",
|
|
995
1027
|
width: "auto",
|
|
996
1028
|
background: o.palette.background.neutral,
|
|
997
|
-
paddingLeft: "
|
|
1029
|
+
paddingLeft: "0",
|
|
998
1030
|
paddingBottom: "14px",
|
|
999
1031
|
boxShadow: o.customShadows.z3,
|
|
1000
1032
|
"&.M4LSideBar-collapsed": {
|
|
1001
|
-
"& .
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1033
|
+
"& .M4LSideBar-wrapperSideBar": {
|
|
1034
|
+
width: "50px",
|
|
1035
|
+
"& .M4LSideBar-contentDesktop": {
|
|
1036
|
+
"& .M4LSideBar-containerSideBarLogo": {
|
|
1037
|
+
marginTop: "0px",
|
|
1038
|
+
"& .M4LSideBar-containerLogo": {
|
|
1039
|
+
gap: "24px",
|
|
1040
|
+
paddingLeft: "24px",
|
|
1041
|
+
width: "100%",
|
|
1042
|
+
"& .M4LImage-root": {
|
|
1043
|
+
minWidth: "40px !important",
|
|
1044
|
+
minHeight: "40px !important"
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1005
1049
|
}
|
|
1006
1050
|
},
|
|
1007
1051
|
[o.breakpoints.down("sm")]: {
|
|
@@ -1011,18 +1055,21 @@ const i = (o) => ({
|
|
|
1011
1055
|
},
|
|
1012
1056
|
"& .M4LSideBar-wrapperSideBar": {
|
|
1013
1057
|
height: "100%",
|
|
1058
|
+
width: "250px",
|
|
1014
1059
|
"& .M4LSideBar-containerSideBarLogo": {
|
|
1015
1060
|
display: "flex",
|
|
1016
1061
|
justifyContent: "flex-start",
|
|
1062
|
+
marginTop: "12px",
|
|
1017
1063
|
"& .M4LSideBar-containerLogo": {
|
|
1018
1064
|
display: "flex",
|
|
1019
1065
|
justifyContent: "center",
|
|
1020
1066
|
alignItems: "center",
|
|
1021
1067
|
fitContent: "100%",
|
|
1022
1068
|
boxSizing: "contentBox",
|
|
1023
|
-
paddingTop: "
|
|
1024
|
-
paddingBottom: "
|
|
1025
|
-
gap: "
|
|
1069
|
+
paddingTop: "8px",
|
|
1070
|
+
paddingBottom: "8px",
|
|
1071
|
+
gap: "16px",
|
|
1072
|
+
paddingLeft: "24px",
|
|
1026
1073
|
"& .M4LTypography-root": {
|
|
1027
1074
|
display: "flex",
|
|
1028
1075
|
width: "100%",
|
|
@@ -1038,7 +1085,9 @@ const i = (o) => ({
|
|
|
1038
1085
|
background: o.palette.background.default,
|
|
1039
1086
|
boxShadow: o.customShadows.z3,
|
|
1040
1087
|
padding: "6px",
|
|
1041
|
-
borderRadius: "6px"
|
|
1088
|
+
borderRadius: "6px",
|
|
1089
|
+
minWidth: "50px !important",
|
|
1090
|
+
minHeight: "50px !important"
|
|
1042
1091
|
}
|
|
1043
1092
|
}
|
|
1044
1093
|
},
|
|
@@ -1051,12 +1100,13 @@ const i = (o) => ({
|
|
|
1051
1100
|
display: "flex",
|
|
1052
1101
|
height: "2px",
|
|
1053
1102
|
marginRight: "14px",
|
|
1054
|
-
|
|
1103
|
+
marginLeft: "14px",
|
|
1104
|
+
backgroundColor: "none"
|
|
1055
1105
|
},
|
|
1056
1106
|
"& .M4LSideBar-wrapperGroup": {
|
|
1057
1107
|
height: "100%",
|
|
1108
|
+
paddingLeft: "10px",
|
|
1058
1109
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1059
|
-
padding: "20px",
|
|
1060
1110
|
height: "60px",
|
|
1061
1111
|
"& .M4LTypography-root": {
|
|
1062
1112
|
display: "flex",
|
|
@@ -1075,14 +1125,17 @@ const i = (o) => ({
|
|
|
1075
1125
|
justifyContent: "center",
|
|
1076
1126
|
flexDirection: "column",
|
|
1077
1127
|
padding: "0px 0px 8px 0px",
|
|
1128
|
+
gap: "4px",
|
|
1078
1129
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1079
1130
|
backgroundColor: "transparent",
|
|
1131
|
+
borderRadius: "4px",
|
|
1080
1132
|
"&:hover": {
|
|
1081
1133
|
background: o.palette.state.default,
|
|
1082
1134
|
cursor: "pointer"
|
|
1083
1135
|
}
|
|
1084
1136
|
},
|
|
1085
1137
|
"&.M4LSideBar-itemMainActive": {
|
|
1138
|
+
borderRadius: "4px",
|
|
1086
1139
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1087
1140
|
background: o.palette.state.active12,
|
|
1088
1141
|
"&:hover": {
|
|
@@ -1095,13 +1148,22 @@ const i = (o) => ({
|
|
|
1095
1148
|
"& .M4LIcon-icon": {
|
|
1096
1149
|
backgroundColor: o.palette.state.focus
|
|
1097
1150
|
},
|
|
1098
|
-
"& .
|
|
1099
|
-
|
|
1151
|
+
"& .M4LTypography-root": {
|
|
1152
|
+
"& .MuiTypography-root": {
|
|
1153
|
+
color: o.palette.state.focus
|
|
1154
|
+
}
|
|
1100
1155
|
},
|
|
1101
1156
|
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1102
1157
|
backgroundColor: o.palette.state.focus
|
|
1103
1158
|
}
|
|
1104
1159
|
},
|
|
1160
|
+
"& .M4LSideBar-arrowIconRoot": {
|
|
1161
|
+
"& .M4LIcon-root": {
|
|
1162
|
+
"& .M4LIcon-icon": {
|
|
1163
|
+
backgroundColor: o.palette.state.focus
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1105
1167
|
"&::before": {
|
|
1106
1168
|
content: '""',
|
|
1107
1169
|
width: "5px",
|
|
@@ -1125,15 +1187,17 @@ const i = (o) => ({
|
|
|
1125
1187
|
gap: "8px",
|
|
1126
1188
|
width: "100%",
|
|
1127
1189
|
"& .M4LIcon-icon": {
|
|
1128
|
-
backgroundColor: o.palette.text.
|
|
1190
|
+
backgroundColor: o.palette.text.primary,
|
|
1191
|
+
width: "18px",
|
|
1192
|
+
height: "18px"
|
|
1129
1193
|
},
|
|
1130
1194
|
"& .M4LTypography-root": {
|
|
1131
1195
|
display: "flex",
|
|
1132
1196
|
flexGrow: "1",
|
|
1133
1197
|
overflow: "hidden",
|
|
1134
1198
|
"& .MuiTypography-root": {
|
|
1135
|
-
...o.typography.
|
|
1136
|
-
color: o.palette.text.
|
|
1199
|
+
...o.typography.paragraph,
|
|
1200
|
+
color: o.palette.text.primary,
|
|
1137
1201
|
textWrap: "nowrap",
|
|
1138
1202
|
textOverflow: "ellipsis",
|
|
1139
1203
|
display: "block",
|
|
@@ -1141,11 +1205,27 @@ const i = (o) => ({
|
|
|
1141
1205
|
}
|
|
1142
1206
|
},
|
|
1143
1207
|
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1144
|
-
backgroundColor: o.palette.text.
|
|
1208
|
+
backgroundColor: o.palette.text.primary
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
"& .M4LSideBar-arrowIconRoot": {
|
|
1212
|
+
"& .M4LIcon-root": {
|
|
1213
|
+
"& .M4LIcon-icon": {
|
|
1214
|
+
background: o.palette.text.primary
|
|
1215
|
+
}
|
|
1145
1216
|
}
|
|
1146
1217
|
}
|
|
1147
1218
|
},
|
|
1219
|
+
"& .M4LSideBar-containerListSubItem": {
|
|
1220
|
+
paddingLeft: "0px",
|
|
1221
|
+
"&:hover": {
|
|
1222
|
+
background: o.palette.state.overdefoult,
|
|
1223
|
+
borderRadius: "4px"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1148
1226
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1227
|
+
gap: "12px",
|
|
1228
|
+
padding: "0px",
|
|
1149
1229
|
"& .M4LSideBar-navSubItemContentRoot ": {
|
|
1150
1230
|
width: "100%",
|
|
1151
1231
|
height: "36px",
|
|
@@ -1169,7 +1249,7 @@ const i = (o) => ({
|
|
|
1169
1249
|
},
|
|
1170
1250
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
1171
1251
|
gap: "12px",
|
|
1172
|
-
margin: "0px 0px
|
|
1252
|
+
margin: "0px 0px 0px 0px",
|
|
1173
1253
|
padding: "16px",
|
|
1174
1254
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1175
1255
|
minWidth: "5px",
|
|
@@ -1182,7 +1262,7 @@ const i = (o) => ({
|
|
|
1182
1262
|
width: "100%",
|
|
1183
1263
|
"& .MuiTypography-root": {
|
|
1184
1264
|
...o.typography.paragraph,
|
|
1185
|
-
color: o.palette.text.
|
|
1265
|
+
color: o.palette.text.primary,
|
|
1186
1266
|
with: "100%",
|
|
1187
1267
|
overflow: "hidden",
|
|
1188
1268
|
textOverflow: "ellipsis",
|
|
@@ -1197,24 +1277,27 @@ const i = (o) => ({
|
|
|
1197
1277
|
}
|
|
1198
1278
|
},
|
|
1199
1279
|
"& .M4LIcon-root .M4LIcon-icon": {
|
|
1200
|
-
backgroundColor: o.palette.text.
|
|
1280
|
+
backgroundColor: o.palette.text.primary
|
|
1201
1281
|
}
|
|
1202
1282
|
},
|
|
1203
1283
|
"& .M4LSideBar-collapseButton": {
|
|
1204
1284
|
display: "flex",
|
|
1205
1285
|
paddingTop: "14px",
|
|
1206
1286
|
borderTop: "2px solid",
|
|
1207
|
-
borderColor: o.palette.state.
|
|
1287
|
+
borderColor: o.palette.state.overdefoult,
|
|
1208
1288
|
justifyContent: "center",
|
|
1209
1289
|
marginRight: "14px",
|
|
1210
|
-
|
|
1290
|
+
marginLeft: "14px",
|
|
1291
|
+
gap: "20px",
|
|
1292
|
+
alignItems: "center",
|
|
1211
1293
|
"& .M4LSideBar-containerLogoButton": {
|
|
1212
1294
|
display: "flex",
|
|
1213
1295
|
gap: "14px",
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1296
|
+
width: "120px"
|
|
1297
|
+
},
|
|
1298
|
+
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
1299
|
+
width: "120px",
|
|
1300
|
+
height: "40px",
|
|
1218
1301
|
"& .M4LSideBar-containerLogoButtonIcon": {
|
|
1219
1302
|
display: "flex",
|
|
1220
1303
|
alignItems: "center"
|
|
@@ -1229,7 +1312,8 @@ const i = (o) => ({
|
|
|
1229
1312
|
paddingLeft: "14px"
|
|
1230
1313
|
},
|
|
1231
1314
|
"& .M4LSideBar-contentDesktop": {
|
|
1232
|
-
display: "flex"
|
|
1315
|
+
display: "flex",
|
|
1316
|
+
gap: "20px"
|
|
1233
1317
|
}
|
|
1234
1318
|
}
|
|
1235
1319
|
}
|
|
@@ -1238,10 +1322,13 @@ const i = (o) => ({
|
|
|
1238
1322
|
styleOverrides: {
|
|
1239
1323
|
"&.M4LSideBar-popover": {
|
|
1240
1324
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1325
|
+
width: "120px",
|
|
1326
|
+
height: "fit-content",
|
|
1241
1327
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
1242
|
-
gap: "
|
|
1243
|
-
|
|
1244
|
-
|
|
1328
|
+
gap: "8px",
|
|
1329
|
+
padding: "8px",
|
|
1330
|
+
height: "fit-content",
|
|
1331
|
+
borderRadius: "4px",
|
|
1245
1332
|
"&.M4LSideBar-subItemCollapseActive": {
|
|
1246
1333
|
backgroundColor: o.palette.state.active12
|
|
1247
1334
|
},
|
|
@@ -1258,6 +1345,7 @@ const i = (o) => ({
|
|
|
1258
1345
|
}
|
|
1259
1346
|
},
|
|
1260
1347
|
"&.M4LSideBar-subItemActive": {
|
|
1348
|
+
height: "fit-content",
|
|
1261
1349
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1262
1350
|
height: "14px",
|
|
1263
1351
|
borderRadius: "10px",
|
|
@@ -1288,6 +1376,7 @@ const i = (o) => ({
|
|
|
1288
1376
|
flexDirection: "column",
|
|
1289
1377
|
"& .M4LSideBar-containerSideBarLogo": {
|
|
1290
1378
|
marginRight: "14px",
|
|
1379
|
+
marginTop: "0px",
|
|
1291
1380
|
"& .M4LSideBar-containerLogo": {
|
|
1292
1381
|
height: "128px",
|
|
1293
1382
|
display: "flex",
|
|
@@ -1327,11 +1416,13 @@ const i = (o) => ({
|
|
|
1327
1416
|
"& .M4LSideBar-contentGroupsLine": {
|
|
1328
1417
|
display: "flex",
|
|
1329
1418
|
height: "2px",
|
|
1330
|
-
marginRight: "
|
|
1331
|
-
|
|
1419
|
+
marginRight: "8px",
|
|
1420
|
+
marginLeft: "8px",
|
|
1421
|
+
backgroundColor: o.palette.background.background
|
|
1332
1422
|
},
|
|
1333
1423
|
"& .M4LSideBar-wrapperGroup": {
|
|
1334
1424
|
height: "100%",
|
|
1425
|
+
paddingLeft: "16px",
|
|
1335
1426
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1336
1427
|
padding: "20px",
|
|
1337
1428
|
height: "60px",
|
|
@@ -1352,21 +1443,32 @@ const i = (o) => ({
|
|
|
1352
1443
|
justifyContent: "center",
|
|
1353
1444
|
flexDirection: "column",
|
|
1354
1445
|
padding: "0px 0px 8px 0px",
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
"
|
|
1358
|
-
|
|
1446
|
+
gap: "4px",
|
|
1447
|
+
"&.M4LSideBar-navItemMainRoot": {
|
|
1448
|
+
borderRadius: "4px 0px 0px 4px",
|
|
1449
|
+
"& .M4LSideBar-navItemMainRoot": {
|
|
1450
|
+
backgroundColor: "transparent",
|
|
1451
|
+
"&:hover": {
|
|
1452
|
+
background: o.palette.state.default
|
|
1453
|
+
}
|
|
1359
1454
|
}
|
|
1360
1455
|
},
|
|
1361
1456
|
"&.M4LSideBar-itemMainActive": {
|
|
1457
|
+
color: o.palette.state.active12,
|
|
1458
|
+
gap: "4px",
|
|
1362
1459
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1363
1460
|
background: o.palette.state.active12,
|
|
1461
|
+
padding: "40px",
|
|
1364
1462
|
"&:hover": {
|
|
1365
1463
|
background: t(o.palette.state.active || "#fff", 0.18)
|
|
1366
1464
|
}
|
|
1367
1465
|
},
|
|
1368
1466
|
"& .M4LSideBar-navItemRootContent": {
|
|
1369
1467
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1468
|
+
display: "flex",
|
|
1469
|
+
gap: "8px",
|
|
1470
|
+
width: "100%",
|
|
1471
|
+
alignItems: "center",
|
|
1370
1472
|
"& .M4LIcon-icon": {
|
|
1371
1473
|
backgroundColor: o.palette.state.focus
|
|
1372
1474
|
},
|
|
@@ -1444,9 +1546,10 @@ const i = (o) => ({
|
|
|
1444
1546
|
"& .M4LTypography-root": {
|
|
1445
1547
|
display: "flex",
|
|
1446
1548
|
width: "100%",
|
|
1549
|
+
flexGrow: "1",
|
|
1447
1550
|
"& .MuiTypography-root": {
|
|
1448
1551
|
...o.typography.paragraph,
|
|
1449
|
-
color: o.palette.text.
|
|
1552
|
+
color: o.palette.text.primary,
|
|
1450
1553
|
with: "100%",
|
|
1451
1554
|
overflow: "hidden",
|
|
1452
1555
|
textOverflow: "ellipsis",
|
|
@@ -1463,27 +1566,6 @@ const i = (o) => ({
|
|
|
1463
1566
|
"& .M4LIcon-root .M4LIcon-icon": {
|
|
1464
1567
|
backgroundColor: o.palette.text.disabled
|
|
1465
1568
|
}
|
|
1466
|
-
},
|
|
1467
|
-
"& .M4LSideBar-collapseButton": {
|
|
1468
|
-
display: "flex",
|
|
1469
|
-
paddingTop: "14px",
|
|
1470
|
-
borderTop: "2px solid",
|
|
1471
|
-
borderColor: o.palette.state.default,
|
|
1472
|
-
justifyContent: "center",
|
|
1473
|
-
marginRight: "14px",
|
|
1474
|
-
gap: "15px",
|
|
1475
|
-
"& .M4LSideBar-containerLogoButton": {
|
|
1476
|
-
display: "flex",
|
|
1477
|
-
gap: "14px",
|
|
1478
|
-
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
1479
|
-
width: "120px",
|
|
1480
|
-
height: "40px"
|
|
1481
|
-
},
|
|
1482
|
-
"& .M4LSideBar-containerLogoButtonIcon": {
|
|
1483
|
-
display: "flex",
|
|
1484
|
-
alignItems: "center"
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
1569
|
}
|
|
1488
1570
|
}
|
|
1489
1571
|
}
|
|
@@ -1502,18 +1584,28 @@ const i = (o) => ({
|
|
|
1502
1584
|
paddingRight: "6px",
|
|
1503
1585
|
alignItems: "center",
|
|
1504
1586
|
background: o.palette.background.default,
|
|
1505
|
-
boxShadow: o.customShadows.z2,
|
|
1506
1587
|
justifyContent: "space-between",
|
|
1507
1588
|
width: "fit-content",
|
|
1508
1589
|
maxWidth: "fit-content",
|
|
1509
1590
|
gap: "8px",
|
|
1510
|
-
|
|
1511
|
-
borderColor:
|
|
1591
|
+
border: "1px solid",
|
|
1592
|
+
borderColor: "transparent",
|
|
1593
|
+
boxShadow: o.customShadows.z2,
|
|
1594
|
+
[o.breakpoints.down("sm")]: {
|
|
1595
|
+
boxShadow: o.customShadows.z2
|
|
1596
|
+
},
|
|
1597
|
+
"&.M4LAreasAdmin-isFocus": {
|
|
1598
|
+
border: "1px solid",
|
|
1599
|
+
borderColor: o.palette.primary.main
|
|
1600
|
+
},
|
|
1512
1601
|
[o.breakpoints.down("sm")]: {
|
|
1513
1602
|
height: "auto",
|
|
1514
|
-
background:
|
|
1603
|
+
background: o.palette.background.default,
|
|
1604
|
+
boxShadow: o.customShadows.z2,
|
|
1515
1605
|
width: "100%",
|
|
1516
|
-
maxWidth: "100%"
|
|
1606
|
+
maxWidth: "100%",
|
|
1607
|
+
paddingRight: "0px",
|
|
1608
|
+
borderRadius: "4px"
|
|
1517
1609
|
},
|
|
1518
1610
|
"*::-webkit-scrollbar": {
|
|
1519
1611
|
width: "8px",
|
|
@@ -1537,6 +1629,11 @@ const i = (o) => ({
|
|
|
1537
1629
|
height: "36px",
|
|
1538
1630
|
borderRight: "1px solid",
|
|
1539
1631
|
borderColor: o.palette.state.overdefoult,
|
|
1632
|
+
[o.breakpoints.down("sm")]: {
|
|
1633
|
+
background: "none",
|
|
1634
|
+
borderRight: "none",
|
|
1635
|
+
paddingLeft: "0px"
|
|
1636
|
+
},
|
|
1540
1637
|
"& .M4LAreasAdmin-areaIconLayer": {
|
|
1541
1638
|
background: o.palette.background.neutral,
|
|
1542
1639
|
boxShadow: o.customShadows.z2,
|
|
@@ -1557,10 +1654,14 @@ const i = (o) => ({
|
|
|
1557
1654
|
display: "flex",
|
|
1558
1655
|
overflow: "auto",
|
|
1559
1656
|
gap: "8px",
|
|
1560
|
-
|
|
1657
|
+
paddingLeft: "0px",
|
|
1658
|
+
paddingRight: "0PX",
|
|
1561
1659
|
width: "fit-content",
|
|
1562
1660
|
height: "auto",
|
|
1563
1661
|
alignItems: "center",
|
|
1662
|
+
[o.breakpoints.down("sm")]: {
|
|
1663
|
+
background: "none"
|
|
1664
|
+
},
|
|
1564
1665
|
"& .M4LAreasAdmin-areaContainerContentChips": {
|
|
1565
1666
|
display: "flex",
|
|
1566
1667
|
flexDirection: "row",
|
|
@@ -1568,7 +1669,8 @@ const i = (o) => ({
|
|
|
1568
1669
|
justifyContent: "space-between",
|
|
1569
1670
|
[o.breakpoints.down("sm")]: {
|
|
1570
1671
|
justifyContent: "space-between",
|
|
1571
|
-
width: "100%"
|
|
1672
|
+
width: "100%",
|
|
1673
|
+
background: "none"
|
|
1572
1674
|
},
|
|
1573
1675
|
"& .css-jjtu05": {
|
|
1574
1676
|
"& .css-16ugaun": {},
|
|
@@ -1602,38 +1704,59 @@ const i = (o) => ({
|
|
|
1602
1704
|
margin: "0px",
|
|
1603
1705
|
borderRadius: "4px",
|
|
1604
1706
|
overflow: "hidden",
|
|
1605
|
-
width: "fit-content"
|
|
1707
|
+
width: "fit-content",
|
|
1708
|
+
[o.breakpoints.down("sm")]: {
|
|
1709
|
+
background: "none",
|
|
1710
|
+
border: "none",
|
|
1711
|
+
boxShadow: "none"
|
|
1712
|
+
}
|
|
1606
1713
|
}
|
|
1607
1714
|
},
|
|
1608
1715
|
"& .M4LAreasAdmin-areaChipMobileRoot": {
|
|
1609
1716
|
display: "flex",
|
|
1610
1717
|
overflow: "hidden",
|
|
1611
1718
|
width: "100%",
|
|
1612
|
-
backgroundColor: o.palette.state.
|
|
1719
|
+
backgroundColor: o.palette.state.default,
|
|
1720
|
+
boxShadow: o.customShadows.z2,
|
|
1721
|
+
borderTop: "1.5px solid",
|
|
1722
|
+
borderColor: o.palette.state.borderTop,
|
|
1613
1723
|
borderRadius: "4px",
|
|
1724
|
+
[o.breakpoints.down("sm")]: {
|
|
1725
|
+
backgroundColor: o.palette.background.default,
|
|
1726
|
+
boxShadow: o.customShadows.z1
|
|
1727
|
+
},
|
|
1728
|
+
"&:hover": {
|
|
1729
|
+
background: o.palette.state.active12
|
|
1730
|
+
},
|
|
1614
1731
|
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1615
1732
|
margin: "0px",
|
|
1616
1733
|
borderRadius: "4px 0px 0px 4px",
|
|
1617
1734
|
overflow: "hidden",
|
|
1618
|
-
width: "100%"
|
|
1735
|
+
width: "100%",
|
|
1736
|
+
position: "relative",
|
|
1737
|
+
[o.breakpoints.down("sm")]: {
|
|
1738
|
+
background: "none",
|
|
1739
|
+
border: "none",
|
|
1740
|
+
boxShadow: "none"
|
|
1741
|
+
}
|
|
1742
|
+
},
|
|
1743
|
+
"& .M4LAreasAdmin-selected .": {
|
|
1744
|
+
[o.breakpoints.down("sm")]: {
|
|
1745
|
+
background: "none"
|
|
1746
|
+
}
|
|
1619
1747
|
}
|
|
1620
1748
|
},
|
|
1621
1749
|
"& .M4LAreasAdmin-areaChipMobileIconContainer": {
|
|
1622
1750
|
display: "flex",
|
|
1623
1751
|
width: "fit-content",
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
background: o.palette.state.active,
|
|
1752
|
+
borderRadius: "0px 0px 0px 0px",
|
|
1753
|
+
boxShadow: o.customShadows.z2,
|
|
1627
1754
|
...o.typography.body,
|
|
1628
1755
|
color: o.palette.text.primary,
|
|
1629
1756
|
"& .M4LIconButton-root": {
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
borderRadius: "0px",
|
|
1634
|
-
"& .M4LIcon-icon": {
|
|
1635
|
-
backgroundColor: `${o.palette.patronus?.marbleLight[10]}!important`
|
|
1636
|
-
}
|
|
1757
|
+
background: "transparent",
|
|
1758
|
+
backgroundColor: "transparent",
|
|
1759
|
+
"& .M4LIcon-icon": {}
|
|
1637
1760
|
}
|
|
1638
1761
|
},
|
|
1639
1762
|
"& .MuiBox-root": {
|
|
@@ -1658,6 +1781,12 @@ const i = (o) => ({
|
|
|
1658
1781
|
border: "1px solid",
|
|
1659
1782
|
borderColor: o.palette.state.default,
|
|
1660
1783
|
background: o.palette.state.default,
|
|
1784
|
+
[o.breakpoints.down("sm")]: {
|
|
1785
|
+
background: "none",
|
|
1786
|
+
border: "none",
|
|
1787
|
+
borderColor: "none",
|
|
1788
|
+
boxShadow: "none"
|
|
1789
|
+
},
|
|
1661
1790
|
"& .M4LAreasAdmin-areaContainerChipEditButton": {
|
|
1662
1791
|
display: "flex",
|
|
1663
1792
|
width: "fit-content"
|
|
@@ -1671,7 +1800,8 @@ const i = (o) => ({
|
|
|
1671
1800
|
color: o.palette.text.primary,
|
|
1672
1801
|
height: "22px",
|
|
1673
1802
|
[o.breakpoints.down("sm")]: {
|
|
1674
|
-
height: "auto"
|
|
1803
|
+
height: "auto",
|
|
1804
|
+
background: "none"
|
|
1675
1805
|
},
|
|
1676
1806
|
"& .M4LAreasAdmin-areaChipTitle": {
|
|
1677
1807
|
backgroundColor: "transparent",
|
|
@@ -1688,12 +1818,19 @@ const i = (o) => ({
|
|
|
1688
1818
|
textOverflow: "ellipsis",
|
|
1689
1819
|
overflow: "hidden",
|
|
1690
1820
|
whiteSpace: "nowrap",
|
|
1691
|
-
flex: "1"
|
|
1821
|
+
flex: "1",
|
|
1822
|
+
color: o.palette.text.primary
|
|
1692
1823
|
}
|
|
1693
1824
|
},
|
|
1694
1825
|
"& .M4LIconButton-root": {
|
|
1826
|
+
[o.breakpoints.down("sm")]: {
|
|
1827
|
+
color: o.palette.text.primary
|
|
1828
|
+
},
|
|
1695
1829
|
"& .M4LIcon-icon": {
|
|
1696
|
-
backgroundColor: `${o.palette.patronus?.marbleLight[10]}
|
|
1830
|
+
backgroundColor: `${o.palette.patronus?.marbleLight[10]}`,
|
|
1831
|
+
[o.breakpoints.down("sm")]: {
|
|
1832
|
+
color: o.palette.text.primary
|
|
1833
|
+
}
|
|
1697
1834
|
}
|
|
1698
1835
|
}
|
|
1699
1836
|
},
|
|
@@ -1712,8 +1849,14 @@ const i = (o) => ({
|
|
|
1712
1849
|
justifyContent: "center",
|
|
1713
1850
|
width: "20px",
|
|
1714
1851
|
height: "20px",
|
|
1852
|
+
[o.breakpoints.down("sm")]: {
|
|
1853
|
+
color: o.palette.text.primary
|
|
1854
|
+
},
|
|
1715
1855
|
"&.M4LIconButton-variantPrimary": {
|
|
1716
|
-
background: o.palette.state.active
|
|
1856
|
+
background: o.palette.state.active,
|
|
1857
|
+
[o.breakpoints.down("sm")]: {
|
|
1858
|
+
color: o.palette.text.primary
|
|
1859
|
+
}
|
|
1717
1860
|
}
|
|
1718
1861
|
}
|
|
1719
1862
|
}
|
|
@@ -1723,12 +1866,15 @@ const i = (o) => ({
|
|
|
1723
1866
|
"& .M4LAreasAdmin-areasAddButton": {
|
|
1724
1867
|
backgroundColor: `${o.palette.state.active}!important`,
|
|
1725
1868
|
"& .M4LIcon-icon": {
|
|
1726
|
-
backgroundColor: `${o.palette.patronus?.marbleLight[10]}
|
|
1869
|
+
backgroundColor: `${o.palette.patronus?.marbleLight[10]}`,
|
|
1870
|
+
[o.breakpoints.down("sm")]: {
|
|
1871
|
+
color: o.palette.text.primary
|
|
1872
|
+
}
|
|
1727
1873
|
}
|
|
1728
1874
|
},
|
|
1729
1875
|
"&.M4LAreasAdmin-isMobile": {
|
|
1730
1876
|
overflow: "hidden",
|
|
1731
|
-
boxShadow:
|
|
1877
|
+
boxShadow: o.customShadows.z1,
|
|
1732
1878
|
width: "100%",
|
|
1733
1879
|
"& .M4LAreasAdmin-areaContainerChips": {
|
|
1734
1880
|
width: "100%",
|
|
@@ -1744,7 +1890,7 @@ const i = (o) => ({
|
|
|
1744
1890
|
styleOverrides: {
|
|
1745
1891
|
"&.M4LAreasAdmin-areaEditPopover": {
|
|
1746
1892
|
"& .MuiPaper-root": {
|
|
1747
|
-
width: "
|
|
1893
|
+
width: "200px"
|
|
1748
1894
|
}
|
|
1749
1895
|
}
|
|
1750
1896
|
}
|
|
@@ -1755,8 +1901,10 @@ const i = (o) => ({
|
|
|
1755
1901
|
"& .MuiPaper-root": {
|
|
1756
1902
|
"& .M4LButton-root": {
|
|
1757
1903
|
marginTop: "8px",
|
|
1904
|
+
borderRadius: "4px",
|
|
1758
1905
|
"& .MuiButtonBase-root": {
|
|
1759
|
-
textWrap: "nowrap"
|
|
1906
|
+
textWrap: "nowrap",
|
|
1907
|
+
borderRadius: "4px"
|
|
1760
1908
|
}
|
|
1761
1909
|
}
|
|
1762
1910
|
}
|
|
@@ -1770,7 +1918,7 @@ const i = (o) => ({
|
|
|
1770
1918
|
}
|
|
1771
1919
|
}
|
|
1772
1920
|
}
|
|
1773
|
-
}),
|
|
1921
|
+
}), w = (o) => ({
|
|
1774
1922
|
M4LAreasViewer: {
|
|
1775
1923
|
styleOverrides: {
|
|
1776
1924
|
"&.M4LAreasViewer-root": {
|
|
@@ -1778,7 +1926,7 @@ const i = (o) => ({
|
|
|
1778
1926
|
background: o.palette.background.background,
|
|
1779
1927
|
"& .M4LAreasViewer-areaGridLayout": {
|
|
1780
1928
|
"& .M4LAreasViewer-windowRoot": {
|
|
1781
|
-
background: o.palette.
|
|
1929
|
+
background: o.palette.state.default,
|
|
1782
1930
|
border: "none",
|
|
1783
1931
|
boxShadow: o.customShadows.z2,
|
|
1784
1932
|
borderRadius: "4px",
|
|
@@ -1952,7 +2100,7 @@ const i = (o) => ({
|
|
|
1952
2100
|
}
|
|
1953
2101
|
},
|
|
1954
2102
|
"& .M4LAreasViewer-windowContent": {
|
|
1955
|
-
margin: "8px",
|
|
2103
|
+
margin: "8px 6px 6px 6px",
|
|
1956
2104
|
background: "none",
|
|
1957
2105
|
borderRadius: "4px",
|
|
1958
2106
|
display: "flex",
|
|
@@ -1964,6 +2112,7 @@ const i = (o) => ({
|
|
|
1964
2112
|
border: "1px solid",
|
|
1965
2113
|
borderColor: o.palette.state.active,
|
|
1966
2114
|
boxShadow: o.customShadows.primary,
|
|
2115
|
+
backdropFilter: "blur(100px)",
|
|
1967
2116
|
"& .M4LAreasViewer-windowHeader": {
|
|
1968
2117
|
display: "flex",
|
|
1969
2118
|
flexDirection: "column",
|
|
@@ -1993,8 +2142,6 @@ const i = (o) => ({
|
|
|
1993
2142
|
}
|
|
1994
2143
|
},
|
|
1995
2144
|
"& .MuiButtonBase-root:hover": {
|
|
1996
|
-
background: o.palette.state.default,
|
|
1997
|
-
color: o.palette.state.hover,
|
|
1998
2145
|
"& .M4LIcon-icon": {
|
|
1999
2146
|
backgroundColor: o.palette.state.hover
|
|
2000
2147
|
}
|
|
@@ -2002,13 +2149,30 @@ const i = (o) => ({
|
|
|
2002
2149
|
}
|
|
2003
2150
|
}
|
|
2004
2151
|
},
|
|
2152
|
+
"&.M4LGridLayout-root .M4LGridLayout-maximizeMe ": {
|
|
2153
|
+
"& .M4LAreasViewer-selectedWindow": {
|
|
2154
|
+
border: "1px solid",
|
|
2155
|
+
borderColor: o.palette.state.active12,
|
|
2156
|
+
boxShadow: o.customShadows.z2
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"&. M4LGridLayout-colapsed ": {
|
|
2160
|
+
"& .M4LAreasViewer-windowRoot": {
|
|
2161
|
+
border: "1px solid",
|
|
2162
|
+
borderColor: o.palette.state.overdefoult,
|
|
2163
|
+
boxShadow: o.customShadows.z1
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
"&. react-draggable": {
|
|
2167
|
+
background: o.palette.state.active12
|
|
2168
|
+
},
|
|
2005
2169
|
"& .M4LAreasViewer-windowPopupRoot": {
|
|
2006
2170
|
boxShadow: o.customShadows.z3,
|
|
2007
2171
|
padding: "4px",
|
|
2008
2172
|
background: o.palette.state.default,
|
|
2009
2173
|
borderRadius: "4px",
|
|
2010
2174
|
border: "1px solid",
|
|
2011
|
-
borderColor: o.palette.
|
|
2175
|
+
borderColor: o.palette.text.disabled,
|
|
2012
2176
|
backdropFilter: "blur(8px)",
|
|
2013
2177
|
"& .M4LIcon-root.custom-handle": {
|
|
2014
2178
|
"& .M4LIcon-icon": {
|
|
@@ -2032,6 +2196,10 @@ const i = (o) => ({
|
|
|
2032
2196
|
background: o.palette.state.default,
|
|
2033
2197
|
"& .M4LIcon-root": {
|
|
2034
2198
|
"& .M4LIcon-icon": {
|
|
2199
|
+
width: "18px",
|
|
2200
|
+
height: "18px",
|
|
2201
|
+
minWidth: "18px",
|
|
2202
|
+
minHeight: "18px",
|
|
2035
2203
|
backgroundColor: o.palette.text.secondary
|
|
2036
2204
|
}
|
|
2037
2205
|
},
|
|
@@ -2317,7 +2485,7 @@ const i = (o) => ({
|
|
|
2317
2485
|
}
|
|
2318
2486
|
}
|
|
2319
2487
|
}
|
|
2320
|
-
}),
|
|
2488
|
+
}), f = (o) => ({
|
|
2321
2489
|
M4LAppBar: {
|
|
2322
2490
|
styleOverrides: {
|
|
2323
2491
|
"&.M4LAppBar-root": {
|
|
@@ -2328,10 +2496,8 @@ const i = (o) => ({
|
|
|
2328
2496
|
alignItems: "center",
|
|
2329
2497
|
borderRadius: "6px",
|
|
2330
2498
|
padding: "4px 8px 4px 8px",
|
|
2331
|
-
borderTop: "1.5px solid",
|
|
2332
2499
|
borderColor: o.palette.state.borderTop,
|
|
2333
2500
|
background: o.palette.background.neutral,
|
|
2334
|
-
boxShadow: o.customShadows.z2,
|
|
2335
2501
|
justifyContent: "space-between",
|
|
2336
2502
|
marginLeft: "4px",
|
|
2337
2503
|
[o.breakpoints.down("sm")]: {
|
|
@@ -2385,8 +2551,7 @@ const i = (o) => ({
|
|
|
2385
2551
|
background: "none",
|
|
2386
2552
|
boxShadow: "none",
|
|
2387
2553
|
paddingRight: "0px",
|
|
2388
|
-
borderRadius: "6px"
|
|
2389
|
-
overflow: "hidden"
|
|
2554
|
+
borderRadius: "6px"
|
|
2390
2555
|
},
|
|
2391
2556
|
"& .M4LAppBar-containerChilds": {
|
|
2392
2557
|
display: "flex",
|
|
@@ -2431,13 +2596,21 @@ const i = (o) => ({
|
|
|
2431
2596
|
width: "36px",
|
|
2432
2597
|
height: "36px",
|
|
2433
2598
|
borderRadius: "4px",
|
|
2434
|
-
|
|
2599
|
+
padding: "4px",
|
|
2600
|
+
background: o.palette.background.default,
|
|
2601
|
+
color: o.palette.state.active,
|
|
2602
|
+
boxShadow: o.customShadows.z2,
|
|
2603
|
+
borderTop: "1.5px solid",
|
|
2604
|
+
borderColor: o.palette.state.borderTop,
|
|
2605
|
+
[o.breakpoints.down("sm")]: {
|
|
2606
|
+
boxShadow: o.customShadows.z1
|
|
2607
|
+
}
|
|
2435
2608
|
},
|
|
2436
2609
|
test: "root"
|
|
2437
2610
|
}
|
|
2438
2611
|
}
|
|
2439
2612
|
}
|
|
2440
|
-
}),
|
|
2613
|
+
}), k = (o) => ({
|
|
2441
2614
|
M4LAccountPopover: {
|
|
2442
2615
|
styleOverrides: {
|
|
2443
2616
|
"&.M4LAccountPopover-root": {
|
|
@@ -2448,55 +2621,119 @@ const i = (o) => ({
|
|
|
2448
2621
|
M4LAccountPopoverPopover: {
|
|
2449
2622
|
styleOverrides: {
|
|
2450
2623
|
"&.M4LAccountPopover-popover": {
|
|
2451
|
-
test: "root",
|
|
2452
2624
|
display: "flex",
|
|
2453
2625
|
flexDirection: "column",
|
|
2454
|
-
gap: "
|
|
2626
|
+
gap: "0px",
|
|
2455
2627
|
borderRadius: "6px",
|
|
2456
2628
|
"& .MuiPaper-root": {
|
|
2457
2629
|
display: "flex",
|
|
2458
2630
|
flexDirection: "column",
|
|
2459
|
-
gap: "
|
|
2460
|
-
padding: "
|
|
2631
|
+
gap: "0px",
|
|
2632
|
+
padding: "12px",
|
|
2461
2633
|
borderRadius: "6px",
|
|
2462
2634
|
boxShadow: o.customShadows.z3,
|
|
2463
|
-
background: o.palette.background.
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2635
|
+
background: o.palette.background.default,
|
|
2636
|
+
"& .M4LAccountPopover-containerUserInfo": {
|
|
2637
|
+
display: "flex",
|
|
2638
|
+
flexDirection: "column",
|
|
2639
|
+
"& .M4LAccountPopover-containerUserName": {
|
|
2640
|
+
display: "flex",
|
|
2641
|
+
flexDirection: "row",
|
|
2642
|
+
gap: "4px",
|
|
2643
|
+
padding: "0px 10px",
|
|
2644
|
+
"& .M4LAccountPopover-labelUserName": {
|
|
2645
|
+
color: o.palette.text.primary,
|
|
2646
|
+
...o.typography.paragraphDens,
|
|
2647
|
+
padding: "4px"
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
"& .M4LAccountPopover-containerUserEmail": {
|
|
2651
|
+
display: "flex",
|
|
2652
|
+
flexDirection: "row",
|
|
2653
|
+
gap: "4px",
|
|
2654
|
+
padding: "0px 10px",
|
|
2655
|
+
"& .M4LAccountPopover-labelUserEmail": {
|
|
2656
|
+
color: o.palette.text.primary,
|
|
2657
|
+
...o.typography.paragraph,
|
|
2658
|
+
padding: "4px"
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2661
|
+
},
|
|
2662
|
+
"& .M4LAccountPopover-containerAppVersion": {
|
|
2663
|
+
display: "flex",
|
|
2664
|
+
flexDirection: "row",
|
|
2665
|
+
gap: "4px",
|
|
2666
|
+
padding: "0px 10px",
|
|
2667
|
+
"& .M4LAccountPopover-labelVersion": {
|
|
2668
|
+
color: o.palette.text.secondary,
|
|
2669
|
+
...o.typography.paragraph,
|
|
2670
|
+
padding: "4px"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
"& .M4LAccountPopover-containerMenuItems": {
|
|
2674
|
+
borderTop: "2px solid",
|
|
2675
|
+
borderBottom: "2px solid",
|
|
2676
|
+
borderColor: o.palette.state.overdefoult,
|
|
2473
2677
|
padding: "4px",
|
|
2474
|
-
|
|
2678
|
+
margin: "12px 0 12px 0",
|
|
2679
|
+
display: "flex",
|
|
2680
|
+
flexDirection: "row",
|
|
2681
|
+
gap: "4px",
|
|
2682
|
+
"& .M4LAccountPopover-containerSetting": {
|
|
2683
|
+
display: "flex",
|
|
2684
|
+
flexDirection: "row",
|
|
2685
|
+
gap: "4px",
|
|
2686
|
+
width: "100%",
|
|
2687
|
+
borderRadius: "4px",
|
|
2688
|
+
padding: "0px 8px",
|
|
2689
|
+
"&:hover": {
|
|
2690
|
+
background: o.palette.state.default
|
|
2691
|
+
},
|
|
2692
|
+
"& .M4LAccountPopover-menuItem": {
|
|
2693
|
+
padding: "4px",
|
|
2694
|
+
borderRadius: "4px",
|
|
2695
|
+
cursor: "pointer"
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2699
|
+
"& .M4LAccountPopover-logOut": {
|
|
2700
|
+
justifyContent: "center",
|
|
2475
2701
|
cursor: "pointer",
|
|
2702
|
+
color: o.palette.text.primary,
|
|
2703
|
+
...o.typography.paragraph,
|
|
2704
|
+
padding: "4px",
|
|
2705
|
+
borderRadius: "4px",
|
|
2476
2706
|
"&:hover": {
|
|
2477
2707
|
background: o.palette.state.default
|
|
2478
2708
|
}
|
|
2709
|
+
},
|
|
2710
|
+
"& .M4LPopover-arrowStyle": {
|
|
2711
|
+
display: "none",
|
|
2712
|
+
"& .M4LAccountPopover-containerUserInfo": {
|
|
2713
|
+
display: "flex",
|
|
2714
|
+
"& .M4LAccountPopover-containerUserName": {
|
|
2715
|
+
display: "flex",
|
|
2716
|
+
flexDirection: "row",
|
|
2717
|
+
gap: "4px"
|
|
2718
|
+
},
|
|
2719
|
+
"& .M4LAccountPopover-containerUserEmail": {
|
|
2720
|
+
display: "flex",
|
|
2721
|
+
flexDirection: "row",
|
|
2722
|
+
gap: "4px"
|
|
2723
|
+
},
|
|
2724
|
+
"& .M4LAccountPopover-containerAppVersion": {
|
|
2725
|
+
display: "flex",
|
|
2726
|
+
flexDirection: "row",
|
|
2727
|
+
gap: "4px"
|
|
2728
|
+
},
|
|
2729
|
+
"& .M4LAccountPopover-logOut": {}
|
|
2730
|
+
}
|
|
2479
2731
|
}
|
|
2480
|
-
},
|
|
2481
|
-
"& .M4LAccountPopover-logOut": {
|
|
2482
|
-
borderTop: "2px solid",
|
|
2483
|
-
borderColor: o.palette.state.default,
|
|
2484
|
-
justifyContent: "center",
|
|
2485
|
-
paddingTop: "8px",
|
|
2486
|
-
cursor: "pointer",
|
|
2487
|
-
padding: "4px",
|
|
2488
|
-
borderRadius: "4px",
|
|
2489
|
-
"&:hover": {
|
|
2490
|
-
background: o.palette.state.default
|
|
2491
|
-
}
|
|
2492
|
-
},
|
|
2493
|
-
"& .M4LPopover-arrowStyle": {
|
|
2494
|
-
display: "none"
|
|
2495
2732
|
}
|
|
2496
2733
|
}
|
|
2497
2734
|
}
|
|
2498
2735
|
}
|
|
2499
|
-
}),
|
|
2736
|
+
}), v = (o) => ({
|
|
2500
2737
|
M4LModuleLayout: {
|
|
2501
2738
|
styleOverrides: {
|
|
2502
2739
|
"&.M4LModuleLayout-root": {
|
|
@@ -2507,10 +2744,7 @@ const i = (o) => ({
|
|
|
2507
2744
|
display: "flex",
|
|
2508
2745
|
width: "100%",
|
|
2509
2746
|
height: "100%",
|
|
2510
|
-
boxShadow: o.customShadows.
|
|
2511
|
-
background: o.palette.background.neutral,
|
|
2512
|
-
border: "1px solid",
|
|
2513
|
-
borderColor: o.palette.state.default,
|
|
2747
|
+
boxShadow: o.customShadows.z1,
|
|
2514
2748
|
borderRadius: "6px"
|
|
2515
2749
|
}
|
|
2516
2750
|
}
|
|
@@ -2529,21 +2763,19 @@ const i = (o) => ({
|
|
|
2529
2763
|
width: "100%",
|
|
2530
2764
|
height: "100%",
|
|
2531
2765
|
boxShadow: "none",
|
|
2532
|
-
background:
|
|
2766
|
+
background: "none",
|
|
2533
2767
|
border: "0px",
|
|
2534
2768
|
borderColor: "transparent",
|
|
2535
2769
|
borderRadius: "6px",
|
|
2536
2770
|
overFlow: "visible"
|
|
2537
2771
|
},
|
|
2538
2772
|
"& .M4LSplitLayout-secondPart": {
|
|
2539
|
-
background: o.palette.background.default,
|
|
2540
2773
|
borderRadius: "6px",
|
|
2541
|
-
padding: "
|
|
2774
|
+
padding: "0"
|
|
2542
2775
|
},
|
|
2543
2776
|
"& .layout-pane-primary": {
|
|
2544
|
-
background: o.palette.background.default,
|
|
2545
2777
|
borderRadius: "6px",
|
|
2546
|
-
padding: "
|
|
2778
|
+
padding: "0"
|
|
2547
2779
|
}
|
|
2548
2780
|
}
|
|
2549
2781
|
}
|
|
@@ -2583,7 +2815,7 @@ const i = (o) => ({
|
|
|
2583
2815
|
boxSizing: "border-box",
|
|
2584
2816
|
backgroundClip: "padding-box",
|
|
2585
2817
|
width: "8px",
|
|
2586
|
-
margin: "0
|
|
2818
|
+
margin: "0 0.5px",
|
|
2587
2819
|
borderLeft: "4px solid hsla(0, 0%, 5%, 0)",
|
|
2588
2820
|
borderRight: "4px solid hsla(0, 0%, 5%, 0)",
|
|
2589
2821
|
cursor: "col-resize",
|
|
@@ -2596,7 +2828,7 @@ const i = (o) => ({
|
|
|
2596
2828
|
width: "4px",
|
|
2597
2829
|
top: "calc(50% - 22.5px)",
|
|
2598
2830
|
position: "absolute",
|
|
2599
|
-
background: o.palette.
|
|
2831
|
+
background: o.palette.state.active,
|
|
2600
2832
|
borderRadius: "1px"
|
|
2601
2833
|
},
|
|
2602
2834
|
"& .splitter-layout > .layout-splitter:hover": {
|
|
@@ -2611,7 +2843,7 @@ const i = (o) => ({
|
|
|
2611
2843
|
"& .splitter-layout.splitter-layout-vertical > .layout-splitter": {
|
|
2612
2844
|
height: "8px !important",
|
|
2613
2845
|
width: "100% !important",
|
|
2614
|
-
margin: "
|
|
2846
|
+
margin: "4px 0",
|
|
2615
2847
|
borderTop: "4px solid hsla(0, 0%, 2%, 0)",
|
|
2616
2848
|
borderBottom: "4px solid hsla(0, 0%, 2%, 0)",
|
|
2617
2849
|
cursor: "row-resize"
|
|
@@ -2621,11 +2853,11 @@ const i = (o) => ({
|
|
|
2621
2853
|
height: "4px !important",
|
|
2622
2854
|
left: "calc(50% - 22.5px)",
|
|
2623
2855
|
top: "unset",
|
|
2624
|
-
background: o.palette.
|
|
2856
|
+
background: o.palette.state.active,
|
|
2625
2857
|
borderRadius: "2px"
|
|
2626
2858
|
},
|
|
2627
2859
|
"& .splitter-layout > .layout-splitter:hover:before, .splitter-layout.layout-changing > .layout-splitter:before": {
|
|
2628
|
-
background: o.palette.
|
|
2860
|
+
background: o.palette.state.focus
|
|
2629
2861
|
},
|
|
2630
2862
|
"& .splitter-layout.splitter-layout-vertical": {
|
|
2631
2863
|
flexDirection: "column"
|
|
@@ -2718,6 +2950,7 @@ const i = (o) => ({
|
|
|
2718
2950
|
styleOverrides: {
|
|
2719
2951
|
"&.M4LTab-root": {
|
|
2720
2952
|
width: "fit-content",
|
|
2953
|
+
borderRadius: "4px",
|
|
2721
2954
|
"& .MuiButtonBase-root": {
|
|
2722
2955
|
borderRadius: "4px",
|
|
2723
2956
|
display: "flex",
|
|
@@ -2747,37 +2980,37 @@ const i = (o) => ({
|
|
|
2747
2980
|
background: o.palette.state.active12,
|
|
2748
2981
|
border: "1px solid",
|
|
2749
2982
|
borderColor: o.palette.state.active12,
|
|
2750
|
-
boxShadow: o.customShadows.z2,
|
|
2751
2983
|
...o.typography.bodyDens,
|
|
2752
2984
|
color: o.palette.text.primary,
|
|
2753
2985
|
lineHeight: "none",
|
|
2754
2986
|
"&::before": {
|
|
2755
2987
|
content: '""',
|
|
2756
|
-
width: "
|
|
2757
|
-
height: "
|
|
2758
|
-
left: "
|
|
2988
|
+
width: "95%",
|
|
2989
|
+
height: "2px",
|
|
2990
|
+
left: "1.5px",
|
|
2991
|
+
bottom: "0px",
|
|
2759
2992
|
backgroundColor: o.palette.state.active,
|
|
2760
|
-
borderRadius: "
|
|
2993
|
+
borderRadius: "2px 2px 0px 0px",
|
|
2761
2994
|
position: "absolute"
|
|
2762
2995
|
}
|
|
2763
2996
|
}
|
|
2764
2997
|
}
|
|
2765
2998
|
}
|
|
2766
2999
|
}
|
|
2767
|
-
}),
|
|
3000
|
+
}), m = (o) => ({
|
|
2768
3001
|
M4LAccordion: {
|
|
2769
3002
|
styleOverrides: {
|
|
2770
3003
|
"&.M4LAccordion-root": {
|
|
2771
3004
|
width: "100%",
|
|
2772
3005
|
background: o.palette.background.default,
|
|
2773
3006
|
boxShadow: o.customShadows.z2,
|
|
2774
|
-
borderTop: "
|
|
2775
|
-
borderColor: o.palette.state.
|
|
3007
|
+
borderTop: "1.5px solid",
|
|
3008
|
+
borderColor: o.palette.state.borderTop,
|
|
2776
3009
|
borderRadius: "4px",
|
|
2777
3010
|
"& .M4LTypography-root": {
|
|
2778
3011
|
"& .MuiTypography-root": {
|
|
2779
3012
|
...o.typography.bodyDens,
|
|
2780
|
-
color: o.palette.text.
|
|
3013
|
+
color: o.palette.text.secondary
|
|
2781
3014
|
}
|
|
2782
3015
|
},
|
|
2783
3016
|
"& .MuiPaper-root": {
|
|
@@ -2785,6 +3018,7 @@ const i = (o) => ({
|
|
|
2785
3018
|
}
|
|
2786
3019
|
},
|
|
2787
3020
|
"& .MuiButtonBase-root": {
|
|
3021
|
+
padding: "4px 8px 4px 8px",
|
|
2788
3022
|
"&.MuiAccordionSummary-root.Mui-expanded": {
|
|
2789
3023
|
background: o.palette.state.active12,
|
|
2790
3024
|
"& .M4LTypography-root": {
|
|
@@ -2816,7 +3050,7 @@ const i = (o) => ({
|
|
|
2816
3050
|
}
|
|
2817
3051
|
}
|
|
2818
3052
|
}
|
|
2819
|
-
}),
|
|
3053
|
+
}), T = (o) => ({
|
|
2820
3054
|
M4LRHFormProvider: {
|
|
2821
3055
|
styleOverrides: {
|
|
2822
3056
|
"&.M4LRHFormProvider-root": {
|
|
@@ -2827,13 +3061,12 @@ const i = (o) => ({
|
|
|
2827
3061
|
}
|
|
2828
3062
|
}
|
|
2829
3063
|
}
|
|
2830
|
-
}),
|
|
3064
|
+
}), D = (o) => ({
|
|
2831
3065
|
M4LPeriod: {
|
|
2832
3066
|
styleOverrides: {
|
|
2833
3067
|
"&.M4LPeriod-root": {
|
|
2834
3068
|
border: "solid 1px",
|
|
2835
|
-
borderColor: o.palette.state.
|
|
2836
|
-
boxShadow: o.customShadows.z2,
|
|
3069
|
+
borderColor: o.palette.state.overdefoult,
|
|
2837
3070
|
display: "flex",
|
|
2838
3071
|
width: "100%",
|
|
2839
3072
|
gap: "2px",
|
|
@@ -2850,14 +3083,15 @@ const i = (o) => ({
|
|
|
2850
3083
|
width: "100%",
|
|
2851
3084
|
borderRadius: "2px",
|
|
2852
3085
|
border: "solid 1px",
|
|
2853
|
-
borderColor: o.palette.state.
|
|
3086
|
+
borderColor: o.palette.state.overdefoult,
|
|
2854
3087
|
padding: "0px 0px 0px 8px"
|
|
2855
3088
|
},
|
|
2856
3089
|
"& .M4LPeriod-containerDateValue": {
|
|
3090
|
+
display: "flex",
|
|
2857
3091
|
width: "100%",
|
|
2858
3092
|
borderRadius: "2px",
|
|
2859
3093
|
border: "solid 1px",
|
|
2860
|
-
borderColor: o.palette.state.
|
|
3094
|
+
borderColor: o.palette.state.overdefoult,
|
|
2861
3095
|
padding: "0px 0px 0px 8px"
|
|
2862
3096
|
},
|
|
2863
3097
|
"&:not(.M4LPeriod-stateReadOnly).M4LPeriod-variantMonoperiod": {
|
|
@@ -2866,17 +3100,26 @@ const i = (o) => ({
|
|
|
2866
3100
|
width: "100%",
|
|
2867
3101
|
borderRadius: "2px",
|
|
2868
3102
|
borderColor: o.palette.state.borderDefault,
|
|
3103
|
+
"& .MuiFormControl-root": {
|
|
3104
|
+
width: "100%",
|
|
3105
|
+
border: "solid 1px",
|
|
3106
|
+
borderColor: o.palette.state.overdefoult
|
|
3107
|
+
},
|
|
2869
3108
|
"& .MuiInputBase-root": {
|
|
3109
|
+
width: "100%",
|
|
2870
3110
|
borderRadius: "2px",
|
|
2871
3111
|
paddingLeft: "4px",
|
|
2872
|
-
background: "transparent"
|
|
3112
|
+
background: "transparent",
|
|
3113
|
+
"& .MuiInputBase-input": {
|
|
3114
|
+
padding: "0px"
|
|
3115
|
+
}
|
|
2873
3116
|
}
|
|
2874
3117
|
},
|
|
2875
3118
|
"& .MuiTextField-root": {
|
|
2876
3119
|
width: "100%",
|
|
2877
3120
|
borderRadius: "2px",
|
|
2878
3121
|
border: "solid 1px",
|
|
2879
|
-
borderColor: o.palette.state.
|
|
3122
|
+
borderColor: o.palette.state.overdefoult,
|
|
2880
3123
|
"& .MuiInputBase-root": {
|
|
2881
3124
|
borderRadius: "2px",
|
|
2882
3125
|
paddingLeft: "4px",
|
|
@@ -2888,9 +3131,11 @@ const i = (o) => ({
|
|
|
2888
3131
|
borderColor: o.palette.state.active
|
|
2889
3132
|
},
|
|
2890
3133
|
"& .MuiInputBase-root:hover": {
|
|
3134
|
+
height: "100%",
|
|
2891
3135
|
borderRadius: "2px",
|
|
2892
3136
|
paddingLeft: "4px",
|
|
2893
|
-
background: o.palette.state.active12
|
|
3137
|
+
background: o.palette.state.active12,
|
|
3138
|
+
padding: "0px 0px 0px 4px"
|
|
2894
3139
|
}
|
|
2895
3140
|
},
|
|
2896
3141
|
"&:hover": {
|
|
@@ -2909,11 +3154,13 @@ const i = (o) => ({
|
|
|
2909
3154
|
boxShadow: o.customShadows.z2
|
|
2910
3155
|
},
|
|
2911
3156
|
"& .MuiTextField-root:hover": {
|
|
3157
|
+
width: "100%",
|
|
2912
3158
|
background: "transparent",
|
|
2913
3159
|
"& .MuiInputBase-root:hover": {
|
|
2914
3160
|
borderRadius: "2px",
|
|
2915
3161
|
paddingLeft: "4px",
|
|
2916
|
-
background: "transparent"
|
|
3162
|
+
background: "transparent",
|
|
3163
|
+
height: "100%"
|
|
2917
3164
|
}
|
|
2918
3165
|
}
|
|
2919
3166
|
},
|
|
@@ -2971,7 +3218,7 @@ const i = (o) => ({
|
|
|
2971
3218
|
}
|
|
2972
3219
|
}
|
|
2973
3220
|
}
|
|
2974
|
-
}),
|
|
3221
|
+
}), P = (o) => ({
|
|
2975
3222
|
M4LModalDialog: {
|
|
2976
3223
|
styleOverrides: {
|
|
2977
3224
|
"&.M4LModal-root": {
|
|
@@ -2979,14 +3226,19 @@ const i = (o) => ({
|
|
|
2979
3226
|
"& .MuiPaper-root": {
|
|
2980
3227
|
display: "flex",
|
|
2981
3228
|
flexDirection: "column",
|
|
2982
|
-
height: "fit-content",
|
|
2983
3229
|
overflow: "hidden",
|
|
2984
|
-
width: "fit-content",
|
|
2985
3230
|
borderRadius: "4px",
|
|
2986
|
-
minHeight: "fit-content",
|
|
2987
|
-
minWidth: "fit-content",
|
|
2988
3231
|
margin: "0px",
|
|
2989
3232
|
background: "transparent",
|
|
3233
|
+
width: "auto",
|
|
3234
|
+
height: "auto",
|
|
3235
|
+
maxWidth: "unset",
|
|
3236
|
+
maxHeight: "unset",
|
|
3237
|
+
[o.breakpoints.down("sm")]: {
|
|
3238
|
+
width: "100%",
|
|
3239
|
+
height: "100%",
|
|
3240
|
+
maxHeight: "100%"
|
|
3241
|
+
},
|
|
2990
3242
|
"& .M4LModal-windowBaseRoot": {
|
|
2991
3243
|
display: "flex",
|
|
2992
3244
|
flexDirection: "column",
|
|
@@ -3094,7 +3346,7 @@ const i = (o) => ({
|
|
|
3094
3346
|
}
|
|
3095
3347
|
}
|
|
3096
3348
|
}
|
|
3097
|
-
}),
|
|
3349
|
+
}), z = (o) => ({
|
|
3098
3350
|
M4LPaperForm: {
|
|
3099
3351
|
styleOverrides: {
|
|
3100
3352
|
"&.M4LPaperForm-root": {
|
|
@@ -3172,32 +3424,60 @@ const i = (o) => ({
|
|
|
3172
3424
|
M4LDataGrid: {
|
|
3173
3425
|
styleOverrides: {
|
|
3174
3426
|
"&.M4LDataGrid-root": {
|
|
3175
|
-
|
|
3427
|
+
background: o.palette.background.default,
|
|
3428
|
+
boxShadow: o.customShadows.z2,
|
|
3429
|
+
borderRadius: "4px",
|
|
3430
|
+
padding: "4px",
|
|
3431
|
+
display: "flex",
|
|
3432
|
+
position: "relative",
|
|
3433
|
+
flexDirection: "column",
|
|
3434
|
+
gap: "4px",
|
|
3435
|
+
height: "100%",
|
|
3436
|
+
borderTop: "1.5",
|
|
3437
|
+
borderColor: o.palette.state.borderTop,
|
|
3438
|
+
width: "100%",
|
|
3176
3439
|
"& .M4LDataGrid-actions": {
|
|
3177
|
-
...o.typography.
|
|
3178
|
-
position: "absolute",
|
|
3440
|
+
...o.typography.body,
|
|
3179
3441
|
left: "0px",
|
|
3180
3442
|
right: "0px",
|
|
3181
3443
|
top: "0px",
|
|
3182
|
-
|
|
3183
|
-
padding: 0,
|
|
3444
|
+
padding: "8px",
|
|
3184
3445
|
display: "flex",
|
|
3185
3446
|
flexDirection: "row",
|
|
3447
|
+
borderRadius: "4px",
|
|
3186
3448
|
alignItems: "center",
|
|
3187
|
-
justifyContent: "
|
|
3188
|
-
|
|
3189
|
-
|
|
3449
|
+
justifyContent: "space-between",
|
|
3450
|
+
background: o.palette.background.default,
|
|
3451
|
+
position: "absolute",
|
|
3452
|
+
gap: "8px",
|
|
3453
|
+
"& .M4LDataGrid-actionsConfigContainer": {
|
|
3454
|
+
display: "flex",
|
|
3455
|
+
flexDirection: "row",
|
|
3456
|
+
gap: "8px",
|
|
3457
|
+
marginLeft: "12px",
|
|
3458
|
+
"& .M4LIconButton-root": {
|
|
3459
|
+
background: o.palette.state.default,
|
|
3460
|
+
boxShadow: o.customShadows.z1,
|
|
3461
|
+
borderTop: "1.5px solid",
|
|
3462
|
+
borderColor: o.palette.state.borderTop
|
|
3463
|
+
}
|
|
3190
3464
|
},
|
|
3191
3465
|
"& .M4LDataGrid-rowsCount": {
|
|
3192
3466
|
display: "flex",
|
|
3193
|
-
|
|
3467
|
+
gap: "8px",
|
|
3468
|
+
alignItems: "center",
|
|
3469
|
+
"& .M4LDataGrid-rowsCountLabel": {
|
|
3470
|
+
...o.typography.body,
|
|
3471
|
+
color: o.palette.text.primary,
|
|
3472
|
+
heigth: "100%"
|
|
3473
|
+
},
|
|
3194
3474
|
"& .M4LDataGrid-rowsCountValue": {
|
|
3195
|
-
|
|
3196
|
-
paddingTop: "2px",
|
|
3475
|
+
paddingTop: "4px",
|
|
3197
3476
|
paddingBottom: "2px",
|
|
3198
3477
|
paddingLeft: "4px",
|
|
3199
|
-
paddingRight: "
|
|
3200
|
-
|
|
3478
|
+
paddingRight: "6px",
|
|
3479
|
+
background: o.palette.state.overdefoult,
|
|
3480
|
+
borderRadius: "4px"
|
|
3201
3481
|
}
|
|
3202
3482
|
},
|
|
3203
3483
|
"& .M4LDataGrid-actionFilter": {},
|
|
@@ -3212,31 +3492,43 @@ const i = (o) => ({
|
|
|
3212
3492
|
left: "0px",
|
|
3213
3493
|
right: "0px",
|
|
3214
3494
|
overflow: "hidden",
|
|
3495
|
+
borderRadius: "4px",
|
|
3496
|
+
border: "none",
|
|
3497
|
+
boxshadow: o.customShadows.z2,
|
|
3498
|
+
background: o.palette.background.default,
|
|
3499
|
+
padding: "4px",
|
|
3500
|
+
[o.breakpoints.down("sm")]: {
|
|
3501
|
+
top: "54px"
|
|
3502
|
+
},
|
|
3215
3503
|
"& .M4LDataGrid-wrapperDataGridCss": {
|
|
3216
|
-
position: "
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
left: "0px",
|
|
3220
|
-
right: "0px",
|
|
3504
|
+
position: "relative",
|
|
3505
|
+
height: "100%",
|
|
3506
|
+
overflow: "hidden",
|
|
3221
3507
|
"& .rdg ": {
|
|
3508
|
+
border: "none",
|
|
3509
|
+
background: o.palette.background.default,
|
|
3510
|
+
gridColumnGap: "0px",
|
|
3511
|
+
gridRowGap: "0px",
|
|
3222
3512
|
userSelect: "initial",
|
|
3223
3513
|
height: "100%",
|
|
3224
3514
|
contentVisibility: "unset",
|
|
3225
|
-
overflow: "
|
|
3226
|
-
borderRadius: "
|
|
3515
|
+
overflow: "auto",
|
|
3516
|
+
borderRadius: "4px",
|
|
3517
|
+
padding: "0px",
|
|
3518
|
+
borderColor: "none",
|
|
3227
3519
|
"--rdg-grid-inline-size": "0px",
|
|
3228
|
-
"--rdg-header-background-color": o.palette.
|
|
3229
|
-
"--rdg-row-selected-background-color":
|
|
3230
|
-
"--rdg-row-hover-background-color":
|
|
3520
|
+
"--rdg-header-background-color": o.palette.background.background,
|
|
3521
|
+
"--rdg-row-selected-background-color": "#D9E9FC",
|
|
3522
|
+
"--rdg-row-hover-background-color": "#D9E9FC",
|
|
3231
3523
|
"--rdg-background-color": o.palette.background.default,
|
|
3232
|
-
"--rdg-selection-color": o.palette.
|
|
3233
|
-
"--row-selected-hover-background-color": o.palette.mode === "light"
|
|
3524
|
+
"--rdg-selection-color": o.palette.state.active,
|
|
3525
|
+
"--row-selected-hover-background-color": (o.palette.mode === "light", o.palette.state.toneOp),
|
|
3234
3526
|
"--rdg-checkbox-color": o.palette.primary.main,
|
|
3235
3527
|
"--rdg-checkbox-focus-color": t(
|
|
3236
3528
|
o.palette.primary.main,
|
|
3237
3529
|
o.palette.action.selectedOpacity
|
|
3238
3530
|
),
|
|
3239
|
-
"--rdg-border-color":
|
|
3531
|
+
"--rdg-border-color": "none"
|
|
3240
3532
|
},
|
|
3241
3533
|
"& .rdg::-webkit-scrollbar": {
|
|
3242
3534
|
width: "6px",
|
|
@@ -3260,34 +3552,63 @@ const i = (o) => ({
|
|
|
3260
3552
|
justifyContent: "center",
|
|
3261
3553
|
alignItems: "center"
|
|
3262
3554
|
},
|
|
3555
|
+
"& .rdg-row": {
|
|
3556
|
+
'&[aria-selected="false"] .rdg-cell': {
|
|
3557
|
+
backgroundColor: o.palette.background.default
|
|
3558
|
+
},
|
|
3559
|
+
"&:nth-of-type(odd)": {
|
|
3560
|
+
"& .rdg-cell": {
|
|
3561
|
+
backgroundColor: o.palette.background.neutral
|
|
3562
|
+
}
|
|
3563
|
+
},
|
|
3564
|
+
'&[aria-selected="true"] .rdg-cell': {
|
|
3565
|
+
backgroundColor: o.palette.state.toneOp
|
|
3566
|
+
},
|
|
3567
|
+
"&:hover": {
|
|
3568
|
+
"& .rdg-cell": {
|
|
3569
|
+
backgroundColor: `${o.palette.state.toneOp}!important`
|
|
3570
|
+
}
|
|
3571
|
+
},
|
|
3572
|
+
backgroundColor: "transparent"
|
|
3573
|
+
},
|
|
3263
3574
|
"& .rdg-cell": {
|
|
3264
3575
|
fontFamily: o.typography.body2.fontFamily,
|
|
3265
3576
|
fontWeight: o.typography.body2.fontWeight,
|
|
3266
3577
|
fontSize: o.typography.body2.fontSize,
|
|
3267
3578
|
color: o.palette.text.secondary,
|
|
3268
|
-
borderBottom:
|
|
3269
|
-
borderRight: "
|
|
3270
|
-
|
|
3579
|
+
borderBottom: "0px solid transparent",
|
|
3580
|
+
borderRight: "0.5px solid transparent",
|
|
3581
|
+
borderColor: o.palette.background.background,
|
|
3582
|
+
display: "inline",
|
|
3583
|
+
justifyContent: "center",
|
|
3584
|
+
alignItems: "center",
|
|
3585
|
+
textOverflow: "inline",
|
|
3586
|
+
gridTemplateColumns: "auto",
|
|
3271
3587
|
"&.rdg-cell-frozen": {
|
|
3272
|
-
|
|
3588
|
+
display: "flex",
|
|
3589
|
+
justifyContent: "center",
|
|
3590
|
+
alignItems: "center"
|
|
3273
3591
|
},
|
|
3274
3592
|
"&:after": {
|
|
3275
3593
|
content: '""',
|
|
3276
|
-
borderRight: `
|
|
3594
|
+
borderRight: `0px solid ${o.palette.divider}`,
|
|
3277
3595
|
position: "absolute",
|
|
3278
3596
|
right: "0px",
|
|
3279
|
-
|
|
3280
|
-
bottom: "25%"
|
|
3597
|
+
height: "100%"
|
|
3281
3598
|
},
|
|
3282
3599
|
"& .m4l_icon": {
|
|
3283
3600
|
height: "100%"
|
|
3284
3601
|
}
|
|
3285
3602
|
},
|
|
3286
3603
|
"& [aria-selected=true]": {
|
|
3287
|
-
backgroundColor: o.palette.state.
|
|
3604
|
+
backgroundColor: o.palette.state.toneOp,
|
|
3605
|
+
color: o.palette.text.primary
|
|
3288
3606
|
},
|
|
3289
3607
|
"& .rdg-cell.rdg-cell-align-left": {
|
|
3290
|
-
textAlign: "
|
|
3608
|
+
textAlign: "center",
|
|
3609
|
+
display: "inline",
|
|
3610
|
+
justifyContent: "center",
|
|
3611
|
+
alignItems: "center"
|
|
3291
3612
|
},
|
|
3292
3613
|
"& .rdg-cell.rdg-cell-align-center": {
|
|
3293
3614
|
textAlign: "center"
|
|
@@ -3300,18 +3621,24 @@ const i = (o) => ({
|
|
|
3300
3621
|
boxShadow: "none"
|
|
3301
3622
|
},
|
|
3302
3623
|
"& .rdg-row :last-child:after": {
|
|
3303
|
-
borderRight: "0px solid
|
|
3624
|
+
borderRight: "0px solid",
|
|
3625
|
+
borderColor: o.palette.background.neutral
|
|
3304
3626
|
},
|
|
3305
3627
|
"& .rdg-header-row .rdg-cell": {
|
|
3306
|
-
fontFamily: o.typography.
|
|
3307
|
-
fontWeight: o.typography.
|
|
3308
|
-
fontSize: o.typography.
|
|
3628
|
+
fontFamily: o.typography.subtitle,
|
|
3629
|
+
fontWeight: o.typography.subtitle,
|
|
3630
|
+
fontSize: o.typography.subtitle,
|
|
3309
3631
|
color: o.palette.text.primary,
|
|
3310
|
-
borderRight: "
|
|
3632
|
+
borderRight: "0.52px solid",
|
|
3633
|
+
borderColor: o.palette.background.default,
|
|
3311
3634
|
boxShadow: "none",
|
|
3635
|
+
gridTemplateColumns: "auto",
|
|
3312
3636
|
"&.rdg-cell-frozen-last": {
|
|
3637
|
+
borderRight: "0px solid",
|
|
3638
|
+
borderColor: o.palette.background.default,
|
|
3313
3639
|
"&:after": {
|
|
3314
|
-
borderRight: "
|
|
3640
|
+
borderRight: "1.5px solid",
|
|
3641
|
+
borderColor: o.palette.background.neutral
|
|
3315
3642
|
},
|
|
3316
3643
|
boxShadow: "var(--rdg-frozen-cell-box-shadow)"
|
|
3317
3644
|
},
|
|
@@ -3321,14 +3648,14 @@ const i = (o) => ({
|
|
|
3321
3648
|
}
|
|
3322
3649
|
},
|
|
3323
3650
|
"& .rdg-header-row :last-child.rdg-cell": {
|
|
3324
|
-
borderTopRightRadius: "
|
|
3651
|
+
borderTopRightRadius: "4px",
|
|
3325
3652
|
"&:after": {
|
|
3326
3653
|
borderRight: "0px solid transparent"
|
|
3327
3654
|
}
|
|
3328
3655
|
},
|
|
3329
3656
|
"& .filter_cell_div": {
|
|
3330
|
-
paddingLeft:
|
|
3331
|
-
paddingRight:
|
|
3657
|
+
paddingLeft: "8px",
|
|
3658
|
+
paddingRight: "8px"
|
|
3332
3659
|
},
|
|
3333
3660
|
"& .rdg-header-sort-cell": {
|
|
3334
3661
|
width: "100%",
|
|
@@ -3361,11 +3688,63 @@ const i = (o) => ({
|
|
|
3361
3688
|
}
|
|
3362
3689
|
}
|
|
3363
3690
|
}
|
|
3364
|
-
}),
|
|
3691
|
+
}), W = (o) => ({
|
|
3365
3692
|
M4LPager: {
|
|
3366
3693
|
styleOverrides: {
|
|
3367
3694
|
"&.M4LPager-root": {
|
|
3368
3695
|
test: "root",
|
|
3696
|
+
display: "flex",
|
|
3697
|
+
flexDirection: "row",
|
|
3698
|
+
alignItems: "center",
|
|
3699
|
+
justifyContent: "space-between",
|
|
3700
|
+
gap: "12px",
|
|
3701
|
+
whiteSpace: "nowrap",
|
|
3702
|
+
"& .M4LPager-pagerActions": {
|
|
3703
|
+
display: "flex",
|
|
3704
|
+
padding: "2px",
|
|
3705
|
+
justifyContent: "center",
|
|
3706
|
+
alignItems: "center",
|
|
3707
|
+
gap: "2px",
|
|
3708
|
+
width: "fit-content",
|
|
3709
|
+
background: o.palette.state.default,
|
|
3710
|
+
boxShadow: o.customShadows.z1,
|
|
3711
|
+
borderRadius: "4px",
|
|
3712
|
+
borderTop: "1.5px solid",
|
|
3713
|
+
borderColor: o.palette.state.borderTop,
|
|
3714
|
+
[o.breakpoints.down("sm")]: {
|
|
3715
|
+
gap: "4px",
|
|
3716
|
+
padding: "4px"
|
|
3717
|
+
},
|
|
3718
|
+
"& .M4LIconButton-root": {
|
|
3719
|
+
width: "20px",
|
|
3720
|
+
height: "20px",
|
|
3721
|
+
minWidth: "20px",
|
|
3722
|
+
minHeight: "20px",
|
|
3723
|
+
[o.breakpoints.down("sm")]: {
|
|
3724
|
+
width: "28px",
|
|
3725
|
+
height: "28px",
|
|
3726
|
+
minWidth: "28px",
|
|
3727
|
+
minHeight: "28px"
|
|
3728
|
+
}
|
|
3729
|
+
}
|
|
3730
|
+
},
|
|
3731
|
+
"& .M4LPager-labelRowsPerPageContainer": {
|
|
3732
|
+
display: "flex",
|
|
3733
|
+
flexDirection: "row",
|
|
3734
|
+
gap: "8px",
|
|
3735
|
+
justifyContent: "center",
|
|
3736
|
+
alignItems: "center"
|
|
3737
|
+
},
|
|
3738
|
+
"& .MuiInputBase-root": {
|
|
3739
|
+
padding: "4px 2px 4px 6px",
|
|
3740
|
+
borderRadius: "4px",
|
|
3741
|
+
background: o.palette.background.background,
|
|
3742
|
+
overflow: "hidden",
|
|
3743
|
+
minWidth: "fit-content",
|
|
3744
|
+
"& .MuiSvgIcon-root": {
|
|
3745
|
+
background: o.palette.state.default
|
|
3746
|
+
}
|
|
3747
|
+
},
|
|
3369
3748
|
"& .M4LPager-skeletonRoot": {
|
|
3370
3749
|
width: "100%",
|
|
3371
3750
|
display: "flex",
|
|
@@ -3392,8 +3771,15 @@ const i = (o) => ({
|
|
|
3392
3771
|
}
|
|
3393
3772
|
}
|
|
3394
3773
|
}
|
|
3774
|
+
},
|
|
3775
|
+
M4LPagerMenuPopover: {
|
|
3776
|
+
styleOverrides: {
|
|
3777
|
+
"&.M4LPager-selectMenuPopover": {
|
|
3778
|
+
test: "root"
|
|
3779
|
+
}
|
|
3780
|
+
}
|
|
3395
3781
|
}
|
|
3396
|
-
}),
|
|
3782
|
+
}), H = (o) => ({
|
|
3397
3783
|
M4LCheckBox: {
|
|
3398
3784
|
styleOverrides: {
|
|
3399
3785
|
"&.M4LCheckBox-root": {
|
|
@@ -3451,16 +3837,16 @@ const i = (o) => ({
|
|
|
3451
3837
|
});
|
|
3452
3838
|
export {
|
|
3453
3839
|
A,
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3840
|
+
m as B,
|
|
3841
|
+
D as C,
|
|
3842
|
+
P as D,
|
|
3843
|
+
z as E,
|
|
3458
3844
|
F,
|
|
3459
|
-
|
|
3460
|
-
|
|
3845
|
+
W as G,
|
|
3846
|
+
H,
|
|
3461
3847
|
b as M,
|
|
3462
3848
|
i as a,
|
|
3463
|
-
|
|
3849
|
+
T as b,
|
|
3464
3850
|
n as c,
|
|
3465
3851
|
p as d,
|
|
3466
3852
|
d as e,
|
|
@@ -3474,12 +3860,12 @@ export {
|
|
|
3474
3860
|
x as m,
|
|
3475
3861
|
g as n,
|
|
3476
3862
|
y as o,
|
|
3477
|
-
|
|
3863
|
+
f as p,
|
|
3478
3864
|
L as q,
|
|
3479
|
-
|
|
3865
|
+
w as r,
|
|
3480
3866
|
h as s,
|
|
3481
|
-
|
|
3482
|
-
|
|
3867
|
+
k as t,
|
|
3868
|
+
v as u,
|
|
3483
3869
|
C as v,
|
|
3484
3870
|
I as w,
|
|
3485
3871
|
B as x,
|