@m4l/styles 0.0.41 → 0.0.42

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 (22) 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/M4LPeriod.d.ts +366 -342
  9. package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +282 -136
  10. package/theme/overrides/M4LExtendedComponents/{index.8f5f04ca.js → index.ad4ae589.js} +302 -273
  11. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +2 -14
  12. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +1 -47
  13. package/theme/overrides/M4LRHFComponents/M4LRHFColorPicker.d.ts +28 -14
  14. package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +28 -151
  15. package/theme/overrides/M4LRHFComponents/{index.427e0f0e.js → index.a9f361b8.js} +82 -61
  16. package/theme/overrides/{index.a3e99f67.js → index.dc9d8819.js} +26 -25
  17. package/theme/{palette.1b577d8c.js → palette.0590e8a6.js} +16 -14
  18. package/theme/palette.d.ts +2 -0
  19. package/theme/{shadows.479d005a.js → shadows.86540b18.js} +1 -1
  20. package/types/augmentations.d.ts +1 -1
  21. package/utils/{getColorPresets.479f9922.js → getColorPresets.2a91ffaf.js} +1 -1
  22. 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: {
@@ -994,13 +994,107 @@ const p = (o) => ({
994
994
  }), y = (o) => ({
995
995
  M4LSideBar: {
996
996
  styleOverrides: {
997
+ "&.M4LSideBar-root": {
998
+ "&.M4LSideBar-collapsed": {
999
+ "& .M4LSideBar-wrapperSideBar": {
1000
+ height: "100%",
1001
+ transition: "all 0.3s"
1002
+ }
1003
+ },
1004
+ "& .M4LSideBar-wrapperSideBar": {
1005
+ "& .M4LSideBar-areaExpandMenu": {
1006
+ position: "absolute",
1007
+ zIndex: "1",
1008
+ height: "100%",
1009
+ transition: "all 0.3s",
1010
+ "& .M4LSideBar-contentDesktop": {
1011
+ display: "flex",
1012
+ width: "100%",
1013
+ height: "100%",
1014
+ boxShadow: o.customShadows.z2,
1015
+ "& .M4LSideBar-containerContentGroupsFooter": {
1016
+ flexGrow: "1",
1017
+ display: "flex",
1018
+ flexDirection: "column",
1019
+ height: "100%",
1020
+ position: "relative",
1021
+ borderRight: "1px solid",
1022
+ borderColor: o.palette.state.borderPrimary,
1023
+ backgroundColor: o.palette.background.default,
1024
+ "& .M4LSideBar-contentGroups": {
1025
+ padding: "32px 8px",
1026
+ "& .M4LSideBar-wrapperGroup": {
1027
+ overflow: "hidden",
1028
+ "& .M4LSideBar-navItemRootContent": {
1029
+ overflow: "hidden,"
1030
+ }
1031
+ }
1032
+ },
1033
+ "& .M4LSideBar-footer": {
1034
+ display: "flex",
1035
+ padding: "10px 5px",
1036
+ borderTop: "1px solid",
1037
+ borderColor: o.palette.state.borderDisable,
1038
+ justifyContent: "center",
1039
+ gap: "24px",
1040
+ alignItems: "center",
1041
+ height: "48px",
1042
+ minHeight: "48px",
1043
+ flexDirection: "row-reverse",
1044
+ overflow: "hidden",
1045
+ "& .M4LSideBar-wrapperLogoFooter": {
1046
+ width: "100%",
1047
+ height: "100%",
1048
+ "& .M4LSideBar-containerLogoButtonLogo": {
1049
+ display: "flex",
1050
+ justifyContent: "center",
1051
+ alignItems: "center"
1052
+ }
1053
+ }
1054
+ }
1055
+ },
1056
+ "& .M4LSideBar-collapseButtonSecondary": {
1057
+ height: "100%",
1058
+ cursor: "pointer"
1059
+ }
1060
+ }
1061
+ }
1062
+ }
1063
+ },
997
1064
  "&.M4LSideBar-root.M4LSideBar-variantDefault": {
998
1065
  height: "100%",
999
- maxWidth: "220px",
1000
1066
  background: o.palette.background.default,
1001
- paddingTop: "24px",
1002
- borderRight: "1.5px solid",
1003
- borderColor: o.palette.state.borderPrimary,
1067
+ position: "relative",
1068
+ "& .M4LIconButton-sizeSmall": {
1069
+ width: "20px",
1070
+ height: "20px",
1071
+ minWidth: "20px",
1072
+ minHeight: "20px",
1073
+ "& .MuiButtonBase-root": {
1074
+ width: "20px",
1075
+ height: "20px"
1076
+ }
1077
+ },
1078
+ "&:hover": {
1079
+ "& .M4LSideBar-collapseButton": {
1080
+ opacity: "1!important",
1081
+ transition: "all 0.3s"
1082
+ }
1083
+ },
1084
+ "& .M4LSideBar-collapseButton": {
1085
+ position: "absolute",
1086
+ top: "16px",
1087
+ right: "-8px",
1088
+ borderRadius: "4px",
1089
+ backgroundColor: `${o.palette.background.default}!important`,
1090
+ transition: "all 0.3s",
1091
+ boxShadow: o.customShadows.z1,
1092
+ zIndex: "1"
1093
+ },
1094
+ "&:not(.M4LSideBar-collapsed) .M4LSideBar-collapseButton": {
1095
+ opacity: 0,
1096
+ transition: "all 0.3s"
1097
+ },
1004
1098
  "& .M4LSideBar-subItemActive": {
1005
1099
  "& .M4LIcon-icon": {
1006
1100
  backgroundColor: `${o.palette.state.focus}!important`
@@ -1008,8 +1102,6 @@ const p = (o) => ({
1008
1102
  },
1009
1103
  "&.M4LSideBar-collapsed": {
1010
1104
  "& .M4LSideBar-wrapperSideBar": {
1011
- width: "52px",
1012
- transition: "width 0.1s ease",
1013
1105
  "& .M4LSideBar-contentDesktop": {
1014
1106
  "& .M4LSideBar-containerSideBarLogo": {
1015
1107
  marginTop: "0px",
@@ -1026,15 +1118,12 @@ const p = (o) => ({
1026
1118
  }
1027
1119
  }
1028
1120
  },
1029
- [o.breakpoints.down("sm")]: {
1121
+ [o.breakpoints.down("md")]: {
1030
1122
  width: "0px",
1031
1123
  height: "0px",
1032
1124
  padding: "0px"
1033
1125
  },
1034
1126
  "& .M4LSideBar-wrapperSideBar": {
1035
- height: "100%",
1036
- width: "219px",
1037
- transition: "width 0.1s ease",
1038
1127
  "& .M4LSideBar-containerSideBarLogo": {
1039
1128
  display: "flex",
1040
1129
  justifyContent: "flex-start",
@@ -1081,7 +1170,6 @@ const p = (o) => ({
1081
1170
  },
1082
1171
  "& .M4LSideBar-wrapperGroup": {
1083
1172
  height: "100%",
1084
- padding: "0 8px",
1085
1173
  "& .M4LScrollBar-root": {
1086
1174
  overflow: "hidden",
1087
1175
  height: "100%",
@@ -1090,6 +1178,8 @@ const p = (o) => ({
1090
1178
  "& .M4LSideBar-wrapperGroupTitle": {
1091
1179
  height: "28px",
1092
1180
  padding: "0px 0px 0px 12px",
1181
+ display: "flex",
1182
+ alignItems: "center",
1093
1183
  "& .M4LTypography-root": {
1094
1184
  display: "flex",
1095
1185
  width: "100%",
@@ -1120,6 +1210,7 @@ const p = (o) => ({
1120
1210
  }
1121
1211
  },
1122
1212
  "&.M4LSideBar-itemMainActive": {
1213
+ background: o.palette.state.active12,
1123
1214
  borderRadius: "4px",
1124
1215
  height: "auto",
1125
1216
  "& .M4LSideBar-navItemMainRoot": {
@@ -1166,8 +1257,7 @@ const p = (o) => ({
1166
1257
  },
1167
1258
  "& .M4LSideBar-navItemRootContent": {
1168
1259
  display: "flex",
1169
- padding: "4px 8px 4px 8px",
1170
- justifyContent: "center",
1260
+ padding: "12px 8px",
1171
1261
  borderRadius: "4px 0px 0px 4px",
1172
1262
  position: "relative",
1173
1263
  "& .M4LSideBar-navItemRootContentIconTypo": {
@@ -1175,7 +1265,7 @@ const p = (o) => ({
1175
1265
  gap: "8px",
1176
1266
  width: "100%",
1177
1267
  "& .M4LIcon-icon": {
1178
- backgroundColor: o.palette.text.primary,
1268
+ backgroundColor: o.palette.text.secondary,
1179
1269
  width: "18px",
1180
1270
  height: "18px"
1181
1271
  },
@@ -1286,30 +1376,15 @@ const p = (o) => ({
1286
1376
  backgroundColor: o.palette.text.primary
1287
1377
  }
1288
1378
  },
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",
1379
+ "& .M4LSideBar-footer": {
1301
1380
  "& .M4LSideBar-containerLogoButton": {
1302
1381
  display: "flex",
1303
1382
  gap: "14px",
1304
1383
  width: "120px"
1305
1384
  },
1306
1385
  "& .M4LSideBar-containerLogoButtonLogo": {
1307
- width: "120px",
1308
- height: "32px",
1309
- "& .M4LSideBar-containerLogoButtonIcon": {
1310
- display: "flex",
1311
- alignItems: "center"
1312
- }
1386
+ minWidth: "120px",
1387
+ height: "32px"
1313
1388
  }
1314
1389
  }
1315
1390
  }
@@ -1339,14 +1414,12 @@ const p = (o) => ({
1339
1414
  }
1340
1415
  }
1341
1416
  },
1342
- [o.breakpoints.down("sm")]: {
1417
+ [o.breakpoints.down("md")]: {
1343
1418
  width: "0px",
1344
1419
  height: "0px",
1345
1420
  padding: "0px"
1346
1421
  },
1347
1422
  "& .M4LSideBar-wrapperSideBar": {
1348
- height: "100%",
1349
- width: "250px",
1350
1423
  "& .M4LSideBar-containerSideBarLogo": {
1351
1424
  display: "flex",
1352
1425
  justifyContent: "flex-start",
@@ -1423,6 +1496,7 @@ const p = (o) => ({
1423
1496
  }
1424
1497
  },
1425
1498
  "&.M4LSideBar-itemMainActive": {
1499
+ background: o.palette.state.active12,
1426
1500
  borderRadius: "4px",
1427
1501
  "& .M4LSideBar-navItemMainRoot": {
1428
1502
  background: o.palette.state.active12,
@@ -1578,26 +1652,14 @@ const p = (o) => ({
1578
1652
  backgroundColor: o.palette.text.primary
1579
1653
  }
1580
1654
  },
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",
1655
+ "& .M4LSideBar-footer": {
1594
1656
  "& .M4LSideBar-containerLogoButton": {
1595
1657
  display: "flex",
1596
1658
  gap: "14px",
1597
1659
  width: "120px"
1598
1660
  },
1599
1661
  "& .M4LSideBar-containerLogoButtonLogo": {
1600
- width: "120px",
1662
+ minWidth: "120px",
1601
1663
  height: "32px",
1602
1664
  "& .M4LSideBar-containerLogoButtonIcon": {
1603
1665
  display: "flex",
@@ -1771,7 +1833,7 @@ const p = (o) => ({
1771
1833
  height: "100%",
1772
1834
  display: "flex",
1773
1835
  flexDirection: "column",
1774
- paddingTop: "24px",
1836
+ padding: "8px",
1775
1837
  "& .M4LSideBar-containerSideBarLogo": {
1776
1838
  display: "flex",
1777
1839
  justifyContent: "flex-start",
@@ -1821,7 +1883,6 @@ const p = (o) => ({
1821
1883
  },
1822
1884
  "& .M4LSideBar-wrapperGroup": {
1823
1885
  height: "100%",
1824
- padding: "0px 8px",
1825
1886
  "& .M4LSideBar-wrapperGroupTitle": {
1826
1887
  height: "28px",
1827
1888
  padding: "0px 0px 0px 12px",
@@ -1833,7 +1894,7 @@ const p = (o) => ({
1833
1894
  overflow: "hidden",
1834
1895
  textOverflow: "ellipsis",
1835
1896
  textWrap: "nowrap",
1836
- ...o.typography.bodyDens,
1897
+ ...o.typography.paragraphDens,
1837
1898
  textTransform: "capitalize"
1838
1899
  }
1839
1900
  }
@@ -1856,6 +1917,7 @@ const p = (o) => ({
1856
1917
  },
1857
1918
  "&.M4LSideBar-itemMainActive": {
1858
1919
  borderRadius: "4px",
1920
+ background: o.palette.state.active12,
1859
1921
  "& .M4LSideBar-navItemMainRoot": {
1860
1922
  background: o.palette.state.active12,
1861
1923
  "&:hover": {
@@ -2019,25 +2081,14 @@ const p = (o) => ({
2019
2081
  backgroundColor: o.palette.text.primary
2020
2082
  }
2021
2083
  },
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",
2084
+ "& .M4LSideBar-footer": {
2034
2085
  "& .M4LSideBar-containerLogoButton": {
2035
2086
  display: "flex",
2036
2087
  gap: "14px",
2037
2088
  width: "120px"
2038
2089
  },
2039
2090
  "& .M4LSideBar-containerLogoButtonLogo": {
2040
- width: "120px",
2091
+ minWidth: "120px",
2041
2092
  height: "32px",
2042
2093
  "& .M4LSideBar-containerLogoButtonIcon": {
2043
2094
  display: "flex",
@@ -2132,8 +2183,9 @@ const p = (o) => ({
2132
2183
  },
2133
2184
  "&.M4LSideBar-itemMainActive": {
2134
2185
  borderRadius: "4px",
2186
+ background: o.palette.state.active12,
2135
2187
  "& .M4LSideBar-navItemMainRoot": {
2136
- background: "transparent",
2188
+ background: o.palette.state.active12,
2137
2189
  "&:hover": {
2138
2190
  background: t(o.palette.state.active || "#fff", 0.24),
2139
2191
  cursor: "pointer"
@@ -2372,6 +2424,7 @@ const p = (o) => ({
2372
2424
  },
2373
2425
  "&.M4LSideBar-itemMainActive": {
2374
2426
  borderRadius: "4px",
2427
+ background: o.palette.state.active12,
2375
2428
  "& .M4LSideBar-navItemMainRoot": {
2376
2429
  background: o.palette.state.active12,
2377
2430
  "&:hover": {
@@ -2526,25 +2579,14 @@ const p = (o) => ({
2526
2579
  backgroundColor: o.palette.text.primary
2527
2580
  }
2528
2581
  },
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",
2582
+ "& .M4LSideBar-footer": {
2541
2583
  "& .M4LSideBar-containerLogoButton": {
2542
2584
  display: "flex",
2543
2585
  gap: "14px",
2544
2586
  width: "120px"
2545
2587
  },
2546
2588
  "& .M4LSideBar-containerLogoButtonLogo": {
2547
- width: "120px",
2589
+ minWidth: "120px",
2548
2590
  height: "32px",
2549
2591
  "& .M4LSideBar-containerLogoButtonIcon": {
2550
2592
  display: "flex",
@@ -2561,25 +2603,14 @@ const p = (o) => ({
2561
2603
  backgroundColor: o.palette.text.primary
2562
2604
  }
2563
2605
  },
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",
2606
+ "& .M4LSideBar-footer": {
2576
2607
  "& .M4LSideBar-containerLogoButton": {
2577
2608
  display: "flex",
2578
2609
  gap: "14px",
2579
2610
  width: "120px"
2580
2611
  },
2581
2612
  "& .M4LSideBar-containerLogoButtonLogo": {
2582
- width: "120px",
2613
+ minWidth: "120px",
2583
2614
  height: "32px",
2584
2615
  "& .M4LSideBar-containerLogoButtonIcon": {
2585
2616
  display: "flex",
@@ -2592,7 +2623,7 @@ const p = (o) => ({
2592
2623
  }
2593
2624
  }
2594
2625
  }
2595
- }), h = (o) => ({
2626
+ }), f = (o) => ({
2596
2627
  M4LAreasAdmin: {
2597
2628
  styleOverrides: {
2598
2629
  "&.M4LAreasAdmin-root": {
@@ -3024,7 +3055,7 @@ const p = (o) => ({
3024
3055
  }
3025
3056
  }
3026
3057
  }
3027
- }), f = (o) => ({
3058
+ }), h = (o) => ({
3028
3059
  M4LAreasViewer: {
3029
3060
  styleOverrides: {
3030
3061
  "&.M4LAreasViewer-root": {
@@ -4124,7 +4155,7 @@ const p = (o) => ({
4124
4155
  }
4125
4156
  }
4126
4157
  }
4127
- }), I = (o) => ({
4158
+ }), k = (o) => ({
4128
4159
  M4LMasterDetailLayout: {
4129
4160
  styleOverrides: {
4130
4161
  "&.M4LMasterDetailLayout-root": {
@@ -4157,7 +4188,7 @@ const p = (o) => ({
4157
4188
  }
4158
4189
  }
4159
4190
  }
4160
- }), B = (o) => ({
4191
+ }), I = (o) => ({
4161
4192
  M4LSplitLayout: {
4162
4193
  styleOverrides: {
4163
4194
  "&.M4LSplitLayout-root": {
@@ -4279,7 +4310,7 @@ const p = (o) => ({
4279
4310
  }
4280
4311
  }
4281
4312
  }
4282
- }), k = (o) => ({
4313
+ }), B = (o) => ({
4283
4314
  M4LCommonActions: {
4284
4315
  styleOverrides: {
4285
4316
  "&.M4LCommonActions-root": {
@@ -4643,7 +4674,7 @@ const p = (o) => ({
4643
4674
  }
4644
4675
  }
4645
4676
  }
4646
- }), D = (o) => ({
4677
+ }), P = (o) => ({
4647
4678
  M4LRHFormProvider: {
4648
4679
  styleOverrides: {
4649
4680
  "&.M4LRHFormProvider-root": {
@@ -4658,123 +4689,121 @@ const p = (o) => ({
4658
4689
  }
4659
4690
  }
4660
4691
  }
4661
- }), P = (o) => ({
4692
+ }), D = (o) => ({
4662
4693
  M4LPeriod: {
4663
4694
  styleOverrides: {
4664
4695
  "&.M4LPeriod-root": {
4665
- border: "solid 1.3px",
4696
+ border: "solid 1px",
4666
4697
  borderColor: o.palette.state.borderPrimary,
4667
4698
  display: "flex",
4668
4699
  width: "100%",
4669
- minHeight: "22px !important",
4670
- height: "24px !important",
4700
+ height: "auto",
4671
4701
  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
4702
+ transition: "all .2s",
4703
+ [o.breakpoints.down("md")]: {
4704
+ flexDirection: "column"
4682
4705
  },
4683
- "& .M4LPeriod-containerDateLabel": {
4706
+ "& .M4LPeriod-skeleton": {
4684
4707
  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
4708
  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": {
4709
+ [o.breakpoints.down("md")]: {
4710
+ flexDirection: "column"
4711
+ },
4712
+ "& .M4LPeriod-skeletonFieldPrimary": {
4699
4713
  width: "100%",
4700
- height: "22px",
4714
+ paddingLeft: "12px",
4715
+ borderRight: "1px solid",
4716
+ display: "flex",
4717
+ alignItems: "center",
4701
4718
  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
- }
4719
+ [o.breakpoints.down("md")]: {
4720
+ borderRight: "0",
4721
+ borderBottom: "1px solid",
4722
+ borderColor: o.palette.state.borderPrimary
4734
4723
  }
4735
4724
  },
4736
- "& .MuiFormControl-root": {
4737
- height: "22px !important",
4738
- minHeight: "22px !important",
4725
+ "& .M4LPeriod-skeletonFieldSecondary": {
4739
4726
  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
- }
4727
+ paddingLeft: "12px",
4728
+ display: "flex",
4729
+ alignItems: "center"
4730
+ }
4731
+ },
4732
+ "&:hover": {
4733
+ borderColor: o.palette.state.hover
4734
+ },
4735
+ "&.M4LPeriod-isFocus": {
4736
+ borderColor: o.palette.state.active
4737
+ },
4738
+ "& .MuiAutocomplete-root": {
4739
+ width: "100%",
4740
+ borderRadius: 0,
4741
+ borderRight: "1px solid",
4742
+ borderColor: o.palette.state.borderPrimary,
4743
+ [o.breakpoints.down("md")]: {
4744
+ borderRight: 0,
4745
+ borderBottom: "1px solid",
4746
+ borderColor: o.palette.state.borderPrimary
4747
+ },
4748
+ "& .MuiInput-root": {
4749
+ backgroundColor: "transparent"
4750
+ },
4751
+ "& .MuiInput-input": {
4752
+ padding: "0"
4753
+ }
4754
+ },
4755
+ "& .MuiTextField-root": {
4756
+ width: "100%",
4757
+ "& .MuiInputBase-root.MuiInput-root": {
4758
+ padding: "0 0 0 12px",
4759
+ height: "100%",
4760
+ backgroundColor: "transparent"
4761
+ }
4762
+ },
4763
+ "&.M4LPeriod-sizeSmall": {
4764
+ "& .MuiAutocomplete-hasPopupIcon": {
4765
+ height: "24px"
4751
4766
  },
4752
4767
  "& .MuiTextField-root": {
4768
+ height: "24px"
4769
+ },
4770
+ "& .M4LPeriod-skeletonFieldPrimary": {
4771
+ height: "24px"
4772
+ },
4773
+ "& .M4LPeriod-skeletonFieldSecondary": {
4753
4774
  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
- }
4775
+ height: "24px",
4776
+ paddingLeft: "12px"
4777
+ }
4778
+ },
4779
+ "&.M4LPeriod-sizeMedium": {
4780
+ "& .MuiAutocomplete-hasPopupIcon": {
4781
+ height: "36px"
4770
4782
  },
4771
- "&:hover": {
4772
- borderColor: o.palette.state.hover,
4773
- "& .MuiAutocomplete-root": {
4774
- borderColor: o.palette.state.active12
4775
- }
4783
+ "& .MuiTextField-root": {
4784
+ height: "36px"
4785
+ },
4786
+ "& .M4LPeriod-skeletonFieldPrimary": {
4787
+ height: "36px"
4788
+ },
4789
+ "& .M4LPeriod-skeletonFieldSecondary": {
4790
+ width: "100%",
4791
+ height: "36px",
4792
+ paddingLeft: "12px"
4776
4793
  }
4777
4794
  },
4795
+ "& .M4LPeriod-containerDateLabel": {
4796
+ width: "100%",
4797
+ height: "100% !important",
4798
+ padding: "0px 0px 0px 8px",
4799
+ borderRight: "1px solid",
4800
+ borderColor: o.palette.state.borderPrimary
4801
+ },
4802
+ "& .M4LPeriod-containerDateValue": {
4803
+ display: "flex",
4804
+ width: "100%",
4805
+ padding: "0px 0px 0px 8px"
4806
+ },
4778
4807
  "&.M4LPeriod-stateError": {
4779
4808
  borderColor: o.palette.state.error.normal,
4780
4809
  boxShadow: o.customShadows.z2,
@@ -4787,7 +4816,6 @@ const p = (o) => ({
4787
4816
  width: "100%",
4788
4817
  background: "transparent",
4789
4818
  "& .MuiInputBase-root:hover": {
4790
- paddingLeft: "4px",
4791
4819
  background: o.palette.error.opacity,
4792
4820
  height: "100%"
4793
4821
  }
@@ -4803,8 +4831,7 @@ const p = (o) => ({
4803
4831
  "& .MuiTextField-root:hover": {
4804
4832
  background: "transparent",
4805
4833
  "& .MuiInputBase-root:hover": {
4806
- background: o.palette.warning.opacity,
4807
- paddingLeft: "4px"
4834
+ background: o.palette.warning.opacity
4808
4835
  }
4809
4836
  }
4810
4837
  }
@@ -4819,8 +4846,7 @@ const p = (o) => ({
4819
4846
  "& .MuiTextField-root:hover": {
4820
4847
  background: "transparent",
4821
4848
  "& .MuiInputBase-root:hover": {
4822
- background: o.palette.success.opacity,
4823
- paddingLeft: "4px"
4849
+ background: o.palette.success.opacity
4824
4850
  }
4825
4851
  }
4826
4852
  }
@@ -4835,61 +4861,10 @@ const p = (o) => ({
4835
4861
  "& .MuiTextField-root:hover": {
4836
4862
  background: "transparent",
4837
4863
  "& .MuiInputBase-root:hover": {
4838
- paddingLeft: "4px",
4839
4864
  background: o.palette.info.opacity
4840
4865
  }
4841
4866
  }
4842
4867
  }
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
4868
  }
4894
4869
  }
4895
4870
  }
@@ -5091,7 +5066,7 @@ const p = (o) => ({
5091
5066
  }
5092
5067
  }
5093
5068
  }
5094
- }), O = (o) => ({
5069
+ }), z = (o) => ({
5095
5070
  M4LBadge: {
5096
5071
  styleOverrides: {
5097
5072
  "&.M4LBadge-root": {
@@ -5122,7 +5097,7 @@ const p = (o) => ({
5122
5097
  }
5123
5098
  }
5124
5099
  }
5125
- }), z = (o) => ({
5100
+ }), V = (o) => ({
5126
5101
  M4LDataGrid: {
5127
5102
  styleOverrides: {
5128
5103
  "&.M4LDataGrid-root": {
@@ -5279,6 +5254,19 @@ const p = (o) => ({
5279
5254
  alignItems: "center",
5280
5255
  textOverflow: "inline",
5281
5256
  gridTemplateColumns: "auto",
5257
+ "& .rdg-text-editor": {
5258
+ textAlign: "inherit",
5259
+ color: o.palette.text.secondary,
5260
+ padding: "0 8px",
5261
+ lineHeight: "var(--rdg-row-height)!important",
5262
+ border: "0",
5263
+ borderTop: "0.5px solid",
5264
+ borderBottom: "1px solid",
5265
+ borderLeft: "0.5px solid",
5266
+ borderRight: "0.5px solid",
5267
+ borderColor: `${o.palette.state.borderDisable}!important`,
5268
+ ...o.typography.body
5269
+ },
5282
5270
  "&.rdg-cell-frozen": {
5283
5271
  display: "flex",
5284
5272
  justifyContent: "center",
@@ -5438,7 +5426,7 @@ const p = (o) => ({
5438
5426
  }
5439
5427
  }
5440
5428
  }
5441
- }), V = (o) => ({
5429
+ }), O = (o) => ({
5442
5430
  M4LPager: {
5443
5431
  styleOverrides: {
5444
5432
  "&.M4LPager-root": {
@@ -5531,23 +5519,38 @@ const p = (o) => ({
5531
5519
  styleOverrides: {
5532
5520
  "&.M4LCheckBox-root": {
5533
5521
  display: "flex",
5534
- flexDirection: "column",
5535
- gap: o.spacing(0.5),
5522
+ gap: "8px",
5523
+ width: "100%",
5524
+ "& .M4LCheckBox-skeleton": {
5525
+ display: "flex",
5526
+ justifyContent: "center",
5527
+ alignItems: "center",
5528
+ width: "36px",
5529
+ height: "36px"
5530
+ },
5536
5531
  "& .MuiTypography-root": {
5537
5532
  color: o.palette.text.primary,
5538
5533
  ...o.typography.body
5539
5534
  },
5540
- "& .M4LCheckBox-small .MuiButtonBase-root": {
5541
- width: "20px",
5542
- height: "20px"
5535
+ "&.M4LCheckBox-small ": {
5536
+ "& .MuiButtonBase-root": {
5537
+ width: "24px",
5538
+ height: "24px"
5539
+ }
5543
5540
  },
5544
5541
  "& .MuiCheckbox-root .MuiSvgIcon-fontSizeSmall": {
5545
5542
  width: "16px",
5546
5543
  height: "16px"
5547
5544
  },
5548
- "& .M4LCheckBox-medium .MuiButtonBase-root": {
5549
- width: "24px",
5550
- height: "24px"
5545
+ "&.M4LCheckBox-medium": {
5546
+ "& .MuiButtonBase-root": {
5547
+ width: "24px",
5548
+ height: "24px"
5549
+ },
5550
+ "& .M4LCheckBox-skeleton": {
5551
+ width: "24px",
5552
+ height: "24px"
5553
+ }
5551
5554
  },
5552
5555
  "& .MuiCheckbox-root .MuiSvgIcon-fontSizeMedium": {
5553
5556
  width: "20px",
@@ -6421,9 +6424,11 @@ const p = (o) => ({
6421
6424
  alignItems: "center",
6422
6425
  padding: "8px 80px",
6423
6426
  minHeight: "80px",
6424
- backgroundColor: o.palette.background.neutral,
6427
+ backgroundColor: o.palette.background.default,
6425
6428
  position: "fixed",
6426
6429
  zIndex: "100",
6430
+ borderBottom: "1px solid rgba(9, 30, 66, 0.10)",
6431
+ boxShadow: "rgba(36, 59, 70, 0.12)",
6427
6432
  [o.breakpoints.down("md")]: {
6428
6433
  padding: "8px 24px"
6429
6434
  }
@@ -6459,15 +6464,38 @@ const p = (o) => ({
6459
6464
  }
6460
6465
  }
6461
6466
  }
6467
+ }), io = (o) => ({
6468
+ M4LFieldLabel: {
6469
+ styleOverrides: {
6470
+ "&.M4LFieldLabel-root": {
6471
+ display: "flex",
6472
+ alignItems: "center",
6473
+ flexWrap: "wrap",
6474
+ width: "100%",
6475
+ "& .M4LFieldLabel-mandatory": {
6476
+ marginLeft: "2px",
6477
+ "& .MuiTypography-root": {
6478
+ color: o.palette.error.main
6479
+ }
6480
+ },
6481
+ "& .M4LFieldLabel-tooltip": {
6482
+ marginLeft: "6px",
6483
+ "& .M4LIcon-root .M4LIcon-icon": {
6484
+ backgroundColor: o.palette.info.main
6485
+ }
6486
+ }
6487
+ }
6488
+ }
6489
+ }
6462
6490
  });
6463
6491
  export {
6464
6492
  T as A,
6465
6493
  A as B,
6466
- P as C,
6494
+ D as C,
6467
6495
  H as D,
6468
6496
  F as E,
6469
6497
  W as F,
6470
- V as G,
6498
+ O as G,
6471
6499
  j as H,
6472
6500
  G as I,
6473
6501
  N as J,
@@ -6487,30 +6515,31 @@ export {
6487
6515
  eo as X,
6488
6516
  ro as Y,
6489
6517
  ao as Z,
6518
+ io as _,
6490
6519
  p as a,
6491
- D as b,
6520
+ P as b,
6492
6521
  d as c,
6493
6522
  l as d,
6494
6523
  s as e,
6495
6524
  c as f,
6496
6525
  L as g,
6497
6526
  g as h,
6498
- O as i,
6527
+ z as i,
6499
6528
  x as j,
6500
- z as k,
6529
+ V as k,
6501
6530
  u as l,
6502
6531
  b as m,
6503
6532
  M as n,
6504
6533
  y as o,
6505
6534
  w as p,
6506
- h as q,
6507
- f as r,
6535
+ f as q,
6536
+ h as r,
6508
6537
  v as s,
6509
6538
  m as t,
6510
6539
  C as u,
6511
- I as v,
6512
- B as w,
6513
- k as x,
6540
+ k as v,
6541
+ I as w,
6542
+ B as x,
6514
6543
  S as y,
6515
6544
  R as z
6516
6545
  };