@m4l/styles 0.0.32 → 0.0.34
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 +9 -9
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.b25c825e.js → defaultThemeOptions.66a289a7.js} +4 -4
- package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +245 -32
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +326 -1
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +85 -77
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +87 -17
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +12 -7
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +29 -3
- package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +115 -0
- package/theme/overrides/M4LExtendedComponents/M4LMasterDetailLayout.d.ts +0 -2
- package/theme/overrides/M4LExtendedComponents/M4LMenuActions.d.ts +5 -1
- package/theme/overrides/M4LExtendedComponents/M4LPDFViewer.d.ts +17 -0
- package/theme/overrides/M4LExtendedComponents/M4LPeriod.d.ts +424 -10
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +90 -0
- package/theme/overrides/M4LExtendedComponents/M4LPrintingSystem.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +83 -36
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +12 -6
- package/theme/overrides/M4LExtendedComponents/M4LStack.d.ts +1 -0
- package/theme/overrides/M4LExtendedComponents/M4LTabs.d.ts +3 -0
- package/theme/overrides/M4LExtendedComponents/M4LToastContainer.d.ts +65 -15
- package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +16 -1
- package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +326 -0
- package/theme/overrides/M4LExtendedComponents/{index.15f2650a.js → index.e406c71f.js} +687 -253
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +0 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +178 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +155 -6
- package/theme/overrides/M4LRHFComponents/M4LRHFUploadImage.d.ts +9 -9
- package/theme/overrides/M4LRHFComponents/{index.e6262889.js → index.d7a80536.js} +61 -31
- package/theme/overrides/MUIComponents/Input.d.ts +5 -5
- package/theme/overrides/MUIComponents/{index.1b2b2be2.js → index.b3f5b7a7.js} +4 -4
- package/theme/overrides/{index.158187f3.js → index.2d07abe3.js} +16 -15
- package/theme/{palette.31d770bc.js → palette.1b577d8c.js} +14 -14
- package/theme/{shadows.9800d84c.js → shadows.a726d8c6.js} +26 -26
- package/utils/{getColorPresets.9fec9cc2.js → getColorPresets.479f9922.js} +1 -1
- package/utils/{getColorState.4350ccb4.js → getColorState.ce01540c.js} +47 -47
|
@@ -3,9 +3,335 @@ export declare const M4LLoadingButton: (theme: Theme) => {
|
|
|
3
3
|
M4LLoadingButton: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
'&.M4LLoadingButton-root': {
|
|
6
|
+
[x: string]: string | {
|
|
7
|
+
height: string;
|
|
8
|
+
minHeight: string;
|
|
9
|
+
'& .M4LTypography-root'?: undefined;
|
|
10
|
+
color?: undefined;
|
|
11
|
+
borderRadius?: undefined;
|
|
12
|
+
'& .MuiButtonBase-root'?: undefined;
|
|
13
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
14
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
15
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
'& .M4LTypography-root': {
|
|
18
|
+
opacity: string;
|
|
19
|
+
'& .MuiTypography-root'?: undefined;
|
|
20
|
+
};
|
|
21
|
+
height?: undefined;
|
|
22
|
+
minHeight?: undefined;
|
|
23
|
+
color?: undefined;
|
|
24
|
+
borderRadius?: undefined;
|
|
25
|
+
'& .MuiButtonBase-root'?: undefined;
|
|
26
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
27
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
28
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
29
|
+
} | {
|
|
30
|
+
color: string;
|
|
31
|
+
height?: undefined;
|
|
32
|
+
minHeight?: undefined;
|
|
33
|
+
'& .M4LTypography-root'?: undefined;
|
|
34
|
+
borderRadius?: undefined;
|
|
35
|
+
'& .MuiButtonBase-root'?: undefined;
|
|
36
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
37
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
38
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
39
|
+
} | {
|
|
40
|
+
height: string;
|
|
41
|
+
borderRadius: string;
|
|
42
|
+
minHeight?: undefined;
|
|
43
|
+
'& .M4LTypography-root'?: undefined;
|
|
44
|
+
color?: undefined;
|
|
45
|
+
'& .MuiButtonBase-root'?: undefined;
|
|
46
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
47
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
48
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
49
|
+
} | {
|
|
50
|
+
'& .M4LIcon-icon': {
|
|
51
|
+
transition: string;
|
|
52
|
+
};
|
|
53
|
+
'& .MuiButton-startIcon, & .MuiButton-endIcon': {
|
|
54
|
+
margin: string;
|
|
55
|
+
};
|
|
56
|
+
'&::before': {
|
|
57
|
+
inset: string;
|
|
58
|
+
border: string;
|
|
59
|
+
borderColor: string;
|
|
60
|
+
borderRadius: string;
|
|
61
|
+
transform: string;
|
|
62
|
+
position: string;
|
|
63
|
+
boxSizing: string;
|
|
64
|
+
};
|
|
65
|
+
display: string;
|
|
66
|
+
textTransform: string;
|
|
67
|
+
gap: string;
|
|
68
|
+
transition: string;
|
|
69
|
+
borderRadius: string;
|
|
70
|
+
border: string;
|
|
71
|
+
height?: undefined;
|
|
72
|
+
minHeight?: undefined;
|
|
73
|
+
'& .M4LTypography-root'?: undefined;
|
|
74
|
+
color?: undefined;
|
|
75
|
+
'& .MuiButtonBase-root'?: undefined;
|
|
76
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
77
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
78
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
79
|
+
} | {
|
|
80
|
+
'& .MuiButtonBase-root': {
|
|
81
|
+
color: string;
|
|
82
|
+
'& .M4LIcon-icon': {
|
|
83
|
+
backgroundColor: string;
|
|
84
|
+
};
|
|
85
|
+
padding?: undefined;
|
|
86
|
+
backgroundColor?: undefined;
|
|
87
|
+
boxShadow?: undefined;
|
|
88
|
+
position?: undefined;
|
|
89
|
+
'& .M4LTypography-root'?: undefined;
|
|
90
|
+
'&:hover'?: undefined;
|
|
91
|
+
'&:active'?: undefined;
|
|
92
|
+
'&.Mui-focusVisible'?: undefined;
|
|
93
|
+
border?: undefined;
|
|
94
|
+
borderColor?: undefined;
|
|
95
|
+
};
|
|
96
|
+
'&.M4LLoadingButton-variantContained': {
|
|
97
|
+
'& .MuiButtonBase-root': {
|
|
98
|
+
color: string;
|
|
99
|
+
'& .M4LIcon-icon': {
|
|
100
|
+
backgroundColor: string;
|
|
101
|
+
};
|
|
102
|
+
'&:hover': {
|
|
103
|
+
backgroundColor: string;
|
|
104
|
+
color: string;
|
|
105
|
+
'& .M4LIcon-icon': {
|
|
106
|
+
backgroundColor: string;
|
|
107
|
+
color: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
'&:active': {
|
|
111
|
+
backgroundColor: string;
|
|
112
|
+
color: string;
|
|
113
|
+
'& .M4LIcon-icon': {
|
|
114
|
+
backgroundColor: string;
|
|
115
|
+
color: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
'&.Mui-focusVisible': {
|
|
119
|
+
backgroundColor: string;
|
|
120
|
+
color: string;
|
|
121
|
+
'& .M4LIcon-icon': {
|
|
122
|
+
backgroundColor: string;
|
|
123
|
+
color: string;
|
|
124
|
+
};
|
|
125
|
+
'&::before': {
|
|
126
|
+
content: string;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
height?: undefined;
|
|
132
|
+
minHeight?: undefined;
|
|
133
|
+
'& .M4LTypography-root'?: undefined;
|
|
134
|
+
color?: undefined;
|
|
135
|
+
borderRadius?: undefined;
|
|
136
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
137
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
138
|
+
} | {
|
|
139
|
+
height: string;
|
|
140
|
+
'& .MuiButtonBase-root': {
|
|
141
|
+
padding: string;
|
|
142
|
+
color?: undefined;
|
|
143
|
+
'& .M4LIcon-icon'?: undefined;
|
|
144
|
+
backgroundColor?: undefined;
|
|
145
|
+
boxShadow?: undefined;
|
|
146
|
+
position?: undefined;
|
|
147
|
+
'& .M4LTypography-root'?: undefined;
|
|
148
|
+
'&:hover'?: undefined;
|
|
149
|
+
'&:active'?: undefined;
|
|
150
|
+
'&.Mui-focusVisible'?: undefined;
|
|
151
|
+
border?: undefined;
|
|
152
|
+
borderColor?: undefined;
|
|
153
|
+
};
|
|
154
|
+
'&.M4LLoadingButton-skeleton': {
|
|
155
|
+
height: string;
|
|
156
|
+
};
|
|
157
|
+
minHeight?: undefined;
|
|
158
|
+
'& .M4LTypography-root'?: undefined;
|
|
159
|
+
color?: undefined;
|
|
160
|
+
borderRadius?: undefined;
|
|
161
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
162
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
163
|
+
} | {
|
|
164
|
+
'& .MuiCircularProgress-root': {
|
|
165
|
+
color: string;
|
|
166
|
+
};
|
|
167
|
+
'& .M4LTypography-root': {
|
|
168
|
+
'& .MuiTypography-root': {
|
|
169
|
+
color: string | undefined;
|
|
170
|
+
};
|
|
171
|
+
opacity?: undefined;
|
|
172
|
+
};
|
|
173
|
+
'& .MuiButtonBase-root': {
|
|
174
|
+
backgroundColor: string;
|
|
175
|
+
color: string | undefined;
|
|
176
|
+
boxShadow: string | undefined;
|
|
177
|
+
position: string;
|
|
178
|
+
'& .M4LTypography-root': {
|
|
179
|
+
'MuiTypography-root': {
|
|
180
|
+
color: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
'& .M4LIcon-icon': {
|
|
184
|
+
backgroundColor: string;
|
|
185
|
+
};
|
|
186
|
+
'&:hover': {
|
|
187
|
+
backgroundColor: string;
|
|
188
|
+
'& .M4LIcon-icon': {
|
|
189
|
+
backgroundColor: string | undefined;
|
|
190
|
+
};
|
|
191
|
+
'& .MuiTypography-root': {
|
|
192
|
+
color: string;
|
|
193
|
+
};
|
|
194
|
+
borderColor?: undefined;
|
|
195
|
+
color?: undefined;
|
|
196
|
+
};
|
|
197
|
+
'&:active': {
|
|
198
|
+
backgroundColor: string;
|
|
199
|
+
color: string | undefined;
|
|
200
|
+
'& .M4LIcon-icon': {
|
|
201
|
+
backgroundColor: string | undefined;
|
|
202
|
+
};
|
|
203
|
+
borderColor?: undefined;
|
|
204
|
+
};
|
|
205
|
+
'&.Mui-focusVisible': {
|
|
206
|
+
backgroundColor: string;
|
|
207
|
+
color: string | undefined;
|
|
208
|
+
'& .M4LIcon-icon': {
|
|
209
|
+
backgroundColor: string | undefined;
|
|
210
|
+
};
|
|
211
|
+
'&::before': {
|
|
212
|
+
content: string;
|
|
213
|
+
};
|
|
214
|
+
borderColor?: undefined;
|
|
215
|
+
'&:before'?: undefined;
|
|
216
|
+
};
|
|
217
|
+
padding?: undefined;
|
|
218
|
+
border?: undefined;
|
|
219
|
+
borderColor?: undefined;
|
|
220
|
+
};
|
|
221
|
+
height?: undefined;
|
|
222
|
+
minHeight?: undefined;
|
|
223
|
+
color?: undefined;
|
|
224
|
+
borderRadius?: undefined;
|
|
225
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
226
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
227
|
+
} | {
|
|
228
|
+
'& .MuiButtonBase-root': {
|
|
229
|
+
border: string;
|
|
230
|
+
borderColor: string;
|
|
231
|
+
color: string;
|
|
232
|
+
'& .M4LIcon-icon': {
|
|
233
|
+
backgroundColor: string;
|
|
234
|
+
};
|
|
235
|
+
'&:hover': {
|
|
236
|
+
borderColor: string;
|
|
237
|
+
color: string;
|
|
238
|
+
backgroundColor: string;
|
|
239
|
+
'& .M4LIcon-icon': {
|
|
240
|
+
backgroundColor: string;
|
|
241
|
+
};
|
|
242
|
+
'& .MuiTypography-root'?: undefined;
|
|
243
|
+
};
|
|
244
|
+
'&:active': {
|
|
245
|
+
borderColor: string;
|
|
246
|
+
color: string;
|
|
247
|
+
backgroundColor: string;
|
|
248
|
+
'& .M4LIcon-icon': {
|
|
249
|
+
backgroundColor: string;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
'&.Mui-focusVisible': {
|
|
253
|
+
borderColor: string;
|
|
254
|
+
color: string;
|
|
255
|
+
backgroundColor: string;
|
|
256
|
+
'& .M4LIcon-icon': {
|
|
257
|
+
backgroundColor: string;
|
|
258
|
+
};
|
|
259
|
+
'&::before': {
|
|
260
|
+
content: string;
|
|
261
|
+
};
|
|
262
|
+
'&:before'?: undefined;
|
|
263
|
+
};
|
|
264
|
+
padding?: undefined;
|
|
265
|
+
backgroundColor?: undefined;
|
|
266
|
+
boxShadow?: undefined;
|
|
267
|
+
position?: undefined;
|
|
268
|
+
'& .M4LTypography-root'?: undefined;
|
|
269
|
+
};
|
|
270
|
+
height?: undefined;
|
|
271
|
+
minHeight?: undefined;
|
|
272
|
+
'& .M4LTypography-root'?: undefined;
|
|
273
|
+
color?: undefined;
|
|
274
|
+
borderRadius?: undefined;
|
|
275
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
276
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
277
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
278
|
+
} | {
|
|
279
|
+
'& .MuiButtonBase-root': {
|
|
280
|
+
color: string;
|
|
281
|
+
'& .M4LIcon-icon': {
|
|
282
|
+
backgroundColor: string;
|
|
283
|
+
};
|
|
284
|
+
'&:hover': {
|
|
285
|
+
backgroundColor: string;
|
|
286
|
+
color: string;
|
|
287
|
+
'& .M4LIcon-icon': {
|
|
288
|
+
backgroundColor: string;
|
|
289
|
+
};
|
|
290
|
+
'& .MuiTypography-root'?: undefined;
|
|
291
|
+
borderColor?: undefined;
|
|
292
|
+
};
|
|
293
|
+
'&:active': {
|
|
294
|
+
backgroundColor: string;
|
|
295
|
+
color: string;
|
|
296
|
+
'& .M4LIcon-icon': {
|
|
297
|
+
backgroundColor: string;
|
|
298
|
+
};
|
|
299
|
+
borderColor?: undefined;
|
|
300
|
+
};
|
|
301
|
+
'&.Mui-focusVisible': {
|
|
302
|
+
backgroundColor: string;
|
|
303
|
+
color: string;
|
|
304
|
+
'& .M4LIcon-icon': {
|
|
305
|
+
backgroundColor: string;
|
|
306
|
+
};
|
|
307
|
+
'&:before': {
|
|
308
|
+
content: string;
|
|
309
|
+
};
|
|
310
|
+
'&::before'?: undefined;
|
|
311
|
+
borderColor?: undefined;
|
|
312
|
+
};
|
|
313
|
+
padding?: undefined;
|
|
314
|
+
backgroundColor?: undefined;
|
|
315
|
+
boxShadow?: undefined;
|
|
316
|
+
position?: undefined;
|
|
317
|
+
'& .M4LTypography-root'?: undefined;
|
|
318
|
+
border?: undefined;
|
|
319
|
+
borderColor?: undefined;
|
|
320
|
+
};
|
|
321
|
+
height?: undefined;
|
|
322
|
+
minHeight?: undefined;
|
|
323
|
+
'& .M4LTypography-root'?: undefined;
|
|
324
|
+
color?: undefined;
|
|
325
|
+
borderRadius?: undefined;
|
|
326
|
+
'&.M4LLoadingButton-variantContained'?: undefined;
|
|
327
|
+
'&.M4LLoadingButton-skeleton'?: undefined;
|
|
328
|
+
'& .MuiCircularProgress-root'?: undefined;
|
|
329
|
+
};
|
|
6
330
|
width: string;
|
|
7
331
|
display: string;
|
|
8
332
|
justifyContent: string;
|
|
333
|
+
height: string;
|
|
334
|
+
minHeight: string;
|
|
9
335
|
'& .MuiButtonBase-root.MuiLoadingButton-loading': {
|
|
10
336
|
'& .M4LTypography-root': {
|
|
11
337
|
opacity: string;
|