@m4l/styles 0.0.34 → 0.0.36
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 +63 -10
- 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 +177 -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.bb252f51.js} +621 -323
- package/theme/overrides/M4LRHFComponents/{index.d7a80536.js → index.8ab5d2b9.js} +1 -1
- package/theme/overrides/{index.2d07abe3.js → index.9d5ad9da.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": {
|
|
@@ -936,23 +1004,46 @@ const p = (o) => ({
|
|
|
936
1004
|
},
|
|
937
1005
|
"&.M4LSideBar-collapsed": {
|
|
938
1006
|
"& .M4LSideBar-wrapperSideBar": {
|
|
939
|
-
width: "
|
|
1007
|
+
width: "48px",
|
|
1008
|
+
transition: "width 0.1s ease",
|
|
940
1009
|
"& .M4LSideBar-contentDesktop": {
|
|
941
1010
|
"& .M4LSideBar-contentGroups": {
|
|
942
1011
|
"& .M4LSideBar-itemListMainRoot": {
|
|
943
1012
|
"& .M4LSideBar-navItemMainRoot": {
|
|
944
1013
|
display: "flex",
|
|
945
|
-
justifyContent: "
|
|
1014
|
+
justifyContent: "flex-start",
|
|
946
1015
|
width: "100%",
|
|
1016
|
+
minHeight: "28px",
|
|
1017
|
+
alignItems: "center",
|
|
947
1018
|
"& .M4LSideBar-navItemRootContent": {
|
|
948
1019
|
padding: "0",
|
|
1020
|
+
minHeight: "28px",
|
|
1021
|
+
"::before": {
|
|
1022
|
+
height: "100%",
|
|
1023
|
+
width: "2px"
|
|
1024
|
+
},
|
|
949
1025
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
950
1026
|
width: "24px",
|
|
951
1027
|
minHeight: "24px",
|
|
952
1028
|
height: "24px",
|
|
953
1029
|
minWidth: "24px",
|
|
954
1030
|
margin: "1px 0 1px 8px",
|
|
955
|
-
"& .M4LIcon-root": {
|
|
1031
|
+
"& .M4LIcon-root": {
|
|
1032
|
+
paddingTop: "2px",
|
|
1033
|
+
minWidth: "20px",
|
|
1034
|
+
minHeight: "20px"
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
"& .M4LSideBar-itemMainActive": {
|
|
1041
|
+
"& .M4LSideBar-navItemMainRoot": {
|
|
1042
|
+
"& .M4LSideBar-navItemRootContent": {
|
|
1043
|
+
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1044
|
+
"& .M4LIcon-root": {
|
|
1045
|
+
paddingTop: "0px"
|
|
1046
|
+
}
|
|
956
1047
|
}
|
|
957
1048
|
}
|
|
958
1049
|
}
|
|
@@ -960,6 +1051,15 @@ const p = (o) => ({
|
|
|
960
1051
|
},
|
|
961
1052
|
"& .M4LSideBar-collapseButton": {
|
|
962
1053
|
padding: "12px",
|
|
1054
|
+
width: "100%",
|
|
1055
|
+
"& .M4LSideBar-containerLogoButtonIcon": {
|
|
1056
|
+
"& .M4LIconButton-root": {
|
|
1057
|
+
"& .MuiButtonBase-root": {
|
|
1058
|
+
height: "24px",
|
|
1059
|
+
width: "24px"
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
963
1063
|
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
964
1064
|
display: "none"
|
|
965
1065
|
}
|
|
@@ -974,7 +1074,8 @@ const p = (o) => ({
|
|
|
974
1074
|
},
|
|
975
1075
|
"& .M4LSideBar-wrapperSideBar": {
|
|
976
1076
|
height: "100%",
|
|
977
|
-
width: "
|
|
1077
|
+
width: "219px",
|
|
1078
|
+
transition: "width 0.1s ease",
|
|
978
1079
|
"& .M4LSideBar-containerSideBarLogo": {
|
|
979
1080
|
display: "flex",
|
|
980
1081
|
justifyContent: "flex-start",
|
|
@@ -1028,7 +1129,8 @@ const p = (o) => ({
|
|
|
1028
1129
|
gap: "8px"
|
|
1029
1130
|
},
|
|
1030
1131
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1031
|
-
height: "
|
|
1132
|
+
height: "28px",
|
|
1133
|
+
padding: "0px 0px 0px 12px",
|
|
1032
1134
|
"& .M4LTypography-root": {
|
|
1033
1135
|
display: "flex",
|
|
1034
1136
|
width: "100%",
|
|
@@ -1037,20 +1139,38 @@ const p = (o) => ({
|
|
|
1037
1139
|
overflow: "hidden",
|
|
1038
1140
|
textOverflow: "ellipsis",
|
|
1039
1141
|
textWrap: "nowrap",
|
|
1040
|
-
...o.typography.
|
|
1142
|
+
...o.typography.paragraphDens,
|
|
1143
|
+
textTransform: "capitalize"
|
|
1041
1144
|
}
|
|
1042
1145
|
}
|
|
1043
1146
|
},
|
|
1044
1147
|
"& .M4LSideBar-itemListMainRoot": {
|
|
1045
1148
|
display: "flex",
|
|
1046
1149
|
borderRadius: "4px 0px 0px 4px",
|
|
1047
|
-
justifyContent: "
|
|
1150
|
+
justifyContent: "flex-start",
|
|
1048
1151
|
flexDirection: "column",
|
|
1049
1152
|
gap: "4px",
|
|
1050
|
-
|
|
1153
|
+
height: "auto",
|
|
1154
|
+
marginBottom: "2px",
|
|
1051
1155
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1052
1156
|
backgroundColor: "transparent",
|
|
1053
1157
|
borderRadius: "4px",
|
|
1158
|
+
"& .M4LSideBar-navItemRootContent": {
|
|
1159
|
+
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1160
|
+
alignItems: "center",
|
|
1161
|
+
gap: "16px",
|
|
1162
|
+
"& .M4LIcon-icon": {
|
|
1163
|
+
minWidth: "20px",
|
|
1164
|
+
minHeight: "20px"
|
|
1165
|
+
},
|
|
1166
|
+
"& .M4LTypography-root": {
|
|
1167
|
+
"& .MuiTypography-root": {}
|
|
1168
|
+
},
|
|
1169
|
+
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1170
|
+
backgroundColor: o.palette.state.focus
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1054
1174
|
"&:hover": {
|
|
1055
1175
|
background: o.palette.state.default,
|
|
1056
1176
|
cursor: "pointer"
|
|
@@ -1058,7 +1178,7 @@ const p = (o) => ({
|
|
|
1058
1178
|
},
|
|
1059
1179
|
"&.M4LSideBar-itemMainActive": {
|
|
1060
1180
|
borderRadius: "4px",
|
|
1061
|
-
height: "
|
|
1181
|
+
height: "auto",
|
|
1062
1182
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1063
1183
|
background: o.palette.state.active12,
|
|
1064
1184
|
"&:hover": {
|
|
@@ -1067,7 +1187,9 @@ const p = (o) => ({
|
|
|
1067
1187
|
}
|
|
1068
1188
|
},
|
|
1069
1189
|
"& .M4LSideBar-navItemRootContent": {
|
|
1190
|
+
alignItems: "center",
|
|
1070
1191
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1192
|
+
alignItems: "center",
|
|
1071
1193
|
"& .M4LIcon-icon": {
|
|
1072
1194
|
backgroundColor: o.palette.state.focus
|
|
1073
1195
|
},
|
|
@@ -1103,7 +1225,7 @@ const p = (o) => ({
|
|
|
1103
1225
|
},
|
|
1104
1226
|
"& .M4LSideBar-navItemRootContent": {
|
|
1105
1227
|
display: "flex",
|
|
1106
|
-
padding: "4px 8px 4px
|
|
1228
|
+
padding: "4px 8px 4px 8px",
|
|
1107
1229
|
justifyContent: "center",
|
|
1108
1230
|
borderRadius: "4px 0px 0px 4px",
|
|
1109
1231
|
position: "relative",
|
|
@@ -1166,9 +1288,10 @@ const p = (o) => ({
|
|
|
1166
1288
|
"& .M4LSideBar-subItemActive": {
|
|
1167
1289
|
"& .MuiButtonBase-root": {
|
|
1168
1290
|
"& .M4LIcon-root": {
|
|
1169
|
-
"& .M4LIcon-icon": {
|
|
1170
|
-
|
|
1171
|
-
|
|
1291
|
+
"& .M4LIcon-icon": {}
|
|
1292
|
+
},
|
|
1293
|
+
"& .M4LTypography-root": {
|
|
1294
|
+
"& .MuiTypography-root": {}
|
|
1172
1295
|
}
|
|
1173
1296
|
},
|
|
1174
1297
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
@@ -1185,7 +1308,6 @@ const p = (o) => ({
|
|
|
1185
1308
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
1186
1309
|
gap: "12px",
|
|
1187
1310
|
margin: "0px 0px 0px 0px",
|
|
1188
|
-
padding: "16px",
|
|
1189
1311
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1190
1312
|
minWidth: "5px",
|
|
1191
1313
|
minHeight: "5px",
|
|
@@ -1203,6 +1325,14 @@ const p = (o) => ({
|
|
|
1203
1325
|
textOverflow: "ellipsis",
|
|
1204
1326
|
textWrap: "nowrap"
|
|
1205
1327
|
}
|
|
1328
|
+
},
|
|
1329
|
+
"&.M4LSideBar-subItemActive.M4LSideBar-navSubItemContentRoot": {
|
|
1330
|
+
"& .M4LTypography-root": {
|
|
1331
|
+
color: o.palette.state.active,
|
|
1332
|
+
"& .MuiTypography-root": {
|
|
1333
|
+
color: o.palette.state.active
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1206
1336
|
}
|
|
1207
1337
|
}
|
|
1208
1338
|
},
|
|
@@ -1224,7 +1354,7 @@ const p = (o) => ({
|
|
|
1224
1354
|
gap: "24px",
|
|
1225
1355
|
alignItems: "center",
|
|
1226
1356
|
height: "48px",
|
|
1227
|
-
width: "
|
|
1357
|
+
width: "240px",
|
|
1228
1358
|
minHeight: "48px",
|
|
1229
1359
|
flexDirection: "row-reverse",
|
|
1230
1360
|
"& .M4LSideBar-containerLogoButton": {
|
|
@@ -1235,7 +1365,7 @@ const p = (o) => ({
|
|
|
1235
1365
|
"& .M4LSideBar-containerLogoButtonLogo": {
|
|
1236
1366
|
width: "120px",
|
|
1237
1367
|
height: "24px",
|
|
1238
|
-
display: "
|
|
1368
|
+
display: "none",
|
|
1239
1369
|
alignItems: "center",
|
|
1240
1370
|
background: o.palette.background.default,
|
|
1241
1371
|
borderRadius: "4px"
|
|
@@ -1245,7 +1375,13 @@ const p = (o) => ({
|
|
|
1245
1375
|
justifyContent: "center",
|
|
1246
1376
|
alignItems: "center",
|
|
1247
1377
|
width: "24px",
|
|
1248
|
-
height: "24px"
|
|
1378
|
+
height: "24px",
|
|
1379
|
+
"& .M4LIconButton-root": {
|
|
1380
|
+
"& .MuiButtonBase-root": {
|
|
1381
|
+
height: "24px",
|
|
1382
|
+
width: "24px"
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1249
1385
|
}
|
|
1250
1386
|
}
|
|
1251
1387
|
}
|
|
@@ -1338,6 +1474,7 @@ const p = (o) => ({
|
|
|
1338
1474
|
height: "100%",
|
|
1339
1475
|
display: "flex",
|
|
1340
1476
|
flexDirection: "column",
|
|
1477
|
+
paddingTop: "24px",
|
|
1341
1478
|
"& .M4LSideBar-containerSideBarLogo": {
|
|
1342
1479
|
display: "flex",
|
|
1343
1480
|
justifyContent: "flex-start",
|
|
@@ -1387,9 +1524,10 @@ const p = (o) => ({
|
|
|
1387
1524
|
},
|
|
1388
1525
|
"& .M4LSideBar-wrapperGroup": {
|
|
1389
1526
|
height: "100%",
|
|
1390
|
-
|
|
1527
|
+
padding: "0px 8px",
|
|
1391
1528
|
"& .M4LSideBar-wrapperGroupTitle": {
|
|
1392
|
-
height: "
|
|
1529
|
+
height: "28px",
|
|
1530
|
+
padding: "0px 0px 0px 12px",
|
|
1393
1531
|
"& .M4LTypography-root": {
|
|
1394
1532
|
display: "flex",
|
|
1395
1533
|
width: "100%",
|
|
@@ -1398,20 +1536,39 @@ const p = (o) => ({
|
|
|
1398
1536
|
overflow: "hidden",
|
|
1399
1537
|
textOverflow: "ellipsis",
|
|
1400
1538
|
textWrap: "nowrap",
|
|
1401
|
-
...o.typography.bodyDens
|
|
1539
|
+
...o.typography.bodyDens,
|
|
1540
|
+
textTransform: "capitalize"
|
|
1402
1541
|
}
|
|
1403
1542
|
}
|
|
1404
1543
|
},
|
|
1405
1544
|
"& .M4LSideBar-itemListMainRoot": {
|
|
1406
1545
|
display: "flex",
|
|
1407
1546
|
borderRadius: "4px 0px 0px 4px",
|
|
1408
|
-
justifyContent: "
|
|
1547
|
+
justifyContent: "flex-start",
|
|
1409
1548
|
flexDirection: "column",
|
|
1410
|
-
|
|
1549
|
+
paddingBottom: "4px",
|
|
1411
1550
|
gap: "4px",
|
|
1551
|
+
height: "auto",
|
|
1412
1552
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1413
1553
|
backgroundColor: "transparent",
|
|
1414
1554
|
borderRadius: "4px",
|
|
1555
|
+
"& .M4LSideBar-navItemRootContent": {
|
|
1556
|
+
padding: "8px 8px 8px 12px",
|
|
1557
|
+
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1558
|
+
alignItems: "center",
|
|
1559
|
+
gap: "16px",
|
|
1560
|
+
"& .M4LIcon-icon": {
|
|
1561
|
+
minWidth: "24px",
|
|
1562
|
+
minHeight: "24px"
|
|
1563
|
+
},
|
|
1564
|
+
"& .M4LTypography-root": {
|
|
1565
|
+
"& .MuiTypography-root": {}
|
|
1566
|
+
},
|
|
1567
|
+
"& .M4LSideBar-arrowIconRoot .M4LIcon-icon": {
|
|
1568
|
+
backgroundColor: o.palette.state.focus
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1415
1572
|
"&:hover": {
|
|
1416
1573
|
background: o.palette.state.default,
|
|
1417
1574
|
cursor: "pointer"
|
|
@@ -1427,7 +1584,9 @@ const p = (o) => ({
|
|
|
1427
1584
|
}
|
|
1428
1585
|
},
|
|
1429
1586
|
"& .M4LSideBar-navItemRootContent": {
|
|
1587
|
+
alignItems: "center",
|
|
1430
1588
|
"& .M4LSideBar-navItemRootContentIconTypo": {
|
|
1589
|
+
alignItems: "center",
|
|
1431
1590
|
"& .M4LIcon-icon": {
|
|
1432
1591
|
backgroundColor: o.palette.state.focus
|
|
1433
1592
|
},
|
|
@@ -1449,10 +1608,10 @@ const p = (o) => ({
|
|
|
1449
1608
|
},
|
|
1450
1609
|
"&::before": {
|
|
1451
1610
|
content: '""',
|
|
1452
|
-
width: "
|
|
1611
|
+
width: "2px",
|
|
1453
1612
|
top: "0px",
|
|
1454
1613
|
bottom: "0px",
|
|
1455
|
-
|
|
1614
|
+
left: "0px",
|
|
1456
1615
|
backgroundColor: o.palette.state.focus,
|
|
1457
1616
|
borderRadius: "4px 0px 0px 4px",
|
|
1458
1617
|
position: "absolute"
|
|
@@ -1577,7 +1736,7 @@ const p = (o) => ({
|
|
|
1577
1736
|
display: "flex",
|
|
1578
1737
|
paddingTop: "12px",
|
|
1579
1738
|
borderTop: "1px solid",
|
|
1580
|
-
borderColor: o.palette.state.
|
|
1739
|
+
borderColor: o.palette.state.hoverDefault,
|
|
1581
1740
|
justifyContent: "flex-end",
|
|
1582
1741
|
marginRight: "14px",
|
|
1583
1742
|
marginLeft: "14px",
|
|
@@ -1603,23 +1762,23 @@ const p = (o) => ({
|
|
|
1603
1762
|
}
|
|
1604
1763
|
}
|
|
1605
1764
|
}
|
|
1606
|
-
}),
|
|
1765
|
+
}), m = (o) => ({
|
|
1607
1766
|
M4LAreasAdmin: {
|
|
1608
1767
|
styleOverrides: {
|
|
1609
1768
|
"&.M4LAreasAdmin-root": {
|
|
1610
1769
|
flex: 1,
|
|
1611
1770
|
display: "flex",
|
|
1612
1771
|
flexDirection: "row",
|
|
1613
|
-
overflow: "
|
|
1772
|
+
overflow: "hidden",
|
|
1614
1773
|
height: "auto",
|
|
1615
|
-
|
|
1616
|
-
paddingRight: "6px",
|
|
1774
|
+
padding: "0px 12px",
|
|
1617
1775
|
alignItems: "center",
|
|
1618
1776
|
justifyContent: "space-between",
|
|
1619
|
-
width: "
|
|
1620
|
-
maxWidth: "fit-content",
|
|
1777
|
+
width: "100%",
|
|
1621
1778
|
gap: "8px",
|
|
1622
|
-
|
|
1779
|
+
borderRight: "1px solid",
|
|
1780
|
+
borderLeft: "1px solid",
|
|
1781
|
+
borderColor: o.palette.state.borderDisable,
|
|
1623
1782
|
[o.breakpoints.down("sm")]: {
|
|
1624
1783
|
boxShadow: o.customShadows.z1,
|
|
1625
1784
|
paddingRight: "0px",
|
|
@@ -1628,16 +1787,19 @@ const p = (o) => ({
|
|
|
1628
1787
|
gap: "0px",
|
|
1629
1788
|
borderRadius: "4px",
|
|
1630
1789
|
height: "100%",
|
|
1631
|
-
overflow: "hidden"
|
|
1790
|
+
overflow: "hidden",
|
|
1791
|
+
borderRight: "0px",
|
|
1792
|
+
borderLeft: "0px",
|
|
1793
|
+
borderColor: "transparent"
|
|
1632
1794
|
},
|
|
1633
1795
|
"& .M4LAreasAdmin-rootContent": {
|
|
1634
1796
|
display: "flex",
|
|
1635
|
-
|
|
1636
|
-
|
|
1797
|
+
flexDirection: "row-reverse",
|
|
1798
|
+
width: "100%",
|
|
1637
1799
|
overflow: "auto",
|
|
1638
1800
|
justifyContent: "center",
|
|
1639
1801
|
alignItems: "center",
|
|
1640
|
-
gap: "
|
|
1802
|
+
gap: "8px",
|
|
1641
1803
|
minHeight: "36px",
|
|
1642
1804
|
boxShadow: "none",
|
|
1643
1805
|
[o.breakpoints.down("sm")]: {
|
|
@@ -1674,12 +1836,13 @@ const p = (o) => ({
|
|
|
1674
1836
|
zIndex: "10000"
|
|
1675
1837
|
},
|
|
1676
1838
|
"& .M4LAreasAdmin-areaContainerChipsIcon": {
|
|
1839
|
+
flexGrow: "1",
|
|
1677
1840
|
display: "flex",
|
|
1678
1841
|
flexDirection: "row",
|
|
1679
1842
|
width: "100%",
|
|
1680
1843
|
overflow: "auto",
|
|
1681
|
-
height: "
|
|
1682
|
-
borderColor: o.palette.state.
|
|
1844
|
+
height: "36px",
|
|
1845
|
+
borderColor: o.palette.state.hoverDefault,
|
|
1683
1846
|
[o.breakpoints.down("sm")]: {
|
|
1684
1847
|
background: "none",
|
|
1685
1848
|
borderRight: "none",
|
|
@@ -1706,8 +1869,8 @@ const p = (o) => ({
|
|
|
1706
1869
|
overflow: "auto",
|
|
1707
1870
|
gap: "8px",
|
|
1708
1871
|
paddingLeft: "0px",
|
|
1709
|
-
paddingRight: "
|
|
1710
|
-
width: "
|
|
1872
|
+
paddingRight: "0px",
|
|
1873
|
+
width: "100%",
|
|
1711
1874
|
height: "auto",
|
|
1712
1875
|
alignItems: "center",
|
|
1713
1876
|
[o.breakpoints.down("sm")]: {
|
|
@@ -1718,25 +1881,27 @@ const p = (o) => ({
|
|
|
1718
1881
|
"& .M4LAreasAdmin-areaContainerContentChips": {
|
|
1719
1882
|
display: "flex",
|
|
1720
1883
|
flexDirection: "row",
|
|
1721
|
-
width: "
|
|
1884
|
+
width: "100%",
|
|
1722
1885
|
height: "100%",
|
|
1723
1886
|
justifyContent: "space-between",
|
|
1724
1887
|
alignItems: "center",
|
|
1888
|
+
overflow: "visible",
|
|
1725
1889
|
[o.breakpoints.down("sm")]: {
|
|
1726
1890
|
width: "100%",
|
|
1727
|
-
background: "none"
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
alignItems: "center"
|
|
1891
|
+
background: "none",
|
|
1892
|
+
"&.M4LAreasAdmin-areaContainerContentChips > div": {
|
|
1893
|
+
borderColor: "transparent"
|
|
1894
|
+
}
|
|
1732
1895
|
},
|
|
1733
1896
|
"& .M4LAreasAdmin-areaContentChips": {
|
|
1734
1897
|
display: "flex",
|
|
1735
1898
|
width: "fit-content",
|
|
1736
|
-
height: "
|
|
1899
|
+
height: "auto",
|
|
1900
|
+
minHeight: "36px",
|
|
1737
1901
|
alignItems: "center",
|
|
1738
1902
|
gap: "4px",
|
|
1739
1903
|
paddingRight: "4px",
|
|
1904
|
+
overflow: "hidden",
|
|
1740
1905
|
[o.breakpoints.down("sm")]: {
|
|
1741
1906
|
height: "44px"
|
|
1742
1907
|
}
|
|
@@ -1761,64 +1926,35 @@ const p = (o) => ({
|
|
|
1761
1926
|
}
|
|
1762
1927
|
}
|
|
1763
1928
|
},
|
|
1764
|
-
"& .
|
|
1765
|
-
|
|
1929
|
+
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1930
|
+
margin: "0px",
|
|
1931
|
+
borderRadius: "4px",
|
|
1932
|
+
overflow: "hidden",
|
|
1933
|
+
width: "100%",
|
|
1766
1934
|
maxWidth: "100%",
|
|
1935
|
+
cursor: "pointer",
|
|
1936
|
+
"&:hover": {
|
|
1937
|
+
background: o.palette.state.hoverDefault
|
|
1938
|
+
},
|
|
1767
1939
|
[o.breakpoints.down("sm")]: {
|
|
1940
|
+
background: "none",
|
|
1941
|
+
border: "none",
|
|
1942
|
+
boxShadow: "none",
|
|
1768
1943
|
width: "100%"
|
|
1769
1944
|
}
|
|
1770
1945
|
},
|
|
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
1946
|
"& .M4LAreasAdmin-areaChipMobileRoot": {
|
|
1806
1947
|
display: "flex",
|
|
1807
1948
|
overflow: "hidden",
|
|
1808
1949
|
width: "100%",
|
|
1809
1950
|
backgroundColor: o.palette.state.default,
|
|
1810
|
-
boxShadow: o.customShadows.z2,
|
|
1811
1951
|
borderTop: "1.5px solid",
|
|
1812
1952
|
borderColor: o.palette.state.borderTop,
|
|
1813
1953
|
borderRadius: "4px",
|
|
1814
1954
|
[o.breakpoints.down("sm")]: {
|
|
1815
1955
|
backgroundColor: o.palette.background.default,
|
|
1816
|
-
boxShadow: o.customShadows.z1,
|
|
1817
1956
|
width: "100%"
|
|
1818
1957
|
},
|
|
1819
|
-
"&:hover": {
|
|
1820
|
-
background: o.palette.state.active12
|
|
1821
|
-
},
|
|
1822
1958
|
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
1823
1959
|
margin: "0px",
|
|
1824
1960
|
borderRadius: "4px 0px 0px 4px",
|
|
@@ -1852,6 +1988,9 @@ const p = (o) => ({
|
|
|
1852
1988
|
"& .M4LIconButton-root": {
|
|
1853
1989
|
background: "transparent",
|
|
1854
1990
|
backgroundColor: "transparent",
|
|
1991
|
+
"&:hover": {
|
|
1992
|
+
background: o.palette.state.active12
|
|
1993
|
+
},
|
|
1855
1994
|
"& .M4LIcon-icon": {}
|
|
1856
1995
|
}
|
|
1857
1996
|
},
|
|
@@ -1860,11 +1999,7 @@ const p = (o) => ({
|
|
|
1860
1999
|
alignItems: "center",
|
|
1861
2000
|
height: "100%"
|
|
1862
2001
|
},
|
|
1863
|
-
"& .
|
|
1864
|
-
display: "flex",
|
|
1865
|
-
alignItems: "center"
|
|
1866
|
-
},
|
|
1867
|
-
"& .M4LAreasAdmin-areaChipRoot ": {
|
|
2002
|
+
"& .M4LAreasAdmin-areaChipRoot": {
|
|
1868
2003
|
display: "flex",
|
|
1869
2004
|
background: o.palette.background.default,
|
|
1870
2005
|
borderRadius: "4px 4px 4px 4px",
|
|
@@ -1884,9 +2019,15 @@ const p = (o) => ({
|
|
|
1884
2019
|
...o.typography.body,
|
|
1885
2020
|
color: o.palette.text.primary,
|
|
1886
2021
|
height: "22px",
|
|
2022
|
+
"&:hover": {
|
|
2023
|
+
background: o.palette.state.hover
|
|
2024
|
+
},
|
|
1887
2025
|
[o.breakpoints.down("sm")]: {
|
|
1888
2026
|
height: "auto",
|
|
1889
|
-
background: "none"
|
|
2027
|
+
background: "none",
|
|
2028
|
+
"&:hover": {
|
|
2029
|
+
background: o.palette.state.hoverDefault
|
|
2030
|
+
}
|
|
1890
2031
|
},
|
|
1891
2032
|
"& .M4LAreasAdmin-areaChipTitle": {
|
|
1892
2033
|
backgroundColor: "transparent",
|
|
@@ -1910,6 +2051,9 @@ const p = (o) => ({
|
|
|
1910
2051
|
}
|
|
1911
2052
|
},
|
|
1912
2053
|
"& .M4LIconButton-root": {
|
|
2054
|
+
"&:hover": {
|
|
2055
|
+
background: o.palette.state.active
|
|
2056
|
+
},
|
|
1913
2057
|
[o.breakpoints.down("sm")]: {
|
|
1914
2058
|
color: o.palette.text.primary
|
|
1915
2059
|
},
|
|
@@ -1956,12 +2100,17 @@ const p = (o) => ({
|
|
|
1956
2100
|
}
|
|
1957
2101
|
},
|
|
1958
2102
|
"& .M4LAreasAdmin-areasPopoverListWindowsIcon": {
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
2103
|
+
borderRadius: "4px",
|
|
2104
|
+
"& .MuiButtonBase-root": {
|
|
2105
|
+
width: "100%",
|
|
2106
|
+
height: "28px",
|
|
2107
|
+
borderLeft: "1px solid",
|
|
2108
|
+
borderColor: o.palette.state.borderSecondary,
|
|
2109
|
+
borderRadius: "0px"
|
|
2110
|
+
}
|
|
1963
2111
|
},
|
|
1964
2112
|
"& .M4LAreasAdmin-areasAddButton": {
|
|
2113
|
+
flexGrow: "2",
|
|
1965
2114
|
background: o.palette.state.default
|
|
1966
2115
|
},
|
|
1967
2116
|
"&.M4LAreasAdmin-isMobile": {
|
|
@@ -1970,7 +2119,6 @@ const p = (o) => ({
|
|
|
1970
2119
|
width: "100%",
|
|
1971
2120
|
"& .M4LAreasAdmin-areaContainerChips": {
|
|
1972
2121
|
width: "100%",
|
|
1973
|
-
overflow: "hidden",
|
|
1974
2122
|
background: "none",
|
|
1975
2123
|
boxShadow: "none"
|
|
1976
2124
|
}
|
|
@@ -1984,10 +2132,41 @@ const p = (o) => ({
|
|
|
1984
2132
|
"&.M4LAreasAdmin-areaEditPopover": {
|
|
1985
2133
|
"& .MuiPaper-root": {
|
|
1986
2134
|
width: "200px",
|
|
2135
|
+
padding: "12px",
|
|
1987
2136
|
"& .M4LRHFormProvider-root": {
|
|
1988
|
-
|
|
2137
|
+
gap: "8px",
|
|
2138
|
+
"& .css-l4lb1c": {
|
|
2139
|
+
minHeight: "24px",
|
|
2140
|
+
border: "0px",
|
|
2141
|
+
"& .M4LTypography-root": {
|
|
2142
|
+
height: "100%",
|
|
2143
|
+
"& .MuiTypography-root": {
|
|
2144
|
+
height: "100%",
|
|
2145
|
+
display: "flex",
|
|
2146
|
+
alignItems: "center"
|
|
2147
|
+
}
|
|
2148
|
+
},
|
|
2149
|
+
"& .M4LIconButton-root": {
|
|
2150
|
+
"& .MuiButtonBase-root": {
|
|
2151
|
+
padding: "0px",
|
|
2152
|
+
justifyContent: "inherit"
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
},
|
|
2156
|
+
"& .M4LRHFTextField-root": {
|
|
2157
|
+
"& .MuiFormControl-root": {
|
|
2158
|
+
marginTop: "0px"
|
|
2159
|
+
}
|
|
2160
|
+
},
|
|
1989
2161
|
"& .M4LCommonActions-root": {
|
|
1990
|
-
padding: "
|
|
2162
|
+
padding: "8px 0 0px 0px",
|
|
2163
|
+
"& .M4LButton-root": {
|
|
2164
|
+
padding: "0px",
|
|
2165
|
+
height: "24px",
|
|
2166
|
+
"& .MuiButtonBase-root": {
|
|
2167
|
+
justifyContent: "center !important"
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
1991
2170
|
}
|
|
1992
2171
|
}
|
|
1993
2172
|
}
|
|
@@ -2017,7 +2196,7 @@ const p = (o) => ({
|
|
|
2017
2196
|
}
|
|
2018
2197
|
}
|
|
2019
2198
|
}
|
|
2020
|
-
}),
|
|
2199
|
+
}), C = (o) => ({
|
|
2021
2200
|
M4LAreasViewer: {
|
|
2022
2201
|
styleOverrides: {
|
|
2023
2202
|
"&.M4LAreasViewer-root": {
|
|
@@ -2311,7 +2490,7 @@ const p = (o) => ({
|
|
|
2311
2490
|
"& .M4LAreasViewer-windowHeaderContent": {
|
|
2312
2491
|
"& .M4LIcon-root": {
|
|
2313
2492
|
"& .M4LIcon-icon": {
|
|
2314
|
-
background: o.palette.state.
|
|
2493
|
+
background: o.palette.state.focus
|
|
2315
2494
|
}
|
|
2316
2495
|
},
|
|
2317
2496
|
"& .M4LAreasViewer-windowHeaderCancelHandle": {
|
|
@@ -2324,7 +2503,7 @@ const p = (o) => ({
|
|
|
2324
2503
|
},
|
|
2325
2504
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2326
2505
|
...o.typography.paragraphDens,
|
|
2327
|
-
color: o.palette.state.
|
|
2506
|
+
color: o.palette.state.focus
|
|
2328
2507
|
},
|
|
2329
2508
|
"& .MuiButtonBase-root": {
|
|
2330
2509
|
"& .M4LIcon-icon": {
|
|
@@ -2360,7 +2539,7 @@ const p = (o) => ({
|
|
|
2360
2539
|
},
|
|
2361
2540
|
"&.M4LGridLayout-colapsed ": {
|
|
2362
2541
|
"& .M4LAreasViewer-windowRoot": {
|
|
2363
|
-
borderColor: o.palette.state.
|
|
2542
|
+
borderColor: o.palette.state.hoverDefault,
|
|
2364
2543
|
boxShadow: o.customShadows.z1
|
|
2365
2544
|
}
|
|
2366
2545
|
},
|
|
@@ -2420,7 +2599,7 @@ const p = (o) => ({
|
|
|
2420
2599
|
padding: "4px",
|
|
2421
2600
|
background: o.palette.background.default,
|
|
2422
2601
|
borderRadius: "4px",
|
|
2423
|
-
borderColor: o.palette.state.
|
|
2602
|
+
borderColor: o.palette.state.hoverDefault,
|
|
2424
2603
|
"&:not(.M4LAreasViewer-loading)": {
|
|
2425
2604
|
"& .M4LinearProgressIndeterminate-root": {
|
|
2426
2605
|
opacity: 0
|
|
@@ -2671,17 +2850,18 @@ const p = (o) => ({
|
|
|
2671
2850
|
minHeight: "11px",
|
|
2672
2851
|
boxShadow: o.customShadows.z2,
|
|
2673
2852
|
border: "1px solid",
|
|
2674
|
-
borderColor: o.palette.state.
|
|
2853
|
+
borderColor: o.palette.state.hoverDefault
|
|
2675
2854
|
}
|
|
2676
2855
|
}
|
|
2677
2856
|
}
|
|
2678
2857
|
}
|
|
2679
|
-
}),
|
|
2858
|
+
}), k = (o) => ({
|
|
2680
2859
|
M4LAppBar: {
|
|
2681
2860
|
styleOverrides: {
|
|
2682
2861
|
"&.M4LAppBar-root": {
|
|
2683
2862
|
display: "flex",
|
|
2684
|
-
width: "
|
|
2863
|
+
width: "100vw",
|
|
2864
|
+
maxWidth: "100vw !important",
|
|
2685
2865
|
overflow: "hidden",
|
|
2686
2866
|
minHeight: "52px",
|
|
2687
2867
|
height: "52px",
|
|
@@ -2709,6 +2889,7 @@ const p = (o) => ({
|
|
|
2709
2889
|
display: "flex",
|
|
2710
2890
|
alignItems: "center",
|
|
2711
2891
|
gap: "12px",
|
|
2892
|
+
width: "163px",
|
|
2712
2893
|
"& .M4LTypography-root": {
|
|
2713
2894
|
textWrap: "nowrap",
|
|
2714
2895
|
textTransform: "uppercase"
|
|
@@ -2748,11 +2929,17 @@ const p = (o) => ({
|
|
|
2748
2929
|
}
|
|
2749
2930
|
},
|
|
2750
2931
|
"& .M4LAppBar-containerChilds": {
|
|
2932
|
+
flexGrow: "1",
|
|
2751
2933
|
display: "flex",
|
|
2752
2934
|
flexDirection: "row",
|
|
2753
2935
|
gap: "12px",
|
|
2754
2936
|
width: "100%",
|
|
2755
2937
|
justifyContent: "space-between",
|
|
2938
|
+
overflow: "hidden",
|
|
2939
|
+
alignItems: "center",
|
|
2940
|
+
borderRadius: "4px",
|
|
2941
|
+
background: "none",
|
|
2942
|
+
boxShadow: "none",
|
|
2756
2943
|
[o.breakpoints.down("sm")]: {
|
|
2757
2944
|
display: "flex",
|
|
2758
2945
|
alignItems: "center",
|
|
@@ -2762,33 +2949,34 @@ const p = (o) => ({
|
|
|
2762
2949
|
background: "none",
|
|
2763
2950
|
boxShadow: "none",
|
|
2764
2951
|
paddingRight: "0px",
|
|
2765
|
-
borderRadius: "6px"
|
|
2952
|
+
borderRadius: "6px",
|
|
2953
|
+
gap: "8px"
|
|
2766
2954
|
},
|
|
2767
|
-
"& .
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
boxShadow: "none",
|
|
2784
|
-
borderTop: "0px"
|
|
2955
|
+
"& .M4LanguagePopover-root": {
|
|
2956
|
+
"& .M4LImageButton-root": {
|
|
2957
|
+
"& .MuiButtonBase-root": {
|
|
2958
|
+
width: "28px",
|
|
2959
|
+
height: "28px"
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2963
|
+
"& .M4LAvatar-root": {
|
|
2964
|
+
width: "28px",
|
|
2965
|
+
height: "28px",
|
|
2966
|
+
padding: "4px",
|
|
2967
|
+
"& .MuiAvatar-root": {
|
|
2968
|
+
width: "20px",
|
|
2969
|
+
height: "20px",
|
|
2970
|
+
fontSize: "12px"
|
|
2785
2971
|
},
|
|
2786
|
-
|
|
2972
|
+
[o.breakpoints.down("sm")]: {
|
|
2787
2973
|
width: "36px",
|
|
2788
2974
|
height: "36px",
|
|
2975
|
+
padding: "4px",
|
|
2789
2976
|
"& .MuiAvatar-root": {
|
|
2790
|
-
width: "
|
|
2791
|
-
height: "
|
|
2977
|
+
width: "28px",
|
|
2978
|
+
height: "28px",
|
|
2979
|
+
fontSize: "15px"
|
|
2792
2980
|
}
|
|
2793
2981
|
}
|
|
2794
2982
|
}
|
|
@@ -2796,7 +2984,7 @@ const p = (o) => ({
|
|
|
2796
2984
|
}
|
|
2797
2985
|
}
|
|
2798
2986
|
}
|
|
2799
|
-
}),
|
|
2987
|
+
}), I = (o) => ({
|
|
2800
2988
|
M4LAvatar: {
|
|
2801
2989
|
styleOverrides: {
|
|
2802
2990
|
"&.M4LAvatar-root": {
|
|
@@ -2818,7 +3006,7 @@ const p = (o) => ({
|
|
|
2818
3006
|
}
|
|
2819
3007
|
}
|
|
2820
3008
|
}
|
|
2821
|
-
}),
|
|
3009
|
+
}), B = (o) => ({
|
|
2822
3010
|
M4LAccountPopover: {
|
|
2823
3011
|
styleOverrides: {
|
|
2824
3012
|
"&.M4LAccountPopover-root": {
|
|
@@ -2837,7 +3025,7 @@ const p = (o) => ({
|
|
|
2837
3025
|
"& .MuiPaper-root": {
|
|
2838
3026
|
display: "flex",
|
|
2839
3027
|
flexDirection: "column",
|
|
2840
|
-
gap: "
|
|
3028
|
+
gap: "4px",
|
|
2841
3029
|
padding: "12px",
|
|
2842
3030
|
borderRadius: "6px",
|
|
2843
3031
|
boxShadow: o.customShadows.z3,
|
|
@@ -2845,12 +3033,12 @@ const p = (o) => ({
|
|
|
2845
3033
|
"& .M4LAccountPopover-containerUserInfo": {
|
|
2846
3034
|
display: "flex",
|
|
2847
3035
|
flexDirection: "column",
|
|
2848
|
-
gap: "
|
|
3036
|
+
gap: "4px",
|
|
2849
3037
|
"& .M4LAccountPopover-containerUserName": {
|
|
2850
3038
|
display: "flex",
|
|
2851
3039
|
flexDirection: "row",
|
|
2852
|
-
gap: "
|
|
2853
|
-
padding: "
|
|
3040
|
+
gap: "12px",
|
|
3041
|
+
padding: "2px 4px",
|
|
2854
3042
|
"& .M4LIcon-root": {
|
|
2855
3043
|
minWidth: "16px",
|
|
2856
3044
|
minHeight: "16px"
|
|
@@ -2867,8 +3055,8 @@ const p = (o) => ({
|
|
|
2867
3055
|
"& .M4LAccountPopover-containerUserEmail": {
|
|
2868
3056
|
display: "flex",
|
|
2869
3057
|
flexDirection: "row",
|
|
2870
|
-
gap: "
|
|
2871
|
-
padding: "
|
|
3058
|
+
gap: "12px",
|
|
3059
|
+
padding: "2px 4px",
|
|
2872
3060
|
"& .M4LIcon-root": {
|
|
2873
3061
|
minWidth: "16px",
|
|
2874
3062
|
minHeight: "16px"
|
|
@@ -2886,8 +3074,8 @@ const p = (o) => ({
|
|
|
2886
3074
|
"& .M4LAccountPopover-containerAppVersion": {
|
|
2887
3075
|
display: "flex",
|
|
2888
3076
|
flexDirection: "row",
|
|
2889
|
-
gap: "
|
|
2890
|
-
padding: "
|
|
3077
|
+
gap: "12px",
|
|
3078
|
+
padding: "2px 4px",
|
|
2891
3079
|
"& .M4LIcon-root": {
|
|
2892
3080
|
minWidth: "16px",
|
|
2893
3081
|
minHeight: "16px"
|
|
@@ -2905,10 +3093,10 @@ const p = (o) => ({
|
|
|
2905
3093
|
borderTop: "1.5px solid",
|
|
2906
3094
|
borderBottom: "1.5px solid",
|
|
2907
3095
|
borderColor: o.palette.state.default,
|
|
2908
|
-
padding: "
|
|
3096
|
+
padding: "2px 4px",
|
|
2909
3097
|
display: "flex",
|
|
2910
3098
|
flexDirection: "column",
|
|
2911
|
-
gap: "
|
|
3099
|
+
gap: "4px",
|
|
2912
3100
|
"& .M4LAccountPopover-containerProgress": {
|
|
2913
3101
|
display: "flex",
|
|
2914
3102
|
justifyContent: "start",
|
|
@@ -2917,7 +3105,7 @@ const p = (o) => ({
|
|
|
2917
3105
|
"& .M4LAccountPopover-containerSetting": {
|
|
2918
3106
|
display: "flex",
|
|
2919
3107
|
flexDirection: "row",
|
|
2920
|
-
gap: "
|
|
3108
|
+
gap: "12px",
|
|
2921
3109
|
width: "100%",
|
|
2922
3110
|
borderRadius: "4px",
|
|
2923
3111
|
cursor: "pointer",
|
|
@@ -2942,7 +3130,7 @@ const p = (o) => ({
|
|
|
2942
3130
|
"& .M4LAccountPopover-containerlogOut": {
|
|
2943
3131
|
display: "flex",
|
|
2944
3132
|
flexDirection: "row",
|
|
2945
|
-
gap: "
|
|
3133
|
+
gap: "12px",
|
|
2946
3134
|
padding: "0 4px",
|
|
2947
3135
|
borderRadius: "4px",
|
|
2948
3136
|
width: "100%",
|
|
@@ -2966,74 +3154,110 @@ const p = (o) => ({
|
|
|
2966
3154
|
}
|
|
2967
3155
|
},
|
|
2968
3156
|
[o.breakpoints.down("md")]: {
|
|
2969
|
-
gap: "
|
|
3157
|
+
gap: "4px",
|
|
2970
3158
|
padding: "16px !important",
|
|
2971
3159
|
"& .M4LAccountPopover-containerUserInfo": {
|
|
2972
|
-
gap: "
|
|
3160
|
+
gap: "4px",
|
|
2973
3161
|
"& .M4LAccountPopover-containerUserName": {
|
|
2974
3162
|
gap: "16px",
|
|
3163
|
+
padding: "2px 4px",
|
|
3164
|
+
minHeight: "36px",
|
|
3165
|
+
alignItems: "center",
|
|
2975
3166
|
"& .M4LIcon-root": {
|
|
2976
3167
|
minWidth: "20px",
|
|
2977
|
-
|
|
3168
|
+
height: "100%",
|
|
3169
|
+
"& .M4LIcon-icon": {
|
|
3170
|
+
minHeight: "20px",
|
|
3171
|
+
minWidth: "20px"
|
|
3172
|
+
}
|
|
2978
3173
|
},
|
|
2979
3174
|
"& .M4LAccountPopover-labelUserName": {
|
|
2980
3175
|
width: "100%",
|
|
2981
|
-
|
|
3176
|
+
height: "100%"
|
|
2982
3177
|
}
|
|
2983
3178
|
},
|
|
2984
3179
|
"& .M4LAccountPopover-containerUserEmail": {
|
|
2985
3180
|
gap: "16px",
|
|
3181
|
+
padding: "2px 4px",
|
|
3182
|
+
minHeight: "36px",
|
|
3183
|
+
alignItems: "center",
|
|
2986
3184
|
"& .M4LIcon-root": {
|
|
2987
3185
|
minWidth: "20px",
|
|
2988
|
-
|
|
3186
|
+
height: "100%",
|
|
3187
|
+
"& .M4LIcon-icon": {
|
|
3188
|
+
minHeight: "20px",
|
|
3189
|
+
minWidth: "20px"
|
|
3190
|
+
}
|
|
2989
3191
|
},
|
|
2990
3192
|
"& .M4LAccountPopover-labelUserEmail": {
|
|
2991
3193
|
width: "100%",
|
|
2992
|
-
|
|
3194
|
+
height: "100%"
|
|
2993
3195
|
}
|
|
2994
3196
|
}
|
|
2995
3197
|
},
|
|
2996
3198
|
"& .M4LAccountPopover-containerAppVersion": {
|
|
2997
3199
|
gap: "16px",
|
|
3200
|
+
padding: "2px 4px",
|
|
3201
|
+
minHeight: "36px",
|
|
3202
|
+
alignItems: "center",
|
|
2998
3203
|
"& .M4LIcon-root": {
|
|
2999
3204
|
minWidth: "20px",
|
|
3000
|
-
|
|
3205
|
+
height: "100%",
|
|
3206
|
+
"& .M4LIcon-icon": {
|
|
3207
|
+
minHeight: "20px",
|
|
3208
|
+
minWidth: "20px"
|
|
3209
|
+
}
|
|
3001
3210
|
},
|
|
3002
3211
|
"& .M4LAccountPopover-labelVersion": {
|
|
3003
3212
|
width: "100%",
|
|
3004
|
-
|
|
3213
|
+
height: "100%"
|
|
3005
3214
|
}
|
|
3006
3215
|
},
|
|
3007
3216
|
"& .M4LAccountPopover-containerMenuItems": {
|
|
3008
3217
|
gap: "16px",
|
|
3218
|
+
padding: "0px",
|
|
3009
3219
|
"& .M4LAccountPopover-containerSetting": {
|
|
3010
3220
|
gap: "16px",
|
|
3221
|
+
padding: "2px 4px",
|
|
3222
|
+
minHeight: "36px",
|
|
3223
|
+
alignItems: "center",
|
|
3011
3224
|
"&:hover": {
|
|
3012
3225
|
background: o.palette.state.default
|
|
3013
3226
|
},
|
|
3014
3227
|
"& .M4LIcon-root": {
|
|
3015
3228
|
minWidth: "20px",
|
|
3016
|
-
|
|
3229
|
+
height: "100%",
|
|
3230
|
+
"& .M4LIcon-icon": {
|
|
3231
|
+
minHeight: "20px",
|
|
3232
|
+
minWidth: "20px"
|
|
3233
|
+
}
|
|
3017
3234
|
},
|
|
3018
3235
|
"& .M4LAccountPopover-menuItem": {
|
|
3019
3236
|
width: "100%",
|
|
3020
|
-
|
|
3237
|
+
height: "100%"
|
|
3021
3238
|
}
|
|
3022
3239
|
}
|
|
3023
3240
|
},
|
|
3024
3241
|
"& .M4LAccountPopover-containerlogOut": {
|
|
3025
3242
|
gap: "16px",
|
|
3026
3243
|
cursor: "pointer",
|
|
3244
|
+
padding: "2px 4px",
|
|
3245
|
+
minHeight: "36px",
|
|
3246
|
+
alignItems: "center",
|
|
3027
3247
|
"&:hover": {
|
|
3028
3248
|
background: o.palette.state.default
|
|
3029
3249
|
},
|
|
3030
3250
|
"& .M4LIcon-root": {
|
|
3031
3251
|
minWidth: "20px",
|
|
3032
|
-
|
|
3252
|
+
height: "100%",
|
|
3253
|
+
"& .M4LIcon-icon": {
|
|
3254
|
+
minHeight: "20px",
|
|
3255
|
+
minWidth: "20px"
|
|
3256
|
+
}
|
|
3033
3257
|
},
|
|
3034
3258
|
"& .M4LAccountPopover-logOut": {
|
|
3035
3259
|
width: "100%",
|
|
3036
|
-
|
|
3260
|
+
height: "100%"
|
|
3037
3261
|
}
|
|
3038
3262
|
}
|
|
3039
3263
|
},
|
|
@@ -3061,7 +3285,7 @@ const p = (o) => ({
|
|
|
3061
3285
|
}
|
|
3062
3286
|
}
|
|
3063
3287
|
}
|
|
3064
|
-
}),
|
|
3288
|
+
}), S = (o) => ({
|
|
3065
3289
|
M4LModuleLayout: {
|
|
3066
3290
|
styleOverrides: {
|
|
3067
3291
|
"&.M4LModuleLayout-root": {
|
|
@@ -3078,7 +3302,7 @@ const p = (o) => ({
|
|
|
3078
3302
|
}
|
|
3079
3303
|
}
|
|
3080
3304
|
}
|
|
3081
|
-
}),
|
|
3305
|
+
}), R = (o) => ({
|
|
3082
3306
|
M4LMasterDetailLayout: {
|
|
3083
3307
|
styleOverrides: {
|
|
3084
3308
|
"&.M4LMasterDetailLayout-root": {
|
|
@@ -3111,7 +3335,7 @@ const p = (o) => ({
|
|
|
3111
3335
|
}
|
|
3112
3336
|
}
|
|
3113
3337
|
}
|
|
3114
|
-
}),
|
|
3338
|
+
}), A = (o) => ({
|
|
3115
3339
|
M4LSplitLayout: {
|
|
3116
3340
|
styleOverrides: {
|
|
3117
3341
|
"&.M4LSplitLayout-root": {
|
|
@@ -3123,12 +3347,19 @@ const p = (o) => ({
|
|
|
3123
3347
|
"& .M4LSplitLayout-firstPart": {
|
|
3124
3348
|
position: "relative",
|
|
3125
3349
|
width: "100%",
|
|
3126
|
-
height: "100%"
|
|
3350
|
+
height: "100%",
|
|
3351
|
+
"& .M4LStack-root": {
|
|
3352
|
+
gap: "8px"
|
|
3353
|
+
}
|
|
3127
3354
|
},
|
|
3128
3355
|
"& .M4LSplitLayout-secondPart": {
|
|
3129
3356
|
position: "relative",
|
|
3130
3357
|
width: "100%",
|
|
3131
|
-
height: "100%"
|
|
3358
|
+
height: "100%",
|
|
3359
|
+
"& .M4LStack-root": {
|
|
3360
|
+
gap: "8px",
|
|
3361
|
+
overflow: "hidden"
|
|
3362
|
+
}
|
|
3132
3363
|
},
|
|
3133
3364
|
"& .splitter-layout": {
|
|
3134
3365
|
position: "absolute",
|
|
@@ -3226,7 +3457,7 @@ const p = (o) => ({
|
|
|
3226
3457
|
}
|
|
3227
3458
|
}
|
|
3228
3459
|
}
|
|
3229
|
-
}),
|
|
3460
|
+
}), T = (o) => ({
|
|
3230
3461
|
M4LCommonActions: {
|
|
3231
3462
|
styleOverrides: {
|
|
3232
3463
|
"&.M4LCommonActions-root": {
|
|
@@ -3239,7 +3470,7 @@ const p = (o) => ({
|
|
|
3239
3470
|
}
|
|
3240
3471
|
}
|
|
3241
3472
|
}
|
|
3242
|
-
}),
|
|
3473
|
+
}), P = (o) => ({
|
|
3243
3474
|
M4LinearProgressIndeterminate: {
|
|
3244
3475
|
styleOverrides: {
|
|
3245
3476
|
"&.M4LinearProgressIndeterminate-root": {
|
|
@@ -3293,7 +3524,7 @@ const p = (o) => ({
|
|
|
3293
3524
|
}
|
|
3294
3525
|
}
|
|
3295
3526
|
}
|
|
3296
|
-
}),
|
|
3527
|
+
}), D = (o) => ({
|
|
3297
3528
|
M4LPropertyValue: {
|
|
3298
3529
|
styleOverrides: {
|
|
3299
3530
|
"&.M4LPropertyValue-root": {
|
|
@@ -3385,19 +3616,19 @@ const p = (o) => ({
|
|
|
3385
3616
|
minHeight: "36px",
|
|
3386
3617
|
height: "auto",
|
|
3387
3618
|
justifyContent: "center",
|
|
3388
|
-
|
|
3619
|
+
padding: "8px"
|
|
3389
3620
|
},
|
|
3390
3621
|
"& .M4LPropertyValue-value": {
|
|
3391
3622
|
minHeight: "36px",
|
|
3392
3623
|
height: "auto",
|
|
3393
|
-
padding: "
|
|
3624
|
+
padding: "12px 16px",
|
|
3394
3625
|
justifyContent: "center"
|
|
3395
3626
|
}
|
|
3396
3627
|
}
|
|
3397
3628
|
}
|
|
3398
3629
|
}
|
|
3399
3630
|
}
|
|
3400
|
-
}),
|
|
3631
|
+
}), H = (o) => ({
|
|
3401
3632
|
M4LTab: {
|
|
3402
3633
|
styleOverrides: {
|
|
3403
3634
|
"&.M4LTab-root": {
|
|
@@ -3449,7 +3680,7 @@ const p = (o) => ({
|
|
|
3449
3680
|
}
|
|
3450
3681
|
}
|
|
3451
3682
|
}
|
|
3452
|
-
}),
|
|
3683
|
+
}), F = (o) => ({
|
|
3453
3684
|
M4LAccordion: {
|
|
3454
3685
|
styleOverrides: {
|
|
3455
3686
|
"&.M4LAccordion-root": {
|
|
@@ -3471,11 +3702,13 @@ const p = (o) => ({
|
|
|
3471
3702
|
border: "1px solid",
|
|
3472
3703
|
borderColor: o.palette.state.borderPrimary,
|
|
3473
3704
|
"& .MuiCollapse-root": {
|
|
3705
|
+
padding: "8px",
|
|
3474
3706
|
"& .MuiCollapse-wrapper": {
|
|
3475
3707
|
"& .MuiCollapse-wrapperInner": {
|
|
3476
3708
|
"& .MuiAccordion-region": {
|
|
3477
|
-
"
|
|
3709
|
+
"& .M4LAccordion-content": {
|
|
3478
3710
|
display: "flex !important",
|
|
3711
|
+
flexDirection: "column",
|
|
3479
3712
|
gap: "8px !important"
|
|
3480
3713
|
}
|
|
3481
3714
|
}
|
|
@@ -3483,14 +3716,14 @@ const p = (o) => ({
|
|
|
3483
3716
|
}
|
|
3484
3717
|
}
|
|
3485
3718
|
},
|
|
3486
|
-
"& .MuiButtonBase-root": {
|
|
3719
|
+
"& .MuiButtonBase-root.Mui-expanded": {
|
|
3487
3720
|
padding: "4px 8px",
|
|
3488
3721
|
borderRadius: "4px",
|
|
3489
3722
|
height: "24px",
|
|
3490
3723
|
minHeight: "24px",
|
|
3491
3724
|
background: "transparent",
|
|
3492
3725
|
"&.MuiAccordionSummary-root": {
|
|
3493
|
-
|
|
3726
|
+
height: "28px",
|
|
3494
3727
|
minHeight: "28px",
|
|
3495
3728
|
padding: "0",
|
|
3496
3729
|
"& .M4LAccordion-labelIcon": {
|
|
@@ -3529,25 +3762,38 @@ const p = (o) => ({
|
|
|
3529
3762
|
},
|
|
3530
3763
|
test: "root"
|
|
3531
3764
|
},
|
|
3532
|
-
"& .
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
background: o.palette.background.neutral,
|
|
3765
|
+
"& .MuiPaper-outlined": {
|
|
3766
|
+
"& .MuiButtonBase-root": {
|
|
3767
|
+
padding: "4px 8px",
|
|
3768
|
+
borderRadius: "4px",
|
|
3769
|
+
height: "24px",
|
|
3770
|
+
minHeight: "24px",
|
|
3771
|
+
background: "transparent",
|
|
3540
3772
|
"&.MuiAccordionSummary-root": {
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3773
|
+
height: "28px",
|
|
3774
|
+
minHeight: "28px",
|
|
3775
|
+
padding: "0",
|
|
3776
|
+
"&:hover": {
|
|
3777
|
+
background: o.palette.state?.hoverDefault
|
|
3778
|
+
}
|
|
3779
|
+
},
|
|
3780
|
+
"& .MuiCollapse-root": {
|
|
3781
|
+
background: o.palette.background.default,
|
|
3782
|
+
borderColor: o.palette.state.borderPrimary,
|
|
3783
|
+
borderRadius: "0px 0px 4px 4px",
|
|
3784
|
+
padding: "8px",
|
|
3785
|
+
"&.MuiButtonBase-root": {
|
|
3786
|
+
padding: "4px 8px !important",
|
|
3787
|
+
background: o.palette.background.neutral
|
|
3788
|
+
},
|
|
3789
|
+
"& .M4LAccordion-content": {
|
|
3790
|
+
display: "flex !important",
|
|
3791
|
+
flexDirection: "column",
|
|
3792
|
+
gap: "2px",
|
|
3793
|
+
"& .M4LPropertyValue-root:last-of-type": {
|
|
3794
|
+
borderBottom: "unset"
|
|
3795
|
+
}
|
|
3796
|
+
}
|
|
3551
3797
|
}
|
|
3552
3798
|
}
|
|
3553
3799
|
},
|
|
@@ -3575,7 +3821,7 @@ const p = (o) => ({
|
|
|
3575
3821
|
}
|
|
3576
3822
|
}
|
|
3577
3823
|
}
|
|
3578
|
-
}),
|
|
3824
|
+
}), V = (o) => ({
|
|
3579
3825
|
M4LRHFormProvider: {
|
|
3580
3826
|
styleOverrides: {
|
|
3581
3827
|
"&.M4LRHFormProvider-root": {
|
|
@@ -3590,7 +3836,7 @@ const p = (o) => ({
|
|
|
3590
3836
|
}
|
|
3591
3837
|
}
|
|
3592
3838
|
}
|
|
3593
|
-
}),
|
|
3839
|
+
}), z = (o) => ({
|
|
3594
3840
|
M4LPeriod: {
|
|
3595
3841
|
styleOverrides: {
|
|
3596
3842
|
"&.M4LPeriod-root": {
|
|
@@ -3615,7 +3861,9 @@ const p = (o) => ({
|
|
|
3615
3861
|
"& .M4LPeriod-containerDateLabel": {
|
|
3616
3862
|
width: "100%",
|
|
3617
3863
|
height: "100% !important",
|
|
3618
|
-
padding: "0px 0px 0px 8px"
|
|
3864
|
+
padding: "0px 0px 0px 8px",
|
|
3865
|
+
borderRight: "1px solid",
|
|
3866
|
+
borderColor: o.palette.state.borderPrimary
|
|
3619
3867
|
},
|
|
3620
3868
|
"& .M4LPeriod-containerDateValue": {
|
|
3621
3869
|
display: "flex",
|
|
@@ -3824,7 +4072,7 @@ const p = (o) => ({
|
|
|
3824
4072
|
}
|
|
3825
4073
|
}
|
|
3826
4074
|
}
|
|
3827
|
-
}),
|
|
4075
|
+
}), W = (o) => ({
|
|
3828
4076
|
M4LModalDialog: {
|
|
3829
4077
|
styleOverrides: {
|
|
3830
4078
|
"&.M4LModal-root": {
|
|
@@ -3940,14 +4188,18 @@ const p = (o) => ({
|
|
|
3940
4188
|
display: "flex",
|
|
3941
4189
|
flexDirection: "column",
|
|
3942
4190
|
flex: "1",
|
|
3943
|
-
overflow: "hidden"
|
|
4191
|
+
overflow: "hidden",
|
|
4192
|
+
"& .M4LStack-root": {
|
|
4193
|
+
gap: "8px",
|
|
4194
|
+
overflow: "hidden"
|
|
4195
|
+
}
|
|
3944
4196
|
}
|
|
3945
4197
|
}
|
|
3946
4198
|
}
|
|
3947
4199
|
}
|
|
3948
4200
|
}
|
|
3949
4201
|
}
|
|
3950
|
-
}),
|
|
4202
|
+
}), O = (o) => ({
|
|
3951
4203
|
M4LPaperForm: {
|
|
3952
4204
|
styleOverrides: {
|
|
3953
4205
|
"&.M4LPaperForm-root": {
|
|
@@ -3958,6 +4210,9 @@ const p = (o) => ({
|
|
|
3958
4210
|
borderColor: o.palette.state.borderSecondary,
|
|
3959
4211
|
width: "100%",
|
|
3960
4212
|
height: "auto",
|
|
4213
|
+
"&.M4LPaperForm-isForm .M4LPaperForm-content": {
|
|
4214
|
+
gap: "12px"
|
|
4215
|
+
},
|
|
3961
4216
|
"& .M4LPaperForm-headerContainer": {
|
|
3962
4217
|
width: "100%",
|
|
3963
4218
|
height: "28px",
|
|
@@ -3982,6 +4237,8 @@ const p = (o) => ({
|
|
|
3982
4237
|
}
|
|
3983
4238
|
},
|
|
3984
4239
|
"& .M4LPaperForm-content": {
|
|
4240
|
+
display: "flex",
|
|
4241
|
+
flexDirection: "column",
|
|
3985
4242
|
height: "fit-content",
|
|
3986
4243
|
width: "100%",
|
|
3987
4244
|
padding: "12px",
|
|
@@ -3991,7 +4248,7 @@ const p = (o) => ({
|
|
|
3991
4248
|
}
|
|
3992
4249
|
}
|
|
3993
4250
|
}
|
|
3994
|
-
}),
|
|
4251
|
+
}), j = (o) => ({
|
|
3995
4252
|
M4LTooltip: {
|
|
3996
4253
|
styleOverrides: {
|
|
3997
4254
|
"&.M4LTooltip-root": {
|
|
@@ -4012,7 +4269,7 @@ const p = (o) => ({
|
|
|
4012
4269
|
}
|
|
4013
4270
|
}
|
|
4014
4271
|
}
|
|
4015
|
-
}),
|
|
4272
|
+
}), G = (o) => ({
|
|
4016
4273
|
M4LBadge: {
|
|
4017
4274
|
styleOverrides: {
|
|
4018
4275
|
"&.M4LBadge-root": {
|
|
@@ -4043,7 +4300,7 @@ const p = (o) => ({
|
|
|
4043
4300
|
}
|
|
4044
4301
|
}
|
|
4045
4302
|
}
|
|
4046
|
-
}),
|
|
4303
|
+
}), N = (o) => ({
|
|
4047
4304
|
M4LDataGrid: {
|
|
4048
4305
|
styleOverrides: {
|
|
4049
4306
|
"&.M4LDataGrid-root": {
|
|
@@ -4063,8 +4320,9 @@ const p = (o) => ({
|
|
|
4063
4320
|
left: "0px",
|
|
4064
4321
|
right: "0px",
|
|
4065
4322
|
top: "0px",
|
|
4066
|
-
height: "
|
|
4067
|
-
|
|
4323
|
+
height: "32px",
|
|
4324
|
+
minHeight: "32px",
|
|
4325
|
+
padding: "4px 8px",
|
|
4068
4326
|
display: "flex",
|
|
4069
4327
|
flexDirection: "row",
|
|
4070
4328
|
borderRadius: "4px",
|
|
@@ -4113,7 +4371,7 @@ const p = (o) => ({
|
|
|
4113
4371
|
display: "flex",
|
|
4114
4372
|
flexDirection: "column",
|
|
4115
4373
|
position: "absolute",
|
|
4116
|
-
top: "
|
|
4374
|
+
top: "32px",
|
|
4117
4375
|
bottom: "0px",
|
|
4118
4376
|
left: "0px",
|
|
4119
4377
|
right: "0px",
|
|
@@ -4130,6 +4388,7 @@ const p = (o) => ({
|
|
|
4130
4388
|
position: "relative",
|
|
4131
4389
|
height: "100%",
|
|
4132
4390
|
overflow: "hidden",
|
|
4391
|
+
borderRadius: "4px 0px",
|
|
4133
4392
|
"& .rdg ": {
|
|
4134
4393
|
border: "none",
|
|
4135
4394
|
background: o.palette.background.default,
|
|
@@ -4154,12 +4413,11 @@ const p = (o) => ({
|
|
|
4154
4413
|
),
|
|
4155
4414
|
"--rdg-border-color": "none",
|
|
4156
4415
|
"&:last-child .rdg-cell": {
|
|
4157
|
-
borderTop: "0",
|
|
4416
|
+
borderTop: "0.5px solid",
|
|
4158
4417
|
borderBottom: "1px solid",
|
|
4159
|
-
borderLeft: "0",
|
|
4160
|
-
borderRight: "0",
|
|
4161
|
-
borderColor: o.palette.state.borderDisable
|
|
4162
|
-
test: "bruce"
|
|
4418
|
+
borderLeft: "0.5px solid",
|
|
4419
|
+
borderRight: "0.5px solid",
|
|
4420
|
+
borderColor: o.palette.state.borderDisable
|
|
4163
4421
|
}
|
|
4164
4422
|
},
|
|
4165
4423
|
'& [role="columnheader"]': {
|
|
@@ -4224,6 +4482,10 @@ const p = (o) => ({
|
|
|
4224
4482
|
...o.typography.bodyDens,
|
|
4225
4483
|
lineHeight: "var(--rdg-row-height)!important"
|
|
4226
4484
|
},
|
|
4485
|
+
'& .rdg-cell[role="columnheader"] [draggable="true"]': {
|
|
4486
|
+
...o.typography.bodyDens,
|
|
4487
|
+
lineHeight: "var(--rdg-row-height)!important"
|
|
4488
|
+
},
|
|
4227
4489
|
"& [aria-selected=true]": {
|
|
4228
4490
|
backgroundColor: o.palette.state.toneOp,
|
|
4229
4491
|
color: o.palette.text.primary,
|
|
@@ -4264,13 +4526,13 @@ const p = (o) => ({
|
|
|
4264
4526
|
gridTemplateColumns: "auto",
|
|
4265
4527
|
borderBottom: "0.5px solid !important",
|
|
4266
4528
|
borderColor: `${o.palette.state.borderDisable}!important`,
|
|
4529
|
+
'& [draggable="true"]': {
|
|
4530
|
+
fontSize: o.typography.body
|
|
4531
|
+
},
|
|
4267
4532
|
"&.rdg-cell-frozen-last": {
|
|
4268
4533
|
borderColor: o.palette.background.default,
|
|
4269
4534
|
boxShadow: "var(--rdg-frozen-cell-box-shadow)",
|
|
4270
|
-
"&:after": {
|
|
4271
|
-
borderRight: "1.5px solid",
|
|
4272
|
-
borderColor: o.palette.background.neutral
|
|
4273
|
-
}
|
|
4535
|
+
"&:after": {}
|
|
4274
4536
|
},
|
|
4275
4537
|
"& .rdg-header-sort-cell": {
|
|
4276
4538
|
"& .rdg-header-sort-name + span": {
|
|
@@ -4316,11 +4578,41 @@ const p = (o) => ({
|
|
|
4316
4578
|
M4LDataGridActionsFormatter: {
|
|
4317
4579
|
styleOverrides: {
|
|
4318
4580
|
"&.M4LDataGrid-actionsFormatter": {
|
|
4319
|
-
test: "root"
|
|
4581
|
+
test: "root",
|
|
4582
|
+
"& .MuiPaper-root": {
|
|
4583
|
+
gap: "4px",
|
|
4584
|
+
"& .MuiButtonBase-root": {
|
|
4585
|
+
minHeight: "24px",
|
|
4586
|
+
padding: "2px 4px",
|
|
4587
|
+
gap: "12px",
|
|
4588
|
+
"& .M4LIcon-root": {
|
|
4589
|
+
minHeight: "20px",
|
|
4590
|
+
minWidth: "20px"
|
|
4591
|
+
}
|
|
4592
|
+
}
|
|
4593
|
+
},
|
|
4594
|
+
[o.breakpoints.down("md")]: {
|
|
4595
|
+
"& .MuiPaper-root": {
|
|
4596
|
+
padding: "12px",
|
|
4597
|
+
"& .MuiButtonBase-root": {
|
|
4598
|
+
minHeight: "36px",
|
|
4599
|
+
padding: "2px 4px",
|
|
4600
|
+
gap: "16px",
|
|
4601
|
+
"& .M4LIcon-root": {
|
|
4602
|
+
minHeight: "28px",
|
|
4603
|
+
minWidth: "28px",
|
|
4604
|
+
"& .M4LIcon-icon": {
|
|
4605
|
+
minHeight: "20px",
|
|
4606
|
+
minWidth: "20px"
|
|
4607
|
+
}
|
|
4608
|
+
}
|
|
4609
|
+
}
|
|
4610
|
+
}
|
|
4611
|
+
}
|
|
4320
4612
|
}
|
|
4321
4613
|
}
|
|
4322
4614
|
}
|
|
4323
|
-
}),
|
|
4615
|
+
}), E = (o) => ({
|
|
4324
4616
|
M4LPager: {
|
|
4325
4617
|
styleOverrides: {
|
|
4326
4618
|
"&.M4LPager-root": {
|
|
@@ -4408,7 +4700,7 @@ const p = (o) => ({
|
|
|
4408
4700
|
}
|
|
4409
4701
|
}
|
|
4410
4702
|
}
|
|
4411
|
-
}),
|
|
4703
|
+
}), _ = (o) => ({
|
|
4412
4704
|
M4LCheckBox: {
|
|
4413
4705
|
styleOverrides: {
|
|
4414
4706
|
"&.M4LCheckBox-root": {
|
|
@@ -4464,7 +4756,7 @@ const p = (o) => ({
|
|
|
4464
4756
|
}
|
|
4465
4757
|
}
|
|
4466
4758
|
}
|
|
4467
|
-
}),
|
|
4759
|
+
}), $ = (o) => ({
|
|
4468
4760
|
M4LStack: {
|
|
4469
4761
|
styleOverrides: {
|
|
4470
4762
|
"&.M4LStack-root": {
|
|
@@ -4477,7 +4769,7 @@ const p = (o) => ({
|
|
|
4477
4769
|
}
|
|
4478
4770
|
}
|
|
4479
4771
|
}
|
|
4480
|
-
}),
|
|
4772
|
+
}), U = (o) => ({
|
|
4481
4773
|
M4LTabs: {
|
|
4482
4774
|
styleOverrides: {
|
|
4483
4775
|
"&.M4LTabs-root": {
|
|
@@ -4517,7 +4809,7 @@ const p = (o) => ({
|
|
|
4517
4809
|
}
|
|
4518
4810
|
}
|
|
4519
4811
|
}
|
|
4520
|
-
}),
|
|
4812
|
+
}), q = (o) => ({
|
|
4521
4813
|
M4LNoItemSelected: {
|
|
4522
4814
|
styleOverrides: {
|
|
4523
4815
|
"&.M4LNoItemSelected-root": {
|
|
@@ -4537,15 +4829,18 @@ const p = (o) => ({
|
|
|
4537
4829
|
}
|
|
4538
4830
|
}
|
|
4539
4831
|
}
|
|
4540
|
-
}),
|
|
4832
|
+
}), Y = (o) => ({
|
|
4541
4833
|
M4LScrollBar: {
|
|
4542
4834
|
styleOverrides: {
|
|
4543
4835
|
"&.M4LScrollBar-root": {
|
|
4544
|
-
flexGrow: 1,
|
|
4836
|
+
flexGrow: "1",
|
|
4545
4837
|
width: "100%",
|
|
4546
4838
|
height: "100%",
|
|
4547
4839
|
overflow: "hidden",
|
|
4548
4840
|
minHeight: "inherit",
|
|
4841
|
+
"& .simplebar-content": {
|
|
4842
|
+
height: "100%"
|
|
4843
|
+
},
|
|
4549
4844
|
"& .simplebar-scrollbar.simplebar-visible:before": {
|
|
4550
4845
|
opacity: "1"
|
|
4551
4846
|
},
|
|
@@ -4569,7 +4864,7 @@ const p = (o) => ({
|
|
|
4569
4864
|
}
|
|
4570
4865
|
}
|
|
4571
4866
|
}
|
|
4572
|
-
}),
|
|
4867
|
+
}), J = (o) => ({
|
|
4573
4868
|
M4LGridLayout: {
|
|
4574
4869
|
styleOverrides: {
|
|
4575
4870
|
"&.M4LGridLayout-root": {
|
|
@@ -4577,11 +4872,11 @@ const p = (o) => ({
|
|
|
4577
4872
|
}
|
|
4578
4873
|
}
|
|
4579
4874
|
}
|
|
4580
|
-
}),
|
|
4875
|
+
}), K = (o) => ({
|
|
4581
4876
|
M4LTabContent: {
|
|
4582
4877
|
styleOverrides: {
|
|
4583
4878
|
"&.M4LTabContent-root": {
|
|
4584
|
-
padding: "
|
|
4879
|
+
padding: "0px",
|
|
4585
4880
|
display: "flex",
|
|
4586
4881
|
overflow: "hidden",
|
|
4587
4882
|
height: "100%",
|
|
@@ -4590,11 +4885,14 @@ const p = (o) => ({
|
|
|
4590
4885
|
background: o.palette.background.default,
|
|
4591
4886
|
borderRadius: "0 0 4px 4px",
|
|
4592
4887
|
position: "relative",
|
|
4593
|
-
flex: 1
|
|
4888
|
+
flex: 1,
|
|
4889
|
+
"&.M4LTabContent-root > div": {
|
|
4890
|
+
gap: "8px"
|
|
4891
|
+
}
|
|
4594
4892
|
}
|
|
4595
4893
|
}
|
|
4596
4894
|
}
|
|
4597
|
-
}),
|
|
4895
|
+
}), Q = (o) => ({
|
|
4598
4896
|
M4LMenuActions: {
|
|
4599
4897
|
styleOverrides: {
|
|
4600
4898
|
"&.M4LMenuActions-root": {
|
|
@@ -4809,7 +5107,7 @@ const p = (o) => ({
|
|
|
4809
5107
|
}
|
|
4810
5108
|
}
|
|
4811
5109
|
}
|
|
4812
|
-
}),
|
|
5110
|
+
}), Z = (o) => ({
|
|
4813
5111
|
M4LFormatter: {
|
|
4814
5112
|
styleOverrides: {
|
|
4815
5113
|
"&.M4LFormatter-root": {
|
|
@@ -4826,7 +5124,7 @@ const p = (o) => ({
|
|
|
4826
5124
|
}
|
|
4827
5125
|
}
|
|
4828
5126
|
}
|
|
4829
|
-
}),
|
|
5127
|
+
}), oo = (o) => ({
|
|
4830
5128
|
M4LoadingError: {
|
|
4831
5129
|
styleOverrides: {
|
|
4832
5130
|
"&.M4LoadingError-root": {
|
|
@@ -4885,7 +5183,7 @@ const p = (o) => ({
|
|
|
4885
5183
|
}
|
|
4886
5184
|
}
|
|
4887
5185
|
}
|
|
4888
|
-
}),
|
|
5186
|
+
}), to = (o) => ({
|
|
4889
5187
|
M4LMFLoader: {
|
|
4890
5188
|
styleOverrides: {
|
|
4891
5189
|
"&.M4LMFLoader-root": {
|
|
@@ -4898,7 +5196,7 @@ const p = (o) => ({
|
|
|
4898
5196
|
}
|
|
4899
5197
|
}
|
|
4900
5198
|
}
|
|
4901
|
-
}),
|
|
5199
|
+
}), eo = (o) => ({
|
|
4902
5200
|
M4LLoadingButton: {
|
|
4903
5201
|
styleOverrides: {
|
|
4904
5202
|
"&.M4LLoadingButton-root": {
|
|
@@ -5130,7 +5428,7 @@ const p = (o) => ({
|
|
|
5130
5428
|
}
|
|
5131
5429
|
}
|
|
5132
5430
|
}
|
|
5133
|
-
}),
|
|
5431
|
+
}), ro = (o) => ({
|
|
5134
5432
|
M4LToastContainer: {
|
|
5135
5433
|
styleOverrides: {
|
|
5136
5434
|
"&.M4LToastContainer-root": {
|
|
@@ -5208,7 +5506,7 @@ const p = (o) => ({
|
|
|
5208
5506
|
}
|
|
5209
5507
|
}
|
|
5210
5508
|
}
|
|
5211
|
-
}),
|
|
5509
|
+
}), ao = (o) => ({
|
|
5212
5510
|
M4LPDFViewer: {
|
|
5213
5511
|
styleOverrides: {
|
|
5214
5512
|
"&.M4LPDFViewer-root": {
|
|
@@ -5225,52 +5523,52 @@ const p = (o) => ({
|
|
|
5225
5523
|
}
|
|
5226
5524
|
});
|
|
5227
5525
|
export {
|
|
5228
|
-
A,
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5526
|
+
H as A,
|
|
5527
|
+
F as B,
|
|
5528
|
+
z as C,
|
|
5529
|
+
W as D,
|
|
5530
|
+
O as E,
|
|
5531
|
+
j as F,
|
|
5532
|
+
E as G,
|
|
5533
|
+
_ as H,
|
|
5534
|
+
$ as I,
|
|
5535
|
+
U as J,
|
|
5536
|
+
q as K,
|
|
5537
|
+
Y as L,
|
|
5538
|
+
eo as M,
|
|
5539
|
+
J as N,
|
|
5540
|
+
K as O,
|
|
5541
|
+
Q as P,
|
|
5244
5542
|
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
|
-
|
|
5543
|
+
Z as R,
|
|
5544
|
+
oo as S,
|
|
5545
|
+
to as T,
|
|
5546
|
+
ro as U,
|
|
5547
|
+
ao as V,
|
|
5548
|
+
c as a,
|
|
5549
|
+
V as b,
|
|
5550
|
+
g as c,
|
|
5551
|
+
x as d,
|
|
5552
|
+
u as e,
|
|
5553
|
+
b as f,
|
|
5554
|
+
w as g,
|
|
5555
|
+
M as h,
|
|
5556
|
+
G as i,
|
|
5557
|
+
y as j,
|
|
5558
|
+
N as k,
|
|
5559
|
+
L as l,
|
|
5560
|
+
h as m,
|
|
5561
|
+
f as n,
|
|
5562
|
+
v as o,
|
|
5563
|
+
k as p,
|
|
5564
|
+
m as q,
|
|
5565
|
+
C as r,
|
|
5566
|
+
I as s,
|
|
5567
|
+
B as t,
|
|
5568
|
+
S as u,
|
|
5569
|
+
R as v,
|
|
5570
|
+
A as w,
|
|
5571
|
+
T as x,
|
|
5572
|
+
P as y,
|
|
5573
|
+
D as z
|
|
5276
5574
|
};
|