@m4l/styles 0.0.1 → 0.0.3
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 +392 -383
- package/package.json +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +5 -2
- package/theme/overrides/M4LExtendedComponents/M4LErrorLabel.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +4 -1
- package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
- package/theme/overrides/MUIComponents/CmpDisenoTest.d.ts +1 -1
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
- package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
- package/theme/overrides/MUIComponents/DynamicFilter.d.ts +1 -1
- package/theme/overrides/MUIComponents/Input.d.ts +72 -32
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
- package/theme/overrides/MUIComponents/Table.d.ts +144 -64
- package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { alpha as e, useTheme as S } from "@mui/material/styles";
|
|
2
2
|
import { useResponsive as L } from "@m4l/graphics";
|
|
3
3
|
import { alpha as F } from "@mui/material";
|
|
4
|
-
function u(
|
|
5
|
-
return `linear-gradient(to bottom, ${
|
|
4
|
+
function u(o, r) {
|
|
5
|
+
return `linear-gradient(to bottom, ${o}, ${r})`;
|
|
6
6
|
}
|
|
7
7
|
const g = {
|
|
8
8
|
lighter: "#C8FACD",
|
|
@@ -176,7 +176,7 @@ const g = {
|
|
|
176
176
|
contrastText: "#fff"
|
|
177
177
|
}
|
|
178
178
|
], A = l[0], I = l[1], z = l[2], P = l[3], E = l[4], H = l[5];
|
|
179
|
-
function W(
|
|
179
|
+
function W(o) {
|
|
180
180
|
return {
|
|
181
181
|
purple: I,
|
|
182
182
|
cyan: z,
|
|
@@ -184,39 +184,39 @@ function W(r) {
|
|
|
184
184
|
orange: E,
|
|
185
185
|
red: H,
|
|
186
186
|
default: A
|
|
187
|
-
}[
|
|
187
|
+
}[o];
|
|
188
188
|
}
|
|
189
|
-
function
|
|
190
|
-
return Math.round(parseFloat(
|
|
189
|
+
function _(o) {
|
|
190
|
+
return Math.round(parseFloat(o) * 16);
|
|
191
191
|
}
|
|
192
|
-
function n(
|
|
193
|
-
return `${
|
|
192
|
+
function n(o) {
|
|
193
|
+
return `${o / 16}rem`;
|
|
194
194
|
}
|
|
195
|
-
function d({ sm:
|
|
195
|
+
function d({ sm: o, md: r, lg: t }) {
|
|
196
196
|
return {
|
|
197
197
|
"@media (min-width:600px)": {
|
|
198
|
-
fontSize: n(
|
|
198
|
+
fontSize: n(o)
|
|
199
199
|
},
|
|
200
200
|
"@media (min-width:900px)": {
|
|
201
|
-
fontSize: n(
|
|
201
|
+
fontSize: n(r)
|
|
202
202
|
},
|
|
203
203
|
"@media (min-width:1200px)": {
|
|
204
204
|
fontSize: n(t)
|
|
205
205
|
}
|
|
206
206
|
};
|
|
207
207
|
}
|
|
208
|
-
function
|
|
208
|
+
function G() {
|
|
209
209
|
return [...S().breakpoints.keys].reverse().reduce((t, i) => {
|
|
210
210
|
const M = L("up", i);
|
|
211
211
|
return !t && M ? i : t;
|
|
212
212
|
}, null) || "xs";
|
|
213
213
|
}
|
|
214
|
-
function
|
|
215
|
-
const
|
|
214
|
+
function Jo(o) {
|
|
215
|
+
const r = S(), t = G(), i = r.breakpoints.up(t === "xl" ? "lg" : t), w = (o === "h1" || o === "h2" || o === "h3" || o === "h4" || o === "h5" || o === "h6") && r.typography[o][i] ? r.typography[o][i] : r.typography[o], h = _(w.fontSize), m = Number(r.typography[o].lineHeight) * h, { fontWeight: B, letterSpacing: O } = r.typography[o];
|
|
216
216
|
return { fontSize: h, lineHeight: m, fontWeight: B, letterSpacing: O };
|
|
217
217
|
}
|
|
218
|
-
const
|
|
219
|
-
fontFamily:
|
|
218
|
+
const N = "Public Sans, sans-serif", Y = {
|
|
219
|
+
fontFamily: N,
|
|
220
220
|
fontWeightRegular: 400,
|
|
221
221
|
fontWeightMedium: 600,
|
|
222
222
|
fontWeightBold: 700,
|
|
@@ -298,53 +298,53 @@ const _ = "Public Sans, sans-serif", Y = {
|
|
|
298
298
|
fontSize: n(14),
|
|
299
299
|
textTransform: "capitalize"
|
|
300
300
|
}
|
|
301
|
-
}, C = p.light.grey[500], $ = "#000000", v = (
|
|
302
|
-
const
|
|
301
|
+
}, C = p.light.grey[500], $ = "#000000", v = (o) => {
|
|
302
|
+
const r = e(o, 0.2), t = e(o, 0.14), i = e(o, 0.12);
|
|
303
303
|
return [
|
|
304
304
|
"none",
|
|
305
|
-
`0px 2px 1px -1px ${
|
|
306
|
-
`0px 3px 1px -2px ${
|
|
307
|
-
`0px 3px 3px -2px ${
|
|
308
|
-
`0px 2px 4px -1px ${
|
|
309
|
-
`0px 3px 5px -1px ${
|
|
310
|
-
`0px 3px 5px -1px ${
|
|
311
|
-
`0px 4px 5px -2px ${
|
|
312
|
-
`0px 5px 5px -3px ${
|
|
313
|
-
`0px 5px 6px -3px ${
|
|
314
|
-
`0px 6px 6px -3px ${
|
|
315
|
-
`0px 6px 7px -4px ${
|
|
316
|
-
`0px 7px 8px -4px ${
|
|
317
|
-
`0px 7px 8px -4px ${
|
|
318
|
-
`0px 7px 9px -4px ${
|
|
319
|
-
`0px 8px 9px -5px ${
|
|
320
|
-
`0px 8px 10px -5px ${
|
|
321
|
-
`0px 8px 11px -5px ${
|
|
322
|
-
`0px 9px 11px -5px ${
|
|
323
|
-
`0px 9px 12px -6px ${
|
|
324
|
-
`0px 10px 13px -6px ${
|
|
325
|
-
`0px 10px 13px -6px ${
|
|
326
|
-
`0px 10px 14px -6px ${
|
|
327
|
-
`0px 11px 14px -7px ${
|
|
328
|
-
`0px 11px 15px -7px ${
|
|
305
|
+
`0px 2px 1px -1px ${r},0px 1px 1px 0px ${t},0px 1px 3px 0px ${i}`,
|
|
306
|
+
`0px 3px 1px -2px ${r},0px 2px 2px 0px ${t},0px 1px 5px 0px ${i}`,
|
|
307
|
+
`0px 3px 3px -2px ${r},0px 3px 4px 0px ${t},0px 1px 8px 0px ${i}`,
|
|
308
|
+
`0px 2px 4px -1px ${r},0px 4px 5px 0px ${t},0px 1px 10px 0px ${i}`,
|
|
309
|
+
`0px 3px 5px -1px ${r},0px 5px 8px 0px ${t},0px 1px 14px 0px ${i}`,
|
|
310
|
+
`0px 3px 5px -1px ${r},0px 6px 10px 0px ${t},0px 1px 18px 0px ${i}`,
|
|
311
|
+
`0px 4px 5px -2px ${r},0px 7px 10px 1px ${t},0px 2px 16px 1px ${i}`,
|
|
312
|
+
`0px 5px 5px -3px ${r},0px 8px 10px 1px ${t},0px 3px 14px 2px ${i}`,
|
|
313
|
+
`0px 5px 6px -3px ${r},0px 9px 12px 1px ${t},0px 3px 16px 2px ${i}`,
|
|
314
|
+
`0px 6px 6px -3px ${r},0px 10px 14px 1px ${t},0px 4px 18px 3px ${i}`,
|
|
315
|
+
`0px 6px 7px -4px ${r},0px 11px 15px 1px ${t},0px 4px 20px 3px ${i}`,
|
|
316
|
+
`0px 7px 8px -4px ${r},0px 12px 17px 2px ${t},0px 5px 22px 4px ${i}`,
|
|
317
|
+
`0px 7px 8px -4px ${r},0px 13px 19px 2px ${t},0px 5px 24px 4px ${i}`,
|
|
318
|
+
`0px 7px 9px -4px ${r},0px 14px 21px 2px ${t},0px 5px 26px 4px ${i}`,
|
|
319
|
+
`0px 8px 9px -5px ${r},0px 15px 22px 2px ${t},0px 6px 28px 5px ${i}`,
|
|
320
|
+
`0px 8px 10px -5px ${r},0px 16px 24px 2px ${t},0px 6px 30px 5px ${i}`,
|
|
321
|
+
`0px 8px 11px -5px ${r},0px 17px 26px 2px ${t},0px 6px 32px 5px ${i}`,
|
|
322
|
+
`0px 9px 11px -5px ${r},0px 18px 28px 2px ${t},0px 7px 34px 6px ${i}`,
|
|
323
|
+
`0px 9px 12px -6px ${r},0px 19px 29px 2px ${t},0px 7px 36px 6px ${i}`,
|
|
324
|
+
`0px 10px 13px -6px ${r},0px 20px 31px 3px ${t},0px 8px 38px 7px ${i}`,
|
|
325
|
+
`0px 10px 13px -6px ${r},0px 21px 33px 3px ${t},0px 8px 40px 7px ${i}`,
|
|
326
|
+
`0px 10px 14px -6px ${r},0px 22px 35px 3px ${t},0px 8px 42px 7px ${i}`,
|
|
327
|
+
`0px 11px 14px -7px ${r},0px 23px 36px 3px ${t},0px 9px 44px 8px ${i}`,
|
|
328
|
+
`0px 11px 15px -7px ${r},0px 24px 38px 3px ${t},0px 9px 46px 8px ${i}`
|
|
329
329
|
];
|
|
330
|
-
}, k = (
|
|
331
|
-
const
|
|
330
|
+
}, k = (o) => {
|
|
331
|
+
const r = e(o, 0.16);
|
|
332
332
|
return {
|
|
333
|
-
z1: `0 1px 2px 0 ${
|
|
334
|
-
z8: `0 8px 16px 0 ${
|
|
335
|
-
z12: `0 12px 24px -4px ${
|
|
336
|
-
z16: `0 16px 32px -4px ${
|
|
337
|
-
z20: `0 20px 40px -4px ${
|
|
338
|
-
z24: `0 24px 48px 0 ${
|
|
333
|
+
z1: `0 1px 2px 0 ${r}`,
|
|
334
|
+
z8: `0 8px 16px 0 ${r}`,
|
|
335
|
+
z12: `0 12px 24px -4px ${r}`,
|
|
336
|
+
z16: `0 16px 32px -4px ${r}`,
|
|
337
|
+
z20: `0 20px 40px -4px ${r}`,
|
|
338
|
+
z24: `0 24px 48px 0 ${r}`,
|
|
339
339
|
primary: `0 8px 16px 0 ${e(p.light.primary.main, 0.24)}`,
|
|
340
340
|
info: `0 8px 16px 0 ${e(p.light.info.main, 0.24)}`,
|
|
341
341
|
secondary: `0 8px 16px 0 ${e(p.light.secondary.main, 0.24)}`,
|
|
342
342
|
success: `0 8px 16px 0 ${e(p.light.success.main, 0.24)}`,
|
|
343
343
|
warning: `0 8px 16px 0 ${e(p.light.warning.main, 0.24)}`,
|
|
344
344
|
error: `0 8px 16px 0 ${e(p.light.error.main, 0.24)}`,
|
|
345
|
-
card: `0 0 2px 0 ${e(
|
|
345
|
+
card: `0 0 2px 0 ${e(o, 0.2)}, 0 12px 24px -4px ${e(o, 0.12)}`,
|
|
346
346
|
dialog: `-40px 40px 80px -8px ${e(p.light.common.black, 0.24)}`,
|
|
347
|
-
dropdown: `0 0 2px 0 ${e(
|
|
347
|
+
dropdown: `0 0 2px 0 ${e(o, 0.24)}, -20px 20px 40px -4px ${e(o, 0.24)}`
|
|
348
348
|
};
|
|
349
349
|
}, j = {
|
|
350
350
|
light: k(C),
|
|
@@ -352,7 +352,7 @@ const _ = "Public Sans, sans-serif", Y = {
|
|
|
352
352
|
}, V = {
|
|
353
353
|
light: v(C),
|
|
354
354
|
dark: v($)
|
|
355
|
-
},
|
|
355
|
+
}, Qo = {
|
|
356
356
|
typography: Y,
|
|
357
357
|
shadows: V.light,
|
|
358
358
|
customShadows: {
|
|
@@ -378,13 +378,13 @@ const _ = "Public Sans, sans-serif", Y = {
|
|
|
378
378
|
}
|
|
379
379
|
}
|
|
380
380
|
};
|
|
381
|
-
function K(
|
|
381
|
+
function K(o) {
|
|
382
382
|
return {
|
|
383
383
|
MuiAvatar: {
|
|
384
384
|
styleOverrides: {
|
|
385
385
|
colorDefault: {
|
|
386
|
-
color:
|
|
387
|
-
backgroundColor:
|
|
386
|
+
color: o.palette.text.secondary,
|
|
387
|
+
backgroundColor: o.palette.grey[400]
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
},
|
|
@@ -392,18 +392,18 @@ function K(r) {
|
|
|
392
392
|
styleOverrides: {
|
|
393
393
|
avatar: {
|
|
394
394
|
fontSize: 16,
|
|
395
|
-
fontWeight:
|
|
395
|
+
fontWeight: o.typography.fontWeightMedium,
|
|
396
396
|
"&:first-of-type": {
|
|
397
397
|
fontSize: 14,
|
|
398
|
-
color:
|
|
399
|
-
backgroundColor:
|
|
398
|
+
color: o.palette.primary.main,
|
|
399
|
+
backgroundColor: o.palette.primary.lighter
|
|
400
400
|
}
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
};
|
|
405
405
|
}
|
|
406
|
-
function U(
|
|
406
|
+
function U(o) {
|
|
407
407
|
return {
|
|
408
408
|
MuiButton: {
|
|
409
409
|
styleOverrides: {
|
|
@@ -417,53 +417,53 @@ function U(r) {
|
|
|
417
417
|
height: 48
|
|
418
418
|
},
|
|
419
419
|
containedInherit: {
|
|
420
|
-
color:
|
|
421
|
-
boxShadow:
|
|
420
|
+
color: o.palette.grey[800],
|
|
421
|
+
boxShadow: o.customShadows.z1,
|
|
422
422
|
"&:hover": {
|
|
423
|
-
backgroundColor:
|
|
423
|
+
backgroundColor: o.palette.grey[400]
|
|
424
424
|
}
|
|
425
425
|
},
|
|
426
426
|
containedPrimary: {
|
|
427
|
-
boxShadow:
|
|
427
|
+
boxShadow: o.customShadows.z24
|
|
428
428
|
},
|
|
429
429
|
containedSecondary: {
|
|
430
|
-
boxShadow:
|
|
430
|
+
boxShadow: o.customShadows.secondary
|
|
431
431
|
},
|
|
432
432
|
containedInfo: {
|
|
433
|
-
boxShadow:
|
|
433
|
+
boxShadow: o.customShadows.info
|
|
434
434
|
},
|
|
435
435
|
containedSuccess: {
|
|
436
|
-
boxShadow:
|
|
436
|
+
boxShadow: o.customShadows.success
|
|
437
437
|
},
|
|
438
438
|
containedWarning: {
|
|
439
|
-
boxShadow:
|
|
439
|
+
boxShadow: o.customShadows.warning
|
|
440
440
|
},
|
|
441
441
|
containedError: {
|
|
442
|
-
boxShadow:
|
|
442
|
+
boxShadow: o.customShadows.error
|
|
443
443
|
},
|
|
444
444
|
outlinedInherit: {
|
|
445
|
-
border: `1px solid ${
|
|
445
|
+
border: `1px solid ${o.palette.grey[50032]}`,
|
|
446
446
|
"&:hover": {
|
|
447
|
-
backgroundColor:
|
|
447
|
+
backgroundColor: o.palette.action.hover
|
|
448
448
|
}
|
|
449
449
|
},
|
|
450
450
|
textInherit: {
|
|
451
451
|
"&:hover": {
|
|
452
|
-
backgroundColor:
|
|
452
|
+
backgroundColor: o.palette.action.hover
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
455
|
}
|
|
456
456
|
}
|
|
457
457
|
};
|
|
458
458
|
}
|
|
459
|
-
function q(
|
|
459
|
+
function q(o) {
|
|
460
460
|
return {
|
|
461
461
|
MuiIconButton: {
|
|
462
462
|
styleOverrides: {
|
|
463
463
|
root: {
|
|
464
464
|
"&.MuiIconButton-sizeSmall": {
|
|
465
|
-
height:
|
|
466
|
-
width:
|
|
465
|
+
height: o.spacing(3),
|
|
466
|
+
width: o.spacing(3),
|
|
467
467
|
margin: 0,
|
|
468
468
|
padding: 0,
|
|
469
469
|
" > svg": {
|
|
@@ -480,7 +480,7 @@ function q(r) {
|
|
|
480
480
|
}
|
|
481
481
|
};
|
|
482
482
|
}
|
|
483
|
-
function J(
|
|
483
|
+
function J(o) {
|
|
484
484
|
return {
|
|
485
485
|
MuiFab: {
|
|
486
486
|
defaultProps: {
|
|
@@ -488,41 +488,41 @@ function J(r) {
|
|
|
488
488
|
},
|
|
489
489
|
styleOverrides: {
|
|
490
490
|
root: {
|
|
491
|
-
boxShadow:
|
|
491
|
+
boxShadow: o.customShadows.z8,
|
|
492
492
|
"&:hover": {
|
|
493
493
|
boxShadow: "none",
|
|
494
|
-
backgroundColor:
|
|
494
|
+
backgroundColor: o.palette.grey[400]
|
|
495
495
|
}
|
|
496
496
|
},
|
|
497
497
|
primary: {
|
|
498
|
-
boxShadow:
|
|
498
|
+
boxShadow: o.customShadows.primary,
|
|
499
499
|
"&:hover": {
|
|
500
|
-
backgroundColor:
|
|
500
|
+
backgroundColor: o.palette.primary.dark
|
|
501
501
|
}
|
|
502
502
|
},
|
|
503
503
|
secondary: {
|
|
504
|
-
boxShadow:
|
|
504
|
+
boxShadow: o.customShadows.secondary,
|
|
505
505
|
"&:hover": {
|
|
506
|
-
backgroundColor:
|
|
506
|
+
backgroundColor: o.palette.secondary.dark
|
|
507
507
|
}
|
|
508
508
|
},
|
|
509
509
|
extended: {
|
|
510
510
|
"& svg": {
|
|
511
|
-
marginRight:
|
|
511
|
+
marginRight: o.spacing(1)
|
|
512
512
|
}
|
|
513
513
|
}
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
516
|
};
|
|
517
517
|
}
|
|
518
|
-
function Q(
|
|
518
|
+
function Q(o) {
|
|
519
519
|
return {
|
|
520
520
|
MuiCard: {
|
|
521
521
|
styleOverrides: {
|
|
522
522
|
root: {
|
|
523
523
|
position: "relative",
|
|
524
|
-
boxShadow:
|
|
525
|
-
borderRadius: Number(
|
|
524
|
+
boxShadow: o.customShadows.card,
|
|
525
|
+
borderRadius: Number(o.shape.borderRadius) * 2,
|
|
526
526
|
zIndex: 0
|
|
527
527
|
}
|
|
528
528
|
}
|
|
@@ -530,43 +530,43 @@ function Q(r) {
|
|
|
530
530
|
MuiCardHeader: {
|
|
531
531
|
defaultProps: {
|
|
532
532
|
titleTypographyProps: { variant: "h6" },
|
|
533
|
-
subheaderTypographyProps: { variant: "body2", marginTop:
|
|
533
|
+
subheaderTypographyProps: { variant: "body2", marginTop: o.spacing(0.5) }
|
|
534
534
|
},
|
|
535
535
|
styleOverrides: {
|
|
536
536
|
root: {
|
|
537
|
-
padding:
|
|
537
|
+
padding: o.spacing(3, 3, 0)
|
|
538
538
|
}
|
|
539
539
|
}
|
|
540
540
|
},
|
|
541
541
|
MuiCardContent: {
|
|
542
542
|
styleOverrides: {
|
|
543
543
|
root: {
|
|
544
|
-
padding:
|
|
544
|
+
padding: o.spacing(3)
|
|
545
545
|
}
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
548
|
};
|
|
549
549
|
}
|
|
550
|
-
function X(
|
|
550
|
+
function X(o) {
|
|
551
551
|
return {
|
|
552
552
|
MuiTabs: {
|
|
553
553
|
styleOverrides: {
|
|
554
554
|
root: {
|
|
555
555
|
padding: 0,
|
|
556
|
-
fontWeight:
|
|
557
|
-
borderTopLeftRadius:
|
|
558
|
-
borderTopRightRadius:
|
|
556
|
+
fontWeight: o.typography.fontWeightMedium,
|
|
557
|
+
borderTopLeftRadius: o.shape.borderRadius,
|
|
558
|
+
borderTopRightRadius: o.shape.borderRadius,
|
|
559
559
|
"&.Mui-selected": {
|
|
560
|
-
color:
|
|
560
|
+
color: o.palette.text.primary
|
|
561
561
|
},
|
|
562
562
|
"&:not(:last-of-type)": {
|
|
563
|
-
marginRight:
|
|
563
|
+
marginRight: o.spacing(5)
|
|
564
564
|
},
|
|
565
565
|
"@media (min-width: 600px)": {
|
|
566
566
|
minWidth: 48
|
|
567
567
|
},
|
|
568
568
|
"& .MuiButtonBase-root": {
|
|
569
|
-
...
|
|
569
|
+
...o.typography.subtitle2
|
|
570
570
|
}
|
|
571
571
|
},
|
|
572
572
|
labelIcon: {
|
|
@@ -574,7 +574,7 @@ function X(r) {
|
|
|
574
574
|
flexDirection: "row",
|
|
575
575
|
"& > *:first-of-type": {
|
|
576
576
|
marginBottom: 0,
|
|
577
|
-
marginRight:
|
|
577
|
+
marginRight: o.spacing(1)
|
|
578
578
|
}
|
|
579
579
|
},
|
|
580
580
|
wrapper: {
|
|
@@ -583,7 +583,7 @@ function X(r) {
|
|
|
583
583
|
},
|
|
584
584
|
textColorInherit: {
|
|
585
585
|
opacity: 1,
|
|
586
|
-
color:
|
|
586
|
+
color: o.palette.text.secondary
|
|
587
587
|
}
|
|
588
588
|
}
|
|
589
589
|
},
|
|
@@ -604,15 +604,15 @@ function X(r) {
|
|
|
604
604
|
}
|
|
605
605
|
};
|
|
606
606
|
}
|
|
607
|
-
function Z(
|
|
607
|
+
function Z(o) {
|
|
608
608
|
return {
|
|
609
609
|
MuiMenuItem: {
|
|
610
610
|
styleOverrides: {
|
|
611
611
|
root: {
|
|
612
612
|
"&.Mui-selected": {
|
|
613
|
-
backgroundColor:
|
|
613
|
+
backgroundColor: o.palette.action.selected,
|
|
614
614
|
"&:hover": {
|
|
615
|
-
backgroundColor:
|
|
615
|
+
backgroundColor: o.palette.action.hover
|
|
616
616
|
}
|
|
617
617
|
}
|
|
618
618
|
}
|
|
@@ -620,7 +620,7 @@ function Z(r) {
|
|
|
620
620
|
}
|
|
621
621
|
};
|
|
622
622
|
}
|
|
623
|
-
function
|
|
623
|
+
function oo(o) {
|
|
624
624
|
return {
|
|
625
625
|
MuiLink: {
|
|
626
626
|
defaultProps: {
|
|
@@ -629,21 +629,21 @@ function rr(r) {
|
|
|
629
629
|
styleOverrides: {
|
|
630
630
|
root: {
|
|
631
631
|
"&.MuiLink-underlineHover": {
|
|
632
|
-
textDecorationColor:
|
|
632
|
+
textDecorationColor: o.palette.primary.main
|
|
633
633
|
}
|
|
634
634
|
}
|
|
635
635
|
}
|
|
636
636
|
}
|
|
637
637
|
};
|
|
638
638
|
}
|
|
639
|
-
function
|
|
639
|
+
function ro(o) {
|
|
640
640
|
return {
|
|
641
641
|
MuiListItemIcon: {
|
|
642
642
|
styleOverrides: {
|
|
643
643
|
root: {
|
|
644
644
|
color: "inherit",
|
|
645
645
|
minWidth: "auto",
|
|
646
|
-
marginRight:
|
|
646
|
+
marginRight: o.spacing(2)
|
|
647
647
|
}
|
|
648
648
|
}
|
|
649
649
|
},
|
|
@@ -651,7 +651,7 @@ function or(r) {
|
|
|
651
651
|
styleOverrides: {
|
|
652
652
|
root: {
|
|
653
653
|
minWidth: "auto",
|
|
654
|
-
marginRight:
|
|
654
|
+
marginRight: o.spacing(2)
|
|
655
655
|
}
|
|
656
656
|
}
|
|
657
657
|
},
|
|
@@ -669,15 +669,15 @@ function or(r) {
|
|
|
669
669
|
}
|
|
670
670
|
};
|
|
671
671
|
}
|
|
672
|
-
function
|
|
672
|
+
function to(o) {
|
|
673
673
|
return {
|
|
674
674
|
MuiTableRow: {
|
|
675
675
|
styleOverrides: {
|
|
676
676
|
root: {
|
|
677
677
|
"&.Mui-selected": {
|
|
678
|
-
backgroundColor:
|
|
678
|
+
backgroundColor: o.palette.action.selected,
|
|
679
679
|
"&:hover": {
|
|
680
|
-
backgroundColor:
|
|
680
|
+
backgroundColor: o.palette.action.hover
|
|
681
681
|
}
|
|
682
682
|
}
|
|
683
683
|
}
|
|
@@ -689,31 +689,31 @@ function tr(r) {
|
|
|
689
689
|
borderBottom: "none"
|
|
690
690
|
},
|
|
691
691
|
head: {
|
|
692
|
-
color:
|
|
693
|
-
backgroundColor:
|
|
692
|
+
color: o.palette.text.secondary,
|
|
693
|
+
backgroundColor: o.palette.background.neutral,
|
|
694
694
|
"&:first-of-type": {
|
|
695
|
-
paddingLeft:
|
|
696
|
-
borderTopLeftRadius:
|
|
697
|
-
borderBottomLeftRadius:
|
|
698
|
-
boxShadow: `inset 8px 0 0 ${
|
|
695
|
+
paddingLeft: o.spacing(3),
|
|
696
|
+
borderTopLeftRadius: o.shape.borderRadius,
|
|
697
|
+
borderBottomLeftRadius: o.shape.borderRadius,
|
|
698
|
+
boxShadow: `inset 8px 0 0 ${o.palette.background.paper}`
|
|
699
699
|
},
|
|
700
700
|
"&:last-of-type": {
|
|
701
|
-
paddingRight:
|
|
702
|
-
borderTopRightRadius:
|
|
703
|
-
borderBottomRightRadius:
|
|
704
|
-
boxShadow: `inset -8px 0 0 ${
|
|
701
|
+
paddingRight: o.spacing(3),
|
|
702
|
+
borderTopRightRadius: o.shape.borderRadius,
|
|
703
|
+
borderBottomRightRadius: o.shape.borderRadius,
|
|
704
|
+
boxShadow: `inset -8px 0 0 ${o.palette.background.paper}`
|
|
705
705
|
}
|
|
706
706
|
},
|
|
707
707
|
stickyHeader: {
|
|
708
|
-
backgroundColor:
|
|
709
|
-
backgroundImage: `linear-gradient(to bottom, ${
|
|
708
|
+
backgroundColor: o.palette.background.paper,
|
|
709
|
+
backgroundImage: `linear-gradient(to bottom, ${o.palette.background.neutral} 0%, ${o.palette.background.neutral} 100%)`
|
|
710
710
|
},
|
|
711
711
|
body: {
|
|
712
712
|
"&:first-of-type": {
|
|
713
|
-
paddingLeft:
|
|
713
|
+
paddingLeft: o.spacing(3)
|
|
714
714
|
},
|
|
715
715
|
"&:last-of-type": {
|
|
716
|
-
paddingRight:
|
|
716
|
+
paddingRight: o.spacing(3)
|
|
717
717
|
}
|
|
718
718
|
}
|
|
719
719
|
}
|
|
@@ -721,13 +721,13 @@ function tr(r) {
|
|
|
721
721
|
MuiTablePagination: {
|
|
722
722
|
styleOverrides: {
|
|
723
723
|
root: {
|
|
724
|
-
...
|
|
724
|
+
...o.typography.caption
|
|
725
725
|
},
|
|
726
726
|
toolbar: {
|
|
727
727
|
"& .MuiInputBase-root": {
|
|
728
|
-
marginLeft:
|
|
729
|
-
marginRight:
|
|
730
|
-
...
|
|
728
|
+
marginLeft: o.spacing(1),
|
|
729
|
+
marginRight: o.spacing(3),
|
|
730
|
+
...o.typography.caption
|
|
731
731
|
},
|
|
732
732
|
"&.MuiToolbar-regular": {
|
|
733
733
|
minHeight: 40,
|
|
@@ -735,16 +735,16 @@ function tr(r) {
|
|
|
735
735
|
paddingRight: 0
|
|
736
736
|
},
|
|
737
737
|
"& .MuiTablePagination-displayedRows": {
|
|
738
|
-
...
|
|
738
|
+
...o.typography.caption
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
selectLabel: {
|
|
742
|
-
...
|
|
742
|
+
...o.typography.caption
|
|
743
743
|
},
|
|
744
744
|
select: {
|
|
745
745
|
paddingBottom: 4,
|
|
746
746
|
"&:focus": {
|
|
747
|
-
borderRadius:
|
|
747
|
+
borderRadius: o.shape.borderRadius
|
|
748
748
|
}
|
|
749
749
|
},
|
|
750
750
|
selectIcon: {
|
|
@@ -755,7 +755,7 @@ function tr(r) {
|
|
|
755
755
|
}
|
|
756
756
|
};
|
|
757
757
|
}
|
|
758
|
-
function
|
|
758
|
+
function eo(o) {
|
|
759
759
|
return {
|
|
760
760
|
MuiBadge: {
|
|
761
761
|
styleOverrides: {
|
|
@@ -768,7 +768,7 @@ function er(r) {
|
|
|
768
768
|
}
|
|
769
769
|
};
|
|
770
770
|
}
|
|
771
|
-
function
|
|
771
|
+
function io(o) {
|
|
772
772
|
return {
|
|
773
773
|
MuiPaper: {
|
|
774
774
|
defaultProps: {
|
|
@@ -777,7 +777,7 @@ function ir(r) {
|
|
|
777
777
|
variants: [
|
|
778
778
|
{
|
|
779
779
|
props: { variant: "outlined" },
|
|
780
|
-
style: { borderColor:
|
|
780
|
+
style: { borderColor: o.palette.grey[50012] }
|
|
781
781
|
}
|
|
782
782
|
],
|
|
783
783
|
styleOverrides: {
|
|
@@ -789,7 +789,7 @@ function ir(r) {
|
|
|
789
789
|
}
|
|
790
790
|
};
|
|
791
791
|
}
|
|
792
|
-
function
|
|
792
|
+
function ao(o) {
|
|
793
793
|
return {
|
|
794
794
|
MuiFormControl: {
|
|
795
795
|
styleOverrides: {
|
|
@@ -799,11 +799,11 @@ function ar(r) {
|
|
|
799
799
|
MuiInputBase: {
|
|
800
800
|
styleOverrides: {
|
|
801
801
|
root: {
|
|
802
|
-
backgroundColor:
|
|
803
|
-
...
|
|
804
|
-
borderRadius:
|
|
802
|
+
backgroundColor: o.palette.background.default,
|
|
803
|
+
...o.typography.body2,
|
|
804
|
+
borderRadius: o.spacing(1),
|
|
805
805
|
"&.Mui-disabled": {
|
|
806
|
-
"& svg": { color:
|
|
806
|
+
"& svg": { color: o.palette.text.disabled }
|
|
807
807
|
},
|
|
808
808
|
padding: "0px"
|
|
809
809
|
},
|
|
@@ -811,7 +811,7 @@ function ar(r) {
|
|
|
811
811
|
paddingLeft: "8px",
|
|
812
812
|
"&::placeholder": {
|
|
813
813
|
opacity: 1,
|
|
814
|
-
color:
|
|
814
|
+
color: o.palette.text.disabled
|
|
815
815
|
}
|
|
816
816
|
}
|
|
817
817
|
}
|
|
@@ -820,7 +820,7 @@ function ar(r) {
|
|
|
820
820
|
styleOverrides: {
|
|
821
821
|
underline: {
|
|
822
822
|
"&:before": {
|
|
823
|
-
borderBottomColor:
|
|
823
|
+
borderBottomColor: o.palette.grey[50056]
|
|
824
824
|
}
|
|
825
825
|
}
|
|
826
826
|
}
|
|
@@ -828,20 +828,20 @@ function ar(r) {
|
|
|
828
828
|
MuiFilledInput: {
|
|
829
829
|
styleOverrides: {
|
|
830
830
|
root: {
|
|
831
|
-
backgroundColor:
|
|
831
|
+
backgroundColor: o.palette.grey[50012],
|
|
832
832
|
"&:hover": {
|
|
833
|
-
backgroundColor:
|
|
833
|
+
backgroundColor: o.palette.grey[50016]
|
|
834
834
|
},
|
|
835
835
|
"&.Mui-focused": {
|
|
836
|
-
backgroundColor:
|
|
836
|
+
backgroundColor: o.palette.action.focus
|
|
837
837
|
},
|
|
838
838
|
"&.Mui-disabled": {
|
|
839
|
-
backgroundColor:
|
|
839
|
+
backgroundColor: o.palette.action.disabledBackground
|
|
840
840
|
}
|
|
841
841
|
},
|
|
842
842
|
underline: {
|
|
843
843
|
"&:before": {
|
|
844
|
-
borderBottomColor:
|
|
844
|
+
borderBottomColor: o.palette.grey[50056]
|
|
845
845
|
}
|
|
846
846
|
}
|
|
847
847
|
}
|
|
@@ -849,29 +849,29 @@ function ar(r) {
|
|
|
849
849
|
MuiOutlinedInput: {
|
|
850
850
|
styleOverrides: {
|
|
851
851
|
root: {
|
|
852
|
-
...
|
|
853
|
-
color:
|
|
852
|
+
...o.typography.body2,
|
|
853
|
+
color: o.palette.text.primary,
|
|
854
854
|
"& > input": {
|
|
855
|
-
padding:
|
|
855
|
+
padding: o.spacing(1.5, 1.5)
|
|
856
856
|
},
|
|
857
857
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
858
|
-
borderColor:
|
|
858
|
+
borderColor: o.palette.grey[50032],
|
|
859
859
|
fontSize: "0.875rem"
|
|
860
860
|
},
|
|
861
861
|
"&.Mui-disabled": {
|
|
862
862
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
863
|
-
borderColor:
|
|
863
|
+
borderColor: o.palette.action.disabledBackground
|
|
864
864
|
}
|
|
865
865
|
},
|
|
866
866
|
"& .MuiOutlinedInput-input:-webkit-autofill": {
|
|
867
|
-
WebkitBoxShadow: `0 0 0 1000px ${
|
|
867
|
+
WebkitBoxShadow: `0 0 0 1000px ${o.palette.background.autofill} inset`
|
|
868
868
|
}
|
|
869
869
|
}
|
|
870
870
|
}
|
|
871
871
|
}
|
|
872
872
|
};
|
|
873
873
|
}
|
|
874
|
-
function
|
|
874
|
+
function no(o) {
|
|
875
875
|
return {
|
|
876
876
|
MuiInputLabel: {
|
|
877
877
|
styleOverrides: {
|
|
@@ -886,12 +886,12 @@ function nr(r) {
|
|
|
886
886
|
}
|
|
887
887
|
};
|
|
888
888
|
}
|
|
889
|
-
function
|
|
889
|
+
function po(o) {
|
|
890
890
|
return {
|
|
891
891
|
MuiRadio: {
|
|
892
892
|
styleOverrides: {
|
|
893
893
|
root: {
|
|
894
|
-
padding:
|
|
894
|
+
padding: o.spacing(1),
|
|
895
895
|
svg: {
|
|
896
896
|
fontSize: 24,
|
|
897
897
|
"&[font-size=small]": {
|
|
@@ -903,8 +903,8 @@ function pr(r) {
|
|
|
903
903
|
}
|
|
904
904
|
};
|
|
905
905
|
}
|
|
906
|
-
function
|
|
907
|
-
const
|
|
906
|
+
function so(o) {
|
|
907
|
+
const r = o.palette.mode === "light";
|
|
908
908
|
return {
|
|
909
909
|
MuiDrawer: {
|
|
910
910
|
styleOverrides: {
|
|
@@ -912,14 +912,14 @@ function dr(r) {
|
|
|
912
912
|
'&[role="presentation"]': {
|
|
913
913
|
"& .MuiDrawer-paperAnchorLeft": {
|
|
914
914
|
boxShadow: `8px 24px 24px 12px ${F(
|
|
915
|
-
|
|
916
|
-
|
|
915
|
+
o.palette.grey[900],
|
|
916
|
+
r ? 0.16 : 0.48
|
|
917
917
|
)}`
|
|
918
918
|
},
|
|
919
919
|
"& .MuiDrawer-paperAnchorRight": {
|
|
920
920
|
boxShadow: `-8px 24px 24px 12px ${F(
|
|
921
|
-
|
|
922
|
-
|
|
921
|
+
o.palette.grey[900],
|
|
922
|
+
r ? 0.16 : 0.48
|
|
923
923
|
)}`
|
|
924
924
|
}
|
|
925
925
|
}
|
|
@@ -928,23 +928,23 @@ function dr(r) {
|
|
|
928
928
|
}
|
|
929
929
|
};
|
|
930
930
|
}
|
|
931
|
-
function
|
|
931
|
+
function lo(o) {
|
|
932
932
|
return {
|
|
933
933
|
MuiDialog: {
|
|
934
934
|
styleOverrides: {
|
|
935
935
|
paper: {
|
|
936
|
-
boxShadow:
|
|
936
|
+
boxShadow: o.customShadows.dialog,
|
|
937
937
|
"&.MuiPaper-rounded": {
|
|
938
|
-
borderRadius: Number(
|
|
938
|
+
borderRadius: Number(o.shape.borderRadius) * 2
|
|
939
939
|
},
|
|
940
940
|
"&.MuiDialog-paperFullScreen": {
|
|
941
941
|
borderRadius: 0
|
|
942
942
|
},
|
|
943
943
|
"&.MuiDialog-paper .MuiDialogActions-root": {
|
|
944
|
-
padding:
|
|
944
|
+
padding: o.spacing(3)
|
|
945
945
|
},
|
|
946
946
|
"@media (max-width: 600px)": {
|
|
947
|
-
margin:
|
|
947
|
+
margin: o.spacing(2)
|
|
948
948
|
},
|
|
949
949
|
"@media (max-width: 663.95px)": {
|
|
950
950
|
"&.MuiDialog-paperWidthSm.MuiDialog-paperScrollBody": {
|
|
@@ -960,7 +960,7 @@ function sr(r) {
|
|
|
960
960
|
MuiDialogTitle: {
|
|
961
961
|
styleOverrides: {
|
|
962
962
|
root: {
|
|
963
|
-
padding:
|
|
963
|
+
padding: o.spacing(3, 3, 0)
|
|
964
964
|
}
|
|
965
965
|
}
|
|
966
966
|
},
|
|
@@ -969,7 +969,7 @@ function sr(r) {
|
|
|
969
969
|
root: {
|
|
970
970
|
borderTop: 0,
|
|
971
971
|
borderBottom: 0,
|
|
972
|
-
padding:
|
|
972
|
+
padding: o.spacing(3)
|
|
973
973
|
}
|
|
974
974
|
}
|
|
975
975
|
},
|
|
@@ -977,15 +977,15 @@ function sr(r) {
|
|
|
977
977
|
styleOverrides: {
|
|
978
978
|
root: {
|
|
979
979
|
"& > :not(:first-of-type)": {
|
|
980
|
-
marginLeft:
|
|
980
|
+
marginLeft: o.spacing(1.5)
|
|
981
981
|
}
|
|
982
982
|
}
|
|
983
983
|
}
|
|
984
984
|
}
|
|
985
985
|
};
|
|
986
986
|
}
|
|
987
|
-
function
|
|
988
|
-
const
|
|
987
|
+
function uo(o) {
|
|
988
|
+
const r = o.palette.mode === "light";
|
|
989
989
|
return {
|
|
990
990
|
MuiSlider: {
|
|
991
991
|
defaultProps: {
|
|
@@ -994,52 +994,52 @@ function lr(r) {
|
|
|
994
994
|
styleOverrides: {
|
|
995
995
|
root: {
|
|
996
996
|
"&.Mui-disabled": {
|
|
997
|
-
color:
|
|
997
|
+
color: o.palette.action.disabled
|
|
998
998
|
}
|
|
999
999
|
},
|
|
1000
1000
|
markLabel: {
|
|
1001
1001
|
fontSize: 13,
|
|
1002
|
-
color:
|
|
1002
|
+
color: o.palette.text.disabled
|
|
1003
1003
|
},
|
|
1004
1004
|
valueLabel: {
|
|
1005
1005
|
borderRadius: 8,
|
|
1006
|
-
backgroundColor:
|
|
1006
|
+
backgroundColor: o.palette.grey[r ? 800 : 700]
|
|
1007
1007
|
}
|
|
1008
1008
|
}
|
|
1009
1009
|
}
|
|
1010
1010
|
};
|
|
1011
1011
|
}
|
|
1012
|
-
function
|
|
1013
|
-
const
|
|
1012
|
+
function co(o) {
|
|
1013
|
+
const r = o.palette.mode === "light";
|
|
1014
1014
|
return {
|
|
1015
1015
|
MuiSwitch: {
|
|
1016
1016
|
styleOverrides: {
|
|
1017
1017
|
thumb: {
|
|
1018
|
-
boxShadow:
|
|
1018
|
+
boxShadow: o.customShadows.z1
|
|
1019
1019
|
},
|
|
1020
1020
|
track: {
|
|
1021
1021
|
opacity: 1,
|
|
1022
|
-
backgroundColor:
|
|
1022
|
+
backgroundColor: o.palette.grey[500]
|
|
1023
1023
|
},
|
|
1024
1024
|
switchBase: {
|
|
1025
1025
|
left: 0,
|
|
1026
1026
|
right: "auto",
|
|
1027
1027
|
"&:not(:.Mui-checked)": {
|
|
1028
|
-
color:
|
|
1028
|
+
color: o.palette.grey[r ? 100 : 300]
|
|
1029
1029
|
},
|
|
1030
1030
|
"&.Mui-checked.Mui-disabled, &.Mui-disabled": {
|
|
1031
|
-
color:
|
|
1031
|
+
color: o.palette.grey[r ? 400 : 600]
|
|
1032
1032
|
},
|
|
1033
1033
|
"&.Mui-disabled+.MuiSwitch-track": {
|
|
1034
1034
|
opacity: 1,
|
|
1035
|
-
backgroundColor: `${
|
|
1035
|
+
backgroundColor: `${o.palette.action.disabledBackground} !important`
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
}
|
|
1039
1039
|
}
|
|
1040
1040
|
};
|
|
1041
1041
|
}
|
|
1042
|
-
function
|
|
1042
|
+
function go(o) {
|
|
1043
1043
|
return {
|
|
1044
1044
|
MuiSvgIcon: {
|
|
1045
1045
|
styleOverrides: {
|
|
@@ -1057,45 +1057,45 @@ function cr(r) {
|
|
|
1057
1057
|
}
|
|
1058
1058
|
};
|
|
1059
1059
|
}
|
|
1060
|
-
function
|
|
1061
|
-
const
|
|
1060
|
+
function xo(o) {
|
|
1061
|
+
const r = o.palette.mode === "light";
|
|
1062
1062
|
return {
|
|
1063
1063
|
MuiTooltip: {
|
|
1064
1064
|
styleOverrides: {
|
|
1065
1065
|
tooltip: {
|
|
1066
|
-
backgroundColor:
|
|
1066
|
+
backgroundColor: o.palette.grey[r ? 800 : 700]
|
|
1067
1067
|
},
|
|
1068
1068
|
arrow: {
|
|
1069
|
-
color:
|
|
1069
|
+
color: o.palette.grey[r ? 800 : 700]
|
|
1070
1070
|
}
|
|
1071
1071
|
}
|
|
1072
1072
|
}
|
|
1073
1073
|
};
|
|
1074
1074
|
}
|
|
1075
|
-
function
|
|
1075
|
+
function bo(o) {
|
|
1076
1076
|
return {
|
|
1077
1077
|
MuiPopover: {
|
|
1078
1078
|
styleOverrides: {
|
|
1079
1079
|
paper: {
|
|
1080
|
-
boxShadow:
|
|
1081
|
-
borderRadius: Number(
|
|
1080
|
+
boxShadow: o.customShadows.dropdown,
|
|
1081
|
+
borderRadius: Number(o.shape.borderRadius) * 1.5
|
|
1082
1082
|
}
|
|
1083
1083
|
}
|
|
1084
1084
|
}
|
|
1085
1085
|
};
|
|
1086
1086
|
}
|
|
1087
|
-
function
|
|
1087
|
+
function yo(o) {
|
|
1088
1088
|
return {
|
|
1089
1089
|
MuiStepConnector: {
|
|
1090
1090
|
styleOverrides: {
|
|
1091
1091
|
line: {
|
|
1092
|
-
borderColor:
|
|
1092
|
+
borderColor: o.palette.divider
|
|
1093
1093
|
}
|
|
1094
1094
|
}
|
|
1095
1095
|
}
|
|
1096
1096
|
};
|
|
1097
1097
|
}
|
|
1098
|
-
function
|
|
1098
|
+
function fo(o) {
|
|
1099
1099
|
return {
|
|
1100
1100
|
MuiDataGrid: {
|
|
1101
1101
|
styleOverrides: {
|
|
@@ -1106,21 +1106,21 @@ function yr(r) {
|
|
|
1106
1106
|
borderTop: 0
|
|
1107
1107
|
},
|
|
1108
1108
|
"& .MuiDataGrid-toolbarContainer": {
|
|
1109
|
-
padding:
|
|
1110
|
-
backgroundColor:
|
|
1109
|
+
padding: o.spacing(2),
|
|
1110
|
+
backgroundColor: o.palette.background.neutral,
|
|
1111
1111
|
"& .MuiButton-root": {
|
|
1112
|
-
marginRight:
|
|
1113
|
-
color:
|
|
1112
|
+
marginRight: o.spacing(1.5),
|
|
1113
|
+
color: o.palette.text.primary,
|
|
1114
1114
|
"&:hover": {
|
|
1115
|
-
backgroundColor:
|
|
1115
|
+
backgroundColor: o.palette.action.hover
|
|
1116
1116
|
}
|
|
1117
1117
|
}
|
|
1118
1118
|
},
|
|
1119
1119
|
"& .MuiDataGrid-cell, .MuiDataGrid-columnsContainer": {
|
|
1120
|
-
borderBottom: `1px solid ${
|
|
1120
|
+
borderBottom: `1px solid ${o.palette.divider}`
|
|
1121
1121
|
},
|
|
1122
1122
|
"& .MuiDataGrid-columnSeparator": {
|
|
1123
|
-
color:
|
|
1123
|
+
color: o.palette.divider
|
|
1124
1124
|
},
|
|
1125
1125
|
'& .MuiDataGrid-columnHeader[data-field="__check__"]': {
|
|
1126
1126
|
padding: 0
|
|
@@ -1132,11 +1132,11 @@ function yr(r) {
|
|
|
1132
1132
|
styleOverrides: {
|
|
1133
1133
|
root: {
|
|
1134
1134
|
"& .MuiDataGrid-gridMenuList": {
|
|
1135
|
-
boxShadow:
|
|
1136
|
-
borderRadius:
|
|
1135
|
+
boxShadow: o.customShadows.z20,
|
|
1136
|
+
borderRadius: o.shape.borderRadius
|
|
1137
1137
|
},
|
|
1138
1138
|
"& .MuiMenuItem-root": {
|
|
1139
|
-
...
|
|
1139
|
+
...o.typography.body2
|
|
1140
1140
|
}
|
|
1141
1141
|
}
|
|
1142
1142
|
}
|
|
@@ -1144,20 +1144,20 @@ function yr(r) {
|
|
|
1144
1144
|
MuiGridFilterForm: {
|
|
1145
1145
|
styleOverrides: {
|
|
1146
1146
|
root: {
|
|
1147
|
-
padding:
|
|
1147
|
+
padding: o.spacing(1.5, 0),
|
|
1148
1148
|
"& .MuiFormControl-root": {
|
|
1149
|
-
margin:
|
|
1149
|
+
margin: o.spacing(0, 0.5)
|
|
1150
1150
|
},
|
|
1151
1151
|
"& .MuiInput-root": {
|
|
1152
|
-
marginTop:
|
|
1152
|
+
marginTop: o.spacing(3),
|
|
1153
1153
|
"&::before, &::after": {
|
|
1154
1154
|
display: "none"
|
|
1155
1155
|
},
|
|
1156
1156
|
"& .MuiNativeSelect-select, .MuiInput-input": {
|
|
1157
|
-
...
|
|
1158
|
-
padding:
|
|
1159
|
-
borderRadius:
|
|
1160
|
-
backgroundColor:
|
|
1157
|
+
...o.typography.body2,
|
|
1158
|
+
padding: o.spacing(0.75, 1),
|
|
1159
|
+
borderRadius: o.shape.borderRadius,
|
|
1160
|
+
backgroundColor: o.palette.background.neutral
|
|
1161
1161
|
},
|
|
1162
1162
|
"& .MuiSvgIcon-root": {
|
|
1163
1163
|
right: 4
|
|
@@ -1169,21 +1169,21 @@ function yr(r) {
|
|
|
1169
1169
|
MuiGridPanelFooter: {
|
|
1170
1170
|
styleOverrides: {
|
|
1171
1171
|
root: {
|
|
1172
|
-
padding:
|
|
1172
|
+
padding: o.spacing(2),
|
|
1173
1173
|
justifyContent: "flex-end",
|
|
1174
1174
|
"& .MuiButton-root": {
|
|
1175
1175
|
"&:first-of-type": {
|
|
1176
|
-
marginRight:
|
|
1177
|
-
color:
|
|
1176
|
+
marginRight: o.spacing(1.5),
|
|
1177
|
+
color: o.palette.text.primary,
|
|
1178
1178
|
"&:hover": {
|
|
1179
|
-
backgroundColor:
|
|
1179
|
+
backgroundColor: o.palette.action.hover
|
|
1180
1180
|
}
|
|
1181
1181
|
},
|
|
1182
1182
|
"&:last-of-type": {
|
|
1183
|
-
color:
|
|
1184
|
-
backgroundColor:
|
|
1183
|
+
color: o.palette.common.white,
|
|
1184
|
+
backgroundColor: o.palette.primary.main,
|
|
1185
1185
|
"&:hover": {
|
|
1186
|
-
backgroundColor:
|
|
1186
|
+
backgroundColor: o.palette.primary.dark
|
|
1187
1187
|
}
|
|
1188
1188
|
}
|
|
1189
1189
|
}
|
|
@@ -1192,7 +1192,7 @@ function yr(r) {
|
|
|
1192
1192
|
}
|
|
1193
1193
|
};
|
|
1194
1194
|
}
|
|
1195
|
-
function
|
|
1195
|
+
function Mo(o) {
|
|
1196
1196
|
return {
|
|
1197
1197
|
MuiSkeleton: {
|
|
1198
1198
|
defaultProps: {
|
|
@@ -1200,23 +1200,23 @@ function fr(r) {
|
|
|
1200
1200
|
},
|
|
1201
1201
|
styleOverrides: {
|
|
1202
1202
|
root: {
|
|
1203
|
-
backgroundColor:
|
|
1203
|
+
backgroundColor: o.palette.divider
|
|
1204
1204
|
}
|
|
1205
1205
|
}
|
|
1206
1206
|
}
|
|
1207
1207
|
};
|
|
1208
1208
|
}
|
|
1209
|
-
function
|
|
1210
|
-
const
|
|
1209
|
+
function ho(o) {
|
|
1210
|
+
const r = e(o.palette.grey[900], 0.48), t = e(o.palette.grey[900], 1);
|
|
1211
1211
|
return {
|
|
1212
1212
|
MuiBackdrop: {
|
|
1213
1213
|
styleOverrides: {
|
|
1214
1214
|
root: {
|
|
1215
1215
|
background: [
|
|
1216
1216
|
"rgb(22,28,36)",
|
|
1217
|
-
`-moz-linear-gradient(75deg, ${
|
|
1218
|
-
`-webkit-linear-gradient(75deg, ${
|
|
1219
|
-
`linear-gradient(75deg, ${
|
|
1217
|
+
`-moz-linear-gradient(75deg, ${r} 0%, ${t} 100%)`,
|
|
1218
|
+
`-webkit-linear-gradient(75deg, ${r} 0%, ${t} 100%)`,
|
|
1219
|
+
`linear-gradient(75deg, ${r} 0%, ${t} 100%)`
|
|
1220
1220
|
],
|
|
1221
1221
|
"&.MuiBackdrop-invisible": {
|
|
1222
1222
|
background: "transparent"
|
|
@@ -1226,8 +1226,8 @@ function Mr(r) {
|
|
|
1226
1226
|
}
|
|
1227
1227
|
};
|
|
1228
1228
|
}
|
|
1229
|
-
function
|
|
1230
|
-
const
|
|
1229
|
+
function Fo(o) {
|
|
1230
|
+
const r = o.palette.mode === "light";
|
|
1231
1231
|
return {
|
|
1232
1232
|
MuiLinearProgress: {
|
|
1233
1233
|
styleOverrides: {
|
|
@@ -1239,7 +1239,7 @@ function hr(r) {
|
|
|
1239
1239
|
borderRadius: 4
|
|
1240
1240
|
},
|
|
1241
1241
|
colorPrimary: {
|
|
1242
|
-
backgroundColor:
|
|
1242
|
+
backgroundColor: o.palette.primary[r ? "lighter" : "darker"]
|
|
1243
1243
|
},
|
|
1244
1244
|
buffer: {
|
|
1245
1245
|
backgroundColor: "transparent"
|
|
@@ -1248,7 +1248,7 @@ function hr(r) {
|
|
|
1248
1248
|
}
|
|
1249
1249
|
};
|
|
1250
1250
|
}
|
|
1251
|
-
function
|
|
1251
|
+
function vo(o) {
|
|
1252
1252
|
return {
|
|
1253
1253
|
MuiTimelineDot: {
|
|
1254
1254
|
styleOverrides: {
|
|
@@ -1260,43 +1260,43 @@ function Fr(r) {
|
|
|
1260
1260
|
MuiTimelineConnector: {
|
|
1261
1261
|
styleOverrides: {
|
|
1262
1262
|
root: {
|
|
1263
|
-
backgroundColor:
|
|
1263
|
+
backgroundColor: o.palette.divider
|
|
1264
1264
|
}
|
|
1265
1265
|
}
|
|
1266
1266
|
}
|
|
1267
1267
|
};
|
|
1268
1268
|
}
|
|
1269
|
-
function
|
|
1269
|
+
function ko(o) {
|
|
1270
1270
|
return {
|
|
1271
1271
|
MuiCheckbox: {
|
|
1272
1272
|
styleOverrides: {
|
|
1273
1273
|
root: {
|
|
1274
|
-
padding:
|
|
1274
|
+
padding: o.spacing(1),
|
|
1275
1275
|
oleee: "sss",
|
|
1276
|
-
color:
|
|
1276
|
+
color: o.palette.action.active,
|
|
1277
1277
|
"& .Mui-checked": {
|
|
1278
|
-
color:
|
|
1278
|
+
color: o.palette.primary.main
|
|
1279
1279
|
},
|
|
1280
1280
|
"&.Mui-checked.Mui-disabled, &.Mui-disabled": {
|
|
1281
|
-
color:
|
|
1281
|
+
color: o.palette.action.disabled
|
|
1282
1282
|
}
|
|
1283
1283
|
}
|
|
1284
1284
|
}
|
|
1285
1285
|
}
|
|
1286
1286
|
};
|
|
1287
1287
|
}
|
|
1288
|
-
function
|
|
1288
|
+
function So(o) {
|
|
1289
1289
|
return {
|
|
1290
1290
|
MuiAccordion: {
|
|
1291
1291
|
styleOverrides: {
|
|
1292
1292
|
root: {
|
|
1293
|
-
backgroundColor:
|
|
1293
|
+
backgroundColor: o.palette.background.default,
|
|
1294
1294
|
width: "100%",
|
|
1295
1295
|
marginTop: "0px",
|
|
1296
|
-
marginBottom:
|
|
1296
|
+
marginBottom: o.spacing(1.5),
|
|
1297
1297
|
"&.Mui-expanded": {
|
|
1298
1298
|
marginTop: "0px",
|
|
1299
|
-
marginBottom:
|
|
1299
|
+
marginBottom: o.spacing(1.5)
|
|
1300
1300
|
},
|
|
1301
1301
|
border: "0px solid transparent",
|
|
1302
1302
|
"&.Mui-disabled": {
|
|
@@ -1311,35 +1311,35 @@ function kr(r) {
|
|
|
1311
1311
|
MuiAccordionDetails: {
|
|
1312
1312
|
styleOverrides: {
|
|
1313
1313
|
root: {
|
|
1314
|
-
padding: `0px ${
|
|
1314
|
+
padding: `0px ${o.spacing(0)}`
|
|
1315
1315
|
}
|
|
1316
1316
|
}
|
|
1317
1317
|
},
|
|
1318
1318
|
MuiAccordionSummary: {
|
|
1319
1319
|
styleOverrides: {
|
|
1320
1320
|
root: {
|
|
1321
|
-
borderRadius:
|
|
1322
|
-
height:
|
|
1323
|
-
minHeight:
|
|
1324
|
-
backgroundColor:
|
|
1325
|
-
paddingLeft:
|
|
1326
|
-
paddingRight:
|
|
1321
|
+
borderRadius: o.spacing(0.5),
|
|
1322
|
+
height: o.spacing(4.5),
|
|
1323
|
+
minHeight: o.spacing(4.5),
|
|
1324
|
+
backgroundColor: o.palette.background.header,
|
|
1325
|
+
paddingLeft: o.spacing(2),
|
|
1326
|
+
paddingRight: o.spacing(2),
|
|
1327
1327
|
marginBottom: "0px",
|
|
1328
1328
|
"&.Mui-expanded": {
|
|
1329
|
-
height:
|
|
1330
|
-
minHeight:
|
|
1331
|
-
borderRadius: `${
|
|
1329
|
+
height: o.spacing(4.5),
|
|
1330
|
+
minHeight: o.spacing(4.5),
|
|
1331
|
+
borderRadius: `${o.spacing(0.5)} ${o.spacing(0.5)} 0px 0px`
|
|
1332
1332
|
},
|
|
1333
1333
|
"&.Mui-disabled": {
|
|
1334
1334
|
opacity: 1,
|
|
1335
|
-
color:
|
|
1335
|
+
color: o.palette.action.disabled,
|
|
1336
1336
|
"& .MuiTypography-root": {
|
|
1337
1337
|
color: "inherit"
|
|
1338
1338
|
}
|
|
1339
1339
|
}
|
|
1340
1340
|
},
|
|
1341
1341
|
expandIconWrapper: {
|
|
1342
|
-
color:
|
|
1342
|
+
color: o.palette.action.active,
|
|
1343
1343
|
height: 20,
|
|
1344
1344
|
width: 20,
|
|
1345
1345
|
alignItems: "center",
|
|
@@ -1350,7 +1350,7 @@ function kr(r) {
|
|
|
1350
1350
|
}
|
|
1351
1351
|
},
|
|
1352
1352
|
content: {
|
|
1353
|
-
...
|
|
1353
|
+
...o.typography.subtitle2,
|
|
1354
1354
|
margin: "0px",
|
|
1355
1355
|
"&.Mui-expanded": {
|
|
1356
1356
|
margin: "0px"
|
|
@@ -1360,93 +1360,93 @@ function kr(r) {
|
|
|
1360
1360
|
}
|
|
1361
1361
|
};
|
|
1362
1362
|
}
|
|
1363
|
-
function
|
|
1363
|
+
function Co(o) {
|
|
1364
1364
|
return {
|
|
1365
1365
|
MuiTypography: {
|
|
1366
1366
|
styleOverrides: {
|
|
1367
1367
|
paragraph: {
|
|
1368
|
-
marginBottom:
|
|
1368
|
+
marginBottom: o.spacing(2)
|
|
1369
1369
|
},
|
|
1370
1370
|
gutterBottom: {
|
|
1371
|
-
marginBottom:
|
|
1371
|
+
marginBottom: o.spacing(1)
|
|
1372
1372
|
}
|
|
1373
1373
|
}
|
|
1374
1374
|
}
|
|
1375
1375
|
};
|
|
1376
1376
|
}
|
|
1377
|
-
function
|
|
1377
|
+
function $o(o) {
|
|
1378
1378
|
return {
|
|
1379
1379
|
MuiPaginationItem: {
|
|
1380
1380
|
styleOverrides: {
|
|
1381
1381
|
root: {
|
|
1382
1382
|
"&.Mui-selected": {
|
|
1383
|
-
fontWeight:
|
|
1383
|
+
fontWeight: o.typography.fontWeightBold
|
|
1384
1384
|
}
|
|
1385
1385
|
},
|
|
1386
1386
|
textPrimary: {
|
|
1387
1387
|
"&.Mui-selected": {
|
|
1388
|
-
color:
|
|
1389
|
-
backgroundColor: e(
|
|
1388
|
+
color: o.palette.primary.main,
|
|
1389
|
+
backgroundColor: e(o.palette.primary.main, 0.08),
|
|
1390
1390
|
"&:hover, &.Mui-focusVisible": {
|
|
1391
1391
|
backgroundColor: `${e(
|
|
1392
|
-
|
|
1392
|
+
o.palette.primary.main,
|
|
1393
1393
|
0.24
|
|
1394
1394
|
)} !important`
|
|
1395
1395
|
}
|
|
1396
1396
|
}
|
|
1397
1397
|
},
|
|
1398
1398
|
outlined: {
|
|
1399
|
-
border: `1px solid ${
|
|
1399
|
+
border: `1px solid ${o.palette.grey[50032]}`
|
|
1400
1400
|
},
|
|
1401
1401
|
outlinedPrimary: {
|
|
1402
1402
|
"&.Mui-selected": {
|
|
1403
|
-
backgroundColor: e(
|
|
1404
|
-
border: `1px solid ${e(
|
|
1403
|
+
backgroundColor: e(o.palette.primary.main, 0.08),
|
|
1404
|
+
border: `1px solid ${e(o.palette.primary.main, 0.24)}`
|
|
1405
1405
|
}
|
|
1406
1406
|
}
|
|
1407
1407
|
}
|
|
1408
1408
|
}
|
|
1409
1409
|
};
|
|
1410
1410
|
}
|
|
1411
|
-
function
|
|
1411
|
+
function wo(o) {
|
|
1412
1412
|
return {
|
|
1413
1413
|
MuiBreadcrumbs: {
|
|
1414
1414
|
styleOverrides: {
|
|
1415
1415
|
separator: {
|
|
1416
|
-
marginLeft:
|
|
1417
|
-
marginRight:
|
|
1416
|
+
marginLeft: o.spacing(2),
|
|
1417
|
+
marginRight: o.spacing(2)
|
|
1418
1418
|
}
|
|
1419
1419
|
}
|
|
1420
1420
|
}
|
|
1421
1421
|
};
|
|
1422
1422
|
}
|
|
1423
|
-
function
|
|
1424
|
-
const
|
|
1423
|
+
function mo(o) {
|
|
1424
|
+
const r = (t) => ({
|
|
1425
1425
|
props: { variant: "contained", color: t },
|
|
1426
|
-
style: { boxShadow:
|
|
1426
|
+
style: { boxShadow: o.customShadows[t] }
|
|
1427
1427
|
});
|
|
1428
1428
|
return {
|
|
1429
1429
|
MuiButtonGroup: {
|
|
1430
1430
|
variants: [
|
|
1431
1431
|
{
|
|
1432
1432
|
props: { variant: "contained", color: "inherit" },
|
|
1433
|
-
style: { boxShadow:
|
|
1433
|
+
style: { boxShadow: o.customShadows.z8 }
|
|
1434
1434
|
},
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1435
|
+
r("primary"),
|
|
1436
|
+
r("secondary"),
|
|
1437
|
+
r("info"),
|
|
1438
|
+
r("success"),
|
|
1439
|
+
r("warning"),
|
|
1440
|
+
r("error"),
|
|
1441
1441
|
{
|
|
1442
1442
|
props: { disabled: !0 },
|
|
1443
1443
|
style: {
|
|
1444
1444
|
boxShadow: "none",
|
|
1445
1445
|
"& .MuiButtonGroup-grouped.Mui-disabled": {
|
|
1446
|
-
color:
|
|
1447
|
-
borderColor: `${
|
|
1446
|
+
color: o.palette.action.disabled,
|
|
1447
|
+
borderColor: `${o.palette.action.disabledBackground} !important`,
|
|
1448
1448
|
"&.MuiButton-contained": {
|
|
1449
|
-
backgroundColor:
|
|
1449
|
+
backgroundColor: o.palette.action.disabledBackground
|
|
1450
1450
|
}
|
|
1451
1451
|
}
|
|
1452
1452
|
}
|
|
@@ -1462,7 +1462,7 @@ function wr(r) {
|
|
|
1462
1462
|
}
|
|
1463
1463
|
};
|
|
1464
1464
|
}
|
|
1465
|
-
function
|
|
1465
|
+
function Bo(o) {
|
|
1466
1466
|
return {
|
|
1467
1467
|
MuiCssBaseline: {
|
|
1468
1468
|
styleOverrides: {
|
|
@@ -1505,7 +1505,7 @@ function mr(r) {
|
|
|
1505
1505
|
}
|
|
1506
1506
|
};
|
|
1507
1507
|
}
|
|
1508
|
-
function
|
|
1508
|
+
function Oo(o) {
|
|
1509
1509
|
return {
|
|
1510
1510
|
MuiAutocomplete: {
|
|
1511
1511
|
styleOverrides: {
|
|
@@ -1514,37 +1514,37 @@ function Br(r) {
|
|
|
1514
1514
|
padding: "0 39px 0px 0"
|
|
1515
1515
|
},
|
|
1516
1516
|
input: {
|
|
1517
|
-
padding: `${
|
|
1517
|
+
padding: `${o.spacing(1.5, 1.5)}!important`
|
|
1518
1518
|
}
|
|
1519
1519
|
},
|
|
1520
1520
|
paper: {
|
|
1521
|
-
boxShadow:
|
|
1521
|
+
boxShadow: o.customShadows.dropdown
|
|
1522
1522
|
},
|
|
1523
1523
|
listbox: {
|
|
1524
|
-
padding:
|
|
1524
|
+
padding: o.spacing(0, 1),
|
|
1525
1525
|
"& .MuiAutocomplete-option": {
|
|
1526
|
-
padding:
|
|
1527
|
-
margin:
|
|
1528
|
-
borderRadius:
|
|
1526
|
+
padding: o.spacing(1),
|
|
1527
|
+
margin: o.spacing(1, 0),
|
|
1528
|
+
borderRadius: o.shape.borderRadius
|
|
1529
1529
|
}
|
|
1530
1530
|
}
|
|
1531
1531
|
}
|
|
1532
1532
|
}
|
|
1533
1533
|
};
|
|
1534
1534
|
}
|
|
1535
|
-
const s = (
|
|
1536
|
-
props: { color:
|
|
1535
|
+
const s = (o, r) => ({
|
|
1536
|
+
props: { color: r },
|
|
1537
1537
|
style: {
|
|
1538
1538
|
"&:hover": {
|
|
1539
|
-
borderColor: e(
|
|
1540
|
-
backgroundColor: e(
|
|
1539
|
+
borderColor: e(o.palette[r].main, 0.48),
|
|
1540
|
+
backgroundColor: e(o.palette[r].main, o.palette.action.hoverOpacity)
|
|
1541
1541
|
},
|
|
1542
1542
|
"&.Mui-selected": {
|
|
1543
|
-
borderColor: e(
|
|
1543
|
+
borderColor: e(o.palette[r].main, 0.48)
|
|
1544
1544
|
}
|
|
1545
1545
|
}
|
|
1546
1546
|
});
|
|
1547
|
-
function
|
|
1547
|
+
function Lo(o) {
|
|
1548
1548
|
return {
|
|
1549
1549
|
MuiToggleButton: {
|
|
1550
1550
|
variants: [
|
|
@@ -1552,68 +1552,68 @@ function Or(r) {
|
|
|
1552
1552
|
props: { color: "standard" },
|
|
1553
1553
|
style: {
|
|
1554
1554
|
"&.Mui-selected": {
|
|
1555
|
-
backgroundColor:
|
|
1555
|
+
backgroundColor: o.palette.action.selected
|
|
1556
1556
|
}
|
|
1557
1557
|
}
|
|
1558
1558
|
},
|
|
1559
|
-
s(
|
|
1560
|
-
s(
|
|
1561
|
-
s(
|
|
1562
|
-
s(
|
|
1563
|
-
s(
|
|
1564
|
-
s(
|
|
1559
|
+
s(o, "primary"),
|
|
1560
|
+
s(o, "secondary"),
|
|
1561
|
+
s(o, "info"),
|
|
1562
|
+
s(o, "success"),
|
|
1563
|
+
s(o, "warning"),
|
|
1564
|
+
s(o, "error")
|
|
1565
1565
|
]
|
|
1566
1566
|
},
|
|
1567
1567
|
MuiToggleButtonGroup: {
|
|
1568
1568
|
styleOverrides: {
|
|
1569
1569
|
root: {
|
|
1570
|
-
borderRadius:
|
|
1571
|
-
backgroundColor:
|
|
1572
|
-
border: `solid 1px ${
|
|
1570
|
+
borderRadius: o.shape.borderRadius,
|
|
1571
|
+
backgroundColor: o.palette.background.paper,
|
|
1572
|
+
border: `solid 1px ${o.palette.grey[50012]}`,
|
|
1573
1573
|
"& .MuiToggleButton-root": {
|
|
1574
1574
|
margin: 4,
|
|
1575
1575
|
borderColor: "transparent !important",
|
|
1576
|
-
borderRadius: `${
|
|
1576
|
+
borderRadius: `${o.shape.borderRadius}px !important`
|
|
1577
1577
|
}
|
|
1578
1578
|
}
|
|
1579
1579
|
}
|
|
1580
1580
|
}
|
|
1581
1581
|
};
|
|
1582
1582
|
}
|
|
1583
|
-
function
|
|
1583
|
+
function Ro(o) {
|
|
1584
1584
|
return {
|
|
1585
1585
|
MuiFormControlLabel: {
|
|
1586
1586
|
styleOverrides: {
|
|
1587
1587
|
label: {
|
|
1588
|
-
...
|
|
1588
|
+
...o.typography.body1
|
|
1589
1589
|
}
|
|
1590
1590
|
}
|
|
1591
1591
|
},
|
|
1592
1592
|
MuiFormHelperText: {
|
|
1593
1593
|
styleOverrides: {
|
|
1594
1594
|
root: {
|
|
1595
|
-
marginTop:
|
|
1595
|
+
marginTop: o.spacing(1)
|
|
1596
1596
|
}
|
|
1597
1597
|
}
|
|
1598
1598
|
},
|
|
1599
1599
|
MuiFormLabel: {
|
|
1600
1600
|
styleOverrides: {
|
|
1601
1601
|
root: {
|
|
1602
|
-
color:
|
|
1602
|
+
color: o.palette.text.disabled
|
|
1603
1603
|
}
|
|
1604
1604
|
}
|
|
1605
1605
|
}
|
|
1606
1606
|
};
|
|
1607
1607
|
}
|
|
1608
|
-
function
|
|
1608
|
+
function To(o) {
|
|
1609
1609
|
return {
|
|
1610
1610
|
MuiLoadingButton: {
|
|
1611
1611
|
styleOverrides: {
|
|
1612
1612
|
root: {
|
|
1613
1613
|
"&.MuiLoadingButton-root": {
|
|
1614
|
-
...
|
|
1614
|
+
...o.typography.subtitle2,
|
|
1615
1615
|
"& .MuiCircularProgress-root": {
|
|
1616
|
-
color:
|
|
1616
|
+
color: o.palette.primary.main
|
|
1617
1617
|
}
|
|
1618
1618
|
},
|
|
1619
1619
|
"&.MuiButton-text": {
|
|
@@ -1629,25 +1629,28 @@ function Rr(r) {
|
|
|
1629
1629
|
}
|
|
1630
1630
|
};
|
|
1631
1631
|
}
|
|
1632
|
-
const
|
|
1632
|
+
const Do = (o) => ({
|
|
1633
1633
|
M4LBruceTest: {
|
|
1634
1634
|
styleOverrides: {}
|
|
1635
1635
|
}
|
|
1636
|
-
}),
|
|
1636
|
+
}), Ao = (o) => ({
|
|
1637
1637
|
M4LDynamicFilter: {
|
|
1638
1638
|
styleOverrides: {}
|
|
1639
1639
|
}
|
|
1640
|
-
}),
|
|
1640
|
+
}), Io = (o) => ({
|
|
1641
1641
|
M4LRHFTextFieldPassword: {
|
|
1642
1642
|
styleOverrides: {
|
|
1643
1643
|
["&.M4LRHFTextFieldPassword-root"]: {
|
|
1644
1644
|
[".M4LRHFTextField-root .MuiTextField-root"]: {
|
|
1645
1645
|
border: "1px solid yellow"
|
|
1646
|
+
},
|
|
1647
|
+
".MuiInputBase-root": {
|
|
1648
|
+
gap: "20px"
|
|
1646
1649
|
}
|
|
1647
1650
|
}
|
|
1648
1651
|
}
|
|
1649
1652
|
}
|
|
1650
|
-
}),
|
|
1653
|
+
}), zo = (o) => ({
|
|
1651
1654
|
M4LRHFTextField: {
|
|
1652
1655
|
styleOverrides: {
|
|
1653
1656
|
["&.M4LRHFTextField-root"]: {
|
|
@@ -1661,7 +1664,7 @@ const Tr = (r) => ({
|
|
|
1661
1664
|
}
|
|
1662
1665
|
}
|
|
1663
1666
|
}
|
|
1664
|
-
}),
|
|
1667
|
+
}), Po = (o) => ({
|
|
1665
1668
|
M4LIcon: {
|
|
1666
1669
|
styleOverrides: {
|
|
1667
1670
|
["&.M4LIcon-root"]: {
|
|
@@ -1669,15 +1672,18 @@ const Tr = (r) => ({
|
|
|
1669
1672
|
}
|
|
1670
1673
|
}
|
|
1671
1674
|
}
|
|
1672
|
-
}),
|
|
1675
|
+
}), Eo = (o) => ({
|
|
1673
1676
|
M4LIconButton: {
|
|
1674
1677
|
styleOverrides: {
|
|
1675
1678
|
["&.M4LIconButton-root"]: {
|
|
1676
|
-
test: "root"
|
|
1679
|
+
test: "root",
|
|
1680
|
+
".M4LIcon-root": {
|
|
1681
|
+
backgroundColor: "yellow"
|
|
1682
|
+
}
|
|
1677
1683
|
}
|
|
1678
1684
|
}
|
|
1679
1685
|
}
|
|
1680
|
-
}),
|
|
1686
|
+
}), Ho = (o) => ({
|
|
1681
1687
|
M4LanguagePopover: {
|
|
1682
1688
|
styleOverrides: {
|
|
1683
1689
|
["&.M4LanguagePopover-root"]: {
|
|
@@ -1688,7 +1694,7 @@ const Tr = (r) => ({
|
|
|
1688
1694
|
}
|
|
1689
1695
|
}
|
|
1690
1696
|
}
|
|
1691
|
-
}),
|
|
1697
|
+
}), Wo = (o) => ({
|
|
1692
1698
|
M4LImageButton: {
|
|
1693
1699
|
styleOverrides: {
|
|
1694
1700
|
["&.M4LImageButton-root"]: {
|
|
@@ -1696,7 +1702,7 @@ const Tr = (r) => ({
|
|
|
1696
1702
|
}
|
|
1697
1703
|
}
|
|
1698
1704
|
}
|
|
1699
|
-
}),
|
|
1705
|
+
}), _o = (o) => ({
|
|
1700
1706
|
M4LImage: {
|
|
1701
1707
|
styleOverrides: {
|
|
1702
1708
|
["&.M4LImage-root"]: {
|
|
@@ -1704,7 +1710,7 @@ const Tr = (r) => ({
|
|
|
1704
1710
|
}
|
|
1705
1711
|
}
|
|
1706
1712
|
}
|
|
1707
|
-
}),
|
|
1713
|
+
}), Go = (o) => ({
|
|
1708
1714
|
M4LPopover: {
|
|
1709
1715
|
styleOverrides: {
|
|
1710
1716
|
["&.M4LPopover-root"]: {
|
|
@@ -1715,7 +1721,7 @@ const Tr = (r) => ({
|
|
|
1715
1721
|
}
|
|
1716
1722
|
}
|
|
1717
1723
|
}
|
|
1718
|
-
}),
|
|
1724
|
+
}), No = (o) => ({
|
|
1719
1725
|
M4LRHFCheckbox: {
|
|
1720
1726
|
styleOverrides: {
|
|
1721
1727
|
["&.M4LRHFCheckbox-root"]: {
|
|
@@ -1723,7 +1729,7 @@ const Tr = (r) => ({
|
|
|
1723
1729
|
}
|
|
1724
1730
|
}
|
|
1725
1731
|
}
|
|
1726
|
-
}),
|
|
1732
|
+
}), Yo = (o) => ({
|
|
1727
1733
|
M4LErrorLabel: {
|
|
1728
1734
|
styleOverrides: {
|
|
1729
1735
|
["&.M4LErrorLabel-root"]: {
|
|
@@ -1731,7 +1737,7 @@ const Tr = (r) => ({
|
|
|
1731
1737
|
}
|
|
1732
1738
|
}
|
|
1733
1739
|
}
|
|
1734
|
-
}),
|
|
1740
|
+
}), jo = (o) => ({
|
|
1735
1741
|
M4LTypography: {
|
|
1736
1742
|
styleOverrides: {
|
|
1737
1743
|
["&.M4LTypography-root"]: {
|
|
@@ -1739,70 +1745,73 @@ const Tr = (r) => ({
|
|
|
1739
1745
|
}
|
|
1740
1746
|
}
|
|
1741
1747
|
}
|
|
1742
|
-
}),
|
|
1748
|
+
}), Vo = (o) => ({
|
|
1743
1749
|
M4LButton: {
|
|
1744
1750
|
styleOverrides: {
|
|
1745
|
-
|
|
1746
|
-
test: "root"
|
|
1751
|
+
"&.M4LButton-root": {
|
|
1752
|
+
test: "root",
|
|
1753
|
+
".MuiButton-root": {
|
|
1754
|
+
border: "4px solid blue"
|
|
1755
|
+
}
|
|
1747
1756
|
}
|
|
1748
1757
|
}
|
|
1749
1758
|
}
|
|
1750
1759
|
});
|
|
1751
|
-
function
|
|
1760
|
+
function Xo(o) {
|
|
1752
1761
|
return Object.assign(
|
|
1753
|
-
J(
|
|
1754
|
-
X(
|
|
1755
|
-
Q(
|
|
1756
|
-
Z(
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
U(
|
|
1767
|
-
q(
|
|
1768
|
-
|
|
1769
|
-
K(
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1762
|
+
J(o),
|
|
1763
|
+
X(o),
|
|
1764
|
+
Q(o),
|
|
1765
|
+
Z(o),
|
|
1766
|
+
oo(o),
|
|
1767
|
+
ao(o),
|
|
1768
|
+
no(),
|
|
1769
|
+
po(o),
|
|
1770
|
+
eo(),
|
|
1771
|
+
ro(o),
|
|
1772
|
+
to(o),
|
|
1773
|
+
io(o),
|
|
1774
|
+
co(o),
|
|
1775
|
+
U(o),
|
|
1776
|
+
q(o),
|
|
1777
|
+
lo(o),
|
|
1778
|
+
K(o),
|
|
1779
|
+
uo(o),
|
|
1780
|
+
so(o),
|
|
1781
|
+
yo(o),
|
|
1782
|
+
xo(o),
|
|
1783
|
+
bo(o),
|
|
1784
|
+
go(),
|
|
1785
|
+
ko(o),
|
|
1786
|
+
fo(o),
|
|
1787
|
+
Mo(o),
|
|
1788
|
+
vo(o),
|
|
1789
|
+
ho(o),
|
|
1790
|
+
Fo(o),
|
|
1791
|
+
So(o),
|
|
1792
|
+
Co(o),
|
|
1793
|
+
$o(o),
|
|
1794
|
+
mo(o),
|
|
1795
|
+
wo(o),
|
|
1796
|
+
Bo(),
|
|
1797
|
+
Oo(o),
|
|
1798
|
+
Ro(o),
|
|
1799
|
+
Lo(o),
|
|
1800
|
+
To(o),
|
|
1801
|
+
Do(),
|
|
1802
|
+
Ao(),
|
|
1803
|
+
zo(),
|
|
1804
|
+
Io(),
|
|
1805
|
+
Po(),
|
|
1806
|
+
Eo(),
|
|
1807
|
+
Ho(),
|
|
1808
|
+
Wo(),
|
|
1809
|
+
_o(),
|
|
1810
|
+
Go(),
|
|
1811
|
+
No(),
|
|
1812
|
+
Yo(),
|
|
1813
|
+
jo(),
|
|
1814
|
+
Vo()
|
|
1806
1815
|
);
|
|
1807
1816
|
}
|
|
1808
1817
|
export {
|
|
@@ -1811,16 +1820,16 @@ export {
|
|
|
1811
1820
|
j as customShadows,
|
|
1812
1821
|
z as cyanPreset,
|
|
1813
1822
|
A as defaultPreset,
|
|
1814
|
-
|
|
1815
|
-
|
|
1823
|
+
Qo as defaultThemeOptions,
|
|
1824
|
+
Xo as fnComponentsOverrides,
|
|
1816
1825
|
W as getColorPresets,
|
|
1817
|
-
|
|
1826
|
+
Jo as getFontValue,
|
|
1818
1827
|
E as orangePreset,
|
|
1819
1828
|
p as palette,
|
|
1820
1829
|
I as purplePreset,
|
|
1821
1830
|
n as pxToRem,
|
|
1822
1831
|
H as redPreset,
|
|
1823
|
-
|
|
1832
|
+
_ as remToPx,
|
|
1824
1833
|
d as responsiveFontSizes,
|
|
1825
1834
|
V as shadows
|
|
1826
1835
|
};
|