@snmt-react-ui/async-select 1.5.4 → 1.5.6
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/async-select.js +718 -601
- 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, Fragment as
|
|
3
|
-
import { createContext as
|
|
4
|
-
import { Select as
|
|
5
|
-
const
|
|
2
|
+
import { jsx as t, Fragment as G, jsxs as c } from "react/jsx-runtime";
|
|
3
|
+
import { createContext as q, forwardRef as J, useState as u, useRef as s1, useEffect as Z, useCallback as M, useContext as i1, useImperativeHandle as v1 } from "react";
|
|
4
|
+
import { Select as N1, Flex as f1, Avatar as M1, Checkbox as x1, Typography as n1, Tag as h1, Popover as _1 } from "antd";
|
|
5
|
+
const z = ({
|
|
6
6
|
children: i,
|
|
7
7
|
direction: o = "row",
|
|
8
8
|
flexWrap: e = "nowrap",
|
|
@@ -12,7 +12,7 @@ const $ = ({
|
|
|
12
12
|
gap: g,
|
|
13
13
|
padding: s
|
|
14
14
|
}) => /* @__PURE__ */ t(
|
|
15
|
-
|
|
15
|
+
f1,
|
|
16
16
|
{
|
|
17
17
|
className: `snmt-flex${e === "inherit" ? " inherit" : ""}`,
|
|
18
18
|
vertical: o === "column",
|
|
@@ -24,10 +24,10 @@ const $ = ({
|
|
|
24
24
|
style: { padding: s },
|
|
25
25
|
children: i
|
|
26
26
|
}
|
|
27
|
-
),
|
|
27
|
+
), R1 = ({ shape: i = "circle", size: o = 32, children: e, ...l }) => {
|
|
28
28
|
const r = typeof l.src == "string";
|
|
29
29
|
return /* @__PURE__ */ t(
|
|
30
|
-
|
|
30
|
+
M1,
|
|
31
31
|
{
|
|
32
32
|
className: `snmt-avatar ${r ? "image" : ""}`,
|
|
33
33
|
shape: i,
|
|
@@ -38,13 +38,13 @@ const $ = ({
|
|
|
38
38
|
}
|
|
39
39
|
);
|
|
40
40
|
};
|
|
41
|
-
var
|
|
42
|
-
const
|
|
41
|
+
var A = /* @__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))(A || {});
|
|
42
|
+
const c1 = q({
|
|
43
43
|
locale: "en",
|
|
44
44
|
theme: "light"
|
|
45
45
|
});
|
|
46
|
-
|
|
47
|
-
const
|
|
46
|
+
c1.Provider;
|
|
47
|
+
const H1 = ({
|
|
48
48
|
checked: i = !0,
|
|
49
49
|
indeterminate: o = !1,
|
|
50
50
|
children: e,
|
|
@@ -53,12 +53,12 @@ const R1 = ({
|
|
|
53
53
|
disableUncheck: w = !1
|
|
54
54
|
}) => {
|
|
55
55
|
const [g, s] = u(i), [p, k] = u(o);
|
|
56
|
-
|
|
56
|
+
Z(() => {
|
|
57
57
|
s(i), k(o);
|
|
58
58
|
}, [i, o]);
|
|
59
|
-
const { theme: h } =
|
|
59
|
+
const { theme: h } = i1(c1);
|
|
60
60
|
return /* @__PURE__ */ t(
|
|
61
|
-
|
|
61
|
+
x1,
|
|
62
62
|
{
|
|
63
63
|
className: `snmt-checkbox snmt-checkbox-${h}`,
|
|
64
64
|
checked: g,
|
|
@@ -71,13 +71,13 @@ const R1 = ({
|
|
|
71
71
|
}
|
|
72
72
|
);
|
|
73
73
|
};
|
|
74
|
-
var
|
|
75
|
-
const
|
|
74
|
+
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 || {});
|
|
75
|
+
const a1 = q({
|
|
76
76
|
locale: "en",
|
|
77
77
|
theme: "light"
|
|
78
78
|
});
|
|
79
|
-
|
|
80
|
-
const
|
|
79
|
+
a1.Provider;
|
|
80
|
+
const V1 = ({
|
|
81
81
|
width: i = 20,
|
|
82
82
|
height: o = 20,
|
|
83
83
|
color: e = "#001E52",
|
|
@@ -104,7 +104,7 @@ const H1 = ({
|
|
|
104
104
|
}
|
|
105
105
|
)
|
|
106
106
|
}
|
|
107
|
-
),
|
|
107
|
+
), E1 = ({
|
|
108
108
|
width: i = 20,
|
|
109
109
|
height: o = 20,
|
|
110
110
|
color: e = "#001E52",
|
|
@@ -131,7 +131,7 @@ const H1 = ({
|
|
|
131
131
|
}
|
|
132
132
|
)
|
|
133
133
|
}
|
|
134
|
-
),
|
|
134
|
+
), Z1 = ({
|
|
135
135
|
width: i = 16,
|
|
136
136
|
height: o = 16,
|
|
137
137
|
color: e = "#001E52",
|
|
@@ -159,7 +159,7 @@ const H1 = ({
|
|
|
159
159
|
)
|
|
160
160
|
]
|
|
161
161
|
}
|
|
162
|
-
),
|
|
162
|
+
), W1 = ({
|
|
163
163
|
width: i = 20,
|
|
164
164
|
height: o = 20,
|
|
165
165
|
color: e = "#001E52",
|
|
@@ -194,7 +194,7 @@ const H1 = ({
|
|
|
194
194
|
)
|
|
195
195
|
]
|
|
196
196
|
}
|
|
197
|
-
),
|
|
197
|
+
), I1 = ({
|
|
198
198
|
width: i = 18,
|
|
199
199
|
height: o = 18,
|
|
200
200
|
color: e = "#001E52",
|
|
@@ -233,7 +233,7 @@ const H1 = ({
|
|
|
233
233
|
)
|
|
234
234
|
]
|
|
235
235
|
}
|
|
236
|
-
),
|
|
236
|
+
), B1 = ({
|
|
237
237
|
width: i = 20,
|
|
238
238
|
height: o = 20,
|
|
239
239
|
color: e = "#001E52",
|
|
@@ -259,7 +259,7 @@ const H1 = ({
|
|
|
259
259
|
}
|
|
260
260
|
)
|
|
261
261
|
}
|
|
262
|
-
),
|
|
262
|
+
), A1 = ({
|
|
263
263
|
width: i = 20,
|
|
264
264
|
height: o = 20,
|
|
265
265
|
color: e = "#001E52",
|
|
@@ -280,7 +280,7 @@ const H1 = ({
|
|
|
280
280
|
/* @__PURE__ */ t("path", { d: "M16 4L4 16", stroke: e, strokeWidth: "1.5", strokeLinecap: "round" })
|
|
281
281
|
]
|
|
282
282
|
}
|
|
283
|
-
),
|
|
283
|
+
), G1 = ({
|
|
284
284
|
width: i = 20,
|
|
285
285
|
height: o = 20,
|
|
286
286
|
color: e = "#001E52",
|
|
@@ -312,7 +312,7 @@ const H1 = ({
|
|
|
312
312
|
)
|
|
313
313
|
]
|
|
314
314
|
}
|
|
315
|
-
),
|
|
315
|
+
), D1 = ({
|
|
316
316
|
width: i = 20,
|
|
317
317
|
height: o = 20,
|
|
318
318
|
color: e = "#001E52",
|
|
@@ -366,7 +366,7 @@ const H1 = ({
|
|
|
366
366
|
)
|
|
367
367
|
]
|
|
368
368
|
}
|
|
369
|
-
),
|
|
369
|
+
), j1 = ({
|
|
370
370
|
width: i = 20,
|
|
371
371
|
height: o = 20,
|
|
372
372
|
color: e = "#001E52",
|
|
@@ -405,7 +405,7 @@ const H1 = ({
|
|
|
405
405
|
/* @__PURE__ */ t("path", { d: "M3 12L17 12", stroke: e, strokeWidth: "2", strokeLinecap: "round" })
|
|
406
406
|
]
|
|
407
407
|
}
|
|
408
|
-
),
|
|
408
|
+
), T1 = ({
|
|
409
409
|
width: i = 16,
|
|
410
410
|
height: o = 12,
|
|
411
411
|
color: e = "#001E52",
|
|
@@ -454,7 +454,7 @@ const H1 = ({
|
|
|
454
454
|
)
|
|
455
455
|
] })
|
|
456
456
|
}
|
|
457
|
-
),
|
|
457
|
+
), y1 = ({
|
|
458
458
|
width: i = 16,
|
|
459
459
|
height: o = 16,
|
|
460
460
|
color: e = "#001E52",
|
|
@@ -488,7 +488,7 @@ const H1 = ({
|
|
|
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 H1 = ({
|
|
|
527
527
|
)
|
|
528
528
|
] })
|
|
529
529
|
}
|
|
530
|
-
),
|
|
530
|
+
), K1 = ({
|
|
531
531
|
width: i = 16,
|
|
532
532
|
height: o = 16,
|
|
533
533
|
color: e = "#001E52",
|
|
@@ -563,7 +563,7 @@ const H1 = ({
|
|
|
563
563
|
)
|
|
564
564
|
]
|
|
565
565
|
}
|
|
566
|
-
),
|
|
566
|
+
), O1 = ({
|
|
567
567
|
width: i = 11,
|
|
568
568
|
height: o = 32,
|
|
569
569
|
color: e = "#001E52",
|
|
@@ -601,7 +601,7 @@ const H1 = ({
|
|
|
601
601
|
/* @__PURE__ */ t("circle", { cx: "3", cy: "3", r: "3", fill: e })
|
|
602
602
|
]
|
|
603
603
|
}
|
|
604
|
-
),
|
|
604
|
+
), b1 = ({
|
|
605
605
|
width: i = 20,
|
|
606
606
|
height: o = 20,
|
|
607
607
|
color: e = "#001E52",
|
|
@@ -648,7 +648,7 @@ const H1 = ({
|
|
|
648
648
|
)
|
|
649
649
|
]
|
|
650
650
|
}
|
|
651
|
-
),
|
|
651
|
+
), F1 = ({
|
|
652
652
|
width: i = 20,
|
|
653
653
|
height: o = 20,
|
|
654
654
|
color: e = "#001E52",
|
|
@@ -681,7 +681,7 @@ const H1 = ({
|
|
|
681
681
|
)
|
|
682
682
|
]
|
|
683
683
|
}
|
|
684
|
-
),
|
|
684
|
+
), S1 = ({
|
|
685
685
|
width: i = 20,
|
|
686
686
|
height: o = 20,
|
|
687
687
|
color: e = "#001E52",
|
|
@@ -728,7 +728,7 @@ const H1 = ({
|
|
|
728
728
|
)
|
|
729
729
|
]
|
|
730
730
|
}
|
|
731
|
-
),
|
|
731
|
+
), U1 = ({
|
|
732
732
|
width: i = 20,
|
|
733
733
|
height: o = 20,
|
|
734
734
|
color: e = "#001E52",
|
|
@@ -761,7 +761,7 @@ const H1 = ({
|
|
|
761
761
|
)
|
|
762
762
|
]
|
|
763
763
|
}
|
|
764
|
-
),
|
|
764
|
+
), P1 = ({
|
|
765
765
|
width: i = 18,
|
|
766
766
|
height: o = 16,
|
|
767
767
|
color: e = "#001E52",
|
|
@@ -800,7 +800,7 @@ const H1 = ({
|
|
|
800
800
|
)
|
|
801
801
|
]
|
|
802
802
|
}
|
|
803
|
-
),
|
|
803
|
+
), $1 = ({
|
|
804
804
|
width: i = 20,
|
|
805
805
|
height: o = 20,
|
|
806
806
|
color: e = "#001E52",
|
|
@@ -833,7 +833,7 @@ const H1 = ({
|
|
|
833
833
|
)
|
|
834
834
|
]
|
|
835
835
|
}
|
|
836
|
-
),
|
|
836
|
+
), z1 = ({
|
|
837
837
|
width: i = 20,
|
|
838
838
|
height: o = 20,
|
|
839
839
|
color: e = "#001E52",
|
|
@@ -857,7 +857,7 @@ const H1 = ({
|
|
|
857
857
|
}
|
|
858
858
|
)
|
|
859
859
|
}
|
|
860
|
-
),
|
|
860
|
+
), q1 = ({
|
|
861
861
|
width: i = 20,
|
|
862
862
|
height: o = 20,
|
|
863
863
|
color: e = "#001E52",
|
|
@@ -904,7 +904,7 @@ const H1 = ({
|
|
|
904
904
|
)
|
|
905
905
|
]
|
|
906
906
|
}
|
|
907
|
-
),
|
|
907
|
+
), J1 = ({
|
|
908
908
|
width: i = 20,
|
|
909
909
|
height: o = 20,
|
|
910
910
|
color: e = "#001E52",
|
|
@@ -937,7 +937,7 @@ const H1 = ({
|
|
|
937
937
|
)
|
|
938
938
|
]
|
|
939
939
|
}
|
|
940
|
-
),
|
|
940
|
+
), Q1 = ({
|
|
941
941
|
width: i = 20,
|
|
942
942
|
height: o = 20,
|
|
943
943
|
color: e = "#001E52",
|
|
@@ -970,7 +970,7 @@ const H1 = ({
|
|
|
970
970
|
)
|
|
971
971
|
]
|
|
972
972
|
}
|
|
973
|
-
),
|
|
973
|
+
), X1 = ({
|
|
974
974
|
width: i = 20,
|
|
975
975
|
height: o = 23,
|
|
976
976
|
color: e = "#001E52",
|
|
@@ -1031,7 +1031,7 @@ const H1 = ({
|
|
|
1031
1031
|
)
|
|
1032
1032
|
]
|
|
1033
1033
|
}
|
|
1034
|
-
),
|
|
1034
|
+
), e2 = ({
|
|
1035
1035
|
width: i = 20,
|
|
1036
1036
|
height: o = 20,
|
|
1037
1037
|
color: e = "#001E52",
|
|
@@ -1071,7 +1071,7 @@ const H1 = ({
|
|
|
1071
1071
|
)
|
|
1072
1072
|
]
|
|
1073
1073
|
}
|
|
1074
|
-
),
|
|
1074
|
+
), o2 = ({
|
|
1075
1075
|
width: i = 32,
|
|
1076
1076
|
height: o = 25,
|
|
1077
1077
|
color: e = "#001E52",
|
|
@@ -1099,7 +1099,7 @@ const H1 = ({
|
|
|
1099
1099
|
)
|
|
1100
1100
|
]
|
|
1101
1101
|
}
|
|
1102
|
-
),
|
|
1102
|
+
), i2 = ({
|
|
1103
1103
|
width: i = 14,
|
|
1104
1104
|
height: o = 14,
|
|
1105
1105
|
color: e = "#10B981",
|
|
@@ -1128,7 +1128,7 @@ const H1 = ({
|
|
|
1128
1128
|
)
|
|
1129
1129
|
]
|
|
1130
1130
|
}
|
|
1131
|
-
),
|
|
1131
|
+
), t2 = ({
|
|
1132
1132
|
width: i = 11,
|
|
1133
1133
|
height: o = 11,
|
|
1134
1134
|
color: e = "#FFB020",
|
|
@@ -1162,7 +1162,7 @@ const H1 = ({
|
|
|
1162
1162
|
)
|
|
1163
1163
|
]
|
|
1164
1164
|
}
|
|
1165
|
-
),
|
|
1165
|
+
), l2 = ({
|
|
1166
1166
|
width: i = 10,
|
|
1167
1167
|
height: o = 10,
|
|
1168
1168
|
color: e = "#88A4FF",
|
|
@@ -1210,7 +1210,7 @@ const H1 = ({
|
|
|
1210
1210
|
)
|
|
1211
1211
|
]
|
|
1212
1212
|
}
|
|
1213
|
-
),
|
|
1213
|
+
), r2 = ({
|
|
1214
1214
|
width: i = 14,
|
|
1215
1215
|
height: o = 14,
|
|
1216
1216
|
color: e = "#8E8E93",
|
|
@@ -1238,7 +1238,7 @@ const H1 = ({
|
|
|
1238
1238
|
)
|
|
1239
1239
|
]
|
|
1240
1240
|
}
|
|
1241
|
-
),
|
|
1241
|
+
), s2 = ({
|
|
1242
1242
|
width: i = 14,
|
|
1243
1243
|
height: o = 14,
|
|
1244
1244
|
color: e = "#FFB020",
|
|
@@ -1272,7 +1272,7 @@ const H1 = ({
|
|
|
1272
1272
|
)
|
|
1273
1273
|
]
|
|
1274
1274
|
}
|
|
1275
|
-
),
|
|
1275
|
+
), n2 = ({
|
|
1276
1276
|
width: i = 14,
|
|
1277
1277
|
height: o = 14,
|
|
1278
1278
|
color: e = "#D0421B",
|
|
@@ -1320,7 +1320,7 @@ const H1 = ({
|
|
|
1320
1320
|
)
|
|
1321
1321
|
]
|
|
1322
1322
|
}
|
|
1323
|
-
),
|
|
1323
|
+
), h2 = ({
|
|
1324
1324
|
width: i = 20,
|
|
1325
1325
|
height: o = 20,
|
|
1326
1326
|
color: e = "#070739",
|
|
@@ -1350,7 +1350,7 @@ const H1 = ({
|
|
|
1350
1350
|
/* @__PURE__ */ t("circle", { cx: "10", cy: "10", r: "2.375", stroke: e, strokeWidth: "1.25" })
|
|
1351
1351
|
]
|
|
1352
1352
|
}
|
|
1353
|
-
),
|
|
1353
|
+
), c2 = ({
|
|
1354
1354
|
width: i = 20,
|
|
1355
1355
|
height: o = 20,
|
|
1356
1356
|
color: e = "#070739",
|
|
@@ -1388,7 +1388,7 @@ const H1 = ({
|
|
|
1388
1388
|
)
|
|
1389
1389
|
]
|
|
1390
1390
|
}
|
|
1391
|
-
),
|
|
1391
|
+
), a2 = ({
|
|
1392
1392
|
width: i = 9,
|
|
1393
1393
|
height: o = 5,
|
|
1394
1394
|
color: e = "#001E52",
|
|
@@ -1414,7 +1414,7 @@ const H1 = ({
|
|
|
1414
1414
|
}
|
|
1415
1415
|
)
|
|
1416
1416
|
}
|
|
1417
|
-
),
|
|
1417
|
+
), C2 = ({
|
|
1418
1418
|
width: i = 20,
|
|
1419
1419
|
height: o = 20,
|
|
1420
1420
|
color: e = "#F2F2F7",
|
|
@@ -1472,7 +1472,7 @@ const H1 = ({
|
|
|
1472
1472
|
)
|
|
1473
1473
|
]
|
|
1474
1474
|
}
|
|
1475
|
-
),
|
|
1475
|
+
), w2 = ({
|
|
1476
1476
|
width: i = 248,
|
|
1477
1477
|
height: o = 248,
|
|
1478
1478
|
color: e = "#070739",
|
|
@@ -1509,7 +1509,7 @@ const H1 = ({
|
|
|
1509
1509
|
)
|
|
1510
1510
|
]
|
|
1511
1511
|
}
|
|
1512
|
-
),
|
|
1512
|
+
), k2 = ({
|
|
1513
1513
|
width: i = 24,
|
|
1514
1514
|
height: o = 24,
|
|
1515
1515
|
color: e = "#001E52",
|
|
@@ -1548,7 +1548,7 @@ const H1 = ({
|
|
|
1548
1548
|
)
|
|
1549
1549
|
]
|
|
1550
1550
|
}
|
|
1551
|
-
),
|
|
1551
|
+
), g2 = ({
|
|
1552
1552
|
width: i = 10,
|
|
1553
1553
|
height: o = 10,
|
|
1554
1554
|
color: e = "#001E52",
|
|
@@ -1577,7 +1577,7 @@ const H1 = ({
|
|
|
1577
1577
|
)
|
|
1578
1578
|
]
|
|
1579
1579
|
}
|
|
1580
|
-
),
|
|
1580
|
+
), p2 = ({
|
|
1581
1581
|
width: i = 10,
|
|
1582
1582
|
height: o = 10,
|
|
1583
1583
|
color: e = "#001E52",
|
|
@@ -1614,10 +1614,10 @@ const H1 = ({
|
|
|
1614
1614
|
)
|
|
1615
1615
|
]
|
|
1616
1616
|
}
|
|
1617
|
-
),
|
|
1617
|
+
), L2 = ({
|
|
1618
1618
|
width: i = 24,
|
|
1619
1619
|
height: o = 24,
|
|
1620
|
-
color: e =
|
|
1620
|
+
color: e = C.GREY_DARK_5,
|
|
1621
1621
|
className: l,
|
|
1622
1622
|
onClick: r
|
|
1623
1623
|
}) => /* @__PURE__ */ c(
|
|
@@ -1653,10 +1653,10 @@ const H1 = ({
|
|
|
1653
1653
|
)
|
|
1654
1654
|
]
|
|
1655
1655
|
}
|
|
1656
|
-
),
|
|
1656
|
+
), m2 = ({
|
|
1657
1657
|
width: i = 20,
|
|
1658
1658
|
height: o = 20,
|
|
1659
|
-
color: e =
|
|
1659
|
+
color: e = C.GREY_DARK_1,
|
|
1660
1660
|
className: l,
|
|
1661
1661
|
onClick: r
|
|
1662
1662
|
}) => /* @__PURE__ */ c(
|
|
@@ -1686,10 +1686,10 @@ const H1 = ({
|
|
|
1686
1686
|
)
|
|
1687
1687
|
]
|
|
1688
1688
|
}
|
|
1689
|
-
),
|
|
1689
|
+
), u2 = ({
|
|
1690
1690
|
width: i = 81,
|
|
1691
1691
|
height: o = 80,
|
|
1692
|
-
color: e =
|
|
1692
|
+
color: e = C.GREY_DARK_5,
|
|
1693
1693
|
className: l,
|
|
1694
1694
|
onClick: r
|
|
1695
1695
|
}) => /* @__PURE__ */ c(
|
|
@@ -1735,9 +1735,9 @@ const H1 = ({
|
|
|
1735
1735
|
)
|
|
1736
1736
|
]
|
|
1737
1737
|
}
|
|
1738
|
-
),
|
|
1738
|
+
), v2 = ({
|
|
1739
1739
|
className: i,
|
|
1740
|
-
color: o =
|
|
1740
|
+
color: o = C.GREY_DARK_5,
|
|
1741
1741
|
height: e = 20,
|
|
1742
1742
|
width: l = 20,
|
|
1743
1743
|
onClick: r
|
|
@@ -1762,9 +1762,9 @@ const H1 = ({
|
|
|
1762
1762
|
}
|
|
1763
1763
|
)
|
|
1764
1764
|
}
|
|
1765
|
-
),
|
|
1765
|
+
), N2 = ({
|
|
1766
1766
|
className: i,
|
|
1767
|
-
color: o =
|
|
1767
|
+
color: o = C.GREY_DARK_5,
|
|
1768
1768
|
height: e = 20,
|
|
1769
1769
|
width: l = 20,
|
|
1770
1770
|
onClick: r
|
|
@@ -1789,9 +1789,9 @@ const H1 = ({
|
|
|
1789
1789
|
}
|
|
1790
1790
|
)
|
|
1791
1791
|
}
|
|
1792
|
-
),
|
|
1792
|
+
), f2 = ({
|
|
1793
1793
|
className: i,
|
|
1794
|
-
color: o =
|
|
1794
|
+
color: o = C.GREY_DARK_5,
|
|
1795
1795
|
height: e = 5,
|
|
1796
1796
|
width: l = 10,
|
|
1797
1797
|
onClick: r
|
|
@@ -1813,9 +1813,9 @@ const H1 = ({
|
|
|
1813
1813
|
}
|
|
1814
1814
|
)
|
|
1815
1815
|
}
|
|
1816
|
-
),
|
|
1816
|
+
), M2 = ({
|
|
1817
1817
|
className: i,
|
|
1818
|
-
color: o =
|
|
1818
|
+
color: o = C.GREY_DARK_5,
|
|
1819
1819
|
height: e = 5,
|
|
1820
1820
|
width: l = 10,
|
|
1821
1821
|
onClick: r
|
|
@@ -1838,9 +1838,9 @@ const H1 = ({
|
|
|
1838
1838
|
}
|
|
1839
1839
|
)
|
|
1840
1840
|
}
|
|
1841
|
-
),
|
|
1841
|
+
), x2 = ({
|
|
1842
1842
|
className: i,
|
|
1843
|
-
color: o =
|
|
1843
|
+
color: o = C.GREY_DARK_5,
|
|
1844
1844
|
height: e = 24,
|
|
1845
1845
|
width: l = 24,
|
|
1846
1846
|
onClick: r
|
|
@@ -1877,9 +1877,9 @@ const H1 = ({
|
|
|
1877
1877
|
)
|
|
1878
1878
|
]
|
|
1879
1879
|
}
|
|
1880
|
-
),
|
|
1880
|
+
), _2 = ({
|
|
1881
1881
|
className: i,
|
|
1882
|
-
color: o =
|
|
1882
|
+
color: o = C.GREY_DARK_5,
|
|
1883
1883
|
height: e = 24,
|
|
1884
1884
|
width: l = 24,
|
|
1885
1885
|
onClick: r
|
|
@@ -1916,9 +1916,9 @@ const H1 = ({
|
|
|
1916
1916
|
)
|
|
1917
1917
|
]
|
|
1918
1918
|
}
|
|
1919
|
-
),
|
|
1919
|
+
), R2 = ({
|
|
1920
1920
|
className: i,
|
|
1921
|
-
color: o =
|
|
1921
|
+
color: o = C.GREY_DARK_5,
|
|
1922
1922
|
height: e = 24,
|
|
1923
1923
|
width: l = 24,
|
|
1924
1924
|
onClick: r
|
|
@@ -1943,9 +1943,9 @@ const H1 = ({
|
|
|
1943
1943
|
}
|
|
1944
1944
|
)
|
|
1945
1945
|
}
|
|
1946
|
-
),
|
|
1946
|
+
), H2 = ({
|
|
1947
1947
|
className: i,
|
|
1948
|
-
color: o =
|
|
1948
|
+
color: o = C.GREY_DARK_5,
|
|
1949
1949
|
height: e = 24,
|
|
1950
1950
|
width: l = 24,
|
|
1951
1951
|
onClick: r
|
|
@@ -2002,9 +2002,9 @@ const H1 = ({
|
|
|
2002
2002
|
)
|
|
2003
2003
|
]
|
|
2004
2004
|
}
|
|
2005
|
-
),
|
|
2005
|
+
), V2 = ({
|
|
2006
2006
|
className: i,
|
|
2007
|
-
color: o =
|
|
2007
|
+
color: o = C.GREY_DARK_5,
|
|
2008
2008
|
height: e = 24,
|
|
2009
2009
|
width: l = 24,
|
|
2010
2010
|
onClick: r
|
|
@@ -2039,9 +2039,9 @@ const H1 = ({
|
|
|
2039
2039
|
)
|
|
2040
2040
|
]
|
|
2041
2041
|
}
|
|
2042
|
-
),
|
|
2042
|
+
), E2 = ({
|
|
2043
2043
|
className: i,
|
|
2044
|
-
color: o =
|
|
2044
|
+
color: o = C.GREY_DARK_3,
|
|
2045
2045
|
height: e = 14,
|
|
2046
2046
|
width: l = 14,
|
|
2047
2047
|
onClick: r
|
|
@@ -2076,9 +2076,9 @@ const H1 = ({
|
|
|
2076
2076
|
)
|
|
2077
2077
|
]
|
|
2078
2078
|
}
|
|
2079
|
-
),
|
|
2079
|
+
), Z2 = ({
|
|
2080
2080
|
className: i,
|
|
2081
|
-
color: o =
|
|
2081
|
+
color: o = C.GREY_DARK_5,
|
|
2082
2082
|
height: e = 18,
|
|
2083
2083
|
onClick: l,
|
|
2084
2084
|
width: r = 18
|
|
@@ -2103,9 +2103,9 @@ const H1 = ({
|
|
|
2103
2103
|
}
|
|
2104
2104
|
)
|
|
2105
2105
|
}
|
|
2106
|
-
),
|
|
2106
|
+
), W2 = ({
|
|
2107
2107
|
className: i,
|
|
2108
|
-
color: o =
|
|
2108
|
+
color: o = C.GREY_DARK_5,
|
|
2109
2109
|
height: e = 24,
|
|
2110
2110
|
width: l = 24,
|
|
2111
2111
|
onClick: r
|
|
@@ -2155,9 +2155,9 @@ const H1 = ({
|
|
|
2155
2155
|
)
|
|
2156
2156
|
]
|
|
2157
2157
|
}
|
|
2158
|
-
),
|
|
2158
|
+
), I2 = ({
|
|
2159
2159
|
className: i,
|
|
2160
|
-
color: o =
|
|
2160
|
+
color: o = C.GREY_DARK_5,
|
|
2161
2161
|
height: e = 24,
|
|
2162
2162
|
width: l = 24,
|
|
2163
2163
|
onClick: r
|
|
@@ -2192,9 +2192,9 @@ const H1 = ({
|
|
|
2192
2192
|
)
|
|
2193
2193
|
]
|
|
2194
2194
|
}
|
|
2195
|
-
),
|
|
2195
|
+
), B2 = ({
|
|
2196
2196
|
className: i,
|
|
2197
|
-
color: o =
|
|
2197
|
+
color: o = C.NOTIFICATION_WARNING_DARK,
|
|
2198
2198
|
height: e = 37,
|
|
2199
2199
|
width: l = 36,
|
|
2200
2200
|
onClick: r
|
|
@@ -2231,9 +2231,9 @@ const H1 = ({
|
|
|
2231
2231
|
)
|
|
2232
2232
|
]
|
|
2233
2233
|
}
|
|
2234
|
-
),
|
|
2234
|
+
), A2 = ({
|
|
2235
2235
|
className: i,
|
|
2236
|
-
color: o =
|
|
2236
|
+
color: o = C.GREY_DARK_5,
|
|
2237
2237
|
height: e = 24,
|
|
2238
2238
|
width: l = 24,
|
|
2239
2239
|
onClick: r
|
|
@@ -2257,9 +2257,9 @@ const H1 = ({
|
|
|
2257
2257
|
}
|
|
2258
2258
|
)
|
|
2259
2259
|
}
|
|
2260
|
-
),
|
|
2260
|
+
), G2 = ({
|
|
2261
2261
|
className: i,
|
|
2262
|
-
color: o =
|
|
2262
|
+
color: o = C.GREY_DARK_5,
|
|
2263
2263
|
height: e = 24,
|
|
2264
2264
|
width: l = 24,
|
|
2265
2265
|
onClick: r
|
|
@@ -2296,9 +2296,9 @@ const H1 = ({
|
|
|
2296
2296
|
)
|
|
2297
2297
|
]
|
|
2298
2298
|
}
|
|
2299
|
-
),
|
|
2299
|
+
), D2 = ({
|
|
2300
2300
|
className: i,
|
|
2301
|
-
color: o =
|
|
2301
|
+
color: o = C.GREY_DARK_5,
|
|
2302
2302
|
height: e = 24,
|
|
2303
2303
|
width: l = 24,
|
|
2304
2304
|
onClick: r
|
|
@@ -2335,9 +2335,9 @@ const H1 = ({
|
|
|
2335
2335
|
)
|
|
2336
2336
|
]
|
|
2337
2337
|
}
|
|
2338
|
-
),
|
|
2338
|
+
), j2 = ({
|
|
2339
2339
|
className: i,
|
|
2340
|
-
color: o =
|
|
2340
|
+
color: o = C.GREY_DARK_5,
|
|
2341
2341
|
height: e = 24,
|
|
2342
2342
|
width: l = 24,
|
|
2343
2343
|
onClick: r
|
|
@@ -2404,9 +2404,9 @@ const H1 = ({
|
|
|
2404
2404
|
)
|
|
2405
2405
|
]
|
|
2406
2406
|
}
|
|
2407
|
-
),
|
|
2407
|
+
), T2 = ({
|
|
2408
2408
|
className: i,
|
|
2409
|
-
color: o =
|
|
2409
|
+
color: o = C.GREY_DARK_5,
|
|
2410
2410
|
height: e = 24,
|
|
2411
2411
|
width: l = 24,
|
|
2412
2412
|
onClick: r
|
|
@@ -2443,9 +2443,9 @@ const H1 = ({
|
|
|
2443
2443
|
)
|
|
2444
2444
|
]
|
|
2445
2445
|
}
|
|
2446
|
-
),
|
|
2446
|
+
), y2 = ({
|
|
2447
2447
|
className: i,
|
|
2448
|
-
color: o =
|
|
2448
|
+
color: o = C.GREY_DARK_5,
|
|
2449
2449
|
height: e = 24,
|
|
2450
2450
|
width: l = 24,
|
|
2451
2451
|
onClick: r
|
|
@@ -2500,9 +2500,9 @@ const H1 = ({
|
|
|
2500
2500
|
)
|
|
2501
2501
|
]
|
|
2502
2502
|
}
|
|
2503
|
-
),
|
|
2503
|
+
), Y2 = ({
|
|
2504
2504
|
className: i,
|
|
2505
|
-
color: o =
|
|
2505
|
+
color: o = C.GREY_DARK_5,
|
|
2506
2506
|
height: e = 24,
|
|
2507
2507
|
width: l = 24,
|
|
2508
2508
|
onClick: r
|
|
@@ -2539,9 +2539,9 @@ const H1 = ({
|
|
|
2539
2539
|
)
|
|
2540
2540
|
]
|
|
2541
2541
|
}
|
|
2542
|
-
),
|
|
2542
|
+
), K2 = ({
|
|
2543
2543
|
className: i,
|
|
2544
|
-
color: o =
|
|
2544
|
+
color: o = C.GREY_DARK_5,
|
|
2545
2545
|
height: e = 24,
|
|
2546
2546
|
width: l = 24,
|
|
2547
2547
|
onClick: r
|
|
@@ -2588,9 +2588,9 @@ const H1 = ({
|
|
|
2588
2588
|
)
|
|
2589
2589
|
]
|
|
2590
2590
|
}
|
|
2591
|
-
),
|
|
2591
|
+
), O2 = ({
|
|
2592
2592
|
className: i,
|
|
2593
|
-
color: o =
|
|
2593
|
+
color: o = C.GREY_DARK_5,
|
|
2594
2594
|
height: e = 24,
|
|
2595
2595
|
width: l = 24,
|
|
2596
2596
|
onClick: r
|
|
@@ -2627,9 +2627,9 @@ const H1 = ({
|
|
|
2627
2627
|
)
|
|
2628
2628
|
]
|
|
2629
2629
|
}
|
|
2630
|
-
),
|
|
2630
|
+
), b2 = ({
|
|
2631
2631
|
className: i,
|
|
2632
|
-
color: o =
|
|
2632
|
+
color: o = C.GREY_DARK_5,
|
|
2633
2633
|
height: e = 24,
|
|
2634
2634
|
width: l = 24,
|
|
2635
2635
|
onClick: r
|
|
@@ -2654,9 +2654,9 @@ const H1 = ({
|
|
|
2654
2654
|
}
|
|
2655
2655
|
)
|
|
2656
2656
|
}
|
|
2657
|
-
),
|
|
2657
|
+
), F2 = ({
|
|
2658
2658
|
className: i,
|
|
2659
|
-
color: o =
|
|
2659
|
+
color: o = C.GREY_DARK_5,
|
|
2660
2660
|
height: e = 24,
|
|
2661
2661
|
width: l = 24,
|
|
2662
2662
|
onClick: r
|
|
@@ -2692,9 +2692,9 @@ const H1 = ({
|
|
|
2692
2692
|
)
|
|
2693
2693
|
]
|
|
2694
2694
|
}
|
|
2695
|
-
),
|
|
2695
|
+
), S2 = ({
|
|
2696
2696
|
className: i,
|
|
2697
|
-
color: o =
|
|
2697
|
+
color: o = C.GREY_DARK_5,
|
|
2698
2698
|
height: e = 24,
|
|
2699
2699
|
width: l = 24,
|
|
2700
2700
|
onClick: r
|
|
@@ -2713,9 +2713,9 @@ const H1 = ({
|
|
|
2713
2713
|
/* @__PURE__ */ t("path", { d: "M12 8L4 8", stroke: o, strokeWidth: "1.7", strokeLinecap: "round" })
|
|
2714
2714
|
]
|
|
2715
2715
|
}
|
|
2716
|
-
),
|
|
2716
|
+
), U2 = ({
|
|
2717
2717
|
className: i,
|
|
2718
|
-
color: o =
|
|
2718
|
+
color: o = C.GREY_DARK_5,
|
|
2719
2719
|
height: e = 24,
|
|
2720
2720
|
width: l = 24,
|
|
2721
2721
|
onClick: r
|
|
@@ -2752,9 +2752,9 @@ const H1 = ({
|
|
|
2752
2752
|
)
|
|
2753
2753
|
]
|
|
2754
2754
|
}
|
|
2755
|
-
),
|
|
2755
|
+
), P2 = ({
|
|
2756
2756
|
className: i,
|
|
2757
|
-
color: o =
|
|
2757
|
+
color: o = C.GREY_DARK_5,
|
|
2758
2758
|
height: e = 24,
|
|
2759
2759
|
width: l = 24,
|
|
2760
2760
|
onClick: r
|
|
@@ -2791,9 +2791,9 @@ const H1 = ({
|
|
|
2791
2791
|
)
|
|
2792
2792
|
]
|
|
2793
2793
|
}
|
|
2794
|
-
),
|
|
2794
|
+
), $2 = ({
|
|
2795
2795
|
className: i,
|
|
2796
|
-
color: o =
|
|
2796
|
+
color: o = C.GREY_DARK_5,
|
|
2797
2797
|
height: e = 24,
|
|
2798
2798
|
width: l = 24,
|
|
2799
2799
|
onClick: r
|
|
@@ -2830,9 +2830,9 @@ const H1 = ({
|
|
|
2830
2830
|
)
|
|
2831
2831
|
]
|
|
2832
2832
|
}
|
|
2833
|
-
),
|
|
2833
|
+
), z2 = ({
|
|
2834
2834
|
className: i,
|
|
2835
|
-
color: o =
|
|
2835
|
+
color: o = C.GREY_DARK_2,
|
|
2836
2836
|
height: e = 16,
|
|
2837
2837
|
width: l = 16,
|
|
2838
2838
|
onClick: r
|
|
@@ -2856,9 +2856,9 @@ const H1 = ({
|
|
|
2856
2856
|
}
|
|
2857
2857
|
)
|
|
2858
2858
|
}
|
|
2859
|
-
),
|
|
2859
|
+
), q2 = ({
|
|
2860
2860
|
className: i,
|
|
2861
|
-
color: o =
|
|
2861
|
+
color: o = C.GREY_DARK_5,
|
|
2862
2862
|
height: e = 20,
|
|
2863
2863
|
width: l = 20,
|
|
2864
2864
|
onClick: r
|
|
@@ -2885,9 +2885,9 @@ const H1 = ({
|
|
|
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
|
+
), J2 = ({
|
|
2889
2889
|
className: i,
|
|
2890
|
-
color: o =
|
|
2890
|
+
color: o = C.GREY_DARK_5,
|
|
2891
2891
|
height: e = 20,
|
|
2892
2892
|
width: l = 20,
|
|
2893
2893
|
onClick: r
|
|
@@ -2914,9 +2914,9 @@ const H1 = ({
|
|
|
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
|
+
), Q2 = ({
|
|
2918
2918
|
className: i,
|
|
2919
|
-
color: o =
|
|
2919
|
+
color: o = C.GREY_DARK_5,
|
|
2920
2920
|
height: e = 20,
|
|
2921
2921
|
width: l = 20,
|
|
2922
2922
|
onClick: r
|
|
@@ -2931,7 +2931,7 @@ const H1 = ({
|
|
|
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: C.GREY_LIGHT_2 }),
|
|
2935
2935
|
/* @__PURE__ */ t(
|
|
2936
2936
|
"path",
|
|
2937
2937
|
{
|
|
@@ -2943,9 +2943,9 @@ const H1 = ({
|
|
|
2943
2943
|
)
|
|
2944
2944
|
]
|
|
2945
2945
|
}
|
|
2946
|
-
),
|
|
2946
|
+
), X2 = ({
|
|
2947
2947
|
className: i,
|
|
2948
|
-
color: o =
|
|
2948
|
+
color: o = C.GREY_DARK_5,
|
|
2949
2949
|
height: e = 20,
|
|
2950
2950
|
width: l = 20,
|
|
2951
2951
|
onClick: r
|
|
@@ -2960,7 +2960,7 @@ const H1 = ({
|
|
|
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: C.GREY_LIGHT_2 }),
|
|
2964
2964
|
/* @__PURE__ */ t(
|
|
2965
2965
|
"path",
|
|
2966
2966
|
{
|
|
@@ -2972,7 +2972,7 @@ const H1 = ({
|
|
|
2972
2972
|
)
|
|
2973
2973
|
]
|
|
2974
2974
|
}
|
|
2975
|
-
),
|
|
2975
|
+
), e5 = ({
|
|
2976
2976
|
className: i,
|
|
2977
2977
|
color: o = "#001E52",
|
|
2978
2978
|
height: e = 24,
|
|
@@ -2998,7 +2998,7 @@ const H1 = ({
|
|
|
2998
2998
|
}
|
|
2999
2999
|
)
|
|
3000
3000
|
}
|
|
3001
|
-
),
|
|
3001
|
+
), o5 = ({
|
|
3002
3002
|
className: i,
|
|
3003
3003
|
color: o = "#131314",
|
|
3004
3004
|
height: e = 20,
|
|
@@ -3026,7 +3026,7 @@ const H1 = ({
|
|
|
3026
3026
|
}
|
|
3027
3027
|
)
|
|
3028
3028
|
}
|
|
3029
|
-
),
|
|
3029
|
+
), i5 = ({
|
|
3030
3030
|
className: i,
|
|
3031
3031
|
color: o = "#001E52",
|
|
3032
3032
|
height: e = 24,
|
|
@@ -3064,58 +3064,114 @@ const H1 = ({
|
|
|
3064
3064
|
)
|
|
3065
3065
|
] }) })
|
|
3066
3066
|
}
|
|
3067
|
-
),
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3067
|
+
), t5 = ({
|
|
3068
|
+
width: i = 20,
|
|
3069
|
+
height: o = 20,
|
|
3070
|
+
color: e = "#001E52",
|
|
3071
|
+
className: l,
|
|
3072
|
+
onClick: r
|
|
3073
|
+
}) => /* @__PURE__ */ t(
|
|
3074
|
+
"svg",
|
|
3075
|
+
{
|
|
3076
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3077
|
+
width: i,
|
|
3078
|
+
height: o,
|
|
3079
|
+
className: l,
|
|
3080
|
+
onClick: r,
|
|
3081
|
+
viewBox: "0 0 20 20",
|
|
3082
|
+
fill: "none",
|
|
3083
|
+
children: /* @__PURE__ */ t(
|
|
3084
|
+
"path",
|
|
3085
|
+
{
|
|
3086
|
+
fillRule: "evenodd",
|
|
3087
|
+
clipRule: "evenodd",
|
|
3088
|
+
d: `M2.88667 2.88667C1.66667 4.10834 1.66667 6.07167 1.66667 10C1.66667 13.9283 1.66667 15.8925
|
|
3089
|
+
2.88667 17.1125C4.10833 18.3333 6.07167 18.3333 10 18.3333C13.9283 18.3333 15.8925 18.3333 17.1125
|
|
3090
|
+
17.1125C18.3333 15.8933 18.3333 13.9283 18.3333 10C18.3333 6.07167 18.3333 4.10751 17.1125 2.88667C15.8933
|
|
3091
|
+
1.66667 13.9283 1.66667 10 1.66667C6.07167 1.66667 4.1075 1.66667 2.88667 2.88667ZM8.78667 6.26417C8.84325
|
|
3092
|
+
6.20469 8.88755 6.13465 8.91706 6.05805C8.94657 5.98145 8.96071 5.89979 8.95866 5.81772C8.95661 5.73566
|
|
3093
|
+
8.93841 5.6548 8.90511 5.57977C8.87181 5.50474 8.82406 5.437 8.76458 5.38042C8.70511 5.32384 8.63507 5.27954
|
|
3094
|
+
8.55847 5.25003C8.48186 5.22052 8.4002 5.20638 8.31814 5.20843C8.23607 5.21048 8.15522 5.22868 8.08018
|
|
3095
|
+
5.26198C8.00515 5.29528 7.93741 5.34303 7.88083 5.4025L5.9525 7.42751L5.4525 6.9025C5.39654 6.84066 5.32876
|
|
3096
|
+
6.79064 5.25316 6.75539C5.17756 6.72015 5.09567 6.70039 5.01232 6.69729C4.92897 6.69418 4.84583 6.7078
|
|
3097
|
+
4.76782 6.73732C4.68982 6.76685 4.6185 6.81169 4.5581 6.86921C4.49769 6.92673 4.4494 6.99575 4.41609
|
|
3098
|
+
7.07222C4.38277 7.14869 4.3651 7.23105 4.36411 7.31446C4.36312 7.39786 4.37884 7.48062 4.41034 7.55786C4.44183
|
|
3099
|
+
7.63509 4.48847 7.70524 4.5475 7.76417L5.5 8.76417C5.55837 8.82544 5.62858 8.87421 5.70636 8.90754C5.78414
|
|
3100
|
+
8.94086 5.86788 8.95805 5.9525 8.95805C6.03712 8.95805 6.12086 8.94086 6.19864 8.90754C6.27643 8.87421
|
|
3101
|
+
6.34663 8.82544 6.405 8.76417L8.78667 6.26417ZM10.8333 6.875C10.6676 6.875 10.5086 6.94085 10.3914
|
|
3102
|
+
7.05806C10.2742 7.17527 10.2083 7.33424 10.2083 7.5C10.2083 7.66577 10.2742 7.82474 10.3914 7.94195C10.5086
|
|
3103
|
+
8.05916 10.6676 8.125 10.8333 8.125H15C15.1658 8.125 15.3247 8.05916 15.4419 7.94195C15.5592 7.82474 15.625
|
|
3104
|
+
7.66577 15.625 7.5C15.625 7.33424 15.5592 7.17527 15.4419 7.05806C15.3247 6.94085 15.1658 6.875 15
|
|
3105
|
+
6.875H10.8333ZM8.78583 12.0975C8.84486 12.0386 8.8915 11.9684 8.923 11.8912C8.95449 11.814 8.97021 11.7312
|
|
3106
|
+
8.96922 11.6478C8.96824 11.5644 8.95056 11.482 8.91725 11.4056C8.88393 11.3291 8.83565 11.2601 8.77524
|
|
3107
|
+
11.2025C8.71483 11.145 8.64352 11.1002 8.56551 11.0707C8.4875 11.0411 8.40437 11.0275 8.32102 11.0306C8.23766
|
|
3108
|
+
11.0337 8.15578 11.0535 8.08018 11.0887C8.00458 11.124 7.9368 11.174 7.88083 11.2358L5.9525 13.2608L5.4525
|
|
3109
|
+
12.7358C5.39654 12.674 5.32876 12.624 5.25316 12.5887C5.17756 12.5535 5.09567 12.5337 5.01232 12.5306C4.92897
|
|
3110
|
+
12.5275 4.84583 12.5411 4.76782 12.5707C4.68982 12.6002 4.6185 12.645 4.5581 12.7025C4.49769 12.7601 4.4494
|
|
3111
|
+
12.8291 4.41609 12.9056C4.38277 12.982 4.3651 13.0644 4.36411 13.1478C4.36312 13.2312 4.37884 13.314 4.41034
|
|
3112
|
+
13.3912C4.44183 13.4684 4.48847 13.5386 4.5475 13.5975L5.5 14.5975C5.55837 14.6588 5.62858 14.7075 5.70636
|
|
3113
|
+
14.7409C5.78414 14.7742 5.86788 14.7914 5.9525 14.7914C6.03712 14.7914 6.12086 14.7742 6.19864 14.7409C6.27643
|
|
3114
|
+
14.7075 6.34663 14.6588 6.405 14.5975L8.78583 12.0975ZM10.8333 12.7083C10.6676 12.7083 10.5086 12.7742 10.3914
|
|
3115
|
+
12.8914C10.2742 13.0086 10.2083 13.1676 10.2083 13.3333C10.2083 13.4991 10.2742 13.6581 10.3914 13.7753C10.5086
|
|
3116
|
+
13.8925 10.6676 13.9583 10.8333 13.9583H15C15.1658 13.9583 15.3247 13.8925 15.4419 13.7753C15.5592 13.6581
|
|
3117
|
+
15.625 13.4991 15.625 13.3333C15.625 13.1676 15.5592 13.0086 15.4419 12.8914C15.3247 12.7742 15.1658 12.7083
|
|
3118
|
+
15 12.7083H10.8333Z`,
|
|
3119
|
+
fill: e
|
|
3120
|
+
}
|
|
3121
|
+
)
|
|
3122
|
+
}
|
|
3123
|
+
), $ = ({
|
|
3124
|
+
name: i,
|
|
3125
|
+
width: o,
|
|
3126
|
+
height: e,
|
|
3127
|
+
color: l,
|
|
3128
|
+
className: r,
|
|
3129
|
+
disabled: w = !1,
|
|
3130
|
+
onClick: g
|
|
3131
|
+
}) => {
|
|
3132
|
+
const [s, p] = u(r), { theme: k } = i1(a1), h = w ? k && k === "dark" ? C.GREY_LIGHT_4 : C.GREY_DARK_1 : l, n = w ? void 0 : g;
|
|
3133
|
+
return Z(() => {
|
|
3078
3134
|
if (r) {
|
|
3079
3135
|
n && !w && p(`${r} clickable`);
|
|
3080
3136
|
return;
|
|
3081
3137
|
}
|
|
3082
3138
|
n && !w && p("clickable");
|
|
3083
|
-
}, [n, r, w]), /* @__PURE__ */ t(
|
|
3139
|
+
}, [n, r, w]), /* @__PURE__ */ t(G, { children: (() => {
|
|
3084
3140
|
switch (i) {
|
|
3085
3141
|
case "nextIcon":
|
|
3086
|
-
return u2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3087
|
-
case "prevIcon":
|
|
3088
3142
|
return v2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3143
|
+
case "prevIcon":
|
|
3144
|
+
return N2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3089
3145
|
case "arrowUp":
|
|
3090
|
-
return H1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3091
|
-
case "arrowDown":
|
|
3092
3146
|
return V1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3093
|
-
case "
|
|
3147
|
+
case "arrowDown":
|
|
3094
3148
|
return E1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3095
|
-
case "
|
|
3149
|
+
case "info":
|
|
3096
3150
|
return Z1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3097
|
-
case "
|
|
3151
|
+
case "arrowRight":
|
|
3098
3152
|
return W1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3099
|
-
case "
|
|
3153
|
+
case "calendar":
|
|
3100
3154
|
return I1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3101
|
-
case "
|
|
3155
|
+
case "ok":
|
|
3102
3156
|
return B1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3103
|
-
case "
|
|
3157
|
+
case "cancel":
|
|
3104
3158
|
return A1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3105
|
-
case "
|
|
3159
|
+
case "add":
|
|
3106
3160
|
return G1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3107
|
-
case "
|
|
3161
|
+
case "list":
|
|
3108
3162
|
return D1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3109
|
-
case "
|
|
3163
|
+
case "dragAndDrop":
|
|
3110
3164
|
return j1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3111
|
-
case "
|
|
3165
|
+
case "filter":
|
|
3112
3166
|
return T1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3113
|
-
case "
|
|
3167
|
+
case "attention":
|
|
3114
3168
|
return y1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3115
|
-
case "
|
|
3169
|
+
case "plus":
|
|
3116
3170
|
return Y1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3171
|
+
case "time":
|
|
3172
|
+
return K1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3117
3173
|
case "arrowDownLong":
|
|
3118
|
-
return
|
|
3174
|
+
return O1({
|
|
3119
3175
|
width: o,
|
|
3120
3176
|
height: e,
|
|
3121
3177
|
color: h,
|
|
@@ -3123,9 +3179,9 @@ const H1 = ({
|
|
|
3123
3179
|
onClick: n
|
|
3124
3180
|
});
|
|
3125
3181
|
case "users":
|
|
3126
|
-
return
|
|
3182
|
+
return b1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3127
3183
|
case "mySkillsMatrix":
|
|
3128
|
-
return
|
|
3184
|
+
return F1({
|
|
3129
3185
|
width: o,
|
|
3130
3186
|
height: e,
|
|
3131
3187
|
color: h,
|
|
@@ -3133,9 +3189,9 @@ const H1 = ({
|
|
|
3133
3189
|
onClick: n
|
|
3134
3190
|
});
|
|
3135
3191
|
case "skills":
|
|
3136
|
-
return
|
|
3192
|
+
return S1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3137
3193
|
case "skillsMatrices":
|
|
3138
|
-
return
|
|
3194
|
+
return U1({
|
|
3139
3195
|
width: o,
|
|
3140
3196
|
height: e,
|
|
3141
3197
|
color: h,
|
|
@@ -3143,23 +3199,23 @@ const H1 = ({
|
|
|
3143
3199
|
onClick: n
|
|
3144
3200
|
});
|
|
3145
3201
|
case "history":
|
|
3146
|
-
return U1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3147
|
-
case "logOut":
|
|
3148
3202
|
return P1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3149
|
-
case "
|
|
3203
|
+
case "logOut":
|
|
3150
3204
|
return $1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3151
|
-
case "
|
|
3205
|
+
case "settings":
|
|
3152
3206
|
return z1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3153
|
-
case "
|
|
3207
|
+
case "addSkill":
|
|
3154
3208
|
return q1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3155
|
-
case "
|
|
3209
|
+
case "conversation":
|
|
3156
3210
|
return J1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3157
|
-
case "
|
|
3211
|
+
case "trash":
|
|
3158
3212
|
return Q1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3159
|
-
case "
|
|
3213
|
+
case "settings4":
|
|
3160
3214
|
return X1({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3215
|
+
case "edit2":
|
|
3216
|
+
return e2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3161
3217
|
case "notifications":
|
|
3162
|
-
return
|
|
3218
|
+
return o2({
|
|
3163
3219
|
width: o,
|
|
3164
3220
|
height: e,
|
|
3165
3221
|
color: h,
|
|
@@ -3167,9 +3223,9 @@ const H1 = ({
|
|
|
3167
3223
|
onClick: n
|
|
3168
3224
|
});
|
|
3169
3225
|
case "success":
|
|
3170
|
-
return
|
|
3226
|
+
return i2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3171
3227
|
case "attentionSmall":
|
|
3172
|
-
return
|
|
3228
|
+
return t2({
|
|
3173
3229
|
width: o,
|
|
3174
3230
|
height: e,
|
|
3175
3231
|
color: h,
|
|
@@ -3177,11 +3233,11 @@ const H1 = ({
|
|
|
3177
3233
|
onClick: n
|
|
3178
3234
|
});
|
|
3179
3235
|
case "errorSmall":
|
|
3180
|
-
return t2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3181
|
-
case "infoMedium":
|
|
3182
3236
|
return l2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3237
|
+
case "infoMedium":
|
|
3238
|
+
return r2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3183
3239
|
case "attentionMedium":
|
|
3184
|
-
return
|
|
3240
|
+
return s2({
|
|
3185
3241
|
width: o,
|
|
3186
3242
|
height: e,
|
|
3187
3243
|
color: h,
|
|
@@ -3189,9 +3245,9 @@ const H1 = ({
|
|
|
3189
3245
|
onClick: n
|
|
3190
3246
|
});
|
|
3191
3247
|
case "errorMedium":
|
|
3192
|
-
return
|
|
3248
|
+
return n2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3193
3249
|
case "faviconSkills":
|
|
3194
|
-
return
|
|
3250
|
+
return w2({
|
|
3195
3251
|
width: o,
|
|
3196
3252
|
height: e,
|
|
3197
3253
|
color: h,
|
|
@@ -3199,7 +3255,7 @@ const H1 = ({
|
|
|
3199
3255
|
onClick: n
|
|
3200
3256
|
});
|
|
3201
3257
|
case "visibilityIcon":
|
|
3202
|
-
return
|
|
3258
|
+
return h2({
|
|
3203
3259
|
width: o,
|
|
3204
3260
|
height: e,
|
|
3205
3261
|
color: h,
|
|
@@ -3207,7 +3263,7 @@ const H1 = ({
|
|
|
3207
3263
|
onClick: n
|
|
3208
3264
|
});
|
|
3209
3265
|
case "visibilityOffIcon":
|
|
3210
|
-
return
|
|
3266
|
+
return c2({
|
|
3211
3267
|
width: o,
|
|
3212
3268
|
height: e,
|
|
3213
3269
|
color: h,
|
|
@@ -3215,7 +3271,7 @@ const H1 = ({
|
|
|
3215
3271
|
onClick: n
|
|
3216
3272
|
});
|
|
3217
3273
|
case "selectArrowIcon":
|
|
3218
|
-
return
|
|
3274
|
+
return a2({
|
|
3219
3275
|
width: o,
|
|
3220
3276
|
height: e,
|
|
3221
3277
|
color: h,
|
|
@@ -3223,7 +3279,7 @@ const H1 = ({
|
|
|
3223
3279
|
onClick: n
|
|
3224
3280
|
});
|
|
3225
3281
|
case "expandArrowIcon":
|
|
3226
|
-
return
|
|
3282
|
+
return C2({
|
|
3227
3283
|
width: o,
|
|
3228
3284
|
height: e,
|
|
3229
3285
|
color: h,
|
|
@@ -3239,97 +3295,99 @@ const H1 = ({
|
|
|
3239
3295
|
onClick: n
|
|
3240
3296
|
});
|
|
3241
3297
|
case "camera":
|
|
3242
|
-
return w2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3243
|
-
case "sortUp":
|
|
3244
3298
|
return k2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3245
|
-
case "
|
|
3299
|
+
case "sortUp":
|
|
3246
3300
|
return g2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3247
|
-
case "
|
|
3301
|
+
case "sortDown":
|
|
3248
3302
|
return p2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3249
|
-
case "
|
|
3303
|
+
case "logOut2":
|
|
3250
3304
|
return L2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3251
|
-
case "
|
|
3305
|
+
case "search":
|
|
3252
3306
|
return m2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3307
|
+
case "handRock":
|
|
3308
|
+
return u2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3253
3309
|
case "arrowUpFilled":
|
|
3254
|
-
return
|
|
3310
|
+
return M2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3255
3311
|
case "arrowDownFilled":
|
|
3256
|
-
return
|
|
3312
|
+
return f2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3257
3313
|
case "link":
|
|
3258
|
-
return
|
|
3314
|
+
return x2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3259
3315
|
case "telegram":
|
|
3260
|
-
return
|
|
3316
|
+
return R2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3261
3317
|
case "mail":
|
|
3262
|
-
return
|
|
3318
|
+
return V2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3263
3319
|
case "github":
|
|
3264
|
-
return
|
|
3320
|
+
return _2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3265
3321
|
case "linkedIn":
|
|
3266
|
-
return
|
|
3322
|
+
return H2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3267
3323
|
case "emptyStateIcon":
|
|
3268
|
-
return V2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3269
|
-
case "filtersIcon":
|
|
3270
3324
|
return E2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3271
|
-
case "
|
|
3325
|
+
case "filtersIcon":
|
|
3272
3326
|
return Z2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3273
|
-
case "
|
|
3327
|
+
case "dotMenuIcon":
|
|
3274
3328
|
return W2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3275
|
-
case "
|
|
3329
|
+
case "plusCircle":
|
|
3276
3330
|
return I2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3277
|
-
case "
|
|
3331
|
+
case "warning":
|
|
3278
3332
|
return B2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3279
|
-
case "
|
|
3333
|
+
case "back":
|
|
3280
3334
|
return A2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3335
|
+
case "bell":
|
|
3336
|
+
return G2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3281
3337
|
case "contract":
|
|
3282
|
-
return
|
|
3338
|
+
return j2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3283
3339
|
case "trash2":
|
|
3284
|
-
return
|
|
3340
|
+
return D2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3285
3341
|
case "manager":
|
|
3286
|
-
return j2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3287
|
-
case "resourceManager":
|
|
3288
3342
|
return T2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3289
|
-
case "
|
|
3343
|
+
case "resourceManager":
|
|
3290
3344
|
return y2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3291
|
-
case "
|
|
3345
|
+
case "settings2":
|
|
3292
3346
|
return Y2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3293
|
-
case "
|
|
3347
|
+
case "image":
|
|
3294
3348
|
return K2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3295
|
-
case "
|
|
3349
|
+
case "upload":
|
|
3296
3350
|
return O2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3297
|
-
case "
|
|
3351
|
+
case "edit":
|
|
3298
3352
|
return b2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3299
|
-
case "
|
|
3353
|
+
case "location":
|
|
3300
3354
|
return F2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3301
|
-
case "
|
|
3355
|
+
case "plus2":
|
|
3302
3356
|
return S2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3303
|
-
case "
|
|
3357
|
+
case "search2":
|
|
3304
3358
|
return U2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3305
|
-
case "
|
|
3359
|
+
case "fastArrowLeft":
|
|
3306
3360
|
return P2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3307
|
-
case "
|
|
3361
|
+
case "fastArrowRight":
|
|
3308
3362
|
return $2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3363
|
+
case "crossInCircle":
|
|
3364
|
+
return z2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3309
3365
|
case "arrowUp2":
|
|
3310
|
-
return
|
|
3366
|
+
return J2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3311
3367
|
case "arrowDown2":
|
|
3312
|
-
return
|
|
3368
|
+
return q2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3313
3369
|
case "filledArrowLeft":
|
|
3314
|
-
return J2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3315
|
-
case "filledArrowRight":
|
|
3316
3370
|
return Q2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3317
|
-
case "
|
|
3371
|
+
case "filledArrowRight":
|
|
3318
3372
|
return X2({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3319
|
-
case "
|
|
3373
|
+
case "burgerMenu":
|
|
3320
3374
|
return e5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3321
|
-
case "
|
|
3375
|
+
case "signOut":
|
|
3322
3376
|
return o5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3377
|
+
case "refresh":
|
|
3378
|
+
return i5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3379
|
+
case "projects":
|
|
3380
|
+
return t5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
3323
3381
|
default:
|
|
3324
|
-
return /* @__PURE__ */ t(
|
|
3382
|
+
return /* @__PURE__ */ t(G, { children: "No Icon provided" });
|
|
3325
3383
|
}
|
|
3326
3384
|
})() });
|
|
3327
|
-
}, { Title:
|
|
3385
|
+
}, { Title: l5, Text: r5 } = n1, s5 = {
|
|
3328
3386
|
h1: 1,
|
|
3329
3387
|
h2: 2,
|
|
3330
3388
|
h3: 3,
|
|
3331
3389
|
h4: 4
|
|
3332
|
-
},
|
|
3390
|
+
}, n5 = J(
|
|
3333
3391
|
({
|
|
3334
3392
|
align: i = "inherit",
|
|
3335
3393
|
variant: o = "body1",
|
|
@@ -3342,17 +3400,17 @@ const H1 = ({
|
|
|
3342
3400
|
const p = o === "h1" || o === "h2" || o === "h3" || o === "h4";
|
|
3343
3401
|
let k = `snmt-typography snmt-typography-${o}`;
|
|
3344
3402
|
return i && i !== "inherit" && (k += ` snmt-typography-align-${i}`), w && (k += " collapsed"), p ? /* @__PURE__ */ t(
|
|
3345
|
-
|
|
3403
|
+
l5,
|
|
3346
3404
|
{
|
|
3347
3405
|
className: k,
|
|
3348
3406
|
style: { color: e, whiteSpace: g },
|
|
3349
3407
|
onClick: r,
|
|
3350
|
-
level:
|
|
3408
|
+
level: s5[o],
|
|
3351
3409
|
ref: s,
|
|
3352
3410
|
children: l
|
|
3353
3411
|
}
|
|
3354
3412
|
) : /* @__PURE__ */ t(
|
|
3355
|
-
|
|
3413
|
+
r5,
|
|
3356
3414
|
{
|
|
3357
3415
|
className: k,
|
|
3358
3416
|
style: { color: e, whiteSpace: g },
|
|
@@ -3363,13 +3421,13 @@ const H1 = ({
|
|
|
3363
3421
|
);
|
|
3364
3422
|
}
|
|
3365
3423
|
);
|
|
3366
|
-
var
|
|
3367
|
-
const
|
|
3424
|
+
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 || {});
|
|
3425
|
+
const C1 = q({
|
|
3368
3426
|
locale: "en",
|
|
3369
3427
|
theme: "light"
|
|
3370
3428
|
});
|
|
3371
|
-
|
|
3372
|
-
const
|
|
3429
|
+
C1.Provider;
|
|
3430
|
+
const h5 = ({
|
|
3373
3431
|
width: i = 20,
|
|
3374
3432
|
height: o = 20,
|
|
3375
3433
|
color: e = "#001E52",
|
|
@@ -3396,7 +3454,7 @@ const s5 = ({
|
|
|
3396
3454
|
}
|
|
3397
3455
|
)
|
|
3398
3456
|
}
|
|
3399
|
-
),
|
|
3457
|
+
), c5 = ({
|
|
3400
3458
|
width: i = 20,
|
|
3401
3459
|
height: o = 20,
|
|
3402
3460
|
color: e = "#001E52",
|
|
@@ -3423,7 +3481,7 @@ const s5 = ({
|
|
|
3423
3481
|
}
|
|
3424
3482
|
)
|
|
3425
3483
|
}
|
|
3426
|
-
),
|
|
3484
|
+
), a5 = ({
|
|
3427
3485
|
width: i = 16,
|
|
3428
3486
|
height: o = 16,
|
|
3429
3487
|
color: e = "#001E52",
|
|
@@ -3451,7 +3509,7 @@ const s5 = ({
|
|
|
3451
3509
|
)
|
|
3452
3510
|
]
|
|
3453
3511
|
}
|
|
3454
|
-
),
|
|
3512
|
+
), C5 = ({
|
|
3455
3513
|
width: i = 20,
|
|
3456
3514
|
height: o = 20,
|
|
3457
3515
|
color: e = "#001E52",
|
|
@@ -3486,7 +3544,7 @@ const s5 = ({
|
|
|
3486
3544
|
)
|
|
3487
3545
|
]
|
|
3488
3546
|
}
|
|
3489
|
-
),
|
|
3547
|
+
), d5 = ({
|
|
3490
3548
|
width: i = 18,
|
|
3491
3549
|
height: o = 18,
|
|
3492
3550
|
color: e = "#001E52",
|
|
@@ -3525,7 +3583,7 @@ const s5 = ({
|
|
|
3525
3583
|
)
|
|
3526
3584
|
]
|
|
3527
3585
|
}
|
|
3528
|
-
),
|
|
3586
|
+
), w5 = ({
|
|
3529
3587
|
width: i = 20,
|
|
3530
3588
|
height: o = 20,
|
|
3531
3589
|
color: e = "#001E52",
|
|
@@ -3551,7 +3609,7 @@ const s5 = ({
|
|
|
3551
3609
|
}
|
|
3552
3610
|
)
|
|
3553
3611
|
}
|
|
3554
|
-
),
|
|
3612
|
+
), k5 = ({
|
|
3555
3613
|
width: i = 20,
|
|
3556
3614
|
height: o = 20,
|
|
3557
3615
|
color: e = "#001E52",
|
|
@@ -3572,7 +3630,7 @@ const s5 = ({
|
|
|
3572
3630
|
/* @__PURE__ */ t("path", { d: "M16 4L4 16", stroke: e, strokeWidth: "1.5", strokeLinecap: "round" })
|
|
3573
3631
|
]
|
|
3574
3632
|
}
|
|
3575
|
-
),
|
|
3633
|
+
), g5 = ({
|
|
3576
3634
|
width: i = 20,
|
|
3577
3635
|
height: o = 20,
|
|
3578
3636
|
color: e = "#001E52",
|
|
@@ -3604,7 +3662,7 @@ const s5 = ({
|
|
|
3604
3662
|
)
|
|
3605
3663
|
]
|
|
3606
3664
|
}
|
|
3607
|
-
),
|
|
3665
|
+
), p5 = ({
|
|
3608
3666
|
width: i = 20,
|
|
3609
3667
|
height: o = 20,
|
|
3610
3668
|
color: e = "#001E52",
|
|
@@ -3658,7 +3716,7 @@ const s5 = ({
|
|
|
3658
3716
|
)
|
|
3659
3717
|
]
|
|
3660
3718
|
}
|
|
3661
|
-
),
|
|
3719
|
+
), L5 = ({
|
|
3662
3720
|
width: i = 20,
|
|
3663
3721
|
height: o = 20,
|
|
3664
3722
|
color: e = "#001E52",
|
|
@@ -3697,7 +3755,7 @@ const s5 = ({
|
|
|
3697
3755
|
/* @__PURE__ */ t("path", { d: "M3 12L17 12", stroke: e, strokeWidth: "2", strokeLinecap: "round" })
|
|
3698
3756
|
]
|
|
3699
3757
|
}
|
|
3700
|
-
),
|
|
3758
|
+
), m5 = ({
|
|
3701
3759
|
width: i = 16,
|
|
3702
3760
|
height: o = 12,
|
|
3703
3761
|
color: e = "#001E52",
|
|
@@ -3746,7 +3804,7 @@ const s5 = ({
|
|
|
3746
3804
|
)
|
|
3747
3805
|
] })
|
|
3748
3806
|
}
|
|
3749
|
-
),
|
|
3807
|
+
), u5 = ({
|
|
3750
3808
|
width: i = 16,
|
|
3751
3809
|
height: o = 16,
|
|
3752
3810
|
color: e = "#001E52",
|
|
@@ -3780,7 +3838,7 @@ const s5 = ({
|
|
|
3780
3838
|
)
|
|
3781
3839
|
]
|
|
3782
3840
|
}
|
|
3783
|
-
),
|
|
3841
|
+
), v5 = ({
|
|
3784
3842
|
width: i = 10,
|
|
3785
3843
|
height: o = 10,
|
|
3786
3844
|
color: e = "#001E52",
|
|
@@ -3819,7 +3877,7 @@ const s5 = ({
|
|
|
3819
3877
|
)
|
|
3820
3878
|
] })
|
|
3821
3879
|
}
|
|
3822
|
-
),
|
|
3880
|
+
), N5 = ({
|
|
3823
3881
|
width: i = 16,
|
|
3824
3882
|
height: o = 16,
|
|
3825
3883
|
color: e = "#001E52",
|
|
@@ -3855,7 +3913,7 @@ const s5 = ({
|
|
|
3855
3913
|
)
|
|
3856
3914
|
]
|
|
3857
3915
|
}
|
|
3858
|
-
),
|
|
3916
|
+
), f5 = ({
|
|
3859
3917
|
width: i = 11,
|
|
3860
3918
|
height: o = 32,
|
|
3861
3919
|
color: e = "#001E52",
|
|
@@ -3893,7 +3951,7 @@ const s5 = ({
|
|
|
3893
3951
|
/* @__PURE__ */ t("circle", { cx: "3", cy: "3", r: "3", fill: e })
|
|
3894
3952
|
]
|
|
3895
3953
|
}
|
|
3896
|
-
),
|
|
3954
|
+
), M5 = ({
|
|
3897
3955
|
width: i = 20,
|
|
3898
3956
|
height: o = 20,
|
|
3899
3957
|
color: e = "#001E52",
|
|
@@ -3940,7 +3998,7 @@ const s5 = ({
|
|
|
3940
3998
|
)
|
|
3941
3999
|
]
|
|
3942
4000
|
}
|
|
3943
|
-
),
|
|
4001
|
+
), x5 = ({
|
|
3944
4002
|
width: i = 20,
|
|
3945
4003
|
height: o = 20,
|
|
3946
4004
|
color: e = "#001E52",
|
|
@@ -3973,7 +4031,7 @@ const s5 = ({
|
|
|
3973
4031
|
)
|
|
3974
4032
|
]
|
|
3975
4033
|
}
|
|
3976
|
-
),
|
|
4034
|
+
), _5 = ({
|
|
3977
4035
|
width: i = 20,
|
|
3978
4036
|
height: o = 20,
|
|
3979
4037
|
color: e = "#001E52",
|
|
@@ -4020,7 +4078,7 @@ const s5 = ({
|
|
|
4020
4078
|
)
|
|
4021
4079
|
]
|
|
4022
4080
|
}
|
|
4023
|
-
),
|
|
4081
|
+
), R5 = ({
|
|
4024
4082
|
width: i = 20,
|
|
4025
4083
|
height: o = 20,
|
|
4026
4084
|
color: e = "#001E52",
|
|
@@ -4053,7 +4111,7 @@ const s5 = ({
|
|
|
4053
4111
|
)
|
|
4054
4112
|
]
|
|
4055
4113
|
}
|
|
4056
|
-
),
|
|
4114
|
+
), H5 = ({
|
|
4057
4115
|
width: i = 18,
|
|
4058
4116
|
height: o = 16,
|
|
4059
4117
|
color: e = "#001E52",
|
|
@@ -4092,7 +4150,7 @@ const s5 = ({
|
|
|
4092
4150
|
)
|
|
4093
4151
|
]
|
|
4094
4152
|
}
|
|
4095
|
-
),
|
|
4153
|
+
), V5 = ({
|
|
4096
4154
|
width: i = 20,
|
|
4097
4155
|
height: o = 20,
|
|
4098
4156
|
color: e = "#001E52",
|
|
@@ -4125,7 +4183,7 @@ const s5 = ({
|
|
|
4125
4183
|
)
|
|
4126
4184
|
]
|
|
4127
4185
|
}
|
|
4128
|
-
),
|
|
4186
|
+
), E5 = ({
|
|
4129
4187
|
width: i = 20,
|
|
4130
4188
|
height: o = 20,
|
|
4131
4189
|
color: e = "#001E52",
|
|
@@ -4149,7 +4207,7 @@ const s5 = ({
|
|
|
4149
4207
|
}
|
|
4150
4208
|
)
|
|
4151
4209
|
}
|
|
4152
|
-
),
|
|
4210
|
+
), Z5 = ({
|
|
4153
4211
|
width: i = 20,
|
|
4154
4212
|
height: o = 20,
|
|
4155
4213
|
color: e = "#001E52",
|
|
@@ -4196,7 +4254,7 @@ const s5 = ({
|
|
|
4196
4254
|
)
|
|
4197
4255
|
]
|
|
4198
4256
|
}
|
|
4199
|
-
),
|
|
4257
|
+
), W5 = ({
|
|
4200
4258
|
width: i = 20,
|
|
4201
4259
|
height: o = 20,
|
|
4202
4260
|
color: e = "#001E52",
|
|
@@ -4229,7 +4287,7 @@ const s5 = ({
|
|
|
4229
4287
|
)
|
|
4230
4288
|
]
|
|
4231
4289
|
}
|
|
4232
|
-
),
|
|
4290
|
+
), I5 = ({
|
|
4233
4291
|
width: i = 20,
|
|
4234
4292
|
height: o = 20,
|
|
4235
4293
|
color: e = "#001E52",
|
|
@@ -4262,7 +4320,7 @@ const s5 = ({
|
|
|
4262
4320
|
)
|
|
4263
4321
|
]
|
|
4264
4322
|
}
|
|
4265
|
-
),
|
|
4323
|
+
), B5 = ({
|
|
4266
4324
|
width: i = 20,
|
|
4267
4325
|
height: o = 23,
|
|
4268
4326
|
color: e = "#001E52",
|
|
@@ -4323,7 +4381,7 @@ const s5 = ({
|
|
|
4323
4381
|
)
|
|
4324
4382
|
]
|
|
4325
4383
|
}
|
|
4326
|
-
),
|
|
4384
|
+
), A5 = ({
|
|
4327
4385
|
width: i = 20,
|
|
4328
4386
|
height: o = 20,
|
|
4329
4387
|
color: e = "#001E52",
|
|
@@ -4363,7 +4421,7 @@ const s5 = ({
|
|
|
4363
4421
|
)
|
|
4364
4422
|
]
|
|
4365
4423
|
}
|
|
4366
|
-
),
|
|
4424
|
+
), G5 = ({
|
|
4367
4425
|
width: i = 32,
|
|
4368
4426
|
height: o = 25,
|
|
4369
4427
|
color: e = "#001E52",
|
|
@@ -4391,7 +4449,7 @@ const s5 = ({
|
|
|
4391
4449
|
)
|
|
4392
4450
|
]
|
|
4393
4451
|
}
|
|
4394
|
-
),
|
|
4452
|
+
), D5 = ({
|
|
4395
4453
|
width: i = 14,
|
|
4396
4454
|
height: o = 14,
|
|
4397
4455
|
color: e = "#10B981",
|
|
@@ -4420,7 +4478,7 @@ const s5 = ({
|
|
|
4420
4478
|
)
|
|
4421
4479
|
]
|
|
4422
4480
|
}
|
|
4423
|
-
),
|
|
4481
|
+
), j5 = ({
|
|
4424
4482
|
width: i = 11,
|
|
4425
4483
|
height: o = 11,
|
|
4426
4484
|
color: e = "#FFB020",
|
|
@@ -4454,7 +4512,7 @@ const s5 = ({
|
|
|
4454
4512
|
)
|
|
4455
4513
|
]
|
|
4456
4514
|
}
|
|
4457
|
-
),
|
|
4515
|
+
), T5 = ({
|
|
4458
4516
|
width: i = 10,
|
|
4459
4517
|
height: o = 10,
|
|
4460
4518
|
color: e = "#88A4FF",
|
|
@@ -4502,7 +4560,7 @@ const s5 = ({
|
|
|
4502
4560
|
)
|
|
4503
4561
|
]
|
|
4504
4562
|
}
|
|
4505
|
-
),
|
|
4563
|
+
), y5 = ({
|
|
4506
4564
|
width: i = 14,
|
|
4507
4565
|
height: o = 14,
|
|
4508
4566
|
color: e = "#8E8E93",
|
|
@@ -4530,7 +4588,7 @@ const s5 = ({
|
|
|
4530
4588
|
)
|
|
4531
4589
|
]
|
|
4532
4590
|
}
|
|
4533
|
-
),
|
|
4591
|
+
), Y5 = ({
|
|
4534
4592
|
width: i = 14,
|
|
4535
4593
|
height: o = 14,
|
|
4536
4594
|
color: e = "#FFB020",
|
|
@@ -4564,7 +4622,7 @@ const s5 = ({
|
|
|
4564
4622
|
)
|
|
4565
4623
|
]
|
|
4566
4624
|
}
|
|
4567
|
-
),
|
|
4625
|
+
), K5 = ({
|
|
4568
4626
|
width: i = 14,
|
|
4569
4627
|
height: o = 14,
|
|
4570
4628
|
color: e = "#D0421B",
|
|
@@ -4612,7 +4670,7 @@ const s5 = ({
|
|
|
4612
4670
|
)
|
|
4613
4671
|
]
|
|
4614
4672
|
}
|
|
4615
|
-
),
|
|
4673
|
+
), O5 = ({
|
|
4616
4674
|
width: i = 20,
|
|
4617
4675
|
height: o = 20,
|
|
4618
4676
|
color: e = "#070739",
|
|
@@ -4642,7 +4700,7 @@ const s5 = ({
|
|
|
4642
4700
|
/* @__PURE__ */ t("circle", { cx: "10", cy: "10", r: "2.375", stroke: e, strokeWidth: "1.25" })
|
|
4643
4701
|
]
|
|
4644
4702
|
}
|
|
4645
|
-
),
|
|
4703
|
+
), b5 = ({
|
|
4646
4704
|
width: i = 20,
|
|
4647
4705
|
height: o = 20,
|
|
4648
4706
|
color: e = "#070739",
|
|
@@ -4680,7 +4738,7 @@ const s5 = ({
|
|
|
4680
4738
|
)
|
|
4681
4739
|
]
|
|
4682
4740
|
}
|
|
4683
|
-
),
|
|
4741
|
+
), F5 = ({
|
|
4684
4742
|
width: i = 9,
|
|
4685
4743
|
height: o = 5,
|
|
4686
4744
|
color: e = "#001E52",
|
|
@@ -4706,7 +4764,7 @@ const s5 = ({
|
|
|
4706
4764
|
}
|
|
4707
4765
|
)
|
|
4708
4766
|
}
|
|
4709
|
-
),
|
|
4767
|
+
), S5 = ({
|
|
4710
4768
|
width: i = 20,
|
|
4711
4769
|
height: o = 20,
|
|
4712
4770
|
color: e = "#F2F2F7",
|
|
@@ -4735,7 +4793,7 @@ const s5 = ({
|
|
|
4735
4793
|
)
|
|
4736
4794
|
]
|
|
4737
4795
|
}
|
|
4738
|
-
),
|
|
4796
|
+
), U5 = ({
|
|
4739
4797
|
width: i = 20,
|
|
4740
4798
|
height: o = 20,
|
|
4741
4799
|
color: e = "#004ED7",
|
|
@@ -4764,7 +4822,7 @@ const s5 = ({
|
|
|
4764
4822
|
)
|
|
4765
4823
|
]
|
|
4766
4824
|
}
|
|
4767
|
-
),
|
|
4825
|
+
), P5 = ({
|
|
4768
4826
|
width: i = 248,
|
|
4769
4827
|
height: o = 248,
|
|
4770
4828
|
color: e = "#070739",
|
|
@@ -4801,7 +4859,7 @@ const s5 = ({
|
|
|
4801
4859
|
)
|
|
4802
4860
|
]
|
|
4803
4861
|
}
|
|
4804
|
-
),
|
|
4862
|
+
), $5 = ({
|
|
4805
4863
|
width: i = 24,
|
|
4806
4864
|
height: o = 24,
|
|
4807
4865
|
color: e = "#001E52",
|
|
@@ -4840,7 +4898,7 @@ const s5 = ({
|
|
|
4840
4898
|
)
|
|
4841
4899
|
]
|
|
4842
4900
|
}
|
|
4843
|
-
),
|
|
4901
|
+
), z5 = ({
|
|
4844
4902
|
width: i = 10,
|
|
4845
4903
|
height: o = 10,
|
|
4846
4904
|
color: e = "#001E52",
|
|
@@ -4869,7 +4927,7 @@ const s5 = ({
|
|
|
4869
4927
|
)
|
|
4870
4928
|
]
|
|
4871
4929
|
}
|
|
4872
|
-
),
|
|
4930
|
+
), q5 = ({
|
|
4873
4931
|
width: i = 10,
|
|
4874
4932
|
height: o = 10,
|
|
4875
4933
|
color: e = "#001E52",
|
|
@@ -4906,10 +4964,10 @@ const s5 = ({
|
|
|
4906
4964
|
)
|
|
4907
4965
|
]
|
|
4908
4966
|
}
|
|
4909
|
-
),
|
|
4967
|
+
), J5 = ({
|
|
4910
4968
|
width: i = 24,
|
|
4911
4969
|
height: o = 24,
|
|
4912
|
-
color: e =
|
|
4970
|
+
color: e = d.GREY_DARK_5,
|
|
4913
4971
|
className: l,
|
|
4914
4972
|
onClick: r
|
|
4915
4973
|
}) => /* @__PURE__ */ c(
|
|
@@ -4945,10 +5003,10 @@ const s5 = ({
|
|
|
4945
5003
|
)
|
|
4946
5004
|
]
|
|
4947
5005
|
}
|
|
4948
|
-
),
|
|
5006
|
+
), Q5 = ({
|
|
4949
5007
|
width: i = 20,
|
|
4950
5008
|
height: o = 20,
|
|
4951
|
-
color: e =
|
|
5009
|
+
color: e = d.GREY_DARK_1,
|
|
4952
5010
|
className: l,
|
|
4953
5011
|
onClick: r
|
|
4954
5012
|
}) => /* @__PURE__ */ c(
|
|
@@ -4978,10 +5036,10 @@ const s5 = ({
|
|
|
4978
5036
|
)
|
|
4979
5037
|
]
|
|
4980
5038
|
}
|
|
4981
|
-
),
|
|
5039
|
+
), X5 = ({
|
|
4982
5040
|
width: i = 81,
|
|
4983
5041
|
height: o = 80,
|
|
4984
|
-
color: e =
|
|
5042
|
+
color: e = d.GREY_DARK_5,
|
|
4985
5043
|
className: l,
|
|
4986
5044
|
onClick: r
|
|
4987
5045
|
}) => /* @__PURE__ */ c(
|
|
@@ -5027,9 +5085,9 @@ const s5 = ({
|
|
|
5027
5085
|
)
|
|
5028
5086
|
]
|
|
5029
5087
|
}
|
|
5030
|
-
),
|
|
5088
|
+
), e3 = ({
|
|
5031
5089
|
className: i,
|
|
5032
|
-
color: o =
|
|
5090
|
+
color: o = d.GREY_DARK_5,
|
|
5033
5091
|
height: e = 20,
|
|
5034
5092
|
width: l = 20,
|
|
5035
5093
|
onClick: r
|
|
@@ -5054,9 +5112,9 @@ const s5 = ({
|
|
|
5054
5112
|
}
|
|
5055
5113
|
)
|
|
5056
5114
|
}
|
|
5057
|
-
),
|
|
5115
|
+
), o3 = ({
|
|
5058
5116
|
className: i,
|
|
5059
|
-
color: o =
|
|
5117
|
+
color: o = d.GREY_DARK_5,
|
|
5060
5118
|
height: e = 20,
|
|
5061
5119
|
width: l = 20,
|
|
5062
5120
|
onClick: r
|
|
@@ -5081,9 +5139,9 @@ const s5 = ({
|
|
|
5081
5139
|
}
|
|
5082
5140
|
)
|
|
5083
5141
|
}
|
|
5084
|
-
),
|
|
5142
|
+
), i3 = ({
|
|
5085
5143
|
className: i,
|
|
5086
|
-
color: o =
|
|
5144
|
+
color: o = d.GREY_DARK_5,
|
|
5087
5145
|
height: e = 5,
|
|
5088
5146
|
width: l = 10,
|
|
5089
5147
|
onClick: r
|
|
@@ -5105,9 +5163,9 @@ const s5 = ({
|
|
|
5105
5163
|
}
|
|
5106
5164
|
)
|
|
5107
5165
|
}
|
|
5108
|
-
),
|
|
5166
|
+
), t3 = ({
|
|
5109
5167
|
className: i,
|
|
5110
|
-
color: o =
|
|
5168
|
+
color: o = d.GREY_DARK_5,
|
|
5111
5169
|
height: e = 5,
|
|
5112
5170
|
width: l = 10,
|
|
5113
5171
|
onClick: r
|
|
@@ -5130,9 +5188,9 @@ const s5 = ({
|
|
|
5130
5188
|
}
|
|
5131
5189
|
)
|
|
5132
5190
|
}
|
|
5133
|
-
),
|
|
5191
|
+
), l3 = ({
|
|
5134
5192
|
className: i,
|
|
5135
|
-
color: o =
|
|
5193
|
+
color: o = d.GREY_DARK_5,
|
|
5136
5194
|
height: e = 24,
|
|
5137
5195
|
width: l = 24,
|
|
5138
5196
|
onClick: r
|
|
@@ -5169,9 +5227,9 @@ const s5 = ({
|
|
|
5169
5227
|
)
|
|
5170
5228
|
]
|
|
5171
5229
|
}
|
|
5172
|
-
),
|
|
5230
|
+
), r3 = ({
|
|
5173
5231
|
className: i,
|
|
5174
|
-
color: o =
|
|
5232
|
+
color: o = d.GREY_DARK_5,
|
|
5175
5233
|
height: e = 24,
|
|
5176
5234
|
width: l = 24,
|
|
5177
5235
|
onClick: r
|
|
@@ -5208,9 +5266,9 @@ const s5 = ({
|
|
|
5208
5266
|
)
|
|
5209
5267
|
]
|
|
5210
5268
|
}
|
|
5211
|
-
),
|
|
5269
|
+
), s3 = ({
|
|
5212
5270
|
className: i,
|
|
5213
|
-
color: o =
|
|
5271
|
+
color: o = d.GREY_DARK_5,
|
|
5214
5272
|
height: e = 24,
|
|
5215
5273
|
width: l = 24,
|
|
5216
5274
|
onClick: r
|
|
@@ -5235,9 +5293,9 @@ const s5 = ({
|
|
|
5235
5293
|
}
|
|
5236
5294
|
)
|
|
5237
5295
|
}
|
|
5238
|
-
),
|
|
5296
|
+
), n3 = ({
|
|
5239
5297
|
className: i,
|
|
5240
|
-
color: o =
|
|
5298
|
+
color: o = d.GREY_DARK_5,
|
|
5241
5299
|
height: e = 24,
|
|
5242
5300
|
width: l = 24,
|
|
5243
5301
|
onClick: r
|
|
@@ -5294,9 +5352,9 @@ const s5 = ({
|
|
|
5294
5352
|
)
|
|
5295
5353
|
]
|
|
5296
5354
|
}
|
|
5297
|
-
),
|
|
5355
|
+
), h3 = ({
|
|
5298
5356
|
className: i,
|
|
5299
|
-
color: o =
|
|
5357
|
+
color: o = d.GREY_DARK_5,
|
|
5300
5358
|
height: e = 24,
|
|
5301
5359
|
width: l = 24,
|
|
5302
5360
|
onClick: r
|
|
@@ -5331,9 +5389,9 @@ const s5 = ({
|
|
|
5331
5389
|
)
|
|
5332
5390
|
]
|
|
5333
5391
|
}
|
|
5334
|
-
),
|
|
5392
|
+
), c3 = ({
|
|
5335
5393
|
className: i,
|
|
5336
|
-
color: o =
|
|
5394
|
+
color: o = d.GREY_DARK_3,
|
|
5337
5395
|
height: e = 14,
|
|
5338
5396
|
width: l = 14,
|
|
5339
5397
|
onClick: r
|
|
@@ -5368,9 +5426,9 @@ const s5 = ({
|
|
|
5368
5426
|
)
|
|
5369
5427
|
]
|
|
5370
5428
|
}
|
|
5371
|
-
),
|
|
5429
|
+
), a3 = ({
|
|
5372
5430
|
className: i,
|
|
5373
|
-
color: o =
|
|
5431
|
+
color: o = d.GREY_DARK_5,
|
|
5374
5432
|
height: e = 18,
|
|
5375
5433
|
onClick: l,
|
|
5376
5434
|
width: r = 18
|
|
@@ -5395,9 +5453,9 @@ const s5 = ({
|
|
|
5395
5453
|
}
|
|
5396
5454
|
)
|
|
5397
5455
|
}
|
|
5398
|
-
),
|
|
5456
|
+
), C3 = ({
|
|
5399
5457
|
className: i,
|
|
5400
|
-
color: o =
|
|
5458
|
+
color: o = d.GREY_DARK_5,
|
|
5401
5459
|
height: e = 24,
|
|
5402
5460
|
width: l = 24,
|
|
5403
5461
|
onClick: r
|
|
@@ -5447,9 +5505,9 @@ const s5 = ({
|
|
|
5447
5505
|
)
|
|
5448
5506
|
]
|
|
5449
5507
|
}
|
|
5450
|
-
),
|
|
5508
|
+
), d3 = ({
|
|
5451
5509
|
className: i,
|
|
5452
|
-
color: o =
|
|
5510
|
+
color: o = d.GREY_DARK_5,
|
|
5453
5511
|
height: e = 24,
|
|
5454
5512
|
width: l = 24,
|
|
5455
5513
|
onClick: r
|
|
@@ -5484,9 +5542,9 @@ const s5 = ({
|
|
|
5484
5542
|
)
|
|
5485
5543
|
]
|
|
5486
5544
|
}
|
|
5487
|
-
),
|
|
5545
|
+
), w3 = ({
|
|
5488
5546
|
className: i,
|
|
5489
|
-
color: o =
|
|
5547
|
+
color: o = d.NOTIFICATION_WARNING_DARK,
|
|
5490
5548
|
height: e = 37,
|
|
5491
5549
|
width: l = 36,
|
|
5492
5550
|
onClick: r
|
|
@@ -5523,9 +5581,9 @@ const s5 = ({
|
|
|
5523
5581
|
)
|
|
5524
5582
|
]
|
|
5525
5583
|
}
|
|
5526
|
-
),
|
|
5584
|
+
), k3 = ({
|
|
5527
5585
|
className: i,
|
|
5528
|
-
color: o =
|
|
5586
|
+
color: o = d.GREY_DARK_5,
|
|
5529
5587
|
height: e = 24,
|
|
5530
5588
|
width: l = 24,
|
|
5531
5589
|
onClick: r
|
|
@@ -5549,9 +5607,9 @@ const s5 = ({
|
|
|
5549
5607
|
}
|
|
5550
5608
|
)
|
|
5551
5609
|
}
|
|
5552
|
-
),
|
|
5610
|
+
), g3 = ({
|
|
5553
5611
|
className: i,
|
|
5554
|
-
color: o =
|
|
5612
|
+
color: o = d.GREY_DARK_5,
|
|
5555
5613
|
height: e = 24,
|
|
5556
5614
|
width: l = 24,
|
|
5557
5615
|
onClick: r
|
|
@@ -5588,9 +5646,9 @@ const s5 = ({
|
|
|
5588
5646
|
)
|
|
5589
5647
|
]
|
|
5590
5648
|
}
|
|
5591
|
-
),
|
|
5649
|
+
), p3 = ({
|
|
5592
5650
|
className: i,
|
|
5593
|
-
color: o =
|
|
5651
|
+
color: o = d.GREY_DARK_5,
|
|
5594
5652
|
height: e = 24,
|
|
5595
5653
|
width: l = 24,
|
|
5596
5654
|
onClick: r
|
|
@@ -5627,9 +5685,9 @@ const s5 = ({
|
|
|
5627
5685
|
)
|
|
5628
5686
|
]
|
|
5629
5687
|
}
|
|
5630
|
-
),
|
|
5688
|
+
), L3 = ({
|
|
5631
5689
|
className: i,
|
|
5632
|
-
color: o =
|
|
5690
|
+
color: o = d.GREY_DARK_5,
|
|
5633
5691
|
height: e = 24,
|
|
5634
5692
|
width: l = 24,
|
|
5635
5693
|
onClick: r
|
|
@@ -5696,9 +5754,9 @@ const s5 = ({
|
|
|
5696
5754
|
)
|
|
5697
5755
|
]
|
|
5698
5756
|
}
|
|
5699
|
-
),
|
|
5757
|
+
), m3 = ({
|
|
5700
5758
|
className: i,
|
|
5701
|
-
color: o =
|
|
5759
|
+
color: o = d.GREY_DARK_5,
|
|
5702
5760
|
height: e = 24,
|
|
5703
5761
|
width: l = 24,
|
|
5704
5762
|
onClick: r
|
|
@@ -5735,9 +5793,9 @@ const s5 = ({
|
|
|
5735
5793
|
)
|
|
5736
5794
|
]
|
|
5737
5795
|
}
|
|
5738
|
-
),
|
|
5796
|
+
), u3 = ({
|
|
5739
5797
|
className: i,
|
|
5740
|
-
color: o =
|
|
5798
|
+
color: o = d.GREY_DARK_5,
|
|
5741
5799
|
height: e = 24,
|
|
5742
5800
|
width: l = 24,
|
|
5743
5801
|
onClick: r
|
|
@@ -5792,9 +5850,9 @@ const s5 = ({
|
|
|
5792
5850
|
)
|
|
5793
5851
|
]
|
|
5794
5852
|
}
|
|
5795
|
-
),
|
|
5853
|
+
), v3 = ({
|
|
5796
5854
|
className: i,
|
|
5797
|
-
color: o =
|
|
5855
|
+
color: o = d.GREY_DARK_5,
|
|
5798
5856
|
height: e = 24,
|
|
5799
5857
|
width: l = 24,
|
|
5800
5858
|
onClick: r
|
|
@@ -5831,9 +5889,9 @@ const s5 = ({
|
|
|
5831
5889
|
)
|
|
5832
5890
|
]
|
|
5833
5891
|
}
|
|
5834
|
-
),
|
|
5892
|
+
), N3 = ({
|
|
5835
5893
|
className: i,
|
|
5836
|
-
color: o =
|
|
5894
|
+
color: o = d.GREY_DARK_5,
|
|
5837
5895
|
height: e = 24,
|
|
5838
5896
|
width: l = 24,
|
|
5839
5897
|
onClick: r
|
|
@@ -5880,9 +5938,9 @@ const s5 = ({
|
|
|
5880
5938
|
)
|
|
5881
5939
|
]
|
|
5882
5940
|
}
|
|
5883
|
-
),
|
|
5941
|
+
), f3 = ({
|
|
5884
5942
|
className: i,
|
|
5885
|
-
color: o =
|
|
5943
|
+
color: o = d.GREY_DARK_5,
|
|
5886
5944
|
height: e = 24,
|
|
5887
5945
|
width: l = 24,
|
|
5888
5946
|
onClick: r
|
|
@@ -5919,9 +5977,9 @@ const s5 = ({
|
|
|
5919
5977
|
)
|
|
5920
5978
|
]
|
|
5921
5979
|
}
|
|
5922
|
-
),
|
|
5980
|
+
), M3 = ({
|
|
5923
5981
|
className: i,
|
|
5924
|
-
color: o =
|
|
5982
|
+
color: o = d.GREY_DARK_5,
|
|
5925
5983
|
height: e = 24,
|
|
5926
5984
|
width: l = 24,
|
|
5927
5985
|
onClick: r
|
|
@@ -5946,9 +6004,9 @@ const s5 = ({
|
|
|
5946
6004
|
}
|
|
5947
6005
|
)
|
|
5948
6006
|
}
|
|
5949
|
-
),
|
|
6007
|
+
), x3 = ({
|
|
5950
6008
|
className: i,
|
|
5951
|
-
color: o =
|
|
6009
|
+
color: o = d.GREY_DARK_5,
|
|
5952
6010
|
height: e = 24,
|
|
5953
6011
|
width: l = 24,
|
|
5954
6012
|
onClick: r
|
|
@@ -5984,9 +6042,9 @@ const s5 = ({
|
|
|
5984
6042
|
)
|
|
5985
6043
|
]
|
|
5986
6044
|
}
|
|
5987
|
-
),
|
|
6045
|
+
), _3 = ({
|
|
5988
6046
|
className: i,
|
|
5989
|
-
color: o =
|
|
6047
|
+
color: o = d.GREY_DARK_5,
|
|
5990
6048
|
height: e = 24,
|
|
5991
6049
|
width: l = 24,
|
|
5992
6050
|
onClick: r
|
|
@@ -6005,9 +6063,9 @@ const s5 = ({
|
|
|
6005
6063
|
/* @__PURE__ */ t("path", { d: "M12 8L4 8", stroke: o, strokeWidth: "1.7", strokeLinecap: "round" })
|
|
6006
6064
|
]
|
|
6007
6065
|
}
|
|
6008
|
-
),
|
|
6066
|
+
), R3 = ({
|
|
6009
6067
|
className: i,
|
|
6010
|
-
color: o =
|
|
6068
|
+
color: o = d.GREY_DARK_5,
|
|
6011
6069
|
height: e = 24,
|
|
6012
6070
|
width: l = 24,
|
|
6013
6071
|
onClick: r
|
|
@@ -6044,9 +6102,9 @@ const s5 = ({
|
|
|
6044
6102
|
)
|
|
6045
6103
|
]
|
|
6046
6104
|
}
|
|
6047
|
-
),
|
|
6105
|
+
), H3 = ({
|
|
6048
6106
|
className: i,
|
|
6049
|
-
color: o =
|
|
6107
|
+
color: o = d.GREY_DARK_5,
|
|
6050
6108
|
height: e = 24,
|
|
6051
6109
|
width: l = 24,
|
|
6052
6110
|
onClick: r
|
|
@@ -6083,9 +6141,9 @@ const s5 = ({
|
|
|
6083
6141
|
)
|
|
6084
6142
|
]
|
|
6085
6143
|
}
|
|
6086
|
-
),
|
|
6144
|
+
), V3 = ({
|
|
6087
6145
|
className: i,
|
|
6088
|
-
color: o =
|
|
6146
|
+
color: o = d.GREY_DARK_5,
|
|
6089
6147
|
height: e = 24,
|
|
6090
6148
|
width: l = 24,
|
|
6091
6149
|
onClick: r
|
|
@@ -6122,9 +6180,9 @@ const s5 = ({
|
|
|
6122
6180
|
)
|
|
6123
6181
|
]
|
|
6124
6182
|
}
|
|
6125
|
-
),
|
|
6183
|
+
), E3 = ({
|
|
6126
6184
|
className: i,
|
|
6127
|
-
color: o =
|
|
6185
|
+
color: o = d.GREY_DARK_2,
|
|
6128
6186
|
height: e = 16,
|
|
6129
6187
|
width: l = 16,
|
|
6130
6188
|
onClick: r
|
|
@@ -6148,9 +6206,9 @@ const s5 = ({
|
|
|
6148
6206
|
}
|
|
6149
6207
|
)
|
|
6150
6208
|
}
|
|
6151
|
-
),
|
|
6209
|
+
), Z3 = ({
|
|
6152
6210
|
className: i,
|
|
6153
|
-
color: o =
|
|
6211
|
+
color: o = d.GREY_DARK_5,
|
|
6154
6212
|
height: e = 20,
|
|
6155
6213
|
width: l = 20,
|
|
6156
6214
|
onClick: r
|
|
@@ -6177,9 +6235,9 @@ const s5 = ({
|
|
|
6177
6235
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5989", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6178
6236
|
]
|
|
6179
6237
|
}
|
|
6180
|
-
),
|
|
6238
|
+
), W3 = ({
|
|
6181
6239
|
className: i,
|
|
6182
|
-
color: o =
|
|
6240
|
+
color: o = d.GREY_DARK_5,
|
|
6183
6241
|
height: e = 20,
|
|
6184
6242
|
width: l = 20,
|
|
6185
6243
|
onClick: r
|
|
@@ -6206,9 +6264,9 @@ const s5 = ({
|
|
|
6206
6264
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5988", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6207
6265
|
]
|
|
6208
6266
|
}
|
|
6209
|
-
),
|
|
6267
|
+
), I3 = ({
|
|
6210
6268
|
className: i,
|
|
6211
|
-
color: o =
|
|
6269
|
+
color: o = d.GREY_DARK_5,
|
|
6212
6270
|
height: e = 20,
|
|
6213
6271
|
width: l = 20,
|
|
6214
6272
|
onClick: r
|
|
@@ -6223,7 +6281,7 @@ const s5 = ({
|
|
|
6223
6281
|
fill: "none",
|
|
6224
6282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6225
6283
|
children: [
|
|
6226
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
6284
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: d.GREY_LIGHT_2 }),
|
|
6227
6285
|
/* @__PURE__ */ t(
|
|
6228
6286
|
"path",
|
|
6229
6287
|
{
|
|
@@ -6235,9 +6293,9 @@ const s5 = ({
|
|
|
6235
6293
|
)
|
|
6236
6294
|
]
|
|
6237
6295
|
}
|
|
6238
|
-
),
|
|
6296
|
+
), B3 = ({
|
|
6239
6297
|
className: i,
|
|
6240
|
-
color: o =
|
|
6298
|
+
color: o = d.GREY_DARK_5,
|
|
6241
6299
|
height: e = 20,
|
|
6242
6300
|
width: l = 20,
|
|
6243
6301
|
onClick: r
|
|
@@ -6252,7 +6310,7 @@ const s5 = ({
|
|
|
6252
6310
|
fill: "none",
|
|
6253
6311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6254
6312
|
children: [
|
|
6255
|
-
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill:
|
|
6313
|
+
/* @__PURE__ */ t("rect", { width: "20", height: "20", rx: "4", fill: d.GREY_LIGHT_2 }),
|
|
6256
6314
|
/* @__PURE__ */ t(
|
|
6257
6315
|
"path",
|
|
6258
6316
|
{
|
|
@@ -6264,7 +6322,7 @@ const s5 = ({
|
|
|
6264
6322
|
)
|
|
6265
6323
|
]
|
|
6266
6324
|
}
|
|
6267
|
-
),
|
|
6325
|
+
), A3 = ({
|
|
6268
6326
|
className: i,
|
|
6269
6327
|
color: o = "#001E52",
|
|
6270
6328
|
height: e = 24,
|
|
@@ -6290,7 +6348,7 @@ const s5 = ({
|
|
|
6290
6348
|
}
|
|
6291
6349
|
)
|
|
6292
6350
|
}
|
|
6293
|
-
),
|
|
6351
|
+
), G3 = ({
|
|
6294
6352
|
className: i,
|
|
6295
6353
|
color: o = "#131314",
|
|
6296
6354
|
height: e = 20,
|
|
@@ -6318,7 +6376,7 @@ const s5 = ({
|
|
|
6318
6376
|
}
|
|
6319
6377
|
)
|
|
6320
6378
|
}
|
|
6321
|
-
),
|
|
6379
|
+
), D3 = ({
|
|
6322
6380
|
className: i,
|
|
6323
6381
|
color: o = "#001E52",
|
|
6324
6382
|
height: e = 24,
|
|
@@ -6356,7 +6414,63 @@ const s5 = ({
|
|
|
6356
6414
|
)
|
|
6357
6415
|
] }) })
|
|
6358
6416
|
}
|
|
6359
|
-
),
|
|
6417
|
+
), j3 = ({
|
|
6418
|
+
width: i = 20,
|
|
6419
|
+
height: o = 20,
|
|
6420
|
+
color: e = "#001E52",
|
|
6421
|
+
className: l,
|
|
6422
|
+
onClick: r
|
|
6423
|
+
}) => /* @__PURE__ */ t(
|
|
6424
|
+
"svg",
|
|
6425
|
+
{
|
|
6426
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6427
|
+
width: i,
|
|
6428
|
+
height: o,
|
|
6429
|
+
className: l,
|
|
6430
|
+
onClick: r,
|
|
6431
|
+
viewBox: "0 0 20 20",
|
|
6432
|
+
fill: "none",
|
|
6433
|
+
children: /* @__PURE__ */ t(
|
|
6434
|
+
"path",
|
|
6435
|
+
{
|
|
6436
|
+
fillRule: "evenodd",
|
|
6437
|
+
clipRule: "evenodd",
|
|
6438
|
+
d: `M2.88667 2.88667C1.66667 4.10834 1.66667 6.07167 1.66667 10C1.66667 13.9283 1.66667 15.8925
|
|
6439
|
+
2.88667 17.1125C4.10833 18.3333 6.07167 18.3333 10 18.3333C13.9283 18.3333 15.8925 18.3333 17.1125
|
|
6440
|
+
17.1125C18.3333 15.8933 18.3333 13.9283 18.3333 10C18.3333 6.07167 18.3333 4.10751 17.1125 2.88667C15.8933
|
|
6441
|
+
1.66667 13.9283 1.66667 10 1.66667C6.07167 1.66667 4.1075 1.66667 2.88667 2.88667ZM8.78667 6.26417C8.84325
|
|
6442
|
+
6.20469 8.88755 6.13465 8.91706 6.05805C8.94657 5.98145 8.96071 5.89979 8.95866 5.81772C8.95661 5.73566
|
|
6443
|
+
8.93841 5.6548 8.90511 5.57977C8.87181 5.50474 8.82406 5.437 8.76458 5.38042C8.70511 5.32384 8.63507 5.27954
|
|
6444
|
+
8.55847 5.25003C8.48186 5.22052 8.4002 5.20638 8.31814 5.20843C8.23607 5.21048 8.15522 5.22868 8.08018
|
|
6445
|
+
5.26198C8.00515 5.29528 7.93741 5.34303 7.88083 5.4025L5.9525 7.42751L5.4525 6.9025C5.39654 6.84066 5.32876
|
|
6446
|
+
6.79064 5.25316 6.75539C5.17756 6.72015 5.09567 6.70039 5.01232 6.69729C4.92897 6.69418 4.84583 6.7078
|
|
6447
|
+
4.76782 6.73732C4.68982 6.76685 4.6185 6.81169 4.5581 6.86921C4.49769 6.92673 4.4494 6.99575 4.41609
|
|
6448
|
+
7.07222C4.38277 7.14869 4.3651 7.23105 4.36411 7.31446C4.36312 7.39786 4.37884 7.48062 4.41034 7.55786C4.44183
|
|
6449
|
+
7.63509 4.48847 7.70524 4.5475 7.76417L5.5 8.76417C5.55837 8.82544 5.62858 8.87421 5.70636 8.90754C5.78414
|
|
6450
|
+
8.94086 5.86788 8.95805 5.9525 8.95805C6.03712 8.95805 6.12086 8.94086 6.19864 8.90754C6.27643 8.87421
|
|
6451
|
+
6.34663 8.82544 6.405 8.76417L8.78667 6.26417ZM10.8333 6.875C10.6676 6.875 10.5086 6.94085 10.3914
|
|
6452
|
+
7.05806C10.2742 7.17527 10.2083 7.33424 10.2083 7.5C10.2083 7.66577 10.2742 7.82474 10.3914 7.94195C10.5086
|
|
6453
|
+
8.05916 10.6676 8.125 10.8333 8.125H15C15.1658 8.125 15.3247 8.05916 15.4419 7.94195C15.5592 7.82474 15.625
|
|
6454
|
+
7.66577 15.625 7.5C15.625 7.33424 15.5592 7.17527 15.4419 7.05806C15.3247 6.94085 15.1658 6.875 15
|
|
6455
|
+
6.875H10.8333ZM8.78583 12.0975C8.84486 12.0386 8.8915 11.9684 8.923 11.8912C8.95449 11.814 8.97021 11.7312
|
|
6456
|
+
8.96922 11.6478C8.96824 11.5644 8.95056 11.482 8.91725 11.4056C8.88393 11.3291 8.83565 11.2601 8.77524
|
|
6457
|
+
11.2025C8.71483 11.145 8.64352 11.1002 8.56551 11.0707C8.4875 11.0411 8.40437 11.0275 8.32102 11.0306C8.23766
|
|
6458
|
+
11.0337 8.15578 11.0535 8.08018 11.0887C8.00458 11.124 7.9368 11.174 7.88083 11.2358L5.9525 13.2608L5.4525
|
|
6459
|
+
12.7358C5.39654 12.674 5.32876 12.624 5.25316 12.5887C5.17756 12.5535 5.09567 12.5337 5.01232 12.5306C4.92897
|
|
6460
|
+
12.5275 4.84583 12.5411 4.76782 12.5707C4.68982 12.6002 4.6185 12.645 4.5581 12.7025C4.49769 12.7601 4.4494
|
|
6461
|
+
12.8291 4.41609 12.9056C4.38277 12.982 4.3651 13.0644 4.36411 13.1478C4.36312 13.2312 4.37884 13.314 4.41034
|
|
6462
|
+
13.3912C4.44183 13.4684 4.48847 13.5386 4.5475 13.5975L5.5 14.5975C5.55837 14.6588 5.62858 14.7075 5.70636
|
|
6463
|
+
14.7409C5.78414 14.7742 5.86788 14.7914 5.9525 14.7914C6.03712 14.7914 6.12086 14.7742 6.19864 14.7409C6.27643
|
|
6464
|
+
14.7075 6.34663 14.6588 6.405 14.5975L8.78583 12.0975ZM10.8333 12.7083C10.6676 12.7083 10.5086 12.7742 10.3914
|
|
6465
|
+
12.8914C10.2742 13.0086 10.2083 13.1676 10.2083 13.3333C10.2083 13.4991 10.2742 13.6581 10.3914 13.7753C10.5086
|
|
6466
|
+
13.8925 10.6676 13.9583 10.8333 13.9583H15C15.1658 13.9583 15.3247 13.8925 15.4419 13.7753C15.5592 13.6581
|
|
6467
|
+
15.625 13.4991 15.625 13.3333C15.625 13.1676 15.5592 13.0086 15.4419 12.8914C15.3247 12.7742 15.1658 12.7083
|
|
6468
|
+
15 12.7083H10.8333Z`,
|
|
6469
|
+
fill: e
|
|
6470
|
+
}
|
|
6471
|
+
)
|
|
6472
|
+
}
|
|
6473
|
+
), T3 = ({
|
|
6360
6474
|
name: i,
|
|
6361
6475
|
width: o,
|
|
6362
6476
|
height: e,
|
|
@@ -6365,49 +6479,49 @@ const s5 = ({
|
|
|
6365
6479
|
disabled: w = !1,
|
|
6366
6480
|
onClick: g
|
|
6367
6481
|
}) => {
|
|
6368
|
-
const [s, p] = u(r), { theme: k } =
|
|
6369
|
-
return
|
|
6482
|
+
const [s, p] = u(r), { theme: k } = i1(C1), h = w ? k && k === "dark" ? d.GREY_LIGHT_4 : d.GREY_DARK_1 : l, n = w ? void 0 : g;
|
|
6483
|
+
return Z(() => {
|
|
6370
6484
|
if (r) {
|
|
6371
6485
|
n && !w && p(`${r} clickable`);
|
|
6372
6486
|
return;
|
|
6373
6487
|
}
|
|
6374
6488
|
n && !w && p("clickable");
|
|
6375
|
-
}, [n, r, w]), /* @__PURE__ */ t(
|
|
6489
|
+
}, [n, r, w]), /* @__PURE__ */ t(G, { children: (() => {
|
|
6376
6490
|
switch (i) {
|
|
6377
6491
|
case "nextIcon":
|
|
6378
|
-
return
|
|
6492
|
+
return e3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6379
6493
|
case "prevIcon":
|
|
6380
|
-
return
|
|
6494
|
+
return o3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6381
6495
|
case "arrowUp":
|
|
6382
|
-
return
|
|
6496
|
+
return h5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6383
6497
|
case "arrowDown":
|
|
6384
|
-
return
|
|
6498
|
+
return c5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6385
6499
|
case "info":
|
|
6386
|
-
return
|
|
6500
|
+
return a5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6387
6501
|
case "arrowRight":
|
|
6388
|
-
return
|
|
6502
|
+
return C5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6389
6503
|
case "calendar":
|
|
6390
|
-
return a5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6391
|
-
case "ok":
|
|
6392
6504
|
return d5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6505
|
+
case "ok":
|
|
6506
|
+
return w5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6393
6507
|
case "cancel":
|
|
6394
|
-
return
|
|
6508
|
+
return k5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6395
6509
|
case "add":
|
|
6396
|
-
return
|
|
6510
|
+
return g5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6397
6511
|
case "list":
|
|
6398
|
-
return
|
|
6512
|
+
return p5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6399
6513
|
case "dragAndDrop":
|
|
6400
|
-
return
|
|
6514
|
+
return L5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6401
6515
|
case "filter":
|
|
6402
|
-
return
|
|
6516
|
+
return m5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6403
6517
|
case "attention":
|
|
6404
|
-
return
|
|
6518
|
+
return u5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6405
6519
|
case "plus":
|
|
6406
|
-
return
|
|
6520
|
+
return v5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6407
6521
|
case "time":
|
|
6408
|
-
return
|
|
6522
|
+
return N5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6409
6523
|
case "arrowDownLong":
|
|
6410
|
-
return
|
|
6524
|
+
return f5({
|
|
6411
6525
|
width: o,
|
|
6412
6526
|
height: e,
|
|
6413
6527
|
color: h,
|
|
@@ -6415,9 +6529,9 @@ const s5 = ({
|
|
|
6415
6529
|
onClick: n
|
|
6416
6530
|
});
|
|
6417
6531
|
case "users":
|
|
6418
|
-
return
|
|
6532
|
+
return M5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6419
6533
|
case "mySkillsMatrix":
|
|
6420
|
-
return
|
|
6534
|
+
return x5({
|
|
6421
6535
|
width: o,
|
|
6422
6536
|
height: e,
|
|
6423
6537
|
color: h,
|
|
@@ -6425,9 +6539,9 @@ const s5 = ({
|
|
|
6425
6539
|
onClick: n
|
|
6426
6540
|
});
|
|
6427
6541
|
case "skills":
|
|
6428
|
-
return
|
|
6542
|
+
return _5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6429
6543
|
case "skillsMatrices":
|
|
6430
|
-
return
|
|
6544
|
+
return R5({
|
|
6431
6545
|
width: o,
|
|
6432
6546
|
height: e,
|
|
6433
6547
|
color: h,
|
|
@@ -6435,23 +6549,23 @@ const s5 = ({
|
|
|
6435
6549
|
onClick: n
|
|
6436
6550
|
});
|
|
6437
6551
|
case "history":
|
|
6438
|
-
return
|
|
6552
|
+
return H5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6439
6553
|
case "logOut":
|
|
6440
|
-
return
|
|
6554
|
+
return V5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6441
6555
|
case "settings":
|
|
6442
|
-
return
|
|
6556
|
+
return E5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6443
6557
|
case "addSkill":
|
|
6444
|
-
return
|
|
6558
|
+
return Z5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6445
6559
|
case "conversation":
|
|
6446
|
-
return
|
|
6560
|
+
return W5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6447
6561
|
case "trash":
|
|
6448
|
-
return
|
|
6562
|
+
return I5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6449
6563
|
case "settings4":
|
|
6450
|
-
return
|
|
6564
|
+
return B5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6451
6565
|
case "edit2":
|
|
6452
|
-
return
|
|
6566
|
+
return A5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6453
6567
|
case "notifications":
|
|
6454
|
-
return
|
|
6568
|
+
return G5({
|
|
6455
6569
|
width: o,
|
|
6456
6570
|
height: e,
|
|
6457
6571
|
color: h,
|
|
@@ -6459,9 +6573,9 @@ const s5 = ({
|
|
|
6459
6573
|
onClick: n
|
|
6460
6574
|
});
|
|
6461
6575
|
case "success":
|
|
6462
|
-
return
|
|
6576
|
+
return D5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6463
6577
|
case "attentionSmall":
|
|
6464
|
-
return
|
|
6578
|
+
return j5({
|
|
6465
6579
|
width: o,
|
|
6466
6580
|
height: e,
|
|
6467
6581
|
color: h,
|
|
@@ -6469,11 +6583,11 @@ const s5 = ({
|
|
|
6469
6583
|
onClick: n
|
|
6470
6584
|
});
|
|
6471
6585
|
case "errorSmall":
|
|
6472
|
-
return
|
|
6586
|
+
return T5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6473
6587
|
case "infoMedium":
|
|
6474
|
-
return
|
|
6588
|
+
return y5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6475
6589
|
case "attentionMedium":
|
|
6476
|
-
return
|
|
6590
|
+
return Y5({
|
|
6477
6591
|
width: o,
|
|
6478
6592
|
height: e,
|
|
6479
6593
|
color: h,
|
|
@@ -6481,9 +6595,9 @@ const s5 = ({
|
|
|
6481
6595
|
onClick: n
|
|
6482
6596
|
});
|
|
6483
6597
|
case "errorMedium":
|
|
6484
|
-
return
|
|
6598
|
+
return K5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6485
6599
|
case "faviconSkills":
|
|
6486
|
-
return
|
|
6600
|
+
return P5({
|
|
6487
6601
|
width: o,
|
|
6488
6602
|
height: e,
|
|
6489
6603
|
color: h,
|
|
@@ -6491,7 +6605,7 @@ const s5 = ({
|
|
|
6491
6605
|
onClick: n
|
|
6492
6606
|
});
|
|
6493
6607
|
case "visibilityIcon":
|
|
6494
|
-
return
|
|
6608
|
+
return O5({
|
|
6495
6609
|
width: o,
|
|
6496
6610
|
height: e,
|
|
6497
6611
|
color: h,
|
|
@@ -6499,7 +6613,7 @@ const s5 = ({
|
|
|
6499
6613
|
onClick: n
|
|
6500
6614
|
});
|
|
6501
6615
|
case "visibilityOffIcon":
|
|
6502
|
-
return
|
|
6616
|
+
return b5({
|
|
6503
6617
|
width: o,
|
|
6504
6618
|
height: e,
|
|
6505
6619
|
color: h,
|
|
@@ -6507,7 +6621,7 @@ const s5 = ({
|
|
|
6507
6621
|
onClick: n
|
|
6508
6622
|
});
|
|
6509
6623
|
case "selectArrowIcon":
|
|
6510
|
-
return
|
|
6624
|
+
return F5({
|
|
6511
6625
|
width: o,
|
|
6512
6626
|
height: e,
|
|
6513
6627
|
color: h,
|
|
@@ -6515,7 +6629,7 @@ const s5 = ({
|
|
|
6515
6629
|
onClick: n
|
|
6516
6630
|
});
|
|
6517
6631
|
case "expandArrowIcon":
|
|
6518
|
-
return
|
|
6632
|
+
return S5({
|
|
6519
6633
|
width: o,
|
|
6520
6634
|
height: e,
|
|
6521
6635
|
color: h,
|
|
@@ -6523,7 +6637,7 @@ const s5 = ({
|
|
|
6523
6637
|
onClick: n
|
|
6524
6638
|
});
|
|
6525
6639
|
case "expandActiveArrowIcon":
|
|
6526
|
-
return
|
|
6640
|
+
return U5({
|
|
6527
6641
|
width: o,
|
|
6528
6642
|
height: e,
|
|
6529
6643
|
color: h,
|
|
@@ -6531,106 +6645,108 @@ const s5 = ({
|
|
|
6531
6645
|
onClick: n
|
|
6532
6646
|
});
|
|
6533
6647
|
case "camera":
|
|
6534
|
-
return
|
|
6648
|
+
return $5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6535
6649
|
case "sortUp":
|
|
6536
|
-
return
|
|
6650
|
+
return z5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6537
6651
|
case "sortDown":
|
|
6538
|
-
return
|
|
6652
|
+
return q5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6539
6653
|
case "logOut2":
|
|
6540
|
-
return
|
|
6654
|
+
return J5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6541
6655
|
case "search":
|
|
6542
|
-
return
|
|
6656
|
+
return Q5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6543
6657
|
case "handRock":
|
|
6544
|
-
return
|
|
6658
|
+
return X5({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6545
6659
|
case "arrowUpFilled":
|
|
6546
|
-
return
|
|
6660
|
+
return t3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6547
6661
|
case "arrowDownFilled":
|
|
6548
|
-
return e3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6549
|
-
case "link":
|
|
6550
6662
|
return i3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6551
|
-
case "
|
|
6663
|
+
case "link":
|
|
6552
6664
|
return l3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6553
|
-
case "
|
|
6665
|
+
case "telegram":
|
|
6554
6666
|
return s3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6667
|
+
case "mail":
|
|
6668
|
+
return h3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6555
6669
|
case "github":
|
|
6556
|
-
return t3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6557
|
-
case "linkedIn":
|
|
6558
6670
|
return r3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6559
|
-
case "
|
|
6671
|
+
case "linkedIn":
|
|
6560
6672
|
return n3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6673
|
+
case "emptyStateIcon":
|
|
6674
|
+
return c3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6561
6675
|
case "filtersIcon":
|
|
6562
|
-
return
|
|
6676
|
+
return a3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6563
6677
|
case "dotMenuIcon":
|
|
6564
|
-
return
|
|
6678
|
+
return C3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6565
6679
|
case "plusCircle":
|
|
6566
|
-
return a3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6567
|
-
case "warning":
|
|
6568
6680
|
return d3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6681
|
+
case "warning":
|
|
6682
|
+
return w3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6569
6683
|
case "back":
|
|
6570
|
-
return
|
|
6684
|
+
return k3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6571
6685
|
case "bell":
|
|
6572
|
-
return w3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6573
|
-
case "contract":
|
|
6574
6686
|
return g3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6687
|
+
case "contract":
|
|
6688
|
+
return L3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6575
6689
|
case "trash2":
|
|
6576
|
-
return k3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6577
|
-
case "manager":
|
|
6578
6690
|
return p3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6691
|
+
case "manager":
|
|
6692
|
+
return m3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6579
6693
|
case "resourceManager":
|
|
6580
|
-
return
|
|
6694
|
+
return u3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6581
6695
|
case "settings2":
|
|
6582
|
-
return
|
|
6696
|
+
return v3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6583
6697
|
case "image":
|
|
6584
|
-
return
|
|
6698
|
+
return N3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6585
6699
|
case "upload":
|
|
6586
|
-
return
|
|
6700
|
+
return f3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6587
6701
|
case "edit":
|
|
6588
|
-
return
|
|
6702
|
+
return M3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6589
6703
|
case "location":
|
|
6590
|
-
return
|
|
6704
|
+
return x3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6591
6705
|
case "plus2":
|
|
6592
|
-
return
|
|
6706
|
+
return _3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6593
6707
|
case "search2":
|
|
6594
|
-
return
|
|
6708
|
+
return R3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6595
6709
|
case "fastArrowLeft":
|
|
6596
|
-
return
|
|
6710
|
+
return H3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6597
6711
|
case "fastArrowRight":
|
|
6598
|
-
return
|
|
6712
|
+
return V3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6599
6713
|
case "crossInCircle":
|
|
6600
|
-
return H3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6601
|
-
case "arrowUp2":
|
|
6602
6714
|
return E3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6715
|
+
case "arrowUp2":
|
|
6716
|
+
return W3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6603
6717
|
case "arrowDown2":
|
|
6604
|
-
return V3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6605
|
-
case "filledArrowLeft":
|
|
6606
6718
|
return Z3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6719
|
+
case "filledArrowLeft":
|
|
6720
|
+
return I3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6607
6721
|
case "filledArrowRight":
|
|
6608
|
-
return
|
|
6722
|
+
return B3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6609
6723
|
case "burgerMenu":
|
|
6610
|
-
return
|
|
6724
|
+
return A3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6611
6725
|
case "signOut":
|
|
6612
|
-
return
|
|
6726
|
+
return G3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6613
6727
|
case "refresh":
|
|
6614
|
-
return
|
|
6728
|
+
return D3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6729
|
+
case "projects":
|
|
6730
|
+
return j3({ width: o, height: e, color: h, className: s, onClick: n });
|
|
6615
6731
|
default:
|
|
6616
|
-
return /* @__PURE__ */ t(
|
|
6732
|
+
return /* @__PURE__ */ t(G, { children: "No Icon provided" });
|
|
6617
6733
|
}
|
|
6618
6734
|
})() });
|
|
6619
6735
|
};
|
|
6620
6736
|
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
|
|
6737
|
+
const y3 = q({
|
|
6622
6738
|
locale: "en",
|
|
6623
6739
|
theme: "light"
|
|
6624
6740
|
});
|
|
6625
|
-
|
|
6626
|
-
const
|
|
6741
|
+
y3.Provider;
|
|
6742
|
+
const w1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r = !0 }) => {
|
|
6627
6743
|
const w = e === "small" ? 10 : 12.5;
|
|
6628
6744
|
return /* @__PURE__ */ t(
|
|
6629
|
-
|
|
6745
|
+
h1,
|
|
6630
6746
|
{
|
|
6631
6747
|
className: `snmt-tag ${e}`,
|
|
6632
6748
|
closeIcon: /* @__PURE__ */ t(
|
|
6633
|
-
|
|
6749
|
+
T3,
|
|
6634
6750
|
{
|
|
6635
6751
|
name: "errorSmall",
|
|
6636
6752
|
color: d1.GREY_DARK_2,
|
|
@@ -6642,15 +6758,15 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6642
6758
|
bordered: !1,
|
|
6643
6759
|
style: { width: o ?? "fit-content" },
|
|
6644
6760
|
closable: r,
|
|
6645
|
-
children: typeof i == "string" ? /* @__PURE__ */ t(
|
|
6761
|
+
children: typeof i == "string" ? /* @__PURE__ */ t(n5, { variant: e === "small" ? "body4" : "body2", children: i }) : i
|
|
6646
6762
|
}
|
|
6647
6763
|
);
|
|
6648
|
-
}, { Title:
|
|
6764
|
+
}, { Title: Y3, Text: K3 } = n1, O3 = {
|
|
6649
6765
|
h1: 1,
|
|
6650
6766
|
h2: 2,
|
|
6651
6767
|
h3: 3,
|
|
6652
6768
|
h4: 4
|
|
6653
|
-
},
|
|
6769
|
+
}, k1 = J(
|
|
6654
6770
|
({
|
|
6655
6771
|
align: i = "inherit",
|
|
6656
6772
|
variant: o = "body1",
|
|
@@ -6663,17 +6779,17 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6663
6779
|
const p = o === "h1" || o === "h2" || o === "h3" || o === "h4";
|
|
6664
6780
|
let k = `snmt-typography snmt-typography-${o}`;
|
|
6665
6781
|
return i && i !== "inherit" && (k += ` snmt-typography-align-${i}`), w && (k += " collapsed"), p ? /* @__PURE__ */ t(
|
|
6666
|
-
|
|
6782
|
+
Y3,
|
|
6667
6783
|
{
|
|
6668
6784
|
className: k,
|
|
6669
6785
|
style: { color: e, whiteSpace: g },
|
|
6670
6786
|
onClick: r,
|
|
6671
|
-
level:
|
|
6787
|
+
level: O3[o],
|
|
6672
6788
|
ref: s,
|
|
6673
6789
|
children: l
|
|
6674
6790
|
}
|
|
6675
6791
|
) : /* @__PURE__ */ t(
|
|
6676
|
-
|
|
6792
|
+
K3,
|
|
6677
6793
|
{
|
|
6678
6794
|
className: k,
|
|
6679
6795
|
style: { color: e, whiteSpace: g },
|
|
@@ -6683,7 +6799,7 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6683
6799
|
}
|
|
6684
6800
|
);
|
|
6685
6801
|
}
|
|
6686
|
-
),
|
|
6802
|
+
), b3 = ({
|
|
6687
6803
|
children: i,
|
|
6688
6804
|
content: o,
|
|
6689
6805
|
isOpen: e,
|
|
@@ -6693,7 +6809,7 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6693
6809
|
}) => {
|
|
6694
6810
|
const [g, s] = u(!1);
|
|
6695
6811
|
return /* @__PURE__ */ t(
|
|
6696
|
-
|
|
6812
|
+
_1,
|
|
6697
6813
|
{
|
|
6698
6814
|
content: o,
|
|
6699
6815
|
arrow: !1,
|
|
@@ -6707,7 +6823,7 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6707
6823
|
children: /* @__PURE__ */ t("div", { className: "wrapper", children: i })
|
|
6708
6824
|
}
|
|
6709
6825
|
);
|
|
6710
|
-
},
|
|
6826
|
+
}, F3 = ({
|
|
6711
6827
|
values: i,
|
|
6712
6828
|
onTagClose: o,
|
|
6713
6829
|
maxWidth: e,
|
|
@@ -6716,7 +6832,7 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6716
6832
|
extraOptions: w
|
|
6717
6833
|
}) => {
|
|
6718
6834
|
const [g, s] = u(!1);
|
|
6719
|
-
|
|
6835
|
+
Z(() => {
|
|
6720
6836
|
i.length || s(!1);
|
|
6721
6837
|
}, [i]);
|
|
6722
6838
|
const p = (h) => {
|
|
@@ -6726,15 +6842,15 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6726
6842
|
return null;
|
|
6727
6843
|
const k = (h) => {
|
|
6728
6844
|
var n, H;
|
|
6729
|
-
return ((n = r == null ? void 0 : r.find((
|
|
6845
|
+
return ((n = r == null ? void 0 : r.find((x) => x.value === h)) == null ? void 0 : n.label) || ((H = w == null ? void 0 : w.find((x) => x.value === h)) == null ? void 0 : H.label) || h;
|
|
6730
6846
|
};
|
|
6731
6847
|
return /* @__PURE__ */ t("div", { onMouseDown: p, className: "wrapper", children: /* @__PURE__ */ t(
|
|
6732
|
-
|
|
6848
|
+
b3,
|
|
6733
6849
|
{
|
|
6734
6850
|
content: (
|
|
6735
6851
|
// 90: paddings + margins + gaps and so on
|
|
6736
|
-
/* @__PURE__ */ t("div", { style: { maxWidth: e - 90 }, children: /* @__PURE__ */ t(
|
|
6737
|
-
|
|
6852
|
+
/* @__PURE__ */ t("div", { style: { maxWidth: e - 90 }, children: /* @__PURE__ */ t(z, { gap: 6, flexWrap: "wrap", children: i.map(({ value: h }) => /* @__PURE__ */ t(
|
|
6853
|
+
w1,
|
|
6738
6854
|
{
|
|
6739
6855
|
onClose: () => o(h),
|
|
6740
6856
|
closable: !l,
|
|
@@ -6746,13 +6862,13 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6746
6862
|
placement: "bottomRight",
|
|
6747
6863
|
isOpen: g,
|
|
6748
6864
|
setIsOpen: s,
|
|
6749
|
-
children: /* @__PURE__ */ t(
|
|
6865
|
+
children: /* @__PURE__ */ t(h1, { className: `overflow-button ${g ? "open" : ""}`, bordered: !1, children: /* @__PURE__ */ c(k1, { variant: "body4", color: g ? A.BLUE_PRIMARY : void 0, children: [
|
|
6750
6866
|
i.length,
|
|
6751
6867
|
" more"
|
|
6752
6868
|
] }) })
|
|
6753
6869
|
}
|
|
6754
6870
|
) });
|
|
6755
|
-
},
|
|
6871
|
+
}, l1 = ({ size: i = 30, color: o = "#004ed7" }) => {
|
|
6756
6872
|
const e = `no-repeat linear-gradient(${o}
|
|
6757
6873
|
calc(50% - 10px), #0000 0 calc(50% + 10px), ${o} 0)`, l = {
|
|
6758
6874
|
width: i,
|
|
@@ -6760,7 +6876,7 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6760
6876
|
backgroundSize: "20% calc(200% + 20px)"
|
|
6761
6877
|
};
|
|
6762
6878
|
return /* @__PURE__ */ t("span", { className: "snmt-loader", style: l });
|
|
6763
|
-
},
|
|
6879
|
+
}, r1 = J(
|
|
6764
6880
|
({
|
|
6765
6881
|
value: i,
|
|
6766
6882
|
onChange: o,
|
|
@@ -6771,170 +6887,171 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6771
6887
|
width: g,
|
|
6772
6888
|
disabled: s = !1,
|
|
6773
6889
|
required: p = !1,
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6890
|
+
clearable: k = !1,
|
|
6891
|
+
scrollThresholdValue: h = 50,
|
|
6892
|
+
onSearchChange: n,
|
|
6893
|
+
onDropdownVisibleChange: H,
|
|
6894
|
+
onScrollToEnd: D,
|
|
6895
|
+
onPopupScroll: x,
|
|
6896
|
+
id: b,
|
|
6780
6897
|
extraOptions: _,
|
|
6781
|
-
dropdownRender:
|
|
6782
|
-
optionRender:
|
|
6783
|
-
isLoading:
|
|
6898
|
+
dropdownRender: j,
|
|
6899
|
+
optionRender: T,
|
|
6900
|
+
isLoading: V,
|
|
6784
6901
|
readOnly: f
|
|
6785
|
-
},
|
|
6786
|
-
const [
|
|
6787
|
-
|
|
6788
|
-
|
|
6902
|
+
}, F) => {
|
|
6903
|
+
const [y, S] = u(!1), [R, W] = u(!1), [U, Y] = u(!0), [v, I] = u(i), m = s1(null);
|
|
6904
|
+
Z(() => {
|
|
6905
|
+
I(i);
|
|
6789
6906
|
}, [i]);
|
|
6790
|
-
const
|
|
6791
|
-
|
|
6792
|
-
},
|
|
6793
|
-
var
|
|
6794
|
-
return !!((
|
|
6795
|
-
},
|
|
6796
|
-
|
|
6797
|
-
},
|
|
6798
|
-
|
|
6799
|
-
},
|
|
6907
|
+
const Q = (a) => {
|
|
6908
|
+
S(a), H && H(a);
|
|
6909
|
+
}, X = (a, L) => {
|
|
6910
|
+
var N;
|
|
6911
|
+
return !!((N = L == null ? void 0 : L.label) != null && N.toString().toLowerCase().includes(a.toLowerCase()));
|
|
6912
|
+
}, K = () => {
|
|
6913
|
+
W(!0);
|
|
6914
|
+
}, E = () => {
|
|
6915
|
+
W(!1);
|
|
6916
|
+
}, B = M(
|
|
6800
6917
|
(a) => {
|
|
6801
|
-
if (
|
|
6802
|
-
const
|
|
6803
|
-
o == null || o(
|
|
6918
|
+
if (I(a), l) {
|
|
6919
|
+
const N = a;
|
|
6920
|
+
o == null || o(N);
|
|
6804
6921
|
return;
|
|
6805
6922
|
}
|
|
6806
6923
|
const L = a;
|
|
6807
6924
|
o == null || o(L);
|
|
6808
6925
|
},
|
|
6809
6926
|
[l, o]
|
|
6810
|
-
),
|
|
6927
|
+
), g1 = M(() => {
|
|
6811
6928
|
if (!f) {
|
|
6812
6929
|
if (l) {
|
|
6813
|
-
|
|
6930
|
+
B([]);
|
|
6814
6931
|
return;
|
|
6815
6932
|
}
|
|
6816
|
-
|
|
6933
|
+
B("");
|
|
6817
6934
|
}
|
|
6818
|
-
}, [
|
|
6935
|
+
}, [B, l, f]), P = M(
|
|
6819
6936
|
(a) => {
|
|
6820
|
-
const L = v.filter((
|
|
6821
|
-
|
|
6937
|
+
const L = v.filter((N) => N !== a);
|
|
6938
|
+
B(L), I(L);
|
|
6822
6939
|
},
|
|
6823
|
-
[
|
|
6824
|
-
),
|
|
6940
|
+
[B, v]
|
|
6941
|
+
), t1 = M(
|
|
6825
6942
|
(a) => (v == null ? void 0 : v.indexOf(a)) === 0 ? (
|
|
6826
6943
|
// if the search input is empty
|
|
6827
6944
|
// then display the placeholder, else do not display it
|
|
6828
|
-
/* @__PURE__ */ t("span", { className: "custom-placeholder", children:
|
|
6829
|
-
) : /* @__PURE__ */ t(
|
|
6830
|
-
[
|
|
6831
|
-
),
|
|
6945
|
+
/* @__PURE__ */ t("span", { className: "custom-placeholder", children: U ? e : "" })
|
|
6946
|
+
) : /* @__PURE__ */ t(G, {}),
|
|
6947
|
+
[U, v, e]
|
|
6948
|
+
), p1 = (a) => {
|
|
6832
6949
|
a.preventDefault(), a.stopPropagation();
|
|
6833
|
-
},
|
|
6950
|
+
}, L1 = async (a) => {
|
|
6834
6951
|
const { target: L } = a;
|
|
6835
|
-
L.scrollTop + L.offsetHeight >= L.scrollHeight -
|
|
6836
|
-
},
|
|
6952
|
+
L.scrollTop + L.offsetHeight >= L.scrollHeight - h && (D == null || D(!0)), x && await x(a);
|
|
6953
|
+
}, e1 = M(
|
|
6837
6954
|
(a) => {
|
|
6838
|
-
var L,
|
|
6839
|
-
return ((L = w.find((
|
|
6840
|
-
(
|
|
6841
|
-
)) == null ? void 0 :
|
|
6955
|
+
var L, N;
|
|
6956
|
+
return ((L = w.find((o1) => o1.value === a)) == null ? void 0 : L.label) || ((N = _ == null ? void 0 : _.find(
|
|
6957
|
+
(o1) => o1.value === a
|
|
6958
|
+
)) == null ? void 0 : N.label) || a;
|
|
6842
6959
|
},
|
|
6843
6960
|
[_, w]
|
|
6844
|
-
),
|
|
6961
|
+
), m1 = M(
|
|
6845
6962
|
(a) => {
|
|
6846
6963
|
var L;
|
|
6847
6964
|
return /* @__PURE__ */ t(
|
|
6848
|
-
|
|
6965
|
+
F3,
|
|
6849
6966
|
{
|
|
6850
6967
|
values: a,
|
|
6851
|
-
onTagClose:
|
|
6852
|
-
maxWidth: ((L =
|
|
6968
|
+
onTagClose: P,
|
|
6969
|
+
maxWidth: ((L = m.current) == null ? void 0 : L.clientWidth) || 0,
|
|
6853
6970
|
disabled: s || f,
|
|
6854
6971
|
options: w,
|
|
6855
6972
|
extraOptions: _
|
|
6856
6973
|
}
|
|
6857
6974
|
);
|
|
6858
6975
|
},
|
|
6859
|
-
[s, _,
|
|
6860
|
-
),
|
|
6861
|
-
({ label: a, value: L, mode:
|
|
6862
|
-
[s,
|
|
6976
|
+
[s, _, P, w, f]
|
|
6977
|
+
), u1 = M(
|
|
6978
|
+
({ label: a, value: L, mode: N }) => N === "filter" ? t1(L) : /* @__PURE__ */ t("div", { onMouseDown: p1, className: "tag-wrapper", children: /* @__PURE__ */ t(w1, { onClose: () => P(L), closable: !s, children: /* @__PURE__ */ t(k1, { variant: "body4", children: typeof a == "object" ? a : e1(L) }) }) }),
|
|
6979
|
+
[s, e1, P, t1]
|
|
6863
6980
|
);
|
|
6864
6981
|
return /* @__PURE__ */ c(
|
|
6865
6982
|
"div",
|
|
6866
6983
|
{
|
|
6867
|
-
className: `snmt-select ${
|
|
6984
|
+
className: `snmt-select ${R ? "snmt-select-focused" : ""}
|
|
6868
6985
|
${l ? "" : "snmt-select-single"} ${f ? "snmt-select-read-only" : ""}`,
|
|
6869
|
-
ref:
|
|
6986
|
+
ref: m,
|
|
6870
6987
|
style: { width: g },
|
|
6871
6988
|
children: [
|
|
6872
6989
|
/* @__PURE__ */ t(
|
|
6873
|
-
|
|
6990
|
+
N1,
|
|
6874
6991
|
{
|
|
6875
6992
|
className: "snmt-select-blank",
|
|
6876
6993
|
popupClassName: f ? "dropdown-read-only" : "",
|
|
6877
|
-
id:
|
|
6878
|
-
ref:
|
|
6994
|
+
id: b,
|
|
6995
|
+
ref: F,
|
|
6879
6996
|
showSearch: !!r,
|
|
6880
|
-
filterOption: r &&
|
|
6881
|
-
onDropdownVisibleChange:
|
|
6997
|
+
filterOption: r && X,
|
|
6998
|
+
onDropdownVisibleChange: Q,
|
|
6882
6999
|
placeholder: e ? p ? `${e}*` : e : void 0,
|
|
6883
7000
|
disabled: s,
|
|
6884
7001
|
value: v || void 0,
|
|
6885
|
-
labelRender: (a) =>
|
|
7002
|
+
labelRender: (a) => e1(a.value),
|
|
6886
7003
|
mode: l === "filter" ? "multiple" : l,
|
|
6887
|
-
onChange:
|
|
6888
|
-
onFocus:
|
|
6889
|
-
onBlur:
|
|
7004
|
+
onChange: B,
|
|
7005
|
+
onFocus: K,
|
|
7006
|
+
onBlur: E,
|
|
6890
7007
|
onSearch: (a) => {
|
|
6891
|
-
Y(!a),
|
|
7008
|
+
Y(!a), n && n(a);
|
|
6892
7009
|
},
|
|
6893
7010
|
onSelect: () => Y(!0),
|
|
6894
7011
|
onDeselect: () => Y(!0),
|
|
6895
|
-
tagRender: (a) =>
|
|
7012
|
+
tagRender: (a) => u1({ ...a, mode: l }),
|
|
6896
7013
|
maxTagCount: "responsive",
|
|
6897
|
-
maxTagPlaceholder:
|
|
6898
|
-
onPopupScroll:
|
|
6899
|
-
prefix:
|
|
6900
|
-
suffixIcon: /* @__PURE__ */ t("div", { className: "wrapper-suffix-icon", children: l !== "filter" && /* @__PURE__ */ c(
|
|
6901
|
-
|
|
7014
|
+
maxTagPlaceholder: m1,
|
|
7015
|
+
onPopupScroll: L1,
|
|
7016
|
+
prefix: V && /* @__PURE__ */ t(l1, { size: 15 }),
|
|
7017
|
+
suffixIcon: /* @__PURE__ */ t("div", { className: "wrapper-suffix-icon", children: l !== "filter" && /* @__PURE__ */ c(G, { children: [
|
|
7018
|
+
v && !!v.length && (l || k) && /* @__PURE__ */ t("div", { onClick: g1, children: /* @__PURE__ */ t($, { name: "cancel" }) }),
|
|
6902
7019
|
/* @__PURE__ */ t(
|
|
6903
|
-
|
|
7020
|
+
$,
|
|
6904
7021
|
{
|
|
6905
7022
|
name: "selectArrowIcon",
|
|
6906
|
-
color: s ?
|
|
6907
|
-
className:
|
|
6908
|
-
onClick: () =>
|
|
7023
|
+
color: s ? A.GREY_DARK_1 : A.GREY_DARK_5,
|
|
7024
|
+
className: y ? "select-arrow-rotated" : "select-arrow",
|
|
7025
|
+
onClick: () => S(!y)
|
|
6909
7026
|
}
|
|
6910
7027
|
)
|
|
6911
7028
|
] }) }),
|
|
6912
|
-
removeIcon: /* @__PURE__ */ t(
|
|
7029
|
+
removeIcon: /* @__PURE__ */ t($, { name: "errorSmall", color: A.GREY_DARK_2 }),
|
|
6913
7030
|
options: w,
|
|
6914
|
-
optionRender: (a) =>
|
|
6915
|
-
/* @__PURE__ */ c(
|
|
7031
|
+
optionRender: (a) => T ? T(a.data) : /* @__PURE__ */ c(z, { justifyContent: "space-between", alignItems: "center", flex: "1", children: [
|
|
7032
|
+
/* @__PURE__ */ c(z, { alignItems: "center", gap: 12, children: [
|
|
6916
7033
|
l && /* @__PURE__ */ t(
|
|
6917
|
-
|
|
7034
|
+
H1,
|
|
6918
7035
|
{
|
|
6919
7036
|
checked: !!(v != null && v.includes(a.value))
|
|
6920
7037
|
}
|
|
6921
7038
|
),
|
|
6922
|
-
/* @__PURE__ */ c(
|
|
6923
|
-
a.data.image && /* @__PURE__ */ t(
|
|
7039
|
+
/* @__PURE__ */ c(z, { alignItems: "center", gap: 8, children: [
|
|
7040
|
+
a.data.image && /* @__PURE__ */ t(R1, { src: a.data.image, size: 20 }),
|
|
6924
7041
|
/* @__PURE__ */ t("span", { children: a.label })
|
|
6925
7042
|
] })
|
|
6926
7043
|
] }),
|
|
6927
7044
|
!l && v === a.value && /* @__PURE__ */ t(
|
|
6928
|
-
|
|
7045
|
+
$,
|
|
6929
7046
|
{
|
|
6930
7047
|
name: "ok",
|
|
6931
|
-
color:
|
|
7048
|
+
color: A.BLUE_PRIMARY,
|
|
6932
7049
|
width: 16,
|
|
6933
7050
|
height: 16
|
|
6934
7051
|
}
|
|
6935
7052
|
)
|
|
6936
7053
|
] }),
|
|
6937
|
-
dropdownRender:
|
|
7054
|
+
dropdownRender: V ? () => /* @__PURE__ */ t(
|
|
6938
7055
|
"div",
|
|
6939
7056
|
{
|
|
6940
7057
|
style: {
|
|
@@ -6942,15 +7059,15 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6942
7059
|
display: "grid",
|
|
6943
7060
|
justifyContent: "center"
|
|
6944
7061
|
},
|
|
6945
|
-
children: /* @__PURE__ */ t(
|
|
7062
|
+
children: /* @__PURE__ */ t(l1, { size: 28 })
|
|
6946
7063
|
}
|
|
6947
|
-
) : (a) =>
|
|
7064
|
+
) : (a) => j ? j(a) : a
|
|
6948
7065
|
}
|
|
6949
7066
|
),
|
|
6950
7067
|
/* @__PURE__ */ t(
|
|
6951
7068
|
"fieldset",
|
|
6952
7069
|
{
|
|
6953
|
-
className: `${
|
|
7070
|
+
className: `${R ? "fieldset-focused" : ""}
|
|
6954
7071
|
${s ? "fieldset-disabled" : ""}
|
|
6955
7072
|
${typeof i == "string" && i ? "fieldset-filled" : ""}
|
|
6956
7073
|
${typeof i == "object" && i != null && i.length ? "fieldset-filled" : ""}`,
|
|
@@ -6962,9 +7079,9 @@ const C1 = ({ children: i, width: o, size: e = "small", onClose: l, closable: r
|
|
|
6962
7079
|
);
|
|
6963
7080
|
}
|
|
6964
7081
|
);
|
|
6965
|
-
function
|
|
6966
|
-
const e =
|
|
6967
|
-
return
|
|
7082
|
+
function S3(i, o = 500) {
|
|
7083
|
+
const e = s1();
|
|
7084
|
+
return Z(() => () => {
|
|
6968
7085
|
e.current && clearTimeout(e.current);
|
|
6969
7086
|
}, []), (...r) => {
|
|
6970
7087
|
const w = setTimeout(() => {
|
|
@@ -6973,10 +7090,10 @@ function O3(i, o = 500) {
|
|
|
6973
7090
|
clearTimeout(e.current), e.current = w;
|
|
6974
7091
|
};
|
|
6975
7092
|
}
|
|
6976
|
-
const
|
|
7093
|
+
const O = {
|
|
6977
7094
|
limit: 100,
|
|
6978
7095
|
offset: 0
|
|
6979
|
-
},
|
|
7096
|
+
}, J3 = J(
|
|
6980
7097
|
({
|
|
6981
7098
|
loadOptions: i,
|
|
6982
7099
|
width: o,
|
|
@@ -6991,72 +7108,72 @@ const F = {
|
|
|
6991
7108
|
extraOptions: h,
|
|
6992
7109
|
onDropdownVisibleChange: n,
|
|
6993
7110
|
optionRender: H,
|
|
6994
|
-
dropdownRender:
|
|
6995
|
-
readOnly:
|
|
6996
|
-
},
|
|
6997
|
-
const [
|
|
6998
|
-
async (m = !1,
|
|
6999
|
-
if (!
|
|
7000
|
-
|
|
7111
|
+
dropdownRender: D,
|
|
7112
|
+
readOnly: x
|
|
7113
|
+
}, b) => {
|
|
7114
|
+
const [_, j] = u([]), [T, V] = u(O), [f, F] = u(!1), [y, S] = u(null), R = M(
|
|
7115
|
+
async (m = !1, Q) => {
|
|
7116
|
+
if (!f) {
|
|
7117
|
+
F(!0);
|
|
7001
7118
|
try {
|
|
7002
|
-
const
|
|
7003
|
-
|
|
7004
|
-
(
|
|
7005
|
-
), S(
|
|
7006
|
-
...
|
|
7007
|
-
offset:
|
|
7119
|
+
const X = m ? { ...O, search: Q } : T, K = await i(X);
|
|
7120
|
+
j(
|
|
7121
|
+
(E) => m ? K.options : [...E, ...K.options]
|
|
7122
|
+
), S(K.count), V((E) => ({
|
|
7123
|
+
...E,
|
|
7124
|
+
offset: E.offset + E.limit
|
|
7008
7125
|
}));
|
|
7009
7126
|
} finally {
|
|
7010
|
-
|
|
7127
|
+
F(!1);
|
|
7011
7128
|
}
|
|
7012
7129
|
}
|
|
7013
7130
|
},
|
|
7014
|
-
[
|
|
7015
|
-
),
|
|
7131
|
+
[T, i, f]
|
|
7132
|
+
), W = S3(R), U = M(
|
|
7016
7133
|
(m) => {
|
|
7017
|
-
m === "" || m === void 0 || m === null ? (
|
|
7134
|
+
m === "" || m === void 0 || m === null ? (V(O), W(!0)) : W(!0, m);
|
|
7018
7135
|
},
|
|
7019
|
-
[
|
|
7020
|
-
),
|
|
7021
|
-
m && y !== null && y >
|
|
7022
|
-
},
|
|
7136
|
+
[W]
|
|
7137
|
+
), Y = async (m) => {
|
|
7138
|
+
m && y !== null && y > _.length && await R(!1);
|
|
7139
|
+
}, v = M(
|
|
7023
7140
|
(m) => {
|
|
7024
|
-
m && !k && (
|
|
7141
|
+
m && !k && (j([]), V(O), R(!0)), n == null || n(m);
|
|
7025
7142
|
},
|
|
7026
7143
|
// eslint-disable-next-line
|
|
7027
7144
|
[k]
|
|
7028
7145
|
);
|
|
7029
|
-
|
|
7146
|
+
Z(() => {
|
|
7030
7147
|
k && R(!1);
|
|
7031
7148
|
}, []);
|
|
7032
|
-
const
|
|
7149
|
+
const I = {
|
|
7033
7150
|
id: r,
|
|
7034
7151
|
width: o,
|
|
7035
|
-
options:
|
|
7152
|
+
options: _,
|
|
7036
7153
|
onChange: e,
|
|
7037
|
-
ref:
|
|
7154
|
+
ref: b,
|
|
7038
7155
|
placeholder: s,
|
|
7039
7156
|
search: !0,
|
|
7040
7157
|
value: l,
|
|
7041
|
-
onSearchChange:
|
|
7042
|
-
onDropdownVisibleChange:
|
|
7158
|
+
onSearchChange: U,
|
|
7159
|
+
onDropdownVisibleChange: v,
|
|
7043
7160
|
scrollThresholdValue: g,
|
|
7044
|
-
onScrollToEnd:
|
|
7161
|
+
onScrollToEnd: Y,
|
|
7045
7162
|
loadOnClosedState: k,
|
|
7046
7163
|
disabled: w,
|
|
7047
7164
|
extraOptions: h,
|
|
7048
|
-
isLoading:
|
|
7165
|
+
isLoading: f,
|
|
7049
7166
|
optionRender: H,
|
|
7050
|
-
dropdownRender:
|
|
7051
|
-
readOnly:
|
|
7167
|
+
dropdownRender: D,
|
|
7168
|
+
readOnly: x
|
|
7052
7169
|
};
|
|
7053
|
-
return
|
|
7170
|
+
return v1(b, () => ({
|
|
7054
7171
|
refetchOptions: async () => {
|
|
7055
|
-
|
|
7172
|
+
V(O), await R(!0);
|
|
7056
7173
|
}
|
|
7057
|
-
})), p ? /* @__PURE__ */ t(
|
|
7174
|
+
})), p ? /* @__PURE__ */ t(r1, { ...I, onChange: e, value: l, mode: p }) : /* @__PURE__ */ t("div", { className: "snmt-async-select", children: /* @__PURE__ */ t(r1, { ...I, onChange: e, value: l }) });
|
|
7058
7175
|
}
|
|
7059
7176
|
);
|
|
7060
7177
|
export {
|
|
7061
|
-
|
|
7178
|
+
J3 as AsyncSelect
|
|
7062
7179
|
};
|