@m4l/styles 0.0.34 → 0.0.35
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 +37 -37
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.66a289a7.js → defaultThemeOptions.5e505df7.js} +11 -8
- package/theme/index.149cbcc9.js +7 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +74 -41
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +52 -10
- package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +155 -121
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +1382 -2463
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +48 -2
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +124 -5
- package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +8 -0
- package/theme/overrides/M4LExtendedComponents/M4LPaperForm.d.ts +5 -0
- package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +14 -1
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +32 -3
- package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +134 -15
- package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +7 -0
- package/theme/overrides/M4LExtendedComponents/M4LTabContent.d.ts +3 -0
- package/theme/overrides/M4LExtendedComponents/{index.e406c71f.js → index.1e3b4f6c.js} +585 -311
- package/theme/overrides/M4LRHFComponents/{index.d7a80536.js → index.8ab5d2b9.js} +1 -1
- package/theme/overrides/{index.2d07abe3.js → index.0ca75445.js} +2 -2
- package/theme/{shadows.a726d8c6.js → shadows.479d005a.js} +2 -2
- package/theme/{typography.b14a8e35.js → typography.927a0f62.js} +32 -24
- package/utils/{getColorState.ce01540c.js → getColorState.4b06bb84.js} +21 -16
- package/utils/getColorState.d.ts +1 -1
- package/theme/index.34d0fdea.js +0 -1
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { alpha as e } from "@mui/material/styles";
|
|
2
2
|
import { alpha as t } from "@mui/system";
|
|
3
|
+
import "../../defaultThemeOptions.5e505df7.js";
|
|
4
|
+
import "../../shadows.479d005a.js";
|
|
3
5
|
import { P as r } from "../../palette.1b577d8c.js";
|
|
4
|
-
|
|
6
|
+
import "../../typography.927a0f62.js";
|
|
7
|
+
import "@mui/material";
|
|
8
|
+
const c = (o) => ({
|
|
5
9
|
M4LDynamicFilter: {
|
|
6
10
|
styleOverrides: {
|
|
7
11
|
"&.M4LDynamicFilter-root": {
|
|
@@ -10,8 +14,8 @@ const p = (o) => ({
|
|
|
10
14
|
padding: "0px",
|
|
11
15
|
border: "1px solid",
|
|
12
16
|
borderColor: o.palette.state.borderPrimary,
|
|
13
|
-
minHeight: "
|
|
14
|
-
height: "
|
|
17
|
+
minHeight: "32px",
|
|
18
|
+
height: "32px",
|
|
15
19
|
[o.breakpoints.down("sm")]: {
|
|
16
20
|
minHeight: "auto",
|
|
17
21
|
height: "auto"
|
|
@@ -119,7 +123,7 @@ const p = (o) => ({
|
|
|
119
123
|
},
|
|
120
124
|
"&:hover": {
|
|
121
125
|
borderColor: o.palette.state.toneOp,
|
|
122
|
-
background: o.palette.state.
|
|
126
|
+
background: o.palette.state.hoverDefault
|
|
123
127
|
}
|
|
124
128
|
}
|
|
125
129
|
},
|
|
@@ -169,12 +173,12 @@ const p = (o) => ({
|
|
|
169
173
|
"& .M4LDynamicFilter-popoverMenuFieldsPaper": {
|
|
170
174
|
display: "flex",
|
|
171
175
|
flexDirection: "column",
|
|
172
|
-
padding: "
|
|
176
|
+
padding: "8px",
|
|
173
177
|
gap: "4px",
|
|
174
178
|
borderRadius: "6px",
|
|
175
179
|
"& .M4LDynamicFilter-popoverMenuFieldsItem": {
|
|
176
|
-
paddingLeft: "
|
|
177
|
-
paddingRight: "
|
|
180
|
+
paddingLeft: "4px",
|
|
181
|
+
paddingRight: "4px",
|
|
178
182
|
borderRadius: "4px",
|
|
179
183
|
"& .M4LDynamicFilter-classespopoverLabelMemuItem": {
|
|
180
184
|
...o.typography.body,
|
|
@@ -188,6 +192,10 @@ const p = (o) => ({
|
|
|
188
192
|
padding: "4px 12px 4px 8px",
|
|
189
193
|
boxShadow: o.customShadows.z2
|
|
190
194
|
}
|
|
195
|
+
},
|
|
196
|
+
[o.breakpoints.down("md")]: {
|
|
197
|
+
padding: "12px",
|
|
198
|
+
gap: "4px"
|
|
191
199
|
}
|
|
192
200
|
}
|
|
193
201
|
}
|
|
@@ -200,7 +208,8 @@ const p = (o) => ({
|
|
|
200
208
|
"& .M4LDynamicFilter-popoverFilterPaper": {
|
|
201
209
|
padding: "0px",
|
|
202
210
|
minWidth: "220px",
|
|
203
|
-
minHeight: "
|
|
211
|
+
minHeight: "auto",
|
|
212
|
+
boxShadow: o.customShadows.z3,
|
|
204
213
|
"& .M4LPopover-arrowStyle": {
|
|
205
214
|
background: "none"
|
|
206
215
|
},
|
|
@@ -210,17 +219,21 @@ const p = (o) => ({
|
|
|
210
219
|
minWidth: "220px",
|
|
211
220
|
height: "fit-content",
|
|
212
221
|
"& .M4LDynamicFilter-popoverFilterHeader": {
|
|
213
|
-
background: o.palette.
|
|
222
|
+
background: o.palette.state.default,
|
|
214
223
|
display: "flex",
|
|
215
224
|
gap: "8px",
|
|
216
|
-
padding: "
|
|
225
|
+
padding: "4px 4px 4px 8px",
|
|
217
226
|
borderTopLeftRadius: "4px",
|
|
218
227
|
borderTopRightRadius: "4px",
|
|
219
|
-
boxShadow: "unset",
|
|
220
228
|
borderBottom: "0px",
|
|
229
|
+
height: "28px",
|
|
230
|
+
"& .M4LIcon-root": {
|
|
231
|
+
"& .M4LIcon-icon": {}
|
|
232
|
+
},
|
|
221
233
|
"& .MuiTypography-root": {
|
|
222
|
-
...o.typography.
|
|
223
|
-
color: o.palette.text.primary
|
|
234
|
+
...o.typography.paragraphDens,
|
|
235
|
+
color: o.palette.text.primary,
|
|
236
|
+
"& .MuiTypography-root": {}
|
|
224
237
|
}
|
|
225
238
|
},
|
|
226
239
|
"& .M4LDynamicFilter-popoverContainerFields": {
|
|
@@ -233,20 +246,57 @@ const p = (o) => ({
|
|
|
233
246
|
display: "flex",
|
|
234
247
|
height: "auto",
|
|
235
248
|
flexDirection: "column",
|
|
236
|
-
padding: "
|
|
237
|
-
gap: "8px"
|
|
238
|
-
[o.breakpoints.down("sm")]: {
|
|
239
|
-
gap: "12px"
|
|
240
|
-
}
|
|
249
|
+
padding: "12px 12px 0 12px",
|
|
250
|
+
gap: "8px"
|
|
241
251
|
}
|
|
242
252
|
},
|
|
243
253
|
"& .M4LCommonActions-root": {
|
|
244
254
|
display: "flex",
|
|
245
255
|
flexDirection: "row",
|
|
246
|
-
gap: "
|
|
247
|
-
padding: "
|
|
256
|
+
gap: "16px",
|
|
257
|
+
padding: "16px 12px 12px 12px",
|
|
248
258
|
".M4LButton-root": {
|
|
249
|
-
|
|
259
|
+
height: "24px"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
[o.breakpoints.down("sm")]: {
|
|
265
|
+
"& .M4LDynamicFilter-popoverFilterPaper": {
|
|
266
|
+
"& .M4LRHFormProvider-root": {
|
|
267
|
+
"& .M4LDynamicFilter-popoverFilterHeader": {
|
|
268
|
+
height: "36px",
|
|
269
|
+
"& .M4LIcon-root": {
|
|
270
|
+
"& .M4LIcon-icon": {}
|
|
271
|
+
},
|
|
272
|
+
"& .MuiTypography-root": {
|
|
273
|
+
...o.typography.paragraphDens,
|
|
274
|
+
color: o.palette.text.primary,
|
|
275
|
+
"& .MuiTypography-root": {}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"& .M4LDynamicFilter-popoverContainerFields": {
|
|
279
|
+
height: "fit-content",
|
|
280
|
+
[`& .M4LDynamicFilter-containerStringFilter,
|
|
281
|
+
& .M4LDynamicFilter-containerBooleanFilter,
|
|
282
|
+
& .M4LDynamicFilter-containerNumberFilter,
|
|
283
|
+
& .M4LDynamicFilter-containerDateTimeFilter
|
|
284
|
+
`]: {
|
|
285
|
+
display: "flex",
|
|
286
|
+
height: "auto",
|
|
287
|
+
flexDirection: "column",
|
|
288
|
+
padding: "16px 16px 0 16px",
|
|
289
|
+
gap: "12px"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"& .M4LCommonActions-root": {
|
|
293
|
+
display: "flex",
|
|
294
|
+
flexDirection: "row",
|
|
295
|
+
gap: "16px",
|
|
296
|
+
padding: "24px 16px 16px 16px",
|
|
297
|
+
".M4LButton-root": {
|
|
298
|
+
height: "36px"
|
|
299
|
+
}
|
|
250
300
|
}
|
|
251
301
|
}
|
|
252
302
|
}
|
|
@@ -254,7 +304,7 @@ const p = (o) => ({
|
|
|
254
304
|
}
|
|
255
305
|
}
|
|
256
306
|
}
|
|
257
|
-
}),
|
|
307
|
+
}), g = (o) => ({
|
|
258
308
|
M4LIcon: {
|
|
259
309
|
styleOverrides: {
|
|
260
310
|
["&.M4LIcon-root"]: {
|
|
@@ -303,7 +353,7 @@ const p = (o) => ({
|
|
|
303
353
|
}
|
|
304
354
|
}
|
|
305
355
|
}
|
|
306
|
-
}),
|
|
356
|
+
}), x = (o) => ({
|
|
307
357
|
M4LIconButton: {
|
|
308
358
|
styleOverrides: {
|
|
309
359
|
["&.M4LIconButton-root"]: {
|
|
@@ -454,7 +504,7 @@ const p = (o) => ({
|
|
|
454
504
|
}
|
|
455
505
|
}
|
|
456
506
|
}
|
|
457
|
-
}),
|
|
507
|
+
}), u = (o) => ({
|
|
458
508
|
M4LanguagePopover: {
|
|
459
509
|
styleOverrides: {
|
|
460
510
|
["&.M4LanguagePopover-root"]: {
|
|
@@ -475,7 +525,7 @@ const p = (o) => ({
|
|
|
475
525
|
}
|
|
476
526
|
}
|
|
477
527
|
}
|
|
478
|
-
}),
|
|
528
|
+
}), b = (o) => ({
|
|
479
529
|
M4LImageButton: {
|
|
480
530
|
styleOverrides: {
|
|
481
531
|
["&.M4LImageButton-root"]: {
|
|
@@ -529,7 +579,7 @@ const p = (o) => ({
|
|
|
529
579
|
}
|
|
530
580
|
}
|
|
531
581
|
}
|
|
532
|
-
}),
|
|
582
|
+
}), M = (o) => ({
|
|
533
583
|
M4LImage: {
|
|
534
584
|
styleOverrides: {
|
|
535
585
|
["&.M4LImage-root"]: {
|
|
@@ -566,7 +616,7 @@ const p = (o) => ({
|
|
|
566
616
|
}
|
|
567
617
|
}
|
|
568
618
|
}
|
|
569
|
-
}),
|
|
619
|
+
}), y = (o) => ({
|
|
570
620
|
M4LPopover: {
|
|
571
621
|
styleOverrides: {
|
|
572
622
|
"&.M4LPopover-root": {
|
|
@@ -577,31 +627,40 @@ const p = (o) => ({
|
|
|
577
627
|
".MuiPaper-root": {
|
|
578
628
|
background: o.palette.background.default,
|
|
579
629
|
borderRadius: "6px",
|
|
580
|
-
padding: "
|
|
581
|
-
boxShadow: o.customShadows.
|
|
630
|
+
padding: "8px",
|
|
631
|
+
boxShadow: o.customShadows.z4,
|
|
582
632
|
width: "auto",
|
|
583
633
|
zIndex: "10000",
|
|
584
634
|
"& .MuiButtonBase-root": {
|
|
585
635
|
justifyContent: "normal !important",
|
|
586
|
-
gap: "
|
|
636
|
+
gap: "12px",
|
|
637
|
+
minHeight: "24px",
|
|
638
|
+
padding: "2px 4px",
|
|
639
|
+
"& .M4LIcon-root": {
|
|
640
|
+
minHeight: "20px",
|
|
641
|
+
minWidth: "20px"
|
|
642
|
+
},
|
|
643
|
+
"& .M4LDynamicFilter-classespopoverLabelMemuItem": {
|
|
644
|
+
margin: "0px",
|
|
645
|
+
height: "100%"
|
|
646
|
+
}
|
|
587
647
|
}
|
|
588
648
|
},
|
|
589
649
|
"& .M4LanguagePopover-containerItems": {
|
|
590
650
|
"& :nth-of-type(-n + 1)": {
|
|
591
|
-
gap: "
|
|
651
|
+
gap: "4px"
|
|
592
652
|
},
|
|
593
653
|
"& .M4LanguagePopover-labelItem": {
|
|
594
654
|
...o.typography.body,
|
|
595
655
|
color: o.palette.text.secondary,
|
|
596
656
|
borderRadius: "4px",
|
|
597
|
-
margin: "0"
|
|
598
|
-
paddingLeft: "4px"
|
|
657
|
+
margin: "0"
|
|
599
658
|
},
|
|
600
659
|
"& .MuiButtonBase-root": {
|
|
601
660
|
margin: "0",
|
|
602
661
|
borderRadius: "4px",
|
|
603
|
-
padding: "4px",
|
|
604
|
-
gap: "
|
|
662
|
+
padding: "2px 4px",
|
|
663
|
+
gap: "12px",
|
|
605
664
|
justifyContent: "normal !important"
|
|
606
665
|
},
|
|
607
666
|
"& .MuiButtonBase-root:hover": {
|
|
@@ -618,19 +677,28 @@ const p = (o) => ({
|
|
|
618
677
|
},
|
|
619
678
|
[o.breakpoints.down("md")]: {
|
|
620
679
|
".MuiPaper-root": {
|
|
621
|
-
padding: "
|
|
622
|
-
gap: "
|
|
680
|
+
padding: "12px",
|
|
681
|
+
gap: "4px",
|
|
623
682
|
"& .MuiButtonBase-root": {
|
|
624
683
|
justifyContent: "normal !important",
|
|
625
684
|
gap: "16px",
|
|
685
|
+
minHeight: "36px",
|
|
686
|
+
"& .M4LIcon-root": {
|
|
687
|
+
minHeight: "28px",
|
|
688
|
+
minWidth: "28px",
|
|
689
|
+
"& .M4LIcon-icon": {
|
|
690
|
+
minHeight: "20px",
|
|
691
|
+
minWidth: "20px"
|
|
692
|
+
}
|
|
693
|
+
},
|
|
626
694
|
"& .css-1qhcwcd": {
|
|
627
|
-
width: "
|
|
628
|
-
height: "
|
|
695
|
+
width: "20px",
|
|
696
|
+
height: "20px",
|
|
629
697
|
alignItems: "center",
|
|
630
698
|
justifyContent: "center",
|
|
631
699
|
"& .M4LImage-root": {
|
|
632
|
-
width: "
|
|
633
|
-
height: "
|
|
700
|
+
width: "20px !important",
|
|
701
|
+
height: "20px !important"
|
|
634
702
|
}
|
|
635
703
|
}
|
|
636
704
|
}
|
|
@@ -639,7 +707,7 @@ const p = (o) => ({
|
|
|
639
707
|
}
|
|
640
708
|
}
|
|
641
709
|
}
|
|
642
|
-
}),
|
|
710
|
+
}), L = (o) => ({
|
|
643
711
|
M4LErrorLabel: {
|
|
644
712
|
styleOverrides: {
|
|
645
713
|
["&.M4LHelperText-root"]: {
|
|
@@ -658,7 +726,7 @@ const p = (o) => ({
|
|
|
658
726
|
}
|
|
659
727
|
}
|
|
660
728
|
}
|
|
661
|
-
}),
|
|
729
|
+
}), h = (o) => ({
|
|
662
730
|
M4LTypography: {
|
|
663
731
|
styleOverrides: {
|
|
664
732
|
["&.M4LTypography-root"]: {
|
|
@@ -670,7 +738,7 @@ const p = (o) => ({
|
|
|
670
738
|
}
|
|
671
739
|
}
|
|
672
740
|
}
|
|
673
|
-
}),
|
|
741
|
+
}), f = (o) => ({
|
|
674
742
|
M4LButton: {
|
|
675
743
|
styleOverrides: {
|
|
676
744
|
"&.M4LButton-root": {
|
|
@@ -899,7 +967,7 @@ const p = (o) => ({
|
|
|
899
967
|
}
|
|
900
968
|
}
|
|
901
969
|
}
|
|
902
|
-
}),
|
|
970
|
+
}), w = (o) => ({
|
|
903
971
|
M4LNavLink: {
|
|
904
972
|
styleOverrides: {
|
|
905
973
|
["&.M4LNavLink-root"]: {
|
|
@@ -919,7 +987,7 @@ const p = (o) => ({
|
|
|
919
987
|
}
|
|
920
988
|
}
|
|
921
989
|
}
|
|
922
|
-
}),
|
|
990
|
+
}), v = (o) => ({
|
|
923
991
|
M4LSideBar: {
|
|
924
992
|
styleOverrides: {
|
|
925
993
|
"&.M4LSideBar-root": {
|
|
@@ -944,6 +1012,8 @@ const p = (o) => ({
|
|
|
944
1012
|
display: "flex",
|
|
945
1013
|
justifyContent: "center",
|
|
946
1014
|
width: "100%",
|
|
1015
|
+
minHeight: "28px",
|
|
1016
|
+
alignItems: "center",
|
|
947
1017
|
"& .M4LSideBar-navItemRootContent": {
|
|
948
1018
|
padding: "0",
|
|
949
1019
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
@@ -952,7 +1022,10 @@ const p = (o) => ({
|
|
|
952
1022
|
height: "24px",
|
|
953
1023
|
minWidth: "24px",
|
|
954
1024
|
margin: "1px 0 1px 8px",
|
|
955
|
-
"& .M4LIcon-root": {
|
|
1025
|
+
"& .M4LIcon-root": {
|
|
1026
|
+
minWidth: "20px",
|
|
1027
|
+
minHeight: "20px"
|
|
1028
|
+
}
|
|
956
1029
|
}
|
|
957
1030
|
}
|
|
958
1031
|
}
|
|
@@ -960,6 +1033,14 @@ const p = (o) => ({
|
|
|
960
1033
|
},
|
|
961
1034
|
"& .M4LSideBar-collapseButton": {
|
|
962
1035
|
padding: "12px",
|
|
1036
|
+
"& .M4LSideBar-containerLogoButtonIcon": {
|
|
1037
|
+
"& .M4LIconButton-root": {
|
|
1038
|
+
"& .MuiButtonBase-root": {
|
|
1039
|
+
height: "24px",
|
|
1040
|
+
width: "24px"
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
963
1044
|
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
964
1045
|
display: "none"
|
|
965
1046
|
}
|
|
@@ -1028,7 +1109,8 @@ const p = (o) => ({
|
|
|
1028
1109
|
gap: "8px"
|
|
1029
1110
|
},
|
|
1030
1111
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1031
|
-
height: "
|
|
1112
|
+
height: "28px",
|
|
1113
|
+
padding: "0px 0px 0px 12px",
|
|
1032
1114
|
"& .M4LTypography-root": {
|
|
1033
1115
|
display: "flex",
|
|
1034
1116
|
width: "100%",
|
|
@@ -1037,7 +1119,8 @@ const p = (o) => ({
|
|
|
1037
1119
|
overflow: "hidden",
|
|
1038
1120
|
textOverflow: "ellipsis",
|
|
1039
1121
|
textWrap: "nowrap",
|
|
1040
|
-
...o.typography.
|
|
1122
|
+
...o.typography.paragraphDens,
|
|
1123
|
+
textTransform: "capitalize"
|
|
1041
1124
|
}
|
|
1042
1125
|
}
|
|
1043
1126
|
},
|
|
@@ -1047,10 +1130,27 @@ const p = (o) => ({
|
|
|
1047
1130
|
justifyContent: "center",
|
|
1048
1131
|
flexDirection: "column",
|
|
1049
1132
|
gap: "4px",
|
|
1050
|
-
|
|
1133
|
+
height: "auto",
|
|
1134
|
+
marginBottom: "2px",
|
|
1051
1135
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1052
1136
|
backgroundColor: "transparent",
|
|
1053
1137
|
borderRadius: "4px",
|
|
1138
|
+
"& .M4LSideBar-navItemRootContent": {
|
|
1139
|
+
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1140
|
+
alignItems: "center",
|
|
1141
|
+
gap: "16px",
|
|
1142
|
+
"& .M4LIcon-icon": {
|
|
1143
|
+
minWidth: "20px",
|
|
1144
|
+
minHeight: "20px"
|
|
1145
|
+
},
|
|
1146
|
+
"& .M4LTypography-root": {
|
|
1147
|
+
"& .MuiTypography-root": {}
|
|
1148
|
+
},
|
|
1149
|
+
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1150
|
+
backgroundColor: o.palette.state.focus
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
},
|
|
1054
1154
|
"&:hover": {
|
|
1055
1155
|
background: o.palette.state.default,
|
|
1056
1156
|
cursor: "pointer"
|
|
@@ -1058,7 +1158,7 @@ const p = (o) => ({
|
|
|
1058
1158
|
},
|
|
1059
1159
|
"&.M4LSideBar-itemMainActive": {
|
|
1060
1160
|
borderRadius: "4px",
|
|
1061
|
-
height: "
|
|
1161
|
+
height: "auto",
|
|
1062
1162
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1063
1163
|
background: o.palette.state.active12,
|
|
1064
1164
|
"&:hover": {
|
|
@@ -1067,7 +1167,9 @@ const p = (o) => ({
|
|
|
1067
1167
|
}
|
|
1068
1168
|
},
|
|
1069
1169
|
"& .M4LSideBar-navItemRootContent": {
|
|
1170
|
+
alignItems: "center",
|
|
1070
1171
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1172
|
+
alignItems: "center",
|
|
1071
1173
|
"& .M4LIcon-icon": {
|
|
1072
1174
|
backgroundColor: o.palette.state.focus
|
|
1073
1175
|
},
|
|
@@ -1166,9 +1268,10 @@ const p = (o) => ({
|
|
|
1166
1268
|
"& .M4LSideBar-subItemActive": {
|
|
1167
1269
|
"& .MuiButtonBase-root": {
|
|
1168
1270
|
"& .M4LIcon-root": {
|
|
1169
|
-
"& .M4LIcon-icon": {
|
|
1170
|
-
|
|
1171
|
-
|
|
1271
|
+
"& .M4LIcon-icon": {}
|
|
1272
|
+
},
|
|
1273
|
+
"& .M4LTypography-root": {
|
|
1274
|
+
"& .MuiTypography-root": {}
|
|
1172
1275
|
}
|
|
1173
1276
|
},
|
|
1174
1277
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
@@ -1185,7 +1288,6 @@ const p = (o) => ({
|
|
|
1185
1288
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
1186
1289
|
gap: "12px",
|
|
1187
1290
|
margin: "0px 0px 0px 0px",
|
|
1188
|
-
padding: "16px",
|
|
1189
1291
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1190
1292
|
minWidth: "5px",
|
|
1191
1293
|
minHeight: "5px",
|
|
@@ -1203,6 +1305,14 @@ const p = (o) => ({
|
|
|
1203
1305
|
textOverflow: "ellipsis",
|
|
1204
1306
|
textWrap: "nowrap"
|
|
1205
1307
|
}
|
|
1308
|
+
},
|
|
1309
|
+
"&.M4LSideBar-subItemActive.M4LSideBar-navSubItemContentRoot": {
|
|
1310
|
+
"& .M4LTypography-root": {
|
|
1311
|
+
color: o.palette.state.active,
|
|
1312
|
+
"& .MuiTypography-root": {
|
|
1313
|
+
color: o.palette.state.active
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1206
1316
|
}
|
|
1207
1317
|
}
|
|
1208
1318
|
},
|
|
@@ -1224,7 +1334,7 @@ const p = (o) => ({
|
|
|
1224
1334
|
gap: "24px",
|
|
1225
1335
|
alignItems: "center",
|
|
1226
1336
|
height: "48px",
|
|
1227
|
-
width: "
|
|
1337
|
+
width: "240px",
|
|
1228
1338
|
minHeight: "48px",
|
|
1229
1339
|
flexDirection: "row-reverse",
|
|
1230
1340
|
"& .M4LSideBar-containerLogoButton": {
|
|
@@ -1235,7 +1345,7 @@ const p = (o) => ({
|
|
|
1235
1345
|
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
1236
1346
|
width: "120px",
|
|
1237
1347
|
height: "24px",
|
|
1238
|
-
display: "
|
|
1348
|
+
display: "none",
|
|
1239
1349
|
alignItems: "center",
|
|
1240
1350
|
background: o.palette.background.default,
|
|
1241
1351
|
borderRadius: "4px"
|
|
@@ -1245,7 +1355,13 @@ const p = (o) => ({
|
|
|
1245
1355
|
justifyContent: "center",
|
|
1246
1356
|
alignItems: "center",
|
|
1247
1357
|
width: "24px",
|
|
1248
|
-
height: "24px"
|
|
1358
|
+
height: "24px",
|
|
1359
|
+
"& .M4LIconButton-root": {
|
|
1360
|
+
"& .MuiButtonBase-root": {
|
|
1361
|
+
height: "24px",
|
|
1362
|
+
width: "24px"
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1249
1365
|
}
|
|
1250
1366
|
}
|
|
1251
1367
|
}
|
|
@@ -1338,6 +1454,7 @@ const p = (o) => ({
|
|
|
1338
1454
|
height: "100%",
|
|
1339
1455
|
display: "flex",
|
|
1340
1456
|
flexDirection: "column",
|
|
1457
|
+
paddingTop: "24px",
|
|
1341
1458
|
"& .M4LSideBar-containerSideBarLogo": {
|
|
1342
1459
|
display: "flex",
|
|
1343
1460
|
justifyContent: "flex-start",
|
|
@@ -1387,9 +1504,10 @@ const p = (o) => ({
|
|
|
1387
1504
|
},
|
|
1388
1505
|
"& .M4LSideBar-wrapperGroup": {
|
|
1389
1506
|
height: "100%",
|
|
1390
|
-
|
|
1507
|
+
padding: "0px 8px",
|
|
1391
1508
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1392
|
-
height: "
|
|
1509
|
+
height: "28px",
|
|
1510
|
+
padding: "0px 0px 0px 12px",
|
|
1393
1511
|
"& .M4LTypography-root": {
|
|
1394
1512
|
display: "flex",
|
|
1395
1513
|
width: "100%",
|
|
@@ -1398,7 +1516,8 @@ const p = (o) => ({
|
|
|
1398
1516
|
overflow: "hidden",
|
|
1399
1517
|
textOverflow: "ellipsis",
|
|
1400
1518
|
textWrap: "nowrap",
|
|
1401
|
-
...o.typography.bodyDens
|
|
1519
|
+
...o.typography.bodyDens,
|
|
1520
|
+
textTransform: "capitalize"
|
|
1402
1521
|
}
|
|
1403
1522
|
}
|
|
1404
1523
|
},
|
|
@@ -1407,11 +1526,29 @@ const p = (o) => ({
|
|
|
1407
1526
|
borderRadius: "4px 0px 0px 4px",
|
|
1408
1527
|
justifyContent: "center",
|
|
1409
1528
|
flexDirection: "column",
|
|
1410
|
-
|
|
1529
|
+
paddingBottom: "4px",
|
|
1411
1530
|
gap: "4px",
|
|
1531
|
+
height: "auto",
|
|
1412
1532
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1413
1533
|
backgroundColor: "transparent",
|
|
1414
1534
|
borderRadius: "4px",
|
|
1535
|
+
"& .M4LSideBar-navItemRootContent": {
|
|
1536
|
+
padding: "8px 8px 8px 12px",
|
|
1537
|
+
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1538
|
+
alignItems: "center",
|
|
1539
|
+
gap: "16px",
|
|
1540
|
+
"& .M4LIcon-icon": {
|
|
1541
|
+
minWidth: "24px",
|
|
1542
|
+
minHeight: "24px"
|
|
1543
|
+
},
|
|
1544
|
+
"& .M4LTypography-root": {
|
|
1545
|
+
"& .MuiTypography-root": {}
|
|
1546
|
+
},
|
|
1547
|
+
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1548
|
+
backgroundColor: o.palette.state.focus
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1415
1552
|
"&:hover": {
|
|
1416
1553
|
background: o.palette.state.default,
|
|
1417
1554
|
cursor: "pointer"
|
|
@@ -1427,7 +1564,9 @@ const p = (o) => ({
|
|
|
1427
1564
|
}
|
|
1428
1565
|
},
|
|
1429
1566
|
"& .M4LSideBar-navItemRootContent": {
|
|
1567
|
+
alignItems: "center",
|
|
1430
1568
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1569
|
+
alignItems: "center",
|
|
1431
1570
|
"& .M4LIcon-icon": {
|
|
1432
1571
|
backgroundColor: o.palette.state.focus
|
|
1433
1572
|
},
|
|
@@ -1449,10 +1588,10 @@ const p = (o) => ({
|
|
|
1449
1588
|
},
|
|
1450
1589
|
"&::before": {
|
|
1451
1590
|
content: '""',
|
|
1452
|
-
width: "
|
|
1591
|
+
width: "2px",
|
|
1453
1592
|
top: "0px",
|
|
1454
1593
|
bottom: "0px",
|
|
1455
|
-
|
|
1594
|
+
left: "0px",
|
|
1456
1595
|
backgroundColor: o.palette.state.focus,
|
|
1457
1596
|
borderRadius: "4px 0px 0px 4px",
|
|
1458
1597
|
position: "absolute"
|
|
@@ -1577,7 +1716,7 @@ const p = (o) => ({
|
|
|
1577
1716
|
display: "flex",
|
|
1578
1717
|
paddingTop: "12px",
|
|
1579
1718
|
borderTop: "1px solid",
|
|
1580
|
-
borderColor: o.palette.state.
|
|
1719
|
+
borderColor: o.palette.state.hoverDefault,
|
|
1581
1720
|
justifyContent: "flex-end",
|
|
1582
1721
|
marginRight: "14px",
|
|
1583
1722
|
marginLeft: "14px",
|
|
@@ -1603,23 +1742,23 @@ const p = (o) => ({
|
|
|
1603
1742
|
}
|
|
1604
1743
|
}
|
|
1605
1744
|
}
|
|
1606
|
-
}),
|
|
1745
|
+
}), m = (o) => ({
|
|
1607
1746
|
M4LAreasAdmin: {
|
|
1608
1747
|
styleOverrides: {
|
|
1609
1748
|
"&.M4LAreasAdmin-root": {
|
|
1610
1749
|
flex: 1,
|
|
1611
1750
|
display: "flex",
|
|
1612
1751
|
flexDirection: "row",
|
|
1613
|
-
overflow: "
|
|
1752
|
+
overflow: "hidden",
|
|
1614
1753
|
height: "auto",
|
|
1615
|
-
|
|
1616
|
-
paddingRight: "6px",
|
|
1754
|
+
padding: "0px 12px",
|
|
1617
1755
|
alignItems: "center",
|
|
1618
1756
|
justifyContent: "space-between",
|
|
1619
|
-
width: "
|
|
1620
|
-
maxWidth: "fit-content",
|
|
1757
|
+
width: "100%",
|
|
1621
1758
|
gap: "8px",
|
|
1622
|
-
|
|
1759
|
+
borderRight: "1px solid",
|
|
1760
|
+
borderLeft: "1px solid",
|
|
1761
|
+
borderColor: o.palette.state.borderPrimary,
|
|
1623
1762
|
[o.breakpoints.down("sm")]: {
|
|
1624
1763
|
boxShadow: o.customShadows.z1,
|
|
1625
1764
|
paddingRight: "0px",
|
|
@@ -1628,16 +1767,19 @@ const p = (o) => ({
|
|
|
1628
1767
|
gap: "0px",
|
|
1629
1768
|
borderRadius: "4px",
|
|
1630
1769
|
height: "100%",
|
|
1631
|
-
overflow: "hidden"
|
|
1770
|
+
overflow: "hidden",
|
|
1771
|
+
borderRight: "0px",
|
|
1772
|
+
borderLeft: "0px",
|
|
1773
|
+
borderColor: "transparent"
|
|
1632
1774
|
},
|
|
1633
1775
|
"& .M4LAreasAdmin-rootContent": {
|
|
1634
1776
|
display: "flex",
|
|
1635
|
-
|
|
1636
|
-
|
|
1777
|
+
flexDirection: "row-reverse",
|
|
1778
|
+
width: "100%",
|
|
1637
1779
|
overflow: "auto",
|
|
1638
1780
|
justifyContent: "center",
|
|
1639
1781
|
alignItems: "center",
|
|
1640
|
-
gap: "
|
|
1782
|
+
gap: "8px",
|
|
1641
1783
|
minHeight: "36px",
|
|
1642
1784
|
boxShadow: "none",
|
|
1643
1785
|
[o.breakpoints.down("sm")]: {
|
|
@@ -1674,12 +1816,13 @@ const p = (o) => ({
|
|
|
1674
1816
|
zIndex: "10000"
|
|
1675
1817
|
},
|
|
1676
1818
|
"& .M4LAreasAdmin-areaContainerChipsIcon": {
|
|
1819
|
+
flexGrow: "1",
|
|
1677
1820
|
display: "flex",
|
|
1678
1821
|
flexDirection: "row",
|
|
1679
1822
|
width: "100%",
|
|
1680
1823
|
overflow: "auto",
|
|
1681
|
-
height: "
|
|
1682
|
-
borderColor: o.palette.state.
|
|
1824
|
+
height: "36px",
|
|
1825
|
+
borderColor: o.palette.state.hoverDefault,
|
|
1683
1826
|
[o.breakpoints.down("sm")]: {
|
|
1684
1827
|
background: "none",
|
|
1685
1828
|
borderRight: "none",
|
|
@@ -1706,8 +1849,8 @@ const p = (o) => ({
|
|
|
1706
1849
|
overflow: "auto",
|
|
1707
1850
|
gap: "8px",
|
|
1708
1851
|
paddingLeft: "0px",
|
|
1709
|
-
paddingRight: "
|
|
1710
|
-
width: "
|
|
1852
|
+
paddingRight: "0px",
|
|
1853
|
+
width: "100%",
|
|
1711
1854
|
height: "auto",
|
|
1712
1855
|
alignItems: "center",
|
|
1713
1856
|
[o.breakpoints.down("sm")]: {
|
|
@@ -1718,25 +1861,27 @@ const p = (o) => ({
|
|
|
1718
1861
|
"& .M4LAreasAdmin-areaContainerContentChips": {
|
|
1719
1862
|
display: "flex",
|
|
1720
1863
|
flexDirection: "row",
|
|
1721
|
-
width: "
|
|
1864
|
+
width: "100%",
|
|
1722
1865
|
height: "100%",
|
|
1723
1866
|
justifyContent: "space-between",
|
|
1724
1867
|
alignItems: "center",
|
|
1868
|
+
overflow: "visible",
|
|
1725
1869
|
[o.breakpoints.down("sm")]: {
|
|
1726
1870
|
width: "100%",
|
|
1727
|
-
background: "none"
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
alignItems: "center"
|
|
1871
|
+
background: "none",
|
|
1872
|
+
"&.M4LAreasAdmin-areaContainerContentChips > div": {
|
|
1873
|
+
borderColor: "transparent"
|
|
1874
|
+
}
|
|
1732
1875
|
},
|
|
1733
1876
|
"& .M4LAreasAdmin-areaContentChips": {
|
|
1734
1877
|
display: "flex",
|
|
1735
1878
|
width: "fit-content",
|
|
1736
|
-
height: "
|
|
1879
|
+
height: "auto",
|
|
1880
|
+
minHeight: "36px",
|
|
1737
1881
|
alignItems: "center",
|
|
1738
1882
|
gap: "4px",
|
|
1739
1883
|
paddingRight: "4px",
|
|
1884
|
+
overflow: "hidden",
|
|
1740
1885
|
[o.breakpoints.down("sm")]: {
|
|
1741
1886
|
height: "44px"
|
|
1742
1887
|
}
|
|
@@ -1761,64 +1906,35 @@ const p = (o) => ({
|
|
|
1761
1906
|
}
|
|
1762
1907
|
}
|
|
1763
1908
|
},
|
|
1764
|
-
"& .
|
|
1765
|
-
|
|
1909
|
+
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1910
|
+
margin: "0px",
|
|
1911
|
+
borderRadius: "4px",
|
|
1912
|
+
overflow: "hidden",
|
|
1913
|
+
width: "100%",
|
|
1766
1914
|
maxWidth: "100%",
|
|
1915
|
+
cursor: "pointer",
|
|
1916
|
+
"&:hover": {
|
|
1917
|
+
background: o.palette.state.hoverDefault
|
|
1918
|
+
},
|
|
1767
1919
|
[o.breakpoints.down("sm")]: {
|
|
1920
|
+
background: "none",
|
|
1921
|
+
border: "none",
|
|
1922
|
+
boxShadow: "none",
|
|
1768
1923
|
width: "100%"
|
|
1769
1924
|
}
|
|
1770
1925
|
},
|
|
1771
|
-
"& .simplebar-height-auto-observer-wrapper": {
|
|
1772
|
-
width: "fit-content",
|
|
1773
|
-
maxWidth: "100%",
|
|
1774
|
-
overflow: "auto"
|
|
1775
|
-
},
|
|
1776
|
-
"& .simplebar-mask": {
|
|
1777
|
-
"& .simplebar-offset": {
|
|
1778
|
-
"& .simplebar-content-wrapper": {
|
|
1779
|
-
width: "fit-content",
|
|
1780
|
-
maxWidth: "100%",
|
|
1781
|
-
overflow: "auto",
|
|
1782
|
-
"& .simplebar-content": {
|
|
1783
|
-
width: "fit-content",
|
|
1784
|
-
overflow: "auto"
|
|
1785
|
-
}
|
|
1786
|
-
}
|
|
1787
|
-
}
|
|
1788
|
-
},
|
|
1789
|
-
"& .simplebar-content-wrapper": {
|
|
1790
|
-
width: "fit-content",
|
|
1791
|
-
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1792
|
-
margin: "0px",
|
|
1793
|
-
borderRadius: "4px",
|
|
1794
|
-
overflow: "hidden",
|
|
1795
|
-
width: "fit-content",
|
|
1796
|
-
cursor: "pointer",
|
|
1797
|
-
[o.breakpoints.down("sm")]: {
|
|
1798
|
-
background: "none",
|
|
1799
|
-
border: "none",
|
|
1800
|
-
boxShadow: "none",
|
|
1801
|
-
width: "100%"
|
|
1802
|
-
}
|
|
1803
|
-
}
|
|
1804
|
-
},
|
|
1805
1926
|
"& .M4LAreasAdmin-areaChipMobileRoot": {
|
|
1806
1927
|
display: "flex",
|
|
1807
1928
|
overflow: "hidden",
|
|
1808
1929
|
width: "100%",
|
|
1809
1930
|
backgroundColor: o.palette.state.default,
|
|
1810
|
-
boxShadow: o.customShadows.z2,
|
|
1811
1931
|
borderTop: "1.5px solid",
|
|
1812
1932
|
borderColor: o.palette.state.borderTop,
|
|
1813
1933
|
borderRadius: "4px",
|
|
1814
1934
|
[o.breakpoints.down("sm")]: {
|
|
1815
1935
|
backgroundColor: o.palette.background.default,
|
|
1816
|
-
boxShadow: o.customShadows.z1,
|
|
1817
1936
|
width: "100%"
|
|
1818
1937
|
},
|
|
1819
|
-
"&:hover": {
|
|
1820
|
-
background: o.palette.state.active12
|
|
1821
|
-
},
|
|
1822
1938
|
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1823
1939
|
margin: "0px",
|
|
1824
1940
|
borderRadius: "4px 0px 0px 4px",
|
|
@@ -1852,6 +1968,9 @@ const p = (o) => ({
|
|
|
1852
1968
|
"& .M4LIconButton-root": {
|
|
1853
1969
|
background: "transparent",
|
|
1854
1970
|
backgroundColor: "transparent",
|
|
1971
|
+
"&:hover": {
|
|
1972
|
+
background: o.palette.state.active12
|
|
1973
|
+
},
|
|
1855
1974
|
"& .M4LIcon-icon": {}
|
|
1856
1975
|
}
|
|
1857
1976
|
},
|
|
@@ -1860,11 +1979,7 @@ const p = (o) => ({
|
|
|
1860
1979
|
alignItems: "center",
|
|
1861
1980
|
height: "100%"
|
|
1862
1981
|
},
|
|
1863
|
-
"& .
|
|
1864
|
-
display: "flex",
|
|
1865
|
-
alignItems: "center"
|
|
1866
|
-
},
|
|
1867
|
-
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1982
|
+
"& .M4LAreasAdmin-areaChipRoot": {
|
|
1868
1983
|
display: "flex",
|
|
1869
1984
|
background: o.palette.background.default,
|
|
1870
1985
|
borderRadius: "4px 4px 4px 4px",
|
|
@@ -1884,9 +1999,15 @@ const p = (o) => ({
|
|
|
1884
1999
|
...o.typography.body,
|
|
1885
2000
|
color: o.palette.text.primary,
|
|
1886
2001
|
height: "22px",
|
|
2002
|
+
"&:hover": {
|
|
2003
|
+
background: o.palette.state.hover
|
|
2004
|
+
},
|
|
1887
2005
|
[o.breakpoints.down("sm")]: {
|
|
1888
2006
|
height: "auto",
|
|
1889
|
-
background: "none"
|
|
2007
|
+
background: "none",
|
|
2008
|
+
"&:hover": {
|
|
2009
|
+
background: o.palette.state.hoverDefault
|
|
2010
|
+
}
|
|
1890
2011
|
},
|
|
1891
2012
|
"& .M4LAreasAdmin-areaChipTitle": {
|
|
1892
2013
|
backgroundColor: "transparent",
|
|
@@ -1910,6 +2031,9 @@ const p = (o) => ({
|
|
|
1910
2031
|
}
|
|
1911
2032
|
},
|
|
1912
2033
|
"& .M4LIconButton-root": {
|
|
2034
|
+
"&:hover": {
|
|
2035
|
+
background: o.palette.state.active
|
|
2036
|
+
},
|
|
1913
2037
|
[o.breakpoints.down("sm")]: {
|
|
1914
2038
|
color: o.palette.text.primary
|
|
1915
2039
|
},
|
|
@@ -1956,12 +2080,17 @@ const p = (o) => ({
|
|
|
1956
2080
|
}
|
|
1957
2081
|
},
|
|
1958
2082
|
"& .M4LAreasAdmin-areasPopoverListWindowsIcon": {
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
2083
|
+
borderRadius: "4px",
|
|
2084
|
+
"& .MuiButtonBase-root": {
|
|
2085
|
+
width: "100%",
|
|
2086
|
+
height: "28px",
|
|
2087
|
+
borderLeft: "1px solid",
|
|
2088
|
+
borderColor: o.palette.state.borderSecondary,
|
|
2089
|
+
borderRadius: "0px"
|
|
2090
|
+
}
|
|
1963
2091
|
},
|
|
1964
2092
|
"& .M4LAreasAdmin-areasAddButton": {
|
|
2093
|
+
flexGrow: "2",
|
|
1965
2094
|
background: o.palette.state.default
|
|
1966
2095
|
},
|
|
1967
2096
|
"&.M4LAreasAdmin-isMobile": {
|
|
@@ -1970,7 +2099,6 @@ const p = (o) => ({
|
|
|
1970
2099
|
width: "100%",
|
|
1971
2100
|
"& .M4LAreasAdmin-areaContainerChips": {
|
|
1972
2101
|
width: "100%",
|
|
1973
|
-
overflow: "hidden",
|
|
1974
2102
|
background: "none",
|
|
1975
2103
|
boxShadow: "none"
|
|
1976
2104
|
}
|
|
@@ -1984,10 +2112,41 @@ const p = (o) => ({
|
|
|
1984
2112
|
"&.M4LAreasAdmin-areaEditPopover": {
|
|
1985
2113
|
"& .MuiPaper-root": {
|
|
1986
2114
|
width: "200px",
|
|
2115
|
+
padding: "12px",
|
|
1987
2116
|
"& .M4LRHFormProvider-root": {
|
|
1988
|
-
|
|
2117
|
+
gap: "8px",
|
|
2118
|
+
"& .css-l4lb1c": {
|
|
2119
|
+
minHeight: "24px",
|
|
2120
|
+
border: "0px",
|
|
2121
|
+
"& .M4LTypography-root": {
|
|
2122
|
+
height: "100%",
|
|
2123
|
+
"& .MuiTypography-root": {
|
|
2124
|
+
height: "100%",
|
|
2125
|
+
display: "flex",
|
|
2126
|
+
alignItems: "center"
|
|
2127
|
+
}
|
|
2128
|
+
},
|
|
2129
|
+
"& .M4LIconButton-root": {
|
|
2130
|
+
"& .MuiButtonBase-root": {
|
|
2131
|
+
padding: "0px",
|
|
2132
|
+
justifyContent: "inherit"
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"& .M4LRHFTextField-root": {
|
|
2137
|
+
"& .MuiFormControl-root": {
|
|
2138
|
+
marginTop: "0px"
|
|
2139
|
+
}
|
|
2140
|
+
},
|
|
1989
2141
|
"& .M4LCommonActions-root": {
|
|
1990
|
-
padding: "
|
|
2142
|
+
padding: "8px 0 0px 0px",
|
|
2143
|
+
"& .M4LButton-root": {
|
|
2144
|
+
padding: "0px",
|
|
2145
|
+
height: "24px",
|
|
2146
|
+
"& .MuiButtonBase-root": {
|
|
2147
|
+
justifyContent: "center !important"
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
1991
2150
|
}
|
|
1992
2151
|
}
|
|
1993
2152
|
}
|
|
@@ -2017,7 +2176,7 @@ const p = (o) => ({
|
|
|
2017
2176
|
}
|
|
2018
2177
|
}
|
|
2019
2178
|
}
|
|
2020
|
-
}),
|
|
2179
|
+
}), C = (o) => ({
|
|
2021
2180
|
M4LAreasViewer: {
|
|
2022
2181
|
styleOverrides: {
|
|
2023
2182
|
"&.M4LAreasViewer-root": {
|
|
@@ -2360,7 +2519,7 @@ const p = (o) => ({
|
|
|
2360
2519
|
},
|
|
2361
2520
|
"&.M4LGridLayout-colapsed ": {
|
|
2362
2521
|
"& .M4LAreasViewer-windowRoot": {
|
|
2363
|
-
borderColor: o.palette.state.
|
|
2522
|
+
borderColor: o.palette.state.hoverDefault,
|
|
2364
2523
|
boxShadow: o.customShadows.z1
|
|
2365
2524
|
}
|
|
2366
2525
|
},
|
|
@@ -2420,7 +2579,7 @@ const p = (o) => ({
|
|
|
2420
2579
|
padding: "4px",
|
|
2421
2580
|
background: o.palette.background.default,
|
|
2422
2581
|
borderRadius: "4px",
|
|
2423
|
-
borderColor: o.palette.state.
|
|
2582
|
+
borderColor: o.palette.state.hoverDefault,
|
|
2424
2583
|
"&:not(.M4LAreasViewer-loading)": {
|
|
2425
2584
|
"& .M4LinearProgressIndeterminate-root": {
|
|
2426
2585
|
opacity: 0
|
|
@@ -2671,17 +2830,18 @@ const p = (o) => ({
|
|
|
2671
2830
|
minHeight: "11px",
|
|
2672
2831
|
boxShadow: o.customShadows.z2,
|
|
2673
2832
|
border: "1px solid",
|
|
2674
|
-
borderColor: o.palette.state.
|
|
2833
|
+
borderColor: o.palette.state.hoverDefault
|
|
2675
2834
|
}
|
|
2676
2835
|
}
|
|
2677
2836
|
}
|
|
2678
2837
|
}
|
|
2679
|
-
}),
|
|
2838
|
+
}), k = (o) => ({
|
|
2680
2839
|
M4LAppBar: {
|
|
2681
2840
|
styleOverrides: {
|
|
2682
2841
|
"&.M4LAppBar-root": {
|
|
2683
2842
|
display: "flex",
|
|
2684
|
-
width: "
|
|
2843
|
+
width: "100vw",
|
|
2844
|
+
maxWidth: "100vw !important",
|
|
2685
2845
|
overflow: "hidden",
|
|
2686
2846
|
minHeight: "52px",
|
|
2687
2847
|
height: "52px",
|
|
@@ -2709,6 +2869,7 @@ const p = (o) => ({
|
|
|
2709
2869
|
display: "flex",
|
|
2710
2870
|
alignItems: "center",
|
|
2711
2871
|
gap: "12px",
|
|
2872
|
+
width: "163px",
|
|
2712
2873
|
"& .M4LTypography-root": {
|
|
2713
2874
|
textWrap: "nowrap",
|
|
2714
2875
|
textTransform: "uppercase"
|
|
@@ -2748,11 +2909,17 @@ const p = (o) => ({
|
|
|
2748
2909
|
}
|
|
2749
2910
|
},
|
|
2750
2911
|
"& .M4LAppBar-containerChilds": {
|
|
2912
|
+
flexGrow: "1",
|
|
2751
2913
|
display: "flex",
|
|
2752
2914
|
flexDirection: "row",
|
|
2753
2915
|
gap: "12px",
|
|
2754
2916
|
width: "100%",
|
|
2755
2917
|
justifyContent: "space-between",
|
|
2918
|
+
overflow: "hidden",
|
|
2919
|
+
alignItems: "center",
|
|
2920
|
+
borderRadius: "4px",
|
|
2921
|
+
background: "none",
|
|
2922
|
+
boxShadow: "none",
|
|
2756
2923
|
[o.breakpoints.down("sm")]: {
|
|
2757
2924
|
display: "flex",
|
|
2758
2925
|
alignItems: "center",
|
|
@@ -2762,33 +2929,34 @@ const p = (o) => ({
|
|
|
2762
2929
|
background: "none",
|
|
2763
2930
|
boxShadow: "none",
|
|
2764
2931
|
paddingRight: "0px",
|
|
2765
|
-
borderRadius: "6px"
|
|
2932
|
+
borderRadius: "6px",
|
|
2933
|
+
gap: "8px"
|
|
2766
2934
|
},
|
|
2767
|
-
"& .
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
boxShadow: "none",
|
|
2784
|
-
borderTop: "0px"
|
|
2935
|
+
"& .M4LanguagePopover-root": {
|
|
2936
|
+
"& .M4LImageButton-root": {
|
|
2937
|
+
"& .MuiButtonBase-root": {
|
|
2938
|
+
width: "28px",
|
|
2939
|
+
height: "28px"
|
|
2940
|
+
}
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
"& .M4LAvatar-root": {
|
|
2944
|
+
width: "28px",
|
|
2945
|
+
height: "28px",
|
|
2946
|
+
padding: "4px",
|
|
2947
|
+
"& .MuiAvatar-root": {
|
|
2948
|
+
width: "20px",
|
|
2949
|
+
height: "20px",
|
|
2950
|
+
fontSize: "12px"
|
|
2785
2951
|
},
|
|
2786
|
-
|
|
2952
|
+
[o.breakpoints.down("sm")]: {
|
|
2787
2953
|
width: "36px",
|
|
2788
2954
|
height: "36px",
|
|
2955
|
+
padding: "4px",
|
|
2789
2956
|
"& .MuiAvatar-root": {
|
|
2790
|
-
width: "
|
|
2791
|
-
height: "
|
|
2957
|
+
width: "28px",
|
|
2958
|
+
height: "28px",
|
|
2959
|
+
fontSize: "15px"
|
|
2792
2960
|
}
|
|
2793
2961
|
}
|
|
2794
2962
|
}
|
|
@@ -2796,7 +2964,7 @@ const p = (o) => ({
|
|
|
2796
2964
|
}
|
|
2797
2965
|
}
|
|
2798
2966
|
}
|
|
2799
|
-
}),
|
|
2967
|
+
}), I = (o) => ({
|
|
2800
2968
|
M4LAvatar: {
|
|
2801
2969
|
styleOverrides: {
|
|
2802
2970
|
"&.M4LAvatar-root": {
|
|
@@ -2818,7 +2986,7 @@ const p = (o) => ({
|
|
|
2818
2986
|
}
|
|
2819
2987
|
}
|
|
2820
2988
|
}
|
|
2821
|
-
}),
|
|
2989
|
+
}), B = (o) => ({
|
|
2822
2990
|
M4LAccountPopover: {
|
|
2823
2991
|
styleOverrides: {
|
|
2824
2992
|
"&.M4LAccountPopover-root": {
|
|
@@ -2837,7 +3005,7 @@ const p = (o) => ({
|
|
|
2837
3005
|
"& .MuiPaper-root": {
|
|
2838
3006
|
display: "flex",
|
|
2839
3007
|
flexDirection: "column",
|
|
2840
|
-
gap: "
|
|
3008
|
+
gap: "4px",
|
|
2841
3009
|
padding: "12px",
|
|
2842
3010
|
borderRadius: "6px",
|
|
2843
3011
|
boxShadow: o.customShadows.z3,
|
|
@@ -2845,12 +3013,12 @@ const p = (o) => ({
|
|
|
2845
3013
|
"& .M4LAccountPopover-containerUserInfo": {
|
|
2846
3014
|
display: "flex",
|
|
2847
3015
|
flexDirection: "column",
|
|
2848
|
-
gap: "
|
|
3016
|
+
gap: "4px",
|
|
2849
3017
|
"& .M4LAccountPopover-containerUserName": {
|
|
2850
3018
|
display: "flex",
|
|
2851
3019
|
flexDirection: "row",
|
|
2852
|
-
gap: "
|
|
2853
|
-
padding: "
|
|
3020
|
+
gap: "12px",
|
|
3021
|
+
padding: "2px 4px",
|
|
2854
3022
|
"& .M4LIcon-root": {
|
|
2855
3023
|
minWidth: "16px",
|
|
2856
3024
|
minHeight: "16px"
|
|
@@ -2867,8 +3035,8 @@ const p = (o) => ({
|
|
|
2867
3035
|
"& .M4LAccountPopover-containerUserEmail": {
|
|
2868
3036
|
display: "flex",
|
|
2869
3037
|
flexDirection: "row",
|
|
2870
|
-
gap: "
|
|
2871
|
-
padding: "
|
|
3038
|
+
gap: "12px",
|
|
3039
|
+
padding: "2px 4px",
|
|
2872
3040
|
"& .M4LIcon-root": {
|
|
2873
3041
|
minWidth: "16px",
|
|
2874
3042
|
minHeight: "16px"
|
|
@@ -2886,8 +3054,8 @@ const p = (o) => ({
|
|
|
2886
3054
|
"& .M4LAccountPopover-containerAppVersion": {
|
|
2887
3055
|
display: "flex",
|
|
2888
3056
|
flexDirection: "row",
|
|
2889
|
-
gap: "
|
|
2890
|
-
padding: "
|
|
3057
|
+
gap: "12px",
|
|
3058
|
+
padding: "2px 4px",
|
|
2891
3059
|
"& .M4LIcon-root": {
|
|
2892
3060
|
minWidth: "16px",
|
|
2893
3061
|
minHeight: "16px"
|
|
@@ -2905,10 +3073,10 @@ const p = (o) => ({
|
|
|
2905
3073
|
borderTop: "1.5px solid",
|
|
2906
3074
|
borderBottom: "1.5px solid",
|
|
2907
3075
|
borderColor: o.palette.state.default,
|
|
2908
|
-
padding: "
|
|
3076
|
+
padding: "2px 4px",
|
|
2909
3077
|
display: "flex",
|
|
2910
3078
|
flexDirection: "column",
|
|
2911
|
-
gap: "
|
|
3079
|
+
gap: "4px",
|
|
2912
3080
|
"& .M4LAccountPopover-containerProgress": {
|
|
2913
3081
|
display: "flex",
|
|
2914
3082
|
justifyContent: "start",
|
|
@@ -2917,7 +3085,7 @@ const p = (o) => ({
|
|
|
2917
3085
|
"& .M4LAccountPopover-containerSetting": {
|
|
2918
3086
|
display: "flex",
|
|
2919
3087
|
flexDirection: "row",
|
|
2920
|
-
gap: "
|
|
3088
|
+
gap: "12px",
|
|
2921
3089
|
width: "100%",
|
|
2922
3090
|
borderRadius: "4px",
|
|
2923
3091
|
cursor: "pointer",
|
|
@@ -2942,7 +3110,7 @@ const p = (o) => ({
|
|
|
2942
3110
|
"& .M4LAccountPopover-containerlogOut": {
|
|
2943
3111
|
display: "flex",
|
|
2944
3112
|
flexDirection: "row",
|
|
2945
|
-
gap: "
|
|
3113
|
+
gap: "12px",
|
|
2946
3114
|
padding: "0 4px",
|
|
2947
3115
|
borderRadius: "4px",
|
|
2948
3116
|
width: "100%",
|
|
@@ -2966,74 +3134,110 @@ const p = (o) => ({
|
|
|
2966
3134
|
}
|
|
2967
3135
|
},
|
|
2968
3136
|
[o.breakpoints.down("md")]: {
|
|
2969
|
-
gap: "
|
|
3137
|
+
gap: "4px",
|
|
2970
3138
|
padding: "16px !important",
|
|
2971
3139
|
"& .M4LAccountPopover-containerUserInfo": {
|
|
2972
|
-
gap: "
|
|
3140
|
+
gap: "4px",
|
|
2973
3141
|
"& .M4LAccountPopover-containerUserName": {
|
|
2974
3142
|
gap: "16px",
|
|
3143
|
+
padding: "2px 4px",
|
|
3144
|
+
minHeight: "36px",
|
|
3145
|
+
alignItems: "center",
|
|
2975
3146
|
"& .M4LIcon-root": {
|
|
2976
3147
|
minWidth: "20px",
|
|
2977
|
-
|
|
3148
|
+
height: "100%",
|
|
3149
|
+
"& .M4LIcon-icon": {
|
|
3150
|
+
minHeight: "20px",
|
|
3151
|
+
minWidth: "20px"
|
|
3152
|
+
}
|
|
2978
3153
|
},
|
|
2979
3154
|
"& .M4LAccountPopover-labelUserName": {
|
|
2980
3155
|
width: "100%",
|
|
2981
|
-
|
|
3156
|
+
height: "100%"
|
|
2982
3157
|
}
|
|
2983
3158
|
},
|
|
2984
3159
|
"& .M4LAccountPopover-containerUserEmail": {
|
|
2985
3160
|
gap: "16px",
|
|
3161
|
+
padding: "2px 4px",
|
|
3162
|
+
minHeight: "36px",
|
|
3163
|
+
alignItems: "center",
|
|
2986
3164
|
"& .M4LIcon-root": {
|
|
2987
3165
|
minWidth: "20px",
|
|
2988
|
-
|
|
3166
|
+
height: "100%",
|
|
3167
|
+
"& .M4LIcon-icon": {
|
|
3168
|
+
minHeight: "20px",
|
|
3169
|
+
minWidth: "20px"
|
|
3170
|
+
}
|
|
2989
3171
|
},
|
|
2990
3172
|
"& .M4LAccountPopover-labelUserEmail": {
|
|
2991
3173
|
width: "100%",
|
|
2992
|
-
|
|
3174
|
+
height: "100%"
|
|
2993
3175
|
}
|
|
2994
3176
|
}
|
|
2995
3177
|
},
|
|
2996
3178
|
"& .M4LAccountPopover-containerAppVersion": {
|
|
2997
3179
|
gap: "16px",
|
|
3180
|
+
padding: "2px 4px",
|
|
3181
|
+
minHeight: "36px",
|
|
3182
|
+
alignItems: "center",
|
|
2998
3183
|
"& .M4LIcon-root": {
|
|
2999
3184
|
minWidth: "20px",
|
|
3000
|
-
|
|
3185
|
+
height: "100%",
|
|
3186
|
+
"& .M4LIcon-icon": {
|
|
3187
|
+
minHeight: "20px",
|
|
3188
|
+
minWidth: "20px"
|
|
3189
|
+
}
|
|
3001
3190
|
},
|
|
3002
3191
|
"& .M4LAccountPopover-labelVersion": {
|
|
3003
3192
|
width: "100%",
|
|
3004
|
-
|
|
3193
|
+
height: "100%"
|
|
3005
3194
|
}
|
|
3006
3195
|
},
|
|
3007
3196
|
"& .M4LAccountPopover-containerMenuItems": {
|
|
3008
3197
|
gap: "16px",
|
|
3198
|
+
padding: "0px",
|
|
3009
3199
|
"& .M4LAccountPopover-containerSetting": {
|
|
3010
3200
|
gap: "16px",
|
|
3201
|
+
padding: "2px 4px",
|
|
3202
|
+
minHeight: "36px",
|
|
3203
|
+
alignItems: "center",
|
|
3011
3204
|
"&:hover": {
|
|
3012
3205
|
background: o.palette.state.default
|
|
3013
3206
|
},
|
|
3014
3207
|
"& .M4LIcon-root": {
|
|
3015
3208
|
minWidth: "20px",
|
|
3016
|
-
|
|
3209
|
+
height: "100%",
|
|
3210
|
+
"& .M4LIcon-icon": {
|
|
3211
|
+
minHeight: "20px",
|
|
3212
|
+
minWidth: "20px"
|
|
3213
|
+
}
|
|
3017
3214
|
},
|
|
3018
3215
|
"& .M4LAccountPopover-menuItem": {
|
|
3019
3216
|
width: "100%",
|
|
3020
|
-
|
|
3217
|
+
height: "100%"
|
|
3021
3218
|
}
|
|
3022
3219
|
}
|
|
3023
3220
|
},
|
|
3024
3221
|
"& .M4LAccountPopover-containerlogOut": {
|
|
3025
3222
|
gap: "16px",
|
|
3026
3223
|
cursor: "pointer",
|
|
3224
|
+
padding: "2px 4px",
|
|
3225
|
+
minHeight: "36px",
|
|
3226
|
+
alignItems: "center",
|
|
3027
3227
|
"&:hover": {
|
|
3028
3228
|
background: o.palette.state.default
|
|
3029
3229
|
},
|
|
3030
3230
|
"& .M4LIcon-root": {
|
|
3031
3231
|
minWidth: "20px",
|
|
3032
|
-
|
|
3232
|
+
height: "100%",
|
|
3233
|
+
"& .M4LIcon-icon": {
|
|
3234
|
+
minHeight: "20px",
|
|
3235
|
+
minWidth: "20px"
|
|
3236
|
+
}
|
|
3033
3237
|
},
|
|
3034
3238
|
"& .M4LAccountPopover-logOut": {
|
|
3035
3239
|
width: "100%",
|
|
3036
|
-
|
|
3240
|
+
height: "100%"
|
|
3037
3241
|
}
|
|
3038
3242
|
}
|
|
3039
3243
|
},
|
|
@@ -3061,7 +3265,7 @@ const p = (o) => ({
|
|
|
3061
3265
|
}
|
|
3062
3266
|
}
|
|
3063
3267
|
}
|
|
3064
|
-
}),
|
|
3268
|
+
}), S = (o) => ({
|
|
3065
3269
|
M4LModuleLayout: {
|
|
3066
3270
|
styleOverrides: {
|
|
3067
3271
|
"&.M4LModuleLayout-root": {
|
|
@@ -3078,7 +3282,7 @@ const p = (o) => ({
|
|
|
3078
3282
|
}
|
|
3079
3283
|
}
|
|
3080
3284
|
}
|
|
3081
|
-
}),
|
|
3285
|
+
}), R = (o) => ({
|
|
3082
3286
|
M4LMasterDetailLayout: {
|
|
3083
3287
|
styleOverrides: {
|
|
3084
3288
|
"&.M4LMasterDetailLayout-root": {
|
|
@@ -3111,7 +3315,7 @@ const p = (o) => ({
|
|
|
3111
3315
|
}
|
|
3112
3316
|
}
|
|
3113
3317
|
}
|
|
3114
|
-
}),
|
|
3318
|
+
}), A = (o) => ({
|
|
3115
3319
|
M4LSplitLayout: {
|
|
3116
3320
|
styleOverrides: {
|
|
3117
3321
|
"&.M4LSplitLayout-root": {
|
|
@@ -3123,12 +3327,19 @@ const p = (o) => ({
|
|
|
3123
3327
|
"& .M4LSplitLayout-firstPart": {
|
|
3124
3328
|
position: "relative",
|
|
3125
3329
|
width: "100%",
|
|
3126
|
-
height: "100%"
|
|
3330
|
+
height: "100%",
|
|
3331
|
+
"& .M4LStack-root": {
|
|
3332
|
+
gap: "8px"
|
|
3333
|
+
}
|
|
3127
3334
|
},
|
|
3128
3335
|
"& .M4LSplitLayout-secondPart": {
|
|
3129
3336
|
position: "relative",
|
|
3130
3337
|
width: "100%",
|
|
3131
|
-
height: "100%"
|
|
3338
|
+
height: "100%",
|
|
3339
|
+
"& .M4LStack-root": {
|
|
3340
|
+
gap: "8px",
|
|
3341
|
+
overflow: "hidden"
|
|
3342
|
+
}
|
|
3132
3343
|
},
|
|
3133
3344
|
"& .splitter-layout": {
|
|
3134
3345
|
position: "absolute",
|
|
@@ -3226,7 +3437,7 @@ const p = (o) => ({
|
|
|
3226
3437
|
}
|
|
3227
3438
|
}
|
|
3228
3439
|
}
|
|
3229
|
-
}),
|
|
3440
|
+
}), P = (o) => ({
|
|
3230
3441
|
M4LCommonActions: {
|
|
3231
3442
|
styleOverrides: {
|
|
3232
3443
|
"&.M4LCommonActions-root": {
|
|
@@ -3239,7 +3450,7 @@ const p = (o) => ({
|
|
|
3239
3450
|
}
|
|
3240
3451
|
}
|
|
3241
3452
|
}
|
|
3242
|
-
}),
|
|
3453
|
+
}), T = (o) => ({
|
|
3243
3454
|
M4LinearProgressIndeterminate: {
|
|
3244
3455
|
styleOverrides: {
|
|
3245
3456
|
"&.M4LinearProgressIndeterminate-root": {
|
|
@@ -3293,7 +3504,7 @@ const p = (o) => ({
|
|
|
3293
3504
|
}
|
|
3294
3505
|
}
|
|
3295
3506
|
}
|
|
3296
|
-
}),
|
|
3507
|
+
}), D = (o) => ({
|
|
3297
3508
|
M4LPropertyValue: {
|
|
3298
3509
|
styleOverrides: {
|
|
3299
3510
|
"&.M4LPropertyValue-root": {
|
|
@@ -3385,19 +3596,19 @@ const p = (o) => ({
|
|
|
3385
3596
|
minHeight: "36px",
|
|
3386
3597
|
height: "auto",
|
|
3387
3598
|
justifyContent: "center",
|
|
3388
|
-
|
|
3599
|
+
padding: "8px"
|
|
3389
3600
|
},
|
|
3390
3601
|
"& .M4LPropertyValue-value": {
|
|
3391
3602
|
minHeight: "36px",
|
|
3392
3603
|
height: "auto",
|
|
3393
|
-
padding: "
|
|
3604
|
+
padding: "12px 16px",
|
|
3394
3605
|
justifyContent: "center"
|
|
3395
3606
|
}
|
|
3396
3607
|
}
|
|
3397
3608
|
}
|
|
3398
3609
|
}
|
|
3399
3610
|
}
|
|
3400
|
-
}),
|
|
3611
|
+
}), H = (o) => ({
|
|
3401
3612
|
M4LTab: {
|
|
3402
3613
|
styleOverrides: {
|
|
3403
3614
|
"&.M4LTab-root": {
|
|
@@ -3449,7 +3660,7 @@ const p = (o) => ({
|
|
|
3449
3660
|
}
|
|
3450
3661
|
}
|
|
3451
3662
|
}
|
|
3452
|
-
}),
|
|
3663
|
+
}), F = (o) => ({
|
|
3453
3664
|
M4LAccordion: {
|
|
3454
3665
|
styleOverrides: {
|
|
3455
3666
|
"&.M4LAccordion-root": {
|
|
@@ -3471,11 +3682,13 @@ const p = (o) => ({
|
|
|
3471
3682
|
border: "1px solid",
|
|
3472
3683
|
borderColor: o.palette.state.borderPrimary,
|
|
3473
3684
|
"& .MuiCollapse-root": {
|
|
3685
|
+
padding: "8px",
|
|
3474
3686
|
"& .MuiCollapse-wrapper": {
|
|
3475
3687
|
"& .MuiCollapse-wrapperInner": {
|
|
3476
3688
|
"& .MuiAccordion-region": {
|
|
3477
|
-
"
|
|
3689
|
+
"& .M4LAccordion-content": {
|
|
3478
3690
|
display: "flex !important",
|
|
3691
|
+
flexDirection: "column",
|
|
3479
3692
|
gap: "8px !important"
|
|
3480
3693
|
}
|
|
3481
3694
|
}
|
|
@@ -3483,14 +3696,14 @@ const p = (o) => ({
|
|
|
3483
3696
|
}
|
|
3484
3697
|
}
|
|
3485
3698
|
},
|
|
3486
|
-
"& .MuiButtonBase-root": {
|
|
3699
|
+
"& .MuiButtonBase-root.Mui-expanded": {
|
|
3487
3700
|
padding: "4px 8px",
|
|
3488
3701
|
borderRadius: "4px",
|
|
3489
3702
|
height: "24px",
|
|
3490
3703
|
minHeight: "24px",
|
|
3491
3704
|
background: "transparent",
|
|
3492
3705
|
"&.MuiAccordionSummary-root": {
|
|
3493
|
-
|
|
3706
|
+
height: "28px",
|
|
3494
3707
|
minHeight: "28px",
|
|
3495
3708
|
padding: "0",
|
|
3496
3709
|
"& .M4LAccordion-labelIcon": {
|
|
@@ -3529,25 +3742,38 @@ const p = (o) => ({
|
|
|
3529
3742
|
},
|
|
3530
3743
|
test: "root"
|
|
3531
3744
|
},
|
|
3532
|
-
"& .
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
background: o.palette.background.neutral,
|
|
3745
|
+
"& .MuiPaper-outlined": {
|
|
3746
|
+
"& .MuiButtonBase-root": {
|
|
3747
|
+
padding: "4px 8px",
|
|
3748
|
+
borderRadius: "4px",
|
|
3749
|
+
height: "24px",
|
|
3750
|
+
minHeight: "24px",
|
|
3751
|
+
background: "transparent",
|
|
3540
3752
|
"&.MuiAccordionSummary-root": {
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3753
|
+
height: "28px",
|
|
3754
|
+
minHeight: "28px",
|
|
3755
|
+
padding: "0",
|
|
3756
|
+
"&:hover": {
|
|
3757
|
+
background: o.palette.state?.hoverDefault
|
|
3758
|
+
}
|
|
3759
|
+
},
|
|
3760
|
+
"& .MuiCollapse-root": {
|
|
3761
|
+
background: o.palette.background.default,
|
|
3762
|
+
borderColor: o.palette.state.borderPrimary,
|
|
3763
|
+
borderRadius: "0px 0px 4px 4px",
|
|
3764
|
+
padding: "8px",
|
|
3765
|
+
"&.MuiButtonBase-root": {
|
|
3766
|
+
padding: "4px 8px !important",
|
|
3767
|
+
background: o.palette.background.neutral
|
|
3768
|
+
},
|
|
3769
|
+
"& .M4LAccordion-content": {
|
|
3770
|
+
display: "flex !important",
|
|
3771
|
+
flexDirection: "column",
|
|
3772
|
+
gap: "2px",
|
|
3773
|
+
"& .M4LPropertyValue-root:last-of-type": {
|
|
3774
|
+
borderBottom: "unset"
|
|
3775
|
+
}
|
|
3776
|
+
}
|
|
3551
3777
|
}
|
|
3552
3778
|
}
|
|
3553
3779
|
},
|
|
@@ -3575,7 +3801,7 @@ const p = (o) => ({
|
|
|
3575
3801
|
}
|
|
3576
3802
|
}
|
|
3577
3803
|
}
|
|
3578
|
-
}),
|
|
3804
|
+
}), V = (o) => ({
|
|
3579
3805
|
M4LRHFormProvider: {
|
|
3580
3806
|
styleOverrides: {
|
|
3581
3807
|
"&.M4LRHFormProvider-root": {
|
|
@@ -3590,7 +3816,7 @@ const p = (o) => ({
|
|
|
3590
3816
|
}
|
|
3591
3817
|
}
|
|
3592
3818
|
}
|
|
3593
|
-
}),
|
|
3819
|
+
}), z = (o) => ({
|
|
3594
3820
|
M4LPeriod: {
|
|
3595
3821
|
styleOverrides: {
|
|
3596
3822
|
"&.M4LPeriod-root": {
|
|
@@ -3615,7 +3841,9 @@ const p = (o) => ({
|
|
|
3615
3841
|
"& .M4LPeriod-containerDateLabel": {
|
|
3616
3842
|
width: "100%",
|
|
3617
3843
|
height: "100% !important",
|
|
3618
|
-
padding: "0px 0px 0px 8px"
|
|
3844
|
+
padding: "0px 0px 0px 8px",
|
|
3845
|
+
borderRight: "1px solid",
|
|
3846
|
+
borderColor: o.palette.state.borderPrimary
|
|
3619
3847
|
},
|
|
3620
3848
|
"& .M4LPeriod-containerDateValue": {
|
|
3621
3849
|
display: "flex",
|
|
@@ -3824,7 +4052,7 @@ const p = (o) => ({
|
|
|
3824
4052
|
}
|
|
3825
4053
|
}
|
|
3826
4054
|
}
|
|
3827
|
-
}),
|
|
4055
|
+
}), W = (o) => ({
|
|
3828
4056
|
M4LModalDialog: {
|
|
3829
4057
|
styleOverrides: {
|
|
3830
4058
|
"&.M4LModal-root": {
|
|
@@ -3940,14 +4168,18 @@ const p = (o) => ({
|
|
|
3940
4168
|
display: "flex",
|
|
3941
4169
|
flexDirection: "column",
|
|
3942
4170
|
flex: "1",
|
|
3943
|
-
overflow: "hidden"
|
|
4171
|
+
overflow: "hidden",
|
|
4172
|
+
"& .M4LStack-root": {
|
|
4173
|
+
gap: "8px",
|
|
4174
|
+
overflow: "hidden"
|
|
4175
|
+
}
|
|
3944
4176
|
}
|
|
3945
4177
|
}
|
|
3946
4178
|
}
|
|
3947
4179
|
}
|
|
3948
4180
|
}
|
|
3949
4181
|
}
|
|
3950
|
-
}),
|
|
4182
|
+
}), O = (o) => ({
|
|
3951
4183
|
M4LPaperForm: {
|
|
3952
4184
|
styleOverrides: {
|
|
3953
4185
|
"&.M4LPaperForm-root": {
|
|
@@ -3958,6 +4190,9 @@ const p = (o) => ({
|
|
|
3958
4190
|
borderColor: o.palette.state.borderSecondary,
|
|
3959
4191
|
width: "100%",
|
|
3960
4192
|
height: "auto",
|
|
4193
|
+
"&.M4LPaperForm-isForm .M4LPaperForm-content": {
|
|
4194
|
+
gap: "12px"
|
|
4195
|
+
},
|
|
3961
4196
|
"& .M4LPaperForm-headerContainer": {
|
|
3962
4197
|
width: "100%",
|
|
3963
4198
|
height: "28px",
|
|
@@ -3982,6 +4217,8 @@ const p = (o) => ({
|
|
|
3982
4217
|
}
|
|
3983
4218
|
},
|
|
3984
4219
|
"& .M4LPaperForm-content": {
|
|
4220
|
+
display: "flex",
|
|
4221
|
+
flexDirection: "column",
|
|
3985
4222
|
height: "fit-content",
|
|
3986
4223
|
width: "100%",
|
|
3987
4224
|
padding: "12px",
|
|
@@ -3991,7 +4228,7 @@ const p = (o) => ({
|
|
|
3991
4228
|
}
|
|
3992
4229
|
}
|
|
3993
4230
|
}
|
|
3994
|
-
}),
|
|
4231
|
+
}), j = (o) => ({
|
|
3995
4232
|
M4LTooltip: {
|
|
3996
4233
|
styleOverrides: {
|
|
3997
4234
|
"&.M4LTooltip-root": {
|
|
@@ -4012,7 +4249,7 @@ const p = (o) => ({
|
|
|
4012
4249
|
}
|
|
4013
4250
|
}
|
|
4014
4251
|
}
|
|
4015
|
-
}),
|
|
4252
|
+
}), G = (o) => ({
|
|
4016
4253
|
M4LBadge: {
|
|
4017
4254
|
styleOverrides: {
|
|
4018
4255
|
"&.M4LBadge-root": {
|
|
@@ -4043,7 +4280,7 @@ const p = (o) => ({
|
|
|
4043
4280
|
}
|
|
4044
4281
|
}
|
|
4045
4282
|
}
|
|
4046
|
-
}),
|
|
4283
|
+
}), N = (o) => ({
|
|
4047
4284
|
M4LDataGrid: {
|
|
4048
4285
|
styleOverrides: {
|
|
4049
4286
|
"&.M4LDataGrid-root": {
|
|
@@ -4063,8 +4300,9 @@ const p = (o) => ({
|
|
|
4063
4300
|
left: "0px",
|
|
4064
4301
|
right: "0px",
|
|
4065
4302
|
top: "0px",
|
|
4066
|
-
height: "
|
|
4067
|
-
|
|
4303
|
+
height: "32px",
|
|
4304
|
+
minHeight: "32px",
|
|
4305
|
+
padding: "4px 8px",
|
|
4068
4306
|
display: "flex",
|
|
4069
4307
|
flexDirection: "row",
|
|
4070
4308
|
borderRadius: "4px",
|
|
@@ -4113,7 +4351,7 @@ const p = (o) => ({
|
|
|
4113
4351
|
display: "flex",
|
|
4114
4352
|
flexDirection: "column",
|
|
4115
4353
|
position: "absolute",
|
|
4116
|
-
top: "
|
|
4354
|
+
top: "32px",
|
|
4117
4355
|
bottom: "0px",
|
|
4118
4356
|
left: "0px",
|
|
4119
4357
|
right: "0px",
|
|
@@ -4130,6 +4368,7 @@ const p = (o) => ({
|
|
|
4130
4368
|
position: "relative",
|
|
4131
4369
|
height: "100%",
|
|
4132
4370
|
overflow: "hidden",
|
|
4371
|
+
borderRadius: "4px 0px",
|
|
4133
4372
|
"& .rdg ": {
|
|
4134
4373
|
border: "none",
|
|
4135
4374
|
background: o.palette.background.default,
|
|
@@ -4154,12 +4393,11 @@ const p = (o) => ({
|
|
|
4154
4393
|
),
|
|
4155
4394
|
"--rdg-border-color": "none",
|
|
4156
4395
|
"&:last-child .rdg-cell": {
|
|
4157
|
-
borderTop: "0",
|
|
4396
|
+
borderTop: "0.5px solid",
|
|
4158
4397
|
borderBottom: "1px solid",
|
|
4159
|
-
borderLeft: "0",
|
|
4160
|
-
borderRight: "0",
|
|
4161
|
-
borderColor: o.palette.state.borderDisable
|
|
4162
|
-
test: "bruce"
|
|
4398
|
+
borderLeft: "0.5px solid",
|
|
4399
|
+
borderRight: "0.5px solid",
|
|
4400
|
+
borderColor: o.palette.state.borderDisable
|
|
4163
4401
|
}
|
|
4164
4402
|
},
|
|
4165
4403
|
'& [role="columnheader"]': {
|
|
@@ -4316,11 +4554,41 @@ const p = (o) => ({
|
|
|
4316
4554
|
M4LDataGridActionsFormatter: {
|
|
4317
4555
|
styleOverrides: {
|
|
4318
4556
|
"&.M4LDataGrid-actionsFormatter": {
|
|
4319
|
-
test: "root"
|
|
4557
|
+
test: "root",
|
|
4558
|
+
"& .MuiPaper-root": {
|
|
4559
|
+
gap: "4px",
|
|
4560
|
+
"& .MuiButtonBase-root": {
|
|
4561
|
+
minHeight: "24px",
|
|
4562
|
+
padding: "2px 4px",
|
|
4563
|
+
gap: "12px",
|
|
4564
|
+
"& .M4LIcon-root": {
|
|
4565
|
+
minHeight: "20px",
|
|
4566
|
+
minWidth: "20px"
|
|
4567
|
+
}
|
|
4568
|
+
}
|
|
4569
|
+
},
|
|
4570
|
+
[o.breakpoints.down("md")]: {
|
|
4571
|
+
"& .MuiPaper-root": {
|
|
4572
|
+
padding: "12px",
|
|
4573
|
+
"& .MuiButtonBase-root": {
|
|
4574
|
+
minHeight: "36px",
|
|
4575
|
+
padding: "2px 4px",
|
|
4576
|
+
gap: "16px",
|
|
4577
|
+
"& .M4LIcon-root": {
|
|
4578
|
+
minHeight: "28px",
|
|
4579
|
+
minWidth: "28px",
|
|
4580
|
+
"& .M4LIcon-icon": {
|
|
4581
|
+
minHeight: "20px",
|
|
4582
|
+
minWidth: "20px"
|
|
4583
|
+
}
|
|
4584
|
+
}
|
|
4585
|
+
}
|
|
4586
|
+
}
|
|
4587
|
+
}
|
|
4320
4588
|
}
|
|
4321
4589
|
}
|
|
4322
4590
|
}
|
|
4323
|
-
}),
|
|
4591
|
+
}), E = (o) => ({
|
|
4324
4592
|
M4LPager: {
|
|
4325
4593
|
styleOverrides: {
|
|
4326
4594
|
"&.M4LPager-root": {
|
|
@@ -4408,7 +4676,7 @@ const p = (o) => ({
|
|
|
4408
4676
|
}
|
|
4409
4677
|
}
|
|
4410
4678
|
}
|
|
4411
|
-
}),
|
|
4679
|
+
}), _ = (o) => ({
|
|
4412
4680
|
M4LCheckBox: {
|
|
4413
4681
|
styleOverrides: {
|
|
4414
4682
|
"&.M4LCheckBox-root": {
|
|
@@ -4464,7 +4732,7 @@ const p = (o) => ({
|
|
|
4464
4732
|
}
|
|
4465
4733
|
}
|
|
4466
4734
|
}
|
|
4467
|
-
}),
|
|
4735
|
+
}), $ = (o) => ({
|
|
4468
4736
|
M4LStack: {
|
|
4469
4737
|
styleOverrides: {
|
|
4470
4738
|
"&.M4LStack-root": {
|
|
@@ -4477,7 +4745,7 @@ const p = (o) => ({
|
|
|
4477
4745
|
}
|
|
4478
4746
|
}
|
|
4479
4747
|
}
|
|
4480
|
-
}),
|
|
4748
|
+
}), U = (o) => ({
|
|
4481
4749
|
M4LTabs: {
|
|
4482
4750
|
styleOverrides: {
|
|
4483
4751
|
"&.M4LTabs-root": {
|
|
@@ -4517,7 +4785,7 @@ const p = (o) => ({
|
|
|
4517
4785
|
}
|
|
4518
4786
|
}
|
|
4519
4787
|
}
|
|
4520
|
-
}),
|
|
4788
|
+
}), q = (o) => ({
|
|
4521
4789
|
M4LNoItemSelected: {
|
|
4522
4790
|
styleOverrides: {
|
|
4523
4791
|
"&.M4LNoItemSelected-root": {
|
|
@@ -4537,15 +4805,18 @@ const p = (o) => ({
|
|
|
4537
4805
|
}
|
|
4538
4806
|
}
|
|
4539
4807
|
}
|
|
4540
|
-
}),
|
|
4808
|
+
}), Y = (o) => ({
|
|
4541
4809
|
M4LScrollBar: {
|
|
4542
4810
|
styleOverrides: {
|
|
4543
4811
|
"&.M4LScrollBar-root": {
|
|
4544
|
-
flexGrow: 1,
|
|
4812
|
+
flexGrow: "1",
|
|
4545
4813
|
width: "100%",
|
|
4546
4814
|
height: "100%",
|
|
4547
4815
|
overflow: "hidden",
|
|
4548
4816
|
minHeight: "inherit",
|
|
4817
|
+
"& .simplebar-content": {
|
|
4818
|
+
height: "100%"
|
|
4819
|
+
},
|
|
4549
4820
|
"& .simplebar-scrollbar.simplebar-visible:before": {
|
|
4550
4821
|
opacity: "1"
|
|
4551
4822
|
},
|
|
@@ -4569,7 +4840,7 @@ const p = (o) => ({
|
|
|
4569
4840
|
}
|
|
4570
4841
|
}
|
|
4571
4842
|
}
|
|
4572
|
-
}),
|
|
4843
|
+
}), J = (o) => ({
|
|
4573
4844
|
M4LGridLayout: {
|
|
4574
4845
|
styleOverrides: {
|
|
4575
4846
|
"&.M4LGridLayout-root": {
|
|
@@ -4577,11 +4848,11 @@ const p = (o) => ({
|
|
|
4577
4848
|
}
|
|
4578
4849
|
}
|
|
4579
4850
|
}
|
|
4580
|
-
}),
|
|
4851
|
+
}), K = (o) => ({
|
|
4581
4852
|
M4LTabContent: {
|
|
4582
4853
|
styleOverrides: {
|
|
4583
4854
|
"&.M4LTabContent-root": {
|
|
4584
|
-
padding: "
|
|
4855
|
+
padding: "0px",
|
|
4585
4856
|
display: "flex",
|
|
4586
4857
|
overflow: "hidden",
|
|
4587
4858
|
height: "100%",
|
|
@@ -4590,11 +4861,14 @@ const p = (o) => ({
|
|
|
4590
4861
|
background: o.palette.background.default,
|
|
4591
4862
|
borderRadius: "0 0 4px 4px",
|
|
4592
4863
|
position: "relative",
|
|
4593
|
-
flex: 1
|
|
4864
|
+
flex: 1,
|
|
4865
|
+
"&.M4LTabContent-root > div": {
|
|
4866
|
+
gap: "8px"
|
|
4867
|
+
}
|
|
4594
4868
|
}
|
|
4595
4869
|
}
|
|
4596
4870
|
}
|
|
4597
|
-
}),
|
|
4871
|
+
}), Q = (o) => ({
|
|
4598
4872
|
M4LMenuActions: {
|
|
4599
4873
|
styleOverrides: {
|
|
4600
4874
|
"&.M4LMenuActions-root": {
|
|
@@ -4809,7 +5083,7 @@ const p = (o) => ({
|
|
|
4809
5083
|
}
|
|
4810
5084
|
}
|
|
4811
5085
|
}
|
|
4812
|
-
}),
|
|
5086
|
+
}), Z = (o) => ({
|
|
4813
5087
|
M4LFormatter: {
|
|
4814
5088
|
styleOverrides: {
|
|
4815
5089
|
"&.M4LFormatter-root": {
|
|
@@ -4826,7 +5100,7 @@ const p = (o) => ({
|
|
|
4826
5100
|
}
|
|
4827
5101
|
}
|
|
4828
5102
|
}
|
|
4829
|
-
}),
|
|
5103
|
+
}), oo = (o) => ({
|
|
4830
5104
|
M4LoadingError: {
|
|
4831
5105
|
styleOverrides: {
|
|
4832
5106
|
"&.M4LoadingError-root": {
|
|
@@ -4885,7 +5159,7 @@ const p = (o) => ({
|
|
|
4885
5159
|
}
|
|
4886
5160
|
}
|
|
4887
5161
|
}
|
|
4888
|
-
}),
|
|
5162
|
+
}), to = (o) => ({
|
|
4889
5163
|
M4LMFLoader: {
|
|
4890
5164
|
styleOverrides: {
|
|
4891
5165
|
"&.M4LMFLoader-root": {
|
|
@@ -4898,7 +5172,7 @@ const p = (o) => ({
|
|
|
4898
5172
|
}
|
|
4899
5173
|
}
|
|
4900
5174
|
}
|
|
4901
|
-
}),
|
|
5175
|
+
}), eo = (o) => ({
|
|
4902
5176
|
M4LLoadingButton: {
|
|
4903
5177
|
styleOverrides: {
|
|
4904
5178
|
"&.M4LLoadingButton-root": {
|
|
@@ -5130,7 +5404,7 @@ const p = (o) => ({
|
|
|
5130
5404
|
}
|
|
5131
5405
|
}
|
|
5132
5406
|
}
|
|
5133
|
-
}),
|
|
5407
|
+
}), ro = (o) => ({
|
|
5134
5408
|
M4LToastContainer: {
|
|
5135
5409
|
styleOverrides: {
|
|
5136
5410
|
"&.M4LToastContainer-root": {
|
|
@@ -5208,7 +5482,7 @@ const p = (o) => ({
|
|
|
5208
5482
|
}
|
|
5209
5483
|
}
|
|
5210
5484
|
}
|
|
5211
|
-
}),
|
|
5485
|
+
}), ao = (o) => ({
|
|
5212
5486
|
M4LPDFViewer: {
|
|
5213
5487
|
styleOverrides: {
|
|
5214
5488
|
"&.M4LPDFViewer-root": {
|
|
@@ -5225,52 +5499,52 @@ const p = (o) => ({
|
|
|
5225
5499
|
}
|
|
5226
5500
|
});
|
|
5227
5501
|
export {
|
|
5228
|
-
A,
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5502
|
+
H as A,
|
|
5503
|
+
F as B,
|
|
5504
|
+
z as C,
|
|
5505
|
+
W as D,
|
|
5506
|
+
O as E,
|
|
5507
|
+
j as F,
|
|
5508
|
+
E as G,
|
|
5509
|
+
_ as H,
|
|
5510
|
+
$ as I,
|
|
5511
|
+
U as J,
|
|
5512
|
+
q as K,
|
|
5513
|
+
Y as L,
|
|
5514
|
+
eo as M,
|
|
5515
|
+
J as N,
|
|
5516
|
+
K as O,
|
|
5517
|
+
Q as P,
|
|
5244
5518
|
X as Q,
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5519
|
+
Z as R,
|
|
5520
|
+
oo as S,
|
|
5521
|
+
to as T,
|
|
5522
|
+
ro as U,
|
|
5523
|
+
ao as V,
|
|
5524
|
+
c as a,
|
|
5525
|
+
V as b,
|
|
5526
|
+
g as c,
|
|
5527
|
+
x as d,
|
|
5528
|
+
u as e,
|
|
5529
|
+
b as f,
|
|
5530
|
+
w as g,
|
|
5531
|
+
M as h,
|
|
5532
|
+
G as i,
|
|
5533
|
+
y as j,
|
|
5534
|
+
N as k,
|
|
5535
|
+
L as l,
|
|
5536
|
+
h as m,
|
|
5537
|
+
f as n,
|
|
5538
|
+
v as o,
|
|
5539
|
+
k as p,
|
|
5540
|
+
m as q,
|
|
5541
|
+
C as r,
|
|
5542
|
+
I as s,
|
|
5543
|
+
B as t,
|
|
5544
|
+
S as u,
|
|
5545
|
+
R as v,
|
|
5546
|
+
A as w,
|
|
5547
|
+
P as x,
|
|
5548
|
+
T as y,
|
|
5549
|
+
D as z
|
|
5276
5550
|
};
|