@m4l/styles 0.0.42 → 0.0.44
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 +3 -3
- package/package.json +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +8 -28
- package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +0 -26
- package/theme/overrides/M4LExtendedComponents/M4LMFLoader.d.ts +6 -0
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +99 -20
- package/theme/overrides/M4LExtendedComponents/{index.ad4ae589.js → index.df05e9ba.js} +120 -99
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFColorPicker.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/{index.a9f361b8.js → index.02fada22.js} +8 -4
- package/theme/overrides/{index.dc9d8819.js → index.7c048e7a.js} +2 -2
|
@@ -371,41 +371,21 @@ const p = (o) => ({
|
|
|
371
371
|
position: "absolute",
|
|
372
372
|
transition: "all .3s ease"
|
|
373
373
|
},
|
|
374
|
-
".M4LIconButton-sizeExtraSmall&::before": {
|
|
375
|
-
width: "24px",
|
|
376
|
-
height: "24px",
|
|
377
|
-
minWidth: "24px",
|
|
378
|
-
minHeight: "24px"
|
|
379
|
-
},
|
|
380
|
-
".M4LIconButton-sizeSmall&::before": {
|
|
381
|
-
width: "26px",
|
|
382
|
-
height: "26px",
|
|
383
|
-
minWidth: "26px",
|
|
384
|
-
minHeight: "26px"
|
|
385
|
-
},
|
|
386
|
-
".M4LIconButton-sizeMedium&::before": {
|
|
387
|
-
width: "38px",
|
|
388
|
-
height: "38px",
|
|
389
|
-
minWidth: "38px",
|
|
390
|
-
minHeight: "38px"
|
|
391
|
-
},
|
|
392
|
-
"&.M4LIconButton-sizeExtraSmall": {
|
|
393
|
-
width: "22px",
|
|
394
|
-
height: "22px",
|
|
395
|
-
minWidth: "22px",
|
|
396
|
-
minHeight: "22px"
|
|
397
|
-
},
|
|
398
374
|
"&.M4LIconButton-sizeSmall": {
|
|
399
375
|
width: "24px",
|
|
400
376
|
height: "24px",
|
|
401
|
-
|
|
402
|
-
|
|
377
|
+
"& .MuiSkeleton-root": {
|
|
378
|
+
width: "16px",
|
|
379
|
+
height: "16px"
|
|
380
|
+
}
|
|
403
381
|
},
|
|
404
382
|
"&.M4LIconButton-sizeMedium": {
|
|
405
383
|
width: "36px",
|
|
406
384
|
height: "36px",
|
|
407
|
-
|
|
408
|
-
|
|
385
|
+
"& .MuiSkeleton-root": {
|
|
386
|
+
width: "20px",
|
|
387
|
+
height: "20px"
|
|
388
|
+
}
|
|
409
389
|
},
|
|
410
390
|
"& .MuiIconButton-root": {
|
|
411
391
|
position: "static",
|
|
@@ -583,36 +563,10 @@ const p = (o) => ({
|
|
|
583
563
|
M4LImage: {
|
|
584
564
|
styleOverrides: {
|
|
585
565
|
["&.M4LImage-root"]: {
|
|
586
|
-
position: "relative",
|
|
587
566
|
display: "flex",
|
|
588
567
|
flexDirection: "column",
|
|
589
568
|
justifyContent: "center",
|
|
590
|
-
alignItems: "center"
|
|
591
|
-
"& .M4LImage-img": {
|
|
592
|
-
opacity: 0,
|
|
593
|
-
position: "absolute",
|
|
594
|
-
inset: "0",
|
|
595
|
-
objectFit: "contain"
|
|
596
|
-
},
|
|
597
|
-
"&.M4LImage-loaded .M4LImage-img": {
|
|
598
|
-
opacity: 1,
|
|
599
|
-
transition: "opacity .5s",
|
|
600
|
-
margin: "0 auto"
|
|
601
|
-
},
|
|
602
|
-
"& .M4LImage-skeletonImage, & .M4LImage-skeletonCircle": {
|
|
603
|
-
opacity: 1,
|
|
604
|
-
position: "absolute",
|
|
605
|
-
inset: 0
|
|
606
|
-
},
|
|
607
|
-
"&.M4LImage-loaded .M4LImage-skeletonImage, &.M4LImage-loaded .M4LImage-skeletonCircle": {
|
|
608
|
-
opacity: 0,
|
|
609
|
-
transition: "opacity .3s"
|
|
610
|
-
},
|
|
611
|
-
"& .M4LImage-lazyLoad": {
|
|
612
|
-
display: "flex",
|
|
613
|
-
justifyContent: "center",
|
|
614
|
-
alignItems: "center"
|
|
615
|
-
}
|
|
569
|
+
alignItems: "center"
|
|
616
570
|
}
|
|
617
571
|
}
|
|
618
572
|
}
|
|
@@ -995,23 +949,23 @@ const p = (o) => ({
|
|
|
995
949
|
M4LSideBar: {
|
|
996
950
|
styleOverrides: {
|
|
997
951
|
"&.M4LSideBar-root": {
|
|
998
|
-
"&.M4LSideBar-collapsed": {
|
|
999
|
-
"& .M4LSideBar-wrapperSideBar": {
|
|
1000
|
-
height: "100%",
|
|
1001
|
-
transition: "all 0.3s"
|
|
1002
|
-
}
|
|
1003
|
-
},
|
|
952
|
+
"&.M4LSideBar-collapsed": {},
|
|
1004
953
|
"& .M4LSideBar-wrapperSideBar": {
|
|
954
|
+
height: "100%",
|
|
955
|
+
transition: "all 0.3s",
|
|
956
|
+
width: "240px",
|
|
1005
957
|
"& .M4LSideBar-areaExpandMenu": {
|
|
1006
958
|
position: "absolute",
|
|
1007
959
|
zIndex: "1",
|
|
1008
960
|
height: "100%",
|
|
1009
961
|
transition: "all 0.3s",
|
|
962
|
+
width: "240px",
|
|
1010
963
|
"& .M4LSideBar-contentDesktop": {
|
|
1011
964
|
display: "flex",
|
|
1012
965
|
width: "100%",
|
|
1013
966
|
height: "100%",
|
|
1014
967
|
boxShadow: o.customShadows.z2,
|
|
968
|
+
transition: "all 0.3s",
|
|
1015
969
|
"& .M4LSideBar-containerContentGroupsFooter": {
|
|
1016
970
|
flexGrow: "1",
|
|
1017
971
|
display: "flex",
|
|
@@ -1022,11 +976,29 @@ const p = (o) => ({
|
|
|
1022
976
|
borderColor: o.palette.state.borderPrimary,
|
|
1023
977
|
backgroundColor: o.palette.background.default,
|
|
1024
978
|
"& .M4LSideBar-contentGroups": {
|
|
1025
|
-
padding: "32px 8px",
|
|
1026
979
|
"& .M4LSideBar-wrapperGroup": {
|
|
1027
980
|
overflow: "hidden",
|
|
981
|
+
padding: "10px",
|
|
982
|
+
borderTop: "unset",
|
|
983
|
+
borderBottom: "1px solid",
|
|
984
|
+
borderColor: o.palette.state.borderSecondary,
|
|
985
|
+
height: "100%",
|
|
986
|
+
width: "100%",
|
|
987
|
+
flex: "1",
|
|
988
|
+
"& .M4LSideBar-itemListMainRootContainer": {
|
|
989
|
+
display: "flex",
|
|
990
|
+
flexDirection: "column",
|
|
991
|
+
width: "100%",
|
|
992
|
+
height: "auto",
|
|
993
|
+
overflow: "hidden"
|
|
994
|
+
},
|
|
1028
995
|
"& .M4LSideBar-navItemRootContent": {
|
|
1029
|
-
overflow: "hidden,
|
|
996
|
+
overflow: "hidden",
|
|
997
|
+
height: "36px",
|
|
998
|
+
padding: "0px 8px",
|
|
999
|
+
display: "flex",
|
|
1000
|
+
alignItems: "center",
|
|
1001
|
+
position: "relative"
|
|
1030
1002
|
}
|
|
1031
1003
|
}
|
|
1032
1004
|
},
|
|
@@ -1071,6 +1043,7 @@ const p = (o) => ({
|
|
|
1071
1043
|
minWidth: "20px",
|
|
1072
1044
|
minHeight: "20px",
|
|
1073
1045
|
"& .MuiButtonBase-root": {
|
|
1046
|
+
padding: "0px",
|
|
1074
1047
|
width: "20px",
|
|
1075
1048
|
height: "20px"
|
|
1076
1049
|
}
|
|
@@ -1096,6 +1069,7 @@ const p = (o) => ({
|
|
|
1096
1069
|
transition: "all 0.3s"
|
|
1097
1070
|
},
|
|
1098
1071
|
"& .M4LSideBar-subItemActive": {
|
|
1072
|
+
padding: "0px",
|
|
1099
1073
|
"& .M4LIcon-icon": {
|
|
1100
1074
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
1101
1075
|
}
|
|
@@ -1189,7 +1163,8 @@ const p = (o) => ({
|
|
|
1189
1163
|
textOverflow: "ellipsis",
|
|
1190
1164
|
textWrap: "nowrap",
|
|
1191
1165
|
...o.typography.paragraphDens,
|
|
1192
|
-
textTransform: "capitalize"
|
|
1166
|
+
textTransform: "capitalize",
|
|
1167
|
+
fontWeight: "700"
|
|
1193
1168
|
}
|
|
1194
1169
|
}
|
|
1195
1170
|
},
|
|
@@ -1198,7 +1173,7 @@ const p = (o) => ({
|
|
|
1198
1173
|
borderRadius: "4px 0px 0px 4px",
|
|
1199
1174
|
justifyContent: "flex-start",
|
|
1200
1175
|
flexDirection: "column",
|
|
1201
|
-
gap: "
|
|
1176
|
+
gap: "4px",
|
|
1202
1177
|
height: "auto",
|
|
1203
1178
|
marginBottom: "2px",
|
|
1204
1179
|
"& .M4LSideBar-navItemMainRoot": {
|
|
@@ -1210,11 +1185,13 @@ const p = (o) => ({
|
|
|
1210
1185
|
}
|
|
1211
1186
|
},
|
|
1212
1187
|
"&.M4LSideBar-itemMainActive": {
|
|
1213
|
-
background: o.palette.state.active12,
|
|
1214
1188
|
borderRadius: "4px",
|
|
1215
1189
|
height: "auto",
|
|
1216
1190
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1217
1191
|
background: o.palette.state.active12,
|
|
1192
|
+
border: "1px solid",
|
|
1193
|
+
borderColor: o.palette.state.active12,
|
|
1194
|
+
boxShadow: o.shadows[1],
|
|
1218
1195
|
"&:hover": {
|
|
1219
1196
|
background: t(o.palette.state.active || "#fff", 0.24),
|
|
1220
1197
|
cursor: "pointer"
|
|
@@ -1244,13 +1221,13 @@ const p = (o) => ({
|
|
|
1244
1221
|
},
|
|
1245
1222
|
"&::before": {
|
|
1246
1223
|
content: '""',
|
|
1247
|
-
width: "
|
|
1224
|
+
width: "3px",
|
|
1248
1225
|
height: "100%",
|
|
1249
|
-
top: "
|
|
1250
|
-
bottom: "
|
|
1251
|
-
|
|
1226
|
+
top: "0",
|
|
1227
|
+
bottom: "0",
|
|
1228
|
+
right: "0px",
|
|
1252
1229
|
backgroundColor: o.palette.state.focus,
|
|
1253
|
-
borderRadius: "4px
|
|
1230
|
+
borderRadius: "0px 4px 4px 0px",
|
|
1254
1231
|
position: "absolute"
|
|
1255
1232
|
}
|
|
1256
1233
|
}
|
|
@@ -1298,9 +1275,10 @@ const p = (o) => ({
|
|
|
1298
1275
|
paddingLeft: "0px"
|
|
1299
1276
|
},
|
|
1300
1277
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1301
|
-
gap: "
|
|
1278
|
+
gap: "8px",
|
|
1302
1279
|
padding: "0px",
|
|
1303
1280
|
"& .M4LSideBar-navSubItemContentRoot ": {
|
|
1281
|
+
padding: "0px 8px",
|
|
1304
1282
|
width: "100%",
|
|
1305
1283
|
height: "32px",
|
|
1306
1284
|
borderRadius: "4px",
|
|
@@ -1308,7 +1286,10 @@ const p = (o) => ({
|
|
|
1308
1286
|
"&.M4LSideBar-subItemCollapseActive": {
|
|
1309
1287
|
backgroundColor: o.palette.state.active12,
|
|
1310
1288
|
gap: "8px",
|
|
1289
|
+
border: "1px solid",
|
|
1290
|
+
borderColor: o.palette.state.active12,
|
|
1311
1291
|
"& .MuiButtonBase-root": {
|
|
1292
|
+
padding: "0px",
|
|
1312
1293
|
"& .M4LIcon-root": {
|
|
1313
1294
|
"& .M4LIcon-icon": {
|
|
1314
1295
|
backgroundColor: o.palette.state.focus
|
|
@@ -1318,6 +1299,7 @@ const p = (o) => ({
|
|
|
1318
1299
|
},
|
|
1319
1300
|
"& .M4LSideBar-subItemActive": {
|
|
1320
1301
|
"& .MuiButtonBase-root": {
|
|
1302
|
+
padding: "0px",
|
|
1321
1303
|
"& .M4LIcon-root": {
|
|
1322
1304
|
"& .M4LIcon-icon": {}
|
|
1323
1305
|
},
|
|
@@ -1333,11 +1315,12 @@ const p = (o) => ({
|
|
|
1333
1315
|
}
|
|
1334
1316
|
},
|
|
1335
1317
|
"&:hover": {
|
|
1336
|
-
background: o.palette.state.default
|
|
1318
|
+
background: o.palette.state.default,
|
|
1319
|
+
padding: "0 8px"
|
|
1337
1320
|
}
|
|
1338
1321
|
},
|
|
1339
1322
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
1340
|
-
gap: "
|
|
1323
|
+
gap: "8px",
|
|
1341
1324
|
margin: "0px 0px 0px 0px",
|
|
1342
1325
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
1343
1326
|
minWidth: "5px",
|
|
@@ -1368,7 +1351,7 @@ const p = (o) => ({
|
|
|
1368
1351
|
}
|
|
1369
1352
|
},
|
|
1370
1353
|
"& .MuiCollapse-root": {
|
|
1371
|
-
marginLeft: "
|
|
1354
|
+
marginLeft: "8px"
|
|
1372
1355
|
}
|
|
1373
1356
|
}
|
|
1374
1357
|
},
|
|
@@ -1457,6 +1440,7 @@ const p = (o) => ({
|
|
|
1457
1440
|
flexGrow: "1",
|
|
1458
1441
|
display: "flex",
|
|
1459
1442
|
flexDirection: "column",
|
|
1443
|
+
gap: "8px",
|
|
1460
1444
|
"& .M4LSideBar-contentGroupsLine": {
|
|
1461
1445
|
display: "flex",
|
|
1462
1446
|
height: "2px",
|
|
@@ -1486,7 +1470,7 @@ const p = (o) => ({
|
|
|
1486
1470
|
justifyContent: "center",
|
|
1487
1471
|
flexDirection: "column",
|
|
1488
1472
|
padding: "0px 0px 8px 0px",
|
|
1489
|
-
gap: "
|
|
1473
|
+
gap: "0px",
|
|
1490
1474
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1491
1475
|
backgroundColor: "transparent",
|
|
1492
1476
|
borderRadius: "4px",
|
|
@@ -1498,6 +1482,8 @@ const p = (o) => ({
|
|
|
1498
1482
|
"&.M4LSideBar-itemMainActive": {
|
|
1499
1483
|
background: o.palette.state.active12,
|
|
1500
1484
|
borderRadius: "4px",
|
|
1485
|
+
border: "1px solid",
|
|
1486
|
+
borderColor: o.palette.state.borderDisable,
|
|
1501
1487
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1502
1488
|
background: o.palette.state.active12,
|
|
1503
1489
|
"&:hover": {
|
|
@@ -1593,6 +1579,8 @@ const p = (o) => ({
|
|
|
1593
1579
|
backgroundColor: o.palette.state.active12,
|
|
1594
1580
|
gap: "8px",
|
|
1595
1581
|
"& .MuiButtonBase-root": {
|
|
1582
|
+
paddingLeft: "0",
|
|
1583
|
+
padding: "0px",
|
|
1596
1584
|
"& .M4LIcon-root": {
|
|
1597
1585
|
"& .M4LIcon-icon": {
|
|
1598
1586
|
backgroundColor: o.palette.state.focus
|
|
@@ -1602,6 +1590,8 @@ const p = (o) => ({
|
|
|
1602
1590
|
},
|
|
1603
1591
|
"& .M4LSideBar-subItemActive": {
|
|
1604
1592
|
"& .MuiButtonBase-root": {
|
|
1593
|
+
paddingLeft: "0px",
|
|
1594
|
+
padding: "0px",
|
|
1605
1595
|
"& .M4LIcon-root": {
|
|
1606
1596
|
"& .M4LIcon-icon": {
|
|
1607
1597
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -1616,6 +1606,7 @@ const p = (o) => ({
|
|
|
1616
1606
|
}
|
|
1617
1607
|
},
|
|
1618
1608
|
"&:hover": {
|
|
1609
|
+
padding: "0 8px",
|
|
1619
1610
|
background: o.palette.state.default
|
|
1620
1611
|
}
|
|
1621
1612
|
},
|
|
@@ -1706,6 +1697,7 @@ const p = (o) => ({
|
|
|
1706
1697
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1707
1698
|
"& .M4LSideBar-subItemActive": {
|
|
1708
1699
|
"& .MuiButtonBase-root": {
|
|
1700
|
+
padding: "0px",
|
|
1709
1701
|
"& .M4LIcon-root": {
|
|
1710
1702
|
"& .M4LIcon-icon": {
|
|
1711
1703
|
backgroundColor: o.palette.state.focus
|
|
@@ -1718,6 +1710,7 @@ const p = (o) => ({
|
|
|
1718
1710
|
"& .M4LSideBar-subItemActive": {
|
|
1719
1711
|
height: "fit-content",
|
|
1720
1712
|
"& .MuiButtonBase-root": {
|
|
1713
|
+
padding: "0px",
|
|
1721
1714
|
"& .M4LIcon-root": {
|
|
1722
1715
|
"& .M4LIcon-icon": {
|
|
1723
1716
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -1737,6 +1730,7 @@ const p = (o) => ({
|
|
|
1737
1730
|
backgroundColor: o.palette.text.primary
|
|
1738
1731
|
},
|
|
1739
1732
|
"&:hover": {
|
|
1733
|
+
padding: "0 8px",
|
|
1740
1734
|
background: o.palette.state.default
|
|
1741
1735
|
}
|
|
1742
1736
|
}
|
|
@@ -1776,6 +1770,7 @@ const p = (o) => ({
|
|
|
1776
1770
|
"& .M4LSideBar-navListSubItemRoot": {
|
|
1777
1771
|
"& .M4LSideBar-subItemActive": {
|
|
1778
1772
|
"& .MuiButtonBase-root": {
|
|
1773
|
+
padding: "0px",
|
|
1779
1774
|
"& .M4LIcon-root": {
|
|
1780
1775
|
"& .M4LIcon-icon": {
|
|
1781
1776
|
backgroundColor: o.palette.state.focus
|
|
@@ -1788,6 +1783,7 @@ const p = (o) => ({
|
|
|
1788
1783
|
"& .M4LSideBar-subItemActive": {
|
|
1789
1784
|
height: "fit-content",
|
|
1790
1785
|
"& .MuiButtonBase-root": {
|
|
1786
|
+
padding: "0px",
|
|
1791
1787
|
"& .M4LIcon-root": {
|
|
1792
1788
|
"& .M4LIcon-icon": {
|
|
1793
1789
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -1807,6 +1803,7 @@ const p = (o) => ({
|
|
|
1807
1803
|
backgroundColor: o.palette.text.primary
|
|
1808
1804
|
},
|
|
1809
1805
|
"&:hover": {
|
|
1806
|
+
padding: "0 8px",
|
|
1810
1807
|
background: o.palette.state.default
|
|
1811
1808
|
}
|
|
1812
1809
|
}
|
|
@@ -1904,8 +1901,8 @@ const p = (o) => ({
|
|
|
1904
1901
|
borderRadius: "4px 0px 0px 4px",
|
|
1905
1902
|
justifyContent: "flex-start",
|
|
1906
1903
|
flexDirection: "column",
|
|
1907
|
-
|
|
1908
|
-
gap: "
|
|
1904
|
+
marginBottom: "4px",
|
|
1905
|
+
gap: "0px",
|
|
1909
1906
|
height: "auto",
|
|
1910
1907
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1911
1908
|
backgroundColor: "transparent",
|
|
@@ -1918,8 +1915,9 @@ const p = (o) => ({
|
|
|
1918
1915
|
"&.M4LSideBar-itemMainActive": {
|
|
1919
1916
|
borderRadius: "4px",
|
|
1920
1917
|
background: o.palette.state.active12,
|
|
1918
|
+
border: "1px solid",
|
|
1919
|
+
borderColor: o.palette.state.active12,
|
|
1921
1920
|
"& .M4LSideBar-navItemMainRoot": {
|
|
1922
|
-
background: o.palette.state.active12,
|
|
1923
1921
|
"&:hover": {
|
|
1924
1922
|
background: t(o.palette.state.active || "#fff", 0.24),
|
|
1925
1923
|
cursor: "pointer"
|
|
@@ -2010,10 +2008,13 @@ const p = (o) => ({
|
|
|
2010
2008
|
height: "32px",
|
|
2011
2009
|
borderRadius: "4px",
|
|
2012
2010
|
gap: "8px",
|
|
2011
|
+
padding: "0px",
|
|
2013
2012
|
"&.M4LSideBar-subItemCollapseActive": {
|
|
2014
2013
|
backgroundColor: o.palette.state.active12,
|
|
2015
2014
|
gap: "8px",
|
|
2015
|
+
padding: "0px",
|
|
2016
2016
|
"& .MuiButtonBase-root": {
|
|
2017
|
+
padding: "0px",
|
|
2017
2018
|
"& .M4LIcon-root": {
|
|
2018
2019
|
"& .M4LIcon-icon": {
|
|
2019
2020
|
backgroundColor: o.palette.state.focus
|
|
@@ -2023,6 +2024,7 @@ const p = (o) => ({
|
|
|
2023
2024
|
},
|
|
2024
2025
|
"& .M4LSideBar-subItemActive": {
|
|
2025
2026
|
"& .MuiButtonBase-root": {
|
|
2027
|
+
padding: "0px",
|
|
2026
2028
|
"& .M4LIcon-root": {
|
|
2027
2029
|
"& .M4LIcon-icon": {
|
|
2028
2030
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -2037,13 +2039,14 @@ const p = (o) => ({
|
|
|
2037
2039
|
}
|
|
2038
2040
|
},
|
|
2039
2041
|
"&:hover": {
|
|
2042
|
+
padding: "0 8px",
|
|
2040
2043
|
background: o.palette.state.default
|
|
2041
2044
|
}
|
|
2042
2045
|
},
|
|
2043
2046
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
2044
2047
|
gap: "12px",
|
|
2045
2048
|
margin: "0px 0px 0px 0px",
|
|
2046
|
-
padding: "
|
|
2049
|
+
padding: "8px",
|
|
2047
2050
|
"& .M4LIcon-root": {
|
|
2048
2051
|
minHeight: "24px",
|
|
2049
2052
|
minWwidth: "24px",
|
|
@@ -2073,7 +2076,7 @@ const p = (o) => ({
|
|
|
2073
2076
|
}
|
|
2074
2077
|
},
|
|
2075
2078
|
"& .MuiCollapse-root": {
|
|
2076
|
-
marginLeft: "
|
|
2079
|
+
marginLeft: "0px"
|
|
2077
2080
|
}
|
|
2078
2081
|
}
|
|
2079
2082
|
},
|
|
@@ -2161,7 +2164,7 @@ const p = (o) => ({
|
|
|
2161
2164
|
overflow: "hidden",
|
|
2162
2165
|
textOverflow: "ellipsis",
|
|
2163
2166
|
textWrap: "nowrap",
|
|
2164
|
-
fontWeight: "
|
|
2167
|
+
fontWeight: "700",
|
|
2165
2168
|
fontSize: "14px !important"
|
|
2166
2169
|
}
|
|
2167
2170
|
}
|
|
@@ -2172,7 +2175,7 @@ const p = (o) => ({
|
|
|
2172
2175
|
justifyContent: "center",
|
|
2173
2176
|
flexDirection: "column",
|
|
2174
2177
|
padding: "0px 0px 8px 0px",
|
|
2175
|
-
gap: "
|
|
2178
|
+
gap: "0",
|
|
2176
2179
|
"& .M4LSideBar-navItemMainRoot": {
|
|
2177
2180
|
backgroundColor: "transparent",
|
|
2178
2181
|
borderRadius: "4px",
|
|
@@ -2184,6 +2187,8 @@ const p = (o) => ({
|
|
|
2184
2187
|
"&.M4LSideBar-itemMainActive": {
|
|
2185
2188
|
borderRadius: "4px",
|
|
2186
2189
|
background: o.palette.state.active12,
|
|
2190
|
+
border: "1px solid",
|
|
2191
|
+
borderColor: o.palette.state.active12,
|
|
2187
2192
|
"& .M4LSideBar-navItemMainRoot": {
|
|
2188
2193
|
background: o.palette.state.active12,
|
|
2189
2194
|
"&:hover": {
|
|
@@ -2277,10 +2282,12 @@ const p = (o) => ({
|
|
|
2277
2282
|
height: "32px",
|
|
2278
2283
|
borderRadius: "4px",
|
|
2279
2284
|
gap: "8px",
|
|
2285
|
+
padding: "0px",
|
|
2280
2286
|
"&.M4LSideBar-subItemCollapseActive": {
|
|
2281
2287
|
backgroundColor: o.palette.state.active12,
|
|
2282
2288
|
gap: "8px",
|
|
2283
2289
|
"& .MuiButtonBase-root": {
|
|
2290
|
+
padding: "0px",
|
|
2284
2291
|
"& .M4LIcon-root": {
|
|
2285
2292
|
"& .M4LIcon-icon": {
|
|
2286
2293
|
backgroundColor: o.palette.state.focus
|
|
@@ -2290,6 +2297,7 @@ const p = (o) => ({
|
|
|
2290
2297
|
},
|
|
2291
2298
|
"& .M4LSideBar-subItemActive": {
|
|
2292
2299
|
"& .MuiButtonBase-root": {
|
|
2300
|
+
padding: "0px",
|
|
2293
2301
|
"& .M4LIcon-root": {
|
|
2294
2302
|
"& .M4LIcon-icon": {
|
|
2295
2303
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -2304,13 +2312,14 @@ const p = (o) => ({
|
|
|
2304
2312
|
}
|
|
2305
2313
|
},
|
|
2306
2314
|
"&:hover": {
|
|
2315
|
+
padding: "0 8px",
|
|
2307
2316
|
background: o.palette.state.default
|
|
2308
2317
|
}
|
|
2309
2318
|
},
|
|
2310
2319
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
2311
2320
|
gap: "12px",
|
|
2312
2321
|
margin: "0px 0px 0px 0px",
|
|
2313
|
-
padding: "
|
|
2322
|
+
padding: "0px",
|
|
2314
2323
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
2315
2324
|
minWidth: "5px",
|
|
2316
2325
|
minHeight: "5px",
|
|
@@ -2425,6 +2434,8 @@ const p = (o) => ({
|
|
|
2425
2434
|
"&.M4LSideBar-itemMainActive": {
|
|
2426
2435
|
borderRadius: "4px",
|
|
2427
2436
|
background: o.palette.state.active12,
|
|
2437
|
+
border: "1px solid",
|
|
2438
|
+
borderColor: o.palette.state.active12,
|
|
2428
2439
|
"& .M4LSideBar-navItemMainRoot": {
|
|
2429
2440
|
background: o.palette.state.active12,
|
|
2430
2441
|
"&:hover": {
|
|
@@ -2516,10 +2527,12 @@ const p = (o) => ({
|
|
|
2516
2527
|
height: "32px",
|
|
2517
2528
|
borderRadius: "4px",
|
|
2518
2529
|
gap: "8px",
|
|
2530
|
+
padding: "0px",
|
|
2519
2531
|
"&.M4LSideBar-subItemCollapseActive": {
|
|
2520
2532
|
backgroundColor: o.palette.state.active12,
|
|
2521
2533
|
gap: "8px",
|
|
2522
2534
|
"& .MuiButtonBase-root": {
|
|
2535
|
+
padding: "0px",
|
|
2523
2536
|
"& .M4LIcon-root": {
|
|
2524
2537
|
"& .M4LIcon-icon": {
|
|
2525
2538
|
backgroundColor: o.palette.state.focus
|
|
@@ -2529,6 +2542,7 @@ const p = (o) => ({
|
|
|
2529
2542
|
},
|
|
2530
2543
|
"& .M4LSideBar-subItemActive": {
|
|
2531
2544
|
"& .MuiButtonBase-root": {
|
|
2545
|
+
padding: "0px",
|
|
2532
2546
|
"& .M4LIcon-root": {
|
|
2533
2547
|
"& .M4LIcon-icon": {
|
|
2534
2548
|
backgroundColor: `${o.palette.state.focus}!important`
|
|
@@ -2543,13 +2557,14 @@ const p = (o) => ({
|
|
|
2543
2557
|
}
|
|
2544
2558
|
},
|
|
2545
2559
|
"&:hover": {
|
|
2546
|
-
background: o.palette.state.default
|
|
2560
|
+
background: o.palette.state.default,
|
|
2561
|
+
padding: "0 8px"
|
|
2547
2562
|
}
|
|
2548
2563
|
},
|
|
2549
2564
|
"& .M4LSideBar-navSubItemContentRoot": {
|
|
2550
2565
|
gap: "12px",
|
|
2551
2566
|
margin: "0px 0px 0px 0px",
|
|
2552
|
-
padding: "
|
|
2567
|
+
padding: "0px",
|
|
2553
2568
|
"& .M4LSideBar-navSubItemContentBullet": {
|
|
2554
2569
|
minWidth: "5px",
|
|
2555
2570
|
minHeight: "5px",
|
|
@@ -3859,7 +3874,7 @@ const p = (o) => ({
|
|
|
3859
3874
|
}
|
|
3860
3875
|
}
|
|
3861
3876
|
}
|
|
3862
|
-
}),
|
|
3877
|
+
}), C = (o) => ({
|
|
3863
3878
|
M4LAccountPopover: {
|
|
3864
3879
|
styleOverrides: {
|
|
3865
3880
|
"&.M4LAccountPopover-root": {
|
|
@@ -4138,7 +4153,7 @@ const p = (o) => ({
|
|
|
4138
4153
|
}
|
|
4139
4154
|
}
|
|
4140
4155
|
}
|
|
4141
|
-
}),
|
|
4156
|
+
}), m = (o) => ({
|
|
4142
4157
|
M4LModuleLayout: {
|
|
4143
4158
|
styleOverrides: {
|
|
4144
4159
|
"&.M4LModuleLayout-root": {
|
|
@@ -4188,7 +4203,7 @@ const p = (o) => ({
|
|
|
4188
4203
|
}
|
|
4189
4204
|
}
|
|
4190
4205
|
}
|
|
4191
|
-
}),
|
|
4206
|
+
}), B = (o) => ({
|
|
4192
4207
|
M4LSplitLayout: {
|
|
4193
4208
|
styleOverrides: {
|
|
4194
4209
|
"&.M4LSplitLayout-root": {
|
|
@@ -4310,7 +4325,7 @@ const p = (o) => ({
|
|
|
4310
4325
|
}
|
|
4311
4326
|
}
|
|
4312
4327
|
}
|
|
4313
|
-
}),
|
|
4328
|
+
}), I = (o) => ({
|
|
4314
4329
|
M4LCommonActions: {
|
|
4315
4330
|
styleOverrides: {
|
|
4316
4331
|
"&.M4LCommonActions-root": {
|
|
@@ -4674,7 +4689,7 @@ const p = (o) => ({
|
|
|
4674
4689
|
}
|
|
4675
4690
|
}
|
|
4676
4691
|
}
|
|
4677
|
-
}),
|
|
4692
|
+
}), D = (o) => ({
|
|
4678
4693
|
M4LRHFormProvider: {
|
|
4679
4694
|
styleOverrides: {
|
|
4680
4695
|
"&.M4LRHFormProvider-root": {
|
|
@@ -4689,7 +4704,7 @@ const p = (o) => ({
|
|
|
4689
4704
|
}
|
|
4690
4705
|
}
|
|
4691
4706
|
}
|
|
4692
|
-
}),
|
|
4707
|
+
}), P = (o) => ({
|
|
4693
4708
|
M4LPeriod: {
|
|
4694
4709
|
styleOverrides: {
|
|
4695
4710
|
"&.M4LPeriod-root": {
|
|
@@ -6022,7 +6037,13 @@ const p = (o) => ({
|
|
|
6022
6037
|
display: "flex",
|
|
6023
6038
|
flexDirection: "column",
|
|
6024
6039
|
alignItems: "center",
|
|
6025
|
-
overflow: "auto"
|
|
6040
|
+
overflow: "auto",
|
|
6041
|
+
"& .M4LMFLoader-containerLinearProgress": {
|
|
6042
|
+
width: "100%",
|
|
6043
|
+
height: "100%",
|
|
6044
|
+
display: "flex",
|
|
6045
|
+
alignItems: "center"
|
|
6046
|
+
}
|
|
6026
6047
|
}
|
|
6027
6048
|
}
|
|
6028
6049
|
}
|
|
@@ -6491,7 +6512,7 @@ const p = (o) => ({
|
|
|
6491
6512
|
export {
|
|
6492
6513
|
T as A,
|
|
6493
6514
|
A as B,
|
|
6494
|
-
|
|
6515
|
+
P as C,
|
|
6495
6516
|
H as D,
|
|
6496
6517
|
F as E,
|
|
6497
6518
|
W as F,
|
|
@@ -6517,7 +6538,7 @@ export {
|
|
|
6517
6538
|
ao as Z,
|
|
6518
6539
|
io as _,
|
|
6519
6540
|
p as a,
|
|
6520
|
-
|
|
6541
|
+
D as b,
|
|
6521
6542
|
d as c,
|
|
6522
6543
|
l as d,
|
|
6523
6544
|
s as e,
|
|
@@ -6535,11 +6556,11 @@ export {
|
|
|
6535
6556
|
f as q,
|
|
6536
6557
|
h as r,
|
|
6537
6558
|
v as s,
|
|
6538
|
-
|
|
6539
|
-
|
|
6559
|
+
C as t,
|
|
6560
|
+
m as u,
|
|
6540
6561
|
k as v,
|
|
6541
|
-
|
|
6542
|
-
|
|
6562
|
+
B as w,
|
|
6563
|
+
I as x,
|
|
6543
6564
|
S as y,
|
|
6544
6565
|
R as z
|
|
6545
6566
|
};
|