@snmt-react-ui/async-select 1.4.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AsyncSelect.d.ts +4 -1
- package/dist/async-select.js +723 -689
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/async-select.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./index.css";
|
|
2
|
-
import { jsx as t,
|
|
3
|
-
import { createContext as
|
|
4
|
-
import { Select as
|
|
5
|
-
const
|
|
2
|
+
import { jsx as t, Fragment as I, jsxs as c } from "react/jsx-runtime";
|
|
3
|
+
import { createContext as z, forwardRef as q, useState as u, useRef as r1, useEffect as E, useCallback as x, useContext as o1, useImperativeHandle as u1 } from "react";
|
|
4
|
+
import { Select as v1, Flex as N1, Avatar as f1, Checkbox as M1, Typography as s1, Tag as n1, Popover as x1 } from "antd";
|
|
5
|
+
const $ = ({
|
|
6
6
|
children: i,
|
|
7
7
|
direction: o = "row",
|
|
8
8
|
flexWrap: e = "nowrap",
|
|
@@ -10,9 +10,9 @@ const K = ({
|
|
|
10
10
|
justifyContent: r = "normal",
|
|
11
11
|
flex: w,
|
|
12
12
|
gap: g,
|
|
13
|
-
padding:
|
|
13
|
+
padding: s
|
|
14
14
|
}) => /* @__PURE__ */ t(
|
|
15
|
-
|
|
15
|
+
N1,
|
|
16
16
|
{
|
|
17
17
|
className: `snmt-flex${e === "inherit" ? " inherit" : ""}`,
|
|
18
18
|
vertical: o === "column",
|
|
@@ -21,13 +21,13 @@ const K = ({
|
|
|
21
21
|
justify: r,
|
|
22
22
|
flex: w,
|
|
23
23
|
gap: g,
|
|
24
|
-
style: { padding:
|
|
24
|
+
style: { padding: s },
|
|
25
25
|
children: i
|
|
26
26
|
}
|
|
27
|
-
),
|
|
27
|
+
), _1 = ({ shape: i = "circle", size: o = 32, children: e, ...l }) => {
|
|
28
28
|
const r = typeof l.src == "string";
|
|
29
29
|
return /* @__PURE__ */ t(
|
|
30
|
-
|
|
30
|
+
f1,
|
|
31
31
|
{
|
|
32
32
|
className: `snmt-avatar ${r ? "image" : ""}`,
|
|
33
33
|
shape: i,
|
|
@@ -38,13 +38,13 @@ const K = ({
|
|
|
38
38
|
}
|
|
39
39
|
);
|
|
40
40
|
};
|
|
41
|
-
var
|
|
42
|
-
const
|
|
41
|
+
var W = /* @__PURE__ */ ((i) => (i.GREY_LIGHT_0 = "var(--grey-light-0)", i.GREY_LIGHT_1 = "var(--grey-light-1)", i.GREY_LIGHT_2 = "var(--grey-light-2)", i.GREY_LIGHT_3 = "var(--grey-light-3)", i.GREY_LIGHT_4 = "var(--grey-light-4)", i.GREY_DARK_1 = "var(--grey-dark-1)", i.GREY_DARK_2 = "var(--grey-dark-2)", i.GREY_DARK_3 = "var(--grey-dark-3)", i.GREY_DARK_4 = "var(--grey-dark-4)", i.GREY_DARK_5 = "var(--grey-dark-5)", i.BLUE_PRIMARY = "var(--blue-primary)", i.BLUE_HOVER = "var(--blue-hover)", i.BLUE_LIGHT_1 = "var(--blue-light-1)", i.BLUE_LIGHT_2 = "var(--blue-light-2)", i.BLUE_LIGHT_3 = "var(--blue-light-3)", i.BLUE_LIGHT_4 = "var(--blue-light-4)", i.BLUE_DARK_1 = "var(--blue-dark-1)", i.PURPLE_LIGHT = "var(--purple-light)", i.PURPLE_DARK = "var(--purple-dark)", i.NOTIFICATION_WARNING_LIGHT = "var(--notification-warning-light)", i.NOTIFICATION_WARNING_DARK = "var(--notification-warning-dark)", i.NOTIFICATION_SUCCESS_LIGHT = "var(--notification-success-light)", i.NOTIFICATION_SUCCESS_DARK = "var(--notification-success-dark)", i.NOTIFICATION_ERROR_LIGHT = "var(--notification-error-light)", i.NOTIFICATION_ERROR_DARK = "var(--notification-error-dark)", i.NOTIFICATION_ERROR_DARK_MODE = "var(--notification-error-dark-mode)", i))(W || {});
|
|
42
|
+
const h1 = z({
|
|
43
43
|
locale: "en",
|
|
44
44
|
theme: "light"
|
|
45
45
|
});
|
|
46
|
-
|
|
47
|
-
const
|
|
46
|
+
h1.Provider;
|
|
47
|
+
const R1 = ({
|
|
48
48
|
checked: i = !0,
|
|
49
49
|
indeterminate: o = !1,
|
|
50
50
|
children: e,
|
|
@@ -52,32 +52,32 @@ const N1 = ({
|
|
|
52
52
|
disabled: r = !1,
|
|
53
53
|
disableUncheck: w = !1
|
|
54
54
|
}) => {
|
|
55
|
-
const [g,
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
const [g, s] = u(i), [p, k] = u(o);
|
|
56
|
+
E(() => {
|
|
57
|
+
s(i), k(o);
|
|
58
58
|
}, [i, o]);
|
|
59
|
-
const { theme:
|
|
59
|
+
const { theme: n } = o1(h1);
|
|
60
60
|
return /* @__PURE__ */ t(
|
|
61
|
-
|
|
61
|
+
M1,
|
|
62
62
|
{
|
|
63
|
-
className: `snmt-checkbox snmt-checkbox-${
|
|
63
|
+
className: `snmt-checkbox snmt-checkbox-${n}`,
|
|
64
64
|
checked: g,
|
|
65
65
|
indeterminate: p,
|
|
66
66
|
onChange: (h) => {
|
|
67
|
-
w && g || (k(!1),
|
|
67
|
+
w && g || (k(!1), s(h.target.checked), l && l(h));
|
|
68
68
|
},
|
|
69
69
|
disabled: r,
|
|
70
70
|
children: e
|
|
71
71
|
}
|
|
72
72
|
);
|
|
73
73
|
};
|
|
74
|
-
var
|
|
75
|
-
const
|
|
74
|
+
var d = /* @__PURE__ */ ((i) => (i.GREY_LIGHT_0 = "var(--grey-light-0)", i.GREY_LIGHT_1 = "var(--grey-light-1)", i.GREY_LIGHT_2 = "var(--grey-light-2)", i.GREY_LIGHT_3 = "var(--grey-light-3)", i.GREY_LIGHT_4 = "var(--grey-light-4)", i.GREY_DARK_1 = "var(--grey-dark-1)", i.GREY_DARK_2 = "var(--grey-dark-2)", i.GREY_DARK_3 = "var(--grey-dark-3)", i.GREY_DARK_4 = "var(--grey-dark-4)", i.GREY_DARK_5 = "var(--grey-dark-5)", i.BLUE_PRIMARY = "var(--blue-primary)", i.BLUE_HOVER = "var(--blue-hover)", i.BLUE_LIGHT_1 = "var(--blue-light-1)", i.BLUE_LIGHT_2 = "var(--blue-light-2)", i.BLUE_LIGHT_3 = "var(--blue-light-3)", i.BLUE_LIGHT_4 = "var(--blue-light-4)", i.BLUE_DARK_1 = "var(--blue-dark-1)", i.PURPLE_LIGHT = "var(--purple-light)", i.PURPLE_DARK = "var(--purple-dark)", i.NOTIFICATION_WARNING_LIGHT = "var(--notification-warning-light)", i.NOTIFICATION_WARNING_DARK = "var(--notification-warning-dark)", i.NOTIFICATION_SUCCESS_LIGHT = "var(--notification-success-light)", i.NOTIFICATION_SUCCESS_DARK = "var(--notification-success-dark)", i.NOTIFICATION_ERROR_LIGHT = "var(--notification-error-light)", i.NOTIFICATION_ERROR_DARK = "var(--notification-error-dark)", i.NOTIFICATION_ERROR_DARK_MODE = "var(--notification-error-dark-mode)", i))(d || {});
|
|
75
|
+
const c1 = z({
|
|
76
76
|
locale: "en",
|
|
77
77
|
theme: "light"
|
|
78
78
|
});
|
|
79
|
-
|
|
80
|
-
const
|
|
79
|
+
c1.Provider;
|
|
80
|
+
const H1 = ({
|
|
81
81
|
width: i = 20,
|
|
82
82
|
height: o = 20,
|
|
83
83
|
color: e = "#001E52",
|
|
@@ -104,7 +104,7 @@ const f1 = ({
|
|
|
104
104
|
}
|
|
105
105
|
)
|
|
106
106
|
}
|
|
107
|
-
),
|
|
107
|
+
), V1 = ({
|
|
108
108
|
width: i = 20,
|
|
109
109
|
height: o = 20,
|
|
110
110
|
color: e = "#001E52",
|
|
@@ -131,7 +131,7 @@ const f1 = ({
|
|
|
131
131
|
}
|
|
132
132
|
)
|
|
133
133
|
}
|
|
134
|
-
),
|
|
134
|
+
), E1 = ({
|
|
135
135
|
width: i = 16,
|
|
136
136
|
height: o = 16,
|
|
137
137
|
color: e = "#001E52",
|
|
@@ -159,7 +159,7 @@ const f1 = ({
|
|
|
159
159
|
)
|
|
160
160
|
]
|
|
161
161
|
}
|
|
162
|
-
),
|
|
162
|
+
), Z1 = ({
|
|
163
163
|
width: i = 20,
|
|
164
164
|
height: o = 20,
|
|
165
165
|
color: e = "#001E52",
|
|
@@ -194,7 +194,7 @@ const f1 = ({
|
|
|
194
194
|
)
|
|
195
195
|
]
|
|
196
196
|
}
|
|
197
|
-
),
|
|
197
|
+
), W1 = ({
|
|
198
198
|
width: i = 18,
|
|
199
199
|
height: o = 18,
|
|
200
200
|
color: e = "#001E52",
|
|
@@ -233,7 +233,7 @@ const f1 = ({
|
|
|
233
233
|
)
|
|
234
234
|
]
|
|
235
235
|
}
|
|
236
|
-
),
|
|
236
|
+
), I1 = ({
|
|
237
237
|
width: i = 20,
|
|
238
238
|
height: o = 20,
|
|
239
239
|
color: e = "#001E52",
|
|
@@ -259,7 +259,7 @@ const f1 = ({
|
|
|
259
259
|
}
|
|
260
260
|
)
|
|
261
261
|
}
|
|
262
|
-
),
|
|
262
|
+
), B1 = ({
|
|
263
263
|
width: i = 20,
|
|
264
264
|
height: o = 20,
|
|
265
265
|
color: e = "#001E52",
|
|
@@ -280,7 +280,7 @@ const f1 = ({
|
|
|
280
280
|
/* @__PURE__ */ t("path", { d: "M16 4L4 16", stroke: e, strokeWidth: "1.5", strokeLinecap: "round" })
|
|
281
281
|
]
|
|
282
282
|
}
|
|
283
|
-
),
|
|
283
|
+
), A1 = ({
|
|
284
284
|
width: i = 20,
|
|
285
285
|
height: o = 20,
|
|
286
286
|
color: e = "#001E52",
|
|
@@ -312,7 +312,7 @@ const f1 = ({
|
|
|
312
312
|
)
|
|
313
313
|
]
|
|
314
314
|
}
|
|
315
|
-
),
|
|
315
|
+
), G1 = ({
|
|
316
316
|
width: i = 20,
|
|
317
317
|
height: o = 20,
|
|
318
318
|
color: e = "#001E52",
|
|
@@ -366,7 +366,7 @@ const f1 = ({
|
|
|
366
366
|
)
|
|
367
367
|
]
|
|
368
368
|
}
|
|
369
|
-
),
|
|
369
|
+
), D1 = ({
|
|
370
370
|
width: i = 20,
|
|
371
371
|
height: o = 20,
|
|
372
372
|
color: e = "#001E52",
|
|
@@ -405,7 +405,7 @@ const f1 = ({
|
|
|
405
405
|
/* @__PURE__ */ t("path", { d: "M3 12L17 12", stroke: e, strokeWidth: "2", strokeLinecap: "round" })
|
|
406
406
|
]
|
|
407
407
|
}
|
|
408
|
-
),
|
|
408
|
+
), j1 = ({
|
|
409
409
|
width: i = 16,
|
|
410
410
|
height: o = 12,
|
|
411
411
|
color: e = "#001E52",
|
|
@@ -454,7 +454,7 @@ const f1 = ({
|
|
|
454
454
|
)
|
|
455
455
|
] })
|
|
456
456
|
}
|
|
457
|
-
),
|
|
457
|
+
), T1 = ({
|
|
458
458
|
width: i = 16,
|
|
459
459
|
height: o = 16,
|
|
460
460
|
color: e = "#001E52",
|
|
@@ -488,7 +488,7 @@ const f1 = ({
|
|
|
488
488
|
)
|
|
489
489
|
]
|
|
490
490
|
}
|
|
491
|
-
),
|
|
491
|
+
), y1 = ({
|
|
492
492
|
width: i = 10,
|
|
493
493
|
height: o = 10,
|
|
494
494
|
color: e = "#001E52",
|
|
@@ -527,7 +527,7 @@ const f1 = ({
|
|
|
527
527
|
)
|
|
528
528
|
] })
|
|
529
529
|
}
|
|
530
|
-
),
|
|
530
|
+
), Y1 = ({
|
|
531
531
|
width: i = 16,
|
|
532
532
|
height: o = 16,
|
|
533
533
|
color: e = "#001E52",
|
|
@@ -563,7 +563,7 @@ const f1 = ({
|
|
|
563
563
|
)
|
|
564
564
|
]
|
|
565
565
|
}
|
|
566
|
-
),
|
|
566
|
+
), K1 = ({
|
|
567
567
|
width: i = 11,
|
|
568
568
|
height: o = 32,
|
|
569
569
|
color: e = "#001E52",
|
|
@@ -601,7 +601,7 @@ const f1 = ({
|
|
|
601
601
|
/* @__PURE__ */ t("circle", { cx: "3", cy: "3", r: "3", fill: e })
|
|
602
602
|
]
|
|
603
603
|
}
|
|
604
|
-
),
|
|
604
|
+
), O1 = ({
|
|
605
605
|
width: i = 20,
|
|
606
606
|
height: o = 20,
|
|
607
607
|
color: e = "#001E52",
|
|
@@ -648,7 +648,7 @@ const f1 = ({
|
|
|
648
648
|
)
|
|
649
649
|
]
|
|
650
650
|
}
|
|
651
|
-
),
|
|
651
|
+
), b1 = ({
|
|
652
652
|
width: i = 20,
|
|
653
653
|
height: o = 20,
|
|
654
654
|
color: e = "#001E52",
|
|
@@ -681,7 +681,7 @@ const f1 = ({
|
|
|
681
681
|
)
|
|
682
682
|
]
|
|
683
683
|
}
|
|
684
|
-
),
|
|
684
|
+
), F1 = ({
|
|
685
685
|
width: i = 20,
|
|
686
686
|
height: o = 20,
|
|
687
687
|
color: e = "#001E52",
|
|
@@ -728,7 +728,7 @@ const f1 = ({
|
|
|
728
728
|
)
|
|
729
729
|
]
|
|
730
730
|
}
|
|
731
|
-
),
|
|
731
|
+
), S1 = ({
|
|
732
732
|
width: i = 20,
|
|
733
733
|
height: o = 20,
|
|
734
734
|
color: e = "#001E52",
|
|
@@ -761,7 +761,7 @@ const f1 = ({
|
|
|
761
761
|
)
|
|
762
762
|
]
|
|
763
763
|
}
|
|
764
|
-
),
|
|
764
|
+
), U1 = ({
|
|
765
765
|
width: i = 18,
|
|
766
766
|
height: o = 16,
|
|
767
767
|
color: e = "#001E52",
|
|
@@ -800,7 +800,7 @@ const f1 = ({
|
|
|
800
800
|
)
|
|
801
801
|
]
|
|
802
802
|
}
|
|
803
|
-
),
|
|
803
|
+
), P1 = ({
|
|
804
804
|
width: i = 20,
|
|
805
805
|
height: o = 20,
|
|
806
806
|
color: e = "#001E52",
|
|
@@ -833,7 +833,7 @@ const f1 = ({
|
|
|
833
833
|
)
|
|
834
834
|
]
|
|
835
835
|
}
|
|
836
|
-
),
|
|
836
|
+
), $1 = ({
|
|
837
837
|
width: i = 20,
|
|
838
838
|
height: o = 20,
|
|
839
839
|
color: e = "#001E52",
|
|
@@ -857,7 +857,7 @@ const f1 = ({
|
|
|
857
857
|
}
|
|
858
858
|
)
|
|
859
859
|
}
|
|
860
|
-
),
|
|
860
|
+
), z1 = ({
|
|
861
861
|
width: i = 20,
|
|
862
862
|
height: o = 20,
|
|
863
863
|
color: e = "#001E52",
|
|
@@ -904,7 +904,7 @@ const f1 = ({
|
|
|
904
904
|
)
|
|
905
905
|
]
|
|
906
906
|
}
|
|
907
|
-
),
|
|
907
|
+
), q1 = ({
|
|
908
908
|
width: i = 20,
|
|
909
909
|
height: o = 20,
|
|
910
910
|
color: e = "#001E52",
|
|
@@ -937,7 +937,7 @@ const f1 = ({
|
|
|
937
937
|
)
|
|
938
938
|
]
|
|
939
939
|
}
|
|
940
|
-
),
|
|
940
|
+
), J1 = ({
|
|
941
941
|
width: i = 20,
|
|
942
942
|
height: o = 20,
|
|
943
943
|
color: e = "#001E52",
|
|
@@ -970,7 +970,7 @@ const f1 = ({
|
|
|
970
970
|
)
|
|
971
971
|
]
|
|
972
972
|
}
|
|
973
|
-
),
|
|
973
|
+
), Q1 = ({
|
|
974
974
|
width: i = 20,
|
|
975
975
|
height: o = 23,
|
|
976
976
|
color: e = "#001E52",
|
|
@@ -1031,7 +1031,7 @@ const f1 = ({
|
|
|
1031
1031
|
)
|
|
1032
1032
|
]
|
|
1033
1033
|
}
|
|
1034
|
-
),
|
|
1034
|
+
), X1 = ({
|
|
1035
1035
|
width: i = 20,
|
|
1036
1036
|
height: o = 20,
|
|
1037
1037
|
color: e = "#001E52",
|
|
@@ -1071,7 +1071,7 @@ const f1 = ({
|
|
|
1071
1071
|
)
|
|
1072
1072
|
]
|
|
1073
1073
|
}
|
|
1074
|
-
),
|
|
1074
|
+
), e2 = ({
|
|
1075
1075
|
width: i = 32,
|
|
1076
1076
|
height: o = 25,
|
|
1077
1077
|
color: e = "#001E52",
|
|
@@ -1099,7 +1099,7 @@ const f1 = ({
|
|
|
1099
1099
|
)
|
|
1100
1100
|
]
|
|
1101
1101
|
}
|
|
1102
|
-
),
|
|
1102
|
+
), o2 = ({
|
|
1103
1103
|
width: i = 14,
|
|
1104
1104
|
height: o = 14,
|
|
1105
1105
|
color: e = "#10B981",
|
|
@@ -1128,7 +1128,7 @@ const f1 = ({
|
|
|
1128
1128
|
)
|
|
1129
1129
|
]
|
|
1130
1130
|
}
|
|
1131
|
-
),
|
|
1131
|
+
), i2 = ({
|
|
1132
1132
|
width: i = 11,
|
|
1133
1133
|
height: o = 11,
|
|
1134
1134
|
color: e = "#FFB020",
|
|
@@ -1162,7 +1162,7 @@ const f1 = ({
|
|
|
1162
1162
|
)
|
|
1163
1163
|
]
|
|
1164
1164
|
}
|
|
1165
|
-
),
|
|
1165
|
+
), t2 = ({
|
|
1166
1166
|
width: i = 10,
|
|
1167
1167
|
height: o = 10,
|
|
1168
1168
|
color: e = "#88A4FF",
|
|
@@ -1210,7 +1210,7 @@ const f1 = ({
|
|
|
1210
1210
|
)
|
|
1211
1211
|
]
|
|
1212
1212
|
}
|
|
1213
|
-
),
|
|
1213
|
+
), l2 = ({
|
|
1214
1214
|
width: i = 14,
|
|
1215
1215
|
height: o = 14,
|
|
1216
1216
|
color: e = "#8E8E93",
|
|
@@ -1238,7 +1238,7 @@ const f1 = ({
|
|
|
1238
1238
|
)
|
|
1239
1239
|
]
|
|
1240
1240
|
}
|
|
1241
|
-
),
|
|
1241
|
+
), r2 = ({
|
|
1242
1242
|
width: i = 14,
|
|
1243
1243
|
height: o = 14,
|
|
1244
1244
|
color: e = "#FFB020",
|
|
@@ -1272,7 +1272,7 @@ const f1 = ({
|
|
|
1272
1272
|
)
|
|
1273
1273
|
]
|
|
1274
1274
|
}
|
|
1275
|
-
),
|
|
1275
|
+
), s2 = ({
|
|
1276
1276
|
width: i = 14,
|
|
1277
1277
|
height: o = 14,
|
|
1278
1278
|
color: e = "#D0421B",
|
|
@@ -1320,7 +1320,7 @@ const f1 = ({
|
|
|
1320
1320
|
)
|
|
1321
1321
|
]
|
|
1322
1322
|
}
|
|
1323
|
-
),
|
|
1323
|
+
), n2 = ({
|
|
1324
1324
|
width: i = 20,
|
|
1325
1325
|
height: o = 20,
|
|
1326
1326
|
color: e = "#070739",
|
|
@@ -1350,7 +1350,7 @@ const f1 = ({
|
|
|
1350
1350
|
/* @__PURE__ */ t("circle", { cx: "10", cy: "10", r: "2.375", stroke: e, strokeWidth: "1.25" })
|
|
1351
1351
|
]
|
|
1352
1352
|
}
|
|
1353
|
-
),
|
|
1353
|
+
), h2 = ({
|
|
1354
1354
|
width: i = 20,
|
|
1355
1355
|
height: o = 20,
|
|
1356
1356
|
color: e = "#070739",
|
|
@@ -1388,7 +1388,7 @@ const f1 = ({
|
|
|
1388
1388
|
)
|
|
1389
1389
|
]
|
|
1390
1390
|
}
|
|
1391
|
-
),
|
|
1391
|
+
), c2 = ({
|
|
1392
1392
|
width: i = 9,
|
|
1393
1393
|
height: o = 5,
|
|
1394
1394
|
color: e = "#001E52",
|
|
@@ -1414,7 +1414,7 @@ const f1 = ({
|
|
|
1414
1414
|
}
|
|
1415
1415
|
)
|
|
1416
1416
|
}
|
|
1417
|
-
),
|
|
1417
|
+
), a2 = ({
|
|
1418
1418
|
width: i = 20,
|
|
1419
1419
|
height: o = 20,
|
|
1420
1420
|
color: e = "#F2F2F7",
|
|
@@ -1443,7 +1443,7 @@ const f1 = ({
|
|
|
1443
1443
|
)
|
|
1444
1444
|
]
|
|
1445
1445
|
}
|
|
1446
|
-
),
|
|
1446
|
+
), d2 = ({
|
|
1447
1447
|
width: i = 20,
|
|
1448
1448
|
height: o = 20,
|
|
1449
1449
|
color: e = "#004ED7",
|
|
@@ -1472,7 +1472,7 @@ const f1 = ({
|
|
|
1472
1472
|
)
|
|
1473
1473
|
]
|
|
1474
1474
|
}
|
|
1475
|
-
),
|
|
1475
|
+
), C2 = ({
|
|
1476
1476
|
width: i = 248,
|
|
1477
1477
|
height: o = 248,
|
|
1478
1478
|
color: e = "#070739",
|
|
@@ -1509,7 +1509,7 @@ const f1 = ({
|
|
|
1509
1509
|
)
|
|
1510
1510
|
]
|
|
1511
1511
|
}
|
|
1512
|
-
),
|
|
1512
|
+
), w2 = ({
|
|
1513
1513
|
width: i = 24,
|
|
1514
1514
|
height: o = 24,
|
|
1515
1515
|
color: e = "#001E52",
|
|
@@ -1548,7 +1548,7 @@ const f1 = ({
|
|
|
1548
1548
|
)
|
|
1549
1549
|
]
|
|
1550
1550
|
}
|
|
1551
|
-
),
|
|
1551
|
+
), k2 = ({
|
|
1552
1552
|
width: i = 10,
|
|
1553
1553
|
height: o = 10,
|
|
1554
1554
|
color: e = "#001E52",
|
|
@@ -1577,7 +1577,7 @@ const f1 = ({
|
|
|
1577
1577
|
)
|
|
1578
1578
|
]
|
|
1579
1579
|
}
|
|
1580
|
-
),
|
|
1580
|
+
), g2 = ({
|
|
1581
1581
|
width: i = 10,
|
|
1582
1582
|
height: o = 10,
|
|
1583
1583
|
color: e = "#001E52",
|
|
@@ -1614,10 +1614,10 @@ const f1 = ({
|
|
|
1614
1614
|
)
|
|
1615
1615
|
]
|
|
1616
1616
|
}
|
|
1617
|
-
),
|
|
1617
|
+
), p2 = ({
|
|
1618
1618
|
width: i = 24,
|
|
1619
1619
|
height: o = 24,
|
|
1620
|
-
color: e =
|
|
1620
|
+
color: e = d.GREY_DARK_5,
|
|
1621
1621
|
className: l,
|
|
1622
1622
|
onClick: r
|
|
1623
1623
|
}) => /* @__PURE__ */ c(
|
|
@@ -1653,10 +1653,10 @@ const f1 = ({
|
|
|
1653
1653
|
)
|
|
1654
1654
|
]
|
|
1655
1655
|
}
|
|
1656
|
-
),
|
|
1656
|
+
), L2 = ({
|
|
1657
1657
|
width: i = 20,
|
|
1658
1658
|
height: o = 20,
|
|
1659
|
-
color: e =
|
|
1659
|
+
color: e = d.GREY_DARK_1,
|
|
1660
1660
|
className: l,
|
|
1661
1661
|
onClick: r
|
|
1662
1662
|
}) => /* @__PURE__ */ c(
|
|
@@ -1686,10 +1686,10 @@ const f1 = ({
|
|
|
1686
1686
|
)
|
|
1687
1687
|
]
|
|
1688
1688
|
}
|
|
1689
|
-
),
|
|
1689
|
+
), m2 = ({
|
|
1690
1690
|
width: i = 81,
|
|
1691
1691
|
height: o = 80,
|
|
1692
|
-
color: e =
|
|
1692
|
+
color: e = d.GREY_DARK_5,
|
|
1693
1693
|
className: l,
|
|
1694
1694
|
onClick: r
|
|
1695
1695
|
}) => /* @__PURE__ */ c(
|
|
@@ -1735,9 +1735,9 @@ const f1 = ({
|
|
|
1735
1735
|
)
|
|
1736
1736
|
]
|
|
1737
1737
|
}
|
|
1738
|
-
),
|
|
1738
|
+
), u2 = ({
|
|
1739
1739
|
className: i,
|
|
1740
|
-
color: o =
|
|
1740
|
+
color: o = d.GREY_DARK_5,
|
|
1741
1741
|
height: e = 20,
|
|
1742
1742
|
width: l = 20,
|
|
1743
1743
|
onClick: r
|
|
@@ -1762,9 +1762,9 @@ const f1 = ({
|
|
|
1762
1762
|
}
|
|
1763
1763
|
)
|
|
1764
1764
|
}
|
|
1765
|
-
),
|
|
1765
|
+
), v2 = ({
|
|
1766
1766
|
className: i,
|
|
1767
|
-
color: o =
|
|
1767
|
+
color: o = d.GREY_DARK_5,
|
|
1768
1768
|
height: e = 20,
|
|
1769
1769
|
width: l = 20,
|
|
1770
1770
|
onClick: r
|
|
@@ -1789,9 +1789,9 @@ const f1 = ({
|
|
|
1789
1789
|
}
|
|
1790
1790
|
)
|
|
1791
1791
|
}
|
|
1792
|
-
),
|
|
1792
|
+
), N2 = ({
|
|
1793
1793
|
className: i,
|
|
1794
|
-
color: o =
|
|
1794
|
+
color: o = d.GREY_DARK_5,
|
|
1795
1795
|
height: e = 5,
|
|
1796
1796
|
width: l = 10,
|
|
1797
1797
|
onClick: r
|
|
@@ -1813,9 +1813,9 @@ const f1 = ({
|
|
|
1813
1813
|
}
|
|
1814
1814
|
)
|
|
1815
1815
|
}
|
|
1816
|
-
),
|
|
1816
|
+
), f2 = ({
|
|
1817
1817
|
className: i,
|
|
1818
|
-
color: o =
|
|
1818
|
+
color: o = d.GREY_DARK_5,
|
|
1819
1819
|
height: e = 5,
|
|
1820
1820
|
width: l = 10,
|
|
1821
1821
|
onClick: r
|
|
@@ -1838,9 +1838,9 @@ const f1 = ({
|
|
|
1838
1838
|
}
|
|
1839
1839
|
)
|
|
1840
1840
|
}
|
|
1841
|
-
),
|
|
1841
|
+
), M2 = ({
|
|
1842
1842
|
className: i,
|
|
1843
|
-
color: o =
|
|
1843
|
+
color: o = d.GREY_DARK_5,
|
|
1844
1844
|
height: e = 24,
|
|
1845
1845
|
width: l = 24,
|
|
1846
1846
|
onClick: r
|
|
@@ -1877,9 +1877,9 @@ const f1 = ({
|
|
|
1877
1877
|
)
|
|
1878
1878
|
]
|
|
1879
1879
|
}
|
|
1880
|
-
),
|
|
1880
|
+
), x2 = ({
|
|
1881
1881
|
className: i,
|
|
1882
|
-
color: o =
|
|
1882
|
+
color: o = d.GREY_DARK_5,
|
|
1883
1883
|
height: e = 24,
|
|
1884
1884
|
width: l = 24,
|
|
1885
1885
|
onClick: r
|
|
@@ -1916,9 +1916,9 @@ const f1 = ({
|
|
|
1916
1916
|
)
|
|
1917
1917
|
]
|
|
1918
1918
|
}
|
|
1919
|
-
),
|
|
1919
|
+
), _2 = ({
|
|
1920
1920
|
className: i,
|
|
1921
|
-
color: o =
|
|
1921
|
+
color: o = d.GREY_DARK_5,
|
|
1922
1922
|
height: e = 24,
|
|
1923
1923
|
width: l = 24,
|
|
1924
1924
|
onClick: r
|
|
@@ -1943,9 +1943,9 @@ const f1 = ({
|
|
|
1943
1943
|
}
|
|
1944
1944
|
)
|
|
1945
1945
|
}
|
|
1946
|
-
),
|
|
1946
|
+
), R2 = ({
|
|
1947
1947
|
className: i,
|
|
1948
|
-
color: o =
|
|
1948
|
+
color: o = d.GREY_DARK_5,
|
|
1949
1949
|
height: e = 24,
|
|
1950
1950
|
width: l = 24,
|
|
1951
1951
|
onClick: r
|
|
@@ -2002,9 +2002,9 @@ const f1 = ({
|
|
|
2002
2002
|
)
|
|
2003
2003
|
]
|
|
2004
2004
|
}
|
|
2005
|
-
),
|
|
2005
|
+
), H2 = ({
|
|
2006
2006
|
className: i,
|
|
2007
|
-
color: o =
|
|
2007
|
+
color: o = d.GREY_DARK_5,
|
|
2008
2008
|
height: e = 24,
|
|
2009
2009
|
width: l = 24,
|
|
2010
2010
|
onClick: r
|
|
@@ -2039,9 +2039,9 @@ const f1 = ({
|
|
|
2039
2039
|
)
|
|
2040
2040
|
]
|
|
2041
2041
|
}
|
|
2042
|
-
),
|
|
2042
|
+
), V2 = ({
|
|
2043
2043
|
className: i,
|
|
2044
|
-
color: o =
|
|
2044
|
+
color: o = d.GREY_DARK_3,
|
|
2045
2045
|
height: e = 14,
|
|
2046
2046
|
width: l = 14,
|
|
2047
2047
|
onClick: r
|
|
@@ -2076,9 +2076,9 @@ const f1 = ({
|
|
|
2076
2076
|
)
|
|
2077
2077
|
]
|
|
2078
2078
|
}
|
|
2079
|
-
),
|
|
2079
|
+
), E2 = ({
|
|
2080
2080
|
className: i,
|
|
2081
|
-
color: o =
|
|
2081
|
+
color: o = d.GREY_DARK_5,
|
|
2082
2082
|
height: e = 18,
|
|
2083
2083
|
onClick: l,
|
|
2084
2084
|
width: r = 18
|
|
@@ -2103,9 +2103,9 @@ const f1 = ({
|
|
|
2103
2103
|
}
|
|
2104
2104
|
)
|
|
2105
2105
|
}
|
|
2106
|
-
),
|
|
2106
|
+
), Z2 = ({
|
|
2107
2107
|
className: i,
|
|
2108
|
-
color: o =
|
|
2108
|
+
color: o = d.GREY_DARK_5,
|
|
2109
2109
|
height: e = 24,
|
|
2110
2110
|
width: l = 24,
|
|
2111
2111
|
onClick: r
|
|
@@ -2155,9 +2155,9 @@ const f1 = ({
|
|
|
2155
2155
|
)
|
|
2156
2156
|
]
|
|
2157
2157
|
}
|
|
2158
|
-
),
|
|
2158
|
+
), W2 = ({
|
|
2159
2159
|
className: i,
|
|
2160
|
-
color: o =
|
|
2160
|
+
color: o = d.GREY_DARK_5,
|
|
2161
2161
|
height: e = 24,
|
|
2162
2162
|
width: l = 24,
|
|
2163
2163
|
onClick: r
|
|
@@ -2192,9 +2192,9 @@ const f1 = ({
|
|
|
2192
2192
|
)
|
|
2193
2193
|
]
|
|
2194
2194
|
}
|
|
2195
|
-
),
|
|
2195
|
+
), I2 = ({
|
|
2196
2196
|
className: i,
|
|
2197
|
-
color: o =
|
|
2197
|
+
color: o = d.NOTIFICATION_WARNING_DARK,
|
|
2198
2198
|
height: e = 37,
|
|
2199
2199
|
width: l = 36,
|
|
2200
2200
|
onClick: r
|
|
@@ -2231,9 +2231,9 @@ const f1 = ({
|
|
|
2231
2231
|
)
|
|
2232
2232
|
]
|
|
2233
2233
|
}
|
|
2234
|
-
),
|
|
2234
|
+
), B2 = ({
|
|
2235
2235
|
className: i,
|
|
2236
|
-
color: o =
|
|
2236
|
+
color: o = d.GREY_DARK_5,
|
|
2237
2237
|
height: e = 24,
|
|
2238
2238
|
width: l = 24,
|
|
2239
2239
|
onClick: r
|
|
@@ -2257,9 +2257,9 @@ const f1 = ({
|
|
|
2257
2257
|
}
|
|
2258
2258
|
)
|
|
2259
2259
|
}
|
|
2260
|
-
),
|
|
2260
|
+
), A2 = ({
|
|
2261
2261
|
className: i,
|
|
2262
|
-
color: o =
|
|
2262
|
+
color: o = d.GREY_DARK_5,
|
|
2263
2263
|
height: e = 24,
|
|
2264
2264
|
width: l = 24,
|
|
2265
2265
|
onClick: r
|
|
@@ -2296,9 +2296,9 @@ const f1 = ({
|
|
|
2296
2296
|
)
|
|
2297
2297
|
]
|
|
2298
2298
|
}
|
|
2299
|
-
),
|
|
2299
|
+
), G2 = ({
|
|
2300
2300
|
className: i,
|
|
2301
|
-
color: o =
|
|
2301
|
+
color: o = d.GREY_DARK_5,
|
|
2302
2302
|
height: e = 24,
|
|
2303
2303
|
width: l = 24,
|
|
2304
2304
|
onClick: r
|
|
@@ -2335,9 +2335,9 @@ const f1 = ({
|
|
|
2335
2335
|
)
|
|
2336
2336
|
]
|
|
2337
2337
|
}
|
|
2338
|
-
),
|
|
2338
|
+
), D2 = ({
|
|
2339
2339
|
className: i,
|
|
2340
|
-
color: o =
|
|
2340
|
+
color: o = d.GREY_DARK_5,
|
|
2341
2341
|
height: e = 24,
|
|
2342
2342
|
width: l = 24,
|
|
2343
2343
|
onClick: r
|
|
@@ -2404,9 +2404,9 @@ const f1 = ({
|
|
|
2404
2404
|
)
|
|
2405
2405
|
]
|
|
2406
2406
|
}
|
|
2407
|
-
),
|
|
2407
|
+
), j2 = ({
|
|
2408
2408
|
className: i,
|
|
2409
|
-
color: o =
|
|
2409
|
+
color: o = d.GREY_DARK_5,
|
|
2410
2410
|
height: e = 24,
|
|
2411
2411
|
width: l = 24,
|
|
2412
2412
|
onClick: r
|
|
@@ -2443,9 +2443,9 @@ const f1 = ({
|
|
|
2443
2443
|
)
|
|
2444
2444
|
]
|
|
2445
2445
|
}
|
|
2446
|
-
),
|
|
2446
|
+
), T2 = ({
|
|
2447
2447
|
className: i,
|
|
2448
|
-
color: o =
|
|
2448
|
+
color: o = d.GREY_DARK_5,
|
|
2449
2449
|
height: e = 24,
|
|
2450
2450
|
width: l = 24,
|
|
2451
2451
|
onClick: r
|
|
@@ -2500,9 +2500,9 @@ const f1 = ({
|
|
|
2500
2500
|
)
|
|
2501
2501
|
]
|
|
2502
2502
|
}
|
|
2503
|
-
),
|
|
2503
|
+
), y2 = ({
|
|
2504
2504
|
className: i,
|
|
2505
|
-
color: o =
|
|
2505
|
+
color: o = d.GREY_DARK_5,
|
|
2506
2506
|
height: e = 24,
|
|
2507
2507
|
width: l = 24,
|
|
2508
2508
|
onClick: r
|
|
@@ -2539,9 +2539,9 @@ const f1 = ({
|
|
|
2539
2539
|
)
|
|
2540
2540
|
]
|
|
2541
2541
|
}
|
|
2542
|
-
),
|
|
2542
|
+
), Y2 = ({
|
|
2543
2543
|
className: i,
|
|
2544
|
-
color: o =
|
|
2544
|
+
color: o = d.GREY_DARK_5,
|
|
2545
2545
|
height: e = 24,
|
|
2546
2546
|
width: l = 24,
|
|
2547
2547
|
onClick: r
|
|
@@ -2588,9 +2588,9 @@ const f1 = ({
|
|
|
2588
2588
|
)
|
|
2589
2589
|
]
|
|
2590
2590
|
}
|
|
2591
|
-
),
|
|
2591
|
+
), K2 = ({
|
|
2592
2592
|
className: i,
|
|
2593
|
-
color: o =
|
|
2593
|
+
color: o = d.GREY_DARK_5,
|
|
2594
2594
|
height: e = 24,
|
|
2595
2595
|
width: l = 24,
|
|
2596
2596
|
onClick: r
|
|
@@ -2627,9 +2627,9 @@ const f1 = ({
|
|
|
2627
2627
|
)
|
|
2628
2628
|
]
|
|
2629
2629
|
}
|
|
2630
|
-
),
|
|
2630
|
+
), O2 = ({
|
|
2631
2631
|
className: i,
|
|
2632
|
-
color: o =
|
|
2632
|
+
color: o = d.GREY_DARK_5,
|
|
2633
2633
|
height: e = 24,
|
|
2634
2634
|
width: l = 24,
|
|
2635
2635
|
onClick: r
|
|
@@ -2654,9 +2654,9 @@ const f1 = ({
|
|
|
2654
2654
|
}
|
|
2655
2655
|
)
|
|
2656
2656
|
}
|
|
2657
|
-
),
|
|
2657
|
+
), b2 = ({
|
|
2658
2658
|
className: i,
|
|
2659
|
-
color: o =
|
|
2659
|
+
color: o = d.GREY_DARK_5,
|
|
2660
2660
|
height: e = 24,
|
|
2661
2661
|
width: l = 24,
|
|
2662
2662
|
onClick: r
|
|
@@ -2692,9 +2692,9 @@ const f1 = ({
|
|
|
2692
2692
|
)
|
|
2693
2693
|
]
|
|
2694
2694
|
}
|
|
2695
|
-
),
|
|
2695
|
+
), F2 = ({
|
|
2696
2696
|
className: i,
|
|
2697
|
-
color: o =
|
|
2697
|
+
color: o = d.GREY_DARK_5,
|
|
2698
2698
|
height: e = 24,
|
|
2699
2699
|
width: l = 24,
|
|
2700
2700
|
onClick: r
|
|
@@ -2713,9 +2713,9 @@ const f1 = ({
|
|
|
2713
2713
|
/* @__PURE__ */ t("path", { d: "M12 8L4 8", stroke: o, strokeWidth: "1.7", strokeLinecap: "round" })
|
|
2714
2714
|
]
|
|
2715
2715
|
}
|
|
2716
|
-
),
|
|
2716
|
+
), S2 = ({
|
|
2717
2717
|
className: i,
|
|
2718
|
-
color: o =
|
|
2718
|
+
color: o = d.GREY_DARK_5,
|
|
2719
2719
|
height: e = 24,
|
|
2720
2720
|
width: l = 24,
|
|
2721
2721
|
onClick: r
|
|
@@ -2752,9 +2752,9 @@ const f1 = ({
|
|
|
2752
2752
|
)
|
|
2753
2753
|
]
|
|
2754
2754
|
}
|
|
2755
|
-
),
|
|
2755
|
+
), U2 = ({
|
|
2756
2756
|
className: i,
|
|
2757
|
-
color: o =
|
|
2757
|
+
color: o = d.GREY_DARK_5,
|
|
2758
2758
|
height: e = 24,
|
|
2759
2759
|
width: l = 24,
|
|
2760
2760
|
onClick: r
|
|
@@ -2791,9 +2791,9 @@ const f1 = ({
|
|
|
2791
2791
|
)
|
|
2792
2792
|
]
|
|
2793
2793
|
}
|
|
2794
|
-
),
|
|
2794
|
+
), P2 = ({
|
|
2795
2795
|
className: i,
|
|
2796
|
-
color: o =
|
|
2796
|
+
color: o = d.GREY_DARK_5,
|
|
2797
2797
|
height: e = 24,
|
|
2798
2798
|
width: l = 24,
|
|
2799
2799
|
onClick: r
|
|
@@ -2830,9 +2830,9 @@ const f1 = ({
|
|
|
2830
2830
|
)
|
|
2831
2831
|
]
|
|
2832
2832
|
}
|
|
2833
|
-
),
|
|
2833
|
+
), $2 = ({
|
|
2834
2834
|
className: i,
|
|
2835
|
-
color: o =
|
|
2835
|
+
color: o = d.GREY_DARK_2,
|
|
2836
2836
|
height: e = 16,
|
|
2837
2837
|
width: l = 16,
|
|
2838
2838
|
onClick: r
|
|
@@ -2856,9 +2856,9 @@ const f1 = ({
|
|
|
2856
2856
|
}
|
|
2857
2857
|
)
|
|
2858
2858
|
}
|
|
2859
|
-
),
|
|
2859
|
+
), z2 = ({
|
|
2860
2860
|
className: i,
|
|
2861
|
-
color: o =
|
|
2861
|
+
color: o = d.GREY_DARK_5,
|
|
2862
2862
|
height: e = 20,
|
|
2863
2863
|
width: l = 20,
|
|
2864
2864
|
onClick: r
|
|
@@ -2885,9 +2885,9 @@ const f1 = ({
|
|
|
2885
2885
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5989", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
2886
2886
|
]
|
|
2887
2887
|
}
|
|
2888
|
-
),
|
|
2888
|
+
), q2 = ({
|
|
2889
2889
|
className: i,
|
|
2890
|
-
color: o =
|
|
2890
|
+
color: o = d.GREY_DARK_5,
|
|
2891
2891
|
height: e = 20,
|
|
2892
2892
|
width: l = 20,
|
|
2893
2893
|
onClick: r
|
|
@@ -2914,9 +2914,9 @@ const f1 = ({
|
|
|
2914
2914
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5988", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
2915
2915
|
]
|
|
2916
2916
|
}
|
|
2917
|
-
),
|
|
2917
|
+
), J2 = ({
|
|
2918
2918
|
className: i,
|
|
2919
|
-
color: o =
|
|
2919
|
+
color: o = d.GREY_DARK_5,
|
|
2920
2920
|
height: e = 20,
|
|
2921
2921
|
width: l = 20,
|
|
2922
2922
|
onClick: r
|
|
@@ -2931,7 +2931,7 @@ const f1 = ({
|
|
|
2931
2931
|
fill: "none",
|
|
2932
2932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2933
2933
|
children: [
|
|
2934
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
2934
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: d.GREY_LIGHT_2 }),
|
|
2935
2935
|
/* @__PURE__ */ t(
|
|
2936
2936
|
"path",
|
|
2937
2937
|
{
|
|
@@ -2943,9 +2943,9 @@ const f1 = ({
|
|
|
2943
2943
|
)
|
|
2944
2944
|
]
|
|
2945
2945
|
}
|
|
2946
|
-
),
|
|
2946
|
+
), Q2 = ({
|
|
2947
2947
|
className: i,
|
|
2948
|
-
color: o =
|
|
2948
|
+
color: o = d.GREY_DARK_5,
|
|
2949
2949
|
height: e = 20,
|
|
2950
2950
|
width: l = 20,
|
|
2951
2951
|
onClick: r
|
|
@@ -2960,7 +2960,7 @@ const f1 = ({
|
|
|
2960
2960
|
fill: "none",
|
|
2961
2961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2962
2962
|
children: [
|
|
2963
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
2963
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: d.GREY_LIGHT_2 }),
|
|
2964
2964
|
/* @__PURE__ */ t(
|
|
2965
2965
|
"path",
|
|
2966
2966
|
{
|
|
@@ -2972,7 +2972,7 @@ const f1 = ({
|
|
|
2972
2972
|
)
|
|
2973
2973
|
]
|
|
2974
2974
|
}
|
|
2975
|
-
),
|
|
2975
|
+
), X2 = ({
|
|
2976
2976
|
className: i,
|
|
2977
2977
|
color: o = "#001E52",
|
|
2978
2978
|
height: e = 24,
|
|
@@ -2998,7 +2998,7 @@ const f1 = ({
|
|
|
2998
2998
|
}
|
|
2999
2999
|
)
|
|
3000
3000
|
}
|
|
3001
|
-
),
|
|
3001
|
+
), e5 = ({
|
|
3002
3002
|
className: i,
|
|
3003
3003
|
color: o = "#131314",
|
|
3004
3004
|
height: e = 20,
|
|
@@ -3026,7 +3026,7 @@ const f1 = ({
|
|
|
3026
3026
|
}
|
|
3027
3027
|
)
|
|
3028
3028
|
}
|
|
3029
|
-
),
|
|
3029
|
+
), o5 = ({
|
|
3030
3030
|
className: i,
|
|
3031
3031
|
color: o = "#001E52",
|
|
3032
3032
|
height: e = 24,
|
|
@@ -3064,7 +3064,7 @@ const f1 = ({
|
|
|
3064
3064
|
)
|
|
3065
3065
|
] }) })
|
|
3066
3066
|
}
|
|
3067
|
-
),
|
|
3067
|
+
), U = ({
|
|
3068
3068
|
name: i,
|
|
3069
3069
|
width: o,
|
|
3070
3070
|
height: e,
|
|
@@ -3073,263 +3073,263 @@ const f1 = ({
|
|
|
3073
3073
|
disabled: w = !1,
|
|
3074
3074
|
onClick: g
|
|
3075
3075
|
}) => {
|
|
3076
|
-
const [
|
|
3077
|
-
return
|
|
3076
|
+
const [s, p] = u(r), { theme: k } = o1(c1), n = w ? k && k === "dark" ? d.GREY_LIGHT_4 : d.GREY_DARK_1 : l, h = w ? void 0 : g;
|
|
3077
|
+
return E(() => {
|
|
3078
3078
|
if (r) {
|
|
3079
3079
|
h && !w && p(`${r} clickable`);
|
|
3080
3080
|
return;
|
|
3081
3081
|
}
|
|
3082
3082
|
h && !w && p("clickable");
|
|
3083
|
-
}, [h, r, w]), /* @__PURE__ */ t(
|
|
3083
|
+
}, [h, r, w]), /* @__PURE__ */ t(I, { children: (() => {
|
|
3084
3084
|
switch (i) {
|
|
3085
3085
|
case "nextIcon":
|
|
3086
|
-
return
|
|
3086
|
+
return u2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3087
3087
|
case "prevIcon":
|
|
3088
|
-
return
|
|
3088
|
+
return v2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3089
3089
|
case "arrowUp":
|
|
3090
|
-
return
|
|
3090
|
+
return H1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3091
3091
|
case "arrowDown":
|
|
3092
|
-
return
|
|
3092
|
+
return V1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3093
3093
|
case "info":
|
|
3094
|
-
return
|
|
3094
|
+
return E1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3095
3095
|
case "arrowRight":
|
|
3096
|
-
return
|
|
3096
|
+
return Z1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3097
3097
|
case "calendar":
|
|
3098
|
-
return
|
|
3098
|
+
return W1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3099
3099
|
case "ok":
|
|
3100
|
-
return
|
|
3100
|
+
return I1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3101
3101
|
case "cancel":
|
|
3102
|
-
return
|
|
3102
|
+
return B1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3103
3103
|
case "add":
|
|
3104
|
-
return
|
|
3104
|
+
return A1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3105
3105
|
case "list":
|
|
3106
|
-
return
|
|
3106
|
+
return G1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3107
3107
|
case "dragAndDrop":
|
|
3108
|
-
return
|
|
3108
|
+
return D1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3109
3109
|
case "filter":
|
|
3110
|
-
return
|
|
3110
|
+
return j1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3111
3111
|
case "attention":
|
|
3112
|
-
return
|
|
3112
|
+
return T1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3113
3113
|
case "plus":
|
|
3114
|
-
return
|
|
3114
|
+
return y1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3115
3115
|
case "time":
|
|
3116
|
-
return
|
|
3116
|
+
return Y1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3117
3117
|
case "arrowDownLong":
|
|
3118
|
-
return
|
|
3118
|
+
return K1({
|
|
3119
3119
|
width: o,
|
|
3120
3120
|
height: e,
|
|
3121
|
-
color:
|
|
3122
|
-
className:
|
|
3121
|
+
color: n,
|
|
3122
|
+
className: s,
|
|
3123
3123
|
onClick: h
|
|
3124
3124
|
});
|
|
3125
3125
|
case "users":
|
|
3126
|
-
return
|
|
3126
|
+
return O1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3127
3127
|
case "mySkillsMatrix":
|
|
3128
|
-
return
|
|
3128
|
+
return b1({
|
|
3129
3129
|
width: o,
|
|
3130
3130
|
height: e,
|
|
3131
|
-
color:
|
|
3132
|
-
className:
|
|
3131
|
+
color: n,
|
|
3132
|
+
className: s,
|
|
3133
3133
|
onClick: h
|
|
3134
3134
|
});
|
|
3135
3135
|
case "skills":
|
|
3136
|
-
return
|
|
3136
|
+
return F1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3137
3137
|
case "skillsMatrices":
|
|
3138
|
-
return
|
|
3138
|
+
return S1({
|
|
3139
3139
|
width: o,
|
|
3140
3140
|
height: e,
|
|
3141
|
-
color:
|
|
3142
|
-
className:
|
|
3141
|
+
color: n,
|
|
3142
|
+
className: s,
|
|
3143
3143
|
onClick: h
|
|
3144
3144
|
});
|
|
3145
3145
|
case "history":
|
|
3146
|
-
return
|
|
3146
|
+
return U1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3147
3147
|
case "logOut":
|
|
3148
|
-
return
|
|
3148
|
+
return P1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3149
3149
|
case "settings":
|
|
3150
|
-
return
|
|
3150
|
+
return $1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3151
3151
|
case "addSkill":
|
|
3152
|
-
return
|
|
3152
|
+
return z1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3153
3153
|
case "conversation":
|
|
3154
|
-
return
|
|
3154
|
+
return q1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3155
3155
|
case "trash":
|
|
3156
|
-
return
|
|
3156
|
+
return J1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3157
3157
|
case "settings4":
|
|
3158
|
-
return
|
|
3158
|
+
return Q1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3159
3159
|
case "edit2":
|
|
3160
|
-
return
|
|
3160
|
+
return X1({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3161
3161
|
case "notifications":
|
|
3162
|
-
return
|
|
3162
|
+
return e2({
|
|
3163
3163
|
width: o,
|
|
3164
3164
|
height: e,
|
|
3165
|
-
color:
|
|
3166
|
-
className:
|
|
3165
|
+
color: n,
|
|
3166
|
+
className: s,
|
|
3167
3167
|
onClick: h
|
|
3168
3168
|
});
|
|
3169
3169
|
case "success":
|
|
3170
|
-
return
|
|
3170
|
+
return o2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3171
3171
|
case "attentionSmall":
|
|
3172
|
-
return
|
|
3172
|
+
return i2({
|
|
3173
3173
|
width: o,
|
|
3174
3174
|
height: e,
|
|
3175
|
-
color:
|
|
3176
|
-
className:
|
|
3175
|
+
color: n,
|
|
3176
|
+
className: s,
|
|
3177
3177
|
onClick: h
|
|
3178
3178
|
});
|
|
3179
3179
|
case "errorSmall":
|
|
3180
|
-
return
|
|
3180
|
+
return t2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3181
3181
|
case "infoMedium":
|
|
3182
|
-
return
|
|
3182
|
+
return l2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3183
3183
|
case "attentionMedium":
|
|
3184
|
-
return
|
|
3184
|
+
return r2({
|
|
3185
3185
|
width: o,
|
|
3186
3186
|
height: e,
|
|
3187
|
-
color:
|
|
3188
|
-
className:
|
|
3187
|
+
color: n,
|
|
3188
|
+
className: s,
|
|
3189
3189
|
onClick: h
|
|
3190
3190
|
});
|
|
3191
3191
|
case "errorMedium":
|
|
3192
|
-
return
|
|
3192
|
+
return s2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3193
3193
|
case "faviconSkills":
|
|
3194
|
-
return
|
|
3194
|
+
return C2({
|
|
3195
3195
|
width: o,
|
|
3196
3196
|
height: e,
|
|
3197
|
-
color:
|
|
3198
|
-
className:
|
|
3197
|
+
color: n,
|
|
3198
|
+
className: s,
|
|
3199
3199
|
onClick: h
|
|
3200
3200
|
});
|
|
3201
3201
|
case "visibilityIcon":
|
|
3202
|
-
return
|
|
3202
|
+
return n2({
|
|
3203
3203
|
width: o,
|
|
3204
3204
|
height: e,
|
|
3205
|
-
color:
|
|
3206
|
-
className:
|
|
3205
|
+
color: n,
|
|
3206
|
+
className: s,
|
|
3207
3207
|
onClick: h
|
|
3208
3208
|
});
|
|
3209
3209
|
case "visibilityOffIcon":
|
|
3210
|
-
return
|
|
3210
|
+
return h2({
|
|
3211
3211
|
width: o,
|
|
3212
3212
|
height: e,
|
|
3213
|
-
color:
|
|
3214
|
-
className:
|
|
3213
|
+
color: n,
|
|
3214
|
+
className: s,
|
|
3215
3215
|
onClick: h
|
|
3216
3216
|
});
|
|
3217
3217
|
case "selectArrowIcon":
|
|
3218
|
-
return
|
|
3218
|
+
return c2({
|
|
3219
3219
|
width: o,
|
|
3220
3220
|
height: e,
|
|
3221
|
-
color:
|
|
3222
|
-
className:
|
|
3221
|
+
color: n,
|
|
3222
|
+
className: s,
|
|
3223
3223
|
onClick: h
|
|
3224
3224
|
});
|
|
3225
3225
|
case "expandArrowIcon":
|
|
3226
|
-
return
|
|
3226
|
+
return a2({
|
|
3227
3227
|
width: o,
|
|
3228
3228
|
height: e,
|
|
3229
|
-
color:
|
|
3230
|
-
className:
|
|
3229
|
+
color: n,
|
|
3230
|
+
className: s,
|
|
3231
3231
|
onClick: h
|
|
3232
3232
|
});
|
|
3233
3233
|
case "expandActiveArrowIcon":
|
|
3234
|
-
return
|
|
3234
|
+
return d2({
|
|
3235
3235
|
width: o,
|
|
3236
3236
|
height: e,
|
|
3237
|
-
color:
|
|
3238
|
-
className:
|
|
3237
|
+
color: n,
|
|
3238
|
+
className: s,
|
|
3239
3239
|
onClick: h
|
|
3240
3240
|
});
|
|
3241
3241
|
case "camera":
|
|
3242
|
-
return
|
|
3242
|
+
return w2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3243
3243
|
case "sortUp":
|
|
3244
|
-
return
|
|
3244
|
+
return k2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3245
3245
|
case "sortDown":
|
|
3246
|
-
return
|
|
3246
|
+
return g2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3247
3247
|
case "logOut2":
|
|
3248
|
-
return
|
|
3248
|
+
return p2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3249
3249
|
case "search":
|
|
3250
|
-
return
|
|
3250
|
+
return L2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3251
3251
|
case "handRock":
|
|
3252
|
-
return
|
|
3252
|
+
return m2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3253
3253
|
case "arrowUpFilled":
|
|
3254
|
-
return
|
|
3254
|
+
return f2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3255
3255
|
case "arrowDownFilled":
|
|
3256
|
-
return
|
|
3256
|
+
return N2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3257
3257
|
case "link":
|
|
3258
|
-
return
|
|
3258
|
+
return M2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3259
3259
|
case "telegram":
|
|
3260
|
-
return
|
|
3260
|
+
return _2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3261
3261
|
case "mail":
|
|
3262
|
-
return
|
|
3262
|
+
return H2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3263
3263
|
case "github":
|
|
3264
|
-
return
|
|
3264
|
+
return x2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3265
3265
|
case "linkedIn":
|
|
3266
|
-
return
|
|
3266
|
+
return R2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3267
3267
|
case "emptyStateIcon":
|
|
3268
|
-
return
|
|
3268
|
+
return V2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3269
3269
|
case "filtersIcon":
|
|
3270
|
-
return
|
|
3270
|
+
return E2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3271
3271
|
case "dotMenuIcon":
|
|
3272
|
-
return
|
|
3272
|
+
return Z2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3273
3273
|
case "plusCircle":
|
|
3274
|
-
return
|
|
3274
|
+
return W2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3275
3275
|
case "warning":
|
|
3276
|
-
return
|
|
3276
|
+
return I2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3277
3277
|
case "back":
|
|
3278
|
-
return
|
|
3278
|
+
return B2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3279
3279
|
case "bell":
|
|
3280
|
-
return
|
|
3280
|
+
return A2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3281
3281
|
case "contract":
|
|
3282
|
-
return
|
|
3282
|
+
return D2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3283
3283
|
case "trash2":
|
|
3284
|
-
return
|
|
3284
|
+
return G2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3285
3285
|
case "manager":
|
|
3286
|
-
return
|
|
3286
|
+
return j2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3287
3287
|
case "resourceManager":
|
|
3288
|
-
return
|
|
3288
|
+
return T2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3289
3289
|
case "settings2":
|
|
3290
|
-
return
|
|
3290
|
+
return y2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3291
3291
|
case "image":
|
|
3292
|
-
return
|
|
3292
|
+
return Y2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3293
3293
|
case "upload":
|
|
3294
|
-
return
|
|
3294
|
+
return K2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3295
3295
|
case "edit":
|
|
3296
|
-
return
|
|
3296
|
+
return O2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3297
3297
|
case "location":
|
|
3298
|
-
return
|
|
3298
|
+
return b2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3299
3299
|
case "plus2":
|
|
3300
|
-
return
|
|
3300
|
+
return F2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3301
3301
|
case "search2":
|
|
3302
|
-
return
|
|
3302
|
+
return S2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3303
3303
|
case "fastArrowLeft":
|
|
3304
|
-
return
|
|
3304
|
+
return U2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3305
3305
|
case "fastArrowRight":
|
|
3306
|
-
return
|
|
3306
|
+
return P2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3307
3307
|
case "crossInCircle":
|
|
3308
|
-
return
|
|
3308
|
+
return $2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3309
3309
|
case "arrowUp2":
|
|
3310
|
-
return
|
|
3310
|
+
return q2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3311
3311
|
case "arrowDown2":
|
|
3312
|
-
return
|
|
3312
|
+
return z2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3313
3313
|
case "filledArrowLeft":
|
|
3314
|
-
return
|
|
3314
|
+
return J2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3315
3315
|
case "filledArrowRight":
|
|
3316
|
-
return
|
|
3316
|
+
return Q2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3317
3317
|
case "burgerMenu":
|
|
3318
|
-
return
|
|
3318
|
+
return X2({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3319
3319
|
case "signOut":
|
|
3320
|
-
return
|
|
3320
|
+
return e5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3321
3321
|
case "refresh":
|
|
3322
|
-
return
|
|
3322
|
+
return o5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
3323
3323
|
default:
|
|
3324
|
-
return /* @__PURE__ */ t(
|
|
3324
|
+
return /* @__PURE__ */ t(I, { children: "No Icon provided" });
|
|
3325
3325
|
}
|
|
3326
3326
|
})() });
|
|
3327
|
-
}, { Title:
|
|
3327
|
+
}, { Title: i5, Text: t5 } = s1, l5 = {
|
|
3328
3328
|
h1: 1,
|
|
3329
3329
|
h2: 2,
|
|
3330
3330
|
h3: 3,
|
|
3331
3331
|
h4: 4
|
|
3332
|
-
},
|
|
3332
|
+
}, r5 = q(
|
|
3333
3333
|
({
|
|
3334
3334
|
align: i = "inherit",
|
|
3335
3335
|
variant: o = "body1",
|
|
@@ -3338,38 +3338,38 @@ const f1 = ({
|
|
|
3338
3338
|
onClick: r,
|
|
3339
3339
|
collapsed: w,
|
|
3340
3340
|
whiteSpace: g = "normal"
|
|
3341
|
-
},
|
|
3341
|
+
}, s) => {
|
|
3342
3342
|
const p = o === "h1" || o === "h2" || o === "h3" || o === "h4";
|
|
3343
3343
|
let k = `snmt-typography snmt-typography-${o}`;
|
|
3344
3344
|
return i && i !== "inherit" && (k += ` snmt-typography-align-${i}`), w && (k += " collapsed"), p ? /* @__PURE__ */ t(
|
|
3345
|
-
|
|
3345
|
+
i5,
|
|
3346
3346
|
{
|
|
3347
3347
|
className: k,
|
|
3348
3348
|
style: { color: e, whiteSpace: g },
|
|
3349
3349
|
onClick: r,
|
|
3350
|
-
level:
|
|
3351
|
-
ref:
|
|
3350
|
+
level: l5[o],
|
|
3351
|
+
ref: s,
|
|
3352
3352
|
children: l
|
|
3353
3353
|
}
|
|
3354
3354
|
) : /* @__PURE__ */ t(
|
|
3355
|
-
|
|
3355
|
+
t5,
|
|
3356
3356
|
{
|
|
3357
3357
|
className: k,
|
|
3358
3358
|
style: { color: e, whiteSpace: g },
|
|
3359
3359
|
onClick: r,
|
|
3360
|
-
ref:
|
|
3360
|
+
ref: s,
|
|
3361
3361
|
children: l
|
|
3362
3362
|
}
|
|
3363
3363
|
);
|
|
3364
3364
|
}
|
|
3365
3365
|
);
|
|
3366
|
-
var
|
|
3367
|
-
const
|
|
3366
|
+
var C = /* @__PURE__ */ ((i) => (i.GREY_LIGHT_0 = "var(--grey-light-0)", i.GREY_LIGHT_1 = "var(--grey-light-1)", i.GREY_LIGHT_2 = "var(--grey-light-2)", i.GREY_LIGHT_3 = "var(--grey-light-3)", i.GREY_LIGHT_4 = "var(--grey-light-4)", i.GREY_DARK_1 = "var(--grey-dark-1)", i.GREY_DARK_2 = "var(--grey-dark-2)", i.GREY_DARK_3 = "var(--grey-dark-3)", i.GREY_DARK_4 = "var(--grey-dark-4)", i.GREY_DARK_5 = "var(--grey-dark-5)", i.BLUE_PRIMARY = "var(--blue-primary)", i.BLUE_HOVER = "var(--blue-hover)", i.BLUE_LIGHT_1 = "var(--blue-light-1)", i.BLUE_LIGHT_2 = "var(--blue-light-2)", i.BLUE_LIGHT_3 = "var(--blue-light-3)", i.BLUE_LIGHT_4 = "var(--blue-light-4)", i.BLUE_DARK_1 = "var(--blue-dark-1)", i.PURPLE_LIGHT = "var(--purple-light)", i.PURPLE_DARK = "var(--purple-dark)", i.NOTIFICATION_WARNING_LIGHT = "var(--notification-warning-light)", i.NOTIFICATION_WARNING_DARK = "var(--notification-warning-dark)", i.NOTIFICATION_SUCCESS_LIGHT = "var(--notification-success-light)", i.NOTIFICATION_SUCCESS_DARK = "var(--notification-success-dark)", i.NOTIFICATION_ERROR_LIGHT = "var(--notification-error-light)", i.NOTIFICATION_ERROR_DARK = "var(--notification-error-dark)", i.NOTIFICATION_ERROR_DARK_MODE = "var(--notification-error-dark-mode)", i))(C || {});
|
|
3367
|
+
const a1 = z({
|
|
3368
3368
|
locale: "en",
|
|
3369
3369
|
theme: "light"
|
|
3370
3370
|
});
|
|
3371
|
-
|
|
3372
|
-
const
|
|
3371
|
+
a1.Provider;
|
|
3372
|
+
const s5 = ({
|
|
3373
3373
|
width: i = 20,
|
|
3374
3374
|
height: o = 20,
|
|
3375
3375
|
color: e = "#001E52",
|
|
@@ -3396,7 +3396,7 @@ const o5 = ({
|
|
|
3396
3396
|
}
|
|
3397
3397
|
)
|
|
3398
3398
|
}
|
|
3399
|
-
),
|
|
3399
|
+
), n5 = ({
|
|
3400
3400
|
width: i = 20,
|
|
3401
3401
|
height: o = 20,
|
|
3402
3402
|
color: e = "#001E52",
|
|
@@ -3423,7 +3423,7 @@ const o5 = ({
|
|
|
3423
3423
|
}
|
|
3424
3424
|
)
|
|
3425
3425
|
}
|
|
3426
|
-
),
|
|
3426
|
+
), h5 = ({
|
|
3427
3427
|
width: i = 16,
|
|
3428
3428
|
height: o = 16,
|
|
3429
3429
|
color: e = "#001E52",
|
|
@@ -3451,7 +3451,7 @@ const o5 = ({
|
|
|
3451
3451
|
)
|
|
3452
3452
|
]
|
|
3453
3453
|
}
|
|
3454
|
-
),
|
|
3454
|
+
), c5 = ({
|
|
3455
3455
|
width: i = 20,
|
|
3456
3456
|
height: o = 20,
|
|
3457
3457
|
color: e = "#001E52",
|
|
@@ -3486,7 +3486,7 @@ const o5 = ({
|
|
|
3486
3486
|
)
|
|
3487
3487
|
]
|
|
3488
3488
|
}
|
|
3489
|
-
),
|
|
3489
|
+
), a5 = ({
|
|
3490
3490
|
width: i = 18,
|
|
3491
3491
|
height: o = 18,
|
|
3492
3492
|
color: e = "#001E52",
|
|
@@ -3525,7 +3525,7 @@ const o5 = ({
|
|
|
3525
3525
|
)
|
|
3526
3526
|
]
|
|
3527
3527
|
}
|
|
3528
|
-
),
|
|
3528
|
+
), d5 = ({
|
|
3529
3529
|
width: i = 20,
|
|
3530
3530
|
height: o = 20,
|
|
3531
3531
|
color: e = "#001E52",
|
|
@@ -3551,7 +3551,7 @@ const o5 = ({
|
|
|
3551
3551
|
}
|
|
3552
3552
|
)
|
|
3553
3553
|
}
|
|
3554
|
-
),
|
|
3554
|
+
), C5 = ({
|
|
3555
3555
|
width: i = 20,
|
|
3556
3556
|
height: o = 20,
|
|
3557
3557
|
color: e = "#001E52",
|
|
@@ -3572,7 +3572,7 @@ const o5 = ({
|
|
|
3572
3572
|
/* @__PURE__ */ t("path", { d: "M16 4L4 16", stroke: e, strokeWidth: "1.5", strokeLinecap: "round" })
|
|
3573
3573
|
]
|
|
3574
3574
|
}
|
|
3575
|
-
),
|
|
3575
|
+
), w5 = ({
|
|
3576
3576
|
width: i = 20,
|
|
3577
3577
|
height: o = 20,
|
|
3578
3578
|
color: e = "#001E52",
|
|
@@ -3604,7 +3604,7 @@ const o5 = ({
|
|
|
3604
3604
|
)
|
|
3605
3605
|
]
|
|
3606
3606
|
}
|
|
3607
|
-
),
|
|
3607
|
+
), k5 = ({
|
|
3608
3608
|
width: i = 20,
|
|
3609
3609
|
height: o = 20,
|
|
3610
3610
|
color: e = "#001E52",
|
|
@@ -3658,7 +3658,7 @@ const o5 = ({
|
|
|
3658
3658
|
)
|
|
3659
3659
|
]
|
|
3660
3660
|
}
|
|
3661
|
-
),
|
|
3661
|
+
), g5 = ({
|
|
3662
3662
|
width: i = 20,
|
|
3663
3663
|
height: o = 20,
|
|
3664
3664
|
color: e = "#001E52",
|
|
@@ -3697,7 +3697,7 @@ const o5 = ({
|
|
|
3697
3697
|
/* @__PURE__ */ t("path", { d: "M3 12L17 12", stroke: e, strokeWidth: "2", strokeLinecap: "round" })
|
|
3698
3698
|
]
|
|
3699
3699
|
}
|
|
3700
|
-
),
|
|
3700
|
+
), p5 = ({
|
|
3701
3701
|
width: i = 16,
|
|
3702
3702
|
height: o = 12,
|
|
3703
3703
|
color: e = "#001E52",
|
|
@@ -3746,7 +3746,7 @@ const o5 = ({
|
|
|
3746
3746
|
)
|
|
3747
3747
|
] })
|
|
3748
3748
|
}
|
|
3749
|
-
),
|
|
3749
|
+
), L5 = ({
|
|
3750
3750
|
width: i = 16,
|
|
3751
3751
|
height: o = 16,
|
|
3752
3752
|
color: e = "#001E52",
|
|
@@ -3780,7 +3780,7 @@ const o5 = ({
|
|
|
3780
3780
|
)
|
|
3781
3781
|
]
|
|
3782
3782
|
}
|
|
3783
|
-
),
|
|
3783
|
+
), m5 = ({
|
|
3784
3784
|
width: i = 10,
|
|
3785
3785
|
height: o = 10,
|
|
3786
3786
|
color: e = "#001E52",
|
|
@@ -3819,7 +3819,7 @@ const o5 = ({
|
|
|
3819
3819
|
)
|
|
3820
3820
|
] })
|
|
3821
3821
|
}
|
|
3822
|
-
),
|
|
3822
|
+
), u5 = ({
|
|
3823
3823
|
width: i = 16,
|
|
3824
3824
|
height: o = 16,
|
|
3825
3825
|
color: e = "#001E52",
|
|
@@ -3855,7 +3855,7 @@ const o5 = ({
|
|
|
3855
3855
|
)
|
|
3856
3856
|
]
|
|
3857
3857
|
}
|
|
3858
|
-
),
|
|
3858
|
+
), v5 = ({
|
|
3859
3859
|
width: i = 11,
|
|
3860
3860
|
height: o = 32,
|
|
3861
3861
|
color: e = "#001E52",
|
|
@@ -3893,7 +3893,7 @@ const o5 = ({
|
|
|
3893
3893
|
/* @__PURE__ */ t("circle", { cx: "3", cy: "3", r: "3", fill: e })
|
|
3894
3894
|
]
|
|
3895
3895
|
}
|
|
3896
|
-
),
|
|
3896
|
+
), N5 = ({
|
|
3897
3897
|
width: i = 20,
|
|
3898
3898
|
height: o = 20,
|
|
3899
3899
|
color: e = "#001E52",
|
|
@@ -3940,7 +3940,7 @@ const o5 = ({
|
|
|
3940
3940
|
)
|
|
3941
3941
|
]
|
|
3942
3942
|
}
|
|
3943
|
-
),
|
|
3943
|
+
), f5 = ({
|
|
3944
3944
|
width: i = 20,
|
|
3945
3945
|
height: o = 20,
|
|
3946
3946
|
color: e = "#001E52",
|
|
@@ -3973,7 +3973,7 @@ const o5 = ({
|
|
|
3973
3973
|
)
|
|
3974
3974
|
]
|
|
3975
3975
|
}
|
|
3976
|
-
),
|
|
3976
|
+
), M5 = ({
|
|
3977
3977
|
width: i = 20,
|
|
3978
3978
|
height: o = 20,
|
|
3979
3979
|
color: e = "#001E52",
|
|
@@ -4020,7 +4020,7 @@ const o5 = ({
|
|
|
4020
4020
|
)
|
|
4021
4021
|
]
|
|
4022
4022
|
}
|
|
4023
|
-
),
|
|
4023
|
+
), x5 = ({
|
|
4024
4024
|
width: i = 20,
|
|
4025
4025
|
height: o = 20,
|
|
4026
4026
|
color: e = "#001E52",
|
|
@@ -4053,7 +4053,7 @@ const o5 = ({
|
|
|
4053
4053
|
)
|
|
4054
4054
|
]
|
|
4055
4055
|
}
|
|
4056
|
-
),
|
|
4056
|
+
), _5 = ({
|
|
4057
4057
|
width: i = 18,
|
|
4058
4058
|
height: o = 16,
|
|
4059
4059
|
color: e = "#001E52",
|
|
@@ -4092,7 +4092,7 @@ const o5 = ({
|
|
|
4092
4092
|
)
|
|
4093
4093
|
]
|
|
4094
4094
|
}
|
|
4095
|
-
),
|
|
4095
|
+
), R5 = ({
|
|
4096
4096
|
width: i = 20,
|
|
4097
4097
|
height: o = 20,
|
|
4098
4098
|
color: e = "#001E52",
|
|
@@ -4125,7 +4125,7 @@ const o5 = ({
|
|
|
4125
4125
|
)
|
|
4126
4126
|
]
|
|
4127
4127
|
}
|
|
4128
|
-
),
|
|
4128
|
+
), H5 = ({
|
|
4129
4129
|
width: i = 20,
|
|
4130
4130
|
height: o = 20,
|
|
4131
4131
|
color: e = "#001E52",
|
|
@@ -4149,7 +4149,7 @@ const o5 = ({
|
|
|
4149
4149
|
}
|
|
4150
4150
|
)
|
|
4151
4151
|
}
|
|
4152
|
-
),
|
|
4152
|
+
), V5 = ({
|
|
4153
4153
|
width: i = 20,
|
|
4154
4154
|
height: o = 20,
|
|
4155
4155
|
color: e = "#001E52",
|
|
@@ -4196,7 +4196,7 @@ const o5 = ({
|
|
|
4196
4196
|
)
|
|
4197
4197
|
]
|
|
4198
4198
|
}
|
|
4199
|
-
),
|
|
4199
|
+
), E5 = ({
|
|
4200
4200
|
width: i = 20,
|
|
4201
4201
|
height: o = 20,
|
|
4202
4202
|
color: e = "#001E52",
|
|
@@ -4229,7 +4229,7 @@ const o5 = ({
|
|
|
4229
4229
|
)
|
|
4230
4230
|
]
|
|
4231
4231
|
}
|
|
4232
|
-
),
|
|
4232
|
+
), Z5 = ({
|
|
4233
4233
|
width: i = 20,
|
|
4234
4234
|
height: o = 20,
|
|
4235
4235
|
color: e = "#001E52",
|
|
@@ -4262,7 +4262,7 @@ const o5 = ({
|
|
|
4262
4262
|
)
|
|
4263
4263
|
]
|
|
4264
4264
|
}
|
|
4265
|
-
),
|
|
4265
|
+
), W5 = ({
|
|
4266
4266
|
width: i = 20,
|
|
4267
4267
|
height: o = 23,
|
|
4268
4268
|
color: e = "#001E52",
|
|
@@ -4323,7 +4323,7 @@ const o5 = ({
|
|
|
4323
4323
|
)
|
|
4324
4324
|
]
|
|
4325
4325
|
}
|
|
4326
|
-
),
|
|
4326
|
+
), I5 = ({
|
|
4327
4327
|
width: i = 20,
|
|
4328
4328
|
height: o = 20,
|
|
4329
4329
|
color: e = "#001E52",
|
|
@@ -4363,7 +4363,7 @@ const o5 = ({
|
|
|
4363
4363
|
)
|
|
4364
4364
|
]
|
|
4365
4365
|
}
|
|
4366
|
-
),
|
|
4366
|
+
), B5 = ({
|
|
4367
4367
|
width: i = 32,
|
|
4368
4368
|
height: o = 25,
|
|
4369
4369
|
color: e = "#001E52",
|
|
@@ -4391,7 +4391,7 @@ const o5 = ({
|
|
|
4391
4391
|
)
|
|
4392
4392
|
]
|
|
4393
4393
|
}
|
|
4394
|
-
),
|
|
4394
|
+
), A5 = ({
|
|
4395
4395
|
width: i = 14,
|
|
4396
4396
|
height: o = 14,
|
|
4397
4397
|
color: e = "#10B981",
|
|
@@ -4420,7 +4420,7 @@ const o5 = ({
|
|
|
4420
4420
|
)
|
|
4421
4421
|
]
|
|
4422
4422
|
}
|
|
4423
|
-
),
|
|
4423
|
+
), G5 = ({
|
|
4424
4424
|
width: i = 11,
|
|
4425
4425
|
height: o = 11,
|
|
4426
4426
|
color: e = "#FFB020",
|
|
@@ -4454,7 +4454,7 @@ const o5 = ({
|
|
|
4454
4454
|
)
|
|
4455
4455
|
]
|
|
4456
4456
|
}
|
|
4457
|
-
),
|
|
4457
|
+
), D5 = ({
|
|
4458
4458
|
width: i = 10,
|
|
4459
4459
|
height: o = 10,
|
|
4460
4460
|
color: e = "#88A4FF",
|
|
@@ -4502,7 +4502,7 @@ const o5 = ({
|
|
|
4502
4502
|
)
|
|
4503
4503
|
]
|
|
4504
4504
|
}
|
|
4505
|
-
),
|
|
4505
|
+
), j5 = ({
|
|
4506
4506
|
width: i = 14,
|
|
4507
4507
|
height: o = 14,
|
|
4508
4508
|
color: e = "#8E8E93",
|
|
@@ -4530,7 +4530,7 @@ const o5 = ({
|
|
|
4530
4530
|
)
|
|
4531
4531
|
]
|
|
4532
4532
|
}
|
|
4533
|
-
),
|
|
4533
|
+
), T5 = ({
|
|
4534
4534
|
width: i = 14,
|
|
4535
4535
|
height: o = 14,
|
|
4536
4536
|
color: e = "#FFB020",
|
|
@@ -4564,7 +4564,7 @@ const o5 = ({
|
|
|
4564
4564
|
)
|
|
4565
4565
|
]
|
|
4566
4566
|
}
|
|
4567
|
-
),
|
|
4567
|
+
), y5 = ({
|
|
4568
4568
|
width: i = 14,
|
|
4569
4569
|
height: o = 14,
|
|
4570
4570
|
color: e = "#D0421B",
|
|
@@ -4612,7 +4612,7 @@ const o5 = ({
|
|
|
4612
4612
|
)
|
|
4613
4613
|
]
|
|
4614
4614
|
}
|
|
4615
|
-
),
|
|
4615
|
+
), Y5 = ({
|
|
4616
4616
|
width: i = 20,
|
|
4617
4617
|
height: o = 20,
|
|
4618
4618
|
color: e = "#070739",
|
|
@@ -4642,7 +4642,7 @@ const o5 = ({
|
|
|
4642
4642
|
/* @__PURE__ */ t("circle", { cx: "10", cy: "10", r: "2.375", stroke: e, strokeWidth: "1.25" })
|
|
4643
4643
|
]
|
|
4644
4644
|
}
|
|
4645
|
-
),
|
|
4645
|
+
), K5 = ({
|
|
4646
4646
|
width: i = 20,
|
|
4647
4647
|
height: o = 20,
|
|
4648
4648
|
color: e = "#070739",
|
|
@@ -4680,7 +4680,7 @@ const o5 = ({
|
|
|
4680
4680
|
)
|
|
4681
4681
|
]
|
|
4682
4682
|
}
|
|
4683
|
-
),
|
|
4683
|
+
), O5 = ({
|
|
4684
4684
|
width: i = 9,
|
|
4685
4685
|
height: o = 5,
|
|
4686
4686
|
color: e = "#001E52",
|
|
@@ -4706,7 +4706,7 @@ const o5 = ({
|
|
|
4706
4706
|
}
|
|
4707
4707
|
)
|
|
4708
4708
|
}
|
|
4709
|
-
),
|
|
4709
|
+
), b5 = ({
|
|
4710
4710
|
width: i = 20,
|
|
4711
4711
|
height: o = 20,
|
|
4712
4712
|
color: e = "#F2F2F7",
|
|
@@ -4735,7 +4735,7 @@ const o5 = ({
|
|
|
4735
4735
|
)
|
|
4736
4736
|
]
|
|
4737
4737
|
}
|
|
4738
|
-
),
|
|
4738
|
+
), F5 = ({
|
|
4739
4739
|
width: i = 20,
|
|
4740
4740
|
height: o = 20,
|
|
4741
4741
|
color: e = "#004ED7",
|
|
@@ -4764,7 +4764,7 @@ const o5 = ({
|
|
|
4764
4764
|
)
|
|
4765
4765
|
]
|
|
4766
4766
|
}
|
|
4767
|
-
),
|
|
4767
|
+
), S5 = ({
|
|
4768
4768
|
width: i = 248,
|
|
4769
4769
|
height: o = 248,
|
|
4770
4770
|
color: e = "#070739",
|
|
@@ -4801,7 +4801,7 @@ const o5 = ({
|
|
|
4801
4801
|
)
|
|
4802
4802
|
]
|
|
4803
4803
|
}
|
|
4804
|
-
),
|
|
4804
|
+
), U5 = ({
|
|
4805
4805
|
width: i = 24,
|
|
4806
4806
|
height: o = 24,
|
|
4807
4807
|
color: e = "#001E52",
|
|
@@ -4840,7 +4840,7 @@ const o5 = ({
|
|
|
4840
4840
|
)
|
|
4841
4841
|
]
|
|
4842
4842
|
}
|
|
4843
|
-
),
|
|
4843
|
+
), P5 = ({
|
|
4844
4844
|
width: i = 10,
|
|
4845
4845
|
height: o = 10,
|
|
4846
4846
|
color: e = "#001E52",
|
|
@@ -4869,7 +4869,7 @@ const o5 = ({
|
|
|
4869
4869
|
)
|
|
4870
4870
|
]
|
|
4871
4871
|
}
|
|
4872
|
-
),
|
|
4872
|
+
), $5 = ({
|
|
4873
4873
|
width: i = 10,
|
|
4874
4874
|
height: o = 10,
|
|
4875
4875
|
color: e = "#001E52",
|
|
@@ -4906,10 +4906,10 @@ const o5 = ({
|
|
|
4906
4906
|
)
|
|
4907
4907
|
]
|
|
4908
4908
|
}
|
|
4909
|
-
),
|
|
4909
|
+
), z5 = ({
|
|
4910
4910
|
width: i = 24,
|
|
4911
4911
|
height: o = 24,
|
|
4912
|
-
color: e =
|
|
4912
|
+
color: e = C.GREY_DARK_5,
|
|
4913
4913
|
className: l,
|
|
4914
4914
|
onClick: r
|
|
4915
4915
|
}) => /* @__PURE__ */ c(
|
|
@@ -4945,10 +4945,10 @@ const o5 = ({
|
|
|
4945
4945
|
)
|
|
4946
4946
|
]
|
|
4947
4947
|
}
|
|
4948
|
-
),
|
|
4948
|
+
), q5 = ({
|
|
4949
4949
|
width: i = 20,
|
|
4950
4950
|
height: o = 20,
|
|
4951
|
-
color: e =
|
|
4951
|
+
color: e = C.GREY_DARK_1,
|
|
4952
4952
|
className: l,
|
|
4953
4953
|
onClick: r
|
|
4954
4954
|
}) => /* @__PURE__ */ c(
|
|
@@ -4978,10 +4978,10 @@ const o5 = ({
|
|
|
4978
4978
|
)
|
|
4979
4979
|
]
|
|
4980
4980
|
}
|
|
4981
|
-
),
|
|
4981
|
+
), J5 = ({
|
|
4982
4982
|
width: i = 81,
|
|
4983
4983
|
height: o = 80,
|
|
4984
|
-
color: e =
|
|
4984
|
+
color: e = C.GREY_DARK_5,
|
|
4985
4985
|
className: l,
|
|
4986
4986
|
onClick: r
|
|
4987
4987
|
}) => /* @__PURE__ */ c(
|
|
@@ -5027,9 +5027,9 @@ const o5 = ({
|
|
|
5027
5027
|
)
|
|
5028
5028
|
]
|
|
5029
5029
|
}
|
|
5030
|
-
),
|
|
5030
|
+
), Q5 = ({
|
|
5031
5031
|
className: i,
|
|
5032
|
-
color: o =
|
|
5032
|
+
color: o = C.GREY_DARK_5,
|
|
5033
5033
|
height: e = 20,
|
|
5034
5034
|
width: l = 20,
|
|
5035
5035
|
onClick: r
|
|
@@ -5054,9 +5054,9 @@ const o5 = ({
|
|
|
5054
5054
|
}
|
|
5055
5055
|
)
|
|
5056
5056
|
}
|
|
5057
|
-
),
|
|
5057
|
+
), X5 = ({
|
|
5058
5058
|
className: i,
|
|
5059
|
-
color: o =
|
|
5059
|
+
color: o = C.GREY_DARK_5,
|
|
5060
5060
|
height: e = 20,
|
|
5061
5061
|
width: l = 20,
|
|
5062
5062
|
onClick: r
|
|
@@ -5081,9 +5081,9 @@ const o5 = ({
|
|
|
5081
5081
|
}
|
|
5082
5082
|
)
|
|
5083
5083
|
}
|
|
5084
|
-
),
|
|
5084
|
+
), e3 = ({
|
|
5085
5085
|
className: i,
|
|
5086
|
-
color: o =
|
|
5086
|
+
color: o = C.GREY_DARK_5,
|
|
5087
5087
|
height: e = 5,
|
|
5088
5088
|
width: l = 10,
|
|
5089
5089
|
onClick: r
|
|
@@ -5105,9 +5105,9 @@ const o5 = ({
|
|
|
5105
5105
|
}
|
|
5106
5106
|
)
|
|
5107
5107
|
}
|
|
5108
|
-
),
|
|
5108
|
+
), o3 = ({
|
|
5109
5109
|
className: i,
|
|
5110
|
-
color: o =
|
|
5110
|
+
color: o = C.GREY_DARK_5,
|
|
5111
5111
|
height: e = 5,
|
|
5112
5112
|
width: l = 10,
|
|
5113
5113
|
onClick: r
|
|
@@ -5130,9 +5130,9 @@ const o5 = ({
|
|
|
5130
5130
|
}
|
|
5131
5131
|
)
|
|
5132
5132
|
}
|
|
5133
|
-
),
|
|
5133
|
+
), i3 = ({
|
|
5134
5134
|
className: i,
|
|
5135
|
-
color: o =
|
|
5135
|
+
color: o = C.GREY_DARK_5,
|
|
5136
5136
|
height: e = 24,
|
|
5137
5137
|
width: l = 24,
|
|
5138
5138
|
onClick: r
|
|
@@ -5169,9 +5169,9 @@ const o5 = ({
|
|
|
5169
5169
|
)
|
|
5170
5170
|
]
|
|
5171
5171
|
}
|
|
5172
|
-
),
|
|
5172
|
+
), t3 = ({
|
|
5173
5173
|
className: i,
|
|
5174
|
-
color: o =
|
|
5174
|
+
color: o = C.GREY_DARK_5,
|
|
5175
5175
|
height: e = 24,
|
|
5176
5176
|
width: l = 24,
|
|
5177
5177
|
onClick: r
|
|
@@ -5208,9 +5208,9 @@ const o5 = ({
|
|
|
5208
5208
|
)
|
|
5209
5209
|
]
|
|
5210
5210
|
}
|
|
5211
|
-
),
|
|
5211
|
+
), l3 = ({
|
|
5212
5212
|
className: i,
|
|
5213
|
-
color: o =
|
|
5213
|
+
color: o = C.GREY_DARK_5,
|
|
5214
5214
|
height: e = 24,
|
|
5215
5215
|
width: l = 24,
|
|
5216
5216
|
onClick: r
|
|
@@ -5235,9 +5235,9 @@ const o5 = ({
|
|
|
5235
5235
|
}
|
|
5236
5236
|
)
|
|
5237
5237
|
}
|
|
5238
|
-
),
|
|
5238
|
+
), r3 = ({
|
|
5239
5239
|
className: i,
|
|
5240
|
-
color: o =
|
|
5240
|
+
color: o = C.GREY_DARK_5,
|
|
5241
5241
|
height: e = 24,
|
|
5242
5242
|
width: l = 24,
|
|
5243
5243
|
onClick: r
|
|
@@ -5294,9 +5294,9 @@ const o5 = ({
|
|
|
5294
5294
|
)
|
|
5295
5295
|
]
|
|
5296
5296
|
}
|
|
5297
|
-
),
|
|
5297
|
+
), s3 = ({
|
|
5298
5298
|
className: i,
|
|
5299
|
-
color: o =
|
|
5299
|
+
color: o = C.GREY_DARK_5,
|
|
5300
5300
|
height: e = 24,
|
|
5301
5301
|
width: l = 24,
|
|
5302
5302
|
onClick: r
|
|
@@ -5331,9 +5331,9 @@ const o5 = ({
|
|
|
5331
5331
|
)
|
|
5332
5332
|
]
|
|
5333
5333
|
}
|
|
5334
|
-
),
|
|
5334
|
+
), n3 = ({
|
|
5335
5335
|
className: i,
|
|
5336
|
-
color: o =
|
|
5336
|
+
color: o = C.GREY_DARK_3,
|
|
5337
5337
|
height: e = 14,
|
|
5338
5338
|
width: l = 14,
|
|
5339
5339
|
onClick: r
|
|
@@ -5368,9 +5368,9 @@ const o5 = ({
|
|
|
5368
5368
|
)
|
|
5369
5369
|
]
|
|
5370
5370
|
}
|
|
5371
|
-
),
|
|
5371
|
+
), h3 = ({
|
|
5372
5372
|
className: i,
|
|
5373
|
-
color: o =
|
|
5373
|
+
color: o = C.GREY_DARK_5,
|
|
5374
5374
|
height: e = 18,
|
|
5375
5375
|
onClick: l,
|
|
5376
5376
|
width: r = 18
|
|
@@ -5395,9 +5395,9 @@ const o5 = ({
|
|
|
5395
5395
|
}
|
|
5396
5396
|
)
|
|
5397
5397
|
}
|
|
5398
|
-
),
|
|
5398
|
+
), c3 = ({
|
|
5399
5399
|
className: i,
|
|
5400
|
-
color: o =
|
|
5400
|
+
color: o = C.GREY_DARK_5,
|
|
5401
5401
|
height: e = 24,
|
|
5402
5402
|
width: l = 24,
|
|
5403
5403
|
onClick: r
|
|
@@ -5447,9 +5447,9 @@ const o5 = ({
|
|
|
5447
5447
|
)
|
|
5448
5448
|
]
|
|
5449
5449
|
}
|
|
5450
|
-
),
|
|
5450
|
+
), a3 = ({
|
|
5451
5451
|
className: i,
|
|
5452
|
-
color: o =
|
|
5452
|
+
color: o = C.GREY_DARK_5,
|
|
5453
5453
|
height: e = 24,
|
|
5454
5454
|
width: l = 24,
|
|
5455
5455
|
onClick: r
|
|
@@ -5484,9 +5484,9 @@ const o5 = ({
|
|
|
5484
5484
|
)
|
|
5485
5485
|
]
|
|
5486
5486
|
}
|
|
5487
|
-
),
|
|
5487
|
+
), d3 = ({
|
|
5488
5488
|
className: i,
|
|
5489
|
-
color: o =
|
|
5489
|
+
color: o = C.NOTIFICATION_WARNING_DARK,
|
|
5490
5490
|
height: e = 37,
|
|
5491
5491
|
width: l = 36,
|
|
5492
5492
|
onClick: r
|
|
@@ -5523,9 +5523,9 @@ const o5 = ({
|
|
|
5523
5523
|
)
|
|
5524
5524
|
]
|
|
5525
5525
|
}
|
|
5526
|
-
),
|
|
5526
|
+
), C3 = ({
|
|
5527
5527
|
className: i,
|
|
5528
|
-
color: o =
|
|
5528
|
+
color: o = C.GREY_DARK_5,
|
|
5529
5529
|
height: e = 24,
|
|
5530
5530
|
width: l = 24,
|
|
5531
5531
|
onClick: r
|
|
@@ -5549,9 +5549,9 @@ const o5 = ({
|
|
|
5549
5549
|
}
|
|
5550
5550
|
)
|
|
5551
5551
|
}
|
|
5552
|
-
),
|
|
5552
|
+
), w3 = ({
|
|
5553
5553
|
className: i,
|
|
5554
|
-
color: o =
|
|
5554
|
+
color: o = C.GREY_DARK_5,
|
|
5555
5555
|
height: e = 24,
|
|
5556
5556
|
width: l = 24,
|
|
5557
5557
|
onClick: r
|
|
@@ -5588,9 +5588,9 @@ const o5 = ({
|
|
|
5588
5588
|
)
|
|
5589
5589
|
]
|
|
5590
5590
|
}
|
|
5591
|
-
),
|
|
5591
|
+
), k3 = ({
|
|
5592
5592
|
className: i,
|
|
5593
|
-
color: o =
|
|
5593
|
+
color: o = C.GREY_DARK_5,
|
|
5594
5594
|
height: e = 24,
|
|
5595
5595
|
width: l = 24,
|
|
5596
5596
|
onClick: r
|
|
@@ -5627,9 +5627,9 @@ const o5 = ({
|
|
|
5627
5627
|
)
|
|
5628
5628
|
]
|
|
5629
5629
|
}
|
|
5630
|
-
),
|
|
5630
|
+
), g3 = ({
|
|
5631
5631
|
className: i,
|
|
5632
|
-
color: o =
|
|
5632
|
+
color: o = C.GREY_DARK_5,
|
|
5633
5633
|
height: e = 24,
|
|
5634
5634
|
width: l = 24,
|
|
5635
5635
|
onClick: r
|
|
@@ -5696,9 +5696,9 @@ const o5 = ({
|
|
|
5696
5696
|
)
|
|
5697
5697
|
]
|
|
5698
5698
|
}
|
|
5699
|
-
),
|
|
5699
|
+
), p3 = ({
|
|
5700
5700
|
className: i,
|
|
5701
|
-
color: o =
|
|
5701
|
+
color: o = C.GREY_DARK_5,
|
|
5702
5702
|
height: e = 24,
|
|
5703
5703
|
width: l = 24,
|
|
5704
5704
|
onClick: r
|
|
@@ -5735,9 +5735,9 @@ const o5 = ({
|
|
|
5735
5735
|
)
|
|
5736
5736
|
]
|
|
5737
5737
|
}
|
|
5738
|
-
),
|
|
5738
|
+
), L3 = ({
|
|
5739
5739
|
className: i,
|
|
5740
|
-
color: o =
|
|
5740
|
+
color: o = C.GREY_DARK_5,
|
|
5741
5741
|
height: e = 24,
|
|
5742
5742
|
width: l = 24,
|
|
5743
5743
|
onClick: r
|
|
@@ -5792,9 +5792,9 @@ const o5 = ({
|
|
|
5792
5792
|
)
|
|
5793
5793
|
]
|
|
5794
5794
|
}
|
|
5795
|
-
),
|
|
5795
|
+
), m3 = ({
|
|
5796
5796
|
className: i,
|
|
5797
|
-
color: o =
|
|
5797
|
+
color: o = C.GREY_DARK_5,
|
|
5798
5798
|
height: e = 24,
|
|
5799
5799
|
width: l = 24,
|
|
5800
5800
|
onClick: r
|
|
@@ -5831,9 +5831,9 @@ const o5 = ({
|
|
|
5831
5831
|
)
|
|
5832
5832
|
]
|
|
5833
5833
|
}
|
|
5834
|
-
),
|
|
5834
|
+
), u3 = ({
|
|
5835
5835
|
className: i,
|
|
5836
|
-
color: o =
|
|
5836
|
+
color: o = C.GREY_DARK_5,
|
|
5837
5837
|
height: e = 24,
|
|
5838
5838
|
width: l = 24,
|
|
5839
5839
|
onClick: r
|
|
@@ -5880,9 +5880,9 @@ const o5 = ({
|
|
|
5880
5880
|
)
|
|
5881
5881
|
]
|
|
5882
5882
|
}
|
|
5883
|
-
),
|
|
5883
|
+
), v3 = ({
|
|
5884
5884
|
className: i,
|
|
5885
|
-
color: o =
|
|
5885
|
+
color: o = C.GREY_DARK_5,
|
|
5886
5886
|
height: e = 24,
|
|
5887
5887
|
width: l = 24,
|
|
5888
5888
|
onClick: r
|
|
@@ -5919,9 +5919,9 @@ const o5 = ({
|
|
|
5919
5919
|
)
|
|
5920
5920
|
]
|
|
5921
5921
|
}
|
|
5922
|
-
),
|
|
5922
|
+
), N3 = ({
|
|
5923
5923
|
className: i,
|
|
5924
|
-
color: o =
|
|
5924
|
+
color: o = C.GREY_DARK_5,
|
|
5925
5925
|
height: e = 24,
|
|
5926
5926
|
width: l = 24,
|
|
5927
5927
|
onClick: r
|
|
@@ -5946,9 +5946,9 @@ const o5 = ({
|
|
|
5946
5946
|
}
|
|
5947
5947
|
)
|
|
5948
5948
|
}
|
|
5949
|
-
),
|
|
5949
|
+
), f3 = ({
|
|
5950
5950
|
className: i,
|
|
5951
|
-
color: o =
|
|
5951
|
+
color: o = C.GREY_DARK_5,
|
|
5952
5952
|
height: e = 24,
|
|
5953
5953
|
width: l = 24,
|
|
5954
5954
|
onClick: r
|
|
@@ -5984,9 +5984,9 @@ const o5 = ({
|
|
|
5984
5984
|
)
|
|
5985
5985
|
]
|
|
5986
5986
|
}
|
|
5987
|
-
),
|
|
5987
|
+
), M3 = ({
|
|
5988
5988
|
className: i,
|
|
5989
|
-
color: o =
|
|
5989
|
+
color: o = C.GREY_DARK_5,
|
|
5990
5990
|
height: e = 24,
|
|
5991
5991
|
width: l = 24,
|
|
5992
5992
|
onClick: r
|
|
@@ -6005,9 +6005,9 @@ const o5 = ({
|
|
|
6005
6005
|
/* @__PURE__ */ t("path", { d: "M12 8L4 8", stroke: o, strokeWidth: "1.7", strokeLinecap: "round" })
|
|
6006
6006
|
]
|
|
6007
6007
|
}
|
|
6008
|
-
),
|
|
6008
|
+
), x3 = ({
|
|
6009
6009
|
className: i,
|
|
6010
|
-
color: o =
|
|
6010
|
+
color: o = C.GREY_DARK_5,
|
|
6011
6011
|
height: e = 24,
|
|
6012
6012
|
width: l = 24,
|
|
6013
6013
|
onClick: r
|
|
@@ -6044,9 +6044,9 @@ const o5 = ({
|
|
|
6044
6044
|
)
|
|
6045
6045
|
]
|
|
6046
6046
|
}
|
|
6047
|
-
),
|
|
6047
|
+
), _3 = ({
|
|
6048
6048
|
className: i,
|
|
6049
|
-
color: o =
|
|
6049
|
+
color: o = C.GREY_DARK_5,
|
|
6050
6050
|
height: e = 24,
|
|
6051
6051
|
width: l = 24,
|
|
6052
6052
|
onClick: r
|
|
@@ -6083,9 +6083,9 @@ const o5 = ({
|
|
|
6083
6083
|
)
|
|
6084
6084
|
]
|
|
6085
6085
|
}
|
|
6086
|
-
),
|
|
6086
|
+
), R3 = ({
|
|
6087
6087
|
className: i,
|
|
6088
|
-
color: o =
|
|
6088
|
+
color: o = C.GREY_DARK_5,
|
|
6089
6089
|
height: e = 24,
|
|
6090
6090
|
width: l = 24,
|
|
6091
6091
|
onClick: r
|
|
@@ -6122,9 +6122,9 @@ const o5 = ({
|
|
|
6122
6122
|
)
|
|
6123
6123
|
]
|
|
6124
6124
|
}
|
|
6125
|
-
),
|
|
6125
|
+
), H3 = ({
|
|
6126
6126
|
className: i,
|
|
6127
|
-
color: o =
|
|
6127
|
+
color: o = C.GREY_DARK_2,
|
|
6128
6128
|
height: e = 16,
|
|
6129
6129
|
width: l = 16,
|
|
6130
6130
|
onClick: r
|
|
@@ -6148,9 +6148,9 @@ const o5 = ({
|
|
|
6148
6148
|
}
|
|
6149
6149
|
)
|
|
6150
6150
|
}
|
|
6151
|
-
),
|
|
6151
|
+
), V3 = ({
|
|
6152
6152
|
className: i,
|
|
6153
|
-
color: o =
|
|
6153
|
+
color: o = C.GREY_DARK_5,
|
|
6154
6154
|
height: e = 20,
|
|
6155
6155
|
width: l = 20,
|
|
6156
6156
|
onClick: r
|
|
@@ -6177,9 +6177,9 @@ const o5 = ({
|
|
|
6177
6177
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5989", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6178
6178
|
]
|
|
6179
6179
|
}
|
|
6180
|
-
),
|
|
6180
|
+
), E3 = ({
|
|
6181
6181
|
className: i,
|
|
6182
|
-
color: o =
|
|
6182
|
+
color: o = C.GREY_DARK_5,
|
|
6183
6183
|
height: e = 20,
|
|
6184
6184
|
width: l = 20,
|
|
6185
6185
|
onClick: r
|
|
@@ -6206,9 +6206,9 @@ const o5 = ({
|
|
|
6206
6206
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5988", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6207
6207
|
]
|
|
6208
6208
|
}
|
|
6209
|
-
),
|
|
6209
|
+
), Z3 = ({
|
|
6210
6210
|
className: i,
|
|
6211
|
-
color: o =
|
|
6211
|
+
color: o = C.GREY_DARK_5,
|
|
6212
6212
|
height: e = 20,
|
|
6213
6213
|
width: l = 20,
|
|
6214
6214
|
onClick: r
|
|
@@ -6223,7 +6223,7 @@ const o5 = ({
|
|
|
6223
6223
|
fill: "none",
|
|
6224
6224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6225
6225
|
children: [
|
|
6226
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
6226
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: C.GREY_LIGHT_2 }),
|
|
6227
6227
|
/* @__PURE__ */ t(
|
|
6228
6228
|
"path",
|
|
6229
6229
|
{
|
|
@@ -6235,9 +6235,9 @@ const o5 = ({
|
|
|
6235
6235
|
)
|
|
6236
6236
|
]
|
|
6237
6237
|
}
|
|
6238
|
-
),
|
|
6238
|
+
), W3 = ({
|
|
6239
6239
|
className: i,
|
|
6240
|
-
color: o =
|
|
6240
|
+
color: o = C.GREY_DARK_5,
|
|
6241
6241
|
height: e = 20,
|
|
6242
6242
|
width: l = 20,
|
|
6243
6243
|
onClick: r
|
|
@@ -6252,7 +6252,7 @@ const o5 = ({
|
|
|
6252
6252
|
fill: "none",
|
|
6253
6253
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6254
6254
|
children: [
|
|
6255
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
6255
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: C.GREY_LIGHT_2 }),
|
|
6256
6256
|
/* @__PURE__ */ t(
|
|
6257
6257
|
"path",
|
|
6258
6258
|
{
|
|
@@ -6264,7 +6264,7 @@ const o5 = ({
|
|
|
6264
6264
|
)
|
|
6265
6265
|
]
|
|
6266
6266
|
}
|
|
6267
|
-
),
|
|
6267
|
+
), I3 = ({
|
|
6268
6268
|
className: i,
|
|
6269
6269
|
color: o = "#001E52",
|
|
6270
6270
|
height: e = 24,
|
|
@@ -6290,7 +6290,7 @@ const o5 = ({
|
|
|
6290
6290
|
}
|
|
6291
6291
|
)
|
|
6292
6292
|
}
|
|
6293
|
-
),
|
|
6293
|
+
), B3 = ({
|
|
6294
6294
|
className: i,
|
|
6295
6295
|
color: o = "#131314",
|
|
6296
6296
|
height: e = 20,
|
|
@@ -6318,7 +6318,7 @@ const o5 = ({
|
|
|
6318
6318
|
}
|
|
6319
6319
|
)
|
|
6320
6320
|
}
|
|
6321
|
-
),
|
|
6321
|
+
), A3 = ({
|
|
6322
6322
|
className: i,
|
|
6323
6323
|
color: o = "#001E52",
|
|
6324
6324
|
height: e = 24,
|
|
@@ -6356,7 +6356,7 @@ const o5 = ({
|
|
|
6356
6356
|
)
|
|
6357
6357
|
] }) })
|
|
6358
6358
|
}
|
|
6359
|
-
),
|
|
6359
|
+
), G3 = ({
|
|
6360
6360
|
name: i,
|
|
6361
6361
|
width: o,
|
|
6362
6362
|
height: e,
|
|
@@ -6365,275 +6365,275 @@ const o5 = ({
|
|
|
6365
6365
|
disabled: w = !1,
|
|
6366
6366
|
onClick: g
|
|
6367
6367
|
}) => {
|
|
6368
|
-
const [
|
|
6369
|
-
return
|
|
6368
|
+
const [s, p] = u(r), { theme: k } = o1(a1), n = w ? k && k === "dark" ? C.GREY_LIGHT_4 : C.GREY_DARK_1 : l, h = w ? void 0 : g;
|
|
6369
|
+
return E(() => {
|
|
6370
6370
|
if (r) {
|
|
6371
6371
|
h && !w && p(`${r} clickable`);
|
|
6372
6372
|
return;
|
|
6373
6373
|
}
|
|
6374
6374
|
h && !w && p("clickable");
|
|
6375
|
-
}, [h, r, w]), /* @__PURE__ */ t(
|
|
6375
|
+
}, [h, r, w]), /* @__PURE__ */ t(I, { children: (() => {
|
|
6376
6376
|
switch (i) {
|
|
6377
6377
|
case "nextIcon":
|
|
6378
|
-
return
|
|
6378
|
+
return Q5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6379
6379
|
case "prevIcon":
|
|
6380
|
-
return
|
|
6380
|
+
return X5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6381
6381
|
case "arrowUp":
|
|
6382
|
-
return
|
|
6382
|
+
return s5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6383
6383
|
case "arrowDown":
|
|
6384
|
-
return
|
|
6384
|
+
return n5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6385
6385
|
case "info":
|
|
6386
|
-
return
|
|
6386
|
+
return h5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6387
6387
|
case "arrowRight":
|
|
6388
|
-
return
|
|
6388
|
+
return c5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6389
6389
|
case "calendar":
|
|
6390
|
-
return
|
|
6390
|
+
return a5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6391
6391
|
case "ok":
|
|
6392
|
-
return
|
|
6392
|
+
return d5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6393
6393
|
case "cancel":
|
|
6394
|
-
return
|
|
6394
|
+
return C5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6395
6395
|
case "add":
|
|
6396
|
-
return
|
|
6396
|
+
return w5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6397
6397
|
case "list":
|
|
6398
|
-
return
|
|
6398
|
+
return k5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6399
6399
|
case "dragAndDrop":
|
|
6400
|
-
return
|
|
6400
|
+
return g5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6401
6401
|
case "filter":
|
|
6402
|
-
return
|
|
6402
|
+
return p5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6403
6403
|
case "attention":
|
|
6404
|
-
return
|
|
6404
|
+
return L5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6405
6405
|
case "plus":
|
|
6406
|
-
return
|
|
6406
|
+
return m5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6407
6407
|
case "time":
|
|
6408
|
-
return
|
|
6408
|
+
return u5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6409
6409
|
case "arrowDownLong":
|
|
6410
|
-
return
|
|
6410
|
+
return v5({
|
|
6411
6411
|
width: o,
|
|
6412
6412
|
height: e,
|
|
6413
|
-
color:
|
|
6414
|
-
className:
|
|
6413
|
+
color: n,
|
|
6414
|
+
className: s,
|
|
6415
6415
|
onClick: h
|
|
6416
6416
|
});
|
|
6417
6417
|
case "users":
|
|
6418
|
-
return
|
|
6418
|
+
return N5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6419
6419
|
case "mySkillsMatrix":
|
|
6420
|
-
return
|
|
6420
|
+
return f5({
|
|
6421
6421
|
width: o,
|
|
6422
6422
|
height: e,
|
|
6423
|
-
color:
|
|
6424
|
-
className:
|
|
6423
|
+
color: n,
|
|
6424
|
+
className: s,
|
|
6425
6425
|
onClick: h
|
|
6426
6426
|
});
|
|
6427
6427
|
case "skills":
|
|
6428
|
-
return
|
|
6428
|
+
return M5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6429
6429
|
case "skillsMatrices":
|
|
6430
|
-
return
|
|
6430
|
+
return x5({
|
|
6431
6431
|
width: o,
|
|
6432
6432
|
height: e,
|
|
6433
|
-
color:
|
|
6434
|
-
className:
|
|
6433
|
+
color: n,
|
|
6434
|
+
className: s,
|
|
6435
6435
|
onClick: h
|
|
6436
6436
|
});
|
|
6437
6437
|
case "history":
|
|
6438
|
-
return
|
|
6438
|
+
return _5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6439
6439
|
case "logOut":
|
|
6440
|
-
return
|
|
6440
|
+
return R5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6441
6441
|
case "settings":
|
|
6442
|
-
return
|
|
6442
|
+
return H5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6443
6443
|
case "addSkill":
|
|
6444
|
-
return
|
|
6444
|
+
return V5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6445
6445
|
case "conversation":
|
|
6446
|
-
return
|
|
6446
|
+
return E5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6447
6447
|
case "trash":
|
|
6448
|
-
return
|
|
6448
|
+
return Z5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6449
6449
|
case "settings4":
|
|
6450
|
-
return
|
|
6450
|
+
return W5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6451
6451
|
case "edit2":
|
|
6452
|
-
return
|
|
6452
|
+
return I5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6453
6453
|
case "notifications":
|
|
6454
|
-
return
|
|
6454
|
+
return B5({
|
|
6455
6455
|
width: o,
|
|
6456
6456
|
height: e,
|
|
6457
|
-
color:
|
|
6458
|
-
className:
|
|
6457
|
+
color: n,
|
|
6458
|
+
className: s,
|
|
6459
6459
|
onClick: h
|
|
6460
6460
|
});
|
|
6461
6461
|
case "success":
|
|
6462
|
-
return
|
|
6462
|
+
return A5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6463
6463
|
case "attentionSmall":
|
|
6464
|
-
return
|
|
6464
|
+
return G5({
|
|
6465
6465
|
width: o,
|
|
6466
6466
|
height: e,
|
|
6467
|
-
color:
|
|
6468
|
-
className:
|
|
6467
|
+
color: n,
|
|
6468
|
+
className: s,
|
|
6469
6469
|
onClick: h
|
|
6470
6470
|
});
|
|
6471
6471
|
case "errorSmall":
|
|
6472
|
-
return
|
|
6472
|
+
return D5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6473
6473
|
case "infoMedium":
|
|
6474
|
-
return
|
|
6474
|
+
return j5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6475
6475
|
case "attentionMedium":
|
|
6476
|
-
return
|
|
6476
|
+
return T5({
|
|
6477
6477
|
width: o,
|
|
6478
6478
|
height: e,
|
|
6479
|
-
color:
|
|
6480
|
-
className:
|
|
6479
|
+
color: n,
|
|
6480
|
+
className: s,
|
|
6481
6481
|
onClick: h
|
|
6482
6482
|
});
|
|
6483
6483
|
case "errorMedium":
|
|
6484
|
-
return
|
|
6484
|
+
return y5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6485
6485
|
case "faviconSkills":
|
|
6486
|
-
return
|
|
6486
|
+
return S5({
|
|
6487
6487
|
width: o,
|
|
6488
6488
|
height: e,
|
|
6489
|
-
color:
|
|
6490
|
-
className:
|
|
6489
|
+
color: n,
|
|
6490
|
+
className: s,
|
|
6491
6491
|
onClick: h
|
|
6492
6492
|
});
|
|
6493
6493
|
case "visibilityIcon":
|
|
6494
|
-
return
|
|
6494
|
+
return Y5({
|
|
6495
6495
|
width: o,
|
|
6496
6496
|
height: e,
|
|
6497
|
-
color:
|
|
6498
|
-
className:
|
|
6497
|
+
color: n,
|
|
6498
|
+
className: s,
|
|
6499
6499
|
onClick: h
|
|
6500
6500
|
});
|
|
6501
6501
|
case "visibilityOffIcon":
|
|
6502
|
-
return
|
|
6502
|
+
return K5({
|
|
6503
6503
|
width: o,
|
|
6504
6504
|
height: e,
|
|
6505
|
-
color:
|
|
6506
|
-
className:
|
|
6505
|
+
color: n,
|
|
6506
|
+
className: s,
|
|
6507
6507
|
onClick: h
|
|
6508
6508
|
});
|
|
6509
6509
|
case "selectArrowIcon":
|
|
6510
|
-
return
|
|
6510
|
+
return O5({
|
|
6511
6511
|
width: o,
|
|
6512
6512
|
height: e,
|
|
6513
|
-
color:
|
|
6514
|
-
className:
|
|
6513
|
+
color: n,
|
|
6514
|
+
className: s,
|
|
6515
6515
|
onClick: h
|
|
6516
6516
|
});
|
|
6517
6517
|
case "expandArrowIcon":
|
|
6518
|
-
return
|
|
6518
|
+
return b5({
|
|
6519
6519
|
width: o,
|
|
6520
6520
|
height: e,
|
|
6521
|
-
color:
|
|
6522
|
-
className:
|
|
6521
|
+
color: n,
|
|
6522
|
+
className: s,
|
|
6523
6523
|
onClick: h
|
|
6524
6524
|
});
|
|
6525
6525
|
case "expandActiveArrowIcon":
|
|
6526
|
-
return
|
|
6526
|
+
return F5({
|
|
6527
6527
|
width: o,
|
|
6528
6528
|
height: e,
|
|
6529
|
-
color:
|
|
6530
|
-
className:
|
|
6529
|
+
color: n,
|
|
6530
|
+
className: s,
|
|
6531
6531
|
onClick: h
|
|
6532
6532
|
});
|
|
6533
6533
|
case "camera":
|
|
6534
|
-
return
|
|
6534
|
+
return U5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6535
6535
|
case "sortUp":
|
|
6536
|
-
return
|
|
6536
|
+
return P5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6537
6537
|
case "sortDown":
|
|
6538
|
-
return
|
|
6538
|
+
return $5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6539
6539
|
case "logOut2":
|
|
6540
|
-
return
|
|
6540
|
+
return z5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6541
6541
|
case "search":
|
|
6542
|
-
return
|
|
6542
|
+
return q5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6543
6543
|
case "handRock":
|
|
6544
|
-
return
|
|
6544
|
+
return J5({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6545
6545
|
case "arrowUpFilled":
|
|
6546
|
-
return
|
|
6546
|
+
return o3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6547
6547
|
case "arrowDownFilled":
|
|
6548
|
-
return
|
|
6548
|
+
return e3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6549
6549
|
case "link":
|
|
6550
|
-
return
|
|
6550
|
+
return i3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6551
6551
|
case "telegram":
|
|
6552
|
-
return
|
|
6552
|
+
return l3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6553
6553
|
case "mail":
|
|
6554
|
-
return
|
|
6554
|
+
return s3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6555
6555
|
case "github":
|
|
6556
|
-
return
|
|
6556
|
+
return t3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6557
6557
|
case "linkedIn":
|
|
6558
|
-
return
|
|
6558
|
+
return r3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6559
6559
|
case "emptyStateIcon":
|
|
6560
|
-
return
|
|
6560
|
+
return n3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6561
6561
|
case "filtersIcon":
|
|
6562
|
-
return
|
|
6562
|
+
return h3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6563
6563
|
case "dotMenuIcon":
|
|
6564
|
-
return
|
|
6564
|
+
return c3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6565
6565
|
case "plusCircle":
|
|
6566
|
-
return
|
|
6566
|
+
return a3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6567
6567
|
case "warning":
|
|
6568
|
-
return
|
|
6568
|
+
return d3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6569
6569
|
case "back":
|
|
6570
|
-
return
|
|
6570
|
+
return C3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6571
6571
|
case "bell":
|
|
6572
|
-
return
|
|
6572
|
+
return w3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6573
6573
|
case "contract":
|
|
6574
|
-
return
|
|
6574
|
+
return g3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6575
6575
|
case "trash2":
|
|
6576
|
-
return
|
|
6576
|
+
return k3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6577
6577
|
case "manager":
|
|
6578
|
-
return
|
|
6578
|
+
return p3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6579
6579
|
case "resourceManager":
|
|
6580
|
-
return
|
|
6580
|
+
return L3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6581
6581
|
case "settings2":
|
|
6582
|
-
return
|
|
6582
|
+
return m3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6583
6583
|
case "image":
|
|
6584
|
-
return
|
|
6584
|
+
return u3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6585
6585
|
case "upload":
|
|
6586
|
-
return
|
|
6586
|
+
return v3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6587
6587
|
case "edit":
|
|
6588
|
-
return
|
|
6588
|
+
return N3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6589
6589
|
case "location":
|
|
6590
|
-
return
|
|
6590
|
+
return f3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6591
6591
|
case "plus2":
|
|
6592
|
-
return
|
|
6592
|
+
return M3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6593
6593
|
case "search2":
|
|
6594
|
-
return
|
|
6594
|
+
return x3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6595
6595
|
case "fastArrowLeft":
|
|
6596
|
-
return
|
|
6596
|
+
return _3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6597
6597
|
case "fastArrowRight":
|
|
6598
|
-
return
|
|
6598
|
+
return R3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6599
6599
|
case "crossInCircle":
|
|
6600
|
-
return
|
|
6600
|
+
return H3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6601
6601
|
case "arrowUp2":
|
|
6602
|
-
return
|
|
6602
|
+
return E3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6603
6603
|
case "arrowDown2":
|
|
6604
|
-
return
|
|
6604
|
+
return V3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6605
6605
|
case "filledArrowLeft":
|
|
6606
|
-
return
|
|
6606
|
+
return Z3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6607
6607
|
case "filledArrowRight":
|
|
6608
|
-
return
|
|
6608
|
+
return W3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6609
6609
|
case "burgerMenu":
|
|
6610
|
-
return
|
|
6610
|
+
return I3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6611
6611
|
case "signOut":
|
|
6612
|
-
return
|
|
6612
|
+
return B3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6613
6613
|
case "refresh":
|
|
6614
|
-
return
|
|
6614
|
+
return A3({ width: o, height: e, color: n, className: s, onClick: h });
|
|
6615
6615
|
default:
|
|
6616
|
-
return /* @__PURE__ */ t(
|
|
6616
|
+
return /* @__PURE__ */ t(I, { children: "No Icon provided" });
|
|
6617
6617
|
}
|
|
6618
6618
|
})() });
|
|
6619
6619
|
};
|
|
6620
|
-
var
|
|
6621
|
-
const
|
|
6620
|
+
var d1 = /* @__PURE__ */ ((i) => (i.GREY_LIGHT_0 = "var(--grey-light-0)", i.GREY_LIGHT_1 = "var(--grey-light-1)", i.GREY_LIGHT_2 = "var(--grey-light-2)", i.GREY_LIGHT_3 = "var(--grey-light-3)", i.GREY_LIGHT_4 = "var(--grey-light-4)", i.GREY_DARK_1 = "var(--grey-dark-1)", i.GREY_DARK_2 = "var(--grey-dark-2)", i.GREY_DARK_3 = "var(--grey-dark-3)", i.GREY_DARK_4 = "var(--grey-dark-4)", i.GREY_DARK_5 = "var(--grey-dark-5)", i.BLUE_PRIMARY = "var(--blue-primary)", i.BLUE_HOVER = "var(--blue-hover)", i.BLUE_LIGHT_1 = "var(--blue-light-1)", i.BLUE_LIGHT_2 = "var(--blue-light-2)", i.BLUE_LIGHT_3 = "var(--blue-light-3)", i.BLUE_LIGHT_4 = "var(--blue-light-4)", i.BLUE_DARK_1 = "var(--blue-dark-1)", i.PURPLE_LIGHT = "var(--purple-light)", i.PURPLE_DARK = "var(--purple-dark)", i.NOTIFICATION_WARNING_LIGHT = "var(--notification-warning-light)", i.NOTIFICATION_WARNING_DARK = "var(--notification-warning-dark)", i.NOTIFICATION_SUCCESS_LIGHT = "var(--notification-success-light)", i.NOTIFICATION_SUCCESS_DARK = "var(--notification-success-dark)", i.NOTIFICATION_ERROR_LIGHT = "var(--notification-error-light)", i.NOTIFICATION_ERROR_DARK = "var(--notification-error-dark)", i.NOTIFICATION_ERROR_DARK_MODE = "var(--notification-error-dark-mode)", i))(d1 || {});
|
|
6621
|
+
const D3 = z({
|
|
6622
6622
|
locale: "en",
|
|
6623
6623
|
theme: "light"
|
|
6624
6624
|
});
|
|
6625
|
-
|
|
6626
|
-
const
|
|
6625
|
+
D3.Provider;
|
|
6626
|
+
const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r = !0 }) => {
|
|
6627
6627
|
const w = e === "small" ? 10 : 12.5;
|
|
6628
6628
|
return /* @__PURE__ */ t(
|
|
6629
|
-
|
|
6629
|
+
n1,
|
|
6630
6630
|
{
|
|
6631
6631
|
className: `snmt-tag ${e}`,
|
|
6632
6632
|
closeIcon: /* @__PURE__ */ t(
|
|
6633
|
-
|
|
6633
|
+
G3,
|
|
6634
6634
|
{
|
|
6635
6635
|
name: "errorSmall",
|
|
6636
|
-
color:
|
|
6636
|
+
color: d1.GREY_DARK_2,
|
|
6637
6637
|
width: w,
|
|
6638
6638
|
height: w,
|
|
6639
6639
|
onClick: l
|
|
@@ -6642,15 +6642,15 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6642
6642
|
bordered: !1,
|
|
6643
6643
|
style: { width: o ?? "fit-content" },
|
|
6644
6644
|
closable: r,
|
|
6645
|
-
children: typeof i == "string" ? /* @__PURE__ */ t(
|
|
6645
|
+
children: typeof i == "string" ? /* @__PURE__ */ t(r5, { variant: e === "small" ? "body4" : "body2", children: i }) : i
|
|
6646
6646
|
}
|
|
6647
6647
|
);
|
|
6648
|
-
}, { Title:
|
|
6648
|
+
}, { Title: j3, Text: T3 } = s1, y3 = {
|
|
6649
6649
|
h1: 1,
|
|
6650
6650
|
h2: 2,
|
|
6651
6651
|
h3: 3,
|
|
6652
6652
|
h4: 4
|
|
6653
|
-
},
|
|
6653
|
+
}, w1 = q(
|
|
6654
6654
|
({
|
|
6655
6655
|
align: i = "inherit",
|
|
6656
6656
|
variant: o = "body1",
|
|
@@ -6659,31 +6659,31 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6659
6659
|
onClick: r,
|
|
6660
6660
|
collapsed: w,
|
|
6661
6661
|
whiteSpace: g = "normal"
|
|
6662
|
-
},
|
|
6662
|
+
}, s) => {
|
|
6663
6663
|
const p = o === "h1" || o === "h2" || o === "h3" || o === "h4";
|
|
6664
6664
|
let k = `snmt-typography snmt-typography-${o}`;
|
|
6665
6665
|
return i && i !== "inherit" && (k += ` snmt-typography-align-${i}`), w && (k += " collapsed"), p ? /* @__PURE__ */ t(
|
|
6666
|
-
|
|
6666
|
+
j3,
|
|
6667
6667
|
{
|
|
6668
6668
|
className: k,
|
|
6669
6669
|
style: { color: e, whiteSpace: g },
|
|
6670
6670
|
onClick: r,
|
|
6671
|
-
level:
|
|
6672
|
-
ref:
|
|
6671
|
+
level: y3[o],
|
|
6672
|
+
ref: s,
|
|
6673
6673
|
children: l
|
|
6674
6674
|
}
|
|
6675
6675
|
) : /* @__PURE__ */ t(
|
|
6676
|
-
|
|
6676
|
+
T3,
|
|
6677
6677
|
{
|
|
6678
6678
|
className: k,
|
|
6679
6679
|
style: { color: e, whiteSpace: g },
|
|
6680
6680
|
onClick: r,
|
|
6681
|
-
ref:
|
|
6681
|
+
ref: s,
|
|
6682
6682
|
children: l
|
|
6683
6683
|
}
|
|
6684
6684
|
);
|
|
6685
6685
|
}
|
|
6686
|
-
),
|
|
6686
|
+
), Y3 = ({
|
|
6687
6687
|
children: i,
|
|
6688
6688
|
content: o,
|
|
6689
6689
|
isOpen: e,
|
|
@@ -6691,9 +6691,9 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6691
6691
|
placement: r = "topRight",
|
|
6692
6692
|
noPadding: w = !1
|
|
6693
6693
|
}) => {
|
|
6694
|
-
const [g,
|
|
6694
|
+
const [g, s] = u(!1);
|
|
6695
6695
|
return /* @__PURE__ */ t(
|
|
6696
|
-
|
|
6696
|
+
x1,
|
|
6697
6697
|
{
|
|
6698
6698
|
content: o,
|
|
6699
6699
|
arrow: !1,
|
|
@@ -6702,12 +6702,12 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6702
6702
|
overlayClassName: `snmt-popover ${w ? "" : "padding"}`,
|
|
6703
6703
|
open: e ?? g,
|
|
6704
6704
|
onOpenChange: (p) => {
|
|
6705
|
-
|
|
6705
|
+
s(p), l == null || l(p);
|
|
6706
6706
|
},
|
|
6707
6707
|
children: /* @__PURE__ */ t("div", { className: "wrapper", children: i })
|
|
6708
6708
|
}
|
|
6709
6709
|
);
|
|
6710
|
-
},
|
|
6710
|
+
}, K3 = ({
|
|
6711
6711
|
values: i,
|
|
6712
6712
|
onTagClose: o,
|
|
6713
6713
|
maxWidth: e,
|
|
@@ -6715,44 +6715,44 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6715
6715
|
options: r,
|
|
6716
6716
|
extraOptions: w
|
|
6717
6717
|
}) => {
|
|
6718
|
-
const [g,
|
|
6719
|
-
|
|
6720
|
-
i.length ||
|
|
6718
|
+
const [g, s] = u(!1);
|
|
6719
|
+
E(() => {
|
|
6720
|
+
i.length || s(!1);
|
|
6721
6721
|
}, [i]);
|
|
6722
|
-
const p = (
|
|
6723
|
-
|
|
6722
|
+
const p = (n) => {
|
|
6723
|
+
n.preventDefault(), n.stopPropagation();
|
|
6724
6724
|
};
|
|
6725
6725
|
if (!i.length)
|
|
6726
6726
|
return null;
|
|
6727
|
-
const k = (
|
|
6728
|
-
var h,
|
|
6729
|
-
return ((h = r == null ? void 0 : r.find((
|
|
6727
|
+
const k = (n) => {
|
|
6728
|
+
var h, H;
|
|
6729
|
+
return ((h = r == null ? void 0 : r.find((V) => V.value === n)) == null ? void 0 : h.label) || ((H = w == null ? void 0 : w.find((V) => V.value === n)) == null ? void 0 : H.label) || n;
|
|
6730
6730
|
};
|
|
6731
6731
|
return /* @__PURE__ */ t("div", { onMouseDown: p, className: "wrapper", children: /* @__PURE__ */ t(
|
|
6732
|
-
|
|
6732
|
+
Y3,
|
|
6733
6733
|
{
|
|
6734
6734
|
content: (
|
|
6735
6735
|
// 90: paddings + margins + gaps and so on
|
|
6736
|
-
/* @__PURE__ */ t("div", { style: { maxWidth: e - 90 }, children: /* @__PURE__ */ t(
|
|
6737
|
-
|
|
6736
|
+
/* @__PURE__ */ t("div", { style: { maxWidth: e - 90 }, children: /* @__PURE__ */ t($, { gap: 6, flexWrap: "wrap", children: i.map(({ value: n }) => /* @__PURE__ */ t(
|
|
6737
|
+
C1,
|
|
6738
6738
|
{
|
|
6739
|
-
onClose: () => o(
|
|
6739
|
+
onClose: () => o(n),
|
|
6740
6740
|
closable: !l,
|
|
6741
|
-
children: k(
|
|
6741
|
+
children: k(n)
|
|
6742
6742
|
},
|
|
6743
|
-
|
|
6743
|
+
n
|
|
6744
6744
|
)) }) })
|
|
6745
6745
|
),
|
|
6746
6746
|
placement: "bottomRight",
|
|
6747
6747
|
isOpen: g,
|
|
6748
|
-
setIsOpen:
|
|
6749
|
-
children: /* @__PURE__ */ t(
|
|
6748
|
+
setIsOpen: s,
|
|
6749
|
+
children: /* @__PURE__ */ t(n1, { className: `overflow-button ${g ? "open" : ""}`, bordered: !1, children: /* @__PURE__ */ c(w1, { variant: "body4", color: g ? W.BLUE_PRIMARY : void 0, children: [
|
|
6750
6750
|
i.length,
|
|
6751
6751
|
" more"
|
|
6752
6752
|
] }) })
|
|
6753
6753
|
}
|
|
6754
6754
|
) });
|
|
6755
|
-
},
|
|
6755
|
+
}, t1 = ({ size: i = 30, color: o = "#004ed7" }) => {
|
|
6756
6756
|
const e = `no-repeat linear-gradient(${o}
|
|
6757
6757
|
calc(50% - 10px), #0000 0 calc(50% + 10px), ${o} 0)`, l = {
|
|
6758
6758
|
width: i,
|
|
@@ -6760,7 +6760,7 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6760
6760
|
backgroundSize: "20% calc(200% + 20px)"
|
|
6761
6761
|
};
|
|
6762
6762
|
return /* @__PURE__ */ t("span", { className: "snmt-loader", style: l });
|
|
6763
|
-
},
|
|
6763
|
+
}, l1 = q(
|
|
6764
6764
|
({
|
|
6765
6765
|
value: i,
|
|
6766
6766
|
onChange: o,
|
|
@@ -6769,149 +6769,172 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6769
6769
|
search: r = !1,
|
|
6770
6770
|
options: w,
|
|
6771
6771
|
width: g,
|
|
6772
|
-
disabled:
|
|
6772
|
+
disabled: s = !1,
|
|
6773
6773
|
required: p = !1,
|
|
6774
6774
|
scrollThresholdValue: k = 50,
|
|
6775
|
-
onSearchChange:
|
|
6775
|
+
onSearchChange: n,
|
|
6776
6776
|
onDropdownVisibleChange: h,
|
|
6777
|
-
onScrollToEnd:
|
|
6778
|
-
onPopupScroll:
|
|
6779
|
-
id:
|
|
6780
|
-
extraOptions:
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6785
|
-
|
|
6777
|
+
onScrollToEnd: H,
|
|
6778
|
+
onPopupScroll: B,
|
|
6779
|
+
id: V,
|
|
6780
|
+
extraOptions: _,
|
|
6781
|
+
dropdownRender: A,
|
|
6782
|
+
optionRender: O,
|
|
6783
|
+
isLoading: b,
|
|
6784
|
+
readOnly: f
|
|
6785
|
+
}, G) => {
|
|
6786
|
+
const [D, j] = u(!1), [F, R] = u(!1), [Z, T] = u(!0), [v, y] = u(i), Y = r1(null);
|
|
6787
|
+
E(() => {
|
|
6788
|
+
y(i);
|
|
6786
6789
|
}, [i]);
|
|
6787
|
-
const
|
|
6788
|
-
|
|
6789
|
-
},
|
|
6790
|
-
var
|
|
6791
|
-
return !!((
|
|
6792
|
-
},
|
|
6793
|
-
|
|
6794
|
-
},
|
|
6795
|
-
|
|
6796
|
-
},
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6790
|
+
const m = (a) => {
|
|
6791
|
+
j(a), h && h(a);
|
|
6792
|
+
}, J = (a, L) => {
|
|
6793
|
+
var M;
|
|
6794
|
+
return !!((M = L == null ? void 0 : L.label) != null && M.toString().toLowerCase().includes(a.toLowerCase()));
|
|
6795
|
+
}, Q = () => {
|
|
6796
|
+
R(!0);
|
|
6797
|
+
}, K = () => {
|
|
6798
|
+
R(!1);
|
|
6799
|
+
}, N = x(
|
|
6800
|
+
(a) => {
|
|
6801
|
+
if (y(a), l) {
|
|
6802
|
+
const M = a;
|
|
6803
|
+
o == null || o(M);
|
|
6804
|
+
return;
|
|
6805
|
+
}
|
|
6806
|
+
const L = a;
|
|
6807
|
+
o == null || o(L);
|
|
6808
|
+
},
|
|
6809
|
+
[l, o]
|
|
6810
|
+
), k1 = x(() => {
|
|
6811
|
+
if (!f) {
|
|
6812
|
+
if (l) {
|
|
6813
|
+
N([]);
|
|
6814
|
+
return;
|
|
6815
|
+
}
|
|
6816
|
+
N("");
|
|
6808
6817
|
}
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
|
|
6841
|
-
|
|
6842
|
-
|
|
6818
|
+
}, [N, l, f]), S = x(
|
|
6819
|
+
(a) => {
|
|
6820
|
+
const L = v.filter((M) => M !== a);
|
|
6821
|
+
N(L), y(L);
|
|
6822
|
+
},
|
|
6823
|
+
[N, v]
|
|
6824
|
+
), i1 = x(
|
|
6825
|
+
(a) => (v == null ? void 0 : v.indexOf(a)) === 0 ? (
|
|
6826
|
+
// if the search input is empty
|
|
6827
|
+
// then display the placeholder, else do not display it
|
|
6828
|
+
/* @__PURE__ */ t("span", { className: "custom-placeholder", children: Z ? e : "" })
|
|
6829
|
+
) : /* @__PURE__ */ t(I, {}),
|
|
6830
|
+
[Z, v, e]
|
|
6831
|
+
), g1 = (a) => {
|
|
6832
|
+
a.preventDefault(), a.stopPropagation();
|
|
6833
|
+
}, p1 = async (a) => {
|
|
6834
|
+
const { target: L } = a;
|
|
6835
|
+
L.scrollTop + L.offsetHeight >= L.scrollHeight - k && (H == null || H(!0)), B && await B(a);
|
|
6836
|
+
}, X = x(
|
|
6837
|
+
(a) => {
|
|
6838
|
+
var L, M;
|
|
6839
|
+
return ((L = w.find((e1) => e1.value === a)) == null ? void 0 : L.label) || ((M = _ == null ? void 0 : _.find(
|
|
6840
|
+
(e1) => e1.value === a
|
|
6841
|
+
)) == null ? void 0 : M.label) || a;
|
|
6842
|
+
},
|
|
6843
|
+
[_, w]
|
|
6844
|
+
), L1 = x(
|
|
6845
|
+
(a) => {
|
|
6846
|
+
var L;
|
|
6847
|
+
return /* @__PURE__ */ t(
|
|
6848
|
+
K3,
|
|
6849
|
+
{
|
|
6850
|
+
values: a,
|
|
6851
|
+
onTagClose: S,
|
|
6852
|
+
maxWidth: ((L = Y.current) == null ? void 0 : L.clientWidth) || 0,
|
|
6853
|
+
disabled: s || f,
|
|
6854
|
+
options: w,
|
|
6855
|
+
extraOptions: _
|
|
6856
|
+
}
|
|
6857
|
+
);
|
|
6858
|
+
},
|
|
6859
|
+
[s, _, S, w, f]
|
|
6860
|
+
), m1 = x(
|
|
6861
|
+
({ label: a, value: L, mode: M }) => M === "filter" ? i1(L) : /* @__PURE__ */ t("div", { onMouseDown: g1, className: "tag-wrapper", children: /* @__PURE__ */ t(C1, { onClose: () => S(L), closable: !s, children: /* @__PURE__ */ t(w1, { variant: "body4", children: typeof a == "object" ? a : X(L) }) }) }),
|
|
6862
|
+
[s, X, S, i1]
|
|
6863
|
+
);
|
|
6843
6864
|
return /* @__PURE__ */ c(
|
|
6844
6865
|
"div",
|
|
6845
6866
|
{
|
|
6846
|
-
className: `snmt-select ${
|
|
6847
|
-
${l ? "" : "snmt-select-single"}`,
|
|
6848
|
-
ref:
|
|
6867
|
+
className: `snmt-select ${F ? "snmt-select-focused" : ""}
|
|
6868
|
+
${l ? "" : "snmt-select-single"} ${f ? "snmt-select-read-only" : ""}`,
|
|
6869
|
+
ref: Y,
|
|
6849
6870
|
style: { width: g },
|
|
6850
6871
|
children: [
|
|
6851
6872
|
/* @__PURE__ */ t(
|
|
6852
|
-
|
|
6873
|
+
v1,
|
|
6853
6874
|
{
|
|
6854
6875
|
className: "snmt-select-blank",
|
|
6855
|
-
|
|
6856
|
-
|
|
6876
|
+
popupClassName: f ? "dropdown-read-only" : "",
|
|
6877
|
+
id: V,
|
|
6878
|
+
ref: G,
|
|
6857
6879
|
showSearch: !!r,
|
|
6858
|
-
filterOption: r &&
|
|
6859
|
-
onDropdownVisibleChange:
|
|
6880
|
+
filterOption: r && J,
|
|
6881
|
+
onDropdownVisibleChange: m,
|
|
6860
6882
|
placeholder: e ? p ? `${e}*` : e : void 0,
|
|
6861
|
-
disabled:
|
|
6883
|
+
disabled: s,
|
|
6862
6884
|
value: v || void 0,
|
|
6863
|
-
labelRender: (
|
|
6885
|
+
labelRender: (a) => X(a.value),
|
|
6864
6886
|
mode: l === "filter" ? "multiple" : l,
|
|
6865
|
-
onChange:
|
|
6866
|
-
onFocus:
|
|
6867
|
-
onBlur:
|
|
6868
|
-
onSearch: (
|
|
6869
|
-
|
|
6887
|
+
onChange: N,
|
|
6888
|
+
onFocus: Q,
|
|
6889
|
+
onBlur: K,
|
|
6890
|
+
onSearch: (a) => {
|
|
6891
|
+
T(!a), n && n(a);
|
|
6870
6892
|
},
|
|
6871
|
-
onSelect: () =>
|
|
6872
|
-
onDeselect: () =>
|
|
6873
|
-
tagRender: (
|
|
6893
|
+
onSelect: () => T(!0),
|
|
6894
|
+
onDeselect: () => T(!0),
|
|
6895
|
+
tagRender: (a) => m1({ ...a, mode: l }),
|
|
6874
6896
|
maxTagCount: "responsive",
|
|
6875
|
-
maxTagPlaceholder:
|
|
6876
|
-
onPopupScroll:
|
|
6877
|
-
|
|
6878
|
-
|
|
6897
|
+
maxTagPlaceholder: L1,
|
|
6898
|
+
onPopupScroll: p1,
|
|
6899
|
+
prefix: f && !i && /* @__PURE__ */ t(t1, { size: 15 }),
|
|
6900
|
+
suffixIcon: /* @__PURE__ */ t("div", { className: "wrapper-suffix-icon", children: l !== "filter" && /* @__PURE__ */ c(I, { children: [
|
|
6901
|
+
l && v && !!v.length && /* @__PURE__ */ t("div", { onClick: k1, children: /* @__PURE__ */ t(U, { name: "cancel" }) }),
|
|
6879
6902
|
/* @__PURE__ */ t(
|
|
6880
|
-
|
|
6903
|
+
U,
|
|
6881
6904
|
{
|
|
6882
6905
|
name: "selectArrowIcon",
|
|
6883
|
-
color:
|
|
6884
|
-
className:
|
|
6885
|
-
onClick: () =>
|
|
6906
|
+
color: s ? W.GREY_DARK_1 : W.GREY_DARK_5,
|
|
6907
|
+
className: D ? "select-arrow-rotated" : "select-arrow",
|
|
6908
|
+
onClick: () => j(!D)
|
|
6886
6909
|
}
|
|
6887
6910
|
)
|
|
6888
6911
|
] }) }),
|
|
6889
|
-
removeIcon: /* @__PURE__ */ t(
|
|
6912
|
+
removeIcon: /* @__PURE__ */ t(U, { name: "errorSmall", color: W.GREY_DARK_2 }),
|
|
6890
6913
|
options: w,
|
|
6891
|
-
optionRender: (
|
|
6892
|
-
/* @__PURE__ */ c(
|
|
6914
|
+
optionRender: (a) => O ? O(a.data) : /* @__PURE__ */ c($, { justifyContent: "space-between", alignItems: "center", flex: "1", children: [
|
|
6915
|
+
/* @__PURE__ */ c($, { alignItems: "center", gap: 12, children: [
|
|
6893
6916
|
l && /* @__PURE__ */ t(
|
|
6894
|
-
|
|
6917
|
+
R1,
|
|
6895
6918
|
{
|
|
6896
|
-
checked: !!(v != null && v.includes(
|
|
6919
|
+
checked: !!(v != null && v.includes(a.value))
|
|
6897
6920
|
}
|
|
6898
6921
|
),
|
|
6899
|
-
/* @__PURE__ */ c(
|
|
6900
|
-
|
|
6901
|
-
/* @__PURE__ */ t("span", { children:
|
|
6922
|
+
/* @__PURE__ */ c($, { alignItems: "center", gap: 8, children: [
|
|
6923
|
+
a.data.image && /* @__PURE__ */ t(_1, { src: a.data.image, size: 20 }),
|
|
6924
|
+
/* @__PURE__ */ t("span", { children: a.label })
|
|
6902
6925
|
] })
|
|
6903
6926
|
] }),
|
|
6904
|
-
!l && v ===
|
|
6905
|
-
|
|
6927
|
+
!l && v === a.value && /* @__PURE__ */ t(
|
|
6928
|
+
U,
|
|
6906
6929
|
{
|
|
6907
6930
|
name: "ok",
|
|
6908
|
-
color:
|
|
6931
|
+
color: W.BLUE_PRIMARY,
|
|
6909
6932
|
width: 16,
|
|
6910
6933
|
height: 16
|
|
6911
6934
|
}
|
|
6912
6935
|
)
|
|
6913
6936
|
] }),
|
|
6914
|
-
dropdownRender:
|
|
6937
|
+
dropdownRender: b ? () => /* @__PURE__ */ t(
|
|
6915
6938
|
"div",
|
|
6916
6939
|
{
|
|
6917
6940
|
style: {
|
|
@@ -6919,16 +6942,16 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6919
6942
|
display: "grid",
|
|
6920
6943
|
justifyContent: "center"
|
|
6921
6944
|
},
|
|
6922
|
-
children: /* @__PURE__ */ t(
|
|
6945
|
+
children: /* @__PURE__ */ t(t1, { size: 28 })
|
|
6923
6946
|
}
|
|
6924
|
-
) :
|
|
6947
|
+
) : (a) => A ? A(a) : a
|
|
6925
6948
|
}
|
|
6926
6949
|
),
|
|
6927
6950
|
/* @__PURE__ */ t(
|
|
6928
6951
|
"fieldset",
|
|
6929
6952
|
{
|
|
6930
|
-
className: `${
|
|
6931
|
-
${
|
|
6953
|
+
className: `${F ? "fieldset-focused" : ""}
|
|
6954
|
+
${s ? "fieldset-disabled" : ""}
|
|
6932
6955
|
${typeof i == "string" && i ? "fieldset-filled" : ""}
|
|
6933
6956
|
${typeof i == "object" && i != null && i.length ? "fieldset-filled" : ""}`,
|
|
6934
6957
|
children: /* @__PURE__ */ t("legend", { children: e ? /* @__PURE__ */ t("span", { children: p ? `${e}*` : e }) : "" })
|
|
@@ -6939,9 +6962,9 @@ const s1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6939
6962
|
);
|
|
6940
6963
|
}
|
|
6941
6964
|
);
|
|
6942
|
-
function
|
|
6943
|
-
const e =
|
|
6944
|
-
return
|
|
6965
|
+
function O3(i, o = 500) {
|
|
6966
|
+
const e = r1();
|
|
6967
|
+
return E(() => () => {
|
|
6945
6968
|
e.current && clearTimeout(e.current);
|
|
6946
6969
|
}, []), (...r) => {
|
|
6947
6970
|
const w = setTimeout(() => {
|
|
@@ -6950,10 +6973,10 @@ function T3(i, o = 500) {
|
|
|
6950
6973
|
clearTimeout(e.current), e.current = w;
|
|
6951
6974
|
};
|
|
6952
6975
|
}
|
|
6953
|
-
const
|
|
6976
|
+
const P = {
|
|
6954
6977
|
limit: 100,
|
|
6955
6978
|
offset: 0
|
|
6956
|
-
},
|
|
6979
|
+
}, $3 = q(
|
|
6957
6980
|
({
|
|
6958
6981
|
loadOptions: i,
|
|
6959
6982
|
width: o,
|
|
@@ -6962,67 +6985,78 @@ const z = {
|
|
|
6962
6985
|
id: r,
|
|
6963
6986
|
disabled: w,
|
|
6964
6987
|
scrollThresholdValue: g,
|
|
6965
|
-
placeholder:
|
|
6988
|
+
placeholder: s,
|
|
6966
6989
|
mode: p,
|
|
6967
6990
|
loadOnClosedState: k,
|
|
6968
|
-
extraOptions:
|
|
6969
|
-
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
|
|
6973
|
-
|
|
6991
|
+
extraOptions: n,
|
|
6992
|
+
onDropdownVisibleChange: h,
|
|
6993
|
+
optionRender: H,
|
|
6994
|
+
dropdownRender: B,
|
|
6995
|
+
readOnly: V
|
|
6996
|
+
}, _) => {
|
|
6997
|
+
const [A, O] = u([]), [b, f] = u(P), [G, D] = u(!1), [j, F] = u(null), R = x(
|
|
6998
|
+
async (m = !1, J) => {
|
|
6999
|
+
if (!G) {
|
|
7000
|
+
D(!0);
|
|
6974
7001
|
try {
|
|
6975
|
-
const
|
|
6976
|
-
|
|
6977
|
-
(
|
|
6978
|
-
),
|
|
6979
|
-
...
|
|
6980
|
-
offset:
|
|
7002
|
+
const Q = m ? { ...P, search: J } : b, K = await i(Q);
|
|
7003
|
+
O(
|
|
7004
|
+
(N) => m ? K.options : [...N, ...K.options]
|
|
7005
|
+
), F(K.count), f((N) => ({
|
|
7006
|
+
...N,
|
|
7007
|
+
offset: N.offset + N.limit
|
|
6981
7008
|
}));
|
|
6982
7009
|
} finally {
|
|
6983
|
-
|
|
7010
|
+
D(!1);
|
|
6984
7011
|
}
|
|
6985
7012
|
}
|
|
6986
7013
|
},
|
|
6987
|
-
[
|
|
6988
|
-
),
|
|
7014
|
+
[b, i, G]
|
|
7015
|
+
), Z = O3(R), T = x(
|
|
6989
7016
|
(m) => {
|
|
6990
|
-
|
|
7017
|
+
m === "" || m === void 0 || m === null ? (f(P), Z(!0)) : Z(!0, m);
|
|
6991
7018
|
},
|
|
6992
|
-
[
|
|
6993
|
-
),
|
|
6994
|
-
m &&
|
|
6995
|
-
},
|
|
7019
|
+
[Z]
|
|
7020
|
+
), v = async (m) => {
|
|
7021
|
+
m && j !== null && j > A.length && await R(!1);
|
|
7022
|
+
}, y = x(
|
|
6996
7023
|
(m) => {
|
|
6997
|
-
m && !k &&
|
|
7024
|
+
m && !k && R(!1), h && h(m);
|
|
6998
7025
|
},
|
|
6999
7026
|
// eslint-disable-next-line
|
|
7000
7027
|
[k]
|
|
7001
7028
|
);
|
|
7002
|
-
|
|
7003
|
-
k &&
|
|
7029
|
+
E(() => {
|
|
7030
|
+
k && R(!1);
|
|
7004
7031
|
}, []);
|
|
7005
|
-
const
|
|
7032
|
+
const Y = {
|
|
7006
7033
|
id: r,
|
|
7007
7034
|
width: o,
|
|
7008
|
-
options:
|
|
7035
|
+
options: A,
|
|
7009
7036
|
onChange: e,
|
|
7010
|
-
ref:
|
|
7011
|
-
placeholder:
|
|
7037
|
+
ref: _,
|
|
7038
|
+
placeholder: s,
|
|
7012
7039
|
search: !0,
|
|
7013
7040
|
value: l,
|
|
7014
|
-
onSearchChange:
|
|
7015
|
-
onDropdownVisibleChange:
|
|
7041
|
+
onSearchChange: T,
|
|
7042
|
+
onDropdownVisibleChange: y,
|
|
7016
7043
|
scrollThresholdValue: g,
|
|
7017
|
-
onScrollToEnd:
|
|
7044
|
+
onScrollToEnd: v,
|
|
7018
7045
|
loadOnClosedState: k,
|
|
7019
7046
|
disabled: w,
|
|
7020
|
-
extraOptions:
|
|
7021
|
-
isLoading:
|
|
7047
|
+
extraOptions: n,
|
|
7048
|
+
isLoading: G,
|
|
7049
|
+
optionRender: H,
|
|
7050
|
+
dropdownRender: B,
|
|
7051
|
+
readOnly: V
|
|
7022
7052
|
};
|
|
7023
|
-
return
|
|
7053
|
+
return u1(_, () => ({
|
|
7054
|
+
refetchOptions: async () => {
|
|
7055
|
+
f(P), await R(!0);
|
|
7056
|
+
}
|
|
7057
|
+
})), p ? /* @__PURE__ */ t(l1, { ...Y, onChange: e, value: l, mode: p }) : /* @__PURE__ */ t("div", { className: "snmt-async-select", children: /* @__PURE__ */ t(l1, { ...Y, onChange: e, value: l }) });
|
|
7024
7058
|
}
|
|
7025
7059
|
);
|
|
7026
7060
|
export {
|
|
7027
|
-
|
|
7061
|
+
$3 as AsyncSelect
|
|
7028
7062
|
};
|