@m4l/styles 0.0.15 → 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.
- package/index.js +10 -10
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.364b28b6.js → defaultThemeOptions.d67fe64c.js} +7 -7
- package/theme/index.efa44d2d.js +7 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +53 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +55 -0
- package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +164 -0
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +161 -63
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +1961 -37
- package/theme/overrides/M4LExtendedComponents/M4LAvatar.d.ts +15 -0
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +8 -12
- package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +8 -3
- package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +34 -0
- package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +913 -0
- package/theme/overrides/M4LExtendedComponents/M4LModuleLayout.d.ts +22 -0
- package/theme/overrides/M4LExtendedComponents/M4LPaperForm.d.ts +43 -0
- package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +99 -0
- package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +13 -0
- package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +92 -0
- package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +47 -0
- package/theme/overrides/M4LExtendedComponents/M4LTooltip.d.ts +26 -0
- package/theme/overrides/M4LExtendedComponents/M4LinearProgressIndeterminate.d.ts +56 -0
- package/theme/overrides/M4LExtendedComponents/{index.9ef37d1d.js → index.39bae580.js} +1251 -135
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +0 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +130 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFPeriod.d.ts +10 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +16 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFUploadImage.d.ts +172 -0
- package/theme/overrides/M4LRHFComponents/index.1406e2ed.js +678 -0
- package/theme/overrides/MUIComponents/Tabs.d.ts +23 -3
- package/theme/overrides/MUIComponents/{index.56660771.js → index.e3d060c3.js} +47 -27
- package/theme/overrides/index.2e62f620.js +89 -0
- package/theme/{palette.4b477f9b.js → palette.95c4f9c8.js} +17 -17
- package/theme/palette.d.ts +4 -4
- package/theme/{shadows.b2f38616.js → shadows.354bbb03.js} +1 -1
- package/theme/{typography.1db0276b.js → typography.61f909b7.js} +4 -4
- package/types/augmentations.d.ts +3 -1
- package/utils/{getColorPresets.f3113d85.js → getColorPresets.d73f30ad.js} +1 -1
- package/utils/getColorState.bde51cf7.js +159 -0
- package/utils/getColorState.d.ts +2 -0
- package/theme/index.cd1bedc8.js +0 -7
- package/theme/overrides/M4LRHFComponents/index.5f690e33.js +0 -350
- package/theme/overrides/index.19dec027.js +0 -70
- package/utils/getColorState.456150fd.js +0 -136
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LAvatar: (_theme: Theme) => {
|
|
3
|
+
M4LAvatar: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LAvatar-root': {
|
|
6
|
+
'& .MuiAvatar-root': {
|
|
7
|
+
width: string;
|
|
8
|
+
height: string;
|
|
9
|
+
borderRadius: string;
|
|
10
|
+
};
|
|
11
|
+
test: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -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;
|
|
@@ -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
|
-
|
|
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;
|
|
@@ -99,13 +100,17 @@ export declare const M4LDynamicFilter: (theme: Theme) => {
|
|
|
99
100
|
M4LDynamicFilterPopoverFilter: {
|
|
100
101
|
styleOverrides: {
|
|
101
102
|
'&.M4LDynamicFilter-popoverFilter': {
|
|
103
|
+
width: string;
|
|
102
104
|
'& .M4LDynamicFilter-popoverFilterPaper': {
|
|
103
105
|
padding: string;
|
|
106
|
+
width: string;
|
|
104
107
|
"& .M4LPopover-arrowStyle": {
|
|
105
108
|
background: string;
|
|
106
109
|
};
|
|
107
|
-
'& .
|
|
110
|
+
'& .M4LRHFormProvider-root': {
|
|
108
111
|
gap: string;
|
|
112
|
+
widht: string;
|
|
113
|
+
minWidht: string;
|
|
109
114
|
'& .M4LDynamicFilter-popoverFilterHeader': {
|
|
110
115
|
background: string;
|
|
111
116
|
display: string;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LMasterDetailLayout: (theme: Theme) => {
|
|
3
|
+
M4LMasterDetailLayout: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LMasterDetailLayout-root': {
|
|
6
|
+
display: string;
|
|
7
|
+
width: string;
|
|
8
|
+
height: string;
|
|
9
|
+
overFlow: string;
|
|
10
|
+
"& .M4LModuleLayout-root .M4LModuleLayout-moduleContent": {
|
|
11
|
+
display: string;
|
|
12
|
+
width: string;
|
|
13
|
+
height: string;
|
|
14
|
+
boxShadow: string;
|
|
15
|
+
background: string;
|
|
16
|
+
border: string;
|
|
17
|
+
borderColor: string;
|
|
18
|
+
borderRadius: string;
|
|
19
|
+
overFlow: string;
|
|
20
|
+
};
|
|
21
|
+
"& .M4LSplitLayout-secondPart": {
|
|
22
|
+
background: string;
|
|
23
|
+
borderRadius: string;
|
|
24
|
+
padding: string;
|
|
25
|
+
};
|
|
26
|
+
"& .layout-pane-primary": {
|
|
27
|
+
background: string;
|
|
28
|
+
borderRadius: string;
|
|
29
|
+
padding: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|