@m4l/styles 0.0.41 → 0.0.43

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 (26) hide show
  1. package/index.js +8 -8
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.c5fe2519.js → defaultThemeOptions.4c9bc728.js} +4 -4
  4. package/theme/overrides/M4LExtendedComponents/M4LAppBarCommercial.d.ts +2 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LCheckBox.d.ts +22 -7
  6. package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +24 -0
  7. package/theme/overrides/M4LExtendedComponents/M4LFieldLabel.d.ts +25 -0
  8. package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +8 -28
  9. package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +0 -26
  10. package/theme/overrides/M4LExtendedComponents/M4LMFLoader.d.ts +6 -0
  11. package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +366 -342
  12. package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +355 -137
  13. package/theme/overrides/M4LExtendedComponents/{index.8f5f04ca.js → index.b9151f24.js} +395 -352
  14. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +3 -14
  15. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +1 -47
  16. package/theme/overrides/M4LRHFComponents/M4LRHFColorPicker.d.ts +29 -14
  17. package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +29 -151
  18. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -0
  19. package/theme/overrides/M4LRHFComponents/{index.427e0f0e.js → index.02fada22.js} +82 -57
  20. package/theme/overrides/{index.a3e99f67.js → index.fd981495.js} +26 -25
  21. package/theme/{palette.1b577d8c.js → palette.0590e8a6.js} +16 -14
  22. package/theme/palette.d.ts +2 -0
  23. package/theme/{shadows.479d005a.js → shadows.86540b18.js} +1 -1
  24. package/types/augmentations.d.ts +1 -1
  25. package/utils/{getColorPresets.479f9922.js → getColorPresets.2a91ffaf.js} +1 -1
  26. package/utils/{getColorState.0ad9ea67.js → getColorState.6c23eada.js} +1 -1
@@ -1,6 +1,6 @@
1
1
  import { alpha as t } from "@mui/material/styles";
2
2
  import { alpha as e } from "@mui/system";
3
- import { P as r } from "../../palette.1b577d8c.js";
3
+ import { P as r } from "../../palette.0590e8a6.js";
4
4
  const p = (o) => ({
5
5
  M4LDynamicFilter: {
6
6
  styleOverrides: {
@@ -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
- minWidth: "24px",
402
- minHeight: "24px"
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
- minWidth: "36px",
408
- minHeight: "36px"
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
  }
@@ -994,22 +948,126 @@ const p = (o) => ({
994
948
  }), y = (o) => ({
995
949
  M4LSideBar: {
996
950
  styleOverrides: {
951
+ "&.M4LSideBar-root": {
952
+ "&.M4LSideBar-collapsed": {},
953
+ "& .M4LSideBar-wrapperSideBar": {
954
+ height: "100%",
955
+ transition: "all 0.3s",
956
+ width: "240px",
957
+ "& .M4LSideBar-areaExpandMenu": {
958
+ position: "absolute",
959
+ zIndex: "1",
960
+ height: "100%",
961
+ transition: "all 0.3s",
962
+ width: "240px",
963
+ "& .M4LSideBar-contentDesktop": {
964
+ display: "flex",
965
+ width: "100%",
966
+ height: "100%",
967
+ boxShadow: o.customShadows.z2,
968
+ transition: "all 0.3s",
969
+ "& .M4LSideBar-containerContentGroupsFooter": {
970
+ flexGrow: "1",
971
+ display: "flex",
972
+ flexDirection: "column",
973
+ height: "100%",
974
+ position: "relative",
975
+ borderRight: "1px solid",
976
+ borderColor: o.palette.state.borderPrimary,
977
+ backgroundColor: o.palette.background.default,
978
+ "& .M4LSideBar-contentGroups": {
979
+ padding: "32px 12px",
980
+ "& .M4LSideBar-wrapperGroup": {
981
+ overflow: "visible",
982
+ padding: "8px",
983
+ borderTop: "1px solid",
984
+ borderBottom: "1px solid",
985
+ borderColor: o.palette.state.borderSecondary,
986
+ height: "fit-content",
987
+ width: "100%",
988
+ "& .M4LSideBar-navItemRootContent": {
989
+ overflow: "hidden",
990
+ height: "36px",
991
+ padding: "0px 8px",
992
+ display: "flex",
993
+ alignItems: "center"
994
+ }
995
+ }
996
+ },
997
+ "& .M4LSideBar-footer": {
998
+ display: "flex",
999
+ padding: "10px 5px",
1000
+ borderTop: "1px solid",
1001
+ borderColor: o.palette.state.borderDisable,
1002
+ justifyContent: "center",
1003
+ gap: "24px",
1004
+ alignItems: "center",
1005
+ height: "48px",
1006
+ minHeight: "48px",
1007
+ flexDirection: "row-reverse",
1008
+ overflow: "hidden",
1009
+ "& .M4LSideBar-wrapperLogoFooter": {
1010
+ width: "100%",
1011
+ height: "100%",
1012
+ "& .M4LSideBar-containerLogoButtonLogo": {
1013
+ display: "flex",
1014
+ justifyContent: "center",
1015
+ alignItems: "center"
1016
+ }
1017
+ }
1018
+ }
1019
+ },
1020
+ "& .M4LSideBar-collapseButtonSecondary": {
1021
+ height: "100%",
1022
+ cursor: "pointer"
1023
+ }
1024
+ }
1025
+ }
1026
+ }
1027
+ },
997
1028
  "&.M4LSideBar-root.M4LSideBar-variantDefault": {
998
1029
  height: "100%",
999
- maxWidth: "220px",
1000
1030
  background: o.palette.background.default,
1001
- paddingTop: "24px",
1002
- borderRight: "1.5px solid",
1003
- borderColor: o.palette.state.borderPrimary,
1031
+ position: "relative",
1032
+ "& .M4LIconButton-sizeSmall": {
1033
+ width: "20px",
1034
+ height: "20px",
1035
+ minWidth: "20px",
1036
+ minHeight: "20px",
1037
+ "& .MuiButtonBase-root": {
1038
+ padding: "0px",
1039
+ width: "20px",
1040
+ height: "20px"
1041
+ }
1042
+ },
1043
+ "&:hover": {
1044
+ "& .M4LSideBar-collapseButton": {
1045
+ opacity: "1!important",
1046
+ transition: "all 0.3s"
1047
+ }
1048
+ },
1049
+ "& .M4LSideBar-collapseButton": {
1050
+ position: "absolute",
1051
+ top: "16px",
1052
+ right: "-8px",
1053
+ borderRadius: "4px",
1054
+ backgroundColor: `${o.palette.background.default}!important`,
1055
+ transition: "all 0.3s",
1056
+ boxShadow: o.customShadows.z1,
1057
+ zIndex: "1"
1058
+ },
1059
+ "&:not(.M4LSideBar-collapsed) .M4LSideBar-collapseButton": {
1060
+ opacity: 0,
1061
+ transition: "all 0.3s"
1062
+ },
1004
1063
  "& .M4LSideBar-subItemActive": {
1064
+ padding: "0px",
1005
1065
  "& .M4LIcon-icon": {
1006
1066
  backgroundColor: `${o.palette.state.focus}!important`
1007
1067
  }
1008
1068
  },
1009
1069
  "&.M4LSideBar-collapsed": {
1010
1070
  "& .M4LSideBar-wrapperSideBar": {
1011
- width: "52px",
1012
- transition: "width 0.1s ease",
1013
1071
  "& .M4LSideBar-contentDesktop": {
1014
1072
  "& .M4LSideBar-containerSideBarLogo": {
1015
1073
  marginTop: "0px",
@@ -1026,15 +1084,12 @@ const p = (o) => ({
1026
1084
  }
1027
1085
  }
1028
1086
  },
1029
- [o.breakpoints.down("sm")]: {
1087
+ [o.breakpoints.down("md")]: {
1030
1088
  width: "0px",
1031
1089
  height: "0px",
1032
1090
  padding: "0px"
1033
1091
  },
1034
1092
  "& .M4LSideBar-wrapperSideBar": {
1035
- height: "100%",
1036
- width: "219px",
1037
- transition: "width 0.1s ease",
1038
1093
  "& .M4LSideBar-containerSideBarLogo": {
1039
1094
  display: "flex",
1040
1095
  justifyContent: "flex-start",
@@ -1081,7 +1136,6 @@ const p = (o) => ({
1081
1136
  },
1082
1137
  "& .M4LSideBar-wrapperGroup": {
1083
1138
  height: "100%",
1084
- padding: "0 8px",
1085
1139
  "& .M4LScrollBar-root": {
1086
1140
  overflow: "hidden",
1087
1141
  height: "100%",
@@ -1090,6 +1144,8 @@ const p = (o) => ({
1090
1144
  "& .M4LSideBar-wrapperGroupTitle": {
1091
1145
  height: "28px",
1092
1146
  padding: "0px 0px 0px 12px",
1147
+ display: "flex",
1148
+ alignItems: "center",
1093
1149
  "& .M4LTypography-root": {
1094
1150
  display: "flex",
1095
1151
  width: "100%",
@@ -1099,7 +1155,8 @@ const p = (o) => ({
1099
1155
  textOverflow: "ellipsis",
1100
1156
  textWrap: "nowrap",
1101
1157
  ...o.typography.paragraphDens,
1102
- textTransform: "capitalize"
1158
+ textTransform: "capitalize",
1159
+ fontWeight: "700"
1103
1160
  }
1104
1161
  }
1105
1162
  },
@@ -1108,7 +1165,7 @@ const p = (o) => ({
1108
1165
  borderRadius: "4px 0px 0px 4px",
1109
1166
  justifyContent: "flex-start",
1110
1167
  flexDirection: "column",
1111
- gap: "2px",
1168
+ gap: "4px",
1112
1169
  height: "auto",
1113
1170
  marginBottom: "2px",
1114
1171
  "& .M4LSideBar-navItemMainRoot": {
@@ -1124,6 +1181,9 @@ const p = (o) => ({
1124
1181
  height: "auto",
1125
1182
  "& .M4LSideBar-navItemMainRoot": {
1126
1183
  background: o.palette.state.active12,
1184
+ border: "1px solid",
1185
+ borderColor: o.palette.state.active12,
1186
+ boxShadow: o.shadows[1],
1127
1187
  "&:hover": {
1128
1188
  background: t(o.palette.state.active || "#fff", 0.24),
1129
1189
  cursor: "pointer"
@@ -1153,21 +1213,20 @@ const p = (o) => ({
1153
1213
  },
1154
1214
  "&::before": {
1155
1215
  content: '""',
1156
- width: "2px",
1157
- height: "100%",
1158
- top: "0px",
1159
- bottom: "0px",
1216
+ width: "3px",
1217
+ height: "50%",
1218
+ top: "25%",
1219
+ bottom: "25%",
1160
1220
  left: "0px",
1161
1221
  backgroundColor: o.palette.state.focus,
1162
- borderRadius: "4px 0px 0px 4px",
1222
+ borderRadius: "0px 4px 4px 0px",
1163
1223
  position: "absolute"
1164
1224
  }
1165
1225
  }
1166
1226
  },
1167
1227
  "& .M4LSideBar-navItemRootContent": {
1168
1228
  display: "flex",
1169
- padding: "4px 8px 4px 8px",
1170
- justifyContent: "center",
1229
+ padding: "12px 8px",
1171
1230
  borderRadius: "4px 0px 0px 4px",
1172
1231
  position: "relative",
1173
1232
  "& .M4LSideBar-navItemRootContentIconTypo": {
@@ -1175,7 +1234,7 @@ const p = (o) => ({
1175
1234
  gap: "8px",
1176
1235
  width: "100%",
1177
1236
  "& .M4LIcon-icon": {
1178
- backgroundColor: o.palette.text.primary,
1237
+ backgroundColor: o.palette.text.secondary,
1179
1238
  width: "18px",
1180
1239
  height: "18px"
1181
1240
  },
@@ -1208,9 +1267,10 @@ const p = (o) => ({
1208
1267
  paddingLeft: "0px"
1209
1268
  },
1210
1269
  "& .M4LSideBar-navListSubItemRoot": {
1211
- gap: "12px",
1270
+ gap: "8px",
1212
1271
  padding: "0px",
1213
1272
  "& .M4LSideBar-navSubItemContentRoot ": {
1273
+ padding: "0px 8px",
1214
1274
  width: "100%",
1215
1275
  height: "32px",
1216
1276
  borderRadius: "4px",
@@ -1218,7 +1278,10 @@ const p = (o) => ({
1218
1278
  "&.M4LSideBar-subItemCollapseActive": {
1219
1279
  backgroundColor: o.palette.state.active12,
1220
1280
  gap: "8px",
1281
+ border: "1px solid",
1282
+ borderColor: o.palette.state.active12,
1221
1283
  "& .MuiButtonBase-root": {
1284
+ padding: "0px",
1222
1285
  "& .M4LIcon-root": {
1223
1286
  "& .M4LIcon-icon": {
1224
1287
  backgroundColor: o.palette.state.focus
@@ -1228,6 +1291,7 @@ const p = (o) => ({
1228
1291
  },
1229
1292
  "& .M4LSideBar-subItemActive": {
1230
1293
  "& .MuiButtonBase-root": {
1294
+ padding: "0px",
1231
1295
  "& .M4LIcon-root": {
1232
1296
  "& .M4LIcon-icon": {}
1233
1297
  },
@@ -1243,11 +1307,12 @@ const p = (o) => ({
1243
1307
  }
1244
1308
  },
1245
1309
  "&:hover": {
1246
- background: o.palette.state.default
1310
+ background: o.palette.state.default,
1311
+ padding: "0 8px"
1247
1312
  }
1248
1313
  },
1249
1314
  "& .M4LSideBar-navSubItemContentRoot": {
1250
- gap: "12px",
1315
+ gap: "8px",
1251
1316
  margin: "0px 0px 0px 0px",
1252
1317
  "& .M4LSideBar-navSubItemContentBullet": {
1253
1318
  minWidth: "5px",
@@ -1278,7 +1343,7 @@ const p = (o) => ({
1278
1343
  }
1279
1344
  },
1280
1345
  "& .MuiCollapse-root": {
1281
- marginLeft: "18px"
1346
+ marginLeft: "8px"
1282
1347
  }
1283
1348
  }
1284
1349
  },
@@ -1286,30 +1351,15 @@ const p = (o) => ({
1286
1351
  backgroundColor: o.palette.text.primary
1287
1352
  }
1288
1353
  },
1289
- "& .M4LSideBar-collapseButton": {
1290
- display: "flex",
1291
- padding: "12px 44px 12px 14px",
1292
- borderTop: "1px solid",
1293
- borderColor: o.palette.state.borderDisable,
1294
- justifyContent: "flex-end",
1295
- gap: "24px",
1296
- alignItems: "center",
1297
- height: "48px",
1298
- width: "220px",
1299
- minHeight: "48px",
1300
- flexDirection: "row-reverse",
1354
+ "& .M4LSideBar-footer": {
1301
1355
  "& .M4LSideBar-containerLogoButton": {
1302
1356
  display: "flex",
1303
1357
  gap: "14px",
1304
1358
  width: "120px"
1305
1359
  },
1306
1360
  "& .M4LSideBar-containerLogoButtonLogo": {
1307
- width: "120px",
1308
- height: "32px",
1309
- "& .M4LSideBar-containerLogoButtonIcon": {
1310
- display: "flex",
1311
- alignItems: "center"
1312
- }
1361
+ minWidth: "120px",
1362
+ height: "32px"
1313
1363
  }
1314
1364
  }
1315
1365
  }
@@ -1339,14 +1389,12 @@ const p = (o) => ({
1339
1389
  }
1340
1390
  }
1341
1391
  },
1342
- [o.breakpoints.down("sm")]: {
1392
+ [o.breakpoints.down("md")]: {
1343
1393
  width: "0px",
1344
1394
  height: "0px",
1345
1395
  padding: "0px"
1346
1396
  },
1347
1397
  "& .M4LSideBar-wrapperSideBar": {
1348
- height: "100%",
1349
- width: "250px",
1350
1398
  "& .M4LSideBar-containerSideBarLogo": {
1351
1399
  display: "flex",
1352
1400
  justifyContent: "flex-start",
@@ -1384,6 +1432,7 @@ const p = (o) => ({
1384
1432
  flexGrow: "1",
1385
1433
  display: "flex",
1386
1434
  flexDirection: "column",
1435
+ gap: "8px",
1387
1436
  "& .M4LSideBar-contentGroupsLine": {
1388
1437
  display: "flex",
1389
1438
  height: "2px",
@@ -1413,7 +1462,7 @@ const p = (o) => ({
1413
1462
  justifyContent: "center",
1414
1463
  flexDirection: "column",
1415
1464
  padding: "0px 0px 8px 0px",
1416
- gap: "4px",
1465
+ gap: "0px",
1417
1466
  "& .M4LSideBar-navItemMainRoot": {
1418
1467
  backgroundColor: "transparent",
1419
1468
  borderRadius: "4px",
@@ -1423,7 +1472,10 @@ const p = (o) => ({
1423
1472
  }
1424
1473
  },
1425
1474
  "&.M4LSideBar-itemMainActive": {
1475
+ background: o.palette.state.active12,
1426
1476
  borderRadius: "4px",
1477
+ border: "1px solid",
1478
+ borderColor: o.palette.state.borderDisable,
1427
1479
  "& .M4LSideBar-navItemMainRoot": {
1428
1480
  background: o.palette.state.active12,
1429
1481
  "&:hover": {
@@ -1519,6 +1571,8 @@ const p = (o) => ({
1519
1571
  backgroundColor: o.palette.state.active12,
1520
1572
  gap: "8px",
1521
1573
  "& .MuiButtonBase-root": {
1574
+ paddingLeft: "0",
1575
+ padding: "0px",
1522
1576
  "& .M4LIcon-root": {
1523
1577
  "& .M4LIcon-icon": {
1524
1578
  backgroundColor: o.palette.state.focus
@@ -1528,6 +1582,8 @@ const p = (o) => ({
1528
1582
  },
1529
1583
  "& .M4LSideBar-subItemActive": {
1530
1584
  "& .MuiButtonBase-root": {
1585
+ paddingLeft: "0px",
1586
+ padding: "0px",
1531
1587
  "& .M4LIcon-root": {
1532
1588
  "& .M4LIcon-icon": {
1533
1589
  backgroundColor: `${o.palette.state.focus}!important`
@@ -1542,6 +1598,7 @@ const p = (o) => ({
1542
1598
  }
1543
1599
  },
1544
1600
  "&:hover": {
1601
+ padding: "0 8px",
1545
1602
  background: o.palette.state.default
1546
1603
  }
1547
1604
  },
@@ -1578,26 +1635,14 @@ const p = (o) => ({
1578
1635
  backgroundColor: o.palette.text.primary
1579
1636
  }
1580
1637
  },
1581
- "& .M4LSideBar-collapseButton": {
1582
- display: "flex",
1583
- paddingTop: "12px",
1584
- borderTop: "1px solid",
1585
- borderColor: o.palette.state.hoverDefault,
1586
- justifyContent: "flex-end",
1587
- marginRight: "14px",
1588
- marginLeft: "14px",
1589
- gap: "40px",
1590
- alignItems: "center",
1591
- height: "48px",
1592
- minHeight: "48px",
1593
- flexDirection: "row-reverse",
1638
+ "& .M4LSideBar-footer": {
1594
1639
  "& .M4LSideBar-containerLogoButton": {
1595
1640
  display: "flex",
1596
1641
  gap: "14px",
1597
1642
  width: "120px"
1598
1643
  },
1599
1644
  "& .M4LSideBar-containerLogoButtonLogo": {
1600
- width: "120px",
1645
+ minWidth: "120px",
1601
1646
  height: "32px",
1602
1647
  "& .M4LSideBar-containerLogoButtonIcon": {
1603
1648
  display: "flex",
@@ -1644,6 +1689,7 @@ const p = (o) => ({
1644
1689
  "& .M4LSideBar-navListSubItemRoot": {
1645
1690
  "& .M4LSideBar-subItemActive": {
1646
1691
  "& .MuiButtonBase-root": {
1692
+ padding: "0px",
1647
1693
  "& .M4LIcon-root": {
1648
1694
  "& .M4LIcon-icon": {
1649
1695
  backgroundColor: o.palette.state.focus
@@ -1656,6 +1702,7 @@ const p = (o) => ({
1656
1702
  "& .M4LSideBar-subItemActive": {
1657
1703
  height: "fit-content",
1658
1704
  "& .MuiButtonBase-root": {
1705
+ padding: "0px",
1659
1706
  "& .M4LIcon-root": {
1660
1707
  "& .M4LIcon-icon": {
1661
1708
  backgroundColor: `${o.palette.state.focus}!important`
@@ -1675,6 +1722,7 @@ const p = (o) => ({
1675
1722
  backgroundColor: o.palette.text.primary
1676
1723
  },
1677
1724
  "&:hover": {
1725
+ padding: "0 8px",
1678
1726
  background: o.palette.state.default
1679
1727
  }
1680
1728
  }
@@ -1714,6 +1762,7 @@ const p = (o) => ({
1714
1762
  "& .M4LSideBar-navListSubItemRoot": {
1715
1763
  "& .M4LSideBar-subItemActive": {
1716
1764
  "& .MuiButtonBase-root": {
1765
+ padding: "0px",
1717
1766
  "& .M4LIcon-root": {
1718
1767
  "& .M4LIcon-icon": {
1719
1768
  backgroundColor: o.palette.state.focus
@@ -1726,6 +1775,7 @@ const p = (o) => ({
1726
1775
  "& .M4LSideBar-subItemActive": {
1727
1776
  height: "fit-content",
1728
1777
  "& .MuiButtonBase-root": {
1778
+ padding: "0px",
1729
1779
  "& .M4LIcon-root": {
1730
1780
  "& .M4LIcon-icon": {
1731
1781
  backgroundColor: `${o.palette.state.focus}!important`
@@ -1745,6 +1795,7 @@ const p = (o) => ({
1745
1795
  backgroundColor: o.palette.text.primary
1746
1796
  },
1747
1797
  "&:hover": {
1798
+ padding: "0 8px",
1748
1799
  background: o.palette.state.default
1749
1800
  }
1750
1801
  }
@@ -1771,7 +1822,7 @@ const p = (o) => ({
1771
1822
  height: "100%",
1772
1823
  display: "flex",
1773
1824
  flexDirection: "column",
1774
- paddingTop: "24px",
1825
+ padding: "8px",
1775
1826
  "& .M4LSideBar-containerSideBarLogo": {
1776
1827
  display: "flex",
1777
1828
  justifyContent: "flex-start",
@@ -1821,7 +1872,6 @@ const p = (o) => ({
1821
1872
  },
1822
1873
  "& .M4LSideBar-wrapperGroup": {
1823
1874
  height: "100%",
1824
- padding: "0px 8px",
1825
1875
  "& .M4LSideBar-wrapperGroupTitle": {
1826
1876
  height: "28px",
1827
1877
  padding: "0px 0px 0px 12px",
@@ -1833,7 +1883,7 @@ const p = (o) => ({
1833
1883
  overflow: "hidden",
1834
1884
  textOverflow: "ellipsis",
1835
1885
  textWrap: "nowrap",
1836
- ...o.typography.bodyDens,
1886
+ ...o.typography.paragraphDens,
1837
1887
  textTransform: "capitalize"
1838
1888
  }
1839
1889
  }
@@ -1844,7 +1894,7 @@ const p = (o) => ({
1844
1894
  justifyContent: "flex-start",
1845
1895
  flexDirection: "column",
1846
1896
  paddingBottom: "4px",
1847
- gap: "4px",
1897
+ gap: "0px",
1848
1898
  height: "auto",
1849
1899
  "& .M4LSideBar-navItemMainRoot": {
1850
1900
  backgroundColor: "transparent",
@@ -1856,8 +1906,11 @@ const p = (o) => ({
1856
1906
  },
1857
1907
  "&.M4LSideBar-itemMainActive": {
1858
1908
  borderRadius: "4px",
1909
+ background: o.palette.state.active12,
1910
+ border: "1px solid",
1911
+ borderColor: o.palette.state.active12,
1859
1912
  "& .M4LSideBar-navItemMainRoot": {
1860
- background: o.palette.state.active12,
1913
+ background: o.palette.state.active,
1861
1914
  "&:hover": {
1862
1915
  background: t(o.palette.state.active || "#fff", 0.24),
1863
1916
  cursor: "pointer"
@@ -1948,10 +2001,13 @@ const p = (o) => ({
1948
2001
  height: "32px",
1949
2002
  borderRadius: "4px",
1950
2003
  gap: "8px",
2004
+ padding: "0px",
1951
2005
  "&.M4LSideBar-subItemCollapseActive": {
1952
2006
  backgroundColor: o.palette.state.active12,
1953
2007
  gap: "8px",
2008
+ padding: "0px",
1954
2009
  "& .MuiButtonBase-root": {
2010
+ padding: "0px",
1955
2011
  "& .M4LIcon-root": {
1956
2012
  "& .M4LIcon-icon": {
1957
2013
  backgroundColor: o.palette.state.focus
@@ -1961,6 +2017,7 @@ const p = (o) => ({
1961
2017
  },
1962
2018
  "& .M4LSideBar-subItemActive": {
1963
2019
  "& .MuiButtonBase-root": {
2020
+ padding: "0px",
1964
2021
  "& .M4LIcon-root": {
1965
2022
  "& .M4LIcon-icon": {
1966
2023
  backgroundColor: `${o.palette.state.focus}!important`
@@ -1975,13 +2032,14 @@ const p = (o) => ({
1975
2032
  }
1976
2033
  },
1977
2034
  "&:hover": {
2035
+ padding: "0 8px",
1978
2036
  background: o.palette.state.default
1979
2037
  }
1980
2038
  },
1981
2039
  "& .M4LSideBar-navSubItemContentRoot": {
1982
2040
  gap: "12px",
1983
2041
  margin: "0px 0px 0px 0px",
1984
- padding: "16px",
2042
+ padding: "8px",
1985
2043
  "& .M4LIcon-root": {
1986
2044
  minHeight: "24px",
1987
2045
  minWwidth: "24px",
@@ -2011,7 +2069,7 @@ const p = (o) => ({
2011
2069
  }
2012
2070
  },
2013
2071
  "& .MuiCollapse-root": {
2014
- marginLeft: "18px"
2072
+ marginLeft: "0px"
2015
2073
  }
2016
2074
  }
2017
2075
  },
@@ -2019,25 +2077,14 @@ const p = (o) => ({
2019
2077
  backgroundColor: o.palette.text.primary
2020
2078
  }
2021
2079
  },
2022
- "& .M4LSideBar-collapseButton": {
2023
- display: "flex",
2024
- paddingTop: "12px",
2025
- borderTop: "1px solid",
2026
- borderColor: o.palette.state.hoverDefault,
2027
- justifyContent: "flex-end",
2028
- marginRight: "14px",
2029
- marginLeft: "14px",
2030
- gap: "20px",
2031
- alignItems: "center",
2032
- height: "48px",
2033
- minHeight: "48px",
2080
+ "& .M4LSideBar-footer": {
2034
2081
  "& .M4LSideBar-containerLogoButton": {
2035
2082
  display: "flex",
2036
2083
  gap: "14px",
2037
2084
  width: "120px"
2038
2085
  },
2039
2086
  "& .M4LSideBar-containerLogoButtonLogo": {
2040
- width: "120px",
2087
+ minWidth: "120px",
2041
2088
  height: "32px",
2042
2089
  "& .M4LSideBar-containerLogoButtonIcon": {
2043
2090
  display: "flex",
@@ -2110,7 +2157,7 @@ const p = (o) => ({
2110
2157
  overflow: "hidden",
2111
2158
  textOverflow: "ellipsis",
2112
2159
  textWrap: "nowrap",
2113
- fontWeight: "400",
2160
+ fontWeight: "700",
2114
2161
  fontSize: "14px !important"
2115
2162
  }
2116
2163
  }
@@ -2121,7 +2168,7 @@ const p = (o) => ({
2121
2168
  justifyContent: "center",
2122
2169
  flexDirection: "column",
2123
2170
  padding: "0px 0px 8px 0px",
2124
- gap: "4px",
2171
+ gap: "0",
2125
2172
  "& .M4LSideBar-navItemMainRoot": {
2126
2173
  backgroundColor: "transparent",
2127
2174
  borderRadius: "4px",
@@ -2132,8 +2179,11 @@ const p = (o) => ({
2132
2179
  },
2133
2180
  "&.M4LSideBar-itemMainActive": {
2134
2181
  borderRadius: "4px",
2182
+ background: o.palette.state.active12,
2183
+ border: "1px solid",
2184
+ borderColor: o.palette.state.active12,
2135
2185
  "& .M4LSideBar-navItemMainRoot": {
2136
- background: "transparent",
2186
+ background: o.palette.state.active12,
2137
2187
  "&:hover": {
2138
2188
  background: t(o.palette.state.active || "#fff", 0.24),
2139
2189
  cursor: "pointer"
@@ -2225,10 +2275,12 @@ const p = (o) => ({
2225
2275
  height: "32px",
2226
2276
  borderRadius: "4px",
2227
2277
  gap: "8px",
2278
+ padding: "0px",
2228
2279
  "&.M4LSideBar-subItemCollapseActive": {
2229
2280
  backgroundColor: o.palette.state.active12,
2230
2281
  gap: "8px",
2231
2282
  "& .MuiButtonBase-root": {
2283
+ padding: "0px",
2232
2284
  "& .M4LIcon-root": {
2233
2285
  "& .M4LIcon-icon": {
2234
2286
  backgroundColor: o.palette.state.focus
@@ -2238,6 +2290,7 @@ const p = (o) => ({
2238
2290
  },
2239
2291
  "& .M4LSideBar-subItemActive": {
2240
2292
  "& .MuiButtonBase-root": {
2293
+ padding: "0px",
2241
2294
  "& .M4LIcon-root": {
2242
2295
  "& .M4LIcon-icon": {
2243
2296
  backgroundColor: `${o.palette.state.focus}!important`
@@ -2252,13 +2305,14 @@ const p = (o) => ({
2252
2305
  }
2253
2306
  },
2254
2307
  "&:hover": {
2308
+ padding: "0 8px",
2255
2309
  background: o.palette.state.default
2256
2310
  }
2257
2311
  },
2258
2312
  "& .M4LSideBar-navSubItemContentRoot": {
2259
2313
  gap: "12px",
2260
2314
  margin: "0px 0px 0px 0px",
2261
- padding: "16px",
2315
+ padding: "0px",
2262
2316
  "& .M4LSideBar-navSubItemContentBullet": {
2263
2317
  minWidth: "5px",
2264
2318
  minHeight: "5px",
@@ -2372,6 +2426,9 @@ const p = (o) => ({
2372
2426
  },
2373
2427
  "&.M4LSideBar-itemMainActive": {
2374
2428
  borderRadius: "4px",
2429
+ background: o.palette.state.active12,
2430
+ border: "1px solid",
2431
+ borderColor: o.palette.state.active12,
2375
2432
  "& .M4LSideBar-navItemMainRoot": {
2376
2433
  background: o.palette.state.active12,
2377
2434
  "&:hover": {
@@ -2463,10 +2520,12 @@ const p = (o) => ({
2463
2520
  height: "32px",
2464
2521
  borderRadius: "4px",
2465
2522
  gap: "8px",
2523
+ padding: "0px",
2466
2524
  "&.M4LSideBar-subItemCollapseActive": {
2467
2525
  backgroundColor: o.palette.state.active12,
2468
2526
  gap: "8px",
2469
2527
  "& .MuiButtonBase-root": {
2528
+ padding: "0px",
2470
2529
  "& .M4LIcon-root": {
2471
2530
  "& .M4LIcon-icon": {
2472
2531
  backgroundColor: o.palette.state.focus
@@ -2476,6 +2535,7 @@ const p = (o) => ({
2476
2535
  },
2477
2536
  "& .M4LSideBar-subItemActive": {
2478
2537
  "& .MuiButtonBase-root": {
2538
+ padding: "0px",
2479
2539
  "& .M4LIcon-root": {
2480
2540
  "& .M4LIcon-icon": {
2481
2541
  backgroundColor: `${o.palette.state.focus}!important`
@@ -2490,13 +2550,14 @@ const p = (o) => ({
2490
2550
  }
2491
2551
  },
2492
2552
  "&:hover": {
2493
- background: o.palette.state.default
2553
+ background: o.palette.state.default,
2554
+ padding: "0 8px"
2494
2555
  }
2495
2556
  },
2496
2557
  "& .M4LSideBar-navSubItemContentRoot": {
2497
2558
  gap: "12px",
2498
2559
  margin: "0px 0px 0px 0px",
2499
- padding: "16px",
2560
+ padding: "0px",
2500
2561
  "& .M4LSideBar-navSubItemContentBullet": {
2501
2562
  minWidth: "5px",
2502
2563
  minHeight: "5px",
@@ -2526,25 +2587,14 @@ const p = (o) => ({
2526
2587
  backgroundColor: o.palette.text.primary
2527
2588
  }
2528
2589
  },
2529
- "& .M4LSideBar-collapseButton": {
2530
- display: "flex",
2531
- paddingTop: "12px",
2532
- borderTop: "1px solid",
2533
- borderColor: o.palette.state.hoverDefault,
2534
- justifyContent: "flex-end",
2535
- marginRight: "14px",
2536
- marginLeft: "14px",
2537
- gap: "20px",
2538
- alignItems: "center",
2539
- height: "48px",
2540
- minHeight: "48px",
2590
+ "& .M4LSideBar-footer": {
2541
2591
  "& .M4LSideBar-containerLogoButton": {
2542
2592
  display: "flex",
2543
2593
  gap: "14px",
2544
2594
  width: "120px"
2545
2595
  },
2546
2596
  "& .M4LSideBar-containerLogoButtonLogo": {
2547
- width: "120px",
2597
+ minWidth: "120px",
2548
2598
  height: "32px",
2549
2599
  "& .M4LSideBar-containerLogoButtonIcon": {
2550
2600
  display: "flex",
@@ -2561,25 +2611,14 @@ const p = (o) => ({
2561
2611
  backgroundColor: o.palette.text.primary
2562
2612
  }
2563
2613
  },
2564
- "& .M4LSideBar-collapseButton": {
2565
- display: "flex",
2566
- paddingTop: "12px",
2567
- borderTop: "1px solid",
2568
- borderColor: o.palette.state.hoverDefault,
2569
- justifyContent: "flex-end",
2570
- marginRight: "14px",
2571
- marginLeft: "14px",
2572
- gap: "20px",
2573
- alignItems: "center",
2574
- height: "48px",
2575
- minHeight: "48px",
2614
+ "& .M4LSideBar-footer": {
2576
2615
  "& .M4LSideBar-containerLogoButton": {
2577
2616
  display: "flex",
2578
2617
  gap: "14px",
2579
2618
  width: "120px"
2580
2619
  },
2581
2620
  "& .M4LSideBar-containerLogoButtonLogo": {
2582
- width: "120px",
2621
+ minWidth: "120px",
2583
2622
  height: "32px",
2584
2623
  "& .M4LSideBar-containerLogoButtonIcon": {
2585
2624
  display: "flex",
@@ -2592,7 +2631,7 @@ const p = (o) => ({
2592
2631
  }
2593
2632
  }
2594
2633
  }
2595
- }), h = (o) => ({
2634
+ }), f = (o) => ({
2596
2635
  M4LAreasAdmin: {
2597
2636
  styleOverrides: {
2598
2637
  "&.M4LAreasAdmin-root": {
@@ -3024,7 +3063,7 @@ const p = (o) => ({
3024
3063
  }
3025
3064
  }
3026
3065
  }
3027
- }), f = (o) => ({
3066
+ }), h = (o) => ({
3028
3067
  M4LAreasViewer: {
3029
3068
  styleOverrides: {
3030
3069
  "&.M4LAreasViewer-root": {
@@ -3828,7 +3867,7 @@ const p = (o) => ({
3828
3867
  }
3829
3868
  }
3830
3869
  }
3831
- }), m = (o) => ({
3870
+ }), C = (o) => ({
3832
3871
  M4LAccountPopover: {
3833
3872
  styleOverrides: {
3834
3873
  "&.M4LAccountPopover-root": {
@@ -4107,7 +4146,7 @@ const p = (o) => ({
4107
4146
  }
4108
4147
  }
4109
4148
  }
4110
- }), C = (o) => ({
4149
+ }), m = (o) => ({
4111
4150
  M4LModuleLayout: {
4112
4151
  styleOverrides: {
4113
4152
  "&.M4LModuleLayout-root": {
@@ -4124,7 +4163,7 @@ const p = (o) => ({
4124
4163
  }
4125
4164
  }
4126
4165
  }
4127
- }), I = (o) => ({
4166
+ }), k = (o) => ({
4128
4167
  M4LMasterDetailLayout: {
4129
4168
  styleOverrides: {
4130
4169
  "&.M4LMasterDetailLayout-root": {
@@ -4279,7 +4318,7 @@ const p = (o) => ({
4279
4318
  }
4280
4319
  }
4281
4320
  }
4282
- }), k = (o) => ({
4321
+ }), I = (o) => ({
4283
4322
  M4LCommonActions: {
4284
4323
  styleOverrides: {
4285
4324
  "&.M4LCommonActions-root": {
@@ -4643,7 +4682,7 @@ const p = (o) => ({
4643
4682
  }
4644
4683
  }
4645
4684
  }
4646
- }), D = (o) => ({
4685
+ }), P = (o) => ({
4647
4686
  M4LRHFormProvider: {
4648
4687
  styleOverrides: {
4649
4688
  "&.M4LRHFormProvider-root": {
@@ -4658,123 +4697,121 @@ const p = (o) => ({
4658
4697
  }
4659
4698
  }
4660
4699
  }
4661
- }), P = (o) => ({
4700
+ }), D = (o) => ({
4662
4701
  M4LPeriod: {
4663
4702
  styleOverrides: {
4664
4703
  "&.M4LPeriod-root": {
4665
- border: "solid 1.3px",
4704
+ border: "solid 1px",
4666
4705
  borderColor: o.palette.state.borderPrimary,
4667
4706
  display: "flex",
4668
4707
  width: "100%",
4669
- minHeight: "22px !important",
4670
- height: "24px !important",
4708
+ height: "auto",
4671
4709
  borderRadius: "4px",
4672
- "& .M4LPeriod-stateReadOnly": {},
4673
- "& .M4LPeriod-gap": {
4674
- backgroundColor: "transparent"
4675
- },
4676
- "& .M4LIcon-root": {
4677
- padding: "0 8px",
4678
- minHeight: "22px",
4679
- minWidth: "22px",
4680
- borderLeft: "1.3px solid",
4681
- borderColor: o.palette.state.borderPrimary
4710
+ transition: "all .2s",
4711
+ [o.breakpoints.down("md")]: {
4712
+ flexDirection: "column"
4682
4713
  },
4683
- "& .M4LPeriod-containerDateLabel": {
4714
+ "& .M4LPeriod-skeleton": {
4684
4715
  width: "100%",
4685
- height: "100% !important",
4686
- padding: "0px 0px 0px 8px",
4687
- borderRight: "1px solid",
4688
- borderColor: o.palette.state.borderPrimary
4689
- },
4690
- "& .M4LPeriod-containerDateValue": {
4691
4716
  display: "flex",
4692
- width: "100%",
4693
- padding: "0px 0px 0px 8px"
4694
- },
4695
- "&:not(.M4LPeriod-stateReadOnly).M4LPeriod-variantMonoperiod": {
4696
- width: "100%",
4697
- height: "22px",
4698
- "& .MuiAutocomplete-root": {
4717
+ [o.breakpoints.down("md")]: {
4718
+ flexDirection: "column"
4719
+ },
4720
+ "& .M4LPeriod-skeletonFieldPrimary": {
4699
4721
  width: "100%",
4700
- height: "22px",
4722
+ paddingLeft: "12px",
4723
+ borderRight: "1px solid",
4724
+ display: "flex",
4725
+ alignItems: "center",
4701
4726
  borderColor: o.palette.state.borderPrimary,
4702
- "& .MuiFormControl-root": {
4703
- height: "22px !important",
4704
- minHeight: "22px !important",
4705
- width: "100%",
4706
- borderRight: "solid 1.3px",
4707
- borderColor: o.palette.state.borderPrimary,
4708
- "& .MuiInputBase-root": {
4709
- height: "22px !important",
4710
- width: "100%",
4711
- gap: "16px",
4712
- padding: "0 0 0 8px",
4713
- background: "transparent",
4714
- "& .MuiInputBase-input": {
4715
- padding: "0",
4716
- height: "22px"
4717
- },
4718
- "& .MuiAutocomplete-endAdornment": {
4719
- position: "relative",
4720
- minHeight: "22x",
4721
- height: "22px",
4722
- "& .MuiButtonBase-root": {
4723
- padding: "0",
4724
- display: "inline",
4725
- margin: "0",
4726
- height: "22px !important",
4727
- "& .MuiSvgIcon-root": {
4728
- height: "22px",
4729
- width: "22px"
4730
- }
4731
- }
4732
- }
4733
- }
4727
+ [o.breakpoints.down("md")]: {
4728
+ borderRight: "0",
4729
+ borderBottom: "1px solid",
4730
+ borderColor: o.palette.state.borderPrimary
4734
4731
  }
4735
4732
  },
4736
- "& .MuiFormControl-root": {
4737
- height: "22px !important",
4738
- minHeight: "22px !important",
4733
+ "& .M4LPeriod-skeletonFieldSecondary": {
4739
4734
  width: "100%",
4740
- "& .MuiInputBase-root": {
4741
- height: "22px !important",
4742
- width: "100%",
4743
- gap: "16px",
4744
- padding: "0 0 0 8px",
4745
- background: "transparent",
4746
- "& .MuiInputBase-input": {
4747
- padding: "0",
4748
- height: "22px"
4749
- }
4750
- }
4735
+ paddingLeft: "12px",
4736
+ display: "flex",
4737
+ alignItems: "center"
4738
+ }
4739
+ },
4740
+ "&:hover": {
4741
+ borderColor: o.palette.state.hover
4742
+ },
4743
+ "&.M4LPeriod-isFocus": {
4744
+ borderColor: o.palette.state.active
4745
+ },
4746
+ "& .MuiAutocomplete-root": {
4747
+ width: "100%",
4748
+ borderRadius: 0,
4749
+ borderRight: "1px solid",
4750
+ borderColor: o.palette.state.borderPrimary,
4751
+ [o.breakpoints.down("md")]: {
4752
+ borderRight: 0,
4753
+ borderBottom: "1px solid",
4754
+ borderColor: o.palette.state.borderPrimary
4755
+ },
4756
+ "& .MuiInput-root": {
4757
+ backgroundColor: "transparent"
4758
+ },
4759
+ "& .MuiInput-input": {
4760
+ padding: "0"
4761
+ }
4762
+ },
4763
+ "& .MuiTextField-root": {
4764
+ width: "100%",
4765
+ "& .MuiInputBase-root.MuiInput-root": {
4766
+ padding: "0 0 0 12px",
4767
+ height: "100%",
4768
+ backgroundColor: "transparent"
4769
+ }
4770
+ },
4771
+ "&.M4LPeriod-sizeSmall": {
4772
+ "& .MuiAutocomplete-hasPopupIcon": {
4773
+ height: "24px"
4751
4774
  },
4752
4775
  "& .MuiTextField-root": {
4776
+ height: "24px"
4777
+ },
4778
+ "& .M4LPeriod-skeletonFieldPrimary": {
4779
+ height: "24px"
4780
+ },
4781
+ "& .M4LPeriod-skeletonFieldSecondary": {
4753
4782
  width: "100%",
4754
- minHeight: "22px",
4755
- height: "fit-content",
4756
- "& .MuiInputBase-root": {
4757
- minHeight: "22px",
4758
- padding: "0 0 0 4px",
4759
- background: "transparent"
4760
- },
4761
- "& .MuiInputBase-root.Mui-focused": {
4762
- paddingLeft: "4px",
4763
- borderColor: o.palette.state.active
4764
- },
4765
- "& .MuiInputBase-root:hover": {
4766
- paddingLeft: "4px",
4767
- background: o.palette.state.active12,
4768
- padding: "0px 0px 0px 4px"
4769
- }
4783
+ height: "24px",
4784
+ paddingLeft: "12px"
4785
+ }
4786
+ },
4787
+ "&.M4LPeriod-sizeMedium": {
4788
+ "& .MuiAutocomplete-hasPopupIcon": {
4789
+ height: "36px"
4770
4790
  },
4771
- "&:hover": {
4772
- borderColor: o.palette.state.hover,
4773
- "& .MuiAutocomplete-root": {
4774
- borderColor: o.palette.state.active12
4775
- }
4791
+ "& .MuiTextField-root": {
4792
+ height: "36px"
4793
+ },
4794
+ "& .M4LPeriod-skeletonFieldPrimary": {
4795
+ height: "36px"
4796
+ },
4797
+ "& .M4LPeriod-skeletonFieldSecondary": {
4798
+ width: "100%",
4799
+ height: "36px",
4800
+ paddingLeft: "12px"
4776
4801
  }
4777
4802
  },
4803
+ "& .M4LPeriod-containerDateLabel": {
4804
+ width: "100%",
4805
+ height: "100% !important",
4806
+ padding: "0px 0px 0px 8px",
4807
+ borderRight: "1px solid",
4808
+ borderColor: o.palette.state.borderPrimary
4809
+ },
4810
+ "& .M4LPeriod-containerDateValue": {
4811
+ display: "flex",
4812
+ width: "100%",
4813
+ padding: "0px 0px 0px 8px"
4814
+ },
4778
4815
  "&.M4LPeriod-stateError": {
4779
4816
  borderColor: o.palette.state.error.normal,
4780
4817
  boxShadow: o.customShadows.z2,
@@ -4787,7 +4824,6 @@ const p = (o) => ({
4787
4824
  width: "100%",
4788
4825
  background: "transparent",
4789
4826
  "& .MuiInputBase-root:hover": {
4790
- paddingLeft: "4px",
4791
4827
  background: o.palette.error.opacity,
4792
4828
  height: "100%"
4793
4829
  }
@@ -4803,8 +4839,7 @@ const p = (o) => ({
4803
4839
  "& .MuiTextField-root:hover": {
4804
4840
  background: "transparent",
4805
4841
  "& .MuiInputBase-root:hover": {
4806
- background: o.palette.warning.opacity,
4807
- paddingLeft: "4px"
4842
+ background: o.palette.warning.opacity
4808
4843
  }
4809
4844
  }
4810
4845
  }
@@ -4819,8 +4854,7 @@ const p = (o) => ({
4819
4854
  "& .MuiTextField-root:hover": {
4820
4855
  background: "transparent",
4821
4856
  "& .MuiInputBase-root:hover": {
4822
- background: o.palette.success.opacity,
4823
- paddingLeft: "4px"
4857
+ background: o.palette.success.opacity
4824
4858
  }
4825
4859
  }
4826
4860
  }
@@ -4835,61 +4869,10 @@ const p = (o) => ({
4835
4869
  "& .MuiTextField-root:hover": {
4836
4870
  background: "transparent",
4837
4871
  "& .MuiInputBase-root:hover": {
4838
- paddingLeft: "4px",
4839
4872
  background: o.palette.info.opacity
4840
4873
  }
4841
4874
  }
4842
4875
  }
4843
- },
4844
- [o.breakpoints.down("sm")]: {
4845
- minHeight: "40px !important",
4846
- height: "auto !important",
4847
- "&:not(.M4LPeriod-stateReadOnly).M4LPeriod-variantMonoperiod": {
4848
- height: "100% !important",
4849
- minHeight: "38px !important",
4850
- "& .MuiAutocomplete-root": {
4851
- height: "100% !important",
4852
- minHeight: "38px !important",
4853
- "& .MuiFormControl-root": {
4854
- height: "100% !important",
4855
- minHeight: "38px !important",
4856
- "& .MuiInputBase-root": {
4857
- height: "100% !important",
4858
- minHeight: "38px !important",
4859
- "& .MuiInputBase-input": {
4860
- minHeight: "38px !important",
4861
- height: "100% !important"
4862
- },
4863
- "& .MuiAutocomplete-endAdornment": {
4864
- minHeight: "38px !important",
4865
- height: "100% !important",
4866
- "& .MuiButtonBase-root": {
4867
- minHeight: "36px !important",
4868
- minWidth: "36px !important",
4869
- height: "100% !important",
4870
- "& .MuiSvgIcon-root": {
4871
- minHeight: "24px !important",
4872
- minWidth: "24px !important",
4873
- height: "100% !important"
4874
- }
4875
- }
4876
- }
4877
- }
4878
- }
4879
- },
4880
- "& .MuiFormControl-root": {
4881
- height: "100% !important",
4882
- minHeight: "38px !important",
4883
- "& .MuiInputBase-root": {
4884
- height: "100% !important",
4885
- minHeight: "38px !important",
4886
- "& .MuiInputBase-input": {
4887
- height: "100% !important",
4888
- minHeight: "38px !important"
4889
- }
4890
- }
4891
- }
4892
- }
4893
4876
  }
4894
4877
  }
4895
4878
  }
@@ -5091,7 +5074,7 @@ const p = (o) => ({
5091
5074
  }
5092
5075
  }
5093
5076
  }
5094
- }), O = (o) => ({
5077
+ }), z = (o) => ({
5095
5078
  M4LBadge: {
5096
5079
  styleOverrides: {
5097
5080
  "&.M4LBadge-root": {
@@ -5122,7 +5105,7 @@ const p = (o) => ({
5122
5105
  }
5123
5106
  }
5124
5107
  }
5125
- }), z = (o) => ({
5108
+ }), V = (o) => ({
5126
5109
  M4LDataGrid: {
5127
5110
  styleOverrides: {
5128
5111
  "&.M4LDataGrid-root": {
@@ -5279,6 +5262,19 @@ const p = (o) => ({
5279
5262
  alignItems: "center",
5280
5263
  textOverflow: "inline",
5281
5264
  gridTemplateColumns: "auto",
5265
+ "& .rdg-text-editor": {
5266
+ textAlign: "inherit",
5267
+ color: o.palette.text.secondary,
5268
+ padding: "0 8px",
5269
+ lineHeight: "var(--rdg-row-height)!important",
5270
+ border: "0",
5271
+ borderTop: "0.5px solid",
5272
+ borderBottom: "1px solid",
5273
+ borderLeft: "0.5px solid",
5274
+ borderRight: "0.5px solid",
5275
+ borderColor: `${o.palette.state.borderDisable}!important`,
5276
+ ...o.typography.body
5277
+ },
5282
5278
  "&.rdg-cell-frozen": {
5283
5279
  display: "flex",
5284
5280
  justifyContent: "center",
@@ -5438,7 +5434,7 @@ const p = (o) => ({
5438
5434
  }
5439
5435
  }
5440
5436
  }
5441
- }), V = (o) => ({
5437
+ }), O = (o) => ({
5442
5438
  M4LPager: {
5443
5439
  styleOverrides: {
5444
5440
  "&.M4LPager-root": {
@@ -5531,23 +5527,38 @@ const p = (o) => ({
5531
5527
  styleOverrides: {
5532
5528
  "&.M4LCheckBox-root": {
5533
5529
  display: "flex",
5534
- flexDirection: "column",
5535
- gap: o.spacing(0.5),
5530
+ gap: "8px",
5531
+ width: "100%",
5532
+ "& .M4LCheckBox-skeleton": {
5533
+ display: "flex",
5534
+ justifyContent: "center",
5535
+ alignItems: "center",
5536
+ width: "36px",
5537
+ height: "36px"
5538
+ },
5536
5539
  "& .MuiTypography-root": {
5537
5540
  color: o.palette.text.primary,
5538
5541
  ...o.typography.body
5539
5542
  },
5540
- "& .M4LCheckBox-small .MuiButtonBase-root": {
5541
- width: "20px",
5542
- height: "20px"
5543
+ "&.M4LCheckBox-small ": {
5544
+ "& .MuiButtonBase-root": {
5545
+ width: "24px",
5546
+ height: "24px"
5547
+ }
5543
5548
  },
5544
5549
  "& .MuiCheckbox-root .MuiSvgIcon-fontSizeSmall": {
5545
5550
  width: "16px",
5546
5551
  height: "16px"
5547
5552
  },
5548
- "& .M4LCheckBox-medium .MuiButtonBase-root": {
5549
- width: "24px",
5550
- height: "24px"
5553
+ "&.M4LCheckBox-medium": {
5554
+ "& .MuiButtonBase-root": {
5555
+ width: "24px",
5556
+ height: "24px"
5557
+ },
5558
+ "& .M4LCheckBox-skeleton": {
5559
+ width: "24px",
5560
+ height: "24px"
5561
+ }
5551
5562
  },
5552
5563
  "& .MuiCheckbox-root .MuiSvgIcon-fontSizeMedium": {
5553
5564
  width: "20px",
@@ -6019,7 +6030,13 @@ const p = (o) => ({
6019
6030
  display: "flex",
6020
6031
  flexDirection: "column",
6021
6032
  alignItems: "center",
6022
- overflow: "auto"
6033
+ overflow: "auto",
6034
+ "& .M4LMFLoader-containerLinearProgress": {
6035
+ width: "100%",
6036
+ height: "100%",
6037
+ display: "flex",
6038
+ alignItems: "center"
6039
+ }
6023
6040
  }
6024
6041
  }
6025
6042
  }
@@ -6421,9 +6438,11 @@ const p = (o) => ({
6421
6438
  alignItems: "center",
6422
6439
  padding: "8px 80px",
6423
6440
  minHeight: "80px",
6424
- backgroundColor: o.palette.background.neutral,
6441
+ backgroundColor: o.palette.background.default,
6425
6442
  position: "fixed",
6426
6443
  zIndex: "100",
6444
+ borderBottom: "1px solid rgba(9, 30, 66, 0.10)",
6445
+ boxShadow: "rgba(36, 59, 70, 0.12)",
6427
6446
  [o.breakpoints.down("md")]: {
6428
6447
  padding: "8px 24px"
6429
6448
  }
@@ -6459,15 +6478,38 @@ const p = (o) => ({
6459
6478
  }
6460
6479
  }
6461
6480
  }
6481
+ }), io = (o) => ({
6482
+ M4LFieldLabel: {
6483
+ styleOverrides: {
6484
+ "&.M4LFieldLabel-root": {
6485
+ display: "flex",
6486
+ alignItems: "center",
6487
+ flexWrap: "wrap",
6488
+ width: "100%",
6489
+ "& .M4LFieldLabel-mandatory": {
6490
+ marginLeft: "2px",
6491
+ "& .MuiTypography-root": {
6492
+ color: o.palette.error.main
6493
+ }
6494
+ },
6495
+ "& .M4LFieldLabel-tooltip": {
6496
+ marginLeft: "6px",
6497
+ "& .M4LIcon-root .M4LIcon-icon": {
6498
+ backgroundColor: o.palette.info.main
6499
+ }
6500
+ }
6501
+ }
6502
+ }
6503
+ }
6462
6504
  });
6463
6505
  export {
6464
6506
  T as A,
6465
6507
  A as B,
6466
- P as C,
6508
+ D as C,
6467
6509
  H as D,
6468
6510
  F as E,
6469
6511
  W as F,
6470
- V as G,
6512
+ O as G,
6471
6513
  j as H,
6472
6514
  G as I,
6473
6515
  N as J,
@@ -6487,30 +6529,31 @@ export {
6487
6529
  eo as X,
6488
6530
  ro as Y,
6489
6531
  ao as Z,
6532
+ io as _,
6490
6533
  p as a,
6491
- D as b,
6534
+ P as b,
6492
6535
  d as c,
6493
6536
  l as d,
6494
6537
  s as e,
6495
6538
  c as f,
6496
6539
  L as g,
6497
6540
  g as h,
6498
- O as i,
6541
+ z as i,
6499
6542
  x as j,
6500
- z as k,
6543
+ V as k,
6501
6544
  u as l,
6502
6545
  b as m,
6503
6546
  M as n,
6504
6547
  y as o,
6505
6548
  w as p,
6506
- h as q,
6507
- f as r,
6549
+ f as q,
6550
+ h as r,
6508
6551
  v as s,
6509
- m as t,
6510
- C as u,
6511
- I as v,
6552
+ C as t,
6553
+ m as u,
6554
+ k as v,
6512
6555
  B as w,
6513
- k as x,
6556
+ I as x,
6514
6557
  S as y,
6515
6558
  R as z
6516
6559
  };