@m4l/styles 0.0.16 → 0.0.17

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 (43) hide show
  1. package/index.js +10 -10
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.364b28b6.js → defaultThemeOptions.d67fe64c.js} +7 -7
  4. package/theme/index.efa44d2d.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +53 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +42 -4
  7. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +72 -96
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +144 -59
  9. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +1959 -37
  10. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +8 -12
  11. package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +1 -1
  12. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +9 -10
  13. package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +7 -6
  14. package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +913 -0
  15. package/theme/overrides/M4LExtendedComponents/M4LPaperForm.d.ts +43 -0
  16. package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +99 -0
  17. package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +10 -0
  18. package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +13 -0
  19. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +5 -0
  20. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +47 -0
  21. package/theme/overrides/M4LExtendedComponents/M4LTooltip.d.ts +26 -0
  22. package/theme/overrides/M4LExtendedComponents/M4LinearProgressIndeterminate.d.ts +56 -0
  23. package/theme/overrides/M4LExtendedComponents/{index.9d7c79cc.js → index.39bae580.js} +1082 -223
  24. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
  25. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +0 -1
  26. package/theme/overrides/M4LRHFComponents/M4LRHFPeriod.d.ts +10 -0
  27. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +16 -0
  28. package/theme/overrides/M4LRHFComponents/M4LRHFUploadImage.d.ts +172 -0
  29. package/theme/overrides/M4LRHFComponents/{index.b7f8e30c.js → index.1406e2ed.js} +209 -11
  30. package/theme/overrides/MUIComponents/Tabs.d.ts +23 -3
  31. package/theme/overrides/MUIComponents/{index.56660771.js → index.e3d060c3.js} +47 -27
  32. package/theme/overrides/index.2e62f620.js +89 -0
  33. package/theme/{palette.4b477f9b.js → palette.95c4f9c8.js} +17 -17
  34. package/theme/palette.d.ts +4 -4
  35. package/theme/{shadows.b2f38616.js → shadows.354bbb03.js} +1 -1
  36. package/theme/{typography.1db0276b.js → typography.61f909b7.js} +4 -4
  37. package/types/augmentations.d.ts +3 -1
  38. package/utils/{getColorPresets.f3113d85.js → getColorPresets.d73f30ad.js} +1 -1
  39. package/utils/getColorState.bde51cf7.js +159 -0
  40. package/utils/getColorState.d.ts +2 -0
  41. package/theme/index.cd1bedc8.js +0 -7
  42. package/theme/overrides/index.ff2a1a5a.js +0 -78
  43. package/utils/getColorState.456150fd.js +0 -136
@@ -4,6 +4,7 @@ export declare const M4LButton: (theme: Theme) => {
4
4
  styleOverrides: {
5
5
  '&.M4LButton-root': {
6
6
  width: string;
7
+ minWidth: string;
7
8
  display: string;
8
9
  justifyContent: string;
9
10
  '& .M4LButton-skeleton ': {
@@ -77,18 +78,20 @@ export declare const M4LButton: (theme: Theme) => {
77
78
  };
78
79
  };
79
80
  '&.M4LButton-sizeSmall': {
80
- height: string;
81
81
  '& .MuiButtonBase-root': {
82
82
  padding: string;
83
+ height: string;
84
+ minHeight: string;
83
85
  };
84
86
  '&.M4LButton-skeleton': {
85
87
  height: string;
86
88
  };
87
89
  };
88
90
  '&.M4LButton-sizeMedium': {
89
- height: string;
90
91
  '& .MuiButtonBase-root': {
91
92
  padding: string;
93
+ height: string;
94
+ minHeight: string;
92
95
  };
93
96
  '&.M4LButton-skeleton': {
94
97
  height: string;
@@ -97,11 +100,11 @@ export declare const M4LButton: (theme: Theme) => {
97
100
  '&.M4LButton-variantContained': {
98
101
  '& .MuiButtonBase-root': {
99
102
  backgroundColor: string;
100
- color: string;
101
- boxShadow: string;
103
+ color: string | undefined;
104
+ boxShadow: string | undefined;
102
105
  position: string;
103
106
  '& .M4LIcon-icon': {
104
- backgroundColor: string;
107
+ backgroundColor: string | undefined;
105
108
  };
106
109
  '&:hover': {
107
110
  backgroundColor: string;
@@ -110,13 +113,6 @@ export declare const M4LButton: (theme: Theme) => {
110
113
  backgroundColor: string | undefined;
111
114
  };
112
115
  };
113
- '&:active': {
114
- backgroundColor: string;
115
- color: string | undefined;
116
- '& .M4LIcon-icon': {
117
- backgroundColor: string | undefined;
118
- };
119
- };
120
116
  '&.Mui-focusVisible': {
121
117
  backgroundColor: string;
122
118
  color: string | undefined;
@@ -3,7 +3,7 @@ export declare const M4LCommonActions: (_theme: Theme) => {
3
3
  M4LCommonActions: {
4
4
  styleOverrides: {
5
5
  '&.M4LCommonActions-root': {
6
- test: string;
6
+ padding: string;
7
7
  };
8
8
  };
9
9
  };
@@ -9,7 +9,6 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
9
9
  padding: string;
10
10
  border: string;
11
11
  borderColor: string;
12
- overflow: string;
13
12
  '& .M4LDynamicFilter-containerFistRow': {
14
13
  height: string;
15
14
  width: string;
@@ -44,12 +43,14 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
44
43
  padding: string;
45
44
  width: string;
46
45
  height: string;
47
- BorderRadius: string;
46
+ borderRadius: string;
48
47
  border: string;
48
+ borderColor: string;
49
49
  background: string;
50
50
  };
51
51
  '& input:focus-visible': {
52
52
  border: string;
53
+ borderColor: string;
53
54
  background: string;
54
55
  BorderRadius: string;
55
56
  outline: string;
@@ -85,16 +86,12 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
85
86
  styleOverrides: {
86
87
  '&.M4LDynamicFilter-popoverMenuFields': {
87
88
  '& .M4LDynamicFilter-popoverMenuFieldsPaper': {
88
- padding: string;
89
- gap: string;
90
89
  '& .M4LDynamicFilter-classespopoverLabelMemuItem': {
91
90
  color: string;
92
- borderRadius: string;
93
91
  };
94
92
  '& .M4LDynamicFilter-popoverMenuFieldsItem:hover': {
95
93
  color: string;
96
94
  background: string;
97
- borderRadius: string;
98
95
  };
99
96
  };
100
97
  };
@@ -103,14 +100,17 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
103
100
  M4LDynamicFilterPopoverFilter: {
104
101
  styleOverrides: {
105
102
  '&.M4LDynamicFilter-popoverFilter': {
103
+ width: string;
106
104
  '& .M4LDynamicFilter-popoverFilterPaper': {
107
105
  padding: string;
106
+ width: string;
108
107
  "& .M4LPopover-arrowStyle": {
109
108
  background: string;
110
109
  };
111
- '& .m4l_FormProvider': {
110
+ '& .M4LRHFormProvider-root': {
112
111
  gap: string;
113
- minWidth: string;
112
+ widht: string;
113
+ minWidht: string;
114
114
  '& .M4LDynamicFilter-popoverFilterHeader': {
115
115
  background: string;
116
116
  display: string;
@@ -131,12 +131,11 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
131
131
  gap: string;
132
132
  };
133
133
  };
134
- '& .M4LCommonActions-root': {
134
+ '& .M4LCommonActions-wrapperActions': {
135
135
  display: string;
136
136
  flexDirection: string;
137
137
  gap: string;
138
138
  padding: string;
139
- margin: string;
140
139
  '.M4LButton-root': {
141
140
  width: string;
142
141
  };
@@ -18,14 +18,15 @@ export declare const M4LMasterDetailLayout: (theme: Theme) => {
18
18
  borderRadius: string;
19
19
  overFlow: string;
20
20
  };
21
- "& .layout-pane": {
22
- boxShadow: string;
23
- border: string;
24
- borderColor: string;
21
+ "& .M4LSplitLayout-secondPart": {
22
+ background: string;
25
23
  borderRadius: string;
24
+ padding: string;
26
25
  };
27
- "#splitMaster": {
28
- border: string;
26
+ "& .layout-pane-primary": {
27
+ background: string;
28
+ borderRadius: string;
29
+ padding: string;
29
30
  };
30
31
  };
31
32
  };