@m4l/styles 0.0.28 → 0.0.30

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 (35) hide show
  1. package/index.js +9 -9
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.e09f6ae8.js → defaultThemeOptions.a8de2e18.js} +5 -5
  4. package/theme/index.b0919dac.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +4 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +2 -1
  7. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +922 -534
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +203 -103
  9. package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +2 -0
  10. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +0 -1
  11. package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +39 -50
  12. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +33 -56
  13. package/theme/overrides/M4LExtendedComponents/M4LMenuActions.d.ts +15 -0
  14. package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +58 -1655
  15. package/theme/overrides/M4LExtendedComponents/M4LModuleLayout.d.ts +1 -2
  16. package/theme/overrides/M4LExtendedComponents/M4LNoItemSelected.d.ts +2 -2
  17. package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +4 -1
  18. package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +3 -0
  19. package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +3 -1
  20. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +0 -6
  21. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +2 -5
  22. package/theme/overrides/M4LExtendedComponents/M4LTabContent.d.ts +18 -0
  23. package/theme/overrides/M4LExtendedComponents/M4LTabs.d.ts +1 -0
  24. package/theme/overrides/M4LExtendedComponents/{index.e4d90ec0.js → index.e875a5e1.js} +234 -155
  25. package/theme/overrides/MUIComponents/Badge.d.ts +2 -3
  26. package/theme/overrides/MUIComponents/{index.c5a85efa.js → index.f50cd1c7.js} +4 -5
  27. package/theme/overrides/{index.ab4ad05c.js → index.cbe0dea7.js} +29 -27
  28. package/theme/{palette.b6e02e1c.js → palette.104051a7.js} +14 -14
  29. package/theme/{shadows.386e7ef4.js → shadows.b036a684.js} +1 -1
  30. package/theme/{typography.006a6c85.js → typography.7591a12b.js} +4 -4
  31. package/types/augmentations.d.ts +4 -0
  32. package/utils/{getColorPresets.241c5bac.js → getColorPresets.2693301f.js} +1 -1
  33. package/utils/{getColorState.f10d3d33.js → getColorState.32c050bf.js} +52 -28
  34. package/utils/getColorState.d.ts +2 -0
  35. package/theme/index.e131f0b1.js +0 -7
@@ -1,5 +1,5 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LModuleLayout: (theme: Theme) => {
2
+ export declare const M4LModuleLayout: (_theme: Theme) => {
3
3
  M4LModuleLayout: {
4
4
  styleOverrides: {
5
5
  '&.M4LModuleLayout-root': {
@@ -10,7 +10,6 @@ export declare const M4LModuleLayout: (theme: Theme) => {
10
10
  display: string;
11
11
  width: string;
12
12
  height: string;
13
- boxShadow: string;
14
13
  borderRadius: string;
15
14
  };
16
15
  };
@@ -13,8 +13,8 @@ export declare const M4LNoItemSelected: (_theme: Theme) => {
13
13
  justifyContent: string;
14
14
  padding: string;
15
15
  '& .M4LImage-root': {
16
- minHeight: string;
17
- maxHeight: string;
16
+ maxWidth: string;
17
+ minWidth: string;
18
18
  };
19
19
  };
20
20
  };
@@ -1,9 +1,12 @@
1
1
  import { Theme } from '@mui/material/styles';
2
- export declare const M4LPropertyValue: (_theme: Theme) => {
2
+ export declare const M4LPropertyValue: (theme: Theme) => {
3
3
  M4LPropertyValue: {
4
4
  styleOverrides: {
5
5
  '&.M4LPropertyValue-root': {
6
6
  test: string;
7
+ '&:hover': {
8
+ backgroundColor: string;
9
+ };
7
10
  };
8
11
  };
9
12
  };
@@ -7,6 +7,9 @@ export declare const M4LRHFormProvider: (_theme: Theme) => {
7
7
  flexDirection: string;
8
8
  width: string;
9
9
  height: string;
10
+ '& .M4LCommonActions-root': {
11
+ padding: string;
12
+ };
10
13
  };
11
14
  };
12
15
  };
@@ -8,6 +8,9 @@ export declare const M4LScrollBar: (theme: Theme) => {
8
8
  height: string;
9
9
  overflow: string;
10
10
  minHeight: string;
11
+ '& .simplebar-scrollbar.simplebar-visible:before': {
12
+ opacity: string;
13
+ };
11
14
  '& .simplebar-content-wrapper[style*="overflow: hidden scroll;"] .simplebar-content': {
12
15
  marginRight: string;
13
16
  };
@@ -20,7 +23,6 @@ export declare const M4LScrollBar: (theme: Theme) => {
20
23
  '& .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before': {
21
24
  background: string;
22
25
  borderRadius: string;
23
- marginBottom: string;
24
26
  };
25
27
  '& .simplebar-track.simplebar-vertical .simplebar-scrollbar:before': {
26
28
  background: string;
@@ -65,7 +65,6 @@ export declare const M4LSplitLayout: (theme: Theme) => {
65
65
  borderRadius: string;
66
66
  borderLeft: string;
67
67
  borderRight: string;
68
- background: string;
69
68
  };
70
69
  '& .splitter-layout.splitter-layout-vertical.layout-changing': {
71
70
  cursor: string;
@@ -112,11 +111,6 @@ export declare const M4LSplitLayout: (theme: Theme) => {
112
111
  background: string;
113
112
  };
114
113
  };
115
- '& .splitter-layout.splitter-layout-vertical > .layout-splitter:hover': {
116
- borderTop: string;
117
- borderBottom: string;
118
- background: string;
119
- };
120
114
  };
121
115
  };
122
116
  };
@@ -4,15 +4,14 @@ export declare const M4LTab: (theme: Theme) => {
4
4
  styleOverrides: {
5
5
  '&.M4LTab-root': {
6
6
  width: string;
7
- borderRadius: string;
8
7
  "& .MuiButtonBase-root": {
9
8
  color: string;
10
9
  lineHeight: string;
10
+ borderRadius: string;
11
11
  "& .M4LIcon-root": {
12
12
  marginBottom: string;
13
13
  };
14
14
  height: string;
15
- borderRadius: string;
16
15
  display: string;
17
16
  flexDirection: string;
18
17
  alignItems: string;
@@ -23,7 +22,6 @@ export declare const M4LTab: (theme: Theme) => {
23
22
  gap: string;
24
23
  };
25
24
  "& .MuiButtonBase-root:hover": {
26
- background: string;
27
25
  color: string;
28
26
  "& .M4LIcon-icon": {
29
27
  backgroundColor: string;
@@ -37,14 +35,13 @@ export declare const M4LTab: (theme: Theme) => {
37
35
  width: string;
38
36
  height: string;
39
37
  left: string;
40
- bottom: string;
38
+ top: string;
41
39
  backgroundColor: string;
42
40
  borderRadius: string;
43
41
  position: string;
44
42
  };
45
43
  background: string;
46
44
  border: string;
47
- borderColor: string;
48
45
  };
49
46
  };
50
47
  };
@@ -0,0 +1,18 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LTabContent: (theme: Theme) => {
3
+ M4LTabContent: {
4
+ styleOverrides: {
5
+ '&.M4LTabContent-root': {
6
+ padding: string;
7
+ display: string;
8
+ overflow: string;
9
+ height: string;
10
+ flexDirection: string;
11
+ gap: string;
12
+ background: string;
13
+ borderRadius: string;
14
+ position: string;
15
+ };
16
+ };
17
+ };
18
+ };
@@ -7,6 +7,7 @@ export declare const M4LTabs: (_theme: Theme) => {
7
7
  height: string;
8
8
  position: string;
9
9
  minHeight: string;
10
+ borderRadius: string;
10
11
  '& .MuiTabs-scroller': {
11
12
  '& .MuiTabs-flexContainer': {
12
13
  padding: string;