@m4l/styles 0.0.0 → 0.0.1
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.d.ts +1 -0
- package/index.js +617 -512
- package/package.json +1 -1
- package/utils/getColorPresets.d.ts +170 -0
- package/utils/getFontValue.d.ts +24 -0
- package/utils/index.d.ts +2 -0
package/index.js
CHANGED
|
@@ -1,8 +1,222 @@
|
|
|
1
|
-
import { alpha as
|
|
2
|
-
import {
|
|
3
|
-
import { alpha as
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { alpha as e, useTheme as S } from "@mui/material/styles";
|
|
2
|
+
import { useResponsive as L } from "@m4l/graphics";
|
|
3
|
+
import { alpha as F } from "@mui/material";
|
|
4
|
+
function u(r, o) {
|
|
5
|
+
return `linear-gradient(to bottom, ${r}, ${o})`;
|
|
6
|
+
}
|
|
7
|
+
const g = {
|
|
8
|
+
lighter: "#C8FACD",
|
|
9
|
+
light: "#5BE584",
|
|
10
|
+
main: "#00AB55",
|
|
11
|
+
dark: "#007B55",
|
|
12
|
+
darker: "#005249"
|
|
13
|
+
}, R = {
|
|
14
|
+
lighter: "#D6E4FF",
|
|
15
|
+
light: "#84A9FF",
|
|
16
|
+
main: "#3366FF",
|
|
17
|
+
dark: "#1939B7",
|
|
18
|
+
darker: "#091A7A"
|
|
19
|
+
}, x = {
|
|
20
|
+
lighter: "#D0F2FF",
|
|
21
|
+
light: "#74CAFF",
|
|
22
|
+
main: "#1890FF",
|
|
23
|
+
dark: "#0C53B7",
|
|
24
|
+
darker: "#04297A"
|
|
25
|
+
}, b = {
|
|
26
|
+
lighter: "#E9FCD4",
|
|
27
|
+
light: "#AAF27F",
|
|
28
|
+
main: "#54D62C",
|
|
29
|
+
dark: "#229A16",
|
|
30
|
+
darker: "#08660D"
|
|
31
|
+
}, y = {
|
|
32
|
+
lighter: "#FFF7CD",
|
|
33
|
+
light: "#FFE16A",
|
|
34
|
+
main: "#FFC107",
|
|
35
|
+
dark: "#B78103",
|
|
36
|
+
darker: "#7A4F01"
|
|
37
|
+
}, f = {
|
|
38
|
+
lighter: "#FFE7D9",
|
|
39
|
+
light: "#FFA48D",
|
|
40
|
+
main: "#FF4842",
|
|
41
|
+
dark: "#B72136",
|
|
42
|
+
darker: "#7A0C2E"
|
|
43
|
+
}, a = {
|
|
44
|
+
0: "#FFFFFF",
|
|
45
|
+
100: "#F9FAFB",
|
|
46
|
+
200: "#F4F6F8",
|
|
47
|
+
300: "#DFE3E8",
|
|
48
|
+
400: "#C4CDD5",
|
|
49
|
+
500: "#919EAB",
|
|
50
|
+
600: "#637381",
|
|
51
|
+
700: "#454F5B",
|
|
52
|
+
800: "#212B36",
|
|
53
|
+
900: "#161C24",
|
|
54
|
+
5008: e("#919EAB", 0.08),
|
|
55
|
+
50012: e("#919EAB", 0.12),
|
|
56
|
+
50016: e("#919EAB", 0.16),
|
|
57
|
+
50024: e("#919EAB", 0.24),
|
|
58
|
+
50032: e("#919EAB", 0.32),
|
|
59
|
+
50048: e("#919EAB", 0.48),
|
|
60
|
+
50056: e("#919EAB", 0.56),
|
|
61
|
+
50080: e("#919EAB", 0.8)
|
|
62
|
+
}, T = {
|
|
63
|
+
primary: u(g.light, g.main),
|
|
64
|
+
info: u(x.light, x.main),
|
|
65
|
+
success: u(b.light, b.main),
|
|
66
|
+
warning: u(y.light, y.main),
|
|
67
|
+
error: u(f.light, f.main)
|
|
68
|
+
}, D = {
|
|
69
|
+
violet: ["#826AF9", "#9E86FF", "#D0AEFF", "#F7D2FF"],
|
|
70
|
+
blue: ["#2D99FF", "#83CFFF", "#A5F3FF", "#CCFAFF"],
|
|
71
|
+
green: ["#2CD9C5", "#60F1C8", "#A4F7CC", "#C0F2DC"],
|
|
72
|
+
yellow: ["#FFE700", "#FFEF5A", "#FFF7AE", "#FFF3D6"],
|
|
73
|
+
red: ["#FF6C40", "#FF8F6D", "#FFBD98", "#FFF2D4"]
|
|
74
|
+
}, c = {
|
|
75
|
+
common: { black: "#000", white: "#fff" },
|
|
76
|
+
primary: { ...g, contrastText: "#fff" },
|
|
77
|
+
secondary: { ...R, contrastText: "#fff" },
|
|
78
|
+
info: { ...x, contrastText: "#fff" },
|
|
79
|
+
success: { ...b, contrastText: a[800] },
|
|
80
|
+
warning: { ...y, contrastText: a[800] },
|
|
81
|
+
error: { ...f, contrastText: "#fff" },
|
|
82
|
+
grey: a,
|
|
83
|
+
gradients: T,
|
|
84
|
+
chart: D,
|
|
85
|
+
divider: a[50024],
|
|
86
|
+
action: {
|
|
87
|
+
hover: a[5008],
|
|
88
|
+
selected: a[50016],
|
|
89
|
+
disabled: a[50080],
|
|
90
|
+
disabledBackground: a[50024],
|
|
91
|
+
focus: a[50024],
|
|
92
|
+
hoverOpacity: 0.08,
|
|
93
|
+
disabledOpacity: 0.48
|
|
94
|
+
}
|
|
95
|
+
}, p = {
|
|
96
|
+
light: {
|
|
97
|
+
...c,
|
|
98
|
+
mode: "light",
|
|
99
|
+
text: { primary: a[800], secondary: a[700], disabled: a[500] },
|
|
100
|
+
background: {
|
|
101
|
+
paper: "#fff",
|
|
102
|
+
default: "#fff",
|
|
103
|
+
neutral: a[200],
|
|
104
|
+
autocomplete: a[100],
|
|
105
|
+
header: "#F6F7F9"
|
|
106
|
+
},
|
|
107
|
+
action: { active: a[600], ...c.action },
|
|
108
|
+
grid: { sectionHeader: "#F6F7F9", divider: "#EDEFF2", rowHover: "#FAFBFC" }
|
|
109
|
+
},
|
|
110
|
+
dark: {
|
|
111
|
+
...c,
|
|
112
|
+
mode: "dark",
|
|
113
|
+
text: { primary: "#fff", secondary: a[500], disabled: a[600] },
|
|
114
|
+
background: {
|
|
115
|
+
paper: a[800],
|
|
116
|
+
default: a[900],
|
|
117
|
+
neutral: a[50016],
|
|
118
|
+
autocomplete: a[800],
|
|
119
|
+
header: "#29313A"
|
|
120
|
+
},
|
|
121
|
+
action: { active: a[500], ...c.action },
|
|
122
|
+
grid: { sectionHeader: "#29313A", divider: "#3E464F", rowHover: "#1F262F" }
|
|
123
|
+
}
|
|
124
|
+
}, l = [
|
|
125
|
+
{
|
|
126
|
+
name: "default",
|
|
127
|
+
...p.light.primary,
|
|
128
|
+
LightSelected: "#EBF9F1",
|
|
129
|
+
LightSelectedHover: "#D6F2E3",
|
|
130
|
+
DarkSelected: "#142827",
|
|
131
|
+
DarkSelectedHover: "#12342B"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "purple",
|
|
135
|
+
lighter: "#EBD6FD",
|
|
136
|
+
light: "#B985F4",
|
|
137
|
+
main: "#7635dc",
|
|
138
|
+
dark: "#431A9E",
|
|
139
|
+
darker: "#200A69",
|
|
140
|
+
contrastText: "#fff"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: "cyan",
|
|
144
|
+
lighter: "#D1FFFC",
|
|
145
|
+
light: "#76F2FF",
|
|
146
|
+
main: "#1CCAFF",
|
|
147
|
+
dark: "#0E77B7",
|
|
148
|
+
darker: "#053D7A",
|
|
149
|
+
contrastText: p.light.grey[800]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: "blue",
|
|
153
|
+
lighter: "#D1E9FC",
|
|
154
|
+
light: "#76B0F1",
|
|
155
|
+
main: "#2065D1",
|
|
156
|
+
dark: "#103996",
|
|
157
|
+
darker: "#061B64",
|
|
158
|
+
contrastText: "#fff"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
name: "orange",
|
|
162
|
+
lighter: "#FEF4D4",
|
|
163
|
+
light: "#FED680",
|
|
164
|
+
main: "#fda92d",
|
|
165
|
+
dark: "#B66816",
|
|
166
|
+
darker: "#793908",
|
|
167
|
+
contrastText: p.light.grey[800]
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "red",
|
|
171
|
+
lighter: "#FFE3D5",
|
|
172
|
+
light: "#FFC1AC",
|
|
173
|
+
main: "#FF3030",
|
|
174
|
+
dark: "#B71833",
|
|
175
|
+
darker: "#7A0930",
|
|
176
|
+
contrastText: "#fff"
|
|
177
|
+
}
|
|
178
|
+
], A = l[0], I = l[1], z = l[2], P = l[3], E = l[4], H = l[5];
|
|
179
|
+
function W(r) {
|
|
180
|
+
return {
|
|
181
|
+
purple: I,
|
|
182
|
+
cyan: z,
|
|
183
|
+
blue: P,
|
|
184
|
+
orange: E,
|
|
185
|
+
red: H,
|
|
186
|
+
default: A
|
|
187
|
+
}[r];
|
|
188
|
+
}
|
|
189
|
+
function G(r) {
|
|
190
|
+
return Math.round(parseFloat(r) * 16);
|
|
191
|
+
}
|
|
192
|
+
function n(r) {
|
|
193
|
+
return `${r / 16}rem`;
|
|
194
|
+
}
|
|
195
|
+
function d({ sm: r, md: o, lg: t }) {
|
|
196
|
+
return {
|
|
197
|
+
"@media (min-width:600px)": {
|
|
198
|
+
fontSize: n(r)
|
|
199
|
+
},
|
|
200
|
+
"@media (min-width:900px)": {
|
|
201
|
+
fontSize: n(o)
|
|
202
|
+
},
|
|
203
|
+
"@media (min-width:1200px)": {
|
|
204
|
+
fontSize: n(t)
|
|
205
|
+
}
|
|
206
|
+
};
|
|
207
|
+
}
|
|
208
|
+
function N() {
|
|
209
|
+
return [...S().breakpoints.keys].reverse().reduce((t, i) => {
|
|
210
|
+
const M = L("up", i);
|
|
211
|
+
return !t && M ? i : t;
|
|
212
|
+
}, null) || "xs";
|
|
213
|
+
}
|
|
214
|
+
function qr(r) {
|
|
215
|
+
const o = S(), t = N(), i = o.breakpoints.up(t === "xl" ? "lg" : t), w = (r === "h1" || r === "h2" || r === "h3" || r === "h4" || r === "h5" || r === "h6") && o.typography[r][i] ? o.typography[r][i] : o.typography[r], h = G(w.fontSize), m = Number(o.typography[r].lineHeight) * h, { fontWeight: B, letterSpacing: O } = o.typography[r];
|
|
216
|
+
return { fontSize: h, lineHeight: m, fontWeight: B, letterSpacing: O };
|
|
217
|
+
}
|
|
218
|
+
const _ = "Public Sans, sans-serif", Y = {
|
|
219
|
+
fontFamily: _,
|
|
6
220
|
fontWeightRegular: 400,
|
|
7
221
|
fontWeightMedium: 600,
|
|
8
222
|
fontWeightBold: 700,
|
|
@@ -84,187 +298,66 @@ const $ = "Public Sans, sans-serif", C = {
|
|
|
84
298
|
fontSize: n(14),
|
|
85
299
|
textTransform: "capitalize"
|
|
86
300
|
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
return `linear-gradient(to bottom, ${o}, ${r})`;
|
|
90
|
-
}
|
|
91
|
-
const c = {
|
|
92
|
-
lighter: "#C8FACD",
|
|
93
|
-
light: "#5BE584",
|
|
94
|
-
main: "#00AB55",
|
|
95
|
-
dark: "#007B55",
|
|
96
|
-
darker: "#005249"
|
|
97
|
-
}, S = {
|
|
98
|
-
lighter: "#D6E4FF",
|
|
99
|
-
light: "#84A9FF",
|
|
100
|
-
main: "#3366FF",
|
|
101
|
-
dark: "#1939B7",
|
|
102
|
-
darker: "#091A7A"
|
|
103
|
-
}, g = {
|
|
104
|
-
lighter: "#D0F2FF",
|
|
105
|
-
light: "#74CAFF",
|
|
106
|
-
main: "#1890FF",
|
|
107
|
-
dark: "#0C53B7",
|
|
108
|
-
darker: "#04297A"
|
|
109
|
-
}, x = {
|
|
110
|
-
lighter: "#E9FCD4",
|
|
111
|
-
light: "#AAF27F",
|
|
112
|
-
main: "#54D62C",
|
|
113
|
-
dark: "#229A16",
|
|
114
|
-
darker: "#08660D"
|
|
115
|
-
}, b = {
|
|
116
|
-
lighter: "#FFF7CD",
|
|
117
|
-
light: "#FFE16A",
|
|
118
|
-
main: "#FFC107",
|
|
119
|
-
dark: "#B78103",
|
|
120
|
-
darker: "#7A4F01"
|
|
121
|
-
}, y = {
|
|
122
|
-
lighter: "#FFE7D9",
|
|
123
|
-
light: "#FFA48D",
|
|
124
|
-
main: "#FF4842",
|
|
125
|
-
dark: "#B72136",
|
|
126
|
-
darker: "#7A0C2E"
|
|
127
|
-
}, e = {
|
|
128
|
-
0: "#FFFFFF",
|
|
129
|
-
100: "#F9FAFB",
|
|
130
|
-
200: "#F4F6F8",
|
|
131
|
-
300: "#DFE3E8",
|
|
132
|
-
400: "#C4CDD5",
|
|
133
|
-
500: "#919EAB",
|
|
134
|
-
600: "#637381",
|
|
135
|
-
700: "#454F5B",
|
|
136
|
-
800: "#212B36",
|
|
137
|
-
900: "#161C24",
|
|
138
|
-
5008: t("#919EAB", 0.08),
|
|
139
|
-
50012: t("#919EAB", 0.12),
|
|
140
|
-
50016: t("#919EAB", 0.16),
|
|
141
|
-
50024: t("#919EAB", 0.24),
|
|
142
|
-
50032: t("#919EAB", 0.32),
|
|
143
|
-
50048: t("#919EAB", 0.48),
|
|
144
|
-
50056: t("#919EAB", 0.56),
|
|
145
|
-
50080: t("#919EAB", 0.8)
|
|
146
|
-
}, w = {
|
|
147
|
-
primary: l(c.light, c.main),
|
|
148
|
-
info: l(g.light, g.main),
|
|
149
|
-
success: l(x.light, x.main),
|
|
150
|
-
warning: l(b.light, b.main),
|
|
151
|
-
error: l(y.light, y.main)
|
|
152
|
-
}, B = {
|
|
153
|
-
violet: ["#826AF9", "#9E86FF", "#D0AEFF", "#F7D2FF"],
|
|
154
|
-
blue: ["#2D99FF", "#83CFFF", "#A5F3FF", "#CCFAFF"],
|
|
155
|
-
green: ["#2CD9C5", "#60F1C8", "#A4F7CC", "#C0F2DC"],
|
|
156
|
-
yellow: ["#FFE700", "#FFEF5A", "#FFF7AE", "#FFF3D6"],
|
|
157
|
-
red: ["#FF6C40", "#FF8F6D", "#FFBD98", "#FFF2D4"]
|
|
158
|
-
}, u = {
|
|
159
|
-
common: { black: "#000", white: "#fff" },
|
|
160
|
-
primary: { ...c, contrastText: "#fff" },
|
|
161
|
-
secondary: { ...S, contrastText: "#fff" },
|
|
162
|
-
info: { ...g, contrastText: "#fff" },
|
|
163
|
-
success: { ...x, contrastText: e[800] },
|
|
164
|
-
warning: { ...b, contrastText: e[800] },
|
|
165
|
-
error: { ...y, contrastText: "#fff" },
|
|
166
|
-
grey: e,
|
|
167
|
-
gradients: w,
|
|
168
|
-
chart: B,
|
|
169
|
-
divider: e[50024],
|
|
170
|
-
action: {
|
|
171
|
-
hover: e[5008],
|
|
172
|
-
selected: e[50016],
|
|
173
|
-
disabled: e[50080],
|
|
174
|
-
disabledBackground: e[50024],
|
|
175
|
-
focus: e[50024],
|
|
176
|
-
hoverOpacity: 0.08,
|
|
177
|
-
disabledOpacity: 0.48
|
|
178
|
-
}
|
|
179
|
-
}, p = {
|
|
180
|
-
light: {
|
|
181
|
-
...u,
|
|
182
|
-
mode: "light",
|
|
183
|
-
text: { primary: e[800], secondary: e[700], disabled: e[500] },
|
|
184
|
-
background: {
|
|
185
|
-
paper: "#fff",
|
|
186
|
-
default: "#fff",
|
|
187
|
-
neutral: e[200],
|
|
188
|
-
autocomplete: e[100],
|
|
189
|
-
header: "#F6F7F9"
|
|
190
|
-
},
|
|
191
|
-
action: { active: e[600], ...u.action },
|
|
192
|
-
grid: { sectionHeader: "#F6F7F9", divider: "#EDEFF2", rowHover: "#FAFBFC" }
|
|
193
|
-
},
|
|
194
|
-
dark: {
|
|
195
|
-
...u,
|
|
196
|
-
mode: "dark",
|
|
197
|
-
text: { primary: "#fff", secondary: e[500], disabled: e[600] },
|
|
198
|
-
background: {
|
|
199
|
-
paper: e[800],
|
|
200
|
-
default: e[900],
|
|
201
|
-
neutral: e[50016],
|
|
202
|
-
autocomplete: e[800],
|
|
203
|
-
header: "#29313A"
|
|
204
|
-
},
|
|
205
|
-
action: { active: e[500], ...u.action },
|
|
206
|
-
grid: { sectionHeader: "#29313A", divider: "#3E464F", rowHover: "#1F262F" }
|
|
207
|
-
}
|
|
208
|
-
}, h = p.light.grey[500], F = "#000000", f = (o) => {
|
|
209
|
-
const r = t(o, 0.2), i = t(o, 0.14), a = t(o, 0.12);
|
|
301
|
+
}, C = p.light.grey[500], $ = "#000000", v = (r) => {
|
|
302
|
+
const o = e(r, 0.2), t = e(r, 0.14), i = e(r, 0.12);
|
|
210
303
|
return [
|
|
211
304
|
"none",
|
|
212
|
-
`0px 2px 1px -1px ${
|
|
213
|
-
`0px 3px 1px -2px ${
|
|
214
|
-
`0px 3px 3px -2px ${
|
|
215
|
-
`0px 2px 4px -1px ${
|
|
216
|
-
`0px 3px 5px -1px ${
|
|
217
|
-
`0px 3px 5px -1px ${
|
|
218
|
-
`0px 4px 5px -2px ${
|
|
219
|
-
`0px 5px 5px -3px ${
|
|
220
|
-
`0px 5px 6px -3px ${
|
|
221
|
-
`0px 6px 6px -3px ${
|
|
222
|
-
`0px 6px 7px -4px ${
|
|
223
|
-
`0px 7px 8px -4px ${
|
|
224
|
-
`0px 7px 8px -4px ${
|
|
225
|
-
`0px 7px 9px -4px ${
|
|
226
|
-
`0px 8px 9px -5px ${
|
|
227
|
-
`0px 8px 10px -5px ${
|
|
228
|
-
`0px 8px 11px -5px ${
|
|
229
|
-
`0px 9px 11px -5px ${
|
|
230
|
-
`0px 9px 12px -6px ${
|
|
231
|
-
`0px 10px 13px -6px ${
|
|
232
|
-
`0px 10px 13px -6px ${
|
|
233
|
-
`0px 10px 14px -6px ${
|
|
234
|
-
`0px 11px 14px -7px ${
|
|
235
|
-
`0px 11px 15px -7px ${
|
|
305
|
+
`0px 2px 1px -1px ${o},0px 1px 1px 0px ${t},0px 1px 3px 0px ${i}`,
|
|
306
|
+
`0px 3px 1px -2px ${o},0px 2px 2px 0px ${t},0px 1px 5px 0px ${i}`,
|
|
307
|
+
`0px 3px 3px -2px ${o},0px 3px 4px 0px ${t},0px 1px 8px 0px ${i}`,
|
|
308
|
+
`0px 2px 4px -1px ${o},0px 4px 5px 0px ${t},0px 1px 10px 0px ${i}`,
|
|
309
|
+
`0px 3px 5px -1px ${o},0px 5px 8px 0px ${t},0px 1px 14px 0px ${i}`,
|
|
310
|
+
`0px 3px 5px -1px ${o},0px 6px 10px 0px ${t},0px 1px 18px 0px ${i}`,
|
|
311
|
+
`0px 4px 5px -2px ${o},0px 7px 10px 1px ${t},0px 2px 16px 1px ${i}`,
|
|
312
|
+
`0px 5px 5px -3px ${o},0px 8px 10px 1px ${t},0px 3px 14px 2px ${i}`,
|
|
313
|
+
`0px 5px 6px -3px ${o},0px 9px 12px 1px ${t},0px 3px 16px 2px ${i}`,
|
|
314
|
+
`0px 6px 6px -3px ${o},0px 10px 14px 1px ${t},0px 4px 18px 3px ${i}`,
|
|
315
|
+
`0px 6px 7px -4px ${o},0px 11px 15px 1px ${t},0px 4px 20px 3px ${i}`,
|
|
316
|
+
`0px 7px 8px -4px ${o},0px 12px 17px 2px ${t},0px 5px 22px 4px ${i}`,
|
|
317
|
+
`0px 7px 8px -4px ${o},0px 13px 19px 2px ${t},0px 5px 24px 4px ${i}`,
|
|
318
|
+
`0px 7px 9px -4px ${o},0px 14px 21px 2px ${t},0px 5px 26px 4px ${i}`,
|
|
319
|
+
`0px 8px 9px -5px ${o},0px 15px 22px 2px ${t},0px 6px 28px 5px ${i}`,
|
|
320
|
+
`0px 8px 10px -5px ${o},0px 16px 24px 2px ${t},0px 6px 30px 5px ${i}`,
|
|
321
|
+
`0px 8px 11px -5px ${o},0px 17px 26px 2px ${t},0px 6px 32px 5px ${i}`,
|
|
322
|
+
`0px 9px 11px -5px ${o},0px 18px 28px 2px ${t},0px 7px 34px 6px ${i}`,
|
|
323
|
+
`0px 9px 12px -6px ${o},0px 19px 29px 2px ${t},0px 7px 36px 6px ${i}`,
|
|
324
|
+
`0px 10px 13px -6px ${o},0px 20px 31px 3px ${t},0px 8px 38px 7px ${i}`,
|
|
325
|
+
`0px 10px 13px -6px ${o},0px 21px 33px 3px ${t},0px 8px 40px 7px ${i}`,
|
|
326
|
+
`0px 10px 14px -6px ${o},0px 22px 35px 3px ${t},0px 8px 42px 7px ${i}`,
|
|
327
|
+
`0px 11px 14px -7px ${o},0px 23px 36px 3px ${t},0px 9px 44px 8px ${i}`,
|
|
328
|
+
`0px 11px 15px -7px ${o},0px 24px 38px 3px ${t},0px 9px 46px 8px ${i}`
|
|
236
329
|
];
|
|
237
|
-
},
|
|
238
|
-
const
|
|
330
|
+
}, k = (r) => {
|
|
331
|
+
const o = e(r, 0.16);
|
|
239
332
|
return {
|
|
240
|
-
z1: `0 1px 2px 0 ${
|
|
241
|
-
z8: `0 8px 16px 0 ${
|
|
242
|
-
z12: `0 12px 24px -4px ${
|
|
243
|
-
z16: `0 16px 32px -4px ${
|
|
244
|
-
z20: `0 20px 40px -4px ${
|
|
245
|
-
z24: `0 24px 48px 0 ${
|
|
246
|
-
primary: `0 8px 16px 0 ${
|
|
247
|
-
info: `0 8px 16px 0 ${
|
|
248
|
-
secondary: `0 8px 16px 0 ${
|
|
249
|
-
success: `0 8px 16px 0 ${
|
|
250
|
-
warning: `0 8px 16px 0 ${
|
|
251
|
-
error: `0 8px 16px 0 ${
|
|
252
|
-
card: `0 0 2px 0 ${
|
|
253
|
-
dialog: `-40px 40px 80px -8px ${
|
|
254
|
-
dropdown: `0 0 2px 0 ${
|
|
333
|
+
z1: `0 1px 2px 0 ${o}`,
|
|
334
|
+
z8: `0 8px 16px 0 ${o}`,
|
|
335
|
+
z12: `0 12px 24px -4px ${o}`,
|
|
336
|
+
z16: `0 16px 32px -4px ${o}`,
|
|
337
|
+
z20: `0 20px 40px -4px ${o}`,
|
|
338
|
+
z24: `0 24px 48px 0 ${o}`,
|
|
339
|
+
primary: `0 8px 16px 0 ${e(p.light.primary.main, 0.24)}`,
|
|
340
|
+
info: `0 8px 16px 0 ${e(p.light.info.main, 0.24)}`,
|
|
341
|
+
secondary: `0 8px 16px 0 ${e(p.light.secondary.main, 0.24)}`,
|
|
342
|
+
success: `0 8px 16px 0 ${e(p.light.success.main, 0.24)}`,
|
|
343
|
+
warning: `0 8px 16px 0 ${e(p.light.warning.main, 0.24)}`,
|
|
344
|
+
error: `0 8px 16px 0 ${e(p.light.error.main, 0.24)}`,
|
|
345
|
+
card: `0 0 2px 0 ${e(r, 0.2)}, 0 12px 24px -4px ${e(r, 0.12)}`,
|
|
346
|
+
dialog: `-40px 40px 80px -8px ${e(p.light.common.black, 0.24)}`,
|
|
347
|
+
dropdown: `0 0 2px 0 ${e(r, 0.24)}, -20px 20px 40px -4px ${e(r, 0.24)}`
|
|
255
348
|
};
|
|
256
|
-
},
|
|
257
|
-
light:
|
|
258
|
-
dark:
|
|
259
|
-
},
|
|
260
|
-
light:
|
|
261
|
-
dark:
|
|
262
|
-
},
|
|
263
|
-
typography:
|
|
264
|
-
shadows:
|
|
349
|
+
}, j = {
|
|
350
|
+
light: k(C),
|
|
351
|
+
dark: k($)
|
|
352
|
+
}, V = {
|
|
353
|
+
light: v(C),
|
|
354
|
+
dark: v($)
|
|
355
|
+
}, Jr = {
|
|
356
|
+
typography: Y,
|
|
357
|
+
shadows: V.light,
|
|
265
358
|
customShadows: {
|
|
266
|
-
...
|
|
267
|
-
primary: `0 8px 16px 0 ${
|
|
359
|
+
...j.light,
|
|
360
|
+
primary: `0 8px 16px 0 ${e(W("default").main, 0.24)}`
|
|
268
361
|
},
|
|
269
362
|
palette: {
|
|
270
363
|
...p.light,
|
|
@@ -279,19 +372,19 @@ const c = {
|
|
|
279
372
|
DarkSelected: "#142827",
|
|
280
373
|
DarkSelectedHover: "#12342B"
|
|
281
374
|
},
|
|
282
|
-
text: { primary:
|
|
375
|
+
text: { primary: a[800], secondary: a[700], disabled: a[500] },
|
|
283
376
|
secondary: {
|
|
284
377
|
main: "#34ac4e"
|
|
285
378
|
}
|
|
286
379
|
}
|
|
287
380
|
};
|
|
288
|
-
function
|
|
381
|
+
function K(r) {
|
|
289
382
|
return {
|
|
290
383
|
MuiAvatar: {
|
|
291
384
|
styleOverrides: {
|
|
292
385
|
colorDefault: {
|
|
293
|
-
color:
|
|
294
|
-
backgroundColor:
|
|
386
|
+
color: r.palette.text.secondary,
|
|
387
|
+
backgroundColor: r.palette.grey[400]
|
|
295
388
|
}
|
|
296
389
|
}
|
|
297
390
|
},
|
|
@@ -299,18 +392,18 @@ function R(o) {
|
|
|
299
392
|
styleOverrides: {
|
|
300
393
|
avatar: {
|
|
301
394
|
fontSize: 16,
|
|
302
|
-
fontWeight:
|
|
395
|
+
fontWeight: r.typography.fontWeightMedium,
|
|
303
396
|
"&:first-of-type": {
|
|
304
397
|
fontSize: 14,
|
|
305
|
-
color:
|
|
306
|
-
backgroundColor:
|
|
398
|
+
color: r.palette.primary.main,
|
|
399
|
+
backgroundColor: r.palette.primary.lighter
|
|
307
400
|
}
|
|
308
401
|
}
|
|
309
402
|
}
|
|
310
403
|
}
|
|
311
404
|
};
|
|
312
405
|
}
|
|
313
|
-
function
|
|
406
|
+
function U(r) {
|
|
314
407
|
return {
|
|
315
408
|
MuiButton: {
|
|
316
409
|
styleOverrides: {
|
|
@@ -324,53 +417,53 @@ function m(o) {
|
|
|
324
417
|
height: 48
|
|
325
418
|
},
|
|
326
419
|
containedInherit: {
|
|
327
|
-
color:
|
|
328
|
-
boxShadow:
|
|
420
|
+
color: r.palette.grey[800],
|
|
421
|
+
boxShadow: r.customShadows.z1,
|
|
329
422
|
"&:hover": {
|
|
330
|
-
backgroundColor:
|
|
423
|
+
backgroundColor: r.palette.grey[400]
|
|
331
424
|
}
|
|
332
425
|
},
|
|
333
426
|
containedPrimary: {
|
|
334
|
-
boxShadow:
|
|
427
|
+
boxShadow: r.customShadows.z24
|
|
335
428
|
},
|
|
336
429
|
containedSecondary: {
|
|
337
|
-
boxShadow:
|
|
430
|
+
boxShadow: r.customShadows.secondary
|
|
338
431
|
},
|
|
339
432
|
containedInfo: {
|
|
340
|
-
boxShadow:
|
|
433
|
+
boxShadow: r.customShadows.info
|
|
341
434
|
},
|
|
342
435
|
containedSuccess: {
|
|
343
|
-
boxShadow:
|
|
436
|
+
boxShadow: r.customShadows.success
|
|
344
437
|
},
|
|
345
438
|
containedWarning: {
|
|
346
|
-
boxShadow:
|
|
439
|
+
boxShadow: r.customShadows.warning
|
|
347
440
|
},
|
|
348
441
|
containedError: {
|
|
349
|
-
boxShadow:
|
|
442
|
+
boxShadow: r.customShadows.error
|
|
350
443
|
},
|
|
351
444
|
outlinedInherit: {
|
|
352
|
-
border: `1px solid ${
|
|
445
|
+
border: `1px solid ${r.palette.grey[50032]}`,
|
|
353
446
|
"&:hover": {
|
|
354
|
-
backgroundColor:
|
|
447
|
+
backgroundColor: r.palette.action.hover
|
|
355
448
|
}
|
|
356
449
|
},
|
|
357
450
|
textInherit: {
|
|
358
451
|
"&:hover": {
|
|
359
|
-
backgroundColor:
|
|
452
|
+
backgroundColor: r.palette.action.hover
|
|
360
453
|
}
|
|
361
454
|
}
|
|
362
455
|
}
|
|
363
456
|
}
|
|
364
457
|
};
|
|
365
458
|
}
|
|
366
|
-
function
|
|
459
|
+
function q(r) {
|
|
367
460
|
return {
|
|
368
461
|
MuiIconButton: {
|
|
369
462
|
styleOverrides: {
|
|
370
463
|
root: {
|
|
371
464
|
"&.MuiIconButton-sizeSmall": {
|
|
372
|
-
height:
|
|
373
|
-
width:
|
|
465
|
+
height: r.spacing(3),
|
|
466
|
+
width: r.spacing(3),
|
|
374
467
|
margin: 0,
|
|
375
468
|
padding: 0,
|
|
376
469
|
" > svg": {
|
|
@@ -387,7 +480,7 @@ function T(o) {
|
|
|
387
480
|
}
|
|
388
481
|
};
|
|
389
482
|
}
|
|
390
|
-
function
|
|
483
|
+
function J(r) {
|
|
391
484
|
return {
|
|
392
485
|
MuiFab: {
|
|
393
486
|
defaultProps: {
|
|
@@ -395,41 +488,41 @@ function D(o) {
|
|
|
395
488
|
},
|
|
396
489
|
styleOverrides: {
|
|
397
490
|
root: {
|
|
398
|
-
boxShadow:
|
|
491
|
+
boxShadow: r.customShadows.z8,
|
|
399
492
|
"&:hover": {
|
|
400
493
|
boxShadow: "none",
|
|
401
|
-
backgroundColor:
|
|
494
|
+
backgroundColor: r.palette.grey[400]
|
|
402
495
|
}
|
|
403
496
|
},
|
|
404
497
|
primary: {
|
|
405
|
-
boxShadow:
|
|
498
|
+
boxShadow: r.customShadows.primary,
|
|
406
499
|
"&:hover": {
|
|
407
|
-
backgroundColor:
|
|
500
|
+
backgroundColor: r.palette.primary.dark
|
|
408
501
|
}
|
|
409
502
|
},
|
|
410
503
|
secondary: {
|
|
411
|
-
boxShadow:
|
|
504
|
+
boxShadow: r.customShadows.secondary,
|
|
412
505
|
"&:hover": {
|
|
413
|
-
backgroundColor:
|
|
506
|
+
backgroundColor: r.palette.secondary.dark
|
|
414
507
|
}
|
|
415
508
|
},
|
|
416
509
|
extended: {
|
|
417
510
|
"& svg": {
|
|
418
|
-
marginRight:
|
|
511
|
+
marginRight: r.spacing(1)
|
|
419
512
|
}
|
|
420
513
|
}
|
|
421
514
|
}
|
|
422
515
|
}
|
|
423
516
|
};
|
|
424
517
|
}
|
|
425
|
-
function
|
|
518
|
+
function Q(r) {
|
|
426
519
|
return {
|
|
427
520
|
MuiCard: {
|
|
428
521
|
styleOverrides: {
|
|
429
522
|
root: {
|
|
430
523
|
position: "relative",
|
|
431
|
-
boxShadow:
|
|
432
|
-
borderRadius: Number(
|
|
524
|
+
boxShadow: r.customShadows.card,
|
|
525
|
+
borderRadius: Number(r.shape.borderRadius) * 2,
|
|
433
526
|
zIndex: 0
|
|
434
527
|
}
|
|
435
528
|
}
|
|
@@ -437,43 +530,43 @@ function A(o) {
|
|
|
437
530
|
MuiCardHeader: {
|
|
438
531
|
defaultProps: {
|
|
439
532
|
titleTypographyProps: { variant: "h6" },
|
|
440
|
-
subheaderTypographyProps: { variant: "body2", marginTop:
|
|
533
|
+
subheaderTypographyProps: { variant: "body2", marginTop: r.spacing(0.5) }
|
|
441
534
|
},
|
|
442
535
|
styleOverrides: {
|
|
443
536
|
root: {
|
|
444
|
-
padding:
|
|
537
|
+
padding: r.spacing(3, 3, 0)
|
|
445
538
|
}
|
|
446
539
|
}
|
|
447
540
|
},
|
|
448
541
|
MuiCardContent: {
|
|
449
542
|
styleOverrides: {
|
|
450
543
|
root: {
|
|
451
|
-
padding:
|
|
544
|
+
padding: r.spacing(3)
|
|
452
545
|
}
|
|
453
546
|
}
|
|
454
547
|
}
|
|
455
548
|
};
|
|
456
549
|
}
|
|
457
|
-
function
|
|
550
|
+
function X(r) {
|
|
458
551
|
return {
|
|
459
552
|
MuiTabs: {
|
|
460
553
|
styleOverrides: {
|
|
461
554
|
root: {
|
|
462
555
|
padding: 0,
|
|
463
|
-
fontWeight:
|
|
464
|
-
borderTopLeftRadius:
|
|
465
|
-
borderTopRightRadius:
|
|
556
|
+
fontWeight: r.typography.fontWeightMedium,
|
|
557
|
+
borderTopLeftRadius: r.shape.borderRadius,
|
|
558
|
+
borderTopRightRadius: r.shape.borderRadius,
|
|
466
559
|
"&.Mui-selected": {
|
|
467
|
-
color:
|
|
560
|
+
color: r.palette.text.primary
|
|
468
561
|
},
|
|
469
562
|
"&:not(:last-of-type)": {
|
|
470
|
-
marginRight:
|
|
563
|
+
marginRight: r.spacing(5)
|
|
471
564
|
},
|
|
472
565
|
"@media (min-width: 600px)": {
|
|
473
566
|
minWidth: 48
|
|
474
567
|
},
|
|
475
568
|
"& .MuiButtonBase-root": {
|
|
476
|
-
...
|
|
569
|
+
...r.typography.subtitle2
|
|
477
570
|
}
|
|
478
571
|
},
|
|
479
572
|
labelIcon: {
|
|
@@ -481,7 +574,7 @@ function I(o) {
|
|
|
481
574
|
flexDirection: "row",
|
|
482
575
|
"& > *:first-of-type": {
|
|
483
576
|
marginBottom: 0,
|
|
484
|
-
marginRight:
|
|
577
|
+
marginRight: r.spacing(1)
|
|
485
578
|
}
|
|
486
579
|
},
|
|
487
580
|
wrapper: {
|
|
@@ -490,7 +583,7 @@ function I(o) {
|
|
|
490
583
|
},
|
|
491
584
|
textColorInherit: {
|
|
492
585
|
opacity: 1,
|
|
493
|
-
color:
|
|
586
|
+
color: r.palette.text.secondary
|
|
494
587
|
}
|
|
495
588
|
}
|
|
496
589
|
},
|
|
@@ -511,15 +604,15 @@ function I(o) {
|
|
|
511
604
|
}
|
|
512
605
|
};
|
|
513
606
|
}
|
|
514
|
-
function
|
|
607
|
+
function Z(r) {
|
|
515
608
|
return {
|
|
516
609
|
MuiMenuItem: {
|
|
517
610
|
styleOverrides: {
|
|
518
611
|
root: {
|
|
519
612
|
"&.Mui-selected": {
|
|
520
|
-
backgroundColor:
|
|
613
|
+
backgroundColor: r.palette.action.selected,
|
|
521
614
|
"&:hover": {
|
|
522
|
-
backgroundColor:
|
|
615
|
+
backgroundColor: r.palette.action.hover
|
|
523
616
|
}
|
|
524
617
|
}
|
|
525
618
|
}
|
|
@@ -527,7 +620,7 @@ function z(o) {
|
|
|
527
620
|
}
|
|
528
621
|
};
|
|
529
622
|
}
|
|
530
|
-
function
|
|
623
|
+
function rr(r) {
|
|
531
624
|
return {
|
|
532
625
|
MuiLink: {
|
|
533
626
|
defaultProps: {
|
|
@@ -536,21 +629,21 @@ function P(o) {
|
|
|
536
629
|
styleOverrides: {
|
|
537
630
|
root: {
|
|
538
631
|
"&.MuiLink-underlineHover": {
|
|
539
|
-
textDecorationColor:
|
|
632
|
+
textDecorationColor: r.palette.primary.main
|
|
540
633
|
}
|
|
541
634
|
}
|
|
542
635
|
}
|
|
543
636
|
}
|
|
544
637
|
};
|
|
545
638
|
}
|
|
546
|
-
function
|
|
639
|
+
function or(r) {
|
|
547
640
|
return {
|
|
548
641
|
MuiListItemIcon: {
|
|
549
642
|
styleOverrides: {
|
|
550
643
|
root: {
|
|
551
644
|
color: "inherit",
|
|
552
645
|
minWidth: "auto",
|
|
553
|
-
marginRight:
|
|
646
|
+
marginRight: r.spacing(2)
|
|
554
647
|
}
|
|
555
648
|
}
|
|
556
649
|
},
|
|
@@ -558,7 +651,7 @@ function H(o) {
|
|
|
558
651
|
styleOverrides: {
|
|
559
652
|
root: {
|
|
560
653
|
minWidth: "auto",
|
|
561
|
-
marginRight:
|
|
654
|
+
marginRight: r.spacing(2)
|
|
562
655
|
}
|
|
563
656
|
}
|
|
564
657
|
},
|
|
@@ -576,15 +669,15 @@ function H(o) {
|
|
|
576
669
|
}
|
|
577
670
|
};
|
|
578
671
|
}
|
|
579
|
-
function
|
|
672
|
+
function tr(r) {
|
|
580
673
|
return {
|
|
581
674
|
MuiTableRow: {
|
|
582
675
|
styleOverrides: {
|
|
583
676
|
root: {
|
|
584
677
|
"&.Mui-selected": {
|
|
585
|
-
backgroundColor:
|
|
678
|
+
backgroundColor: r.palette.action.selected,
|
|
586
679
|
"&:hover": {
|
|
587
|
-
backgroundColor:
|
|
680
|
+
backgroundColor: r.palette.action.hover
|
|
588
681
|
}
|
|
589
682
|
}
|
|
590
683
|
}
|
|
@@ -596,31 +689,31 @@ function E(o) {
|
|
|
596
689
|
borderBottom: "none"
|
|
597
690
|
},
|
|
598
691
|
head: {
|
|
599
|
-
color:
|
|
600
|
-
backgroundColor:
|
|
692
|
+
color: r.palette.text.secondary,
|
|
693
|
+
backgroundColor: r.palette.background.neutral,
|
|
601
694
|
"&:first-of-type": {
|
|
602
|
-
paddingLeft:
|
|
603
|
-
borderTopLeftRadius:
|
|
604
|
-
borderBottomLeftRadius:
|
|
605
|
-
boxShadow: `inset 8px 0 0 ${
|
|
695
|
+
paddingLeft: r.spacing(3),
|
|
696
|
+
borderTopLeftRadius: r.shape.borderRadius,
|
|
697
|
+
borderBottomLeftRadius: r.shape.borderRadius,
|
|
698
|
+
boxShadow: `inset 8px 0 0 ${r.palette.background.paper}`
|
|
606
699
|
},
|
|
607
700
|
"&:last-of-type": {
|
|
608
|
-
paddingRight:
|
|
609
|
-
borderTopRightRadius:
|
|
610
|
-
borderBottomRightRadius:
|
|
611
|
-
boxShadow: `inset -8px 0 0 ${
|
|
701
|
+
paddingRight: r.spacing(3),
|
|
702
|
+
borderTopRightRadius: r.shape.borderRadius,
|
|
703
|
+
borderBottomRightRadius: r.shape.borderRadius,
|
|
704
|
+
boxShadow: `inset -8px 0 0 ${r.palette.background.paper}`
|
|
612
705
|
}
|
|
613
706
|
},
|
|
614
707
|
stickyHeader: {
|
|
615
|
-
backgroundColor:
|
|
616
|
-
backgroundImage: `linear-gradient(to bottom, ${
|
|
708
|
+
backgroundColor: r.palette.background.paper,
|
|
709
|
+
backgroundImage: `linear-gradient(to bottom, ${r.palette.background.neutral} 0%, ${r.palette.background.neutral} 100%)`
|
|
617
710
|
},
|
|
618
711
|
body: {
|
|
619
712
|
"&:first-of-type": {
|
|
620
|
-
paddingLeft:
|
|
713
|
+
paddingLeft: r.spacing(3)
|
|
621
714
|
},
|
|
622
715
|
"&:last-of-type": {
|
|
623
|
-
paddingRight:
|
|
716
|
+
paddingRight: r.spacing(3)
|
|
624
717
|
}
|
|
625
718
|
}
|
|
626
719
|
}
|
|
@@ -628,13 +721,13 @@ function E(o) {
|
|
|
628
721
|
MuiTablePagination: {
|
|
629
722
|
styleOverrides: {
|
|
630
723
|
root: {
|
|
631
|
-
...
|
|
724
|
+
...r.typography.caption
|
|
632
725
|
},
|
|
633
726
|
toolbar: {
|
|
634
727
|
"& .MuiInputBase-root": {
|
|
635
|
-
marginLeft:
|
|
636
|
-
marginRight:
|
|
637
|
-
...
|
|
728
|
+
marginLeft: r.spacing(1),
|
|
729
|
+
marginRight: r.spacing(3),
|
|
730
|
+
...r.typography.caption
|
|
638
731
|
},
|
|
639
732
|
"&.MuiToolbar-regular": {
|
|
640
733
|
minHeight: 40,
|
|
@@ -642,16 +735,16 @@ function E(o) {
|
|
|
642
735
|
paddingRight: 0
|
|
643
736
|
},
|
|
644
737
|
"& .MuiTablePagination-displayedRows": {
|
|
645
|
-
...
|
|
738
|
+
...r.typography.caption
|
|
646
739
|
}
|
|
647
740
|
},
|
|
648
741
|
selectLabel: {
|
|
649
|
-
...
|
|
742
|
+
...r.typography.caption
|
|
650
743
|
},
|
|
651
744
|
select: {
|
|
652
745
|
paddingBottom: 4,
|
|
653
746
|
"&:focus": {
|
|
654
|
-
borderRadius:
|
|
747
|
+
borderRadius: r.shape.borderRadius
|
|
655
748
|
}
|
|
656
749
|
},
|
|
657
750
|
selectIcon: {
|
|
@@ -662,7 +755,7 @@ function E(o) {
|
|
|
662
755
|
}
|
|
663
756
|
};
|
|
664
757
|
}
|
|
665
|
-
function
|
|
758
|
+
function er(r) {
|
|
666
759
|
return {
|
|
667
760
|
MuiBadge: {
|
|
668
761
|
styleOverrides: {
|
|
@@ -675,7 +768,7 @@ function W(o) {
|
|
|
675
768
|
}
|
|
676
769
|
};
|
|
677
770
|
}
|
|
678
|
-
function
|
|
771
|
+
function ir(r) {
|
|
679
772
|
return {
|
|
680
773
|
MuiPaper: {
|
|
681
774
|
defaultProps: {
|
|
@@ -684,7 +777,7 @@ function G(o) {
|
|
|
684
777
|
variants: [
|
|
685
778
|
{
|
|
686
779
|
props: { variant: "outlined" },
|
|
687
|
-
style: { borderColor:
|
|
780
|
+
style: { borderColor: r.palette.grey[50012] }
|
|
688
781
|
}
|
|
689
782
|
],
|
|
690
783
|
styleOverrides: {
|
|
@@ -696,7 +789,7 @@ function G(o) {
|
|
|
696
789
|
}
|
|
697
790
|
};
|
|
698
791
|
}
|
|
699
|
-
function
|
|
792
|
+
function ar(r) {
|
|
700
793
|
return {
|
|
701
794
|
MuiFormControl: {
|
|
702
795
|
styleOverrides: {
|
|
@@ -706,11 +799,11 @@ function _(o) {
|
|
|
706
799
|
MuiInputBase: {
|
|
707
800
|
styleOverrides: {
|
|
708
801
|
root: {
|
|
709
|
-
backgroundColor:
|
|
710
|
-
...
|
|
711
|
-
borderRadius:
|
|
802
|
+
backgroundColor: r.palette.background.default,
|
|
803
|
+
...r.typography.body2,
|
|
804
|
+
borderRadius: r.spacing(1),
|
|
712
805
|
"&.Mui-disabled": {
|
|
713
|
-
"& svg": { color:
|
|
806
|
+
"& svg": { color: r.palette.text.disabled }
|
|
714
807
|
},
|
|
715
808
|
padding: "0px"
|
|
716
809
|
},
|
|
@@ -718,7 +811,7 @@ function _(o) {
|
|
|
718
811
|
paddingLeft: "8px",
|
|
719
812
|
"&::placeholder": {
|
|
720
813
|
opacity: 1,
|
|
721
|
-
color:
|
|
814
|
+
color: r.palette.text.disabled
|
|
722
815
|
}
|
|
723
816
|
}
|
|
724
817
|
}
|
|
@@ -727,7 +820,7 @@ function _(o) {
|
|
|
727
820
|
styleOverrides: {
|
|
728
821
|
underline: {
|
|
729
822
|
"&:before": {
|
|
730
|
-
borderBottomColor:
|
|
823
|
+
borderBottomColor: r.palette.grey[50056]
|
|
731
824
|
}
|
|
732
825
|
}
|
|
733
826
|
}
|
|
@@ -735,20 +828,20 @@ function _(o) {
|
|
|
735
828
|
MuiFilledInput: {
|
|
736
829
|
styleOverrides: {
|
|
737
830
|
root: {
|
|
738
|
-
backgroundColor:
|
|
831
|
+
backgroundColor: r.palette.grey[50012],
|
|
739
832
|
"&:hover": {
|
|
740
|
-
backgroundColor:
|
|
833
|
+
backgroundColor: r.palette.grey[50016]
|
|
741
834
|
},
|
|
742
835
|
"&.Mui-focused": {
|
|
743
|
-
backgroundColor:
|
|
836
|
+
backgroundColor: r.palette.action.focus
|
|
744
837
|
},
|
|
745
838
|
"&.Mui-disabled": {
|
|
746
|
-
backgroundColor:
|
|
839
|
+
backgroundColor: r.palette.action.disabledBackground
|
|
747
840
|
}
|
|
748
841
|
},
|
|
749
842
|
underline: {
|
|
750
843
|
"&:before": {
|
|
751
|
-
borderBottomColor:
|
|
844
|
+
borderBottomColor: r.palette.grey[50056]
|
|
752
845
|
}
|
|
753
846
|
}
|
|
754
847
|
}
|
|
@@ -756,29 +849,29 @@ function _(o) {
|
|
|
756
849
|
MuiOutlinedInput: {
|
|
757
850
|
styleOverrides: {
|
|
758
851
|
root: {
|
|
759
|
-
...
|
|
760
|
-
color:
|
|
852
|
+
...r.typography.body2,
|
|
853
|
+
color: r.palette.text.primary,
|
|
761
854
|
"& > input": {
|
|
762
|
-
padding:
|
|
855
|
+
padding: r.spacing(1.5, 1.5)
|
|
763
856
|
},
|
|
764
857
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
765
|
-
borderColor:
|
|
858
|
+
borderColor: r.palette.grey[50032],
|
|
766
859
|
fontSize: "0.875rem"
|
|
767
860
|
},
|
|
768
861
|
"&.Mui-disabled": {
|
|
769
862
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
770
|
-
borderColor:
|
|
863
|
+
borderColor: r.palette.action.disabledBackground
|
|
771
864
|
}
|
|
772
865
|
},
|
|
773
866
|
"& .MuiOutlinedInput-input:-webkit-autofill": {
|
|
774
|
-
WebkitBoxShadow: `0 0 0 1000px ${
|
|
867
|
+
WebkitBoxShadow: `0 0 0 1000px ${r.palette.background.autofill} inset`
|
|
775
868
|
}
|
|
776
869
|
}
|
|
777
870
|
}
|
|
778
871
|
}
|
|
779
872
|
};
|
|
780
873
|
}
|
|
781
|
-
function
|
|
874
|
+
function nr(r) {
|
|
782
875
|
return {
|
|
783
876
|
MuiInputLabel: {
|
|
784
877
|
styleOverrides: {
|
|
@@ -793,12 +886,12 @@ function N(o) {
|
|
|
793
886
|
}
|
|
794
887
|
};
|
|
795
888
|
}
|
|
796
|
-
function
|
|
889
|
+
function pr(r) {
|
|
797
890
|
return {
|
|
798
891
|
MuiRadio: {
|
|
799
892
|
styleOverrides: {
|
|
800
893
|
root: {
|
|
801
|
-
padding:
|
|
894
|
+
padding: r.spacing(1),
|
|
802
895
|
svg: {
|
|
803
896
|
fontSize: 24,
|
|
804
897
|
"&[font-size=small]": {
|
|
@@ -810,23 +903,23 @@ function Y(o) {
|
|
|
810
903
|
}
|
|
811
904
|
};
|
|
812
905
|
}
|
|
813
|
-
function
|
|
814
|
-
const
|
|
906
|
+
function dr(r) {
|
|
907
|
+
const o = r.palette.mode === "light";
|
|
815
908
|
return {
|
|
816
909
|
MuiDrawer: {
|
|
817
910
|
styleOverrides: {
|
|
818
911
|
modal: {
|
|
819
912
|
'&[role="presentation"]': {
|
|
820
913
|
"& .MuiDrawer-paperAnchorLeft": {
|
|
821
|
-
boxShadow: `8px 24px 24px 12px ${
|
|
822
|
-
|
|
823
|
-
|
|
914
|
+
boxShadow: `8px 24px 24px 12px ${F(
|
|
915
|
+
r.palette.grey[900],
|
|
916
|
+
o ? 0.16 : 0.48
|
|
824
917
|
)}`
|
|
825
918
|
},
|
|
826
919
|
"& .MuiDrawer-paperAnchorRight": {
|
|
827
|
-
boxShadow: `-8px 24px 24px 12px ${
|
|
828
|
-
|
|
829
|
-
|
|
920
|
+
boxShadow: `-8px 24px 24px 12px ${F(
|
|
921
|
+
r.palette.grey[900],
|
|
922
|
+
o ? 0.16 : 0.48
|
|
830
923
|
)}`
|
|
831
924
|
}
|
|
832
925
|
}
|
|
@@ -835,23 +928,23 @@ function j(o) {
|
|
|
835
928
|
}
|
|
836
929
|
};
|
|
837
930
|
}
|
|
838
|
-
function
|
|
931
|
+
function sr(r) {
|
|
839
932
|
return {
|
|
840
933
|
MuiDialog: {
|
|
841
934
|
styleOverrides: {
|
|
842
935
|
paper: {
|
|
843
|
-
boxShadow:
|
|
936
|
+
boxShadow: r.customShadows.dialog,
|
|
844
937
|
"&.MuiPaper-rounded": {
|
|
845
|
-
borderRadius: Number(
|
|
938
|
+
borderRadius: Number(r.shape.borderRadius) * 2
|
|
846
939
|
},
|
|
847
940
|
"&.MuiDialog-paperFullScreen": {
|
|
848
941
|
borderRadius: 0
|
|
849
942
|
},
|
|
850
943
|
"&.MuiDialog-paper .MuiDialogActions-root": {
|
|
851
|
-
padding:
|
|
944
|
+
padding: r.spacing(3)
|
|
852
945
|
},
|
|
853
946
|
"@media (max-width: 600px)": {
|
|
854
|
-
margin:
|
|
947
|
+
margin: r.spacing(2)
|
|
855
948
|
},
|
|
856
949
|
"@media (max-width: 663.95px)": {
|
|
857
950
|
"&.MuiDialog-paperWidthSm.MuiDialog-paperScrollBody": {
|
|
@@ -867,7 +960,7 @@ function K(o) {
|
|
|
867
960
|
MuiDialogTitle: {
|
|
868
961
|
styleOverrides: {
|
|
869
962
|
root: {
|
|
870
|
-
padding:
|
|
963
|
+
padding: r.spacing(3, 3, 0)
|
|
871
964
|
}
|
|
872
965
|
}
|
|
873
966
|
},
|
|
@@ -876,7 +969,7 @@ function K(o) {
|
|
|
876
969
|
root: {
|
|
877
970
|
borderTop: 0,
|
|
878
971
|
borderBottom: 0,
|
|
879
|
-
padding:
|
|
972
|
+
padding: r.spacing(3)
|
|
880
973
|
}
|
|
881
974
|
}
|
|
882
975
|
},
|
|
@@ -884,15 +977,15 @@ function K(o) {
|
|
|
884
977
|
styleOverrides: {
|
|
885
978
|
root: {
|
|
886
979
|
"& > :not(:first-of-type)": {
|
|
887
|
-
marginLeft:
|
|
980
|
+
marginLeft: r.spacing(1.5)
|
|
888
981
|
}
|
|
889
982
|
}
|
|
890
983
|
}
|
|
891
984
|
}
|
|
892
985
|
};
|
|
893
986
|
}
|
|
894
|
-
function
|
|
895
|
-
const
|
|
987
|
+
function lr(r) {
|
|
988
|
+
const o = r.palette.mode === "light";
|
|
896
989
|
return {
|
|
897
990
|
MuiSlider: {
|
|
898
991
|
defaultProps: {
|
|
@@ -901,52 +994,52 @@ function U(o) {
|
|
|
901
994
|
styleOverrides: {
|
|
902
995
|
root: {
|
|
903
996
|
"&.Mui-disabled": {
|
|
904
|
-
color:
|
|
997
|
+
color: r.palette.action.disabled
|
|
905
998
|
}
|
|
906
999
|
},
|
|
907
1000
|
markLabel: {
|
|
908
1001
|
fontSize: 13,
|
|
909
|
-
color:
|
|
1002
|
+
color: r.palette.text.disabled
|
|
910
1003
|
},
|
|
911
1004
|
valueLabel: {
|
|
912
1005
|
borderRadius: 8,
|
|
913
|
-
backgroundColor:
|
|
1006
|
+
backgroundColor: r.palette.grey[o ? 800 : 700]
|
|
914
1007
|
}
|
|
915
1008
|
}
|
|
916
1009
|
}
|
|
917
1010
|
};
|
|
918
1011
|
}
|
|
919
|
-
function
|
|
920
|
-
const
|
|
1012
|
+
function ur(r) {
|
|
1013
|
+
const o = r.palette.mode === "light";
|
|
921
1014
|
return {
|
|
922
1015
|
MuiSwitch: {
|
|
923
1016
|
styleOverrides: {
|
|
924
1017
|
thumb: {
|
|
925
|
-
boxShadow:
|
|
1018
|
+
boxShadow: r.customShadows.z1
|
|
926
1019
|
},
|
|
927
1020
|
track: {
|
|
928
1021
|
opacity: 1,
|
|
929
|
-
backgroundColor:
|
|
1022
|
+
backgroundColor: r.palette.grey[500]
|
|
930
1023
|
},
|
|
931
1024
|
switchBase: {
|
|
932
1025
|
left: 0,
|
|
933
1026
|
right: "auto",
|
|
934
1027
|
"&:not(:.Mui-checked)": {
|
|
935
|
-
color:
|
|
1028
|
+
color: r.palette.grey[o ? 100 : 300]
|
|
936
1029
|
},
|
|
937
1030
|
"&.Mui-checked.Mui-disabled, &.Mui-disabled": {
|
|
938
|
-
color:
|
|
1031
|
+
color: r.palette.grey[o ? 400 : 600]
|
|
939
1032
|
},
|
|
940
1033
|
"&.Mui-disabled+.MuiSwitch-track": {
|
|
941
1034
|
opacity: 1,
|
|
942
|
-
backgroundColor: `${
|
|
1035
|
+
backgroundColor: `${r.palette.action.disabledBackground} !important`
|
|
943
1036
|
}
|
|
944
1037
|
}
|
|
945
1038
|
}
|
|
946
1039
|
}
|
|
947
1040
|
};
|
|
948
1041
|
}
|
|
949
|
-
function
|
|
1042
|
+
function cr(r) {
|
|
950
1043
|
return {
|
|
951
1044
|
MuiSvgIcon: {
|
|
952
1045
|
styleOverrides: {
|
|
@@ -964,45 +1057,45 @@ function q(o) {
|
|
|
964
1057
|
}
|
|
965
1058
|
};
|
|
966
1059
|
}
|
|
967
|
-
function
|
|
968
|
-
const
|
|
1060
|
+
function gr(r) {
|
|
1061
|
+
const o = r.palette.mode === "light";
|
|
969
1062
|
return {
|
|
970
1063
|
MuiTooltip: {
|
|
971
1064
|
styleOverrides: {
|
|
972
1065
|
tooltip: {
|
|
973
|
-
backgroundColor:
|
|
1066
|
+
backgroundColor: r.palette.grey[o ? 800 : 700]
|
|
974
1067
|
},
|
|
975
1068
|
arrow: {
|
|
976
|
-
color:
|
|
1069
|
+
color: r.palette.grey[o ? 800 : 700]
|
|
977
1070
|
}
|
|
978
1071
|
}
|
|
979
1072
|
}
|
|
980
1073
|
};
|
|
981
1074
|
}
|
|
982
|
-
function
|
|
1075
|
+
function xr(r) {
|
|
983
1076
|
return {
|
|
984
1077
|
MuiPopover: {
|
|
985
1078
|
styleOverrides: {
|
|
986
1079
|
paper: {
|
|
987
|
-
boxShadow:
|
|
988
|
-
borderRadius: Number(
|
|
1080
|
+
boxShadow: r.customShadows.dropdown,
|
|
1081
|
+
borderRadius: Number(r.shape.borderRadius) * 1.5
|
|
989
1082
|
}
|
|
990
1083
|
}
|
|
991
1084
|
}
|
|
992
1085
|
};
|
|
993
1086
|
}
|
|
994
|
-
function
|
|
1087
|
+
function br(r) {
|
|
995
1088
|
return {
|
|
996
1089
|
MuiStepConnector: {
|
|
997
1090
|
styleOverrides: {
|
|
998
1091
|
line: {
|
|
999
|
-
borderColor:
|
|
1092
|
+
borderColor: r.palette.divider
|
|
1000
1093
|
}
|
|
1001
1094
|
}
|
|
1002
1095
|
}
|
|
1003
1096
|
};
|
|
1004
1097
|
}
|
|
1005
|
-
function
|
|
1098
|
+
function yr(r) {
|
|
1006
1099
|
return {
|
|
1007
1100
|
MuiDataGrid: {
|
|
1008
1101
|
styleOverrides: {
|
|
@@ -1013,21 +1106,21 @@ function Z(o) {
|
|
|
1013
1106
|
borderTop: 0
|
|
1014
1107
|
},
|
|
1015
1108
|
"& .MuiDataGrid-toolbarContainer": {
|
|
1016
|
-
padding:
|
|
1017
|
-
backgroundColor:
|
|
1109
|
+
padding: r.spacing(2),
|
|
1110
|
+
backgroundColor: r.palette.background.neutral,
|
|
1018
1111
|
"& .MuiButton-root": {
|
|
1019
|
-
marginRight:
|
|
1020
|
-
color:
|
|
1112
|
+
marginRight: r.spacing(1.5),
|
|
1113
|
+
color: r.palette.text.primary,
|
|
1021
1114
|
"&:hover": {
|
|
1022
|
-
backgroundColor:
|
|
1115
|
+
backgroundColor: r.palette.action.hover
|
|
1023
1116
|
}
|
|
1024
1117
|
}
|
|
1025
1118
|
},
|
|
1026
1119
|
"& .MuiDataGrid-cell, .MuiDataGrid-columnsContainer": {
|
|
1027
|
-
borderBottom: `1px solid ${
|
|
1120
|
+
borderBottom: `1px solid ${r.palette.divider}`
|
|
1028
1121
|
},
|
|
1029
1122
|
"& .MuiDataGrid-columnSeparator": {
|
|
1030
|
-
color:
|
|
1123
|
+
color: r.palette.divider
|
|
1031
1124
|
},
|
|
1032
1125
|
'& .MuiDataGrid-columnHeader[data-field="__check__"]': {
|
|
1033
1126
|
padding: 0
|
|
@@ -1039,11 +1132,11 @@ function Z(o) {
|
|
|
1039
1132
|
styleOverrides: {
|
|
1040
1133
|
root: {
|
|
1041
1134
|
"& .MuiDataGrid-gridMenuList": {
|
|
1042
|
-
boxShadow:
|
|
1043
|
-
borderRadius:
|
|
1135
|
+
boxShadow: r.customShadows.z20,
|
|
1136
|
+
borderRadius: r.shape.borderRadius
|
|
1044
1137
|
},
|
|
1045
1138
|
"& .MuiMenuItem-root": {
|
|
1046
|
-
...
|
|
1139
|
+
...r.typography.body2
|
|
1047
1140
|
}
|
|
1048
1141
|
}
|
|
1049
1142
|
}
|
|
@@ -1051,20 +1144,20 @@ function Z(o) {
|
|
|
1051
1144
|
MuiGridFilterForm: {
|
|
1052
1145
|
styleOverrides: {
|
|
1053
1146
|
root: {
|
|
1054
|
-
padding:
|
|
1147
|
+
padding: r.spacing(1.5, 0),
|
|
1055
1148
|
"& .MuiFormControl-root": {
|
|
1056
|
-
margin:
|
|
1149
|
+
margin: r.spacing(0, 0.5)
|
|
1057
1150
|
},
|
|
1058
1151
|
"& .MuiInput-root": {
|
|
1059
|
-
marginTop:
|
|
1152
|
+
marginTop: r.spacing(3),
|
|
1060
1153
|
"&::before, &::after": {
|
|
1061
1154
|
display: "none"
|
|
1062
1155
|
},
|
|
1063
1156
|
"& .MuiNativeSelect-select, .MuiInput-input": {
|
|
1064
|
-
...
|
|
1065
|
-
padding:
|
|
1066
|
-
borderRadius:
|
|
1067
|
-
backgroundColor:
|
|
1157
|
+
...r.typography.body2,
|
|
1158
|
+
padding: r.spacing(0.75, 1),
|
|
1159
|
+
borderRadius: r.shape.borderRadius,
|
|
1160
|
+
backgroundColor: r.palette.background.neutral
|
|
1068
1161
|
},
|
|
1069
1162
|
"& .MuiSvgIcon-root": {
|
|
1070
1163
|
right: 4
|
|
@@ -1076,21 +1169,21 @@ function Z(o) {
|
|
|
1076
1169
|
MuiGridPanelFooter: {
|
|
1077
1170
|
styleOverrides: {
|
|
1078
1171
|
root: {
|
|
1079
|
-
padding:
|
|
1172
|
+
padding: r.spacing(2),
|
|
1080
1173
|
justifyContent: "flex-end",
|
|
1081
1174
|
"& .MuiButton-root": {
|
|
1082
1175
|
"&:first-of-type": {
|
|
1083
|
-
marginRight:
|
|
1084
|
-
color:
|
|
1176
|
+
marginRight: r.spacing(1.5),
|
|
1177
|
+
color: r.palette.text.primary,
|
|
1085
1178
|
"&:hover": {
|
|
1086
|
-
backgroundColor:
|
|
1179
|
+
backgroundColor: r.palette.action.hover
|
|
1087
1180
|
}
|
|
1088
1181
|
},
|
|
1089
1182
|
"&:last-of-type": {
|
|
1090
|
-
color:
|
|
1091
|
-
backgroundColor:
|
|
1183
|
+
color: r.palette.common.white,
|
|
1184
|
+
backgroundColor: r.palette.primary.main,
|
|
1092
1185
|
"&:hover": {
|
|
1093
|
-
backgroundColor:
|
|
1186
|
+
backgroundColor: r.palette.primary.dark
|
|
1094
1187
|
}
|
|
1095
1188
|
}
|
|
1096
1189
|
}
|
|
@@ -1099,7 +1192,7 @@ function Z(o) {
|
|
|
1099
1192
|
}
|
|
1100
1193
|
};
|
|
1101
1194
|
}
|
|
1102
|
-
function
|
|
1195
|
+
function fr(r) {
|
|
1103
1196
|
return {
|
|
1104
1197
|
MuiSkeleton: {
|
|
1105
1198
|
defaultProps: {
|
|
@@ -1107,23 +1200,23 @@ function oo(o) {
|
|
|
1107
1200
|
},
|
|
1108
1201
|
styleOverrides: {
|
|
1109
1202
|
root: {
|
|
1110
|
-
backgroundColor:
|
|
1203
|
+
backgroundColor: r.palette.divider
|
|
1111
1204
|
}
|
|
1112
1205
|
}
|
|
1113
1206
|
}
|
|
1114
1207
|
};
|
|
1115
1208
|
}
|
|
1116
|
-
function
|
|
1117
|
-
const
|
|
1209
|
+
function Mr(r) {
|
|
1210
|
+
const o = e(r.palette.grey[900], 0.48), t = e(r.palette.grey[900], 1);
|
|
1118
1211
|
return {
|
|
1119
1212
|
MuiBackdrop: {
|
|
1120
1213
|
styleOverrides: {
|
|
1121
1214
|
root: {
|
|
1122
1215
|
background: [
|
|
1123
1216
|
"rgb(22,28,36)",
|
|
1124
|
-
`-moz-linear-gradient(75deg, ${
|
|
1125
|
-
`-webkit-linear-gradient(75deg, ${
|
|
1126
|
-
`linear-gradient(75deg, ${
|
|
1217
|
+
`-moz-linear-gradient(75deg, ${o} 0%, ${t} 100%)`,
|
|
1218
|
+
`-webkit-linear-gradient(75deg, ${o} 0%, ${t} 100%)`,
|
|
1219
|
+
`linear-gradient(75deg, ${o} 0%, ${t} 100%)`
|
|
1127
1220
|
],
|
|
1128
1221
|
"&.MuiBackdrop-invisible": {
|
|
1129
1222
|
background: "transparent"
|
|
@@ -1133,8 +1226,8 @@ function ro(o) {
|
|
|
1133
1226
|
}
|
|
1134
1227
|
};
|
|
1135
1228
|
}
|
|
1136
|
-
function
|
|
1137
|
-
const
|
|
1229
|
+
function hr(r) {
|
|
1230
|
+
const o = r.palette.mode === "light";
|
|
1138
1231
|
return {
|
|
1139
1232
|
MuiLinearProgress: {
|
|
1140
1233
|
styleOverrides: {
|
|
@@ -1146,7 +1239,7 @@ function to(o) {
|
|
|
1146
1239
|
borderRadius: 4
|
|
1147
1240
|
},
|
|
1148
1241
|
colorPrimary: {
|
|
1149
|
-
backgroundColor:
|
|
1242
|
+
backgroundColor: r.palette.primary[o ? "lighter" : "darker"]
|
|
1150
1243
|
},
|
|
1151
1244
|
buffer: {
|
|
1152
1245
|
backgroundColor: "transparent"
|
|
@@ -1155,7 +1248,7 @@ function to(o) {
|
|
|
1155
1248
|
}
|
|
1156
1249
|
};
|
|
1157
1250
|
}
|
|
1158
|
-
function
|
|
1251
|
+
function Fr(r) {
|
|
1159
1252
|
return {
|
|
1160
1253
|
MuiTimelineDot: {
|
|
1161
1254
|
styleOverrides: {
|
|
@@ -1167,43 +1260,43 @@ function io(o) {
|
|
|
1167
1260
|
MuiTimelineConnector: {
|
|
1168
1261
|
styleOverrides: {
|
|
1169
1262
|
root: {
|
|
1170
|
-
backgroundColor:
|
|
1263
|
+
backgroundColor: r.palette.divider
|
|
1171
1264
|
}
|
|
1172
1265
|
}
|
|
1173
1266
|
}
|
|
1174
1267
|
};
|
|
1175
1268
|
}
|
|
1176
|
-
function
|
|
1269
|
+
function vr(r) {
|
|
1177
1270
|
return {
|
|
1178
1271
|
MuiCheckbox: {
|
|
1179
1272
|
styleOverrides: {
|
|
1180
1273
|
root: {
|
|
1181
|
-
padding:
|
|
1274
|
+
padding: r.spacing(1),
|
|
1182
1275
|
oleee: "sss",
|
|
1183
|
-
color:
|
|
1276
|
+
color: r.palette.action.active,
|
|
1184
1277
|
"& .Mui-checked": {
|
|
1185
|
-
color:
|
|
1278
|
+
color: r.palette.primary.main
|
|
1186
1279
|
},
|
|
1187
1280
|
"&.Mui-checked.Mui-disabled, &.Mui-disabled": {
|
|
1188
|
-
color:
|
|
1281
|
+
color: r.palette.action.disabled
|
|
1189
1282
|
}
|
|
1190
1283
|
}
|
|
1191
1284
|
}
|
|
1192
1285
|
}
|
|
1193
1286
|
};
|
|
1194
1287
|
}
|
|
1195
|
-
function
|
|
1288
|
+
function kr(r) {
|
|
1196
1289
|
return {
|
|
1197
1290
|
MuiAccordion: {
|
|
1198
1291
|
styleOverrides: {
|
|
1199
1292
|
root: {
|
|
1200
|
-
backgroundColor:
|
|
1293
|
+
backgroundColor: r.palette.background.default,
|
|
1201
1294
|
width: "100%",
|
|
1202
1295
|
marginTop: "0px",
|
|
1203
|
-
marginBottom:
|
|
1296
|
+
marginBottom: r.spacing(1.5),
|
|
1204
1297
|
"&.Mui-expanded": {
|
|
1205
1298
|
marginTop: "0px",
|
|
1206
|
-
marginBottom:
|
|
1299
|
+
marginBottom: r.spacing(1.5)
|
|
1207
1300
|
},
|
|
1208
1301
|
border: "0px solid transparent",
|
|
1209
1302
|
"&.Mui-disabled": {
|
|
@@ -1218,35 +1311,35 @@ function ao(o) {
|
|
|
1218
1311
|
MuiAccordionDetails: {
|
|
1219
1312
|
styleOverrides: {
|
|
1220
1313
|
root: {
|
|
1221
|
-
padding: `0px ${
|
|
1314
|
+
padding: `0px ${r.spacing(0)}`
|
|
1222
1315
|
}
|
|
1223
1316
|
}
|
|
1224
1317
|
},
|
|
1225
1318
|
MuiAccordionSummary: {
|
|
1226
1319
|
styleOverrides: {
|
|
1227
1320
|
root: {
|
|
1228
|
-
borderRadius:
|
|
1229
|
-
height:
|
|
1230
|
-
minHeight:
|
|
1231
|
-
backgroundColor:
|
|
1232
|
-
paddingLeft:
|
|
1233
|
-
paddingRight:
|
|
1321
|
+
borderRadius: r.spacing(0.5),
|
|
1322
|
+
height: r.spacing(4.5),
|
|
1323
|
+
minHeight: r.spacing(4.5),
|
|
1324
|
+
backgroundColor: r.palette.background.header,
|
|
1325
|
+
paddingLeft: r.spacing(2),
|
|
1326
|
+
paddingRight: r.spacing(2),
|
|
1234
1327
|
marginBottom: "0px",
|
|
1235
1328
|
"&.Mui-expanded": {
|
|
1236
|
-
height:
|
|
1237
|
-
minHeight:
|
|
1238
|
-
borderRadius: `${
|
|
1329
|
+
height: r.spacing(4.5),
|
|
1330
|
+
minHeight: r.spacing(4.5),
|
|
1331
|
+
borderRadius: `${r.spacing(0.5)} ${r.spacing(0.5)} 0px 0px`
|
|
1239
1332
|
},
|
|
1240
1333
|
"&.Mui-disabled": {
|
|
1241
1334
|
opacity: 1,
|
|
1242
|
-
color:
|
|
1335
|
+
color: r.palette.action.disabled,
|
|
1243
1336
|
"& .MuiTypography-root": {
|
|
1244
1337
|
color: "inherit"
|
|
1245
1338
|
}
|
|
1246
1339
|
}
|
|
1247
1340
|
},
|
|
1248
1341
|
expandIconWrapper: {
|
|
1249
|
-
color:
|
|
1342
|
+
color: r.palette.action.active,
|
|
1250
1343
|
height: 20,
|
|
1251
1344
|
width: 20,
|
|
1252
1345
|
alignItems: "center",
|
|
@@ -1257,7 +1350,7 @@ function ao(o) {
|
|
|
1257
1350
|
}
|
|
1258
1351
|
},
|
|
1259
1352
|
content: {
|
|
1260
|
-
...
|
|
1353
|
+
...r.typography.subtitle2,
|
|
1261
1354
|
margin: "0px",
|
|
1262
1355
|
"&.Mui-expanded": {
|
|
1263
1356
|
margin: "0px"
|
|
@@ -1267,93 +1360,93 @@ function ao(o) {
|
|
|
1267
1360
|
}
|
|
1268
1361
|
};
|
|
1269
1362
|
}
|
|
1270
|
-
function
|
|
1363
|
+
function Sr(r) {
|
|
1271
1364
|
return {
|
|
1272
1365
|
MuiTypography: {
|
|
1273
1366
|
styleOverrides: {
|
|
1274
1367
|
paragraph: {
|
|
1275
|
-
marginBottom:
|
|
1368
|
+
marginBottom: r.spacing(2)
|
|
1276
1369
|
},
|
|
1277
1370
|
gutterBottom: {
|
|
1278
|
-
marginBottom:
|
|
1371
|
+
marginBottom: r.spacing(1)
|
|
1279
1372
|
}
|
|
1280
1373
|
}
|
|
1281
1374
|
}
|
|
1282
1375
|
};
|
|
1283
1376
|
}
|
|
1284
|
-
function
|
|
1377
|
+
function Cr(r) {
|
|
1285
1378
|
return {
|
|
1286
1379
|
MuiPaginationItem: {
|
|
1287
1380
|
styleOverrides: {
|
|
1288
1381
|
root: {
|
|
1289
1382
|
"&.Mui-selected": {
|
|
1290
|
-
fontWeight:
|
|
1383
|
+
fontWeight: r.typography.fontWeightBold
|
|
1291
1384
|
}
|
|
1292
1385
|
},
|
|
1293
1386
|
textPrimary: {
|
|
1294
1387
|
"&.Mui-selected": {
|
|
1295
|
-
color:
|
|
1296
|
-
backgroundColor:
|
|
1388
|
+
color: r.palette.primary.main,
|
|
1389
|
+
backgroundColor: e(r.palette.primary.main, 0.08),
|
|
1297
1390
|
"&:hover, &.Mui-focusVisible": {
|
|
1298
|
-
backgroundColor: `${
|
|
1299
|
-
|
|
1391
|
+
backgroundColor: `${e(
|
|
1392
|
+
r.palette.primary.main,
|
|
1300
1393
|
0.24
|
|
1301
1394
|
)} !important`
|
|
1302
1395
|
}
|
|
1303
1396
|
}
|
|
1304
1397
|
},
|
|
1305
1398
|
outlined: {
|
|
1306
|
-
border: `1px solid ${
|
|
1399
|
+
border: `1px solid ${r.palette.grey[50032]}`
|
|
1307
1400
|
},
|
|
1308
1401
|
outlinedPrimary: {
|
|
1309
1402
|
"&.Mui-selected": {
|
|
1310
|
-
backgroundColor:
|
|
1311
|
-
border: `1px solid ${
|
|
1403
|
+
backgroundColor: e(r.palette.primary.main, 0.08),
|
|
1404
|
+
border: `1px solid ${e(r.palette.primary.main, 0.24)}`
|
|
1312
1405
|
}
|
|
1313
1406
|
}
|
|
1314
1407
|
}
|
|
1315
1408
|
}
|
|
1316
1409
|
};
|
|
1317
1410
|
}
|
|
1318
|
-
function
|
|
1411
|
+
function $r(r) {
|
|
1319
1412
|
return {
|
|
1320
1413
|
MuiBreadcrumbs: {
|
|
1321
1414
|
styleOverrides: {
|
|
1322
1415
|
separator: {
|
|
1323
|
-
marginLeft:
|
|
1324
|
-
marginRight:
|
|
1416
|
+
marginLeft: r.spacing(2),
|
|
1417
|
+
marginRight: r.spacing(2)
|
|
1325
1418
|
}
|
|
1326
1419
|
}
|
|
1327
1420
|
}
|
|
1328
1421
|
};
|
|
1329
1422
|
}
|
|
1330
|
-
function
|
|
1331
|
-
const
|
|
1332
|
-
props: { variant: "contained", color:
|
|
1333
|
-
style: { boxShadow:
|
|
1423
|
+
function wr(r) {
|
|
1424
|
+
const o = (t) => ({
|
|
1425
|
+
props: { variant: "contained", color: t },
|
|
1426
|
+
style: { boxShadow: r.customShadows[t] }
|
|
1334
1427
|
});
|
|
1335
1428
|
return {
|
|
1336
1429
|
MuiButtonGroup: {
|
|
1337
1430
|
variants: [
|
|
1338
1431
|
{
|
|
1339
1432
|
props: { variant: "contained", color: "inherit" },
|
|
1340
|
-
style: { boxShadow:
|
|
1433
|
+
style: { boxShadow: r.customShadows.z8 }
|
|
1341
1434
|
},
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1435
|
+
o("primary"),
|
|
1436
|
+
o("secondary"),
|
|
1437
|
+
o("info"),
|
|
1438
|
+
o("success"),
|
|
1439
|
+
o("warning"),
|
|
1440
|
+
o("error"),
|
|
1348
1441
|
{
|
|
1349
1442
|
props: { disabled: !0 },
|
|
1350
1443
|
style: {
|
|
1351
1444
|
boxShadow: "none",
|
|
1352
1445
|
"& .MuiButtonGroup-grouped.Mui-disabled": {
|
|
1353
|
-
color:
|
|
1354
|
-
borderColor: `${
|
|
1446
|
+
color: r.palette.action.disabled,
|
|
1447
|
+
borderColor: `${r.palette.action.disabledBackground} !important`,
|
|
1355
1448
|
"&.MuiButton-contained": {
|
|
1356
|
-
backgroundColor:
|
|
1449
|
+
backgroundColor: r.palette.action.disabledBackground
|
|
1357
1450
|
}
|
|
1358
1451
|
}
|
|
1359
1452
|
}
|
|
@@ -1369,7 +1462,7 @@ function lo(o) {
|
|
|
1369
1462
|
}
|
|
1370
1463
|
};
|
|
1371
1464
|
}
|
|
1372
|
-
function
|
|
1465
|
+
function mr(r) {
|
|
1373
1466
|
return {
|
|
1374
1467
|
MuiCssBaseline: {
|
|
1375
1468
|
styleOverrides: {
|
|
@@ -1412,7 +1505,7 @@ function uo(o) {
|
|
|
1412
1505
|
}
|
|
1413
1506
|
};
|
|
1414
1507
|
}
|
|
1415
|
-
function
|
|
1508
|
+
function Br(r) {
|
|
1416
1509
|
return {
|
|
1417
1510
|
MuiAutocomplete: {
|
|
1418
1511
|
styleOverrides: {
|
|
@@ -1421,37 +1514,37 @@ function co(o) {
|
|
|
1421
1514
|
padding: "0 39px 0px 0"
|
|
1422
1515
|
},
|
|
1423
1516
|
input: {
|
|
1424
|
-
padding: `${
|
|
1517
|
+
padding: `${r.spacing(1.5, 1.5)}!important`
|
|
1425
1518
|
}
|
|
1426
1519
|
},
|
|
1427
1520
|
paper: {
|
|
1428
|
-
boxShadow:
|
|
1521
|
+
boxShadow: r.customShadows.dropdown
|
|
1429
1522
|
},
|
|
1430
1523
|
listbox: {
|
|
1431
|
-
padding:
|
|
1524
|
+
padding: r.spacing(0, 1),
|
|
1432
1525
|
"& .MuiAutocomplete-option": {
|
|
1433
|
-
padding:
|
|
1434
|
-
margin:
|
|
1435
|
-
borderRadius:
|
|
1526
|
+
padding: r.spacing(1),
|
|
1527
|
+
margin: r.spacing(1, 0),
|
|
1528
|
+
borderRadius: r.shape.borderRadius
|
|
1436
1529
|
}
|
|
1437
1530
|
}
|
|
1438
1531
|
}
|
|
1439
1532
|
}
|
|
1440
1533
|
};
|
|
1441
1534
|
}
|
|
1442
|
-
const s = (
|
|
1443
|
-
props: { color:
|
|
1535
|
+
const s = (r, o) => ({
|
|
1536
|
+
props: { color: o },
|
|
1444
1537
|
style: {
|
|
1445
1538
|
"&:hover": {
|
|
1446
|
-
borderColor:
|
|
1447
|
-
backgroundColor:
|
|
1539
|
+
borderColor: e(r.palette[o].main, 0.48),
|
|
1540
|
+
backgroundColor: e(r.palette[o].main, r.palette.action.hoverOpacity)
|
|
1448
1541
|
},
|
|
1449
1542
|
"&.Mui-selected": {
|
|
1450
|
-
borderColor:
|
|
1543
|
+
borderColor: e(r.palette[o].main, 0.48)
|
|
1451
1544
|
}
|
|
1452
1545
|
}
|
|
1453
1546
|
});
|
|
1454
|
-
function
|
|
1547
|
+
function Or(r) {
|
|
1455
1548
|
return {
|
|
1456
1549
|
MuiToggleButton: {
|
|
1457
1550
|
variants: [
|
|
@@ -1459,68 +1552,68 @@ function go(o) {
|
|
|
1459
1552
|
props: { color: "standard" },
|
|
1460
1553
|
style: {
|
|
1461
1554
|
"&.Mui-selected": {
|
|
1462
|
-
backgroundColor:
|
|
1555
|
+
backgroundColor: r.palette.action.selected
|
|
1463
1556
|
}
|
|
1464
1557
|
}
|
|
1465
1558
|
},
|
|
1466
|
-
s(
|
|
1467
|
-
s(
|
|
1468
|
-
s(
|
|
1469
|
-
s(
|
|
1470
|
-
s(
|
|
1471
|
-
s(
|
|
1559
|
+
s(r, "primary"),
|
|
1560
|
+
s(r, "secondary"),
|
|
1561
|
+
s(r, "info"),
|
|
1562
|
+
s(r, "success"),
|
|
1563
|
+
s(r, "warning"),
|
|
1564
|
+
s(r, "error")
|
|
1472
1565
|
]
|
|
1473
1566
|
},
|
|
1474
1567
|
MuiToggleButtonGroup: {
|
|
1475
1568
|
styleOverrides: {
|
|
1476
1569
|
root: {
|
|
1477
|
-
borderRadius:
|
|
1478
|
-
backgroundColor:
|
|
1479
|
-
border: `solid 1px ${
|
|
1570
|
+
borderRadius: r.shape.borderRadius,
|
|
1571
|
+
backgroundColor: r.palette.background.paper,
|
|
1572
|
+
border: `solid 1px ${r.palette.grey[50012]}`,
|
|
1480
1573
|
"& .MuiToggleButton-root": {
|
|
1481
1574
|
margin: 4,
|
|
1482
1575
|
borderColor: "transparent !important",
|
|
1483
|
-
borderRadius: `${
|
|
1576
|
+
borderRadius: `${r.shape.borderRadius}px !important`
|
|
1484
1577
|
}
|
|
1485
1578
|
}
|
|
1486
1579
|
}
|
|
1487
1580
|
}
|
|
1488
1581
|
};
|
|
1489
1582
|
}
|
|
1490
|
-
function
|
|
1583
|
+
function Lr(r) {
|
|
1491
1584
|
return {
|
|
1492
1585
|
MuiFormControlLabel: {
|
|
1493
1586
|
styleOverrides: {
|
|
1494
1587
|
label: {
|
|
1495
|
-
...
|
|
1588
|
+
...r.typography.body1
|
|
1496
1589
|
}
|
|
1497
1590
|
}
|
|
1498
1591
|
},
|
|
1499
1592
|
MuiFormHelperText: {
|
|
1500
1593
|
styleOverrides: {
|
|
1501
1594
|
root: {
|
|
1502
|
-
marginTop:
|
|
1595
|
+
marginTop: r.spacing(1)
|
|
1503
1596
|
}
|
|
1504
1597
|
}
|
|
1505
1598
|
},
|
|
1506
1599
|
MuiFormLabel: {
|
|
1507
1600
|
styleOverrides: {
|
|
1508
1601
|
root: {
|
|
1509
|
-
color:
|
|
1602
|
+
color: r.palette.text.disabled
|
|
1510
1603
|
}
|
|
1511
1604
|
}
|
|
1512
1605
|
}
|
|
1513
1606
|
};
|
|
1514
1607
|
}
|
|
1515
|
-
function
|
|
1608
|
+
function Rr(r) {
|
|
1516
1609
|
return {
|
|
1517
1610
|
MuiLoadingButton: {
|
|
1518
1611
|
styleOverrides: {
|
|
1519
1612
|
root: {
|
|
1520
1613
|
"&.MuiLoadingButton-root": {
|
|
1521
|
-
...
|
|
1614
|
+
...r.typography.subtitle2,
|
|
1522
1615
|
"& .MuiCircularProgress-root": {
|
|
1523
|
-
color:
|
|
1616
|
+
color: r.palette.primary.main
|
|
1524
1617
|
}
|
|
1525
1618
|
},
|
|
1526
1619
|
"&.MuiButton-text": {
|
|
@@ -1536,15 +1629,15 @@ function bo(o) {
|
|
|
1536
1629
|
}
|
|
1537
1630
|
};
|
|
1538
1631
|
}
|
|
1539
|
-
const
|
|
1632
|
+
const Tr = (r) => ({
|
|
1540
1633
|
M4LBruceTest: {
|
|
1541
1634
|
styleOverrides: {}
|
|
1542
1635
|
}
|
|
1543
|
-
}),
|
|
1636
|
+
}), Dr = (r) => ({
|
|
1544
1637
|
M4LDynamicFilter: {
|
|
1545
1638
|
styleOverrides: {}
|
|
1546
1639
|
}
|
|
1547
|
-
}),
|
|
1640
|
+
}), Ar = (r) => ({
|
|
1548
1641
|
M4LRHFTextFieldPassword: {
|
|
1549
1642
|
styleOverrides: {
|
|
1550
1643
|
["&.M4LRHFTextFieldPassword-root"]: {
|
|
@@ -1554,7 +1647,7 @@ const yo = (o) => ({
|
|
|
1554
1647
|
}
|
|
1555
1648
|
}
|
|
1556
1649
|
}
|
|
1557
|
-
}),
|
|
1650
|
+
}), Ir = (r) => ({
|
|
1558
1651
|
M4LRHFTextField: {
|
|
1559
1652
|
styleOverrides: {
|
|
1560
1653
|
["&.M4LRHFTextField-root"]: {
|
|
@@ -1568,7 +1661,7 @@ const yo = (o) => ({
|
|
|
1568
1661
|
}
|
|
1569
1662
|
}
|
|
1570
1663
|
}
|
|
1571
|
-
}),
|
|
1664
|
+
}), zr = (r) => ({
|
|
1572
1665
|
M4LIcon: {
|
|
1573
1666
|
styleOverrides: {
|
|
1574
1667
|
["&.M4LIcon-root"]: {
|
|
@@ -1576,7 +1669,7 @@ const yo = (o) => ({
|
|
|
1576
1669
|
}
|
|
1577
1670
|
}
|
|
1578
1671
|
}
|
|
1579
|
-
}),
|
|
1672
|
+
}), Pr = (r) => ({
|
|
1580
1673
|
M4LIconButton: {
|
|
1581
1674
|
styleOverrides: {
|
|
1582
1675
|
["&.M4LIconButton-root"]: {
|
|
@@ -1584,7 +1677,7 @@ const yo = (o) => ({
|
|
|
1584
1677
|
}
|
|
1585
1678
|
}
|
|
1586
1679
|
}
|
|
1587
|
-
}),
|
|
1680
|
+
}), Er = (r) => ({
|
|
1588
1681
|
M4LanguagePopover: {
|
|
1589
1682
|
styleOverrides: {
|
|
1590
1683
|
["&.M4LanguagePopover-root"]: {
|
|
@@ -1595,7 +1688,7 @@ const yo = (o) => ({
|
|
|
1595
1688
|
}
|
|
1596
1689
|
}
|
|
1597
1690
|
}
|
|
1598
|
-
}),
|
|
1691
|
+
}), Hr = (r) => ({
|
|
1599
1692
|
M4LImageButton: {
|
|
1600
1693
|
styleOverrides: {
|
|
1601
1694
|
["&.M4LImageButton-root"]: {
|
|
@@ -1603,7 +1696,7 @@ const yo = (o) => ({
|
|
|
1603
1696
|
}
|
|
1604
1697
|
}
|
|
1605
1698
|
}
|
|
1606
|
-
}),
|
|
1699
|
+
}), Wr = (r) => ({
|
|
1607
1700
|
M4LImage: {
|
|
1608
1701
|
styleOverrides: {
|
|
1609
1702
|
["&.M4LImage-root"]: {
|
|
@@ -1611,7 +1704,7 @@ const yo = (o) => ({
|
|
|
1611
1704
|
}
|
|
1612
1705
|
}
|
|
1613
1706
|
}
|
|
1614
|
-
}),
|
|
1707
|
+
}), Gr = (r) => ({
|
|
1615
1708
|
M4LPopover: {
|
|
1616
1709
|
styleOverrides: {
|
|
1617
1710
|
["&.M4LPopover-root"]: {
|
|
@@ -1622,7 +1715,7 @@ const yo = (o) => ({
|
|
|
1622
1715
|
}
|
|
1623
1716
|
}
|
|
1624
1717
|
}
|
|
1625
|
-
}),
|
|
1718
|
+
}), Nr = (r) => ({
|
|
1626
1719
|
M4LRHFCheckbox: {
|
|
1627
1720
|
styleOverrides: {
|
|
1628
1721
|
["&.M4LRHFCheckbox-root"]: {
|
|
@@ -1630,7 +1723,7 @@ const yo = (o) => ({
|
|
|
1630
1723
|
}
|
|
1631
1724
|
}
|
|
1632
1725
|
}
|
|
1633
|
-
}),
|
|
1726
|
+
}), _r = (r) => ({
|
|
1634
1727
|
M4LErrorLabel: {
|
|
1635
1728
|
styleOverrides: {
|
|
1636
1729
|
["&.M4LErrorLabel-root"]: {
|
|
@@ -1638,7 +1731,7 @@ const yo = (o) => ({
|
|
|
1638
1731
|
}
|
|
1639
1732
|
}
|
|
1640
1733
|
}
|
|
1641
|
-
}),
|
|
1734
|
+
}), Yr = (r) => ({
|
|
1642
1735
|
M4LTypography: {
|
|
1643
1736
|
styleOverrides: {
|
|
1644
1737
|
["&.M4LTypography-root"]: {
|
|
@@ -1646,7 +1739,7 @@ const yo = (o) => ({
|
|
|
1646
1739
|
}
|
|
1647
1740
|
}
|
|
1648
1741
|
}
|
|
1649
|
-
}),
|
|
1742
|
+
}), jr = (r) => ({
|
|
1650
1743
|
M4LButton: {
|
|
1651
1744
|
styleOverrides: {
|
|
1652
1745
|
["&.M4LButton-root"]: {
|
|
@@ -1655,67 +1748,79 @@ const yo = (o) => ({
|
|
|
1655
1748
|
}
|
|
1656
1749
|
}
|
|
1657
1750
|
});
|
|
1658
|
-
function
|
|
1751
|
+
function Qr(r) {
|
|
1659
1752
|
return Object.assign(
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1753
|
+
J(r),
|
|
1754
|
+
X(r),
|
|
1755
|
+
Q(r),
|
|
1756
|
+
Z(r),
|
|
1757
|
+
rr(r),
|
|
1758
|
+
ar(r),
|
|
1759
|
+
nr(),
|
|
1760
|
+
pr(r),
|
|
1761
|
+
er(),
|
|
1762
|
+
or(r),
|
|
1763
|
+
tr(r),
|
|
1764
|
+
ir(r),
|
|
1765
|
+
ur(r),
|
|
1766
|
+
U(r),
|
|
1767
|
+
q(r),
|
|
1768
|
+
sr(r),
|
|
1769
|
+
K(r),
|
|
1770
|
+
lr(r),
|
|
1771
|
+
dr(r),
|
|
1772
|
+
br(r),
|
|
1773
|
+
gr(r),
|
|
1774
|
+
xr(r),
|
|
1775
|
+
cr(),
|
|
1776
|
+
vr(r),
|
|
1777
|
+
yr(r),
|
|
1778
|
+
fr(r),
|
|
1779
|
+
Fr(r),
|
|
1780
|
+
Mr(r),
|
|
1781
|
+
hr(r),
|
|
1782
|
+
kr(r),
|
|
1783
|
+
Sr(r),
|
|
1784
|
+
Cr(r),
|
|
1785
|
+
wr(r),
|
|
1786
|
+
$r(r),
|
|
1787
|
+
mr(),
|
|
1788
|
+
Br(r),
|
|
1789
|
+
Lr(r),
|
|
1790
|
+
Or(r),
|
|
1791
|
+
Rr(r),
|
|
1792
|
+
Tr(),
|
|
1793
|
+
Dr(),
|
|
1794
|
+
Ir(),
|
|
1795
|
+
Ar(),
|
|
1796
|
+
zr(),
|
|
1797
|
+
Pr(),
|
|
1798
|
+
Er(),
|
|
1799
|
+
Hr(),
|
|
1800
|
+
Wr(),
|
|
1801
|
+
Gr(),
|
|
1802
|
+
Nr(),
|
|
1803
|
+
_r(),
|
|
1804
|
+
Yr(),
|
|
1805
|
+
jr()
|
|
1713
1806
|
);
|
|
1714
1807
|
}
|
|
1715
1808
|
export {
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1809
|
+
P as bluePreset,
|
|
1810
|
+
l as colorPresets,
|
|
1811
|
+
j as customShadows,
|
|
1812
|
+
z as cyanPreset,
|
|
1813
|
+
A as defaultPreset,
|
|
1814
|
+
Jr as defaultThemeOptions,
|
|
1815
|
+
Qr as fnComponentsOverrides,
|
|
1816
|
+
W as getColorPresets,
|
|
1817
|
+
qr as getFontValue,
|
|
1818
|
+
E as orangePreset,
|
|
1719
1819
|
p as palette,
|
|
1720
|
-
|
|
1820
|
+
I as purplePreset,
|
|
1821
|
+
n as pxToRem,
|
|
1822
|
+
H as redPreset,
|
|
1823
|
+
G as remToPx,
|
|
1824
|
+
d as responsiveFontSizes,
|
|
1825
|
+
V as shadows
|
|
1721
1826
|
};
|