@bwp-web/styles 0.1.1 → 0.2.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/index.cjs +34 -594
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +55 -593
- package/dist/index.js.map +1 -1
- package/dist/theme.d.ts.map +1 -1
- package/package.json +10 -10
- package/dist/icons/BreadcrumbIcon.d.ts +0 -3
- package/dist/icons/BreadcrumbIcon.d.ts.map +0 -1
- package/dist/icons/CheckedIcon.d.ts +0 -3
- package/dist/icons/CheckedIcon.d.ts.map +0 -1
- package/dist/icons/DatePickerIcon.d.ts +0 -3
- package/dist/icons/DatePickerIcon.d.ts.map +0 -1
- package/dist/icons/ErrorStatusIcon.d.ts +0 -3
- package/dist/icons/ErrorStatusIcon.d.ts.map +0 -1
- package/dist/icons/IndeterminateIcon.d.ts +0 -3
- package/dist/icons/IndeterminateIcon.d.ts.map +0 -1
- package/dist/icons/InfoStatusIcon.d.ts +0 -3
- package/dist/icons/InfoStatusIcon.d.ts.map +0 -1
- package/dist/icons/InputCloseIcon.d.ts +0 -3
- package/dist/icons/InputCloseIcon.d.ts.map +0 -1
- package/dist/icons/SuccessStatusIcon.d.ts +0 -3
- package/dist/icons/SuccessStatusIcon.d.ts.map +0 -1
- package/dist/icons/UncheckedIcon.d.ts +0 -3
- package/dist/icons/UncheckedIcon.d.ts.map +0 -1
- package/dist/icons/WarningStatusIcon.d.ts +0 -3
- package/dist/icons/WarningStatusIcon.d.ts.map +0 -1
- package/dist/icons/index.d.ts +0 -11
- package/dist/icons/index.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,576 +1,29 @@
|
|
|
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
1
|
// src/theme.tsx
|
|
2
|
+
import {
|
|
3
|
+
BreadcrumbIcon,
|
|
4
|
+
CheckedIcon,
|
|
5
|
+
DatePickerIcon,
|
|
6
|
+
ErrorStatusIcon,
|
|
7
|
+
IndeterminateIcon,
|
|
8
|
+
InfoStatusIcon,
|
|
9
|
+
InputCloseIcon,
|
|
10
|
+
MontserratBold,
|
|
11
|
+
MontserratMedium,
|
|
12
|
+
MontserratSemiBold,
|
|
13
|
+
OpenSansBold,
|
|
14
|
+
OpenSansBoldItalic,
|
|
15
|
+
OpenSansExtraBold,
|
|
16
|
+
OpenSansExtraBoldItalic,
|
|
17
|
+
OpenSansRegular,
|
|
18
|
+
OpenSansRegularItalic,
|
|
19
|
+
OpenSansSemiBold,
|
|
20
|
+
OpenSansSemiBoldItalic,
|
|
21
|
+
SuccessStatusIcon,
|
|
22
|
+
UncheckedIcon,
|
|
23
|
+
WarningStatusIcon
|
|
24
|
+
} from "@bwp-web/assets";
|
|
572
25
|
import { alpha, createTheme } from "@mui/material/styles";
|
|
573
|
-
import { jsx
|
|
26
|
+
import { jsx } from "react/jsx-runtime";
|
|
574
27
|
var colors = {
|
|
575
28
|
black: "#000000",
|
|
576
29
|
white: "#ffffff",
|
|
@@ -930,7 +383,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
930
383
|
font-weight: 400;
|
|
931
384
|
font-style: normal;
|
|
932
385
|
font-display: swap;
|
|
933
|
-
src: url(
|
|
386
|
+
src: url(${OpenSansRegular}) format('woff2');
|
|
934
387
|
}
|
|
935
388
|
|
|
936
389
|
@font-face {
|
|
@@ -938,15 +391,15 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
938
391
|
font-weight: 400;
|
|
939
392
|
font-style: italic;
|
|
940
393
|
font-display: swap;
|
|
941
|
-
src: url(
|
|
394
|
+
src: url(${OpenSansRegularItalic}) format('woff2');
|
|
942
395
|
}
|
|
943
|
-
|
|
396
|
+
|
|
944
397
|
@font-face {
|
|
945
398
|
font-family: 'Open Sans';
|
|
946
399
|
font-weight: 600;
|
|
947
400
|
font-style: normal;
|
|
948
401
|
font-display: swap;
|
|
949
|
-
src: url(
|
|
402
|
+
src: url(${OpenSansSemiBold}) format('woff2');
|
|
950
403
|
}
|
|
951
404
|
|
|
952
405
|
@font-face {
|
|
@@ -954,7 +407,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
954
407
|
font-weight: 600;
|
|
955
408
|
font-style: italic;
|
|
956
409
|
font-display: swap;
|
|
957
|
-
src: url(
|
|
410
|
+
src: url(${OpenSansSemiBoldItalic}) format('woff2');
|
|
958
411
|
}
|
|
959
412
|
|
|
960
413
|
@font-face {
|
|
@@ -962,7 +415,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
962
415
|
font-weight: 700;
|
|
963
416
|
font-style: normal;
|
|
964
417
|
font-display: swap;
|
|
965
|
-
src: url(
|
|
418
|
+
src: url(${OpenSansBold}) format('woff2');
|
|
966
419
|
}
|
|
967
420
|
|
|
968
421
|
@font-face {
|
|
@@ -970,7 +423,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
970
423
|
font-weight: 700;
|
|
971
424
|
font-style: italic;
|
|
972
425
|
font-display: swap;
|
|
973
|
-
src: url(
|
|
426
|
+
src: url(${OpenSansBoldItalic}) format('woff2');
|
|
974
427
|
}
|
|
975
428
|
|
|
976
429
|
@font-face {
|
|
@@ -978,7 +431,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
978
431
|
font-weight: 800;
|
|
979
432
|
font-style: normal;
|
|
980
433
|
font-display: swap;
|
|
981
|
-
src: url(
|
|
434
|
+
src: url(${OpenSansExtraBold}) format('woff2');
|
|
982
435
|
}
|
|
983
436
|
|
|
984
437
|
@font-face {
|
|
@@ -986,7 +439,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
986
439
|
font-weight: 800;
|
|
987
440
|
font-style: italic;
|
|
988
441
|
font-display: swap;
|
|
989
|
-
src: url(
|
|
442
|
+
src: url(${OpenSansExtraBoldItalic}) format('woff2');
|
|
990
443
|
}
|
|
991
444
|
|
|
992
445
|
@font-face {
|
|
@@ -994,7 +447,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
994
447
|
font-weight: 500;
|
|
995
448
|
font-style: normal;
|
|
996
449
|
font-display: swap;
|
|
997
|
-
src: url(
|
|
450
|
+
src: url(${MontserratMedium}) format('truetype');
|
|
998
451
|
}
|
|
999
452
|
|
|
1000
453
|
@font-face {
|
|
@@ -1002,7 +455,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1002
455
|
font-weight: 600;
|
|
1003
456
|
font-style: normal;
|
|
1004
457
|
font-display: swap;
|
|
1005
|
-
src: url(
|
|
458
|
+
src: url(${MontserratSemiBold}) format('truetype');
|
|
1006
459
|
}
|
|
1007
460
|
|
|
1008
461
|
@font-face {
|
|
@@ -1010,7 +463,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1010
463
|
font-weight: 700;
|
|
1011
464
|
font-style: normal;
|
|
1012
465
|
font-display: swap;
|
|
1013
|
-
src: url(
|
|
466
|
+
src: url(${MontserratBold}) format('truetype');
|
|
1014
467
|
}
|
|
1015
468
|
|
|
1016
469
|
[class*="Mui"] {
|
|
@@ -1021,10 +474,10 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1021
474
|
MuiAlert: {
|
|
1022
475
|
defaultProps: {
|
|
1023
476
|
iconMapping: {
|
|
1024
|
-
error: /* @__PURE__ */
|
|
1025
|
-
warning: /* @__PURE__ */
|
|
1026
|
-
info: /* @__PURE__ */
|
|
1027
|
-
success: /* @__PURE__ */
|
|
477
|
+
error: /* @__PURE__ */ jsx(ErrorStatusIcon, { sx: { width: 14, height: 14 } }),
|
|
478
|
+
warning: /* @__PURE__ */ jsx(WarningStatusIcon, { sx: { width: 16, height: 14 } }),
|
|
479
|
+
info: /* @__PURE__ */ jsx(InfoStatusIcon, { sx: { width: 14, height: 14 } }),
|
|
480
|
+
success: /* @__PURE__ */ jsx(SuccessStatusIcon, { sx: { width: 14, height: 14 } })
|
|
1028
481
|
}
|
|
1029
482
|
},
|
|
1030
483
|
styleOverrides: {
|
|
@@ -1238,7 +691,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1238
691
|
},
|
|
1239
692
|
MuiBreadcrumbs: {
|
|
1240
693
|
defaultProps: {
|
|
1241
|
-
separator: /* @__PURE__ */
|
|
694
|
+
separator: /* @__PURE__ */ jsx(BreadcrumbIcon, {})
|
|
1242
695
|
},
|
|
1243
696
|
styleOverrides: {
|
|
1244
697
|
separator: ({ theme }) => ({
|
|
@@ -1348,9 +801,9 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1348
801
|
MuiCheckbox: {
|
|
1349
802
|
defaultProps: {
|
|
1350
803
|
disableRipple: true,
|
|
1351
|
-
icon: /* @__PURE__ */
|
|
1352
|
-
checkedIcon: /* @__PURE__ */
|
|
1353
|
-
indeterminateIcon: /* @__PURE__ */
|
|
804
|
+
icon: /* @__PURE__ */ jsx(UncheckedIcon, { sx: { width: 16, height: 16 } }),
|
|
805
|
+
checkedIcon: /* @__PURE__ */ jsx(CheckedIcon, { sx: { width: 16, height: 16 } }),
|
|
806
|
+
indeterminateIcon: /* @__PURE__ */ jsx(IndeterminateIcon, { sx: { width: 16, height: 16 } })
|
|
1354
807
|
},
|
|
1355
808
|
styleOverrides: {
|
|
1356
809
|
root: ({ theme }) => ({
|
|
@@ -1693,6 +1146,15 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1693
1146
|
},
|
|
1694
1147
|
MuiInputAdornment: {
|
|
1695
1148
|
styleOverrides: {
|
|
1149
|
+
root: {
|
|
1150
|
+
"& .MuiSvgIcon-root": {
|
|
1151
|
+
width: "16px",
|
|
1152
|
+
height: "16px"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
positionStart: {
|
|
1156
|
+
marginLeft: "8px"
|
|
1157
|
+
},
|
|
1696
1158
|
positionEnd: {
|
|
1697
1159
|
marginRight: "8px"
|
|
1698
1160
|
}
|
|
@@ -1737,7 +1199,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1737
1199
|
},
|
|
1738
1200
|
MuiAutocomplete: {
|
|
1739
1201
|
defaultProps: {
|
|
1740
|
-
clearIcon: /* @__PURE__ */
|
|
1202
|
+
clearIcon: /* @__PURE__ */ jsx(InputCloseIcon, { sx: { width: 24, height: 24 } })
|
|
1741
1203
|
},
|
|
1742
1204
|
styleOverrides: {
|
|
1743
1205
|
inputRoot: {
|
|
@@ -1788,7 +1250,7 @@ var biampTheme = (overrideOptions = {}) => createTheme(
|
|
|
1788
1250
|
}
|
|
1789
1251
|
},
|
|
1790
1252
|
// MUI X DatePicker components
|
|
1791
|
-
// @ts-
|
|
1253
|
+
// @ts-expect-error - MUI X DatePicker component types may not be available
|
|
1792
1254
|
MuiDatePicker: {
|
|
1793
1255
|
defaultProps: {
|
|
1794
1256
|
slots: {
|