@firecms/ui 3.0.0-alpha.50 → 3.0.0-alpha.52
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/components/Chip.d.ts +1 -2
- package/dist/index.es.js +89 -88
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/dist/util/chip_colors.d.ts +3 -0
- package/dist/util/index.d.ts +1 -0
- package/package.json +2 -2
- package/src/components/Chip.tsx +1 -51
- package/src/util/chip_colors.ts +51 -0
- package/src/util/index.ts +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
import { CHIP_COLORS } from "../util";
|
|
2
3
|
export type ChipColorScheme = {
|
|
3
4
|
color: string;
|
|
4
5
|
text: string;
|
|
@@ -14,9 +15,7 @@ export interface ChipProps {
|
|
|
14
15
|
onClick?: () => void;
|
|
15
16
|
icon?: React.ReactNode;
|
|
16
17
|
}
|
|
17
|
-
export declare const CHIP_COLORS: Record<string, ChipColorScheme>;
|
|
18
18
|
/**
|
|
19
19
|
* @group Preview components
|
|
20
20
|
*/
|
|
21
21
|
export declare function Chip({ children, colorScheme, error, outlined, onClick, icon, size, className }: ChipProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export declare function getColorSchemeForKey(key: ChipColorKey): ChipColorScheme;
|
package/dist/index.es.js
CHANGED
|
@@ -34,6 +34,51 @@ function Wn(n, t = 166) {
|
|
|
34
34
|
clearTimeout(r);
|
|
35
35
|
}, i;
|
|
36
36
|
}
|
|
37
|
+
const qn = {
|
|
38
|
+
blueLighter: { color: "#cfdfff", text: "#102046" },
|
|
39
|
+
cyanLighter: { color: "#d0f0fd", text: "#04283f" },
|
|
40
|
+
tealLighter: { color: "#c2f5e9", text: "#012524" },
|
|
41
|
+
greenLighter: { color: "#d1f7c4", text: "#0b1d05" },
|
|
42
|
+
yellowLighter: { color: "#ffeab6", text: "#3b2501" },
|
|
43
|
+
orangeLighter: { color: "#fee2d5", text: "#6b2613" },
|
|
44
|
+
redLighter: { color: "#ffdce5", text: "#4c0c1c" },
|
|
45
|
+
pinkLighter: { color: "#ffdaf6", text: "#400832" },
|
|
46
|
+
purpleLighter: { color: "#ede2fe", text: "#280b42" },
|
|
47
|
+
grayLighter: { color: "#eee", text: "#040404" },
|
|
48
|
+
blueLight: { color: "#9cc7ff", text: "#102046" },
|
|
49
|
+
cyanLight: { color: "#77d1f3", text: "#04283f" },
|
|
50
|
+
tealLight: { color: "#72ddc3", text: "#012524" },
|
|
51
|
+
greenLight: { color: "#93e088", text: "#0b1d05" },
|
|
52
|
+
yellowLight: { color: "#ffd66e", text: "#3b2501" },
|
|
53
|
+
orangeLight: { color: "#ffa981", text: "#6b2613" },
|
|
54
|
+
redLight: { color: "#ff9eb7", text: "#4c0c1c" },
|
|
55
|
+
pinkLight: { color: "#f99de2", text: "#400832" },
|
|
56
|
+
purpleLight: { color: "#cdb0ff", text: "#280b42" },
|
|
57
|
+
grayLight: { color: "#ccc", text: "#040404" },
|
|
58
|
+
blueDark: { color: "#2d7ff9", text: "#fff" },
|
|
59
|
+
cyanDark: { color: "#18bfff", text: "#fff" },
|
|
60
|
+
tealDark: { color: "#20d9d2", text: "#fff" },
|
|
61
|
+
greenDark: { color: "#20c933", text: "#fff" },
|
|
62
|
+
yellowDark: { color: "#fcb400", text: "#fff" },
|
|
63
|
+
orangeDark: { color: "#ff6f2c", text: "#fff" },
|
|
64
|
+
redDark: { color: "#f82b60", text: "#fff" },
|
|
65
|
+
pinkDark: { color: "#ff08c2", text: "#fff" },
|
|
66
|
+
purpleDark: { color: "#8b46ff", text: "#fff" },
|
|
67
|
+
grayDark: { color: "#666", text: "#fff" },
|
|
68
|
+
blueDarker: { color: "#2750ae", text: "#cfdfff" },
|
|
69
|
+
cyanDarker: { color: "#0b76b7", text: "#d0f0fd" },
|
|
70
|
+
tealDarker: { color: "#06a09b", text: "#daf3e9" },
|
|
71
|
+
greenDarker: { color: "#338a17", text: "#d1f7c4" },
|
|
72
|
+
yellowDarker: { color: "#b87503", text: "#ffeab6" },
|
|
73
|
+
orangeDarker: { color: "#d74d26", text: "#fee2d5" },
|
|
74
|
+
redDarker: { color: "#ba1e45", text: "#ffdce5" },
|
|
75
|
+
pinkDarker: { color: "#b2158b", text: "#ffdaf6" },
|
|
76
|
+
purpleDarker: { color: "#6b1cb0", text: "#ede2fe" },
|
|
77
|
+
grayDarker: { color: "#444", text: "#eee" }
|
|
78
|
+
};
|
|
79
|
+
function Vn(n) {
|
|
80
|
+
return qn[n];
|
|
81
|
+
}
|
|
37
82
|
function nn(n, t) {
|
|
38
83
|
M(() => {
|
|
39
84
|
if (!document.getElementById(n)) {
|
|
@@ -57,7 +102,7 @@ function In(n, t, r = !0) {
|
|
|
57
102
|
function Kn(n) {
|
|
58
103
|
return n instanceof HTMLElement ? n.getAttribute("role") === "presentation" ? !0 : Kn(n.parentNode) : !1;
|
|
59
104
|
}
|
|
60
|
-
function
|
|
105
|
+
function jn({
|
|
61
106
|
children: n,
|
|
62
107
|
className: t,
|
|
63
108
|
in: r = !1,
|
|
@@ -127,7 +172,7 @@ function He({
|
|
|
127
172
|
}) {
|
|
128
173
|
const i = w.useRef(null);
|
|
129
174
|
return In(i, () => r(!1)), /* @__PURE__ */ e(
|
|
130
|
-
|
|
175
|
+
jn,
|
|
131
176
|
{
|
|
132
177
|
in: t,
|
|
133
178
|
duration: 50,
|
|
@@ -165,7 +210,7 @@ function We({
|
|
|
165
210
|
}
|
|
166
211
|
);
|
|
167
212
|
}
|
|
168
|
-
const
|
|
213
|
+
const Un = (n) => {
|
|
169
214
|
switch (n) {
|
|
170
215
|
case "error":
|
|
171
216
|
return "bg-red-50 dark:bg-red-800 dark:text-red-100 text-red-900";
|
|
@@ -186,7 +231,7 @@ const Vn = (n) => {
|
|
|
186
231
|
className: a,
|
|
187
232
|
style: c
|
|
188
233
|
}) => {
|
|
189
|
-
const u =
|
|
234
|
+
const u = Un(r);
|
|
190
235
|
return /* @__PURE__ */ p(
|
|
191
236
|
"div",
|
|
192
237
|
{
|
|
@@ -206,7 +251,7 @@ const Vn = (n) => {
|
|
|
206
251
|
]
|
|
207
252
|
}
|
|
208
253
|
);
|
|
209
|
-
},
|
|
254
|
+
}, Gn = ({ src: n, alt: t, children: r, className: i, ...a }, c) => /* @__PURE__ */ e(
|
|
210
255
|
"button",
|
|
211
256
|
{
|
|
212
257
|
ref: c,
|
|
@@ -232,7 +277,7 @@ const Vn = (n) => {
|
|
|
232
277
|
}
|
|
233
278
|
)
|
|
234
279
|
}
|
|
235
|
-
), Ve = w.forwardRef(
|
|
280
|
+
), Ve = w.forwardRef(Gn), Qn = w.forwardRef(
|
|
236
281
|
function({
|
|
237
282
|
value: t,
|
|
238
283
|
allowIndeterminate: r,
|
|
@@ -332,7 +377,7 @@ const Vn = (n) => {
|
|
|
332
377
|
},
|
|
333
378
|
children: [
|
|
334
379
|
/* @__PURE__ */ e(
|
|
335
|
-
|
|
380
|
+
Qn,
|
|
336
381
|
{
|
|
337
382
|
value: t,
|
|
338
383
|
ref: f,
|
|
@@ -351,7 +396,7 @@ const Vn = (n) => {
|
|
|
351
396
|
}
|
|
352
397
|
);
|
|
353
398
|
};
|
|
354
|
-
function
|
|
399
|
+
function $n({
|
|
355
400
|
children: n,
|
|
356
401
|
className: t,
|
|
357
402
|
variant: r = "filled",
|
|
@@ -427,7 +472,7 @@ function Ue({
|
|
|
427
472
|
}
|
|
428
473
|
);
|
|
429
474
|
}
|
|
430
|
-
const
|
|
475
|
+
const Yn = {
|
|
431
476
|
xs: "max-w-xs",
|
|
432
477
|
sm: "max-w-sm",
|
|
433
478
|
md: "max-w-md",
|
|
@@ -439,13 +484,13 @@ const Qn = {
|
|
|
439
484
|
"5xl": "max-w-5xl",
|
|
440
485
|
"6xl": "max-w-6xl",
|
|
441
486
|
"7xl": "max-w-7xl"
|
|
442
|
-
},
|
|
487
|
+
}, Zn = ({
|
|
443
488
|
children: n,
|
|
444
489
|
className: t,
|
|
445
490
|
style: r,
|
|
446
491
|
maxWidth: i = "7xl"
|
|
447
492
|
}, a) => {
|
|
448
|
-
const c = i ?
|
|
493
|
+
const c = i ? Yn[i] : "";
|
|
449
494
|
return /* @__PURE__ */ e(
|
|
450
495
|
"div",
|
|
451
496
|
{
|
|
@@ -459,7 +504,7 @@ const Qn = {
|
|
|
459
504
|
children: n
|
|
460
505
|
}
|
|
461
506
|
);
|
|
462
|
-
},
|
|
507
|
+
}, Xn = w.forwardRef(Zn);
|
|
463
508
|
function Ge({
|
|
464
509
|
children: n,
|
|
465
510
|
maxWidth: t,
|
|
@@ -467,7 +512,7 @@ function Ge({
|
|
|
467
512
|
className: i
|
|
468
513
|
}) {
|
|
469
514
|
return /* @__PURE__ */ e("div", { className: "flex flex-col flex-grow h-full", children: /* @__PURE__ */ e(
|
|
470
|
-
|
|
515
|
+
Xn,
|
|
471
516
|
{
|
|
472
517
|
className: l("m-auto", i),
|
|
473
518
|
maxWidth: t,
|
|
@@ -475,7 +520,7 @@ function Ge({
|
|
|
475
520
|
}
|
|
476
521
|
) });
|
|
477
522
|
}
|
|
478
|
-
function
|
|
523
|
+
function Jn({
|
|
479
524
|
size: n = "medium",
|
|
480
525
|
className: t
|
|
481
526
|
}) {
|
|
@@ -2675,7 +2720,7 @@ const Qe = [
|
|
|
2675
2720
|
"zoom_in_map",
|
|
2676
2721
|
"zoom_out",
|
|
2677
2722
|
"zoom_out_map"
|
|
2678
|
-
],
|
|
2723
|
+
], ne = {
|
|
2679
2724
|
inherit: "",
|
|
2680
2725
|
primary: "text-primary",
|
|
2681
2726
|
success: "text-green-500",
|
|
@@ -2719,7 +2764,7 @@ function o({
|
|
|
2719
2764
|
},
|
|
2720
2765
|
className: l(
|
|
2721
2766
|
"material-icons",
|
|
2722
|
-
r ?
|
|
2767
|
+
r ? ne[r] : "",
|
|
2723
2768
|
"select-none",
|
|
2724
2769
|
i
|
|
2725
2770
|
),
|
|
@@ -2747,7 +2792,7 @@ function Ye(n) {
|
|
|
2747
2792
|
}
|
|
2748
2793
|
);
|
|
2749
2794
|
}
|
|
2750
|
-
function
|
|
2795
|
+
function ee(n) {
|
|
2751
2796
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "search" });
|
|
2752
2797
|
}
|
|
2753
2798
|
function Ze(n) {
|
|
@@ -3719,7 +3764,7 @@ function $a(n) {
|
|
|
3719
3764
|
function Ya(n) {
|
|
3720
3765
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "calculate" });
|
|
3721
3766
|
}
|
|
3722
|
-
function
|
|
3767
|
+
function oe(n) {
|
|
3723
3768
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "calendar_month" });
|
|
3724
3769
|
}
|
|
3725
3770
|
function Za(n) {
|
|
@@ -3890,7 +3935,7 @@ function Zu(n) {
|
|
|
3890
3935
|
function Xu(n) {
|
|
3891
3936
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "chat_bubble_outline" });
|
|
3892
3937
|
}
|
|
3893
|
-
function
|
|
3938
|
+
function te(n) {
|
|
3894
3939
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "check" });
|
|
3895
3940
|
}
|
|
3896
3941
|
function Ju(n) {
|
|
@@ -4745,7 +4790,7 @@ function _y(n) {
|
|
|
4745
4790
|
function dy(n) {
|
|
4746
4791
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "equalizer" });
|
|
4747
4792
|
}
|
|
4748
|
-
function
|
|
4793
|
+
function re(n) {
|
|
4749
4794
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "error" });
|
|
4750
4795
|
}
|
|
4751
4796
|
function fy(n) {
|
|
@@ -9110,11 +9155,11 @@ function cN(n) {
|
|
|
9110
9155
|
function aN(n) {
|
|
9111
9156
|
return /* @__PURE__ */ e(o, { ...n, iconKey: "zoom_out_map" });
|
|
9112
9157
|
}
|
|
9113
|
-
const
|
|
9158
|
+
const ie = {
|
|
9114
9159
|
large: "w-6 h-6 rounded flex items-center justify-center",
|
|
9115
9160
|
medium: "w-5 h-5 rounded flex items-center justify-center",
|
|
9116
9161
|
small: "w-4 h-4 rounded flex items-center justify-center"
|
|
9117
|
-
},
|
|
9162
|
+
}, ce = {
|
|
9118
9163
|
medium: "w-10 h-10",
|
|
9119
9164
|
small: "w-8 h-8",
|
|
9120
9165
|
large: "w-12 h-12"
|
|
@@ -9127,7 +9172,7 @@ const te = {
|
|
|
9127
9172
|
}) => {
|
|
9128
9173
|
const c = t ? !1 : n;
|
|
9129
9174
|
return /* @__PURE__ */ e("div", { className: l(
|
|
9130
|
-
|
|
9175
|
+
ce[i],
|
|
9131
9176
|
"inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",
|
|
9132
9177
|
a ? "rounded-full hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75" : "",
|
|
9133
9178
|
a ? "cursor-pointer" : "cursor-default"
|
|
@@ -9143,7 +9188,7 @@ const te = {
|
|
|
9143
9188
|
{
|
|
9144
9189
|
className: l(
|
|
9145
9190
|
"border-2 relative transition-colors ease-in-out duration-150",
|
|
9146
|
-
|
|
9191
|
+
ie[i],
|
|
9147
9192
|
r ? "bg-gray-400 dark:bg-gray-600" : c ? "bg-primary" : "bg-white dark:bg-gray-900",
|
|
9148
9193
|
c ? "text-gray-100 dark:text-gray-900" : "",
|
|
9149
9194
|
r || c ? "border-transparent" : "border-gray-800 dark:border-gray-200"
|
|
@@ -9153,51 +9198,10 @@ const te = {
|
|
|
9153
9198
|
)
|
|
9154
9199
|
}
|
|
9155
9200
|
) });
|
|
9156
|
-
},
|
|
9201
|
+
}, ae = {
|
|
9157
9202
|
smaller: "px-2 py-0.5 text-sm",
|
|
9158
9203
|
small: "px-3 py-1 text-sm",
|
|
9159
9204
|
medium: "px-4 py-1.5 text-sm"
|
|
9160
|
-
}, ce = {
|
|
9161
|
-
blueLighter: { color: "#cfdfff", text: "#102046" },
|
|
9162
|
-
cyanLighter: { color: "#d0f0fd", text: "#04283f" },
|
|
9163
|
-
tealLighter: { color: "#c2f5e9", text: "#012524" },
|
|
9164
|
-
greenLighter: { color: "#d1f7c4", text: "#0b1d05" },
|
|
9165
|
-
yellowLighter: { color: "#ffeab6", text: "#3b2501" },
|
|
9166
|
-
orangeLighter: { color: "#fee2d5", text: "#6b2613" },
|
|
9167
|
-
redLighter: { color: "#ffdce5", text: "#4c0c1c" },
|
|
9168
|
-
pinkLighter: { color: "#ffdaf6", text: "#400832" },
|
|
9169
|
-
purpleLighter: { color: "#ede2fe", text: "#280b42" },
|
|
9170
|
-
grayLighter: { color: "#eee", text: "#040404" },
|
|
9171
|
-
blueLight: { color: "#9cc7ff", text: "#102046" },
|
|
9172
|
-
cyanLight: { color: "#77d1f3", text: "#04283f" },
|
|
9173
|
-
tealLight: { color: "#72ddc3", text: "#012524" },
|
|
9174
|
-
greenLight: { color: "#93e088", text: "#0b1d05" },
|
|
9175
|
-
yellowLight: { color: "#ffd66e", text: "#3b2501" },
|
|
9176
|
-
orangeLight: { color: "#ffa981", text: "#6b2613" },
|
|
9177
|
-
redLight: { color: "#ff9eb7", text: "#4c0c1c" },
|
|
9178
|
-
pinkLight: { color: "#f99de2", text: "#400832" },
|
|
9179
|
-
purpleLight: { color: "#cdb0ff", text: "#280b42" },
|
|
9180
|
-
grayLight: { color: "#ccc", text: "#040404" },
|
|
9181
|
-
blueDark: { color: "#2d7ff9", text: "#fff" },
|
|
9182
|
-
cyanDark: { color: "#18bfff", text: "#fff" },
|
|
9183
|
-
tealDark: { color: "#20d9d2", text: "#fff" },
|
|
9184
|
-
greenDark: { color: "#20c933", text: "#fff" },
|
|
9185
|
-
yellowDark: { color: "#fcb400", text: "#fff" },
|
|
9186
|
-
orangeDark: { color: "#ff6f2c", text: "#fff" },
|
|
9187
|
-
redDark: { color: "#f82b60", text: "#fff" },
|
|
9188
|
-
pinkDark: { color: "#ff08c2", text: "#fff" },
|
|
9189
|
-
purpleDark: { color: "#8b46ff", text: "#fff" },
|
|
9190
|
-
grayDark: { color: "#666", text: "#fff" },
|
|
9191
|
-
blueDarker: { color: "#2750ae", text: "#cfdfff" },
|
|
9192
|
-
cyanDarker: { color: "#0b76b7", text: "#d0f0fd" },
|
|
9193
|
-
tealDarker: { color: "#06a09b", text: "#daf3e9" },
|
|
9194
|
-
greenDarker: { color: "#338a17", text: "#d1f7c4" },
|
|
9195
|
-
yellowDarker: { color: "#b87503", text: "#ffeab6" },
|
|
9196
|
-
orangeDarker: { color: "#d74d26", text: "#fee2d5" },
|
|
9197
|
-
redDarker: { color: "#ba1e45", text: "#ffdce5" },
|
|
9198
|
-
pinkDarker: { color: "#b2158b", text: "#ffdaf6" },
|
|
9199
|
-
purpleDarker: { color: "#6b1cb0", text: "#ede2fe" },
|
|
9200
|
-
grayDarker: { color: "#444", text: "#eee" }
|
|
9201
9205
|
};
|
|
9202
9206
|
function lN({
|
|
9203
9207
|
children: n,
|
|
@@ -9209,7 +9213,7 @@ function lN({
|
|
|
9209
9213
|
size: u = "medium",
|
|
9210
9214
|
className: s
|
|
9211
9215
|
}) {
|
|
9212
|
-
const _ = typeof t == "string" ?
|
|
9216
|
+
const _ = typeof t == "string" ? Vn(t) : t;
|
|
9213
9217
|
return /* @__PURE__ */ p(
|
|
9214
9218
|
"div",
|
|
9215
9219
|
{
|
|
@@ -9217,7 +9221,7 @@ function lN({
|
|
|
9217
9221
|
"rounded-lg w-fit h-fit font-regular inline-flex items-center gap-1",
|
|
9218
9222
|
"truncate",
|
|
9219
9223
|
a ? "cursor-pointer hover:bg-gray-300 hover:dark:bg-gray-700" : "",
|
|
9220
|
-
|
|
9224
|
+
ae[u],
|
|
9221
9225
|
r || !_ ? "bg-gray-100 dark:bg-gray-800 text-gray-800 dark:text-gray-200" : "",
|
|
9222
9226
|
r ? "text-red-500 dark:text-red-400" : "",
|
|
9223
9227
|
s
|
|
@@ -9234,9 +9238,6 @@ function lN({
|
|
|
9234
9238
|
}
|
|
9235
9239
|
);
|
|
9236
9240
|
}
|
|
9237
|
-
function ae(n) {
|
|
9238
|
-
return ce[n];
|
|
9239
|
-
}
|
|
9240
9241
|
const ue = "hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75", le = "inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150", se = "dark:text-gray-100 text-gray-700 visited:text-gray-700 dark:visited:text-gray-100", _e = {
|
|
9241
9242
|
medium: "w-10 !h-10 min-w-10 min-h-10",
|
|
9242
9243
|
small: "w-8 !h-8 min-w-8 min-h-8",
|
|
@@ -9458,7 +9459,7 @@ const sN = ({
|
|
|
9458
9459
|
{
|
|
9459
9460
|
onClick: () => b.current?.setOpen(!0),
|
|
9460
9461
|
className: "absolute right-3 top-1/2 transform -translate-y-1/2 !text-gray-500 ",
|
|
9461
|
-
children: /* @__PURE__ */ e(
|
|
9462
|
+
children: /* @__PURE__ */ e(oe, { color: "disabled" })
|
|
9462
9463
|
}
|
|
9463
9464
|
),
|
|
9464
9465
|
a && n && /* @__PURE__ */ e(
|
|
@@ -9477,7 +9478,7 @@ const sN = ({
|
|
|
9477
9478
|
{
|
|
9478
9479
|
className: "flex items-center m-2",
|
|
9479
9480
|
children: [
|
|
9480
|
-
/* @__PURE__ */ e(
|
|
9481
|
+
/* @__PURE__ */ e(re, { size: "small", color: "error" }),
|
|
9481
9482
|
/* @__PURE__ */ p("div", { className: "pl-2", children: [
|
|
9482
9483
|
/* @__PURE__ */ e(
|
|
9483
9484
|
rn,
|
|
@@ -10640,14 +10641,14 @@ function hN({
|
|
|
10640
10641
|
...c
|
|
10641
10642
|
}) {
|
|
10642
10643
|
return /* @__PURE__ */ p(
|
|
10643
|
-
|
|
10644
|
+
$n,
|
|
10644
10645
|
{
|
|
10645
10646
|
disabled: t || r,
|
|
10646
10647
|
onClick: i,
|
|
10647
10648
|
component: c.component,
|
|
10648
10649
|
...c,
|
|
10649
10650
|
children: [
|
|
10650
|
-
t && /* @__PURE__ */ e(
|
|
10651
|
+
t && /* @__PURE__ */ e(Jn, { size: "small" }),
|
|
10651
10652
|
!t && a,
|
|
10652
10653
|
n
|
|
10653
10654
|
]
|
|
@@ -11056,7 +11057,7 @@ function vN({
|
|
|
11056
11057
|
"div",
|
|
11057
11058
|
{
|
|
11058
11059
|
className: "absolute left-1 data-[state=checked]:block hidden",
|
|
11059
|
-
children: /* @__PURE__ */ e(
|
|
11060
|
+
children: /* @__PURE__ */ e(te, { size: 16 })
|
|
11060
11061
|
}
|
|
11061
11062
|
)
|
|
11062
11063
|
]
|
|
@@ -11110,7 +11111,7 @@ function SN({
|
|
|
11110
11111
|
"div",
|
|
11111
11112
|
{
|
|
11112
11113
|
className: "absolute p-0 px-4 h-full absolute pointer-events-none flex items-center justify-center top-0",
|
|
11113
|
-
children: /* @__PURE__ */ e(
|
|
11114
|
+
children: /* @__PURE__ */ e(ee, { className: "text-gray-500" })
|
|
11114
11115
|
}
|
|
11115
11116
|
),
|
|
11116
11117
|
/* @__PURE__ */ e(
|
|
@@ -12117,7 +12118,7 @@ export {
|
|
|
12117
12118
|
Zc as BookmarkIcon,
|
|
12118
12119
|
ea as BookmarkRemoveIcon,
|
|
12119
12120
|
oa as BookmarksIcon,
|
|
12120
|
-
|
|
12121
|
+
Qn as BooleanSwitch,
|
|
12121
12122
|
je as BooleanSwitchWithLabel,
|
|
12122
12123
|
ta as BorderAllIcon,
|
|
12123
12124
|
ra as BorderBottomIcon,
|
|
@@ -12162,14 +12163,14 @@ export {
|
|
|
12162
12163
|
qa as BusAlertIcon,
|
|
12163
12164
|
ja as BusinessCenterIcon,
|
|
12164
12165
|
Va as BusinessIcon,
|
|
12165
|
-
|
|
12166
|
-
|
|
12166
|
+
$n as Button,
|
|
12167
|
+
qn as CHIP_COLORS,
|
|
12167
12168
|
Ua as CabinIcon,
|
|
12168
12169
|
Ga as CableIcon,
|
|
12169
12170
|
Qa as CachedIcon,
|
|
12170
12171
|
$a as CakeIcon,
|
|
12171
12172
|
Ya as CalculateIcon,
|
|
12172
|
-
|
|
12173
|
+
oe as CalendarMonthIcon,
|
|
12173
12174
|
Za as CalendarTodayIcon,
|
|
12174
12175
|
Xa as CalendarViewDayIcon,
|
|
12175
12176
|
Ja as CalendarViewMonthIcon,
|
|
@@ -12232,7 +12233,7 @@ export {
|
|
|
12232
12233
|
nl as CheckBoxOutlineBlankIcon,
|
|
12233
12234
|
el as CheckCircleIcon,
|
|
12234
12235
|
ol as CheckCircleOutlineIcon,
|
|
12235
|
-
|
|
12236
|
+
te as CheckIcon,
|
|
12236
12237
|
uN as Checkbox,
|
|
12237
12238
|
tl as ChecklistIcon,
|
|
12238
12239
|
rl as ChecklistRtlIcon,
|
|
@@ -12246,7 +12247,7 @@ export {
|
|
|
12246
12247
|
_l as ChurchIcon,
|
|
12247
12248
|
dl as CircleIcon,
|
|
12248
12249
|
fl as CircleNotificationsIcon,
|
|
12249
|
-
|
|
12250
|
+
Jn as CircularProgress,
|
|
12250
12251
|
yl as ClassIcon,
|
|
12251
12252
|
pl as CleanHandsIcon,
|
|
12252
12253
|
ml as CleaningServicesIcon,
|
|
@@ -12271,7 +12272,7 @@ export {
|
|
|
12271
12272
|
Nl as CodeOffIcon,
|
|
12272
12273
|
Tl as CoffeeIcon,
|
|
12273
12274
|
Ll as CoffeeMakerIcon,
|
|
12274
|
-
|
|
12275
|
+
jn as Collapse,
|
|
12275
12276
|
Ol as CollectionsBookmarkIcon,
|
|
12276
12277
|
Ml as CollectionsIcon,
|
|
12277
12278
|
El as ColorLensIcon,
|
|
@@ -12299,7 +12300,7 @@ export {
|
|
|
12299
12300
|
as as ContactSupportIcon,
|
|
12300
12301
|
us as ContactlessIcon,
|
|
12301
12302
|
ls as ContactsIcon,
|
|
12302
|
-
|
|
12303
|
+
Xn as Container,
|
|
12303
12304
|
ss as ContentCopyIcon,
|
|
12304
12305
|
_s as ContentCutIcon,
|
|
12305
12306
|
fs as ContentPasteGoIcon,
|
|
@@ -12523,7 +12524,7 @@ export {
|
|
|
12523
12524
|
sy as EngineeringIcon,
|
|
12524
12525
|
_y as EnhancedEncryptionIcon,
|
|
12525
12526
|
dy as EqualizerIcon,
|
|
12526
|
-
|
|
12527
|
+
re as ErrorIcon,
|
|
12527
12528
|
fy as ErrorOutlineIcon,
|
|
12528
12529
|
yy as EscalatorIcon,
|
|
12529
12530
|
py as EscalatorWarningIcon,
|
|
@@ -13493,7 +13494,7 @@ export {
|
|
|
13493
13494
|
WA as SdIcon,
|
|
13494
13495
|
jA as SdStorageIcon,
|
|
13495
13496
|
SN as SearchBar,
|
|
13496
|
-
|
|
13497
|
+
ee as SearchIcon,
|
|
13497
13498
|
UA as SearchOffIcon,
|
|
13498
13499
|
GA as SecurityIcon,
|
|
13499
13500
|
$A as SecurityUpdateGoodIcon,
|
|
@@ -14084,7 +14085,7 @@ export {
|
|
|
14084
14085
|
yn as focusedClasses,
|
|
14085
14086
|
fn as focusedInvisibleMixin,
|
|
14086
14087
|
A as focusedMixin,
|
|
14087
|
-
|
|
14088
|
+
Vn as getColorSchemeForKey,
|
|
14088
14089
|
$e as iconKeys,
|
|
14089
14090
|
j as paperMixin,
|
|
14090
14091
|
ze as useAutoComplete,
|