@bwp-web/styles 0.1.0
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/dist/icons/BreadcrumbIcon.d.ts +3 -0
- package/dist/icons/BreadcrumbIcon.d.ts.map +1 -0
- package/dist/icons/CheckedIcon.d.ts +3 -0
- package/dist/icons/CheckedIcon.d.ts.map +1 -0
- package/dist/icons/DatePickerIcon.d.ts +3 -0
- package/dist/icons/DatePickerIcon.d.ts.map +1 -0
- package/dist/icons/ErrorStatusIcon.d.ts +3 -0
- package/dist/icons/ErrorStatusIcon.d.ts.map +1 -0
- package/dist/icons/IndeterminateIcon.d.ts +3 -0
- package/dist/icons/IndeterminateIcon.d.ts.map +1 -0
- package/dist/icons/InfoStatusIcon.d.ts +3 -0
- package/dist/icons/InfoStatusIcon.d.ts.map +1 -0
- package/dist/icons/InputCloseIcon.d.ts +3 -0
- package/dist/icons/InputCloseIcon.d.ts.map +1 -0
- package/dist/icons/SuccessStatusIcon.d.ts +3 -0
- package/dist/icons/SuccessStatusIcon.d.ts.map +1 -0
- package/dist/icons/UncheckedIcon.d.ts +3 -0
- package/dist/icons/UncheckedIcon.d.ts.map +1 -0
- package/dist/icons/WarningStatusIcon.d.ts +3 -0
- package/dist/icons/WarningStatusIcon.d.ts.map +1 -0
- package/dist/icons/index.d.ts +11 -0
- package/dist/icons/index.d.ts.map +1 -0
- package/dist/index.cjs +1933 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1905 -0
- package/dist/index.js.map +1 -0
- package/dist/theme.d.ts +4 -0
- package/dist/theme.d.ts.map +1 -0
- package/mui-theme-augmentation.d.ts +92 -0
- package/package.json +58 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,1905 @@
|
|
|
1
|
+
// src/icons/BreadcrumbIcon.tsx
|
|
2
|
+
import { SvgIcon } from "@mui/material";
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
function BreadcrumbIcon(props) {
|
|
5
|
+
return /* @__PURE__ */ jsx(SvgIcon, { ...props, children: /* @__PURE__ */ jsx(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
width: "16",
|
|
9
|
+
height: "16",
|
|
10
|
+
viewBox: "0 0 16 16",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
children: /* @__PURE__ */ jsx(
|
|
14
|
+
"path",
|
|
15
|
+
{
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
clipRule: "evenodd",
|
|
18
|
+
d: "M5.43427 3.43427C5.74669 3.12185 6.25322 3.12185 6.56564 3.43427L10.5656 7.43427C10.8781 7.74669 10.8781 8.25322 10.5656 8.56564L6.56564 12.5656C6.25322 12.8781 5.74669 12.8781 5.43427 12.5656C5.12185 12.2532 5.12185 11.7467 5.43427 11.4343L8.86858 7.99995L5.43427 4.56564C5.12185 4.25322 5.12185 3.74669 5.43427 3.43427Z",
|
|
19
|
+
fill: "currentColor"
|
|
20
|
+
}
|
|
21
|
+
)
|
|
22
|
+
}
|
|
23
|
+
) });
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// src/icons/CheckedIcon.tsx
|
|
27
|
+
import { SvgIcon as SvgIcon2 } from "@mui/material";
|
|
28
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
29
|
+
function CheckedIcon(props) {
|
|
30
|
+
return /* @__PURE__ */ jsx2(SvgIcon2, { ...props, children: /* @__PURE__ */ jsxs(
|
|
31
|
+
"svg",
|
|
32
|
+
{
|
|
33
|
+
width: "16",
|
|
34
|
+
height: "16",
|
|
35
|
+
viewBox: "0 0 16 16",
|
|
36
|
+
fill: "none",
|
|
37
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
38
|
+
...props,
|
|
39
|
+
children: [
|
|
40
|
+
/* @__PURE__ */ jsx2("rect", { width: "16", height: "16", rx: "4", fill: "currentColor" }),
|
|
41
|
+
/* @__PURE__ */ jsx2(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
d: "M6.81561 9.47803C6.81717 9.47959 6.8197 9.47959 6.82126 9.47803L11.45 4.84926C11.7586 4.54071 12.2591 4.54159 12.5666 4.85123C12.8725 5.15933 12.8716 5.65682 12.5646 5.96384L6.82237 11.7061C6.8202 11.7082 6.81667 11.7082 6.8145 11.7061L3.43571 8.32728C3.1288 8.02037 3.1288 7.52277 3.43571 7.21587C3.74232 6.90926 4.23931 6.90891 4.54635 7.21509L6.81561 9.47803Z",
|
|
45
|
+
fill: "white"
|
|
46
|
+
}
|
|
47
|
+
)
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
) });
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// src/icons/DatePickerIcon.tsx
|
|
54
|
+
import { SvgIcon as SvgIcon3 } from "@mui/material";
|
|
55
|
+
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
56
|
+
function DatePickerIcon(props) {
|
|
57
|
+
return /* @__PURE__ */ jsx3(SvgIcon3, { ...props, children: /* @__PURE__ */ jsxs2(
|
|
58
|
+
"svg",
|
|
59
|
+
{
|
|
60
|
+
width: "24",
|
|
61
|
+
height: "24",
|
|
62
|
+
viewBox: "0 0 24 24",
|
|
63
|
+
fill: "none",
|
|
64
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
65
|
+
children: [
|
|
66
|
+
/* @__PURE__ */ jsx3(
|
|
67
|
+
"path",
|
|
68
|
+
{
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
clipRule: "evenodd",
|
|
71
|
+
d: "M6.00001 5.79995C5.68175 5.79995 5.37653 5.92638 5.15148 6.15142C4.92644 6.37647 4.80001 6.68169 4.80001 6.99995V19C4.80001 19.3182 4.92644 19.6234 5.15148 19.8485C5.37653 20.0735 5.68175 20.2 6.00001 20.2H18C18.3183 20.2 18.6235 20.0735 18.8485 19.8485C19.0736 19.6234 19.2 19.3182 19.2 19V6.99995C19.2 6.68169 19.0736 6.37647 18.8485 6.15142C18.6235 5.92638 18.3183 5.79995 18 5.79995H6.00001ZM4.02011 5.02005C4.54522 4.49495 5.25741 4.19995 6.00001 4.19995H18C18.7426 4.19995 19.4548 4.49495 19.9799 5.02005C20.505 5.54515 20.8 6.25734 20.8 6.99995V19C20.8 19.7426 20.505 20.4547 19.9799 20.9798C19.4548 21.5049 18.7426 21.7999 18 21.7999H6.00001C5.25741 21.7999 4.54521 21.505 4.02011 20.9798C3.49501 20.4547 3.20001 19.7426 3.20001 19V6.99995C3.20001 6.25734 3.49501 5.54515 4.02011 5.02005Z",
|
|
72
|
+
fill: "currentColor"
|
|
73
|
+
}
|
|
74
|
+
),
|
|
75
|
+
/* @__PURE__ */ jsx3(
|
|
76
|
+
"path",
|
|
77
|
+
{
|
|
78
|
+
fillRule: "evenodd",
|
|
79
|
+
clipRule: "evenodd",
|
|
80
|
+
d: "M16 2.19995C16.4418 2.19995 16.8 2.55812 16.8 2.99995V6.99995C16.8 7.44178 16.4418 7.79995 16 7.79995C15.5582 7.79995 15.2 7.44178 15.2 6.99995V2.99995C15.2 2.55812 15.5582 2.19995 16 2.19995Z",
|
|
81
|
+
fill: "currentColor"
|
|
82
|
+
}
|
|
83
|
+
),
|
|
84
|
+
/* @__PURE__ */ jsx3(
|
|
85
|
+
"path",
|
|
86
|
+
{
|
|
87
|
+
fillRule: "evenodd",
|
|
88
|
+
clipRule: "evenodd",
|
|
89
|
+
d: "M8.00001 2.19995C8.44184 2.19995 8.80001 2.55812 8.80001 2.99995V6.99995C8.80001 7.44178 8.44184 7.79995 8.00001 7.79995C7.55818 7.79995 7.20001 7.44178 7.20001 6.99995V2.99995C7.20001 2.55812 7.55818 2.19995 8.00001 2.19995Z",
|
|
90
|
+
fill: "currentColor"
|
|
91
|
+
}
|
|
92
|
+
),
|
|
93
|
+
/* @__PURE__ */ jsx3(
|
|
94
|
+
"path",
|
|
95
|
+
{
|
|
96
|
+
fillRule: "evenodd",
|
|
97
|
+
clipRule: "evenodd",
|
|
98
|
+
d: "M3.20001 11C3.20001 10.5581 3.55818 10.2 4.00001 10.2H20C20.4418 10.2 20.8 10.5581 20.8 11C20.8 11.4418 20.4418 11.8 20 11.8H4.00001C3.55818 11.8 3.20001 11.4418 3.20001 11Z",
|
|
99
|
+
fill: "currentColor"
|
|
100
|
+
}
|
|
101
|
+
)
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
) });
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// src/icons/ErrorStatusIcon.tsx
|
|
108
|
+
import { SvgIcon as SvgIcon4, useTheme } from "@mui/material";
|
|
109
|
+
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
110
|
+
function ErrorStatusIcon(props) {
|
|
111
|
+
const theme = useTheme();
|
|
112
|
+
const isDarkMode = theme.palette.mode === "dark";
|
|
113
|
+
return /* @__PURE__ */ jsx4(SvgIcon4, { ...props, children: /* @__PURE__ */ jsxs3(
|
|
114
|
+
"svg",
|
|
115
|
+
{
|
|
116
|
+
width: "14",
|
|
117
|
+
height: "14",
|
|
118
|
+
viewBox: "0 0 14 14",
|
|
119
|
+
fill: "none",
|
|
120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
121
|
+
children: [
|
|
122
|
+
/* @__PURE__ */ jsx4("rect", { width: "14", height: "14", rx: "7", fill: "currentColor" }),
|
|
123
|
+
/* @__PURE__ */ jsx4(
|
|
124
|
+
"rect",
|
|
125
|
+
{
|
|
126
|
+
x: "0.3",
|
|
127
|
+
y: "0.3",
|
|
128
|
+
width: "13.4",
|
|
129
|
+
height: "13.4",
|
|
130
|
+
rx: "6.7",
|
|
131
|
+
stroke: isDarkMode ? theme.palette.common.white : theme.palette.grey[900],
|
|
132
|
+
strokeOpacity: "0.4",
|
|
133
|
+
strokeWidth: "0.6"
|
|
134
|
+
}
|
|
135
|
+
),
|
|
136
|
+
/* @__PURE__ */ jsx4("g", { filter: "url(#filter0_d_6343_5437)", children: /* @__PURE__ */ jsx4(
|
|
137
|
+
"path",
|
|
138
|
+
{
|
|
139
|
+
d: "M7.63564 7.68006C7.619 7.99884 7.35568 8.24878 7.03646 8.24878H6.86491C6.54569 8.24878 6.28236 7.99884 6.26572 7.68006L6.05444 3.6325C6.03652 3.28931 6.30996 3.00122 6.65362 3.00122H7.24775C7.5914 3.00122 7.86484 3.28931 7.84693 3.6325L7.63564 7.68006ZM6 10.0857C6 9.7491 6.09131 9.51278 6.27393 9.37671C6.46012 9.24064 6.68392 9.17261 6.94531 9.17261C7.19954 9.17261 7.41797 9.24064 7.60059 9.37671C7.78678 9.51278 7.87988 9.7491 7.87988 10.0857C7.87988 10.408 7.78678 10.6407 7.60059 10.7839C7.41797 10.9272 7.19954 10.9988 6.94531 10.9988C6.68392 10.9988 6.46012 10.9272 6.27393 10.7839C6.09131 10.6407 6 10.408 6 10.0857Z",
|
|
140
|
+
fill: "white"
|
|
141
|
+
}
|
|
142
|
+
) }),
|
|
143
|
+
/* @__PURE__ */ jsx4("defs", { children: /* @__PURE__ */ jsxs3(
|
|
144
|
+
"filter",
|
|
145
|
+
{
|
|
146
|
+
id: "filter0_d_6343_5437",
|
|
147
|
+
x: "5",
|
|
148
|
+
y: "2.60122",
|
|
149
|
+
width: "3.87988",
|
|
150
|
+
height: "9.99756",
|
|
151
|
+
filterUnits: "userSpaceOnUse",
|
|
152
|
+
colorInterpolationFilters: "sRGB",
|
|
153
|
+
children: [
|
|
154
|
+
/* @__PURE__ */ jsx4("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
155
|
+
/* @__PURE__ */ jsx4(
|
|
156
|
+
"feColorMatrix",
|
|
157
|
+
{
|
|
158
|
+
in: "SourceAlpha",
|
|
159
|
+
type: "matrix",
|
|
160
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
161
|
+
result: "hardAlpha"
|
|
162
|
+
}
|
|
163
|
+
),
|
|
164
|
+
/* @__PURE__ */ jsx4("feOffset", { dy: "0.6" }),
|
|
165
|
+
/* @__PURE__ */ jsx4("feGaussianBlur", { stdDeviation: "0.5" }),
|
|
166
|
+
/* @__PURE__ */ jsx4("feComposite", { in2: "hardAlpha", operator: "out" }),
|
|
167
|
+
/* @__PURE__ */ jsx4(
|
|
168
|
+
"feColorMatrix",
|
|
169
|
+
{
|
|
170
|
+
type: "matrix",
|
|
171
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
|
|
172
|
+
}
|
|
173
|
+
),
|
|
174
|
+
/* @__PURE__ */ jsx4(
|
|
175
|
+
"feBlend",
|
|
176
|
+
{
|
|
177
|
+
mode: "normal",
|
|
178
|
+
in2: "BackgroundImageFix",
|
|
179
|
+
result: "effect1_dropShadow_6343_5437"
|
|
180
|
+
}
|
|
181
|
+
),
|
|
182
|
+
/* @__PURE__ */ jsx4(
|
|
183
|
+
"feBlend",
|
|
184
|
+
{
|
|
185
|
+
mode: "normal",
|
|
186
|
+
in: "SourceGraphic",
|
|
187
|
+
in2: "effect1_dropShadow_6343_5437",
|
|
188
|
+
result: "shape"
|
|
189
|
+
}
|
|
190
|
+
)
|
|
191
|
+
]
|
|
192
|
+
}
|
|
193
|
+
) })
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
) });
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// src/icons/IndeterminateIcon.tsx
|
|
200
|
+
import { SvgIcon as SvgIcon5 } from "@mui/material";
|
|
201
|
+
import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
202
|
+
function IndeterminateIcon(props) {
|
|
203
|
+
return /* @__PURE__ */ jsx5(SvgIcon5, { ...props, children: /* @__PURE__ */ jsxs4(
|
|
204
|
+
"svg",
|
|
205
|
+
{
|
|
206
|
+
width: "16",
|
|
207
|
+
height: "16",
|
|
208
|
+
viewBox: "0 0 16 16",
|
|
209
|
+
fill: "none",
|
|
210
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
211
|
+
...props,
|
|
212
|
+
children: [
|
|
213
|
+
/* @__PURE__ */ jsx5("rect", { width: "16", height: "16", rx: "4", fill: "currentColor" }),
|
|
214
|
+
/* @__PURE__ */ jsx5(
|
|
215
|
+
"path",
|
|
216
|
+
{
|
|
217
|
+
d: "M2.87988 8C2.87988 7.44772 3.3276 7 3.87988 7H12.1199C12.6722 7 13.1199 7.44772 13.1199 8C13.1199 8.55228 12.6722 9 12.1199 9H3.87988C3.3276 9 2.87988 8.55228 2.87988 8Z",
|
|
218
|
+
fill: "white"
|
|
219
|
+
}
|
|
220
|
+
)
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
) });
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// src/icons/InfoStatusIcon.tsx
|
|
227
|
+
import { SvgIcon as SvgIcon6, useTheme as useTheme2 } from "@mui/material";
|
|
228
|
+
import { jsx as jsx6, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
229
|
+
function InfoStatusIcon(props) {
|
|
230
|
+
const theme = useTheme2();
|
|
231
|
+
const isDarkMode = theme.palette.mode === "dark";
|
|
232
|
+
return /* @__PURE__ */ jsx6(SvgIcon6, { ...props, children: /* @__PURE__ */ jsxs5(
|
|
233
|
+
"svg",
|
|
234
|
+
{
|
|
235
|
+
width: "14",
|
|
236
|
+
height: "14",
|
|
237
|
+
viewBox: "0 0 14 14",
|
|
238
|
+
fill: "none",
|
|
239
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
240
|
+
children: [
|
|
241
|
+
/* @__PURE__ */ jsx6("rect", { width: "14", height: "14", rx: "7", fill: "currentColor" }),
|
|
242
|
+
/* @__PURE__ */ jsx6(
|
|
243
|
+
"rect",
|
|
244
|
+
{
|
|
245
|
+
x: "0.3",
|
|
246
|
+
y: "0.3",
|
|
247
|
+
width: "13.4",
|
|
248
|
+
height: "13.4",
|
|
249
|
+
rx: "6.7",
|
|
250
|
+
stroke: isDarkMode ? theme.palette.common.white : theme.palette.grey[900],
|
|
251
|
+
strokeOpacity: "0.4",
|
|
252
|
+
strokeWidth: "0.6"
|
|
253
|
+
}
|
|
254
|
+
),
|
|
255
|
+
/* @__PURE__ */ jsx6("g", { filter: "url(#filter0_d_184_2382)", children: /* @__PURE__ */ jsx6(
|
|
256
|
+
"path",
|
|
257
|
+
{
|
|
258
|
+
d: "M6.27393 6.24255C6.27393 5.91118 6.54256 5.64255 6.87393 5.64255L7.1066 5.64255C7.43705 5.64255 7.7053 5.90975 7.7066 6.24019L7.72336 10.5047C7.72467 10.8371 7.45546 11.1073 7.12303 11.1071L6.87359 11.1069C6.54235 11.1068 6.27393 10.8382 6.27393 10.5069L6.27393 6.24255ZM7.87988 3.80564C7.87988 4.14223 7.78857 4.37855 7.60596 4.51462C7.41976 4.65069 7.19596 4.71872 6.93457 4.71872C6.68034 4.71872 6.46191 4.65069 6.2793 4.51462C6.0931 4.37855 6 4.14223 6 3.80564C6 3.48337 6.0931 3.25062 6.2793 3.1074C6.46191 2.96417 6.68034 2.89255 6.93457 2.89255C7.19596 2.89255 7.41976 2.96417 7.60596 3.1074C7.78857 3.25062 7.87988 3.48337 7.87988 3.80564Z",
|
|
259
|
+
fill: "white"
|
|
260
|
+
}
|
|
261
|
+
) }),
|
|
262
|
+
/* @__PURE__ */ jsx6("defs", { children: /* @__PURE__ */ jsxs5(
|
|
263
|
+
"filter",
|
|
264
|
+
{
|
|
265
|
+
id: "filter0_d_184_2382",
|
|
266
|
+
x: "5",
|
|
267
|
+
y: "2.49258",
|
|
268
|
+
width: "3.87988",
|
|
269
|
+
height: "10.2144",
|
|
270
|
+
filterUnits: "userSpaceOnUse",
|
|
271
|
+
colorInterpolationFilters: "sRGB",
|
|
272
|
+
children: [
|
|
273
|
+
/* @__PURE__ */ jsx6("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
274
|
+
/* @__PURE__ */ jsx6(
|
|
275
|
+
"feColorMatrix",
|
|
276
|
+
{
|
|
277
|
+
in: "SourceAlpha",
|
|
278
|
+
type: "matrix",
|
|
279
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
280
|
+
result: "hardAlpha"
|
|
281
|
+
}
|
|
282
|
+
),
|
|
283
|
+
/* @__PURE__ */ jsx6("feOffset", { dy: "0.6" }),
|
|
284
|
+
/* @__PURE__ */ jsx6("feGaussianBlur", { stdDeviation: "0.5" }),
|
|
285
|
+
/* @__PURE__ */ jsx6("feComposite", { in2: "hardAlpha", operator: "out" }),
|
|
286
|
+
/* @__PURE__ */ jsx6(
|
|
287
|
+
"feColorMatrix",
|
|
288
|
+
{
|
|
289
|
+
type: "matrix",
|
|
290
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
|
|
291
|
+
}
|
|
292
|
+
),
|
|
293
|
+
/* @__PURE__ */ jsx6(
|
|
294
|
+
"feBlend",
|
|
295
|
+
{
|
|
296
|
+
mode: "normal",
|
|
297
|
+
in2: "BackgroundImageFix",
|
|
298
|
+
result: "effect1_dropShadow_184_2382"
|
|
299
|
+
}
|
|
300
|
+
),
|
|
301
|
+
/* @__PURE__ */ jsx6(
|
|
302
|
+
"feBlend",
|
|
303
|
+
{
|
|
304
|
+
mode: "normal",
|
|
305
|
+
in: "SourceGraphic",
|
|
306
|
+
in2: "effect1_dropShadow_184_2382",
|
|
307
|
+
result: "shape"
|
|
308
|
+
}
|
|
309
|
+
)
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
) })
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
) });
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
// src/icons/InputCloseIcon.tsx
|
|
319
|
+
import { SvgIcon as SvgIcon7 } from "@mui/material";
|
|
320
|
+
import { jsx as jsx7, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
321
|
+
function InputCloseIcon(props) {
|
|
322
|
+
return /* @__PURE__ */ jsx7(SvgIcon7, { ...props, children: /* @__PURE__ */ jsxs6(
|
|
323
|
+
"svg",
|
|
324
|
+
{
|
|
325
|
+
width: "24",
|
|
326
|
+
height: "24",
|
|
327
|
+
viewBox: "0 0 24 24",
|
|
328
|
+
fill: "none",
|
|
329
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
330
|
+
children: [
|
|
331
|
+
/* @__PURE__ */ jsx7(
|
|
332
|
+
"path",
|
|
333
|
+
{
|
|
334
|
+
fillRule: "evenodd",
|
|
335
|
+
clipRule: "evenodd",
|
|
336
|
+
d: "M17.5154 6.4848C17.8278 6.79722 17.8278 7.30375 17.5154 7.61617L7.61593 17.5157C7.30351 17.8281 6.79698 17.8281 6.48456 17.5157C6.17214 17.2032 6.17214 16.6967 6.48456 16.3843L16.3841 6.4848C16.6965 6.17238 17.203 6.17238 17.5154 6.4848Z",
|
|
337
|
+
fill: "currentColor"
|
|
338
|
+
}
|
|
339
|
+
),
|
|
340
|
+
/* @__PURE__ */ jsx7(
|
|
341
|
+
"path",
|
|
342
|
+
{
|
|
343
|
+
fillRule: "evenodd",
|
|
344
|
+
clipRule: "evenodd",
|
|
345
|
+
d: "M6.48456 6.4848C6.79698 6.17238 7.30351 6.17238 7.61593 6.4848L17.5154 16.3843C17.8278 16.6967 17.8278 17.2032 17.5154 17.5157C17.203 17.8281 16.6965 17.8281 16.3841 17.5157L6.48456 7.61617C6.17214 7.30375 6.17214 6.79722 6.48456 6.4848Z",
|
|
346
|
+
fill: "currentColor"
|
|
347
|
+
}
|
|
348
|
+
)
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
) });
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
// src/icons/SuccessStatusIcon.tsx
|
|
355
|
+
import { SvgIcon as SvgIcon8, useTheme as useTheme3 } from "@mui/material";
|
|
356
|
+
import { jsx as jsx8, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
357
|
+
function SuccessStatusIcon(props) {
|
|
358
|
+
const theme = useTheme3();
|
|
359
|
+
const isDarkMode = theme.palette.mode === "dark";
|
|
360
|
+
return /* @__PURE__ */ jsx8(SvgIcon8, { ...props, children: /* @__PURE__ */ jsxs7(
|
|
361
|
+
"svg",
|
|
362
|
+
{
|
|
363
|
+
width: "14",
|
|
364
|
+
height: "14",
|
|
365
|
+
viewBox: "0 0 14 14",
|
|
366
|
+
fill: "none",
|
|
367
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
368
|
+
children: [
|
|
369
|
+
/* @__PURE__ */ jsx8("rect", { width: "14", height: "14", rx: "7", fill: "currentColor" }),
|
|
370
|
+
/* @__PURE__ */ jsx8(
|
|
371
|
+
"rect",
|
|
372
|
+
{
|
|
373
|
+
x: "0.3",
|
|
374
|
+
y: "0.3",
|
|
375
|
+
width: "13.4",
|
|
376
|
+
height: "13.4",
|
|
377
|
+
rx: "6.7",
|
|
378
|
+
stroke: isDarkMode ? theme.palette.common.white : theme.palette.grey[900],
|
|
379
|
+
strokeOpacity: "0.4",
|
|
380
|
+
strokeWidth: "0.6"
|
|
381
|
+
}
|
|
382
|
+
),
|
|
383
|
+
/* @__PURE__ */ jsx8("g", { filter: "url(#filter0_d_6364_4478)", children: /* @__PURE__ */ jsx8(
|
|
384
|
+
"path",
|
|
385
|
+
{
|
|
386
|
+
fillRule: "evenodd",
|
|
387
|
+
clipRule: "evenodd",
|
|
388
|
+
d: "M10.0279 4.41561C10.3328 4.54591 10.6867 5.04261 10.4654 5.29062L6.9525 9.02403C6.57226 9.45014 6.38214 9.66319 6.13689 9.6656C5.89164 9.66802 5.69741 9.45876 5.30894 9.04023L3.58698 7.18499C3.45389 7.0416 3.42727 6.82846 3.52095 6.65639C3.65295 6.41394 3.96768 6.34523 4.18765 6.51085L5.37782 7.40696C5.7414 7.6807 5.92319 7.81758 6.12825 7.8043C6.3333 7.79102 6.49616 7.63184 6.82188 7.31346L9.59039 4.41562C9.72976 4.27939 9.84906 4.33918 10.0279 4.41561Z",
|
|
389
|
+
fill: isDarkMode ? theme.palette.grey[900] : theme.palette.common.white
|
|
390
|
+
}
|
|
391
|
+
) }),
|
|
392
|
+
/* @__PURE__ */ jsx8("defs", { children: /* @__PURE__ */ jsxs7(
|
|
393
|
+
"filter",
|
|
394
|
+
{
|
|
395
|
+
id: "filter0_d_6364_4478",
|
|
396
|
+
x: "2.46539",
|
|
397
|
+
y: "3.93435",
|
|
398
|
+
width: "9.06921",
|
|
399
|
+
height: "7.3313",
|
|
400
|
+
filterUnits: "userSpaceOnUse",
|
|
401
|
+
colorInterpolationFilters: "sRGB",
|
|
402
|
+
children: [
|
|
403
|
+
/* @__PURE__ */ jsx8("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
404
|
+
/* @__PURE__ */ jsx8(
|
|
405
|
+
"feColorMatrix",
|
|
406
|
+
{
|
|
407
|
+
in: "SourceAlpha",
|
|
408
|
+
type: "matrix",
|
|
409
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
410
|
+
result: "hardAlpha"
|
|
411
|
+
}
|
|
412
|
+
),
|
|
413
|
+
/* @__PURE__ */ jsx8("feOffset", { dy: "0.6" }),
|
|
414
|
+
/* @__PURE__ */ jsx8("feGaussianBlur", { stdDeviation: "0.5" }),
|
|
415
|
+
/* @__PURE__ */ jsx8("feComposite", { in2: "hardAlpha", operator: "out" }),
|
|
416
|
+
/* @__PURE__ */ jsx8(
|
|
417
|
+
"feColorMatrix",
|
|
418
|
+
{
|
|
419
|
+
type: "matrix",
|
|
420
|
+
values: "0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0.2 0"
|
|
421
|
+
}
|
|
422
|
+
),
|
|
423
|
+
/* @__PURE__ */ jsx8(
|
|
424
|
+
"feBlend",
|
|
425
|
+
{
|
|
426
|
+
mode: "normal",
|
|
427
|
+
in2: "BackgroundImageFix",
|
|
428
|
+
result: "effect1_dropShadow_6364_4478"
|
|
429
|
+
}
|
|
430
|
+
),
|
|
431
|
+
/* @__PURE__ */ jsx8(
|
|
432
|
+
"feBlend",
|
|
433
|
+
{
|
|
434
|
+
mode: "normal",
|
|
435
|
+
in: "SourceGraphic",
|
|
436
|
+
in2: "effect1_dropShadow_6364_4478",
|
|
437
|
+
result: "shape"
|
|
438
|
+
}
|
|
439
|
+
)
|
|
440
|
+
]
|
|
441
|
+
}
|
|
442
|
+
) })
|
|
443
|
+
]
|
|
444
|
+
}
|
|
445
|
+
) });
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
// src/icons/UncheckedIcon.tsx
|
|
449
|
+
import { SvgIcon as SvgIcon9 } from "@mui/material";
|
|
450
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
451
|
+
function UncheckedIcon(props) {
|
|
452
|
+
return /* @__PURE__ */ jsx9(SvgIcon9, { ...props, children: /* @__PURE__ */ jsx9(
|
|
453
|
+
"svg",
|
|
454
|
+
{
|
|
455
|
+
width: "16",
|
|
456
|
+
height: "16",
|
|
457
|
+
viewBox: "0 0 16 16",
|
|
458
|
+
fill: "none",
|
|
459
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
460
|
+
...props,
|
|
461
|
+
children: /* @__PURE__ */ jsx9(
|
|
462
|
+
"rect",
|
|
463
|
+
{
|
|
464
|
+
x: "0.5",
|
|
465
|
+
y: "0.5",
|
|
466
|
+
width: "15",
|
|
467
|
+
height: "15",
|
|
468
|
+
rx: "3.5",
|
|
469
|
+
stroke: "currentColor",
|
|
470
|
+
strokeOpacity: "0.4"
|
|
471
|
+
}
|
|
472
|
+
)
|
|
473
|
+
}
|
|
474
|
+
) });
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// src/icons/WarningStatusIcon.tsx
|
|
478
|
+
import { SvgIcon as SvgIcon10, useTheme as useTheme4 } from "@mui/material";
|
|
479
|
+
import { jsx as jsx10, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
480
|
+
function WarningStatusIcon(props) {
|
|
481
|
+
const theme = useTheme4();
|
|
482
|
+
const isDarkMode = theme.palette.mode === "dark";
|
|
483
|
+
return /* @__PURE__ */ jsx10(SvgIcon10, { ...props, children: /* @__PURE__ */ jsxs8(
|
|
484
|
+
"svg",
|
|
485
|
+
{
|
|
486
|
+
width: "16",
|
|
487
|
+
height: "14",
|
|
488
|
+
viewBox: "0 0 16 14",
|
|
489
|
+
fill: "none",
|
|
490
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
491
|
+
children: [
|
|
492
|
+
/* @__PURE__ */ jsx10(
|
|
493
|
+
"path",
|
|
494
|
+
{
|
|
495
|
+
d: "M7.47905 0.911655C7.70939 0.508566 8.29061 0.508566 8.52095 0.911655L15.487 13.1023C15.7156 13.5023 15.4268 14 14.9661 14H1.03391C0.573214 14 0.284394 13.5023 0.512962 13.1023L7.47905 0.911655Z",
|
|
496
|
+
fill: "currentColor"
|
|
497
|
+
}
|
|
498
|
+
),
|
|
499
|
+
/* @__PURE__ */ jsx10(
|
|
500
|
+
"path",
|
|
501
|
+
{
|
|
502
|
+
d: "M7.73926 1.06055C7.85443 0.859003 8.14557 0.859002 8.26074 1.06055L15.2266 13.251C15.3408 13.451 15.1962 13.7002 14.9658 13.7002H1.03418C0.803833 13.7002 0.659154 13.451 0.773438 13.251L7.73926 1.06055Z",
|
|
503
|
+
stroke: isDarkMode ? theme.palette.common.white : theme.palette.grey[900],
|
|
504
|
+
strokeOpacity: "0.4",
|
|
505
|
+
strokeWidth: "0.6"
|
|
506
|
+
}
|
|
507
|
+
),
|
|
508
|
+
/* @__PURE__ */ jsx10("g", { filter: "url(#filter0_d_184_2208)", children: /* @__PURE__ */ jsx10(
|
|
509
|
+
"path",
|
|
510
|
+
{
|
|
511
|
+
d: "M8.63564 8.67884C8.619 8.99762 8.35568 9.24756 8.03646 9.24756H7.86491C7.54569 9.24756 7.28236 8.99762 7.26572 8.67884L7.05444 4.63128C7.03652 4.28809 7.30996 4 7.65362 4H8.24775C8.5914 4 8.86484 4.28809 8.84693 4.63128L8.63564 8.67884ZM7 11.0845C7 10.7479 7.09131 10.5116 7.27393 10.3755C7.46012 10.2394 7.68392 10.1714 7.94531 10.1714C8.19954 10.1714 8.41797 10.2394 8.60059 10.3755C8.78678 10.5116 8.87988 10.7479 8.87988 11.0845C8.87988 11.4067 8.78678 11.6395 8.60059 11.7827C8.41797 11.9259 8.19954 11.9976 7.94531 11.9976C7.68392 11.9976 7.46012 11.9259 7.27393 11.7827C7.09131 11.6395 7 11.4067 7 11.0845Z",
|
|
512
|
+
fill: isDarkMode ? theme.palette.grey[900] : theme.palette.common.white
|
|
513
|
+
}
|
|
514
|
+
) }),
|
|
515
|
+
/* @__PURE__ */ jsx10("defs", { children: /* @__PURE__ */ jsxs8(
|
|
516
|
+
"filter",
|
|
517
|
+
{
|
|
518
|
+
id: "filter0_d_184_2208",
|
|
519
|
+
x: "6",
|
|
520
|
+
y: "3.6",
|
|
521
|
+
width: "3.87988",
|
|
522
|
+
height: "9.99756",
|
|
523
|
+
filterUnits: "userSpaceOnUse",
|
|
524
|
+
colorInterpolationFilters: "sRGB",
|
|
525
|
+
children: [
|
|
526
|
+
/* @__PURE__ */ jsx10("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
527
|
+
/* @__PURE__ */ jsx10(
|
|
528
|
+
"feColorMatrix",
|
|
529
|
+
{
|
|
530
|
+
in: "SourceAlpha",
|
|
531
|
+
type: "matrix",
|
|
532
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
533
|
+
result: "hardAlpha"
|
|
534
|
+
}
|
|
535
|
+
),
|
|
536
|
+
/* @__PURE__ */ jsx10("feOffset", { dy: "0.6" }),
|
|
537
|
+
/* @__PURE__ */ jsx10("feGaussianBlur", { stdDeviation: "0.5" }),
|
|
538
|
+
/* @__PURE__ */ jsx10("feComposite", { in2: "hardAlpha", operator: "out" }),
|
|
539
|
+
/* @__PURE__ */ jsx10(
|
|
540
|
+
"feColorMatrix",
|
|
541
|
+
{
|
|
542
|
+
type: "matrix",
|
|
543
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
|
|
544
|
+
}
|
|
545
|
+
),
|
|
546
|
+
/* @__PURE__ */ jsx10(
|
|
547
|
+
"feBlend",
|
|
548
|
+
{
|
|
549
|
+
mode: "normal",
|
|
550
|
+
in2: "BackgroundImageFix",
|
|
551
|
+
result: "effect1_dropShadow_184_2208"
|
|
552
|
+
}
|
|
553
|
+
),
|
|
554
|
+
/* @__PURE__ */ jsx10(
|
|
555
|
+
"feBlend",
|
|
556
|
+
{
|
|
557
|
+
mode: "normal",
|
|
558
|
+
in: "SourceGraphic",
|
|
559
|
+
in2: "effect1_dropShadow_184_2208",
|
|
560
|
+
result: "shape"
|
|
561
|
+
}
|
|
562
|
+
)
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
) })
|
|
566
|
+
]
|
|
567
|
+
}
|
|
568
|
+
) });
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
// src/theme.tsx
|
|
572
|
+
import { alpha, createTheme } from "@mui/material/styles";
|
|
573
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
574
|
+
var colors = {
|
|
575
|
+
black: "#000000",
|
|
576
|
+
white: "#ffffff",
|
|
577
|
+
grey: {
|
|
578
|
+
50: "#fafafa",
|
|
579
|
+
100: "#f5f5f5",
|
|
580
|
+
200: "#eeeeee",
|
|
581
|
+
300: "#c9c9c9",
|
|
582
|
+
400: "#878787",
|
|
583
|
+
500: "#646464",
|
|
584
|
+
600: "#484848",
|
|
585
|
+
700: "#333333",
|
|
586
|
+
800: "#222222",
|
|
587
|
+
900: "#111111"
|
|
588
|
+
},
|
|
589
|
+
blue: {
|
|
590
|
+
dark: "#1863D3",
|
|
591
|
+
light: "#1863D3",
|
|
592
|
+
main: "#1863D3",
|
|
593
|
+
drawer: "#3F8CFF"
|
|
594
|
+
},
|
|
595
|
+
purple: {
|
|
596
|
+
dark: "#635BFF",
|
|
597
|
+
light: "#A64DEF",
|
|
598
|
+
main: "#5B00EF"
|
|
599
|
+
},
|
|
600
|
+
biamp: "#d22730",
|
|
601
|
+
sidebar: "#E0E0E0",
|
|
602
|
+
action: {
|
|
603
|
+
disabled: "#11111166",
|
|
604
|
+
disabledBackground: "#D8D8D8"
|
|
605
|
+
},
|
|
606
|
+
success: {
|
|
607
|
+
dark: {
|
|
608
|
+
main: "#00E941",
|
|
609
|
+
background: "#093615"
|
|
610
|
+
},
|
|
611
|
+
light: {
|
|
612
|
+
main: "#008A05",
|
|
613
|
+
background: "#EAFEF0"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
warning: {
|
|
617
|
+
dark: {
|
|
618
|
+
main: "#FFB800",
|
|
619
|
+
background: "#41320E"
|
|
620
|
+
},
|
|
621
|
+
light: {
|
|
622
|
+
main: "#E06C00",
|
|
623
|
+
background: "#FFF4D9"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
error: {
|
|
627
|
+
dark: {
|
|
628
|
+
main: "#FF1744",
|
|
629
|
+
background: "#2E1016"
|
|
630
|
+
},
|
|
631
|
+
light: {
|
|
632
|
+
main: "#E0002D",
|
|
633
|
+
background: "#FFEDF0"
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
info: {
|
|
637
|
+
dark: {
|
|
638
|
+
main: "#1863D3",
|
|
639
|
+
background: "#101C25"
|
|
640
|
+
},
|
|
641
|
+
light: {
|
|
642
|
+
main: "#1863D3",
|
|
643
|
+
background: "#EBF7FF"
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
};
|
|
647
|
+
var appBarHeight = 64;
|
|
648
|
+
var drawerWidth = 300;
|
|
649
|
+
var biampTheme = (overrideOptions = {}) => createTheme(
|
|
650
|
+
{
|
|
651
|
+
spacing: 8,
|
|
652
|
+
shape: { borderRadius: 4 },
|
|
653
|
+
cssVariables: {
|
|
654
|
+
colorSchemeSelector: "class"
|
|
655
|
+
},
|
|
656
|
+
colorSchemes: {
|
|
657
|
+
light: {
|
|
658
|
+
palette: {
|
|
659
|
+
secondary: {
|
|
660
|
+
contrastText: colors.grey[900],
|
|
661
|
+
dark: colors.white,
|
|
662
|
+
light: colors.white,
|
|
663
|
+
main: colors.white
|
|
664
|
+
},
|
|
665
|
+
success: {
|
|
666
|
+
contrastText: colors.grey[900],
|
|
667
|
+
dark: colors.success.light.main,
|
|
668
|
+
light: colors.success.light.main,
|
|
669
|
+
main: colors.success.light.main
|
|
670
|
+
},
|
|
671
|
+
warning: {
|
|
672
|
+
contrastText: colors.grey[900],
|
|
673
|
+
dark: colors.warning.light.main,
|
|
674
|
+
light: colors.warning.light.main,
|
|
675
|
+
main: colors.warning.light.main
|
|
676
|
+
},
|
|
677
|
+
error: {
|
|
678
|
+
contrastText: colors.white,
|
|
679
|
+
dark: colors.error.light.main,
|
|
680
|
+
light: colors.error.light.main,
|
|
681
|
+
main: colors.error.light.main
|
|
682
|
+
},
|
|
683
|
+
info: {
|
|
684
|
+
contrastText: colors.white,
|
|
685
|
+
dark: colors.info.light.main,
|
|
686
|
+
light: colors.info.light.main,
|
|
687
|
+
main: colors.info.light.main
|
|
688
|
+
},
|
|
689
|
+
grey: {
|
|
690
|
+
...colors.grey
|
|
691
|
+
},
|
|
692
|
+
common: {
|
|
693
|
+
black: colors.black,
|
|
694
|
+
white: colors.white
|
|
695
|
+
},
|
|
696
|
+
biamp: {
|
|
697
|
+
contrastText: colors.white,
|
|
698
|
+
dark: colors.biamp,
|
|
699
|
+
light: colors.biamp,
|
|
700
|
+
main: colors.biamp
|
|
701
|
+
},
|
|
702
|
+
purple: {
|
|
703
|
+
contrastText: colors.white,
|
|
704
|
+
dark: colors.purple.dark,
|
|
705
|
+
light: colors.purple.light,
|
|
706
|
+
main: colors.purple.main
|
|
707
|
+
},
|
|
708
|
+
blue: {
|
|
709
|
+
contrastText: colors.white,
|
|
710
|
+
dark: colors.blue.dark,
|
|
711
|
+
light: colors.blue.light,
|
|
712
|
+
main: colors.blue.main
|
|
713
|
+
},
|
|
714
|
+
sidebar: {
|
|
715
|
+
contrastText: colors.white,
|
|
716
|
+
dark: colors.sidebar,
|
|
717
|
+
light: colors.sidebar,
|
|
718
|
+
main: colors.sidebar
|
|
719
|
+
},
|
|
720
|
+
primary: {
|
|
721
|
+
contrastText: colors.white,
|
|
722
|
+
dark: colors.grey[900],
|
|
723
|
+
light: colors.grey[900],
|
|
724
|
+
main: colors.grey[900]
|
|
725
|
+
},
|
|
726
|
+
text: {
|
|
727
|
+
primary: colors.grey[900],
|
|
728
|
+
secondary: colors.grey[400],
|
|
729
|
+
disabled: alpha(colors.grey[900], 0.4),
|
|
730
|
+
sidebar: colors.white
|
|
731
|
+
},
|
|
732
|
+
background: {
|
|
733
|
+
default: colors.white,
|
|
734
|
+
paper: colors.white,
|
|
735
|
+
success: colors.success.light.background,
|
|
736
|
+
warning: colors.warning.light.background,
|
|
737
|
+
error: colors.error.light.background,
|
|
738
|
+
info: colors.info.light.background
|
|
739
|
+
},
|
|
740
|
+
action: {
|
|
741
|
+
disabled: colors.action.disabled,
|
|
742
|
+
disabledBackground: colors.action.disabledBackground
|
|
743
|
+
},
|
|
744
|
+
divider: alpha(colors.grey[900], 0.15),
|
|
745
|
+
dividers: {
|
|
746
|
+
primary: alpha(colors.grey[900], 0.15),
|
|
747
|
+
secondary: alpha(colors.grey[900], 0.4)
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
dark: {
|
|
752
|
+
palette: {
|
|
753
|
+
secondary: {
|
|
754
|
+
contrastText: colors.grey[900],
|
|
755
|
+
dark: colors.white,
|
|
756
|
+
light: colors.white,
|
|
757
|
+
main: colors.white
|
|
758
|
+
},
|
|
759
|
+
success: {
|
|
760
|
+
contrastText: colors.grey[900],
|
|
761
|
+
light: colors.success.dark.main,
|
|
762
|
+
dark: colors.success.dark.main,
|
|
763
|
+
main: colors.success.dark.main
|
|
764
|
+
},
|
|
765
|
+
warning: {
|
|
766
|
+
contrastText: colors.grey[900],
|
|
767
|
+
light: colors.warning.dark.main,
|
|
768
|
+
dark: colors.warning.dark.main,
|
|
769
|
+
main: colors.warning.dark.main
|
|
770
|
+
},
|
|
771
|
+
error: {
|
|
772
|
+
contrastText: colors.white,
|
|
773
|
+
light: colors.error.dark.main,
|
|
774
|
+
dark: colors.error.dark.main,
|
|
775
|
+
main: colors.error.dark.main
|
|
776
|
+
},
|
|
777
|
+
info: {
|
|
778
|
+
contrastText: colors.white,
|
|
779
|
+
light: colors.info.dark.main,
|
|
780
|
+
dark: colors.info.dark.main,
|
|
781
|
+
main: colors.info.dark.main
|
|
782
|
+
},
|
|
783
|
+
grey: {
|
|
784
|
+
...colors.grey
|
|
785
|
+
},
|
|
786
|
+
common: {
|
|
787
|
+
black: colors.black,
|
|
788
|
+
white: colors.white
|
|
789
|
+
},
|
|
790
|
+
biamp: {
|
|
791
|
+
contrastText: colors.white,
|
|
792
|
+
dark: colors.biamp,
|
|
793
|
+
light: colors.biamp,
|
|
794
|
+
main: colors.biamp
|
|
795
|
+
},
|
|
796
|
+
purple: {
|
|
797
|
+
contrastText: colors.white,
|
|
798
|
+
dark: colors.purple.dark,
|
|
799
|
+
light: colors.purple.light,
|
|
800
|
+
main: colors.purple.main
|
|
801
|
+
},
|
|
802
|
+
blue: {
|
|
803
|
+
contrastText: colors.white,
|
|
804
|
+
dark: colors.blue.dark,
|
|
805
|
+
light: colors.blue.light,
|
|
806
|
+
main: colors.blue.main
|
|
807
|
+
},
|
|
808
|
+
sidebar: {
|
|
809
|
+
contrastText: colors.white,
|
|
810
|
+
dark: colors.sidebar,
|
|
811
|
+
light: colors.sidebar,
|
|
812
|
+
main: colors.sidebar
|
|
813
|
+
},
|
|
814
|
+
primary: {
|
|
815
|
+
contrastText: colors.grey[900],
|
|
816
|
+
dark: colors.white,
|
|
817
|
+
light: colors.white,
|
|
818
|
+
main: colors.white
|
|
819
|
+
},
|
|
820
|
+
text: {
|
|
821
|
+
primary: colors.white,
|
|
822
|
+
secondary: colors.grey[400],
|
|
823
|
+
disabled: alpha(colors.white, 0.4),
|
|
824
|
+
sidebar: colors.white
|
|
825
|
+
},
|
|
826
|
+
background: {
|
|
827
|
+
default: colors.grey[900],
|
|
828
|
+
paper: colors.grey[900],
|
|
829
|
+
success: colors.success.dark.background,
|
|
830
|
+
warning: colors.warning.dark.background,
|
|
831
|
+
error: colors.error.dark.background,
|
|
832
|
+
info: colors.info.dark.background
|
|
833
|
+
},
|
|
834
|
+
action: {
|
|
835
|
+
disabled: alpha(colors.white, 0.4),
|
|
836
|
+
disabledBackground: alpha(colors.white, 0.12)
|
|
837
|
+
},
|
|
838
|
+
divider: alpha(colors.white, 0.15),
|
|
839
|
+
dividers: {
|
|
840
|
+
primary: alpha(colors.white, 0.15),
|
|
841
|
+
secondary: alpha(colors.white, 0.4)
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
typography: {
|
|
847
|
+
fontFamily: '"Open Sans", sans-serif',
|
|
848
|
+
fontWeightRegular: 400,
|
|
849
|
+
fontWeightMedium: 600,
|
|
850
|
+
fontWeightBold: 600,
|
|
851
|
+
h0: {
|
|
852
|
+
fontFamily: '"Montserrat", sans-serif',
|
|
853
|
+
fontSize: "3.5rem",
|
|
854
|
+
fontWeight: 500,
|
|
855
|
+
letterSpacing: "-0.105rem",
|
|
856
|
+
lineHeight: 1.1
|
|
857
|
+
},
|
|
858
|
+
h1: {
|
|
859
|
+
fontFamily: '"Montserrat", sans-serif',
|
|
860
|
+
fontSize: "1.75rem",
|
|
861
|
+
fontWeight: 500,
|
|
862
|
+
letterSpacing: "-0.07rem",
|
|
863
|
+
lineHeight: 1.2
|
|
864
|
+
},
|
|
865
|
+
h2: {
|
|
866
|
+
fontFamily: '"Montserrat", sans-serif',
|
|
867
|
+
fontSize: "1.25rem",
|
|
868
|
+
fontWeight: 600,
|
|
869
|
+
letterSpacing: "-0.025rem",
|
|
870
|
+
lineHeight: 1.5
|
|
871
|
+
},
|
|
872
|
+
h3: {
|
|
873
|
+
fontSize: "1rem",
|
|
874
|
+
fontWeight: 600,
|
|
875
|
+
letterSpacing: "-0.02rem",
|
|
876
|
+
lineHeight: 1.5
|
|
877
|
+
},
|
|
878
|
+
h4: {
|
|
879
|
+
fontFamily: '"Montserrat", sans-serif',
|
|
880
|
+
fontSize: "1rem",
|
|
881
|
+
fontWeight: 600,
|
|
882
|
+
letterSpacing: "-0.02rem",
|
|
883
|
+
lineHeight: 1.5
|
|
884
|
+
},
|
|
885
|
+
body1: {
|
|
886
|
+
fontSize: "1rem",
|
|
887
|
+
fontWeight: 400,
|
|
888
|
+
letterSpacing: "-0.02rem",
|
|
889
|
+
lineHeight: 1.5
|
|
890
|
+
},
|
|
891
|
+
body2: {
|
|
892
|
+
fontSize: "0.875rem",
|
|
893
|
+
fontWeight: 400,
|
|
894
|
+
letterSpacing: "-0.018rem",
|
|
895
|
+
lineHeight: 1.5
|
|
896
|
+
},
|
|
897
|
+
caption: {
|
|
898
|
+
fontSize: "0.75rem",
|
|
899
|
+
fontWeight: 400,
|
|
900
|
+
letterSpacing: "-0.015rem",
|
|
901
|
+
lineHeight: 1.5
|
|
902
|
+
},
|
|
903
|
+
subtitle1: {
|
|
904
|
+
fontSize: "0.875rem",
|
|
905
|
+
lineHeight: 1.5
|
|
906
|
+
},
|
|
907
|
+
subtitle2: {
|
|
908
|
+
fontSize: "0.75rem",
|
|
909
|
+
lineHeight: 1.5
|
|
910
|
+
},
|
|
911
|
+
button: {
|
|
912
|
+
fontSize: "0.875rem",
|
|
913
|
+
letterSpacing: "-0.018rem",
|
|
914
|
+
fontWeight: 600,
|
|
915
|
+
textTransform: "none",
|
|
916
|
+
lineHeight: 1.5
|
|
917
|
+
},
|
|
918
|
+
sidebar: {
|
|
919
|
+
fontWeight: 700,
|
|
920
|
+
fontSize: "0.563rem",
|
|
921
|
+
lineHeight: 1.5,
|
|
922
|
+
letterSpacing: "-0.013rem"
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
components: {
|
|
926
|
+
MuiCssBaseline: {
|
|
927
|
+
styleOverrides: `
|
|
928
|
+
@font-face {
|
|
929
|
+
font-family: 'Open Sans';
|
|
930
|
+
font-weight: 400;
|
|
931
|
+
font-style: normal;
|
|
932
|
+
font-display: swap;
|
|
933
|
+
src: url(/open-sans-regular.woff2) format('woff2');
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
@font-face {
|
|
937
|
+
font-family: 'Open Sans';
|
|
938
|
+
font-weight: 400;
|
|
939
|
+
font-style: italic;
|
|
940
|
+
font-display: swap;
|
|
941
|
+
src: url(/open-sans-regular-italic.woff2) format('woff2');
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
@font-face {
|
|
945
|
+
font-family: 'Open Sans';
|
|
946
|
+
font-weight: 600;
|
|
947
|
+
font-style: normal;
|
|
948
|
+
font-display: swap;
|
|
949
|
+
src: url(/open-sans-semibold.woff2) format('woff2');
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
@font-face {
|
|
953
|
+
font-family: 'Open Sans';
|
|
954
|
+
font-weight: 600;
|
|
955
|
+
font-style: italic;
|
|
956
|
+
font-display: swap;
|
|
957
|
+
src: url(/open-sans-semibold-italic.woff2) format('woff2');
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
@font-face {
|
|
961
|
+
font-family: 'Open Sans';
|
|
962
|
+
font-weight: 700;
|
|
963
|
+
font-style: normal;
|
|
964
|
+
font-display: swap;
|
|
965
|
+
src: url(/open-sans-bold.woff2) format('woff2');
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
@font-face {
|
|
969
|
+
font-family: 'Open Sans';
|
|
970
|
+
font-weight: 700;
|
|
971
|
+
font-style: italic;
|
|
972
|
+
font-display: swap;
|
|
973
|
+
src: url(/open-sans-bold-italic.woff2) format('woff2');
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
@font-face {
|
|
977
|
+
font-family: 'Open Sans';
|
|
978
|
+
font-weight: 800;
|
|
979
|
+
font-style: normal;
|
|
980
|
+
font-display: swap;
|
|
981
|
+
src: url(/open-sans-extrabold.woff2) format('woff2');
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
@font-face {
|
|
985
|
+
font-family: 'Open Sans';
|
|
986
|
+
font-weight: 800;
|
|
987
|
+
font-style: italic;
|
|
988
|
+
font-display: swap;
|
|
989
|
+
src: url(/open-sans-extrabold-italic.woff2) format('woff2');
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
@font-face {
|
|
993
|
+
font-family: 'Montserrat';
|
|
994
|
+
font-weight: 500;
|
|
995
|
+
font-style: normal;
|
|
996
|
+
font-display: swap;
|
|
997
|
+
src: url(/Montserrat-Medium.ttf) format('truetype');
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
@font-face {
|
|
1001
|
+
font-family: 'Montserrat';
|
|
1002
|
+
font-weight: 600;
|
|
1003
|
+
font-style: normal;
|
|
1004
|
+
font-display: swap;
|
|
1005
|
+
src: url(/Montserrat-SemiBold.ttf) format('truetype');
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
@font-face {
|
|
1009
|
+
font-family: 'Montserrat';
|
|
1010
|
+
font-weight: 700;
|
|
1011
|
+
font-style: normal;
|
|
1012
|
+
font-display: swap;
|
|
1013
|
+
src: url(/Montserrat-Bold.ttf) format('truetype');
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
[class*="Mui"] {
|
|
1017
|
+
border-width: 0.6px !important;
|
|
1018
|
+
}
|
|
1019
|
+
`
|
|
1020
|
+
},
|
|
1021
|
+
MuiAlert: {
|
|
1022
|
+
defaultProps: {
|
|
1023
|
+
iconMapping: {
|
|
1024
|
+
error: /* @__PURE__ */ jsx11(ErrorStatusIcon, { sx: { width: 14, height: 14 } }),
|
|
1025
|
+
warning: /* @__PURE__ */ jsx11(WarningStatusIcon, { sx: { width: 16, height: 14 } }),
|
|
1026
|
+
info: /* @__PURE__ */ jsx11(InfoStatusIcon, { sx: { width: 14, height: 14 } }),
|
|
1027
|
+
success: /* @__PURE__ */ jsx11(SuccessStatusIcon, { sx: { width: 14, height: 14 } })
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
styleOverrides: {
|
|
1031
|
+
message: ({ theme }) => ({
|
|
1032
|
+
paddingTop: 0,
|
|
1033
|
+
paddingBottom: 0,
|
|
1034
|
+
fontSize: theme.typography.body1.fontSize,
|
|
1035
|
+
fontWeight: 600,
|
|
1036
|
+
letterSpacing: theme.typography.body1.letterSpacing,
|
|
1037
|
+
lineHeight: theme.typography.body1.lineHeight
|
|
1038
|
+
}),
|
|
1039
|
+
icon: {
|
|
1040
|
+
paddingTop: 0,
|
|
1041
|
+
paddingBottom: 0
|
|
1042
|
+
},
|
|
1043
|
+
standard: ({ theme }) => ({
|
|
1044
|
+
color: theme.palette.text.primary,
|
|
1045
|
+
border: `1px solid`
|
|
1046
|
+
}),
|
|
1047
|
+
standardError: ({ theme }) => ({
|
|
1048
|
+
borderColor: theme.palette.error.main,
|
|
1049
|
+
backgroundColor: theme.palette.background.error
|
|
1050
|
+
}),
|
|
1051
|
+
standardInfo: ({ theme }) => ({
|
|
1052
|
+
borderColor: theme.palette.info.main,
|
|
1053
|
+
backgroundColor: theme.palette.background.info
|
|
1054
|
+
}),
|
|
1055
|
+
standardSuccess: ({ theme }) => ({
|
|
1056
|
+
borderColor: theme.palette.success.main,
|
|
1057
|
+
backgroundColor: theme.palette.background.success
|
|
1058
|
+
}),
|
|
1059
|
+
standardWarning: ({ theme }) => ({
|
|
1060
|
+
borderColor: theme.palette.warning.main,
|
|
1061
|
+
backgroundColor: theme.palette.background.warning
|
|
1062
|
+
})
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
MuiButton: {
|
|
1066
|
+
defaultProps: {
|
|
1067
|
+
size: "medium",
|
|
1068
|
+
disableElevation: true,
|
|
1069
|
+
disableRipple: true
|
|
1070
|
+
},
|
|
1071
|
+
styleOverrides: {
|
|
1072
|
+
root: {
|
|
1073
|
+
boxShadow: `0px 1px 1px 0px ${alpha(colors.black, 0.05)}`
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
variants: [
|
|
1077
|
+
{
|
|
1078
|
+
props: { variant: "contained" },
|
|
1079
|
+
style: ({ theme }) => ({
|
|
1080
|
+
border: `0.6px solid ${theme.palette.dividers.secondary}`,
|
|
1081
|
+
"&.Mui-disabled": {
|
|
1082
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[700] : colors.sidebar,
|
|
1083
|
+
border: `0.6px solid ${theme.palette.mode === "dark" ? alpha(colors.white, 0.15) : alpha(colors.grey[900], 0.15)}`
|
|
1084
|
+
}
|
|
1085
|
+
})
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
props: { variant: "contained", color: "primary" },
|
|
1089
|
+
style: {
|
|
1090
|
+
backgroundColor: colors.blue.main,
|
|
1091
|
+
color: colors.white,
|
|
1092
|
+
"&:hover": {
|
|
1093
|
+
backgroundColor: colors.blue.drawer
|
|
1094
|
+
},
|
|
1095
|
+
"&:active": {
|
|
1096
|
+
backgroundColor: colors.blue.main
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
props: { variant: "contained", color: "error" },
|
|
1102
|
+
style: {
|
|
1103
|
+
backgroundColor: colors.error.light.main,
|
|
1104
|
+
color: colors.white,
|
|
1105
|
+
"&:hover": {
|
|
1106
|
+
backgroundColor: colors.error.dark.main
|
|
1107
|
+
},
|
|
1108
|
+
"&:active": {
|
|
1109
|
+
backgroundColor: colors.error.light.main
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
props: { variant: "outlined" },
|
|
1115
|
+
style: {
|
|
1116
|
+
backgroundColor: "transparent",
|
|
1117
|
+
"&:hover": {
|
|
1118
|
+
backgroundColor: "transparent"
|
|
1119
|
+
},
|
|
1120
|
+
"&:active": {
|
|
1121
|
+
backgroundColor: "transparent"
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
props: { variant: "outlined", color: "primary" },
|
|
1127
|
+
style: ({ theme }) => ({
|
|
1128
|
+
border: `0.6px solid ${theme.palette.dividers.secondary}`,
|
|
1129
|
+
"&:hover": {
|
|
1130
|
+
border: `0.6px solid ${theme.palette.mode === "dark" ? alpha(colors.white, 0.8) : alpha(colors.grey[900], 0.8)}`
|
|
1131
|
+
},
|
|
1132
|
+
"&:active": {
|
|
1133
|
+
border: `0.6px solid ${theme.palette.mode === "dark" ? colors.white : colors.grey[900]}`
|
|
1134
|
+
}
|
|
1135
|
+
})
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
props: { variant: "outlined", color: "error" },
|
|
1139
|
+
style: {
|
|
1140
|
+
border: `0.6px solid ${alpha(colors.error.light.main, 0.1)}`,
|
|
1141
|
+
"&:hover": {
|
|
1142
|
+
border: `0.6px solid ${alpha(colors.error.light.main, 0.4)}`
|
|
1143
|
+
},
|
|
1144
|
+
"&:active": {
|
|
1145
|
+
border: `0.6px solid ${colors.error.light.main}`
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
props: { variant: "overlay" },
|
|
1151
|
+
style: {
|
|
1152
|
+
minHeight: "48px !important",
|
|
1153
|
+
height: "48px !important",
|
|
1154
|
+
borderRadius: "0px !important",
|
|
1155
|
+
width: "100%"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
props: { variant: "overlay", color: "primary" },
|
|
1160
|
+
style: ({ theme }) => ({
|
|
1161
|
+
backgroundColor: colors.blue.main,
|
|
1162
|
+
color: colors.white,
|
|
1163
|
+
"&:hover": {
|
|
1164
|
+
backgroundColor: colors.blue.drawer
|
|
1165
|
+
},
|
|
1166
|
+
"&:active": {
|
|
1167
|
+
backgroundColor: colors.blue.main
|
|
1168
|
+
},
|
|
1169
|
+
"&.Mui-disabled": {
|
|
1170
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[700] : colors.sidebar
|
|
1171
|
+
}
|
|
1172
|
+
})
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
props: { variant: "overlay", color: "error" },
|
|
1176
|
+
style: ({ theme }) => ({
|
|
1177
|
+
backgroundColor: colors.error.light.main,
|
|
1178
|
+
color: colors.white,
|
|
1179
|
+
"&:hover": {
|
|
1180
|
+
backgroundColor: colors.error.dark.main
|
|
1181
|
+
},
|
|
1182
|
+
"&:active": {
|
|
1183
|
+
backgroundColor: colors.error.light.main
|
|
1184
|
+
},
|
|
1185
|
+
"&.Mui-disabled": {
|
|
1186
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[700] : colors.sidebar
|
|
1187
|
+
}
|
|
1188
|
+
})
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
props: { variant: "overlay", color: "secondary" },
|
|
1192
|
+
style: ({ theme }) => ({
|
|
1193
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[900] : colors.white,
|
|
1194
|
+
borderRight: `0.6px solid ${theme.palette.dividers.secondary}`
|
|
1195
|
+
})
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
props: { size: "medium" },
|
|
1199
|
+
style: ({ theme }) => ({
|
|
1200
|
+
borderRadius: "6px",
|
|
1201
|
+
fontSize: theme.typography.button.fontSize,
|
|
1202
|
+
letterSpacing: theme.typography.button.letterSpacing,
|
|
1203
|
+
fontWeight: theme.typography.button.fontWeight,
|
|
1204
|
+
textTransform: theme.typography.button.textTransform,
|
|
1205
|
+
lineHeight: theme.typography.button.lineHeight,
|
|
1206
|
+
paddingLeft: "16px",
|
|
1207
|
+
paddingRight: "16px",
|
|
1208
|
+
height: "44px"
|
|
1209
|
+
})
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
props: { size: "small" },
|
|
1213
|
+
style: ({ theme }) => ({
|
|
1214
|
+
borderRadius: "4px",
|
|
1215
|
+
fontSize: "12px",
|
|
1216
|
+
letterSpacing: theme.typography.button.letterSpacing,
|
|
1217
|
+
fontWeight: theme.typography.button.fontWeight,
|
|
1218
|
+
textTransform: theme.typography.button.textTransform,
|
|
1219
|
+
lineHeight: theme.typography.button.lineHeight,
|
|
1220
|
+
paddingLeft: "12px",
|
|
1221
|
+
paddingRight: "12px",
|
|
1222
|
+
height: "32px",
|
|
1223
|
+
"& .MuiButton-startIcon": {
|
|
1224
|
+
"& svg": {
|
|
1225
|
+
width: "16px",
|
|
1226
|
+
height: "16px"
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"& .MuiButton-endIcon": {
|
|
1230
|
+
"& svg": {
|
|
1231
|
+
width: "16px",
|
|
1232
|
+
height: "16px"
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
})
|
|
1236
|
+
}
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1239
|
+
MuiBreadcrumbs: {
|
|
1240
|
+
defaultProps: {
|
|
1241
|
+
separator: /* @__PURE__ */ jsx11(BreadcrumbIcon, {})
|
|
1242
|
+
},
|
|
1243
|
+
styleOverrides: {
|
|
1244
|
+
separator: ({ theme }) => ({
|
|
1245
|
+
color: theme.palette.text.secondary,
|
|
1246
|
+
"& svg": {
|
|
1247
|
+
width: "16px",
|
|
1248
|
+
height: "16px"
|
|
1249
|
+
}
|
|
1250
|
+
})
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
MuiFab: {
|
|
1254
|
+
styleOverrides: {
|
|
1255
|
+
root: ({ theme }) => ({
|
|
1256
|
+
"&.Mui-disabled": {
|
|
1257
|
+
color: theme.palette.action.disabled,
|
|
1258
|
+
backgroundColor: theme.palette.action.disabledBackground
|
|
1259
|
+
}
|
|
1260
|
+
}),
|
|
1261
|
+
primary: {
|
|
1262
|
+
backgroundColor: colors.blue.main,
|
|
1263
|
+
color: colors.white,
|
|
1264
|
+
"&:hover": {
|
|
1265
|
+
backgroundColor: alpha(colors.blue.main, 0.9)
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
MuiIconButton: {
|
|
1271
|
+
defaultProps: {
|
|
1272
|
+
variant: "transparent",
|
|
1273
|
+
color: "primary",
|
|
1274
|
+
size: "small",
|
|
1275
|
+
disableRipple: true
|
|
1276
|
+
},
|
|
1277
|
+
styleOverrides: {
|
|
1278
|
+
root: {
|
|
1279
|
+
"& svg": {
|
|
1280
|
+
width: "16px",
|
|
1281
|
+
height: "16px"
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
variants: [
|
|
1286
|
+
{
|
|
1287
|
+
props: { variant: "none" },
|
|
1288
|
+
style: {
|
|
1289
|
+
width: "28px",
|
|
1290
|
+
height: "28px"
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
props: { variant: "transparent" },
|
|
1295
|
+
style: ({ theme }) => ({
|
|
1296
|
+
borderRadius: "6px",
|
|
1297
|
+
width: "28px",
|
|
1298
|
+
height: "28px",
|
|
1299
|
+
"&:hover": {
|
|
1300
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[800] : colors.grey[100]
|
|
1301
|
+
},
|
|
1302
|
+
"&:active": {
|
|
1303
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[700] : colors.grey[200]
|
|
1304
|
+
}
|
|
1305
|
+
})
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
props: { variant: "outlined" },
|
|
1309
|
+
style: ({ theme }) => ({
|
|
1310
|
+
width: "32px",
|
|
1311
|
+
height: "32px",
|
|
1312
|
+
border: `0.6px solid ${theme.palette.dividers.secondary} !important`,
|
|
1313
|
+
borderRadius: "6px",
|
|
1314
|
+
"&:hover": {
|
|
1315
|
+
border: `0.6px solid ${theme.palette.mode === "dark" ? alpha(colors.white, 0.8) : alpha(colors.grey[900], 0.8)} !important`
|
|
1316
|
+
},
|
|
1317
|
+
"&:active": {
|
|
1318
|
+
border: `0.6px solid ${theme.palette.mode === "dark" ? colors.white : colors.grey[900]} !important`
|
|
1319
|
+
}
|
|
1320
|
+
})
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
props: { size: "small" },
|
|
1324
|
+
style: {
|
|
1325
|
+
"& svg": {
|
|
1326
|
+
width: "16px",
|
|
1327
|
+
height: "16px"
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
props: { size: "medium" },
|
|
1333
|
+
style: {
|
|
1334
|
+
width: "32px",
|
|
1335
|
+
height: "32px",
|
|
1336
|
+
"& svg": {
|
|
1337
|
+
width: "24px",
|
|
1338
|
+
height: "24px"
|
|
1339
|
+
},
|
|
1340
|
+
"& .MuiCircularProgress-root": {
|
|
1341
|
+
width: "24px !important",
|
|
1342
|
+
height: "24px !important"
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
]
|
|
1347
|
+
},
|
|
1348
|
+
MuiCheckbox: {
|
|
1349
|
+
defaultProps: {
|
|
1350
|
+
disableRipple: true,
|
|
1351
|
+
icon: /* @__PURE__ */ jsx11(UncheckedIcon, { sx: { width: 16, height: 16 } }),
|
|
1352
|
+
checkedIcon: /* @__PURE__ */ jsx11(CheckedIcon, { sx: { width: 16, height: 16 } }),
|
|
1353
|
+
indeterminateIcon: /* @__PURE__ */ jsx11(IndeterminateIcon, { sx: { width: 16, height: 16 } })
|
|
1354
|
+
},
|
|
1355
|
+
styleOverrides: {
|
|
1356
|
+
root: ({ theme }) => ({
|
|
1357
|
+
padding: "12px",
|
|
1358
|
+
"&.Mui-checked": {
|
|
1359
|
+
color: colors.blue.main
|
|
1360
|
+
},
|
|
1361
|
+
"&.MuiCheckbox-indeterminate": {
|
|
1362
|
+
color: colors.blue.main
|
|
1363
|
+
},
|
|
1364
|
+
"&.Mui-disabled": {
|
|
1365
|
+
color: theme.palette.mode === "dark" ? colors.grey[700] : colors.sidebar
|
|
1366
|
+
}
|
|
1367
|
+
})
|
|
1368
|
+
}
|
|
1369
|
+
},
|
|
1370
|
+
MuiDialog: {
|
|
1371
|
+
styleOverrides: {
|
|
1372
|
+
paper: { backgroundImage: "none" }
|
|
1373
|
+
}
|
|
1374
|
+
},
|
|
1375
|
+
MuiDialogTitle: {
|
|
1376
|
+
defaultProps: {
|
|
1377
|
+
variant: "h1"
|
|
1378
|
+
},
|
|
1379
|
+
styleOverrides: {
|
|
1380
|
+
root: ({ theme }) => ({
|
|
1381
|
+
padding: theme.spacing(2, 3, 1),
|
|
1382
|
+
"& + .MuiDialogContent-root": {
|
|
1383
|
+
paddingTop: `${theme.spacing(1)} !important`
|
|
1384
|
+
}
|
|
1385
|
+
})
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
MuiDialogContent: {
|
|
1389
|
+
styleOverrides: {
|
|
1390
|
+
root: ({ theme }) => ({
|
|
1391
|
+
display: "flex",
|
|
1392
|
+
flexDirection: "column",
|
|
1393
|
+
padding: theme.spacing(2, 3, 1)
|
|
1394
|
+
})
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
MuiDialogActions: {
|
|
1398
|
+
styleOverrides: {
|
|
1399
|
+
root: ({ theme }) => ({
|
|
1400
|
+
"& *:nth-last-of-type(n + 3):first-of-type": {
|
|
1401
|
+
marginRight: "auto"
|
|
1402
|
+
},
|
|
1403
|
+
padding: theme.spacing(1, 3, 2)
|
|
1404
|
+
})
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
MuiDialogContentText: {
|
|
1408
|
+
styleOverrides: {
|
|
1409
|
+
root: ({ theme }) => ({
|
|
1410
|
+
fontSize: theme.typography.body2.fontSize,
|
|
1411
|
+
fontWeight: theme.typography.body2.fontWeight,
|
|
1412
|
+
letterSpacing: theme.typography.body2.letterSpacing,
|
|
1413
|
+
lineHeight: theme.typography.body2.lineHeight,
|
|
1414
|
+
color: theme.palette.text.primary
|
|
1415
|
+
})
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
MuiDrawer: {
|
|
1419
|
+
styleOverrides: {
|
|
1420
|
+
root: { width: drawerWidth },
|
|
1421
|
+
paper: {
|
|
1422
|
+
width: drawerWidth,
|
|
1423
|
+
backgroundImage: "none",
|
|
1424
|
+
"& .MuiListItemButton-root": {
|
|
1425
|
+
color: colors.sidebar
|
|
1426
|
+
},
|
|
1427
|
+
"& .MuiListItemButton-root.Mui-selected": {
|
|
1428
|
+
backgroundColor: alpha(colors.white, 0.1),
|
|
1429
|
+
color: colors.white,
|
|
1430
|
+
"&:hover": {
|
|
1431
|
+
backgroundColor: alpha(colors.white, 0.1)
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"& .MuiListItemButton-root:hover": {
|
|
1435
|
+
backgroundColor: alpha(colors.white, 0.1),
|
|
1436
|
+
color: colors.white
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
MuiDivider: {
|
|
1442
|
+
styleOverrides: {
|
|
1443
|
+
root: ({ theme }) => ({
|
|
1444
|
+
borderColor: theme.palette.divider,
|
|
1445
|
+
borderTopWidth: "0px !important",
|
|
1446
|
+
borderBottomWidth: "0.6px !important"
|
|
1447
|
+
})
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
MuiFormControlLabel: {
|
|
1451
|
+
styleOverrides: {
|
|
1452
|
+
label: {
|
|
1453
|
+
flex: 1
|
|
1454
|
+
},
|
|
1455
|
+
labelPlacementStart: {
|
|
1456
|
+
display: "flex"
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
MuiListItemButton: {
|
|
1461
|
+
styleOverrides: {
|
|
1462
|
+
root: ({ theme }) => ({
|
|
1463
|
+
"&.Mui-selected": {
|
|
1464
|
+
backgroundColor: theme.palette.action.selected,
|
|
1465
|
+
"&:hover": {
|
|
1466
|
+
backgroundColor: theme.palette.action.hover
|
|
1467
|
+
},
|
|
1468
|
+
"&.Mui-focusVisible": {
|
|
1469
|
+
backgroundColor: theme.palette.action.focus
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
})
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
MuiTableCell: {
|
|
1476
|
+
styleOverrides: {
|
|
1477
|
+
root: ({ theme }) => ({
|
|
1478
|
+
borderBottomColor: theme.palette.divider
|
|
1479
|
+
})
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
MuiInputBase: {
|
|
1483
|
+
styleOverrides: {
|
|
1484
|
+
root: ({ theme }) => ({
|
|
1485
|
+
backgroundColor: theme.palette.background.paper,
|
|
1486
|
+
minHeight: "44px",
|
|
1487
|
+
"&:not(.MuiInputBase-multiline):not(.MuiAutocomplete-inputRoot)": {
|
|
1488
|
+
height: "44px"
|
|
1489
|
+
},
|
|
1490
|
+
"&.Mui-disabled": {
|
|
1491
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[800] : colors.grey[100]
|
|
1492
|
+
}
|
|
1493
|
+
})
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
MuiRadio: {
|
|
1497
|
+
styleOverrides: {
|
|
1498
|
+
root: {
|
|
1499
|
+
color: colors.grey[400],
|
|
1500
|
+
"&.Mui-checked": {
|
|
1501
|
+
color: colors.blue.main
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
MuiSwitch: {
|
|
1507
|
+
styleOverrides: {
|
|
1508
|
+
root: {
|
|
1509
|
+
width: 54,
|
|
1510
|
+
height: 38,
|
|
1511
|
+
padding: 9
|
|
1512
|
+
},
|
|
1513
|
+
switchBase: ({ theme }) => ({
|
|
1514
|
+
padding: 9,
|
|
1515
|
+
"&.Mui-checked": {
|
|
1516
|
+
transform: "translateX(16px)",
|
|
1517
|
+
"& + .MuiSwitch-track": {
|
|
1518
|
+
backgroundColor: colors.blue.main,
|
|
1519
|
+
opacity: 1
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
"&.Mui-disabled": {
|
|
1523
|
+
"& .MuiSwitch-thumb": {
|
|
1524
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[800] : colors.grey[100]
|
|
1525
|
+
},
|
|
1526
|
+
"& + .MuiSwitch-track": {
|
|
1527
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[800] : colors.grey[100],
|
|
1528
|
+
opacity: 1
|
|
1529
|
+
}
|
|
1530
|
+
}
|
|
1531
|
+
}),
|
|
1532
|
+
track: ({ theme }) => ({
|
|
1533
|
+
borderRadius: 10,
|
|
1534
|
+
width: 36,
|
|
1535
|
+
height: 20,
|
|
1536
|
+
backgroundColor: theme.palette.mode === "dark" ? colors.grey[800] : colors.grey[100],
|
|
1537
|
+
opacity: 1,
|
|
1538
|
+
border: theme.palette.mode === "dark" ? `0.6px solid var(--Divider-divider_primary, ${alpha(colors.white, 0.26)})` : `0.6px solid var(--Divider-divider_primary, ${alpha(colors.grey[900], 0.26)})`
|
|
1539
|
+
}),
|
|
1540
|
+
thumb: ({ theme }) => ({
|
|
1541
|
+
boxShadow: `0px 1px 2px 0px ${alpha("#101828", 0.15)}`,
|
|
1542
|
+
width: 14,
|
|
1543
|
+
height: 14,
|
|
1544
|
+
margin: 3,
|
|
1545
|
+
backgroundColor: colors.white,
|
|
1546
|
+
border: theme.palette.mode === "dark" ? `0.6px solid var(--Divider-divider_primary, ${alpha(colors.white, 0.26)})` : `0.6px solid var(--Divider-divider_primary, ${alpha(colors.grey[900], 0.26)})`
|
|
1547
|
+
})
|
|
1548
|
+
}
|
|
1549
|
+
},
|
|
1550
|
+
MuiTabs: {
|
|
1551
|
+
styleOverrides: {
|
|
1552
|
+
root: {
|
|
1553
|
+
"& .MuiTabs-indicator": {
|
|
1554
|
+
backgroundColor: colors.blue.main
|
|
1555
|
+
},
|
|
1556
|
+
minHeight: 44
|
|
1557
|
+
},
|
|
1558
|
+
flexContainer: {
|
|
1559
|
+
gap: 20
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
MuiTab: {
|
|
1564
|
+
styleOverrides: {
|
|
1565
|
+
root: ({ theme }) => ({
|
|
1566
|
+
fontWeight: 600,
|
|
1567
|
+
paddingLeft: 1,
|
|
1568
|
+
paddingRight: 1,
|
|
1569
|
+
minWidth: "auto",
|
|
1570
|
+
minHeight: 44,
|
|
1571
|
+
opacity: 1,
|
|
1572
|
+
color: theme.palette.text.secondary,
|
|
1573
|
+
"&.Mui-selected": {
|
|
1574
|
+
color: theme.palette.primary.main
|
|
1575
|
+
}
|
|
1576
|
+
})
|
|
1577
|
+
}
|
|
1578
|
+
},
|
|
1579
|
+
MuiTooltip: {
|
|
1580
|
+
styleOverrides: {
|
|
1581
|
+
tooltip: ({ theme }) => ({
|
|
1582
|
+
backgroundColor: theme.palette.grey[600],
|
|
1583
|
+
borderRadius: "6px",
|
|
1584
|
+
fontSize: theme.typography.caption.fontSize,
|
|
1585
|
+
fontWeight: 500,
|
|
1586
|
+
letterSpacing: theme.typography.caption.letterSpacing,
|
|
1587
|
+
lineHeight: theme.typography.caption.lineHeight,
|
|
1588
|
+
paddingTop: "8px",
|
|
1589
|
+
paddingBottom: "8px",
|
|
1590
|
+
paddingLeft: "12px",
|
|
1591
|
+
paddingRight: "12px"
|
|
1592
|
+
}),
|
|
1593
|
+
arrow: ({ theme }) => ({
|
|
1594
|
+
color: theme.palette.grey[600]
|
|
1595
|
+
})
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
MuiTextField: {
|
|
1599
|
+
defaultProps: {
|
|
1600
|
+
InputLabelProps: {
|
|
1601
|
+
shrink: true
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
MuiInputLabel: {
|
|
1606
|
+
defaultProps: {
|
|
1607
|
+
shrink: true
|
|
1608
|
+
},
|
|
1609
|
+
styleOverrides: {
|
|
1610
|
+
root: ({ theme }) => ({
|
|
1611
|
+
position: "relative",
|
|
1612
|
+
transform: "none",
|
|
1613
|
+
marginBottom: theme.spacing(0.75),
|
|
1614
|
+
fontSize: theme.typography.caption.fontSize,
|
|
1615
|
+
fontWeight: 600,
|
|
1616
|
+
color: theme.palette.text.primary,
|
|
1617
|
+
"&.Mui-focused": {
|
|
1618
|
+
color: theme.palette.text.primary
|
|
1619
|
+
},
|
|
1620
|
+
"&.Mui-error": {
|
|
1621
|
+
color: theme.palette.error.main
|
|
1622
|
+
},
|
|
1623
|
+
"&.Mui-disabled": {
|
|
1624
|
+
color: theme.palette.text.disabled
|
|
1625
|
+
}
|
|
1626
|
+
}),
|
|
1627
|
+
shrink: {
|
|
1628
|
+
transform: "none"
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
},
|
|
1632
|
+
MuiOutlinedInput: {
|
|
1633
|
+
styleOverrides: {
|
|
1634
|
+
root: {
|
|
1635
|
+
padding: 0,
|
|
1636
|
+
borderRadius: "6px",
|
|
1637
|
+
"&:not(.MuiInputBase-multiline):not(.MuiAutocomplete-inputRoot)": {
|
|
1638
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1639
|
+
height: "44px",
|
|
1640
|
+
legend: {
|
|
1641
|
+
display: "none"
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
"&.MuiInputBase-multiline": {
|
|
1646
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1647
|
+
height: "auto",
|
|
1648
|
+
legend: {
|
|
1649
|
+
display: "none"
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
input: ({ theme }) => ({
|
|
1655
|
+
"&:not(textarea)": {
|
|
1656
|
+
height: "44px"
|
|
1657
|
+
},
|
|
1658
|
+
"&.MuiInputBase-inputMultiline": {
|
|
1659
|
+
margin: theme.spacing(1)
|
|
1660
|
+
},
|
|
1661
|
+
boxSizing: "border-box",
|
|
1662
|
+
fontSize: theme.typography.body2.fontSize,
|
|
1663
|
+
fontWeight: theme.typography.body2.fontWeight,
|
|
1664
|
+
letterSpacing: theme.typography.body2.letterSpacing,
|
|
1665
|
+
lineHeight: theme.typography.body2.lineHeight
|
|
1666
|
+
}),
|
|
1667
|
+
notchedOutline: {
|
|
1668
|
+
top: 0,
|
|
1669
|
+
boxShadow: `0px 1px 1px 0px ${alpha(colors.black, 0.05)};`,
|
|
1670
|
+
"& legend": {
|
|
1671
|
+
display: "none"
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
MuiFormLabel: {
|
|
1677
|
+
styleOverrides: {
|
|
1678
|
+
root: ({ theme }) => ({
|
|
1679
|
+
fontSize: theme.typography.body2.fontSize,
|
|
1680
|
+
fontWeight: 600,
|
|
1681
|
+
color: theme.palette.text.primary
|
|
1682
|
+
})
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
MuiFormHelperText: {
|
|
1686
|
+
styleOverrides: {
|
|
1687
|
+
root: ({ theme }) => ({
|
|
1688
|
+
marginLeft: 0,
|
|
1689
|
+
marginRight: 0,
|
|
1690
|
+
marginTop: theme.spacing(0.5)
|
|
1691
|
+
})
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
MuiInputAdornment: {
|
|
1695
|
+
styleOverrides: {
|
|
1696
|
+
positionEnd: {
|
|
1697
|
+
marginRight: "8px"
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
MuiMenu: {
|
|
1702
|
+
defaultProps: {
|
|
1703
|
+
transitionDuration: 0
|
|
1704
|
+
},
|
|
1705
|
+
styleOverrides: {
|
|
1706
|
+
paper: ({ theme }) => ({
|
|
1707
|
+
boxShadow: `0px 1px 1px 0px ${alpha(colors.black, 0.05)}`,
|
|
1708
|
+
borderRadius: "6px",
|
|
1709
|
+
border: `0.6px solid ${theme.palette.dividers.secondary}`,
|
|
1710
|
+
backgroundImage: "none",
|
|
1711
|
+
marginTop: theme.spacing(1)
|
|
1712
|
+
})
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
MuiList: {
|
|
1716
|
+
styleOverrides: {
|
|
1717
|
+
root: {
|
|
1718
|
+
paddingTop: "0px",
|
|
1719
|
+
paddingBottom: "0px"
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
MuiMenuItem: {
|
|
1724
|
+
styleOverrides: {
|
|
1725
|
+
root: ({ theme }) => ({
|
|
1726
|
+
fontSize: theme.typography.body2.fontSize,
|
|
1727
|
+
fontWeight: theme.typography.body2.fontWeight,
|
|
1728
|
+
letterSpacing: theme.typography.body2.letterSpacing,
|
|
1729
|
+
lineHeight: theme.typography.body2.lineHeight,
|
|
1730
|
+
paddingTop: "0px",
|
|
1731
|
+
paddingBottom: "0px",
|
|
1732
|
+
paddingLeft: "12px",
|
|
1733
|
+
paddingRight: "12px",
|
|
1734
|
+
minHeight: "44px !important"
|
|
1735
|
+
})
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1738
|
+
MuiAutocomplete: {
|
|
1739
|
+
defaultProps: {
|
|
1740
|
+
clearIcon: /* @__PURE__ */ jsx11(InputCloseIcon, { sx: { width: 24, height: 24 } })
|
|
1741
|
+
},
|
|
1742
|
+
styleOverrides: {
|
|
1743
|
+
inputRoot: {
|
|
1744
|
+
minHeight: "44px",
|
|
1745
|
+
height: "auto",
|
|
1746
|
+
padding: "0 !important",
|
|
1747
|
+
borderRadius: "6px",
|
|
1748
|
+
"& .MuiOutlinedInput-input": {
|
|
1749
|
+
padding: "10px 14px"
|
|
1750
|
+
},
|
|
1751
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1752
|
+
height: "auto"
|
|
1753
|
+
}
|
|
1754
|
+
},
|
|
1755
|
+
input: {
|
|
1756
|
+
minHeight: "44px",
|
|
1757
|
+
padding: "10px 14px",
|
|
1758
|
+
boxSizing: "border-box"
|
|
1759
|
+
},
|
|
1760
|
+
endAdornment: {
|
|
1761
|
+
"& .MuiAutocomplete-clearIndicator": {
|
|
1762
|
+
visibility: "visible"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
option: ({ theme }) => ({
|
|
1766
|
+
fontSize: theme.typography.body2.fontSize,
|
|
1767
|
+
fontWeight: theme.typography.body2.fontWeight,
|
|
1768
|
+
letterSpacing: theme.typography.body2.letterSpacing,
|
|
1769
|
+
lineHeight: theme.typography.body2.lineHeight,
|
|
1770
|
+
paddingTop: "0px !important",
|
|
1771
|
+
paddingBottom: "0px !important",
|
|
1772
|
+
paddingLeft: "12px !important",
|
|
1773
|
+
paddingRight: "12px !important",
|
|
1774
|
+
minHeight: "44px !important"
|
|
1775
|
+
}),
|
|
1776
|
+
listbox: {
|
|
1777
|
+
paddingTop: "0px",
|
|
1778
|
+
paddingBottom: "0px"
|
|
1779
|
+
},
|
|
1780
|
+
paper: ({ theme }) => ({
|
|
1781
|
+
boxShadow: `0px 1px 1px 0px ${alpha(colors.black, 0.05)}`,
|
|
1782
|
+
borderRadius: "6px",
|
|
1783
|
+
border: `0.6px solid ${theme.palette.dividers.secondary}`,
|
|
1784
|
+
backgroundImage: "none",
|
|
1785
|
+
marginTop: theme.spacing(1),
|
|
1786
|
+
marginBottom: theme.spacing(1)
|
|
1787
|
+
})
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
// MUI X DatePicker components
|
|
1791
|
+
// @ts-ignore - MUI X DatePicker component types may not be available
|
|
1792
|
+
MuiDatePicker: {
|
|
1793
|
+
defaultProps: {
|
|
1794
|
+
slots: {
|
|
1795
|
+
openPickerIcon: DatePickerIcon
|
|
1796
|
+
},
|
|
1797
|
+
slotProps: {
|
|
1798
|
+
openPickerButton: {
|
|
1799
|
+
size: "medium"
|
|
1800
|
+
},
|
|
1801
|
+
inputAdornment: {
|
|
1802
|
+
sx: { mx: "4px" }
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
MuiPickersTextField: {
|
|
1808
|
+
styleOverrides: {
|
|
1809
|
+
root: {
|
|
1810
|
+
"& .MuiInputBase-root": {
|
|
1811
|
+
height: "44px",
|
|
1812
|
+
borderRadius: "6px"
|
|
1813
|
+
},
|
|
1814
|
+
"& .MuiOutlinedInput-root": {
|
|
1815
|
+
height: "44px",
|
|
1816
|
+
borderRadius: "6px"
|
|
1817
|
+
},
|
|
1818
|
+
"& .MuiOutlinedInput-input": {
|
|
1819
|
+
height: "44px",
|
|
1820
|
+
padding: "10px 14px",
|
|
1821
|
+
boxSizing: "border-box"
|
|
1822
|
+
},
|
|
1823
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1824
|
+
height: "44px",
|
|
1825
|
+
top: 0,
|
|
1826
|
+
borderRadius: "6px",
|
|
1827
|
+
"& legend": {
|
|
1828
|
+
display: "none",
|
|
1829
|
+
width: 0,
|
|
1830
|
+
height: 0
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
MuiPickersInputBase: {
|
|
1837
|
+
styleOverrides: {
|
|
1838
|
+
root: {
|
|
1839
|
+
height: "44px !important",
|
|
1840
|
+
borderRadius: "6px",
|
|
1841
|
+
"& .MuiInputBase-input": {
|
|
1842
|
+
height: "44px",
|
|
1843
|
+
padding: "10px 14px",
|
|
1844
|
+
boxSizing: "border-box"
|
|
1845
|
+
},
|
|
1846
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1847
|
+
height: "44px",
|
|
1848
|
+
top: 0,
|
|
1849
|
+
borderRadius: "6px",
|
|
1850
|
+
"& legend": {
|
|
1851
|
+
display: "none",
|
|
1852
|
+
width: 0,
|
|
1853
|
+
height: 0
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
},
|
|
1859
|
+
MuiPickersOutlinedInput: {
|
|
1860
|
+
styleOverrides: {
|
|
1861
|
+
root: {
|
|
1862
|
+
height: "44px !important",
|
|
1863
|
+
borderRadius: "6px",
|
|
1864
|
+
"& .MuiOutlinedInput-input": {
|
|
1865
|
+
height: "44px",
|
|
1866
|
+
padding: "10px 14px",
|
|
1867
|
+
boxSizing: "border-box"
|
|
1868
|
+
},
|
|
1869
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
1870
|
+
height: "44px",
|
|
1871
|
+
top: 0,
|
|
1872
|
+
borderRadius: "6px",
|
|
1873
|
+
"& legend": {
|
|
1874
|
+
display: "none",
|
|
1875
|
+
width: 0,
|
|
1876
|
+
height: 0
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
input: {
|
|
1881
|
+
height: "44px",
|
|
1882
|
+
padding: "10px 14px",
|
|
1883
|
+
boxSizing: "border-box"
|
|
1884
|
+
},
|
|
1885
|
+
notchedOutline: {
|
|
1886
|
+
height: "44px",
|
|
1887
|
+
top: 0,
|
|
1888
|
+
borderRadius: "6px",
|
|
1889
|
+
"& legend": {
|
|
1890
|
+
display: "none",
|
|
1891
|
+
width: 0,
|
|
1892
|
+
height: 0
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1899
|
+
overrideOptions
|
|
1900
|
+
);
|
|
1901
|
+
export {
|
|
1902
|
+
appBarHeight,
|
|
1903
|
+
biampTheme
|
|
1904
|
+
};
|
|
1905
|
+
//# sourceMappingURL=index.js.map
|