@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.
- 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 +42 -4
- package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +72 -96
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +144 -59
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +1959 -37
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +8 -12
- package/theme/overrides/M4LExtendedComponents/M4LCommonActions.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +9 -10
- package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +7 -6
- package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +913 -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 +5 -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.9d7c79cc.js → index.39bae580.js} +1082 -223
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +1 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +0 -1
- 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.b7f8e30c.js → index.1406e2ed.js} +209 -11
- 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/index.ff2a1a5a.js +0 -78
- package/utils/getColorState.456150fd.js +0 -136
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LPaperForm: (theme: Theme) => {
|
|
3
|
+
M4LPaperForm: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LPaperForm-root': {
|
|
6
|
+
test: string;
|
|
7
|
+
margin: string;
|
|
8
|
+
padding: string;
|
|
9
|
+
borderRadius: string;
|
|
10
|
+
boxShadow: string;
|
|
11
|
+
background: string;
|
|
12
|
+
border: string;
|
|
13
|
+
borderColor: string;
|
|
14
|
+
width: string;
|
|
15
|
+
height: string;
|
|
16
|
+
"& .M4LPaperForm-headerContainer": {
|
|
17
|
+
width: string;
|
|
18
|
+
height: string;
|
|
19
|
+
minHeight: string;
|
|
20
|
+
padding: string;
|
|
21
|
+
margin: string;
|
|
22
|
+
borderRadius: string;
|
|
23
|
+
background: string;
|
|
24
|
+
boxShadow: string;
|
|
25
|
+
borderBottom: string;
|
|
26
|
+
"& .M4LPaperForm-iconTitleContainer": {
|
|
27
|
+
color: string;
|
|
28
|
+
display: string;
|
|
29
|
+
gap: string;
|
|
30
|
+
"& .M4LPaperForm-iconHeaderContainer": {
|
|
31
|
+
margin: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
"& .M4LPaperForm-content": {
|
|
36
|
+
height: string;
|
|
37
|
+
width: string;
|
|
38
|
+
padding: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LPeriod: (theme: Theme) => {
|
|
3
|
+
M4LPeriod: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LPeriod-root': {
|
|
6
|
+
border: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
display: string;
|
|
9
|
+
width: string;
|
|
10
|
+
gap: string;
|
|
11
|
+
borderRadius: string;
|
|
12
|
+
padding: string;
|
|
13
|
+
'& .M4LPeriod-stateReadOnly': {};
|
|
14
|
+
'& .M4LPeriod-gap': {
|
|
15
|
+
backgroundColor: string;
|
|
16
|
+
};
|
|
17
|
+
'& .M4LIcon-root': {
|
|
18
|
+
margin: string;
|
|
19
|
+
};
|
|
20
|
+
'& .M4LPeriod-containerDateLabel': {
|
|
21
|
+
width: string;
|
|
22
|
+
borderRadius: string;
|
|
23
|
+
border: string;
|
|
24
|
+
borderColor: string;
|
|
25
|
+
padding: string;
|
|
26
|
+
};
|
|
27
|
+
'& .M4LPeriod-containerDateValue': {
|
|
28
|
+
width: string;
|
|
29
|
+
borderRadius: string;
|
|
30
|
+
border: string;
|
|
31
|
+
borderColor: string;
|
|
32
|
+
padding: string;
|
|
33
|
+
};
|
|
34
|
+
'&:not(.M4LPeriod-stateReadOnly).M4LPeriod-variantMonoperiod': {
|
|
35
|
+
width: string;
|
|
36
|
+
'& .MuiAutocomplete-root': {
|
|
37
|
+
width: string;
|
|
38
|
+
borderRadius: string;
|
|
39
|
+
borderColor: string;
|
|
40
|
+
'& .MuiInputBase-root': {
|
|
41
|
+
borderRadius: string;
|
|
42
|
+
paddingLeft: string;
|
|
43
|
+
background: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
'& .MuiTextField-root': {
|
|
47
|
+
width: string;
|
|
48
|
+
borderRadius: string;
|
|
49
|
+
border: string;
|
|
50
|
+
borderColor: string;
|
|
51
|
+
'& .MuiInputBase-root': {
|
|
52
|
+
borderRadius: string;
|
|
53
|
+
paddingLeft: string;
|
|
54
|
+
background: string;
|
|
55
|
+
};
|
|
56
|
+
'& .MuiInputBase-root.Mui-focused': {
|
|
57
|
+
borderRadius: string;
|
|
58
|
+
paddingLeft: string;
|
|
59
|
+
borderColor: string;
|
|
60
|
+
};
|
|
61
|
+
'& .MuiInputBase-root:hover': {
|
|
62
|
+
borderRadius: string;
|
|
63
|
+
paddingLeft: string;
|
|
64
|
+
background: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
"&:hover": {
|
|
68
|
+
borderColor: string;
|
|
69
|
+
'& .MuiAutocomplete-root': {
|
|
70
|
+
borderColor: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
'&.M4LPeriod-stateError': {
|
|
75
|
+
borderColor: string;
|
|
76
|
+
"&.M4LPeriod-stateError:hover": {
|
|
77
|
+
borderColor: string;
|
|
78
|
+
};
|
|
79
|
+
"& .MuiTextField-root": {
|
|
80
|
+
'& .MuiInputBase-root:hover': {
|
|
81
|
+
borderRadius: string;
|
|
82
|
+
paddingLeft: string;
|
|
83
|
+
background: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
'&.M4LPeriod-stateWarning': {
|
|
88
|
+
borderColor: string;
|
|
89
|
+
};
|
|
90
|
+
'&.M4LPeriod-stateSuccess': {
|
|
91
|
+
borderColor: string;
|
|
92
|
+
};
|
|
93
|
+
'&.M4LPeriod-stateInfo': {
|
|
94
|
+
borderColor: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LRHFormProvider: (_theme: Theme) => {
|
|
3
|
+
M4LRHFormProvider: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LRHFormProvider-root': {
|
|
6
|
+
display: string;
|
|
7
|
+
flexDirection: string;
|
|
8
|
+
width: string;
|
|
9
|
+
height: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -51,8 +51,10 @@ export declare const M4LSplitLayout: (theme: Theme) => {
|
|
|
51
51
|
borderRadius: string;
|
|
52
52
|
};
|
|
53
53
|
'& .splitter-layout > .layout-splitter:hover': {
|
|
54
|
+
borderRadius: string;
|
|
54
55
|
borderLeft: string;
|
|
55
56
|
borderRight: string;
|
|
57
|
+
background: string;
|
|
56
58
|
};
|
|
57
59
|
'& .splitter-layout.splitter-layout-vertical.layout-changing': {
|
|
58
60
|
cursor: string;
|
|
@@ -70,6 +72,8 @@ export declare const M4LSplitLayout: (theme: Theme) => {
|
|
|
70
72
|
height: string;
|
|
71
73
|
left: string;
|
|
72
74
|
top: string;
|
|
75
|
+
background: string;
|
|
76
|
+
borderRadius: string;
|
|
73
77
|
};
|
|
74
78
|
'& .splitter-layout > .layout-splitter:hover:before, .splitter-layout.layout-changing > .layout-splitter:before': {
|
|
75
79
|
background: string;
|
|
@@ -80,6 +84,7 @@ export declare const M4LSplitLayout: (theme: Theme) => {
|
|
|
80
84
|
'& .splitter-layout.splitter-layout-vertical > .layout-splitter:hover': {
|
|
81
85
|
borderTop: string;
|
|
82
86
|
borderBottom: string;
|
|
87
|
+
background: string;
|
|
83
88
|
};
|
|
84
89
|
};
|
|
85
90
|
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LTab: (theme: Theme) => {
|
|
3
|
+
M4LTab: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LTab-root': {
|
|
6
|
+
"& .MuiButtonBase-root": {
|
|
7
|
+
color: string;
|
|
8
|
+
"& .M4LIcon-root": {
|
|
9
|
+
marginBottom: string;
|
|
10
|
+
};
|
|
11
|
+
borderRadius: string;
|
|
12
|
+
display: string;
|
|
13
|
+
flexDirection: string;
|
|
14
|
+
alignItems: string;
|
|
15
|
+
padding: string;
|
|
16
|
+
height: string;
|
|
17
|
+
width: string;
|
|
18
|
+
minHeight: string;
|
|
19
|
+
minWidth: string;
|
|
20
|
+
gap: string;
|
|
21
|
+
};
|
|
22
|
+
"& .MuiButtonBase-root:hover": {
|
|
23
|
+
background: string;
|
|
24
|
+
color: string;
|
|
25
|
+
"& .M4LIcon-icon": {
|
|
26
|
+
backgroundColor: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
"& .Mui-selected": {
|
|
30
|
+
background: string;
|
|
31
|
+
border: string;
|
|
32
|
+
borderColor: string;
|
|
33
|
+
boxShadow: string;
|
|
34
|
+
'&::before': {
|
|
35
|
+
content: string;
|
|
36
|
+
width: string;
|
|
37
|
+
height: string;
|
|
38
|
+
left: string;
|
|
39
|
+
backgroundColor: string;
|
|
40
|
+
borderRadius: string;
|
|
41
|
+
position: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LTooltip: (theme: Theme) => {
|
|
3
|
+
M4LTooltip: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LTooltip-root': {
|
|
6
|
+
test: string;
|
|
7
|
+
"& .MuiTooltip-tooltip": {
|
|
8
|
+
display: string;
|
|
9
|
+
alignItems: string;
|
|
10
|
+
background: string;
|
|
11
|
+
borderRadius: string;
|
|
12
|
+
boxShadow: string;
|
|
13
|
+
padding: string;
|
|
14
|
+
height: string;
|
|
15
|
+
minHeight: string;
|
|
16
|
+
width: string;
|
|
17
|
+
margin: string;
|
|
18
|
+
marginTop: string;
|
|
19
|
+
color: string;
|
|
20
|
+
borderTop: string;
|
|
21
|
+
borderColor: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const M4LinearProgressIndeterminate: (theme: Theme) => {
|
|
3
|
+
M4LinearProgressIndeterminate: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
'&.M4LinearProgressIndeterminate-root': {
|
|
6
|
+
width: string;
|
|
7
|
+
position: string;
|
|
8
|
+
padding: string;
|
|
9
|
+
top: string;
|
|
10
|
+
left: string;
|
|
11
|
+
'@keyframes borealisBar': {
|
|
12
|
+
'0%': {
|
|
13
|
+
left: string;
|
|
14
|
+
right: string;
|
|
15
|
+
width: string;
|
|
16
|
+
};
|
|
17
|
+
'30%': {
|
|
18
|
+
left: string;
|
|
19
|
+
right: string;
|
|
20
|
+
width: string;
|
|
21
|
+
};
|
|
22
|
+
'90%': {
|
|
23
|
+
right: string;
|
|
24
|
+
left: string;
|
|
25
|
+
width: string;
|
|
26
|
+
};
|
|
27
|
+
'100%': {
|
|
28
|
+
left: string;
|
|
29
|
+
right: string;
|
|
30
|
+
width: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
'&:before': {
|
|
34
|
+
content: string;
|
|
35
|
+
borderRadius: string;
|
|
36
|
+
position: string;
|
|
37
|
+
top: string;
|
|
38
|
+
right: string;
|
|
39
|
+
bottom: string;
|
|
40
|
+
left: string;
|
|
41
|
+
};
|
|
42
|
+
'& .M4LinearProgressIndeterminate-windowLinearProgressBar': {
|
|
43
|
+
position: string;
|
|
44
|
+
borderRadius: string;
|
|
45
|
+
top: string;
|
|
46
|
+
right: string;
|
|
47
|
+
bottom: string;
|
|
48
|
+
left: string;
|
|
49
|
+
backgroundColor: string;
|
|
50
|
+
width: string;
|
|
51
|
+
animation: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|