@m4l/styles 0.0.16 → 0.0.18

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.
Files changed (45) hide show
  1. package/index.js +10 -10
  2. package/package.json +2 -1
  3. package/theme/{defaultThemeOptions.364b28b6.js → defaultThemeOptions.d67fe64c.js} +7 -7
  4. package/theme/index.efa44d2d.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +53 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +42 -4
  7. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +77 -96
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +206 -59
  9. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +1960 -37
  10. package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +10 -0
  11. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +10 -15
  12. package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +5 -1
  13. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +9 -10
  14. package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +7 -6
  15. package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +927 -0
  16. package/theme/overrides/M4LExtendedComponents/M4LPaperForm.d.ts +42 -0
  17. package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +146 -0
  18. package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +10 -0
  19. package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +13 -0
  20. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +5 -0
  21. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +47 -0
  22. package/theme/overrides/M4LExtendedComponents/M4LTooltip.d.ts +26 -0
  23. package/theme/overrides/M4LExtendedComponents/M4LinearProgressIndeterminate.d.ts +56 -0
  24. package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +8 -3
  25. package/theme/overrides/M4LExtendedComponents/{index.9d7c79cc.js → index.bd713d88.js} +1198 -226
  26. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
  27. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +0 -1
  28. package/theme/overrides/M4LRHFComponents/M4LRHFPeriod.d.ts +10 -0
  29. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +16 -0
  30. package/theme/overrides/M4LRHFComponents/M4LRHFUploadImage.d.ts +172 -0
  31. package/theme/overrides/M4LRHFComponents/{index.b7f8e30c.js → index.1406e2ed.js} +209 -11
  32. package/theme/overrides/MUIComponents/Tabs.d.ts +23 -3
  33. package/theme/overrides/MUIComponents/{index.56660771.js → index.e3d060c3.js} +47 -27
  34. package/theme/overrides/index.6b7aec0f.js +90 -0
  35. package/theme/{palette.4b477f9b.js → palette.95c4f9c8.js} +17 -17
  36. package/theme/palette.d.ts +4 -4
  37. package/theme/{shadows.b2f38616.js → shadows.354bbb03.js} +1 -1
  38. package/theme/{typography.1db0276b.js → typography.61f909b7.js} +4 -4
  39. package/types/augmentations.d.ts +3 -1
  40. package/utils/{getColorPresets.f3113d85.js → getColorPresets.d73f30ad.js} +1 -1
  41. package/utils/getColorState.bde51cf7.js +159 -0
  42. package/utils/getColorState.d.ts +2 -0
  43. package/theme/index.cd1bedc8.js +0 -7
  44. package/theme/overrides/index.ff2a1a5a.js +0 -78
  45. package/utils/getColorState.456150fd.js +0 -136
@@ -1,5 +1,6 @@
1
1
  import { alpha as t } from "@mui/material/styles";
2
- const a = (o) => ({
2
+ import { alpha as e } from "@mui/system";
3
+ const i = (o) => ({
3
4
  M4LDynamicFilter: {
4
5
  styleOverrides: {
5
6
  "&.M4LDynamicFilter-root": {
@@ -8,8 +9,7 @@ const a = (o) => ({
8
9
  boxShadow: o.customShadows.z2,
9
10
  padding: "0px",
10
11
  border: "1px solid",
11
- borderColor: o.palette.state.default,
12
- overflow: "hidden",
12
+ borderColor: o.palette.background.background,
13
13
  "& .M4LDynamicFilter-containerFistRow": {
14
14
  height: "32px",
15
15
  width: "100%",
@@ -40,19 +40,21 @@ const a = (o) => ({
40
40
  width: "100%",
41
41
  alignItems: "center",
42
42
  "& > input": {
43
- border: "none",
43
+ border: "1px solid",
44
+ borderColor: o.palette.background.background,
44
45
  background: "none",
45
46
  ...o.typography.body,
46
47
  color: o.palette.text.primary,
47
48
  padding: "0px 4px",
48
49
  width: "100%",
49
50
  height: "100%",
50
- BorderRadius: "4px"
51
+ borderRadius: "2px"
51
52
  },
52
53
  "& input:focus-visible": {
53
- border: "none",
54
+ border: "1px solid",
55
+ borderColor: o.palette.state.active12,
54
56
  background: o.palette.state.active12,
55
- BorderRadius: "4px",
57
+ BorderRadius: "2px",
56
58
  outline: "none",
57
59
  padding: "0px 4px"
58
60
  }
@@ -87,18 +89,14 @@ const a = (o) => ({
87
89
  styleOverrides: {
88
90
  "&.M4LDynamicFilter-popoverMenuFields": {
89
91
  "& .M4LDynamicFilter-popoverMenuFieldsPaper": {
90
- padding: "4px",
91
- gap: "4px",
92
92
  "& .M4LDynamicFilter-classespopoverLabelMemuItem": {
93
93
  ...o.typography.body,
94
- color: o.palette.text.secondary,
95
- borderRadius: "4px"
94
+ color: o.palette.text.secondary
96
95
  },
97
96
  "& .M4LDynamicFilter-popoverMenuFieldsItem:hover": {
98
97
  ...o.typography.body,
99
98
  color: o.palette.state.hover,
100
- background: o.palette.state.default,
101
- borderRadius: "4px"
99
+ background: o.palette.state.default
102
100
  }
103
101
  }
104
102
  }
@@ -107,21 +105,24 @@ const a = (o) => ({
107
105
  M4LDynamicFilterPopoverFilter: {
108
106
  styleOverrides: {
109
107
  "&.M4LDynamicFilter-popoverFilter": {
108
+ width: "auto",
110
109
  "& .M4LDynamicFilter-popoverFilterPaper": {
111
110
  padding: "0px",
111
+ width: "200px",
112
112
  "& .M4LPopover-arrowStyle": {
113
113
  background: "none"
114
114
  },
115
- "& .m4l_FormProvider": {
115
+ "& .M4LRHFormProvider-root": {
116
116
  gap: "0px",
117
- minWidth: "200px",
117
+ widht: "100%",
118
+ minWidht: "220px",
118
119
  "& .M4LDynamicFilter-popoverFilterHeader": {
119
120
  background: o.palette.state.default,
120
121
  display: "flex",
121
- gap: "8px",
122
- padding: "4px 8px",
122
+ gap: "4px",
123
+ padding: "8px",
123
124
  borderRadius: "4px",
124
- boxShadow: o.customShadows.z1,
125
+ boxShadow: o.customShadows.z2,
125
126
  borderBottom: "0px",
126
127
  "& .MuiTypography-root": {
127
128
  ...o.typography.bodyDens,
@@ -140,12 +141,11 @@ const a = (o) => ({
140
141
  gap: "8px"
141
142
  }
142
143
  },
143
- "& .M4LCommonActions-root": {
144
+ "& .M4LCommonActions-wrapperActions": {
144
145
  display: "flex",
145
146
  flexDirection: "row",
146
147
  gap: "12px",
147
- padding: "20px 8px 12px 8px",
148
- margin: "0px",
148
+ padding: "20px 8px 12px 0px",
149
149
  ".M4LButton-root": {
150
150
  width: "fit-content"
151
151
  }
@@ -155,7 +155,7 @@ const a = (o) => ({
155
155
  }
156
156
  }
157
157
  }
158
- }), r = (o) => ({
158
+ }), n = (o) => ({
159
159
  M4LIcon: {
160
160
  styleOverrides: {
161
161
  ["&.M4LIcon-root"]: {
@@ -204,7 +204,7 @@ const a = (o) => ({
204
204
  }
205
205
  }
206
206
  }
207
- }), i = (o) => ({
207
+ }), p = (o) => ({
208
208
  M4LIconButton: {
209
209
  styleOverrides: {
210
210
  ["&.M4LIconButton-root"]: {
@@ -355,7 +355,7 @@ const a = (o) => ({
355
355
  }
356
356
  }
357
357
  }
358
- }), n = (o) => ({
358
+ }), d = (o) => ({
359
359
  M4LanguagePopover: {
360
360
  styleOverrides: {
361
361
  ["&.M4LanguagePopover-root"]: {}
@@ -403,7 +403,7 @@ const a = (o) => ({
403
403
  }
404
404
  }
405
405
  }
406
- }), p = (o) => ({
406
+ }), s = (o) => ({
407
407
  M4LImage: {
408
408
  styleOverrides: {
409
409
  ["&.M4LImage-root"]: {
@@ -440,7 +440,7 @@ const a = (o) => ({
440
440
  }
441
441
  }
442
442
  }
443
- }), d = (o) => ({
443
+ }), c = (o) => ({
444
444
  M4LPopover: {
445
445
  styleOverrides: {
446
446
  ["&.M4LPopover-root"]: {
@@ -469,7 +469,7 @@ const a = (o) => ({
469
469
  }
470
470
  }
471
471
  }
472
- }), s = (o) => ({
472
+ }), u = (o) => ({
473
473
  M4LErrorLabel: {
474
474
  styleOverrides: {
475
475
  ["&.M4LHelperText-root"]: {
@@ -488,7 +488,7 @@ const a = (o) => ({
488
488
  }
489
489
  }
490
490
  }
491
- }), c = (o) => ({
491
+ }), x = (o) => ({
492
492
  M4LTypography: {
493
493
  styleOverrides: {
494
494
  ["&.M4LTypography-root"]: {
@@ -500,13 +500,14 @@ const a = (o) => ({
500
500
  }
501
501
  }
502
502
  }
503
- }), u = (o) => ({
503
+ }), g = (o) => ({
504
504
  M4LButton: {
505
505
  styleOverrides: {
506
506
  "&.M4LButton-root": {
507
- width: "100%",
507
+ width: "fit-content",
508
508
  display: "flex",
509
509
  justifyContent: "center",
510
+ ...o.typography.action,
510
511
  "& .M4LButton-skeleton ": {
511
512
  height: "100%!important",
512
513
  borderRadius: "4px"
@@ -579,18 +580,20 @@ const a = (o) => ({
579
580
  }
580
581
  },
581
582
  "&.M4LButton-sizeSmall": {
582
- height: "28px",
583
583
  "& .MuiButtonBase-root": {
584
- padding: "4px 12px"
584
+ padding: "4px 12px",
585
+ height: "28px",
586
+ minHeight: "28px"
585
587
  },
586
588
  "&.M4LButton-skeleton": {
587
589
  height: "28px"
588
590
  }
589
591
  },
590
592
  "&.M4LButton-sizeMedium": {
591
- height: "38px",
592
593
  "& .MuiButtonBase-root": {
593
- padding: "8px 16px"
594
+ padding: "8px 16px",
595
+ height: "38px",
596
+ minHeight: "38px"
594
597
  },
595
598
  "&.M4LButton-skeleton": {
596
599
  height: "38px"
@@ -598,12 +601,12 @@ const a = (o) => ({
598
601
  },
599
602
  "&.M4LButton-variantContained": {
600
603
  "& .MuiButtonBase-root": {
601
- backgroundColor: o.palette.state?.default,
602
- color: o.palette.text.primary,
603
- boxShadow: o.customShadows?.z2,
604
+ backgroundColor: o.palette.state?.active,
605
+ color: o.palette.patronus?.marbleLight[10],
606
+ boxShadow: o.customShadows?.primary,
604
607
  position: "relative",
605
608
  "& .M4LIcon-icon": {
606
- backgroundColor: o.palette.text.primary
609
+ backgroundColor: o.palette.patronus?.marbleLight[10]
607
610
  },
608
611
  "&:hover": {
609
612
  backgroundColor: o.palette.state?.hover,
@@ -612,13 +615,6 @@ const a = (o) => ({
612
615
  backgroundColor: o.palette.patronus?.marbleLight[10]
613
616
  }
614
617
  },
615
- "&:active": {
616
- backgroundColor: o.palette.state?.active,
617
- color: o.palette.patronus?.marbleLight[10],
618
- "& .M4LIcon-icon": {
619
- backgroundColor: o.palette.patronus?.marbleLight[10]
620
- }
621
- },
622
618
  "&.Mui-focusVisible": {
623
619
  backgroundColor: o.palette.state?.active,
624
620
  color: o.palette.patronus?.marbleLight[10],
@@ -634,7 +630,7 @@ const a = (o) => ({
634
630
  "&.M4LButton-variantOutlined": {
635
631
  "& .MuiButtonBase-root": {
636
632
  border: "1px solid",
637
- borderColor: o.palette.state.default,
633
+ borderColor: o.palette.state.borderDefault,
638
634
  color: o.palette.text.primary,
639
635
  "& .M4LIcon-icon": {
640
636
  backgroundColor: o.palette.text.secondary
@@ -703,11 +699,11 @@ const a = (o) => ({
703
699
  }
704
700
  }
705
701
  }
706
- }), g = (o) => ({
702
+ }), b = (o) => ({
707
703
  M4LoadingButton: {
708
704
  styleOverrides: {
709
705
  "&.M4LoadingButton-root": {
710
- width: "100%",
706
+ width: "auto",
711
707
  display: "flex",
712
708
  justifyContent: "center",
713
709
  "& .MuiLoadingButton-loading": {
@@ -716,10 +712,10 @@ const a = (o) => ({
716
712
  }
717
713
  },
718
714
  "& .MuiCircularProgress-root": {
719
- color: o.palette.primary.main
715
+ color: "#fff!important"
720
716
  },
721
717
  "& .MuiTypography-root": {
722
- color: o.palette.text.secondary,
718
+ color: "#fff",
723
719
  transition: "all .5s ease"
724
720
  },
725
721
  "& .M4LoadingButton-skeleton ": {
@@ -813,10 +809,15 @@ const a = (o) => ({
813
809
  },
814
810
  "&.M4LoadingButton-variantContained": {
815
811
  "& .MuiButtonBase-root": {
816
- backgroundColor: o.palette.state?.default,
817
- color: o.palette.text.secondary,
818
- boxShadow: o.customShadows?.z1,
812
+ backgroundColor: o.palette.state?.active,
813
+ color: o.palette.patronus?.marbleLight[10],
814
+ boxShadow: o.customShadows?.primary,
819
815
  position: "relative",
816
+ "& .M4LTypography-root": {
817
+ "MuiTypography-root": {
818
+ color: "#fff"
819
+ }
820
+ },
820
821
  "& .M4LIcon-icon": {
821
822
  backgroundColor: o.palette.text.secondary
822
823
  },
@@ -826,7 +827,7 @@ const a = (o) => ({
826
827
  backgroundColor: o.palette.patronus?.marbleLight[10]
827
828
  },
828
829
  "& .MuiTypography-root": {
829
- color: o.palette.patronus?.marbleLight[10]
830
+ color: "#fff"
830
831
  }
831
832
  },
832
833
  "&:active": {
@@ -920,7 +921,7 @@ const a = (o) => ({
920
921
  }
921
922
  }
922
923
  }
923
- }), x = (o) => ({
924
+ }), M = (o) => ({
924
925
  M4LNavLink: {
925
926
  styleOverrides: {
926
927
  ["&.M4LNavLink-root"]: {
@@ -940,7 +941,7 @@ const a = (o) => ({
940
941
  }
941
942
  }
942
943
  }
943
- }), b = (o) => ({
944
+ }), L = (o) => ({
944
945
  M4LSideBar: {
945
946
  styleOverrides: {
946
947
  "&.M4LSideBar-root": {
@@ -1429,44 +1430,80 @@ const a = (o) => ({
1429
1430
  }
1430
1431
  }
1431
1432
  }
1432
- }), M = (o) => ({
1433
+ }), y = (o) => ({
1433
1434
  M4LAreasAdmin: {
1434
1435
  styleOverrides: {
1435
1436
  "&.M4LAreasAdmin-root": {
1436
- width: "100%",
1437
- height: "32px",
1438
- test: "root",
1439
- borderRadius: "4px",
1440
- paddingRight: "10px",
1437
+ flex: 1,
1438
+ overflow: "auto",
1439
+ height: "auto",
1440
+ borderRadius: "6px",
1441
+ paddingRight: "4px",
1441
1442
  alignItems: "center",
1442
1443
  background: o.palette.background.default,
1443
1444
  boxShadow: o.customShadows.z2,
1444
- borderTop: "1px solid",
1445
- borderColor: o.palette.state.default,
1446
1445
  [o.breakpoints.down("sm")]: {
1447
- height: "36px"
1446
+ height: "auto"
1447
+ },
1448
+ "& .M4LAreasAdmin-areasAddButton": {
1449
+ backgroundColor: `${o.palette.state.active}!important`,
1450
+ "& .M4LIcon-icon": {
1451
+ backgroundColor: `${o.palette.patronus?.marbleLight[10]}!important`
1452
+ }
1448
1453
  },
1449
1454
  "& .M4LAreasAdmin-areaIconLayer": {
1450
1455
  background: o.palette.background.neutral,
1456
+ boxShadow: o.customShadows.z2,
1451
1457
  display: "flex",
1452
1458
  justifyContent: "center",
1453
- width: "32px",
1454
- height: "32px",
1459
+ width: "36px",
1460
+ height: "36px",
1455
1461
  [o.breakpoints.down("sm")]: {
1456
1462
  height: "36px",
1457
1463
  width: "36px"
1464
+ },
1465
+ "& .M4LIcon-root": {
1466
+ width: "36px"
1458
1467
  }
1459
1468
  },
1460
1469
  "& .M4LAreasAdmin-areaContainerChips": {
1461
1470
  display: "flex",
1462
1471
  overflow: "auto",
1463
1472
  gap: "8px",
1464
- padding: "0px 0px 0px 8px",
1465
- width: "100%",
1466
- justifyContent: "center",
1467
- height: "100%",
1473
+ padding: "4px 8px 4px 8px",
1474
+ width: "70%",
1475
+ height: "auto",
1468
1476
  alignItems: "center",
1469
- paddingLeft: "8px",
1477
+ "& .M4LAreasAdmin-areaChipMobileRoot": {
1478
+ display: "flex",
1479
+ overflow: "hidden",
1480
+ width: "100%",
1481
+ backgroundColor: o.palette.state.active,
1482
+ borderRadius: "4px",
1483
+ "& .M4LAreasAdmin-areaChipRoot ": {
1484
+ margin: "0px",
1485
+ borderRadius: "4px 0px 0px 4px",
1486
+ overflow: "hidden",
1487
+ width: "100%"
1488
+ }
1489
+ },
1490
+ "& .M4LAreasAdmin-areaChipMobileIconContainer": {
1491
+ display: "flex",
1492
+ alignItems: "center",
1493
+ borderRadius: "0px 4px 4px 0px",
1494
+ background: o.palette.state.active,
1495
+ ...o.typography.body,
1496
+ color: o.palette.text.primary,
1497
+ "& .M4LIconButton-root": {
1498
+ backgroundColor: `${o.palette.state.active}!important`,
1499
+ borderLeft: "1px solid",
1500
+ borderColor: o.palette.patronus?.marbleLight[10],
1501
+ borderRadius: "0px",
1502
+ "& .M4LIcon-icon": {
1503
+ backgroundColor: `${o.palette.patronus?.marbleLight[10]}!important`
1504
+ }
1505
+ }
1506
+ },
1470
1507
  "& .MuiBox-root": {
1471
1508
  display: "flex",
1472
1509
  alignItems: "center",
@@ -1474,20 +1511,24 @@ const a = (o) => ({
1474
1511
  },
1475
1512
  "& .simplebar-content": {
1476
1513
  display: "flex",
1477
- gap: "8px",
1478
1514
  alignItems: "center"
1479
1515
  },
1480
1516
  "& .M4LAreasAdmin-areaChipRoot ": {
1481
1517
  display: "flex",
1482
1518
  boxShadow: o.customShadows.z1,
1483
1519
  borderRadius: "4px 4px 4px 4px",
1484
- height: "20px",
1520
+ marginRight: "8px",
1521
+ height: "auto",
1522
+ width: "auto",
1485
1523
  gap: "8px",
1486
1524
  paddingLeft: "8px",
1487
1525
  alignItems: "center",
1488
1526
  borderTop: "1px solid",
1489
1527
  borderColor: o.palette.state.default,
1490
1528
  background: o.palette.state.default,
1529
+ "& .M4LAreasAdmin-areaContainerChipEditButton": {
1530
+ display: "flex"
1531
+ },
1491
1532
  [o.breakpoints.down("sm")]: {
1492
1533
  height: "auto"
1493
1534
  },
@@ -1503,21 +1544,19 @@ const a = (o) => ({
1503
1544
  display: "flex",
1504
1545
  alignItems: "center",
1505
1546
  color: o.palette.patronus?.marbleLight[10],
1506
- ...o.typography.action
1547
+ ...o.typography.action,
1548
+ [o.breakpoints.down("sm")]: {
1549
+ display: "inline",
1550
+ fontSize: "14px",
1551
+ textOverflow: "ellipsis",
1552
+ overflow: "hidden",
1553
+ whiteSpace: "nowrap",
1554
+ flex: "1"
1555
+ }
1507
1556
  },
1508
1557
  "& .M4LIconButton-root": {
1509
1558
  "& .M4LIcon-icon": {
1510
- backgroundColor: o.palette.patronus?.marbleLight[10]
1511
- },
1512
- "&:active": {
1513
- "& .M4LIcon-icon": {
1514
- backgroundColor: o.palette.patronus?.marbleLight[10]
1515
- }
1516
- },
1517
- "&:hover": {
1518
- "& .M4LIcon-icon": {
1519
- backgroundColor: o.palette.patronus?.marbleLight[10]
1520
- }
1559
+ backgroundColor: `${o.palette.patronus?.marbleLight[10]}!important`
1521
1560
  }
1522
1561
  }
1523
1562
  },
@@ -1541,11 +1580,46 @@ const a = (o) => ({
1541
1580
  }
1542
1581
  }
1543
1582
  }
1583
+ },
1584
+ "&.M4LAreasAdmin-isMobile": {
1585
+ "& .M4LAreasAdmin-areaContainerChips": {
1586
+ width: "100%"
1587
+ }
1588
+ }
1589
+ }
1590
+ }
1591
+ },
1592
+ M4LAreasAdminEditPopover: {
1593
+ styleOverrides: {
1594
+ "&.M4LAreasAdmin-areaEditPopover": {
1595
+ "& .MuiPaper-root": {
1596
+ width: "200px"
1597
+ }
1598
+ }
1599
+ }
1600
+ },
1601
+ M4LAreasAdminMobilePopoverOptions: {
1602
+ styleOverrides: {
1603
+ "&.M4LAreasAdmin-areasPopoverMobileOptions": {
1604
+ "& .MuiPaper-root": {
1605
+ "& .M4LButton-root": {
1606
+ marginTop: "8px",
1607
+ "& .MuiButtonBase-root": {
1608
+ textWrap: "nowrap"
1609
+ }
1610
+ }
1544
1611
  }
1545
1612
  }
1546
1613
  }
1614
+ },
1615
+ M4LAreasAdminPopoverListWindows: {
1616
+ styleOverrides: {
1617
+ "&.M4LAreasAdmin-areasPopoverListWindows": {
1618
+ test: "root"
1619
+ }
1620
+ }
1547
1621
  }
1548
- }), L = (o) => ({
1622
+ }), f = (o) => ({
1549
1623
  M4LAreasViewer: {
1550
1624
  styleOverrides: {
1551
1625
  "&.M4LAreasViewer-root": {
@@ -1558,6 +1632,11 @@ const a = (o) => ({
1558
1632
  boxShadow: o.customShadows.z2,
1559
1633
  borderRadius: "4px",
1560
1634
  display: "flex",
1635
+ "&:not(.M4LAreasViewer-loading)": {
1636
+ "& .M4LinearProgressIndeterminate-root": {
1637
+ opacity: 0
1638
+ }
1639
+ },
1561
1640
  "& .react-resizable-handle": {
1562
1641
  backgroundColor: "transparent"
1563
1642
  },
@@ -1568,19 +1647,155 @@ const a = (o) => ({
1568
1647
  height: "100%"
1569
1648
  },
1570
1649
  "& .M4LAreasViewer-windowHeader": {
1650
+ display: "flex",
1651
+ flexDirection: "column",
1571
1652
  background: o.palette.state.default,
1572
- padding: "8px",
1573
- height: "40px",
1653
+ padding: "4px 4px 4px 8px",
1654
+ height: "36px",
1655
+ minHeight: "36px",
1574
1656
  borderRadius: "4px",
1575
1657
  border: "none",
1576
1658
  boxShadow: o.customShadows.z2,
1577
- borderTop: "2px solid",
1659
+ borderTop: "1px solid",
1578
1660
  borderColor: o.palette.state.default,
1661
+ "& .M4LAreasViewer-windowHeaderContent": {
1662
+ display: "flex",
1663
+ width: "100%",
1664
+ height: "100%",
1665
+ alignItems: "center",
1666
+ "& .M4LAreasViewer-windowHeaderTitle": {
1667
+ display: "flex",
1668
+ alignItems: "center"
1669
+ }
1670
+ },
1579
1671
  "& .M4LTypography-root .MuiTypography-root": {
1580
1672
  ...o.typography.paragraph,
1581
1673
  color: o.palette.text.primary
1582
1674
  }
1583
1675
  },
1676
+ "& .M4LAreasViewer-windowToastiesContainer": {
1677
+ padding: "8px",
1678
+ top: "37px",
1679
+ position: "absolute",
1680
+ display: "flex",
1681
+ flexDirection: "column",
1682
+ width: "100%",
1683
+ maxHeight: "fit-content",
1684
+ zIndex: "1000",
1685
+ gap: "2px",
1686
+ background: o.palette.background.default,
1687
+ boxShadow: o.customShadows.z3,
1688
+ "& .M4LAreasViewer-windowToastiesContainerTostys": {
1689
+ boxSizing: "border-box",
1690
+ overflow: "auto",
1691
+ display: "flex",
1692
+ flexDirection: "column",
1693
+ width: "100%",
1694
+ maxHeight: "128px",
1695
+ "& .M4LAreasViewer-windowToastyContainer": {
1696
+ background: o.palette.patronus?.middleYellow[10],
1697
+ borderRadius: "4px",
1698
+ padding: "0px 0px 0px 0px",
1699
+ width: "100%",
1700
+ boxShadow: o.customShadows.z2,
1701
+ gap: "4px",
1702
+ position: "relative",
1703
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
1704
+ padding: "4px",
1705
+ display: "flex",
1706
+ flexDirection: "column",
1707
+ gap: "4px",
1708
+ borderRadius: "0px 4px 4px 0px"
1709
+ },
1710
+ "& .M4LAreasViewer-windowToastyMessage": {
1711
+ display: "flex",
1712
+ alignItems: "center",
1713
+ padding: "8px",
1714
+ ...o.typography.body,
1715
+ color: o.palette.patronus?.ashBlak[60],
1716
+ position: "relative",
1717
+ "& .MuiLinearProgress-root": {
1718
+ position: "absolute",
1719
+ width: "100%",
1720
+ top: "0px",
1721
+ left: "0px",
1722
+ background: o.palette.state.skeleton.default,
1723
+ "& .MuiLinearProgress-bar1Determinate .MuiLinearProgress-barColorPrimary": {
1724
+ transform: "translateX(100%)"
1725
+ }
1726
+ }
1727
+ },
1728
+ "&.M4LAreasViewer-error": {
1729
+ background: o.palette.patronus?.candyRed[10],
1730
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
1731
+ background: o.palette.error.main,
1732
+ "& .M4LIcon-icon": {
1733
+ backgroundColor: o.palette.patronus?.marbleLight[40]
1734
+ },
1735
+ "& .M4LAreasViewer-pinIn": {
1736
+ background: o.palette.state.error.hover,
1737
+ boxShadow: o.customShadows.z1,
1738
+ border: "none"
1739
+ },
1740
+ "& .M4LIconButton-root:hover": {
1741
+ background: o.palette.state.error.hover
1742
+ }
1743
+ }
1744
+ },
1745
+ "&.M4LAreasViewer-info": {
1746
+ background: o.palette.patronus?.crayonBlue[10],
1747
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
1748
+ background: o.palette.info.main,
1749
+ "& .M4LIcon-icon": {
1750
+ backgroundColor: o.palette.patronus?.marbleLight[40]
1751
+ },
1752
+ "& .M4LAreasViewer-pinIn": {
1753
+ background: o.palette.state.info.hover,
1754
+ boxShadow: o.customShadows.z1,
1755
+ border: "none"
1756
+ },
1757
+ "& .M4LIconButton-root:hover": {
1758
+ background: o.palette.state.info.hover
1759
+ }
1760
+ }
1761
+ },
1762
+ "&.M4LAreasViewer-warning": {
1763
+ background: o.palette.patronus?.middleYellow[10],
1764
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
1765
+ background: o.palette.warning.main,
1766
+ "& .M4LIcon-icon": {
1767
+ backgroundColor: o.palette.patronus?.ashBlak[50]
1768
+ },
1769
+ "& .M4LAreasViewer-pinIn": {
1770
+ background: o.palette.state.warning.hover,
1771
+ boxShadow: o.customShadows.z1,
1772
+ border: "none"
1773
+ },
1774
+ "& .M4LIconButton-root:hover": {
1775
+ background: o.palette.state.warning.hover
1776
+ }
1777
+ }
1778
+ },
1779
+ "&.M4LAreasViewer-success ": {
1780
+ background: o.palette.patronus?.acidGreen[10],
1781
+ "& .M4LAreasViewer-windowToastyButtonsContainer": {
1782
+ background: o.palette.success.main,
1783
+ "& .M4LIcon-icon": {
1784
+ backgroundColor: o.palette.patronus?.ashBlak[50]
1785
+ },
1786
+ "& .M4LAreasViewer-pinIn": {
1787
+ background: o.palette.state.success.hover,
1788
+ boxShadow: o.customShadows.z1,
1789
+ border: "none"
1790
+ },
1791
+ "& .M4LIconButton-root:hover": {
1792
+ background: o.palette.state.success.hover
1793
+ }
1794
+ }
1795
+ }
1796
+ }
1797
+ }
1798
+ },
1584
1799
  "& .M4LAreasViewer-windowContent": {
1585
1800
  margin: "8px",
1586
1801
  background: o.palette.background.default,
@@ -1595,43 +1810,86 @@ const a = (o) => ({
1595
1810
  borderColor: o.palette.state.active,
1596
1811
  boxShadow: o.customShadows.primary,
1597
1812
  "& .M4LAreasViewer-windowHeader": {
1813
+ display: "flex",
1814
+ flexDirection: "column",
1598
1815
  background: o.palette.state.active12,
1816
+ gap: "4px",
1817
+ alignItems: "center",
1818
+ position: "relative",
1819
+ padding: "4px 4px 4px 8px",
1820
+ justifyContent: "end",
1821
+ minHeight: "36px",
1822
+ borderBottom: "1px solid",
1823
+ borderColor: o.palette.divider,
1824
+ overflow: "hidden",
1825
+ cursor: "move",
1826
+ height: "36px",
1599
1827
  "& .M4LTypography-root .MuiTypography-root": {
1600
1828
  ...o.typography.paragraphDens
1829
+ },
1830
+ "& .M4LIcon-icon": {
1831
+ backgroundColor: o.palette.text.primary
1601
1832
  }
1602
1833
  }
1603
1834
  }
1604
1835
  }
1605
1836
  },
1606
1837
  "& .M4LAreasViewer-panelWindowsRoot": {
1838
+ background: o.palette.background.neutral,
1839
+ boxShadow: o.customShadows.z2,
1840
+ borderRadius: "4px",
1841
+ display: "flex",
1842
+ alignItems: "center",
1843
+ margin: "4px",
1844
+ padding: "4px",
1845
+ gap: "8px",
1607
1846
  "& .M4LAreasViewer-panelWindowsButtonContainer": {
1608
- border: "1px solid",
1609
- borderColor: "transparent",
1847
+ borderRadius: "2px",
1848
+ background: o.palette.background.default,
1849
+ boxShadow: o.customShadows.z2,
1610
1850
  "&.M4LAreasViewer-selected": {
1611
- borderColor: o.palette.state.focus
1851
+ background: o.palette.state.active12,
1852
+ boxShadow: `inset 1px 2px 3px 0 ${e(o.palette.patronus?.ashBlak[50] || "", 0.9)}`
1612
1853
  }
1613
1854
  }
1614
1855
  },
1615
1856
  "& .M4LAreasViewer-windowPopupRoot": {
1616
1857
  boxShadow: o.customShadows.z3,
1858
+ "& .M4LIcon-root.custom-handle": {
1859
+ "& .M4LIcon-icon": {
1860
+ backgroundColor: o.palette.state.skeleton.default,
1861
+ width: "11px",
1862
+ height: "11px",
1863
+ minWidth: "11px",
1864
+ minHeight: "11px",
1865
+ boxShadow: o.customShadows.z1,
1866
+ border: "1px solid",
1867
+ borderColor: o.palette.opacity.cool[24]
1868
+ }
1869
+ },
1617
1870
  "& .M4LAreasViewer-windowRoot": {
1618
- padding: "8px",
1871
+ padding: "4px",
1619
1872
  background: o.palette.state.default,
1620
1873
  borderRadius: "4px",
1621
1874
  border: "1px solid",
1622
1875
  borderColor: o.palette.state.default,
1623
1876
  backdropFilter: "blur(8px)",
1877
+ "&:not(.M4LAreasViewer-loading)": {
1878
+ "& .M4LinearProgressIndeterminate-root": {
1879
+ opacity: 0
1880
+ }
1881
+ },
1624
1882
  "& > .react-resizable-handle": {
1625
1883
  backgroundColor: "transparent"
1626
1884
  },
1627
1885
  "& .M4LAreasViewer-windowRootContainer": {
1628
- background: o.palette.background.default,
1886
+ background: o.palette.background.background,
1629
1887
  borderRadius: "4px",
1630
1888
  "& .M4LAreasViewer-windowHeader": {
1631
1889
  height: "28px",
1632
1890
  minHeight: "28px",
1633
- padding: "0px 8px",
1634
1891
  boxShadow: "none",
1892
+ background: o.palette.background.neutral,
1635
1893
  "& .M4LTypography-root .MuiTypography-root": {
1636
1894
  ...o.typography.body,
1637
1895
  color: o.palette.text.secondary
@@ -1643,10 +1901,9 @@ const a = (o) => ({
1643
1901
  borderColor: o.palette.state.active12,
1644
1902
  background: o.palette.state.active12,
1645
1903
  boxShadow: o.customShadows.z3,
1646
- padding: "8px",
1904
+ padding: "4px",
1647
1905
  "& .M4LAreasViewer-windowHeader": {
1648
- background: o.palette.background.background,
1649
- padding: "8px",
1906
+ background: o.palette.background.neutral,
1650
1907
  height: "28px",
1651
1908
  borderRadius: "4px",
1652
1909
  boxShadow: o.customShadows.z1,
@@ -1660,117 +1917,262 @@ const a = (o) => ({
1660
1917
  }
1661
1918
  }
1662
1919
  },
1663
- "& .M4LAreasViewer-windowModalRoot": {
1664
- background: o.palette.background.background,
1665
- borderRadius: "4px",
1666
- boxShadow: o.customShadows.z4,
1667
- "& .M4LAreasViewer-windowRoot": {
1668
- background: o.palette.background.background,
1669
- margin: "0px",
1670
- padding: "0px",
1671
- borderRadius: "4px",
1672
- border: "none",
1673
- "& .react-resizable-handle": {
1674
- backgroundColor: "transparent"
1675
- },
1676
- "& .M4LAreasViewer-windowRootContainer": {
1920
+ "& .M4LAreasViewer-areasLoadingErrorRoot": {
1921
+ display: "flex",
1922
+ flexDirection: "column",
1923
+ justifyContent: "center",
1924
+ alignItems: "center",
1925
+ position: "relative",
1926
+ inset: "0",
1927
+ overflow: "hidden",
1928
+ width: "100%",
1929
+ height: "100%",
1930
+ "& .M4LAreasViewer-areasLoadingError": {
1931
+ display: "flex",
1932
+ padding: "12px",
1933
+ flexDirection: "column",
1934
+ justifyContent: "center",
1935
+ alignItems: "center",
1936
+ gap: "12px",
1937
+ position: "absolute",
1938
+ inset: "0",
1939
+ "& .M4LIcon-root": {
1677
1940
  display: "flex",
1678
- flexDirection: "column",
1679
- height: "100%",
1680
- "& .M4LAreasViewer-windowHeader": {
1681
- height: "48px",
1682
- minHeight: "48px",
1683
- padding: "0px 8px",
1684
- boxShadow: "none",
1685
- background: "none",
1686
- borderColor: "transparent",
1687
- "& .M4LTypography-root .MuiTypography-root": {
1688
- ...o.typography.paragraph,
1689
- color: o.palette.text.primary
1690
- }
1691
- },
1692
- "& .M4LAreasViewer-windowContent": {
1693
- margin: "0px 8px 8px 8px",
1694
- background: o.palette.background.neutral,
1695
- borderRadius: "4px",
1696
- display: "flex",
1697
- flexDirection: "column",
1698
- alignItems: "center",
1699
- justifyContent: "center",
1700
- flexGrow: "1",
1701
- height: "100%"
1941
+ padding: "12px",
1942
+ marginBottom: "4px",
1943
+ " .M4LIcon-icon": {
1944
+ width: "100px",
1945
+ height: "100px",
1946
+ backgroundColor: o.palette.state.skeleton.default
1702
1947
  }
1703
- }
1704
- }
1705
- }
1948
+ },
1949
+ "& .M4LAreasViewer-areasLoadingErrorTitle": {
1950
+ ...o.typography.h3,
1951
+ color: o.palette.text.primary,
1952
+ [o.breakpoints.down("sm")]: {
1953
+ ...o.typography.h5
1954
+ }
1955
+ },
1956
+ "& .M4LAreasViewer-areasLoadingErrorDescription": {
1957
+ ...o.typography.subtitle,
1958
+ color: o.palette.text.secondary
1959
+ },
1960
+ "& .M4LAreasViewer-areasLoadingErrorDivider": {
1961
+ width: "208px",
1962
+ height: "1px",
1963
+ background: o.palette.state.skeleton.default
1964
+ },
1965
+ "& .MuiTypography-paragraph": {
1966
+ ...o.typography.body,
1967
+ color: o.palette.text.primary
1968
+ },
1969
+ "& .MuiButtonBase-root": {
1970
+ marginTop: "4px"
1971
+ }
1972
+ }
1973
+ }
1974
+ }
1975
+ }
1976
+ },
1977
+ M4LAreasViewerModal: {
1978
+ styleOverrides: {
1979
+ "&.M4LAreasViewer-windowModalRoot": {
1980
+ borderRadius: "4px",
1981
+ boxShadow: o.customShadows.z4,
1982
+ "& .M4LAreasViewer-windowRoot": {
1983
+ borderRadius: "4px"
1984
+ },
1985
+ "& .M4LIcon-root.custom-handle": {
1986
+ "& .M4LIcon-icon": {
1987
+ backgroundColor: o.palette.state.skeleton.default,
1988
+ width: "11px",
1989
+ height: "11px",
1990
+ minWidth: "11px",
1991
+ minHeight: "11px",
1992
+ boxShadow: o.customShadows.z1,
1993
+ border: "1px solid",
1994
+ borderColor: o.palette.opacity.cool[24]
1995
+ }
1996
+ },
1997
+ "& .M4LAreasViewer-areasLoadingErrorRoot": {
1998
+ display: "flex",
1999
+ flexDirection: "column",
2000
+ justifyContent: "center",
2001
+ alignItems: "center",
2002
+ position: "relative",
2003
+ inset: "0",
2004
+ overflow: "hidden",
2005
+ width: "100%",
2006
+ height: "100%",
2007
+ "& .M4LAreasViewer-areasLoadingError": {
2008
+ display: "flex",
2009
+ padding: "12px",
2010
+ flexDirection: "column",
2011
+ justifyContent: "center",
2012
+ alignItems: "center",
2013
+ gap: "12px",
2014
+ position: "absolute",
2015
+ inset: "0",
2016
+ "& .M4LIcon-root": {
2017
+ display: "flex",
2018
+ padding: "12px",
2019
+ marginBottom: "4px",
2020
+ " .M4LIcon-icon": {
2021
+ width: "100px",
2022
+ height: "100px",
2023
+ backgroundColor: o.palette.state.skeleton.default
2024
+ }
2025
+ },
2026
+ "& .M4LAreasViewer-areasLoadingErrorTitle": {
2027
+ ...o.typography.h3,
2028
+ color: o.palette.text.primary,
2029
+ [o.breakpoints.down("sm")]: {
2030
+ ...o.typography.h5
2031
+ }
2032
+ },
2033
+ "& .M4LAreasViewer-areasLoadingErrorDescription": {
2034
+ ...o.typography.subtitle,
2035
+ color: o.palette.text.secondary
2036
+ },
2037
+ "& .M4LAreasViewer-areasLoadingErrorDivider": {
2038
+ width: "208px",
2039
+ height: "1px",
2040
+ background: o.palette.state.skeleton.default
2041
+ },
2042
+ "& .MuiTypography-paragraph": {
2043
+ ...o.typography.body,
2044
+ color: o.palette.text.primary
2045
+ },
2046
+ "& .MuiButtonBase-root": {
2047
+ marginTop: "4px"
2048
+ }
2049
+ }
2050
+ },
2051
+ "& .MuiBackdrop-root": {
2052
+ background: e(`${o.palette.patronus?.ashBlak[60]}`, 0.8)
2053
+ },
2054
+ "&:not(.M4LAreasViewer-loading)": {
2055
+ "& .M4LinearProgressIndeterminate-root": {
2056
+ opacity: 0
2057
+ }
2058
+ },
2059
+ "& .react-resizable-handle": {
2060
+ backgroundColor: "transparent"
2061
+ },
2062
+ "& .M4LAreasViewer-windowRootContainer": {
2063
+ display: "flex",
2064
+ flexDirection: "column",
2065
+ height: "100%",
2066
+ background: o.palette.background.neutral,
2067
+ "& .M4LAreasViewer-windowHeader": {
2068
+ cursor: "all-scroll",
2069
+ display: "flex",
2070
+ flexDirection: "column",
2071
+ padding: "4px 4px 4px 8px",
2072
+ height: "36px",
2073
+ minHeight: "36px",
2074
+ borderRadius: "4px",
2075
+ border: "none",
2076
+ "& .M4LTypography-root .MuiTypography-root": {
2077
+ ...o.typography.paragraph,
2078
+ color: o.palette.text.primary
2079
+ },
2080
+ "& .M4LAreasViewer-windowHeaderContent": {
2081
+ display: "flex",
2082
+ alignItems: "center",
2083
+ height: "100%"
2084
+ }
2085
+ },
2086
+ "& .M4LAreasViewer-windowContent": {
2087
+ margin: "0 8px 8px 8px",
2088
+ background: o.palette.background.default,
2089
+ borderRadius: "4px",
2090
+ display: "flex",
2091
+ flexDirection: "column",
2092
+ alignItems: "center",
2093
+ justifyContent: "center",
2094
+ flexGrow: "1",
2095
+ height: "100%"
2096
+ }
2097
+ }
1706
2098
  }
1707
2099
  }
1708
2100
  }
1709
- }), y = (o) => ({
2101
+ }), w = (o) => ({
1710
2102
  M4LAppBar: {
1711
2103
  styleOverrides: {
1712
2104
  "&.M4LAppBar-root": {
1713
2105
  test: "root",
1714
2106
  display: "flex",
1715
2107
  width: "100%",
2108
+ overflow: "hidden",
1716
2109
  height: "48px",
1717
- padding: "8px",
1718
2110
  alignItems: "center",
1719
- borderRadius: "4px",
1720
- background: o.palette.background.neutral,
1721
- boxShadow: o.customShadows.z2,
2111
+ borderRadius: "6px",
2112
+ padding: "8px",
1722
2113
  borderTop: "1px solid",
1723
2114
  borderColor: o.palette.state.default,
2115
+ background: o.palette.background.neutral,
2116
+ boxShadow: o.customShadows.z2,
2117
+ "& .M4LAppBar-containerIconMenuToggle": {
2118
+ display: "flex",
2119
+ justifyContent: "center",
2120
+ alingItems: "center",
2121
+ width: "52px",
2122
+ height: "52px",
2123
+ minWidth: "52px",
2124
+ minHeight: "52px",
2125
+ alignItems: "center",
2126
+ borderRadius: "4px",
2127
+ borderColor: o.palette.state.default,
2128
+ "& .M4LAppBar-iconMenuToggle": {
2129
+ background: o.palette.background.default,
2130
+ boxShadow: o.customShadows.z2,
2131
+ borderTop: "1px solid",
2132
+ borderColor: o.palette.state.default,
2133
+ width: "36px",
2134
+ height: "36px",
2135
+ minWidth: "36px",
2136
+ minHeight: "36px"
2137
+ }
2138
+ },
1724
2139
  [o.breakpoints.down("sm")]: {
1725
2140
  display: "flex",
1726
2141
  alignItems: "center",
1727
2142
  width: "100%",
1728
- height: "52px",
1729
- gap: "8px",
1730
- background: o.palette.background.background
1731
- },
1732
- "& .M4LAppBar-iconMenuToggle": {
2143
+ borderTop: "1px solid",
2144
+ borderColor: o.palette.state.default,
1733
2145
  background: o.palette.background.neutral,
1734
2146
  boxShadow: o.customShadows.z2,
1735
- width: "36px",
1736
- height: "36px",
1737
- minWidth: "36px",
1738
- minHeight: "36px"
2147
+ paddingRight: "8px",
2148
+ borderRadius: "6px"
1739
2149
  },
1740
2150
  "& .M4LAppBar-containerChilds": {
1741
2151
  display: "flex",
1742
- width: "100%",
1743
- gap: "176px",
2152
+ width: "70%",
2153
+ overflow: "visible",
2154
+ alignItems: "center",
2155
+ borderRadius: "4px",
1744
2156
  [o.breakpoints.down("sm")]: {
1745
- display: "flex",
2157
+ width: "100%",
1746
2158
  alignItems: "center",
1747
- gap: "16px",
1748
- widht: "fit-content",
1749
- padding: "8px",
1750
- borderRadius: "4px"
1751
- },
1752
- "& .M4LIconButton-root": {
1753
- "&.M4LIconButton-sizeSmall": {
1754
- backgroundColor: o.palette.state.active,
1755
- marginLeft: "8px",
1756
- "& .M4LIcon-icon": {
1757
- background: o.palette.text.primary
1758
- }
1759
- }
2159
+ gap: "8px",
2160
+ borderRadius: "4px 0px 0px 4px",
2161
+ display: "flex"
1760
2162
  },
1761
2163
  "& .M4LAvatar-root": {
1762
- width: "32px",
1763
- height: "32px",
2164
+ width: "36px",
2165
+ height: "36px",
1764
2166
  "& .MuiAvatar-root": {
1765
- width: "32px",
1766
- height: "32px"
2167
+ width: "36px",
2168
+ height: "36px"
1767
2169
  }
1768
2170
  }
1769
2171
  }
1770
2172
  }
1771
2173
  }
1772
2174
  }
1773
- }), f = (o) => ({
2175
+ }), v = (o) => ({
1774
2176
  M4LAvatar: {
1775
2177
  styleOverrides: {
1776
2178
  "&.M4LAvatar-root": {
@@ -1783,22 +2185,60 @@ const a = (o) => ({
1783
2185
  }
1784
2186
  }
1785
2187
  }
1786
- }), v = (o) => ({
2188
+ }), h = (o) => ({
1787
2189
  M4LAccountPopover: {
1788
2190
  styleOverrides: {
1789
- "&.M4LAccountPopover-root": {
1790
- test: "root"
1791
- }
2191
+ "&.M4LAccountPopover-root": {}
1792
2192
  }
1793
2193
  },
1794
2194
  M4LAccountPopoverPopover: {
1795
2195
  styleOverrides: {
1796
2196
  "&.M4LAccountPopover-popover": {
1797
- test: "root"
2197
+ test: "root",
2198
+ display: "flex",
2199
+ flexDirection: "column",
2200
+ gap: "8px",
2201
+ "& .MuiPaper-root": {
2202
+ display: "flex",
2203
+ flexDirection: "column",
2204
+ gap: "8px",
2205
+ padding: "16px"
2206
+ },
2207
+ "& .M4LAccountPopover-containerAppVersion": {
2208
+ display: "flex",
2209
+ borderBottom: "2px solid",
2210
+ borderColor: o.palette.state.default,
2211
+ paddingBottom: "8px"
2212
+ },
2213
+ "& .M4LAccountPopover-containerMenuItems": {
2214
+ "& .M4LAccountPopover-menuItem": {
2215
+ padding: "4px",
2216
+ borderRadius: "4px",
2217
+ cursor: "pointer",
2218
+ "&:hover": {
2219
+ background: o.palette.state.default
2220
+ }
2221
+ }
2222
+ },
2223
+ "& .M4LAccountPopover-logOut": {
2224
+ borderTop: "2px solid",
2225
+ borderColor: o.palette.state.default,
2226
+ justifyContent: "center",
2227
+ paddingTop: "8px",
2228
+ cursor: "pointer",
2229
+ padding: "4px",
2230
+ borderRadius: "4px",
2231
+ "&:hover": {
2232
+ background: o.palette.state.default
2233
+ }
2234
+ },
2235
+ "& .M4LPopover-arrowStyle": {
2236
+ display: "none"
2237
+ }
1798
2238
  }
1799
2239
  }
1800
2240
  }
1801
- }), w = (o) => ({
2241
+ }), k = (o) => ({
1802
2242
  M4LModuleLayout: {
1803
2243
  styleOverrides: {
1804
2244
  "&.M4LModuleLayout-root": {
@@ -1837,19 +2277,20 @@ const a = (o) => ({
1837
2277
  borderRadius: "6px",
1838
2278
  overFlow: "visible"
1839
2279
  },
1840
- "& .layout-pane": {
1841
- boxShadow: o.customShadows.z3,
1842
- border: "1px solid",
1843
- borderColor: o.palette.state.default,
1844
- borderRadius: "6px"
2280
+ "& .M4LSplitLayout-secondPart": {
2281
+ background: o.palette.background.default,
2282
+ borderRadius: "6px",
2283
+ padding: "8px"
1845
2284
  },
1846
- "#splitMaster": {
1847
- border: "none"
2285
+ "& .layout-pane-primary": {
2286
+ background: o.palette.background.default,
2287
+ borderRadius: "6px",
2288
+ padding: "8px"
1848
2289
  }
1849
2290
  }
1850
2291
  }
1851
2292
  }
1852
- }), k = (o) => ({
2293
+ }), I = (o) => ({
1853
2294
  M4LSplitLayout: {
1854
2295
  styleOverrides: {
1855
2296
  "&.M4LSplitLayout-root": {
@@ -1880,46 +2321,50 @@ const a = (o) => ({
1880
2321
  "& .splitter-layout > .layout-splitter": {
1881
2322
  display: "flex",
1882
2323
  alignItems: "center",
1883
- backgroundColor: o.palette.divider,
2324
+ backgroundColor: "none",
1884
2325
  boxSizing: "border-box",
1885
2326
  backgroundClip: "padding-box",
1886
- width: "11px",
1887
- margin: "0 5px",
1888
- borderLeft: "5px solid hsla(0, 0%, 100%, 0)",
1889
- borderRight: "5px solid hsla(0, 0%, 100%, 0)",
2327
+ width: "8px",
2328
+ margin: "0 2px",
2329
+ borderLeft: "4px solid hsla(0, 0%, 5%, 0)",
2330
+ borderRight: "4px solid hsla(0, 0%, 5%, 0)",
1890
2331
  cursor: "col-resize",
1891
2332
  justifyContent: "center",
1892
2333
  height: "100%"
1893
2334
  },
1894
2335
  "& .splitter-layout .layout-splitter:before": {
1895
2336
  content: '""',
1896
- height: "45px",
2337
+ height: "56px",
1897
2338
  width: "4px",
1898
2339
  top: "calc(50% - 22.5px)",
1899
2340
  position: "absolute",
1900
- background: o.palette.grey[500],
1901
- borderRadius: "6px"
2341
+ background: o.palette.text.disabled,
2342
+ borderRadius: "1px"
1902
2343
  },
1903
2344
  "& .splitter-layout > .layout-splitter:hover": {
1904
- borderLeft: `5px solid ${o.palette.grey[5008]}`,
1905
- borderRight: `5px solid ${o.palette.grey[5008]}`
2345
+ borderRadius: "2px",
2346
+ borderLeft: "2px",
2347
+ borderRight: "2px",
2348
+ background: o.palette.action.hover
1906
2349
  },
1907
2350
  "& .splitter-layout.splitter-layout-vertical.layout-changing": {
1908
2351
  cursor: "row-resize"
1909
2352
  },
1910
2353
  "& .splitter-layout.splitter-layout-vertical > .layout-splitter": {
1911
- height: "11px !important",
2354
+ height: "8px !important",
1912
2355
  width: "100% !important",
1913
- margin: "5px 0",
1914
- borderTop: "5px solid hsla(0, 0%, 100%, 0)",
1915
- borderBottom: "5px solid hsla(0, 0%, 100%, 0)",
2356
+ margin: "2px 0",
2357
+ borderTop: "4px solid hsla(0, 0%, 2%, 0)",
2358
+ borderBottom: "4px solid hsla(0, 0%, 2%, 0)",
1916
2359
  cursor: "row-resize"
1917
2360
  },
1918
2361
  "& .splitter-layout.splitter-layout-vertical .layout-splitter:before": {
1919
- width: "45px !important",
2362
+ width: "56px !important",
1920
2363
  height: "4px !important",
1921
2364
  left: "calc(50% - 22.5px)",
1922
- top: "unset"
2365
+ top: "unset",
2366
+ background: o.palette.text.disabled,
2367
+ borderRadius: "2px"
1923
2368
  },
1924
2369
  "& .splitter-layout > .layout-splitter:hover:before, .splitter-layout.layout-changing > .layout-splitter:before": {
1925
2370
  background: o.palette.primary.main
@@ -1928,8 +2373,9 @@ const a = (o) => ({
1928
2373
  flexDirection: "column"
1929
2374
  },
1930
2375
  "& .splitter-layout.splitter-layout-vertical > .layout-splitter:hover": {
1931
- borderTop: `5px solid ${o.palette.grey[5008]}`,
1932
- borderBottom: `5px solid ${o.palette.grey[5008]}`
2376
+ borderTop: "2px",
2377
+ borderBottom: "2px",
2378
+ background: o.palette.action.hover
1933
2379
  }
1934
2380
  }
1935
2381
  }
@@ -1938,32 +2384,558 @@ const a = (o) => ({
1938
2384
  M4LCommonActions: {
1939
2385
  styleOverrides: {
1940
2386
  "&.M4LCommonActions-root": {
2387
+ padding: "14px",
2388
+ display: "flex",
2389
+ gap: "14px",
2390
+ justifyContent: "flex-end",
2391
+ width: "100%"
2392
+ }
2393
+ }
2394
+ }
2395
+ }), S = (o) => ({
2396
+ M4LinearProgressIndeterminate: {
2397
+ styleOverrides: {
2398
+ "&.M4LinearProgressIndeterminate-root": {
2399
+ width: "100%",
2400
+ position: "absolute",
2401
+ padding: "1px",
2402
+ top: "0",
2403
+ left: "0",
2404
+ "@keyframes borealisBar": {
2405
+ "0%": {
2406
+ left: "0%",
2407
+ right: "100%",
2408
+ width: "0%"
2409
+ },
2410
+ "30%": {
2411
+ left: "0%",
2412
+ right: "75%",
2413
+ width: "60%"
2414
+ },
2415
+ "90%": {
2416
+ right: "0%",
2417
+ left: "50%",
2418
+ width: "25%"
2419
+ },
2420
+ "100%": {
2421
+ left: "100%",
2422
+ right: "0%",
2423
+ width: "0%"
2424
+ }
2425
+ },
2426
+ "&:before": {
2427
+ content: '""',
2428
+ borderRadius: "10px",
2429
+ position: "absolute",
2430
+ top: "-4px",
2431
+ right: "-4px",
2432
+ bottom: "-4px",
2433
+ left: "-4px"
2434
+ },
2435
+ "& .M4LinearProgressIndeterminate-windowLinearProgressBar": {
2436
+ position: "absolute",
2437
+ borderRadius: "10px",
2438
+ top: "0",
2439
+ right: "100%",
2440
+ bottom: "0",
2441
+ left: "0",
2442
+ backgroundColor: o.palette.state.focus,
2443
+ width: "0",
2444
+ animation: "borealisBar 2s linear infinite"
2445
+ }
2446
+ }
2447
+ }
2448
+ }
2449
+ }), R = (o) => ({
2450
+ M4LPropertyValue: {
2451
+ styleOverrides: {
2452
+ "&.M4LPropertyValue-root": {
2453
+ test: "root"
2454
+ }
2455
+ }
2456
+ }
2457
+ }), A = (o) => ({
2458
+ M4LTab: {
2459
+ styleOverrides: {
2460
+ "&.M4LTab-root": {
2461
+ "& .MuiButtonBase-root": {
2462
+ borderRadius: "4px",
2463
+ display: "flex",
2464
+ flexDirection: "row",
2465
+ alignItems: "center",
2466
+ padding: "4px 12px 4px 8px",
2467
+ height: "fit-content",
2468
+ width: "fit-content",
2469
+ minHeight: "fit-content",
2470
+ minWidth: "fit-content",
2471
+ gap: "8px",
2472
+ ...o.typography.paragraph,
2473
+ color: o.palette.text.primary,
2474
+ "& .M4LIcon-root": {
2475
+ marginBottom: "0"
2476
+ }
2477
+ },
2478
+ "& .MuiButtonBase-root:hover": {
2479
+ background: o.palette.state.default,
2480
+ color: o.palette.state.hover,
2481
+ "& .M4LIcon-icon": {
2482
+ backgroundColor: o.palette.state.hover
2483
+ }
2484
+ },
2485
+ "& .Mui-selected": {
2486
+ background: o.palette.state.active12,
2487
+ border: "1px solid",
2488
+ borderColor: o.palette.state.active12,
2489
+ boxShadow: o.customShadows.z2,
2490
+ "&::before": {
2491
+ content: '""',
2492
+ width: "3px",
2493
+ height: "16px",
2494
+ left: "0px",
2495
+ backgroundColor: o.palette.state.active,
2496
+ borderRadius: "0px 2px 2px 0px",
2497
+ position: "absolute"
2498
+ }
2499
+ }
2500
+ }
2501
+ }
2502
+ }
2503
+ }), m = (o) => ({
2504
+ M4LAccordion: {
2505
+ styleOverrides: {
2506
+ "&.M4LAccordion-root": {
2507
+ width: "100%",
2508
+ background: o.palette.background.default,
2509
+ boxShadow: o.customShadows.z2,
2510
+ borderTop: "1px solid",
2511
+ borderColor: o.palette.state.default,
2512
+ borderRadius: "4px",
2513
+ "& .M4LTypography-root": {
2514
+ "& .MuiTypography-root": {
2515
+ ...o.typography.bodyDens,
2516
+ color: o.palette.text.disabled
2517
+ }
2518
+ },
2519
+ "& .MuiPaper-root": {
2520
+ marginBottom: "0px"
2521
+ }
2522
+ },
2523
+ "& .MuiButtonBase-root": {
2524
+ "&.MuiAccordionSummary-root.Mui-expanded": {
2525
+ background: o.palette.state.active12,
2526
+ "& .M4LTypography-root": {
2527
+ "& .MuiTypography-root": {
2528
+ color: o.palette.text?.primary
2529
+ }
2530
+ },
2531
+ "& .MuiAccordionSummary-expandIconWrapper": {
2532
+ transform: "rotate(0deg)"
2533
+ },
2534
+ "& .M4LAccordion-endIcon": {
2535
+ transform: "rotate(90deg)"
2536
+ },
2537
+ "& .M4LIconButton-root": {}
2538
+ },
2539
+ test: "root"
2540
+ },
2541
+ "& .MuiCollapse-root": {
2542
+ background: o.palette.background.default,
2543
+ boxShadow: o.customShadows.z2,
2544
+ borderTop: "1px solid",
2545
+ borderColor: o.palette.state.default,
2546
+ borderRadius: "4px",
2547
+ padding: "8px",
2548
+ "& .MuiCollapse-wrapper": {
2549
+ padding: "8px",
2550
+ borderRadius: "4px"
2551
+ }
2552
+ }
2553
+ }
2554
+ }
2555
+ }), T = (o) => ({
2556
+ M4LRHFormProvider: {
2557
+ styleOverrides: {
2558
+ "&.M4LRHFormProvider-root": {
2559
+ display: "flex",
2560
+ flexDirection: "column",
2561
+ width: "100%",
2562
+ height: "auto"
2563
+ }
2564
+ }
2565
+ }
2566
+ }), D = (o) => ({
2567
+ M4LPeriod: {
2568
+ styleOverrides: {
2569
+ "&.M4LPeriod-root": {
2570
+ border: "solid 1px",
2571
+ borderColor: o.palette.state.borderDefault,
2572
+ boxShadow: o.customShadows.z2,
2573
+ display: "flex",
2574
+ width: "100%",
2575
+ gap: "2px",
2576
+ borderRadius: "4px",
2577
+ padding: "4px 0 4px 4px",
2578
+ "& .M4LPeriod-stateReadOnly": {},
2579
+ "& .M4LPeriod-gap": {
2580
+ backgroundColor: "transparent"
2581
+ },
2582
+ "& .M4LIcon-root": {
2583
+ margin: "0px 8px"
2584
+ },
2585
+ "& .M4LPeriod-containerDateLabel": {
2586
+ width: "100%",
2587
+ borderRadius: "2px",
2588
+ border: "solid 1px",
2589
+ borderColor: o.palette.state.borderDefault,
2590
+ padding: "0px 0px 0px 8px"
2591
+ },
2592
+ "& .M4LPeriod-containerDateValue": {
2593
+ width: "100%",
2594
+ borderRadius: "2px",
2595
+ border: "solid 1px",
2596
+ borderColor: o.palette.state.borderDefault,
2597
+ padding: "0px 0px 0px 8px"
2598
+ },
2599
+ "&:not(.M4LPeriod-stateReadOnly).M4LPeriod-variantMonoperiod": {
2600
+ width: "100%",
2601
+ "& .MuiAutocomplete-root": {
2602
+ width: "100%",
2603
+ borderRadius: "2px",
2604
+ borderColor: o.palette.state.borderDefault,
2605
+ "& .MuiInputBase-root": {
2606
+ borderRadius: "2px",
2607
+ paddingLeft: "4px",
2608
+ background: "transparent"
2609
+ }
2610
+ },
2611
+ "& .MuiTextField-root": {
2612
+ width: "100%",
2613
+ borderRadius: "2px",
2614
+ border: "solid 1px",
2615
+ borderColor: o.palette.state.borderDefault,
2616
+ "& .MuiInputBase-root": {
2617
+ borderRadius: "2px",
2618
+ paddingLeft: "4px",
2619
+ background: "transparent"
2620
+ },
2621
+ "& .MuiInputBase-root.Mui-focused": {
2622
+ borderRadius: "2px",
2623
+ paddingLeft: "4px",
2624
+ borderColor: o.palette.state.active
2625
+ },
2626
+ "& .MuiInputBase-root:hover": {
2627
+ borderRadius: "2px",
2628
+ paddingLeft: "4px",
2629
+ background: o.palette.state.active12
2630
+ }
2631
+ },
2632
+ "&:hover": {
2633
+ borderColor: o.palette.state.hover,
2634
+ "& .MuiAutocomplete-root": {
2635
+ borderColor: o.palette.state.active12
2636
+ }
2637
+ }
2638
+ },
2639
+ "&.M4LPeriod-stateError": {
2640
+ borderColor: o.palette.state.error.normal,
2641
+ boxShadow: o.customShadows.z2,
2642
+ "&.M4LPeriod-stateError:hover": {
2643
+ borderColor: o.palette.state.error.normal,
2644
+ background: "transparent",
2645
+ boxShadow: o.customShadows.z2
2646
+ },
2647
+ "& .MuiTextField-root:hover": {
2648
+ background: "transparent",
2649
+ "& .MuiInputBase-root:hover": {
2650
+ borderRadius: "2px",
2651
+ paddingLeft: "4px",
2652
+ background: "transparent"
2653
+ }
2654
+ }
2655
+ },
2656
+ "&.M4LPeriod-stateWarning": {
2657
+ borderColor: o.palette.state.warning.normal,
2658
+ boxShadow: o.customShadows.z2,
2659
+ "&.M4LPeriod-stateWarning:hover": {
2660
+ borderColor: o.palette.state.warning.normal,
2661
+ background: "transparent",
2662
+ boxShadow: o.customShadows.z2,
2663
+ "& .MuiTextField-root:hover": {
2664
+ background: "transparent",
2665
+ "& .MuiInputBase-root:hover": {
2666
+ borderRadius: "2px",
2667
+ paddingLeft: "4px",
2668
+ background: "transparent"
2669
+ }
2670
+ }
2671
+ }
2672
+ },
2673
+ "&.M4LPeriod-stateSuccess": {
2674
+ borderColor: o.palette.state.success.normal,
2675
+ boxShadow: o.customShadows.z2,
2676
+ "&.M4LPeriod-stateSuccess:hover": {
2677
+ borderColor: o.palette.state.success.normal,
2678
+ background: "transparent",
2679
+ boxShadow: o.customShadows.z2,
2680
+ "& .MuiTextField-root:hover": {
2681
+ background: "transparent",
2682
+ "& .MuiInputBase-root:hover": {
2683
+ borderRadius: "2px",
2684
+ paddingLeft: "4px",
2685
+ background: "transparent"
2686
+ }
2687
+ }
2688
+ }
2689
+ },
2690
+ "&.M4LPeriod-stateInfo": {
2691
+ borderColor: o.palette.state.info.normal,
2692
+ boxShadow: o.customShadows.z2,
2693
+ "&.M4LPeriod-stateInfo:hover": {
2694
+ borderColor: o.palette.state.info.normal,
2695
+ background: "transparent",
2696
+ boxShadow: o.customShadows.z2,
2697
+ "& .MuiTextField-root:hover": {
2698
+ background: "transparent",
2699
+ "& .MuiInputBase-root:hover": {
2700
+ borderRadius: "2px",
2701
+ paddingLeft: "4px",
2702
+ background: "transparent"
2703
+ }
2704
+ }
2705
+ }
2706
+ }
2707
+ }
2708
+ }
2709
+ }
2710
+ }), P = (o) => ({
2711
+ M4LModalDialog: {
2712
+ styleOverrides: {
2713
+ "&.M4LModal-root": {
2714
+ test: "root",
2715
+ "& .MuiPaper-root": {
2716
+ display: "flex",
2717
+ flexDirection: "column",
2718
+ height: "fit-content",
2719
+ overflow: "hidden",
2720
+ width: "fit-content",
2721
+ borderRadius: "4px",
2722
+ minHeight: "fit-content",
2723
+ minWidth: "fit-content",
2724
+ margin: "0px",
2725
+ background: "transparent",
2726
+ "& .M4LModal-windowBaseRoot": {
2727
+ display: "flex",
2728
+ flexDirection: "column",
2729
+ width: "100%",
2730
+ height: "100%",
2731
+ padding: "12px"
2732
+ },
2733
+ "& .M4LModal-containerWindow": {
2734
+ display: "flex",
2735
+ flexDirection: "column",
2736
+ justifyContent: "center",
2737
+ alignItems: "center",
2738
+ height: "100%",
2739
+ overflow: "hidden",
2740
+ width: "100%",
2741
+ gap: "24px",
2742
+ background: o.palette.background.default,
2743
+ boxShadow: o.customShadows.z3,
2744
+ borderRadius: "4px",
2745
+ "& .M4LCommonActions-root": {
2746
+ padding: "12px 12px 12px 0px",
2747
+ margin: "0px",
2748
+ width: "100%",
2749
+ height: "fit-content",
2750
+ display: "flex",
2751
+ flexDirection: "row",
2752
+ justifyContent: "flex-end",
2753
+ gap: "12px",
2754
+ background: o.palette.background.neutral
2755
+ },
2756
+ "& .M4LModal-containerMassageIlustration": {
2757
+ display: "flex",
2758
+ flexDirection: "column",
2759
+ justifyContent: "center",
2760
+ alignItems: "center",
2761
+ height: "100%",
2762
+ width: "100%",
2763
+ padding: "24px 12px 0px 12px",
2764
+ "& .M4LModal-modalContent": {
2765
+ display: "flex",
2766
+ flexDirection: "column",
2767
+ justifyContent: "center",
2768
+ alignItems: "center",
2769
+ gap: "12px",
2770
+ "& .M4LModal-illustrationContainer": {
2771
+ display: "flex",
2772
+ flexDirection: "column",
2773
+ justifyContent: "center",
2774
+ alignItems: "center",
2775
+ marginBottom: "12px",
2776
+ height: "100px",
2777
+ width: "100px"
2778
+ },
2779
+ "& .MuiTypography-subtitle": {
2780
+ ...o.typography.subtitleDens,
2781
+ color: o.palette.text.primary
2782
+ },
2783
+ "& .M4LModal-messageContainer": {
2784
+ ...o.typography.body,
2785
+ color: o.palette.text.primary,
2786
+ textAlign: "center"
2787
+ }
2788
+ }
2789
+ },
2790
+ "& .M4LModal-headerContainer": {
2791
+ display: "flex",
2792
+ alignItems: "center",
2793
+ justifyContent: "space-between",
2794
+ minHeight: "36px",
2795
+ borderBottom: `1px solid ${o.palette.divider}`,
2796
+ "& .M4LModal-iconHeader": {
2797
+ display: "flex",
2798
+ alignItems: "center",
2799
+ justifyContent: "center",
2800
+ marginRight: o.spacing(1.5)
2801
+ },
2802
+ "& .M4LModal-titleHeader": {
2803
+ ...o.typography.subtitle1,
2804
+ width: "100%",
2805
+ whiteSpace: "nowrap",
2806
+ textOverflow: "ellipsis",
2807
+ overflow: "hidden"
2808
+ },
2809
+ "& .M4LModal-iconCloseHeader": {}
2810
+ }
2811
+ },
2812
+ "& .react-resizable": {
2813
+ display: "flex",
2814
+ flexDirection: "column",
2815
+ justifyContent: "center",
2816
+ alignItems: "center",
2817
+ "& .custom-handle-nw": {
2818
+ position: "absolute",
2819
+ top: "0",
2820
+ left: "0"
2821
+ },
2822
+ "& .M4LIcon-root": {
2823
+ "& .M4LIcon-icon": {
2824
+ background: o.palette.text.secondary,
2825
+ boxShadow: o.customShadows.z1
2826
+ }
2827
+ }
2828
+ }
2829
+ }
2830
+ }
2831
+ }
2832
+ }
2833
+ }), z = (o) => ({
2834
+ M4LPaperForm: {
2835
+ styleOverrides: {
2836
+ "&.M4LPaperForm-root": {
2837
+ margin: "0px 0px 8px 0px",
2838
+ padding: "0",
2839
+ borderRadius: "4px",
2840
+ boxShadow: o.customShadows.z2,
2841
+ background: o.palette.background.default,
2842
+ border: "1px solid",
2843
+ borderColor: o.palette.state.default,
2844
+ width: "100%",
2845
+ height: "auto",
2846
+ "& .M4LPaperForm-headerContainer": {
2847
+ width: "100%",
2848
+ height: "fit-content",
2849
+ minHeight: "28px",
2850
+ padding: "4px 8px",
2851
+ margin: "0px",
2852
+ borderRadius: "4px",
2853
+ background: o.palette.state.default,
2854
+ boxShadow: o.customShadows.z1,
2855
+ borderBottom: "none",
2856
+ "& .M4LPaperForm-iconTitleContainer": {
2857
+ ...o.typography.bodyDens,
2858
+ color: o.palette.text.primary,
2859
+ display: "flex",
2860
+ gap: "8px",
2861
+ "& .M4LPaperForm-iconHeaderContainer": {
2862
+ margin: "0px"
2863
+ }
2864
+ }
2865
+ },
2866
+ "& .M4LPaperForm-content": {
2867
+ height: "fit-content",
2868
+ width: "100%",
2869
+ padding: "12px 8px 8px 8px"
2870
+ }
2871
+ }
2872
+ }
2873
+ }
2874
+ }), V = (o) => ({
2875
+ M4LTooltip: {
2876
+ styleOverrides: {
2877
+ "&.M4LTooltip-root": {
2878
+ test: "root",
2879
+ "& .MuiTooltip-tooltip": {
2880
+ display: "flex",
2881
+ alignItems: "center",
2882
+ background: o.palette.background.default,
2883
+ borderRadius: "4px",
2884
+ boxShadow: o.customShadows.z3,
2885
+ padding: "4px 8px",
2886
+ height: "fit-content",
2887
+ minHeight: "24px",
2888
+ width: "fit-content",
2889
+ margin: "4px 2px 2px 2px",
2890
+ marginTop: "0px",
2891
+ color: o.palette.text.primary,
2892
+ borderTop: "1px solid",
2893
+ borderColor: o.palette.background.background,
2894
+ ...o.typography.body
2895
+ }
2896
+ }
2897
+ }
2898
+ }
2899
+ }), F = (o) => ({
2900
+ M4LBadge: {
2901
+ styleOverrides: {
2902
+ "& .M4LBadge-root": {
1941
2903
  test: "root"
1942
2904
  }
1943
2905
  }
1944
2906
  }
1945
2907
  });
1946
2908
  export {
1947
- g as M,
1948
- a,
1949
- r as b,
1950
- i as c,
1951
- n as d,
1952
- l as e,
1953
- x as f,
1954
- p as g,
1955
- d as h,
1956
- s as i,
2909
+ m as A,
2910
+ D as B,
2911
+ P as C,
2912
+ z as D,
2913
+ V as E,
2914
+ b as M,
2915
+ i as a,
2916
+ T as b,
2917
+ n as c,
2918
+ p as d,
2919
+ d as e,
2920
+ l as f,
2921
+ M as g,
2922
+ s as h,
2923
+ F as i,
1957
2924
  c as j,
1958
2925
  u as k,
1959
- b as l,
1960
- y as m,
1961
- M as n,
1962
- L as o,
1963
- f as p,
1964
- v as q,
1965
- w as r,
1966
- C as s,
2926
+ x as l,
2927
+ g as m,
2928
+ L as n,
2929
+ w as o,
2930
+ y as p,
2931
+ f as q,
2932
+ v as r,
2933
+ h as s,
1967
2934
  k as t,
1968
- B as u
2935
+ C as u,
2936
+ I as v,
2937
+ B as w,
2938
+ S as x,
2939
+ R as y,
2940
+ A as z
1969
2941
  };