@m4l/styles 0.0.25 → 0.0.26
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 +6 -6
- package/package.json +1 -1
- package/theme/defaultThemeOptions.e09f6ae8.js +30 -0
- package/theme/{index.8bbc9635.js → index.e131f0b1.js} +2 -2
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +2 -2
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +3153 -1675
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +9 -10
- package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +17 -1
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +121 -34
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +4 -0
- package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +14 -5
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +40 -52
- package/theme/overrides/M4LExtendedComponents/{index.a0dbf03e.js → index.ebc4ec7a.js} +213 -108
- package/theme/overrides/MUIComponents/Badge.d.ts +2 -0
- package/theme/overrides/MUIComponents/Tabs.d.ts +1 -2
- package/theme/overrides/MUIComponents/{index.56b4e9b3.js → index.c5a85efa.js} +15 -14
- package/theme/overrides/{index.5c0e3013.js → index.ede1f7a6.js} +10 -10
- package/theme/{typography.248c39d2.js → typography.006a6c85.js} +1 -1
- package/utils/{getColorState.2c0892d1.js → getColorState.f10d3d33.js} +8 -8
- package/theme/defaultThemeOptions.ce206b4e.js +0 -30
|
@@ -8,14 +8,26 @@ const i = (o) => ({
|
|
|
8
8
|
background: o.palette.background.default,
|
|
9
9
|
boxShadow: o.customShadows.z1,
|
|
10
10
|
padding: "0px",
|
|
11
|
-
border: "
|
|
12
|
-
|
|
13
|
-
height: "36px",
|
|
11
|
+
border: "1px solid",
|
|
12
|
+
borderColor: "transparent",
|
|
14
13
|
[o.breakpoints.down("sm")]: {
|
|
15
|
-
gap: "
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
gap: "4px"
|
|
15
|
+
},
|
|
16
|
+
"&.M4LDynamicFilter-isEmpty.M4LDynamicFilter-isMobile": {
|
|
17
|
+
"& .M4LDynamicFilter-wrapperApplyedFilters": {
|
|
18
|
+
display: "none"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"&.M4LDynamicFilter-isEmpty": {
|
|
22
|
+
"& .M4LDynamicFilter-wrapperApplyedFilters": {
|
|
23
|
+
[o.breakpoints.down("sm")]: {
|
|
24
|
+
display: "none",
|
|
25
|
+
height: "100%"
|
|
26
|
+
},
|
|
27
|
+
"& .MuiBox-root": {
|
|
28
|
+
height: "fit-content"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
19
31
|
},
|
|
20
32
|
"& .simplebar-content": {
|
|
21
33
|
height: "100%"
|
|
@@ -35,6 +47,7 @@ const i = (o) => ({
|
|
|
35
47
|
width: "100%",
|
|
36
48
|
alignItems: "center",
|
|
37
49
|
maxWidth: "100%",
|
|
50
|
+
borderRadius: "4px",
|
|
38
51
|
[o.breakpoints.down("sm")]: {
|
|
39
52
|
height: "100%",
|
|
40
53
|
padding: "8px"
|
|
@@ -70,6 +83,7 @@ const i = (o) => ({
|
|
|
70
83
|
maxWidth: "135px",
|
|
71
84
|
width: "100%",
|
|
72
85
|
alignItems: "center",
|
|
86
|
+
borderRadius: "4px",
|
|
73
87
|
"& > input": {
|
|
74
88
|
border: "1px solid",
|
|
75
89
|
borderColor: o.palette.state.overdefoult,
|
|
@@ -110,7 +124,10 @@ const i = (o) => ({
|
|
|
110
124
|
"& .M4LDynamicFilter-containerApplyedFilters": {
|
|
111
125
|
padding: "2px",
|
|
112
126
|
gap: "4px",
|
|
113
|
-
height: "
|
|
127
|
+
height: "fit-content",
|
|
128
|
+
[o.breakpoints.down("sm")]: {
|
|
129
|
+
padding: "0px"
|
|
130
|
+
}
|
|
114
131
|
},
|
|
115
132
|
"& .M4LDynamicFilter-applyedFilter": {
|
|
116
133
|
height: "24px",
|
|
@@ -519,6 +536,10 @@ const i = (o) => ({
|
|
|
519
536
|
M4LPopover: {
|
|
520
537
|
styleOverrides: {
|
|
521
538
|
"&.M4LPopover-root": {
|
|
539
|
+
minWidth: "unset",
|
|
540
|
+
minHeight: "unset",
|
|
541
|
+
width: "100%",
|
|
542
|
+
height: "100%",
|
|
522
543
|
".MuiPaper-root": {
|
|
523
544
|
background: o.palette.background.default,
|
|
524
545
|
borderRadius: "6px",
|
|
@@ -1271,7 +1292,7 @@ const i = (o) => ({
|
|
|
1271
1292
|
"& .MuiButtonBase-root": {
|
|
1272
1293
|
"& .M4LIcon-root": {
|
|
1273
1294
|
"& .M4LIcon-icon": {
|
|
1274
|
-
backgroundColor: o.palette.state.focus
|
|
1295
|
+
backgroundColor: `${o.palette.state.focus}!important`
|
|
1275
1296
|
}
|
|
1276
1297
|
}
|
|
1277
1298
|
},
|
|
@@ -1322,15 +1343,16 @@ const i = (o) => ({
|
|
|
1322
1343
|
"& .M4LSideBar-collapseButton": {
|
|
1323
1344
|
display: "flex",
|
|
1324
1345
|
paddingTop: "12px",
|
|
1325
|
-
borderTop: "
|
|
1326
|
-
borderColor: o.palette.state.
|
|
1327
|
-
justifyContent: "
|
|
1346
|
+
borderTop: "1px solid",
|
|
1347
|
+
borderColor: o.palette.state.overdefoult,
|
|
1348
|
+
justifyContent: "flex-end",
|
|
1328
1349
|
marginRight: "14px",
|
|
1329
1350
|
marginLeft: "14px",
|
|
1330
|
-
gap: "
|
|
1351
|
+
gap: "40px",
|
|
1331
1352
|
alignItems: "center",
|
|
1332
1353
|
height: "48px",
|
|
1333
1354
|
minHeight: "48px",
|
|
1355
|
+
flexDirection: "row-reverse",
|
|
1334
1356
|
"& .M4LSideBar-containerLogoButton": {
|
|
1335
1357
|
display: "flex",
|
|
1336
1358
|
gap: "14px",
|
|
@@ -1345,16 +1367,6 @@ const i = (o) => ({
|
|
|
1345
1367
|
}
|
|
1346
1368
|
}
|
|
1347
1369
|
}
|
|
1348
|
-
},
|
|
1349
|
-
"& .M4LSideBar-contentMobile": {
|
|
1350
|
-
width: "100%",
|
|
1351
|
-
display: "flex",
|
|
1352
|
-
flexDirection: "column",
|
|
1353
|
-
paddingLeft: "14px"
|
|
1354
|
-
},
|
|
1355
|
-
"& .M4LSideBar-contentDesktop": {
|
|
1356
|
-
display: "flex",
|
|
1357
|
-
gap: "20px"
|
|
1358
1370
|
}
|
|
1359
1371
|
}
|
|
1360
1372
|
}
|
|
@@ -1362,6 +1374,11 @@ const i = (o) => ({
|
|
|
1362
1374
|
M4LSideBarPopover: {
|
|
1363
1375
|
styleOverrides: {
|
|
1364
1376
|
"&.M4LSideBar-popover": {
|
|
1377
|
+
"& .M4LSideBar-subItemActive": {
|
|
1378
|
+
"& .M4LIcon-icon": {
|
|
1379
|
+
backgroundColor: `${o.palette.state.focus}!important`
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1365
1382
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1366
1383
|
width: "120px",
|
|
1367
1384
|
height: "fit-content",
|
|
@@ -1385,12 +1402,25 @@ const i = (o) => ({
|
|
|
1385
1402
|
textWrap: "nowrap"
|
|
1386
1403
|
}
|
|
1387
1404
|
},
|
|
1405
|
+
"& .MuiPaper-root": {
|
|
1406
|
+
"& .M4LSideBar-navListSubItemRoot": {
|
|
1407
|
+
"& .M4LSideBar-subItemActive": {
|
|
1408
|
+
"& .MuiButtonBase-root": {
|
|
1409
|
+
"& .M4LIcon-root": {
|
|
1410
|
+
"& .M4LIcon-icon": {
|
|
1411
|
+
backgroundColor: o.palette.state.focus
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1388
1418
|
"& .M4LSideBar-subItemActive": {
|
|
1389
1419
|
height: "fit-content",
|
|
1390
1420
|
"& .MuiButtonBase-root": {
|
|
1391
1421
|
"& .M4LIcon-root": {
|
|
1392
1422
|
"& .M4LIcon-icon": {
|
|
1393
|
-
backgroundColor: o.palette.state.focus
|
|
1423
|
+
backgroundColor: `${o.palette.state.focus}!important`
|
|
1394
1424
|
}
|
|
1395
1425
|
}
|
|
1396
1426
|
},
|
|
@@ -1417,6 +1447,11 @@ const i = (o) => ({
|
|
|
1417
1447
|
M4LSideBarDrawer: {
|
|
1418
1448
|
styleOverrides: {
|
|
1419
1449
|
"&.M4LSideBar-drawer": {
|
|
1450
|
+
"& .M4LSideBar-subItemActive": {
|
|
1451
|
+
"& .M4LIcon-icon": {
|
|
1452
|
+
backgroundColor: `${o.palette.state.focus}!important`
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1420
1455
|
"& .M4LSideBar-contentMobile": {
|
|
1421
1456
|
width: "100%",
|
|
1422
1457
|
height: "100%",
|
|
@@ -1449,7 +1484,7 @@ const i = (o) => ({
|
|
|
1449
1484
|
"& .M4LImage-root": {
|
|
1450
1485
|
position: "relative",
|
|
1451
1486
|
background: o.palette.background.default,
|
|
1452
|
-
boxShadow: o.customShadows.
|
|
1487
|
+
boxShadow: o.customShadows.z2,
|
|
1453
1488
|
padding: "6px",
|
|
1454
1489
|
borderRadius: "6px",
|
|
1455
1490
|
minWidth: "50px !important",
|
|
@@ -1604,6 +1639,21 @@ const i = (o) => ({
|
|
|
1604
1639
|
}
|
|
1605
1640
|
}
|
|
1606
1641
|
},
|
|
1642
|
+
"& .M4LSideBar-subItemActive": {
|
|
1643
|
+
"& .MuiButtonBase-root": {
|
|
1644
|
+
"& .M4LIcon-root": {
|
|
1645
|
+
"& .M4LIcon-icon": {
|
|
1646
|
+
backgroundColor: `${o.palette.state.focus}!important`
|
|
1647
|
+
}
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1651
|
+
height: "14px",
|
|
1652
|
+
borderRadius: "4px",
|
|
1653
|
+
backgroundColor: o.palette.state.focus,
|
|
1654
|
+
gap: "8px"
|
|
1655
|
+
}
|
|
1656
|
+
},
|
|
1607
1657
|
"&:hover": {
|
|
1608
1658
|
background: o.palette.state.default
|
|
1609
1659
|
}
|
|
@@ -1644,9 +1694,9 @@ const i = (o) => ({
|
|
|
1644
1694
|
"& .M4LSideBar-collapseButton": {
|
|
1645
1695
|
display: "flex",
|
|
1646
1696
|
paddingTop: "12px",
|
|
1647
|
-
borderTop: "
|
|
1648
|
-
borderColor: o.palette.state.
|
|
1649
|
-
justifyContent: "
|
|
1697
|
+
borderTop: "1px solid",
|
|
1698
|
+
borderColor: o.palette.state.overdefoult,
|
|
1699
|
+
justifyContent: "flex-end",
|
|
1650
1700
|
marginRight: "14px",
|
|
1651
1701
|
marginLeft: "14px",
|
|
1652
1702
|
gap: "20px",
|
|
@@ -1696,7 +1746,10 @@ const i = (o) => ({
|
|
|
1696
1746
|
paddingRight: "0px",
|
|
1697
1747
|
width: "100%",
|
|
1698
1748
|
maxWidth: "100%",
|
|
1699
|
-
gap: "0px"
|
|
1749
|
+
gap: "0px",
|
|
1750
|
+
borderRadius: "4px",
|
|
1751
|
+
height: "36px",
|
|
1752
|
+
overflow: "hidden"
|
|
1700
1753
|
},
|
|
1701
1754
|
"& .M4LAreasAdmin-rootContent": {
|
|
1702
1755
|
display: "flex",
|
|
@@ -1707,7 +1760,8 @@ const i = (o) => ({
|
|
|
1707
1760
|
alignItems: "center",
|
|
1708
1761
|
gap: "8px",
|
|
1709
1762
|
[o.breakpoints.down("sm")]: {
|
|
1710
|
-
gap: "0px"
|
|
1763
|
+
gap: "0px",
|
|
1764
|
+
borderRadius: "4px"
|
|
1711
1765
|
},
|
|
1712
1766
|
"&.M4LAreasAdmin-isFocus": {
|
|
1713
1767
|
border: "1px solid",
|
|
@@ -1788,32 +1842,46 @@ const i = (o) => ({
|
|
|
1788
1842
|
width: "fit-content",
|
|
1789
1843
|
justifyContent: "space-between",
|
|
1790
1844
|
[o.breakpoints.down("sm")]: {
|
|
1791
|
-
justifyContent: "space-between",
|
|
1792
1845
|
width: "100%",
|
|
1793
1846
|
background: "none"
|
|
1794
1847
|
},
|
|
1795
|
-
"& .
|
|
1796
|
-
|
|
1797
|
-
"& .
|
|
1798
|
-
width: "
|
|
1799
|
-
|
|
1800
|
-
|
|
1848
|
+
"& .M4LAreasAdmin-areaChipMobileRoot": {
|
|
1849
|
+
width: "100%",
|
|
1850
|
+
"& .M4LAreasAdmin-areaChipRoot": {
|
|
1851
|
+
width: "100%",
|
|
1852
|
+
paddingLeft: "8px",
|
|
1853
|
+
display: "flex",
|
|
1854
|
+
alignItems: "center",
|
|
1855
|
+
whiteSpace: "nowrap",
|
|
1856
|
+
overflow: "hidden",
|
|
1857
|
+
textOverflow: "ellipsis",
|
|
1858
|
+
"& .M4LAreasAdmin-areaChipRoot": {
|
|
1859
|
+
width: "100%"
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
"& .simplebar-wrapper": {
|
|
1865
|
+
width: "fit-content",
|
|
1866
|
+
maxWidth: "100%",
|
|
1867
|
+
[o.breakpoints.down("sm")]: {
|
|
1868
|
+
width: "100%"
|
|
1869
|
+
},
|
|
1870
|
+
"& .simplebar-height-auto-observer-wrapper": {
|
|
1871
|
+
width: "fit-content",
|
|
1872
|
+
maxWidth: "100%",
|
|
1873
|
+
overflow: "auto"
|
|
1874
|
+
},
|
|
1875
|
+
"& .simplebar-mask": {
|
|
1876
|
+
"& .simplebar-offset": {
|
|
1877
|
+
"& .simplebar-content-wrapper": {
|
|
1801
1878
|
width: "fit-content",
|
|
1802
1879
|
maxWidth: "100%",
|
|
1803
|
-
overflow: "auto"
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
width: "fit-content",
|
|
1809
|
-
maxWidth: "100%",
|
|
1810
|
-
overflow: "auto",
|
|
1811
|
-
"& .simplebar-content": {
|
|
1812
|
-
width: "fit-content",
|
|
1813
|
-
overflow: "auto",
|
|
1814
|
-
gap: "4px"
|
|
1815
|
-
}
|
|
1816
|
-
}
|
|
1880
|
+
overflow: "auto",
|
|
1881
|
+
"& .simplebar-content": {
|
|
1882
|
+
width: "fit-content",
|
|
1883
|
+
overflow: "auto",
|
|
1884
|
+
gap: "4px"
|
|
1817
1885
|
}
|
|
1818
1886
|
}
|
|
1819
1887
|
}
|
|
@@ -1825,10 +1893,20 @@ const i = (o) => ({
|
|
|
1825
1893
|
borderRadius: "4px",
|
|
1826
1894
|
overflow: "hidden",
|
|
1827
1895
|
width: "fit-content",
|
|
1896
|
+
cursor: "pointer",
|
|
1828
1897
|
[o.breakpoints.down("sm")]: {
|
|
1829
1898
|
background: "none",
|
|
1830
1899
|
border: "none",
|
|
1831
|
-
boxShadow: "none"
|
|
1900
|
+
boxShadow: "none",
|
|
1901
|
+
width: "100%"
|
|
1902
|
+
},
|
|
1903
|
+
"& .M4LAreasAdmin-areaChipEditButton": {
|
|
1904
|
+
transition: "all ease 0.3s",
|
|
1905
|
+
opacity: "0"
|
|
1906
|
+
},
|
|
1907
|
+
"&:hover .M4LAreasAdmin-areaChipEditButton": {
|
|
1908
|
+
transition: "all ease 0.3s",
|
|
1909
|
+
opacity: "1"
|
|
1832
1910
|
}
|
|
1833
1911
|
}
|
|
1834
1912
|
},
|
|
@@ -1843,7 +1921,8 @@ const i = (o) => ({
|
|
|
1843
1921
|
borderRadius: "4px",
|
|
1844
1922
|
[o.breakpoints.down("sm")]: {
|
|
1845
1923
|
backgroundColor: o.palette.background.default,
|
|
1846
|
-
boxShadow: o.customShadows.z1
|
|
1924
|
+
boxShadow: o.customShadows.z1,
|
|
1925
|
+
width: "100%"
|
|
1847
1926
|
},
|
|
1848
1927
|
"&:hover": {
|
|
1849
1928
|
background: o.palette.state.active12
|
|
@@ -1874,7 +1953,8 @@ const i = (o) => ({
|
|
|
1874
1953
|
...o.typography.body,
|
|
1875
1954
|
color: o.palette.text.primary,
|
|
1876
1955
|
[o.breakpoints.down("sm")]: {
|
|
1877
|
-
boxShadow: "none"
|
|
1956
|
+
boxShadow: "none",
|
|
1957
|
+
width: "100%"
|
|
1878
1958
|
},
|
|
1879
1959
|
"& .M4LIconButton-root": {
|
|
1880
1960
|
background: "transparent",
|
|
@@ -2063,8 +2143,9 @@ const i = (o) => ({
|
|
|
2063
2143
|
}
|
|
2064
2144
|
},
|
|
2065
2145
|
"& .M4LAreasViewer-windowRoot": {
|
|
2066
|
-
background: o.palette.background.
|
|
2067
|
-
border: "1px solid
|
|
2146
|
+
background: o.palette.background.background,
|
|
2147
|
+
border: "1px solid",
|
|
2148
|
+
borderColor: o.palette.state.overdefoult,
|
|
2068
2149
|
boxShadow: o.customShadows.z2,
|
|
2069
2150
|
borderRadius: "4px",
|
|
2070
2151
|
display: "flex",
|
|
@@ -2096,8 +2177,6 @@ const i = (o) => ({
|
|
|
2096
2177
|
borderRadius: "4px",
|
|
2097
2178
|
border: "none",
|
|
2098
2179
|
boxShadow: o.customShadows.z1,
|
|
2099
|
-
borderTop: "1px solid",
|
|
2100
|
-
borderColor: o.palette.state.default,
|
|
2101
2180
|
"& .M4LAreasViewer-windowHeaderContent": {
|
|
2102
2181
|
display: "flex",
|
|
2103
2182
|
width: "100%",
|
|
@@ -2105,12 +2184,14 @@ const i = (o) => ({
|
|
|
2105
2184
|
alignItems: "center",
|
|
2106
2185
|
"& .M4LAreasViewer-windowHeaderTitle": {
|
|
2107
2186
|
display: "flex",
|
|
2108
|
-
alignItems: "center"
|
|
2187
|
+
alignItems: "center",
|
|
2188
|
+
overflow: "visible"
|
|
2109
2189
|
}
|
|
2110
2190
|
},
|
|
2111
2191
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2112
2192
|
...o.typography.paragraph,
|
|
2113
|
-
color: o.palette.text.primary
|
|
2193
|
+
color: o.palette.text.primary,
|
|
2194
|
+
overflow: "visible"
|
|
2114
2195
|
}
|
|
2115
2196
|
},
|
|
2116
2197
|
"& .M4LAreasViewer-windowToastiesContainer": {
|
|
@@ -2238,7 +2319,7 @@ const i = (o) => ({
|
|
|
2238
2319
|
},
|
|
2239
2320
|
"& .M4LAreasViewer-windowContent": {
|
|
2240
2321
|
padding: "8px",
|
|
2241
|
-
|
|
2322
|
+
background: o.palette.background.background,
|
|
2242
2323
|
display: "flex",
|
|
2243
2324
|
flexDirection: "column",
|
|
2244
2325
|
alignItems: "center",
|
|
@@ -2255,20 +2336,19 @@ const i = (o) => ({
|
|
|
2255
2336
|
"& .M4LAreasViewer-windowHeader": {
|
|
2256
2337
|
display: "flex",
|
|
2257
2338
|
flexDirection: "column",
|
|
2258
|
-
background: o.palette.state.
|
|
2339
|
+
background: o.palette.state.toneOp,
|
|
2259
2340
|
gap: "4px",
|
|
2260
2341
|
alignItems: "center",
|
|
2261
2342
|
position: "relative",
|
|
2262
2343
|
padding: "4px 4px 4px 8px",
|
|
2263
2344
|
justifyContent: "end",
|
|
2264
2345
|
minHeight: "36px",
|
|
2265
|
-
borderTop: "1px solid",
|
|
2266
|
-
borderColor: o.palette.state.borderTop,
|
|
2267
2346
|
overflow: "hidden",
|
|
2268
2347
|
cursor: "move",
|
|
2269
2348
|
height: "36px",
|
|
2270
2349
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2271
|
-
...o.typography.paragraphDens
|
|
2350
|
+
...o.typography.paragraphDens,
|
|
2351
|
+
overflow: "visible"
|
|
2272
2352
|
},
|
|
2273
2353
|
"& .MuiButtonBase-root": {
|
|
2274
2354
|
"& .M4LIcon-icon": {
|
|
@@ -2344,7 +2424,8 @@ const i = (o) => ({
|
|
|
2344
2424
|
},
|
|
2345
2425
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2346
2426
|
...o.typography.body,
|
|
2347
|
-
color: o.palette.text.secondary
|
|
2427
|
+
color: o.palette.text.secondary,
|
|
2428
|
+
overflow: "visible"
|
|
2348
2429
|
}
|
|
2349
2430
|
}
|
|
2350
2431
|
},
|
|
@@ -2353,7 +2434,7 @@ const i = (o) => ({
|
|
|
2353
2434
|
background: o.palette.background.neutral,
|
|
2354
2435
|
borderRadius: "4px",
|
|
2355
2436
|
border: "1px solid",
|
|
2356
|
-
borderColor: o.palette.state.
|
|
2437
|
+
borderColor: o.palette.state.overdefoult,
|
|
2357
2438
|
"&:not(.M4LAreasViewer-loading)": {
|
|
2358
2439
|
"& .M4LinearProgressIndeterminate-root": {
|
|
2359
2440
|
opacity: 0
|
|
@@ -2370,12 +2451,10 @@ const i = (o) => ({
|
|
|
2370
2451
|
padding: "4px",
|
|
2371
2452
|
"& .M4LAreasViewer-windowRootContainer": {
|
|
2372
2453
|
"& .M4LAreasViewer-windowHeader": {
|
|
2373
|
-
background: o.palette.
|
|
2454
|
+
background: o.palette.state.default,
|
|
2374
2455
|
height: "28px",
|
|
2375
2456
|
borderRadius: "4px",
|
|
2376
2457
|
boxShadow: o.customShadows.z1,
|
|
2377
|
-
borderTop: "2px solid",
|
|
2378
|
-
borderColor: o.palette.state.default,
|
|
2379
2458
|
"& .M4LIcon-root": {
|
|
2380
2459
|
"& .M4LIcon-icon": {
|
|
2381
2460
|
backgroundColor: o.palette.text.primary
|
|
@@ -2383,7 +2462,8 @@ const i = (o) => ({
|
|
|
2383
2462
|
},
|
|
2384
2463
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2385
2464
|
...o.typography.body,
|
|
2386
|
-
color: o.palette.text.primary
|
|
2465
|
+
color: o.palette.text.primary,
|
|
2466
|
+
overflow: "visible"
|
|
2387
2467
|
}
|
|
2388
2468
|
}
|
|
2389
2469
|
}
|
|
@@ -2402,8 +2482,6 @@ const i = (o) => ({
|
|
|
2402
2482
|
height: "28px",
|
|
2403
2483
|
borderRadius: "4px",
|
|
2404
2484
|
boxShadow: o.customShadows.z1,
|
|
2405
|
-
borderTop: "1.5px solid",
|
|
2406
|
-
borderColor: o.palette.state.borderTop,
|
|
2407
2485
|
"& .M4LIcon-root": {
|
|
2408
2486
|
"& .M4LIcon-icon": {
|
|
2409
2487
|
backgroundColor: o.palette.text.primary
|
|
@@ -2411,7 +2489,8 @@ const i = (o) => ({
|
|
|
2411
2489
|
},
|
|
2412
2490
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2413
2491
|
...o.typography.body,
|
|
2414
|
-
color: o.palette.text.primary
|
|
2492
|
+
color: o.palette.text.primary,
|
|
2493
|
+
overflow: "visible"
|
|
2415
2494
|
}
|
|
2416
2495
|
}
|
|
2417
2496
|
}
|
|
@@ -2423,12 +2502,12 @@ const i = (o) => ({
|
|
|
2423
2502
|
boxShadow: o.customShadows.z2,
|
|
2424
2503
|
display: "flex",
|
|
2425
2504
|
alignItems: "center",
|
|
2426
|
-
padding: "
|
|
2505
|
+
padding: "8px",
|
|
2427
2506
|
gap: "8px",
|
|
2428
2507
|
"& .M4LAreasViewer-panelWindowsButtonContainer": {
|
|
2429
2508
|
borderRadius: "2px",
|
|
2430
|
-
background: o.palette.
|
|
2431
|
-
boxShadow: o.customShadows.
|
|
2509
|
+
background: o.palette.state.default,
|
|
2510
|
+
boxShadow: o.customShadows.z1,
|
|
2432
2511
|
"&.M4LAreasViewer-selected": {
|
|
2433
2512
|
background: o.palette.state.active,
|
|
2434
2513
|
"& .M4LIconButton-root": {
|
|
@@ -2592,7 +2671,8 @@ const i = (o) => ({
|
|
|
2592
2671
|
border: "none",
|
|
2593
2672
|
"& .M4LTypography-root .MuiTypography-root": {
|
|
2594
2673
|
...o.typography.paragraph,
|
|
2595
|
-
color: o.palette.text.primary
|
|
2674
|
+
color: o.palette.text.primary,
|
|
2675
|
+
overflow: "visible"
|
|
2596
2676
|
},
|
|
2597
2677
|
"& .M4LAreasViewer-windowHeaderContent": {
|
|
2598
2678
|
display: "flex",
|
|
@@ -2749,7 +2829,7 @@ const i = (o) => ({
|
|
|
2749
2829
|
}
|
|
2750
2830
|
}
|
|
2751
2831
|
}
|
|
2752
|
-
}),
|
|
2832
|
+
}), v = (o) => ({
|
|
2753
2833
|
M4LAccountPopover: {
|
|
2754
2834
|
styleOverrides: {
|
|
2755
2835
|
"&.M4LAccountPopover-root": {
|
|
@@ -2825,13 +2905,13 @@ const i = (o) => ({
|
|
|
2825
2905
|
width: "100%",
|
|
2826
2906
|
borderRadius: "4px",
|
|
2827
2907
|
padding: "0px 8px",
|
|
2908
|
+
cursor: "pointer",
|
|
2828
2909
|
"&:hover": {
|
|
2829
2910
|
background: o.palette.state.default
|
|
2830
2911
|
},
|
|
2831
2912
|
"& .M4LAccountPopover-menuItem": {
|
|
2832
2913
|
padding: "4px",
|
|
2833
|
-
borderRadius: "4px"
|
|
2834
|
-
cursor: "pointer"
|
|
2914
|
+
borderRadius: "4px"
|
|
2835
2915
|
}
|
|
2836
2916
|
}
|
|
2837
2917
|
},
|
|
@@ -2843,13 +2923,13 @@ const i = (o) => ({
|
|
|
2843
2923
|
borderRadius: "4px",
|
|
2844
2924
|
width: "100%",
|
|
2845
2925
|
alignItems: "center",
|
|
2926
|
+
cursor: "pointer",
|
|
2846
2927
|
"&:hover": {
|
|
2847
2928
|
background: o.palette.state.default
|
|
2848
2929
|
},
|
|
2849
2930
|
"& .M4LAccountPopover-logOut": {
|
|
2850
2931
|
padding: "4px",
|
|
2851
2932
|
borderRadius: "4px",
|
|
2852
|
-
cursor: "pointer",
|
|
2853
2933
|
color: o.palette.text.primary,
|
|
2854
2934
|
...o.typography.paragraph
|
|
2855
2935
|
}
|
|
@@ -2880,7 +2960,7 @@ const i = (o) => ({
|
|
|
2880
2960
|
}
|
|
2881
2961
|
}
|
|
2882
2962
|
}
|
|
2883
|
-
}),
|
|
2963
|
+
}), k = (o) => ({
|
|
2884
2964
|
M4LModuleLayout: {
|
|
2885
2965
|
styleOverrides: {
|
|
2886
2966
|
"&.M4LModuleLayout-root": {
|
|
@@ -3117,7 +3197,7 @@ const i = (o) => ({
|
|
|
3117
3197
|
}
|
|
3118
3198
|
}
|
|
3119
3199
|
}
|
|
3120
|
-
}),
|
|
3200
|
+
}), m = (o) => ({
|
|
3121
3201
|
M4LTab: {
|
|
3122
3202
|
styleOverrides: {
|
|
3123
3203
|
"&.M4LTab-root": {
|
|
@@ -3169,7 +3249,7 @@ const i = (o) => ({
|
|
|
3169
3249
|
}
|
|
3170
3250
|
}
|
|
3171
3251
|
}
|
|
3172
|
-
}),
|
|
3252
|
+
}), A = (o) => ({
|
|
3173
3253
|
M4LAccordion: {
|
|
3174
3254
|
styleOverrides: {
|
|
3175
3255
|
"&.M4LAccordion-root": {
|
|
@@ -3221,7 +3301,7 @@ const i = (o) => ({
|
|
|
3221
3301
|
}
|
|
3222
3302
|
}
|
|
3223
3303
|
}
|
|
3224
|
-
}),
|
|
3304
|
+
}), D = (o) => ({
|
|
3225
3305
|
M4LRHFormProvider: {
|
|
3226
3306
|
styleOverrides: {
|
|
3227
3307
|
"&.M4LRHFormProvider-root": {
|
|
@@ -3232,7 +3312,7 @@ const i = (o) => ({
|
|
|
3232
3312
|
}
|
|
3233
3313
|
}
|
|
3234
3314
|
}
|
|
3235
|
-
}),
|
|
3315
|
+
}), T = (o) => ({
|
|
3236
3316
|
M4LPeriod: {
|
|
3237
3317
|
styleOverrides: {
|
|
3238
3318
|
"&.M4LPeriod-root": {
|
|
@@ -3558,7 +3638,7 @@ const i = (o) => ({
|
|
|
3558
3638
|
}
|
|
3559
3639
|
}
|
|
3560
3640
|
}
|
|
3561
|
-
}),
|
|
3641
|
+
}), F = (o) => ({
|
|
3562
3642
|
M4LTooltip: {
|
|
3563
3643
|
styleOverrides: {
|
|
3564
3644
|
"&.M4LTooltip-root": {
|
|
@@ -3583,11 +3663,27 @@ const i = (o) => ({
|
|
|
3583
3663
|
}
|
|
3584
3664
|
}
|
|
3585
3665
|
}
|
|
3586
|
-
}),
|
|
3666
|
+
}), V = (o) => ({
|
|
3587
3667
|
M4LBadge: {
|
|
3588
3668
|
styleOverrides: {
|
|
3589
3669
|
"&.M4LBadge-root": {
|
|
3590
|
-
test: "root"
|
|
3670
|
+
test: "root",
|
|
3671
|
+
"& .MuiBadge-root": {
|
|
3672
|
+
"& .M4LIconButton-root": {
|
|
3673
|
+
"& .M4LIcon-root .M4LIcon-icon": {}
|
|
3674
|
+
},
|
|
3675
|
+
"& .MuiBadge-badge": {
|
|
3676
|
+
fontWeight: "450",
|
|
3677
|
+
fontSize: "8pt",
|
|
3678
|
+
minWidth: "16px",
|
|
3679
|
+
lineHeight: "1px",
|
|
3680
|
+
textAlign: "center",
|
|
3681
|
+
backgroundColor: o.palette.state.active,
|
|
3682
|
+
height: "16px",
|
|
3683
|
+
top: "14%",
|
|
3684
|
+
right: "16%"
|
|
3685
|
+
}
|
|
3686
|
+
}
|
|
3591
3687
|
}
|
|
3592
3688
|
}
|
|
3593
3689
|
}
|
|
@@ -3856,7 +3952,7 @@ const i = (o) => ({
|
|
|
3856
3952
|
}
|
|
3857
3953
|
}
|
|
3858
3954
|
}
|
|
3859
|
-
}),
|
|
3955
|
+
}), W = (o) => ({
|
|
3860
3956
|
M4LPager: {
|
|
3861
3957
|
styleOverrides: {
|
|
3862
3958
|
"&.M4LPager-root": {
|
|
@@ -3946,7 +4042,7 @@ const i = (o) => ({
|
|
|
3946
4042
|
}
|
|
3947
4043
|
}
|
|
3948
4044
|
}
|
|
3949
|
-
}),
|
|
4045
|
+
}), H = (o) => ({
|
|
3950
4046
|
M4LCheckBox: {
|
|
3951
4047
|
styleOverrides: {
|
|
3952
4048
|
"&.M4LCheckBox-root": {
|
|
@@ -4020,7 +4116,7 @@ const i = (o) => ({
|
|
|
4020
4116
|
width: "100%",
|
|
4021
4117
|
height: "auto",
|
|
4022
4118
|
position: "relative",
|
|
4023
|
-
minHeight: "
|
|
4119
|
+
minHeight: "36px",
|
|
4024
4120
|
"&:not(:last-of-type)": {
|
|
4025
4121
|
margin: "unset"
|
|
4026
4122
|
}
|
|
@@ -4051,13 +4147,22 @@ const i = (o) => ({
|
|
|
4051
4147
|
M4LScrollBar: {
|
|
4052
4148
|
styleOverrides: {
|
|
4053
4149
|
"&.M4LScrollBar-root": {
|
|
4150
|
+
flexGrow: 1,
|
|
4151
|
+
width: "100%",
|
|
4152
|
+
height: "100%",
|
|
4153
|
+
overflow: "hidden",
|
|
4054
4154
|
minHeight: "inherit",
|
|
4055
4155
|
"& .ScrollbarsCustom-Content": {
|
|
4056
|
-
position: "relative"
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4156
|
+
position: "relative"
|
|
4157
|
+
},
|
|
4158
|
+
"& .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before": {
|
|
4159
|
+
background: o.palette.text.disabled,
|
|
4160
|
+
borderRadius: "2px",
|
|
4161
|
+
marginBottom: "40px"
|
|
4162
|
+
},
|
|
4163
|
+
"& .simplebar-track.simplebar-vertical .simplebar-scrollbar:before": {
|
|
4164
|
+
background: o.palette.text.disabled,
|
|
4165
|
+
borderRadius: "2px"
|
|
4061
4166
|
}
|
|
4062
4167
|
}
|
|
4063
4168
|
}
|
|
@@ -4072,14 +4177,14 @@ const i = (o) => ({
|
|
|
4072
4177
|
}
|
|
4073
4178
|
});
|
|
4074
4179
|
export {
|
|
4075
|
-
A,
|
|
4076
|
-
|
|
4077
|
-
|
|
4180
|
+
m as A,
|
|
4181
|
+
A as B,
|
|
4182
|
+
T as C,
|
|
4078
4183
|
P as D,
|
|
4079
4184
|
z as E,
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4185
|
+
F,
|
|
4186
|
+
W as G,
|
|
4187
|
+
H,
|
|
4083
4188
|
j as I,
|
|
4084
4189
|
G as J,
|
|
4085
4190
|
E as K,
|
|
@@ -4087,14 +4192,14 @@ export {
|
|
|
4087
4192
|
b as M,
|
|
4088
4193
|
_ as N,
|
|
4089
4194
|
i as a,
|
|
4090
|
-
|
|
4195
|
+
D as b,
|
|
4091
4196
|
n as c,
|
|
4092
4197
|
p as d,
|
|
4093
4198
|
d as e,
|
|
4094
4199
|
l as f,
|
|
4095
4200
|
M as g,
|
|
4096
4201
|
s as h,
|
|
4097
|
-
|
|
4202
|
+
V as i,
|
|
4098
4203
|
c as j,
|
|
4099
4204
|
O as k,
|
|
4100
4205
|
u as l,
|
|
@@ -4105,8 +4210,8 @@ export {
|
|
|
4105
4210
|
y as q,
|
|
4106
4211
|
w as r,
|
|
4107
4212
|
h as s,
|
|
4108
|
-
|
|
4109
|
-
|
|
4213
|
+
v as t,
|
|
4214
|
+
k as u,
|
|
4110
4215
|
C as v,
|
|
4111
4216
|
I as w,
|
|
4112
4217
|
B as x,
|