@x-plat/design-system 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/index.cjs +131 -0
- package/dist/components/Accordion/index.css +51 -0
- package/dist/components/Accordion/index.d.cts +16 -0
- package/dist/components/Accordion/index.d.ts +16 -0
- package/dist/components/Accordion/index.js +94 -0
- package/dist/components/Alert/index.cjs +72 -0
- package/dist/components/Alert/index.css +60 -0
- package/dist/components/Alert/index.d.cts +12 -0
- package/dist/components/Alert/index.d.ts +12 -0
- package/dist/components/Alert/index.js +45 -0
- package/dist/components/Avatar/index.cjs +196 -0
- package/dist/components/Avatar/index.css +321 -0
- package/dist/components/Avatar/index.d.cts +133 -0
- package/dist/components/Avatar/index.d.ts +133 -0
- package/dist/components/Avatar/index.js +169 -0
- package/dist/components/Badge/index.cjs +200 -0
- package/dist/components/Badge/index.css +307 -0
- package/dist/components/Badge/index.d.cts +133 -0
- package/dist/components/Badge/index.d.ts +133 -0
- package/dist/components/Badge/index.js +173 -0
- package/dist/components/Breadcrumb/index.cjs +60 -0
- package/dist/components/Breadcrumb/index.css +37 -0
- package/dist/components/Breadcrumb/index.d.cts +15 -0
- package/dist/components/Breadcrumb/index.d.ts +15 -0
- package/dist/components/Breadcrumb/index.js +33 -0
- package/dist/components/Chart/index.cjs +6 -3
- package/dist/components/Chart/index.js +6 -3
- package/dist/components/DatePicker/index.cjs +2 -0
- package/dist/components/DatePicker/index.js +2 -0
- package/dist/components/Divider/index.cjs +61 -0
- package/dist/components/Divider/index.css +15 -0
- package/dist/components/Divider/index.d.cts +10 -0
- package/dist/components/Divider/index.d.ts +10 -0
- package/dist/components/Divider/index.js +34 -0
- package/dist/components/ImageSelector/index.cjs +9 -3
- package/dist/components/ImageSelector/index.js +9 -3
- package/dist/components/Modal/index.cjs +2 -0
- package/dist/components/Modal/index.js +2 -0
- package/dist/components/Pagination/index.cjs +261 -0
- package/dist/components/Pagination/index.css +325 -0
- package/dist/components/Pagination/index.d.cts +133 -0
- package/dist/components/Pagination/index.d.ts +133 -0
- package/dist/components/Pagination/index.js +234 -0
- package/dist/components/Progress/index.cjs +218 -0
- package/dist/components/Progress/index.css +313 -0
- package/dist/components/Progress/index.d.cts +133 -0
- package/dist/components/Progress/index.d.ts +133 -0
- package/dist/components/Progress/index.js +191 -0
- package/dist/components/Skeleton/index.cjs +65 -0
- package/dist/components/Skeleton/index.css +27 -0
- package/dist/components/Skeleton/index.d.cts +12 -0
- package/dist/components/Skeleton/index.d.ts +12 -0
- package/dist/components/Skeleton/index.js +38 -0
- package/dist/components/Spinner/index.cjs +222 -0
- package/dist/components/Spinner/index.css +317 -0
- package/dist/components/Spinner/index.d.cts +130 -0
- package/dist/components/Spinner/index.d.ts +130 -0
- package/dist/components/Spinner/index.js +195 -0
- package/dist/components/index.cjs +1014 -592
- package/dist/components/index.css +4290 -2507
- package/dist/components/index.d.cts +12 -2
- package/dist/components/index.d.ts +12 -2
- package/dist/components/index.js +1003 -591
- package/dist/index.cjs +2010 -1588
- package/dist/index.css +4289 -2506
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +1999 -1587
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -1,3 +1,122 @@
|
|
|
1
|
+
// src/components/Accordion/Accordion.tsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
|
|
4
|
+
// node_modules/clsx/dist/clsx.mjs
|
|
5
|
+
function r(e) {
|
|
6
|
+
var t, f, n = "";
|
|
7
|
+
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
8
|
+
else if ("object" == typeof e) if (Array.isArray(e)) {
|
|
9
|
+
var o = e.length;
|
|
10
|
+
for (t = 0; t < o; t++) e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
|
|
11
|
+
} else for (f in e) e[f] && (n && (n += " "), n += f);
|
|
12
|
+
return n;
|
|
13
|
+
}
|
|
14
|
+
function clsx() {
|
|
15
|
+
for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++) (e = arguments[f]) && (t = r(e)) && (n && (n += " "), n += t);
|
|
16
|
+
return n;
|
|
17
|
+
}
|
|
18
|
+
var clsx_default = clsx;
|
|
19
|
+
|
|
20
|
+
// src/components/Accordion/Accordion.tsx
|
|
21
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
22
|
+
var AccordionItem = ({ item, isOpen, onToggle }) => {
|
|
23
|
+
const bodyRef = React.useRef(null);
|
|
24
|
+
const [height, setHeight] = React.useState(0);
|
|
25
|
+
React.useEffect(() => {
|
|
26
|
+
if (bodyRef.current) {
|
|
27
|
+
setHeight(bodyRef.current.scrollHeight);
|
|
28
|
+
}
|
|
29
|
+
}, [isOpen, item.content]);
|
|
30
|
+
return /* @__PURE__ */ jsxs("div", { className: clsx_default("accordion-item", { open: isOpen }), children: [
|
|
31
|
+
/* @__PURE__ */ jsxs(
|
|
32
|
+
"button",
|
|
33
|
+
{
|
|
34
|
+
className: "accordion-header",
|
|
35
|
+
onClick: onToggle,
|
|
36
|
+
"aria-expanded": isOpen,
|
|
37
|
+
children: [
|
|
38
|
+
/* @__PURE__ */ jsx("span", { className: "title", children: item.title }),
|
|
39
|
+
/* @__PURE__ */ jsx(
|
|
40
|
+
"svg",
|
|
41
|
+
{
|
|
42
|
+
className: "chevron",
|
|
43
|
+
viewBox: "0 0 24 24",
|
|
44
|
+
fill: "currentColor",
|
|
45
|
+
width: "20",
|
|
46
|
+
height: "20",
|
|
47
|
+
children: /* @__PURE__ */ jsx("path", { d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z" })
|
|
48
|
+
}
|
|
49
|
+
)
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
),
|
|
53
|
+
/* @__PURE__ */ jsx(
|
|
54
|
+
"div",
|
|
55
|
+
{
|
|
56
|
+
ref: bodyRef,
|
|
57
|
+
className: "accordion-body",
|
|
58
|
+
style: { maxHeight: isOpen ? height : 0 },
|
|
59
|
+
children: /* @__PURE__ */ jsx("div", { className: "accordion-content", children: item.content })
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
] });
|
|
63
|
+
};
|
|
64
|
+
var Accordion = (props) => {
|
|
65
|
+
const { items, multiple = false, defaultActiveKeys = [], className } = props;
|
|
66
|
+
const [activeKeys, setActiveKeys] = React.useState(
|
|
67
|
+
new Set(defaultActiveKeys)
|
|
68
|
+
);
|
|
69
|
+
const toggle = (key) => {
|
|
70
|
+
setActiveKeys((prev) => {
|
|
71
|
+
const next = new Set(multiple ? prev : []);
|
|
72
|
+
if (prev.has(key)) {
|
|
73
|
+
next.delete(key);
|
|
74
|
+
} else {
|
|
75
|
+
next.add(key);
|
|
76
|
+
}
|
|
77
|
+
return next;
|
|
78
|
+
});
|
|
79
|
+
};
|
|
80
|
+
return /* @__PURE__ */ jsx("div", { className: clsx_default("lib-xplat-accordion", className), children: items.map((item) => /* @__PURE__ */ jsx(
|
|
81
|
+
AccordionItem,
|
|
82
|
+
{
|
|
83
|
+
item,
|
|
84
|
+
isOpen: activeKeys.has(item.key),
|
|
85
|
+
onToggle: () => toggle(item.key)
|
|
86
|
+
},
|
|
87
|
+
item.key
|
|
88
|
+
)) });
|
|
89
|
+
};
|
|
90
|
+
Accordion.displayName = "Accordion";
|
|
91
|
+
var Accordion_default = Accordion;
|
|
92
|
+
|
|
93
|
+
// src/components/Alert/Alert.tsx
|
|
94
|
+
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
95
|
+
var Alert = (props) => {
|
|
96
|
+
const { type = "info", children, onClose, className } = props;
|
|
97
|
+
return /* @__PURE__ */ jsxs2(
|
|
98
|
+
"div",
|
|
99
|
+
{
|
|
100
|
+
className: clsx_default("lib-xplat-alert", type, className),
|
|
101
|
+
role: "alert",
|
|
102
|
+
children: [
|
|
103
|
+
/* @__PURE__ */ jsx2("div", { className: "content", children }),
|
|
104
|
+
onClose && /* @__PURE__ */ jsx2(
|
|
105
|
+
"button",
|
|
106
|
+
{
|
|
107
|
+
className: "close-btn",
|
|
108
|
+
onClick: onClose,
|
|
109
|
+
"aria-label": "\uB2EB\uAE30",
|
|
110
|
+
children: "\xD7"
|
|
111
|
+
}
|
|
112
|
+
)
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
);
|
|
116
|
+
};
|
|
117
|
+
Alert.displayName = "Alert";
|
|
118
|
+
var Alert_default = Alert;
|
|
119
|
+
|
|
1
120
|
// src/tokens/colors.ts
|
|
2
121
|
var colors = {
|
|
3
122
|
xplat: {
|
|
@@ -125,24 +244,75 @@ var getColorClass = (namespace, palette, shade) => {
|
|
|
125
244
|
return `${String(namespace)}-${String(palette)}${hasShade ? `-${String(shade)}` : ""}`;
|
|
126
245
|
};
|
|
127
246
|
|
|
128
|
-
//
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
247
|
+
// src/components/Avatar/Avatar.tsx
|
|
248
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
249
|
+
var Avatar = (props) => {
|
|
250
|
+
const {
|
|
251
|
+
src,
|
|
252
|
+
alt,
|
|
253
|
+
name,
|
|
254
|
+
size = "md",
|
|
255
|
+
colorNamespace = "xplat",
|
|
256
|
+
color = "blue",
|
|
257
|
+
colorDepth,
|
|
258
|
+
className
|
|
259
|
+
} = props;
|
|
260
|
+
const colorClass = getColorClass(
|
|
261
|
+
colorNamespace,
|
|
262
|
+
color,
|
|
263
|
+
colorDepth ?? 500
|
|
264
|
+
);
|
|
265
|
+
const initials = name ? name.split(" ").map((s) => s[0]).join("").slice(0, 2).toUpperCase() : "";
|
|
266
|
+
return /* @__PURE__ */ jsx3("div", { className: clsx_default("lib-xplat-avatar", size, className), children: src ? /* @__PURE__ */ jsx3("img", { src, alt: alt || name || "avatar" }) : /* @__PURE__ */ jsx3("div", { className: clsx_default("fallback", colorClass), children: initials || /* @__PURE__ */ jsx3("svg", { viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx3("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" }) }) }) });
|
|
267
|
+
};
|
|
268
|
+
Avatar.displayName = "Avatar";
|
|
269
|
+
var Avatar_default = Avatar;
|
|
270
|
+
|
|
271
|
+
// src/components/Badge/Badge.tsx
|
|
272
|
+
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
273
|
+
var Badge = (props) => {
|
|
274
|
+
const {
|
|
275
|
+
children,
|
|
276
|
+
count,
|
|
277
|
+
maxCount = 99,
|
|
278
|
+
dot = false,
|
|
279
|
+
colorNamespace = "xplat",
|
|
280
|
+
color = "red",
|
|
281
|
+
colorDepth,
|
|
282
|
+
className
|
|
283
|
+
} = props;
|
|
284
|
+
const colorClass = getColorClass(
|
|
285
|
+
colorNamespace,
|
|
286
|
+
color,
|
|
287
|
+
colorDepth ?? 500
|
|
288
|
+
);
|
|
289
|
+
const showBadge = dot || count !== void 0 && count > 0;
|
|
290
|
+
const displayCount = count !== void 0 && count > maxCount ? `${maxCount}+` : count;
|
|
291
|
+
return /* @__PURE__ */ jsxs3("div", { className: clsx_default("lib-xplat-badge", className), children: [
|
|
292
|
+
children,
|
|
293
|
+
showBadge && /* @__PURE__ */ jsx4("span", { className: clsx_default("badge-indicator", colorClass, { dot }), children: !dot && displayCount })
|
|
294
|
+
] });
|
|
295
|
+
};
|
|
296
|
+
Badge.displayName = "Badge";
|
|
297
|
+
var Badge_default = Badge;
|
|
298
|
+
|
|
299
|
+
// src/components/Breadcrumb/Breadcrumb.tsx
|
|
300
|
+
import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
301
|
+
var Breadcrumb = (props) => {
|
|
302
|
+
const { items, separator = "/", className } = props;
|
|
303
|
+
return /* @__PURE__ */ jsx5("nav", { className: clsx_default("lib-xplat-breadcrumb", className), "aria-label": "\uACBD\uB85C", children: /* @__PURE__ */ jsx5("ol", { children: items.map((item, index) => {
|
|
304
|
+
const isLast = index === items.length - 1;
|
|
305
|
+
return /* @__PURE__ */ jsxs4("li", { children: [
|
|
306
|
+
isLast ? /* @__PURE__ */ jsx5("span", { className: "current", "aria-current": "page", children: item.label }) : item.href ? /* @__PURE__ */ jsx5("a", { href: item.href, className: "link", children: item.label }) : /* @__PURE__ */ jsx5("button", { className: "link", onClick: item.onClick, children: item.label }),
|
|
307
|
+
!isLast && /* @__PURE__ */ jsx5("span", { className: "separator", children: separator })
|
|
308
|
+
] }, index);
|
|
309
|
+
}) }) });
|
|
310
|
+
};
|
|
311
|
+
Breadcrumb.displayName = "Breadcrumb";
|
|
312
|
+
var Breadcrumb_default = Breadcrumb;
|
|
143
313
|
|
|
144
314
|
// src/components/Button/Button.tsx
|
|
145
|
-
import { jsx } from "react/jsx-runtime";
|
|
315
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
146
316
|
var Button = (props) => {
|
|
147
317
|
const {
|
|
148
318
|
children,
|
|
@@ -159,7 +329,7 @@ var Button = (props) => {
|
|
|
159
329
|
color,
|
|
160
330
|
colorDepth ?? 500
|
|
161
331
|
);
|
|
162
|
-
return /* @__PURE__ */
|
|
332
|
+
return /* @__PURE__ */ jsx6(
|
|
163
333
|
"button",
|
|
164
334
|
{
|
|
165
335
|
className: clsx_default("lib-xplat-button", type, colorClass, className),
|
|
@@ -173,18 +343,18 @@ Button.displayName = "Button";
|
|
|
173
343
|
var Button_default = Button;
|
|
174
344
|
|
|
175
345
|
// src/components/Card/Card.tsx
|
|
176
|
-
import { jsx as
|
|
346
|
+
import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
177
347
|
var Card = ({ children, title, className }) => {
|
|
178
|
-
return /* @__PURE__ */
|
|
179
|
-
title && /* @__PURE__ */
|
|
180
|
-
/* @__PURE__ */
|
|
348
|
+
return /* @__PURE__ */ jsxs5("div", { className: clsx_default("lib-xplat-card", className), children: [
|
|
349
|
+
title && /* @__PURE__ */ jsx7("div", { className: "title", children: title }),
|
|
350
|
+
/* @__PURE__ */ jsx7("div", { className: "content", children })
|
|
181
351
|
] });
|
|
182
352
|
};
|
|
183
353
|
Card.displayName = "Card";
|
|
184
354
|
var Card_default = Card;
|
|
185
355
|
|
|
186
356
|
// src/components/Chart/Chart.tsx
|
|
187
|
-
import
|
|
357
|
+
import React2 from "react";
|
|
188
358
|
import {
|
|
189
359
|
ArcElement,
|
|
190
360
|
BarElement,
|
|
@@ -327,7 +497,7 @@ var getIndexColorByPreset = (preset, index) => {
|
|
|
327
497
|
};
|
|
328
498
|
|
|
329
499
|
// src/components/Chart/Chart.tsx
|
|
330
|
-
import { jsx as
|
|
500
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
331
501
|
ChartJS.register(
|
|
332
502
|
CategoryScale,
|
|
333
503
|
LinearScale,
|
|
@@ -342,9 +512,12 @@ ChartJS.register(
|
|
|
342
512
|
);
|
|
343
513
|
var Chart = (props) => {
|
|
344
514
|
const { type, data, labels } = props;
|
|
345
|
-
const
|
|
346
|
-
const containerRef =
|
|
347
|
-
const
|
|
515
|
+
const chartInstanceRef = React2.useRef(null);
|
|
516
|
+
const containerRef = React2.useRef(null);
|
|
517
|
+
const chartRef = React2.useCallback((instance) => {
|
|
518
|
+
chartInstanceRef.current = instance ?? null;
|
|
519
|
+
}, []);
|
|
520
|
+
const datasets = React2.useMemo(() => {
|
|
348
521
|
const pallette = getChartColorPreset(type);
|
|
349
522
|
return Object.entries(data).map(([key, values], index) => {
|
|
350
523
|
const uniqueColors = getIndexColorByPreset(pallette, index);
|
|
@@ -398,44 +571,44 @@ var Chart = (props) => {
|
|
|
398
571
|
formatter: (value) => `${value}`
|
|
399
572
|
};
|
|
400
573
|
}
|
|
401
|
-
const renderChart =
|
|
574
|
+
const renderChart = React2.useMemo(() => {
|
|
402
575
|
switch (type) {
|
|
403
576
|
case "line":
|
|
404
|
-
return /* @__PURE__ */
|
|
577
|
+
return /* @__PURE__ */ jsx8(Line, { ref: chartRef, data: chartData, options });
|
|
405
578
|
case "bar":
|
|
406
|
-
return /* @__PURE__ */
|
|
579
|
+
return /* @__PURE__ */ jsx8(Bar, { ref: chartRef, data: chartData, options });
|
|
407
580
|
case "pie":
|
|
408
|
-
return /* @__PURE__ */
|
|
581
|
+
return /* @__PURE__ */ jsx8(Pie, { ref: chartRef, data: chartData, options });
|
|
409
582
|
case "doughnut":
|
|
410
|
-
return /* @__PURE__ */
|
|
583
|
+
return /* @__PURE__ */ jsx8(Doughnut, { ref: chartRef, data: chartData, options });
|
|
411
584
|
default:
|
|
412
585
|
return null;
|
|
413
586
|
}
|
|
414
587
|
}, [chartData, options, type]);
|
|
415
|
-
|
|
416
|
-
if (!containerRef.current || !
|
|
588
|
+
React2.useEffect(() => {
|
|
589
|
+
if (!containerRef.current || !chartInstanceRef.current) return;
|
|
417
590
|
const observer = new ResizeObserver(() => {
|
|
418
591
|
requestAnimationFrame(() => {
|
|
419
|
-
|
|
592
|
+
chartInstanceRef.current?.resize();
|
|
420
593
|
});
|
|
421
594
|
});
|
|
422
595
|
observer.observe(containerRef.current);
|
|
423
596
|
return () => observer.disconnect();
|
|
424
597
|
}, []);
|
|
425
|
-
return /* @__PURE__ */
|
|
598
|
+
return /* @__PURE__ */ jsx8("div", { className: "lib-xplat-chart", ref: containerRef, children: renderChart });
|
|
426
599
|
};
|
|
427
600
|
Chart.displayName = "Chart";
|
|
428
601
|
var Chart_default = Chart;
|
|
429
602
|
|
|
430
603
|
// src/tokens/svg/action/CopyIcon.tsx
|
|
431
|
-
import { jsx as
|
|
604
|
+
import { jsx as jsx9, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
432
605
|
|
|
433
606
|
// src/tokens/svg/action/CropIcon.tsx
|
|
434
|
-
import { jsx as
|
|
607
|
+
import { jsx as jsx10, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
435
608
|
|
|
436
609
|
// src/tokens/svg/action/DeleteIcon.tsx
|
|
437
|
-
import { jsx as
|
|
438
|
-
var DeleteIcon = () => /* @__PURE__ */
|
|
610
|
+
import { jsx as jsx11, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
611
|
+
var DeleteIcon = () => /* @__PURE__ */ jsxs8(
|
|
439
612
|
"svg",
|
|
440
613
|
{
|
|
441
614
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -444,21 +617,21 @@ var DeleteIcon = () => /* @__PURE__ */ jsxs4(
|
|
|
444
617
|
viewBox: "0 0 16 16",
|
|
445
618
|
fill: "none",
|
|
446
619
|
children: [
|
|
447
|
-
/* @__PURE__ */
|
|
620
|
+
/* @__PURE__ */ jsx11(
|
|
448
621
|
"path",
|
|
449
622
|
{
|
|
450
623
|
d: "M6.66709 6.7334C6.99828 6.73361 7.26709 7.00216 7.26709 7.3334V11.3334C7.26698 11.6645 6.99822 11.9332 6.66709 11.9334C6.33578 11.9334 6.0672 11.6647 6.06709 11.3334V7.3334C6.06709 7.00203 6.33572 6.7334 6.66709 6.7334Z",
|
|
451
624
|
fill: "currentColor"
|
|
452
625
|
}
|
|
453
626
|
),
|
|
454
|
-
/* @__PURE__ */
|
|
627
|
+
/* @__PURE__ */ jsx11(
|
|
455
628
|
"path",
|
|
456
629
|
{
|
|
457
630
|
d: "M9.3335 6.7334C9.66469 6.73361 9.9335 7.00216 9.9335 7.3334V11.3334C9.93339 11.6645 9.66462 11.9332 9.3335 11.9334C9.00219 11.9334 8.7336 11.6647 8.7335 11.3334V7.3334C8.7335 7.00203 9.00213 6.7334 9.3335 6.7334Z",
|
|
458
631
|
fill: "currentColor"
|
|
459
632
|
}
|
|
460
633
|
),
|
|
461
|
-
/* @__PURE__ */
|
|
634
|
+
/* @__PURE__ */ jsx11(
|
|
462
635
|
"path",
|
|
463
636
|
{
|
|
464
637
|
fillRule: "evenodd",
|
|
@@ -473,77 +646,77 @@ var DeleteIcon = () => /* @__PURE__ */ jsxs4(
|
|
|
473
646
|
var DeleteIcon_default = DeleteIcon;
|
|
474
647
|
|
|
475
648
|
// src/tokens/svg/action/DownloadCloudIcon.tsx
|
|
476
|
-
import { jsx as
|
|
649
|
+
import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
477
650
|
|
|
478
651
|
// src/tokens/svg/action/DownloadIcon.tsx
|
|
479
|
-
import { jsx as
|
|
652
|
+
import { jsx as jsx13, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
480
653
|
|
|
481
654
|
// src/tokens/svg/action/Edit2Icon.tsx
|
|
482
|
-
import { jsx as
|
|
655
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
483
656
|
|
|
484
657
|
// src/tokens/svg/action/Edit3Icon.tsx
|
|
485
|
-
import { jsx as
|
|
658
|
+
import { jsx as jsx15, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
486
659
|
|
|
487
660
|
// src/tokens/svg/action/EditIcon.tsx
|
|
488
|
-
import { jsx as
|
|
661
|
+
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
489
662
|
|
|
490
663
|
// src/tokens/svg/action/ExternalLinkIcon.tsx
|
|
491
|
-
import { jsx as
|
|
664
|
+
import { jsx as jsx17, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
492
665
|
|
|
493
666
|
// src/tokens/svg/action/FilterIcon.tsx
|
|
494
|
-
import { jsx as
|
|
667
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
495
668
|
|
|
496
669
|
// src/tokens/svg/action/Link2Icon.tsx
|
|
497
|
-
import { jsx as
|
|
670
|
+
import { jsx as jsx19, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
498
671
|
|
|
499
672
|
// src/tokens/svg/action/LinkIcon.tsx
|
|
500
|
-
import { jsx as
|
|
673
|
+
import { jsx as jsx20, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
501
674
|
|
|
502
675
|
// src/tokens/svg/action/MoveIcon.tsx
|
|
503
|
-
import { jsx as
|
|
676
|
+
import { jsx as jsx21, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
504
677
|
|
|
505
678
|
// src/tokens/svg/action/RefreshCcwIcon.tsx
|
|
506
|
-
import { jsx as
|
|
679
|
+
import { jsx as jsx22, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
507
680
|
|
|
508
681
|
// src/tokens/svg/action/RefreshCwIcon.tsx
|
|
509
|
-
import { jsx as
|
|
682
|
+
import { jsx as jsx23, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
510
683
|
|
|
511
684
|
// src/tokens/svg/action/RotateCcwIcon.tsx
|
|
512
|
-
import { jsx as
|
|
685
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
513
686
|
|
|
514
687
|
// src/tokens/svg/action/RotateCwIcon.tsx
|
|
515
|
-
import { jsx as
|
|
688
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
516
689
|
|
|
517
690
|
// src/tokens/svg/action/SaveIcon.tsx
|
|
518
|
-
import { jsx as
|
|
691
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
519
692
|
|
|
520
693
|
// src/tokens/svg/action/ScissorsIcon.tsx
|
|
521
|
-
import { jsx as
|
|
694
|
+
import { jsx as jsx27, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
522
695
|
|
|
523
696
|
// src/tokens/svg/action/SearchIcon.tsx
|
|
524
|
-
import { jsx as
|
|
697
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
525
698
|
|
|
526
699
|
// src/tokens/svg/action/SendIcon.tsx
|
|
527
|
-
import { jsx as
|
|
700
|
+
import { jsx as jsx29, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
528
701
|
|
|
529
702
|
// src/tokens/svg/action/Share2Icon.tsx
|
|
530
|
-
import { jsx as
|
|
703
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
531
704
|
|
|
532
705
|
// src/tokens/svg/action/ShareIcon.tsx
|
|
533
|
-
import { jsx as
|
|
706
|
+
import { jsx as jsx31, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
534
707
|
|
|
535
708
|
// src/tokens/svg/action/Trash2Icon.tsx
|
|
536
|
-
import { jsx as
|
|
709
|
+
import { jsx as jsx32, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
537
710
|
|
|
538
711
|
// src/tokens/svg/action/TrashIcon.tsx
|
|
539
|
-
import { jsx as
|
|
712
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
540
713
|
|
|
541
714
|
// src/tokens/svg/action/UploadCloudIcon.tsx
|
|
542
|
-
import { jsx as
|
|
715
|
+
import { jsx as jsx34, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
543
716
|
|
|
544
717
|
// src/tokens/svg/action/UploadIcon.tsx
|
|
545
|
-
import { jsx as
|
|
546
|
-
var UploadIcon = () => /* @__PURE__ */
|
|
718
|
+
import { jsx as jsx35, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
719
|
+
var UploadIcon = () => /* @__PURE__ */ jsxs24(
|
|
547
720
|
"svg",
|
|
548
721
|
{
|
|
549
722
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -552,14 +725,14 @@ var UploadIcon = () => /* @__PURE__ */ jsxs20(
|
|
|
552
725
|
viewBox: "0 0 16 16",
|
|
553
726
|
fill: "none",
|
|
554
727
|
children: [
|
|
555
|
-
/* @__PURE__ */
|
|
728
|
+
/* @__PURE__ */ jsx35(
|
|
556
729
|
"path",
|
|
557
730
|
{
|
|
558
731
|
d: "M13.9999 9.40039C14.3313 9.40039 14.5999 9.66902 14.5999 10.0004V12.6668C14.5999 13.1796 14.3961 13.6714 14.0335 14.034C13.6709 14.3966 13.1791 14.6004 12.6663 14.6004H3.3335C2.82074 14.6004 2.32888 14.3966 1.96631 14.034C1.60374 13.6714 1.3999 13.1796 1.3999 12.6668V10.0004C1.3999 9.66902 1.66853 9.40039 1.9999 9.40039C2.33127 9.40039 2.5999 9.66902 2.5999 10.0004V12.6668C2.5999 12.8613 2.67722 13.048 2.81475 13.1855C2.95227 13.3231 3.139 13.4004 3.3335 13.4004H12.6663C12.8608 13.4004 13.0475 13.3231 13.1851 13.1855C13.3226 13.048 13.3999 12.8613 13.3999 12.6668V10.0004C13.3999 9.66902 13.6685 9.40039 13.9999 9.40039Z",
|
|
559
732
|
fill: "currentColor"
|
|
560
733
|
}
|
|
561
734
|
),
|
|
562
|
-
/* @__PURE__ */
|
|
735
|
+
/* @__PURE__ */ jsx35(
|
|
563
736
|
"path",
|
|
564
737
|
{
|
|
565
738
|
d: "M8.021 1.40117C8.02595 1.40134 8.03089 1.40166 8.03584 1.40195C8.06704 1.4038 8.09751 1.40802 8.12725 1.41445C8.14906 1.41917 8.17003 1.42682 8.19131 1.43398C8.20533 1.43872 8.21996 1.44154 8.2335 1.44727L8.23975 1.45039C8.3068 1.47957 8.37009 1.52135 8.4249 1.57617L11.7577 4.90977C11.9918 5.14403 11.9918 5.52394 11.7577 5.7582C11.5234 5.99219 11.1435 5.99224 10.9093 5.7582L8.5999 3.44883V10.0004C8.5999 10.3318 8.33127 10.6004 7.9999 10.6004C7.66853 10.6004 7.3999 10.3318 7.3999 10.0004V3.44883L5.09131 5.7582C4.85709 5.99228 4.47717 5.99215 4.24287 5.7582C4.0086 5.52393 4.00869 5.14409 4.24287 4.90977L7.57178 1.58008C7.57552 1.57627 7.57965 1.57285 7.5835 1.56914L7.62178 1.53477C7.62876 1.52908 7.63648 1.52446 7.64365 1.51914C7.65829 1.50829 7.67335 1.49818 7.68897 1.48867C7.70584 1.4784 7.72293 1.469 7.74053 1.46055C7.75681 1.45271 7.77347 1.44582 7.79053 1.43945C7.81028 1.4321 7.8304 1.42669 7.85068 1.42148C7.87179 1.41606 7.89281 1.40976 7.91475 1.40664C7.91788 1.40619 7.92098 1.40548 7.92412 1.40508C7.94894 1.40195 7.97424 1.40039 7.9999 1.40039C8.00697 1.40039 8.01399 1.40093 8.021 1.40117Z",
|
|
@@ -572,59 +745,59 @@ var UploadIcon = () => /* @__PURE__ */ jsxs20(
|
|
|
572
745
|
var UploadIcon_default = UploadIcon;
|
|
573
746
|
|
|
574
747
|
// src/tokens/svg/action/ZoomInIcon.tsx
|
|
575
|
-
import { jsx as
|
|
748
|
+
import { jsx as jsx36, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
576
749
|
|
|
577
750
|
// src/tokens/svg/action/ZoomOutIcon.tsx
|
|
578
|
-
import { jsx as
|
|
751
|
+
import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
579
752
|
|
|
580
753
|
// src/tokens/svg/call/CallActiveIcon.tsx
|
|
581
|
-
import { jsx as
|
|
754
|
+
import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
582
755
|
|
|
583
756
|
// src/tokens/svg/call/CallForwardedIcon.tsx
|
|
584
|
-
import { jsx as
|
|
757
|
+
import { jsx as jsx39, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
585
758
|
|
|
586
759
|
// src/tokens/svg/call/CallIcon.tsx
|
|
587
|
-
import { jsx as
|
|
760
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
588
761
|
|
|
589
762
|
// src/tokens/svg/call/CallIncomingIcon.tsx
|
|
590
|
-
import { jsx as
|
|
763
|
+
import { jsx as jsx41, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
591
764
|
|
|
592
765
|
// src/tokens/svg/call/CallMissedIcon.tsx
|
|
593
|
-
import { jsx as
|
|
766
|
+
import { jsx as jsx42, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
594
767
|
|
|
595
768
|
// src/tokens/svg/call/CallOffIcon.tsx
|
|
596
|
-
import { jsx as
|
|
769
|
+
import { jsx as jsx43, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
597
770
|
|
|
598
771
|
// src/tokens/svg/call/CallOutgoingIcon.tsx
|
|
599
|
-
import { jsx as
|
|
772
|
+
import { jsx as jsx44, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
600
773
|
|
|
601
774
|
// src/tokens/svg/call/VoicemailIcon.tsx
|
|
602
|
-
import { jsx as
|
|
775
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
|
603
776
|
|
|
604
777
|
// src/tokens/svg/chart/BarChart2Icon.tsx
|
|
605
|
-
import { jsx as
|
|
778
|
+
import { jsx as jsx46, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
606
779
|
|
|
607
780
|
// src/tokens/svg/chart/BarChartIcon.tsx
|
|
608
|
-
import { jsx as
|
|
781
|
+
import { jsx as jsx47, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
609
782
|
|
|
610
783
|
// src/tokens/svg/chart/PieChartIcon.tsx
|
|
611
|
-
import { jsx as
|
|
784
|
+
import { jsx as jsx48, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
612
785
|
|
|
613
786
|
// src/tokens/svg/chart/TableIcon.tsx
|
|
614
|
-
import { jsx as
|
|
787
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
615
788
|
|
|
616
789
|
// src/tokens/svg/chart/TrendingDownIcon.tsx
|
|
617
|
-
import { jsx as
|
|
790
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
618
791
|
|
|
619
792
|
// src/tokens/svg/chart/TrendingUpIcon.tsx
|
|
620
|
-
import { jsx as
|
|
793
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
621
794
|
|
|
622
795
|
// src/tokens/svg/date/CalendarIcon.tsx
|
|
623
|
-
import { jsx as
|
|
796
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
624
797
|
|
|
625
798
|
// src/tokens/svg/date/CalenderIcon.tsx
|
|
626
|
-
import { jsx as
|
|
627
|
-
var CalenderIcon = () => /* @__PURE__ */
|
|
799
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
800
|
+
var CalenderIcon = () => /* @__PURE__ */ jsx53(
|
|
628
801
|
"svg",
|
|
629
802
|
{
|
|
630
803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -632,7 +805,7 @@ var CalenderIcon = () => /* @__PURE__ */ jsx48(
|
|
|
632
805
|
height: "1em",
|
|
633
806
|
viewBox: "0 0 16 16",
|
|
634
807
|
fill: "none",
|
|
635
|
-
children: /* @__PURE__ */
|
|
808
|
+
children: /* @__PURE__ */ jsx53(
|
|
636
809
|
"path",
|
|
637
810
|
{
|
|
638
811
|
fillRule: "evenodd",
|
|
@@ -646,161 +819,161 @@ var CalenderIcon = () => /* @__PURE__ */ jsx48(
|
|
|
646
819
|
var CalenderIcon_default = CalenderIcon;
|
|
647
820
|
|
|
648
821
|
// src/tokens/svg/date/ClockIcon.tsx
|
|
649
|
-
import { jsx as
|
|
822
|
+
import { jsx as jsx54, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
650
823
|
|
|
651
824
|
// src/tokens/svg/date/SunriseIcon.tsx
|
|
652
|
-
import { jsx as
|
|
825
|
+
import { jsx as jsx55, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
653
826
|
|
|
654
827
|
// src/tokens/svg/date/SunsetIcon.tsx
|
|
655
|
-
import { jsx as
|
|
828
|
+
import { jsx as jsx56, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
656
829
|
|
|
657
830
|
// src/tokens/svg/device/BatteryChargingIcon.tsx
|
|
658
|
-
import { jsx as
|
|
831
|
+
import { jsx as jsx57, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
659
832
|
|
|
660
833
|
// src/tokens/svg/device/BatteryIcon.tsx
|
|
661
|
-
import { jsx as
|
|
834
|
+
import { jsx as jsx58, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
662
835
|
|
|
663
836
|
// src/tokens/svg/device/BluetoothIcon.tsx
|
|
664
|
-
import { jsx as
|
|
837
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
665
838
|
|
|
666
839
|
// src/tokens/svg/device/CommandIcon.tsx
|
|
667
|
-
import { jsx as
|
|
840
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
668
841
|
|
|
669
842
|
// src/tokens/svg/device/CpuIcon.tsx
|
|
670
|
-
import { jsx as
|
|
843
|
+
import { jsx as jsx61, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
671
844
|
|
|
672
845
|
// src/tokens/svg/device/DatabaseIcon.tsx
|
|
673
|
-
import { jsx as
|
|
846
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
674
847
|
|
|
675
848
|
// src/tokens/svg/device/HardDriveIcon.tsx
|
|
676
|
-
import { jsx as
|
|
849
|
+
import { jsx as jsx63, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
677
850
|
|
|
678
851
|
// src/tokens/svg/device/MonitorIcon.tsx
|
|
679
|
-
import { jsx as
|
|
852
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
680
853
|
|
|
681
854
|
// src/tokens/svg/device/PrinterIcon.tsx
|
|
682
|
-
import { jsx as
|
|
855
|
+
import { jsx as jsx65, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
683
856
|
|
|
684
857
|
// src/tokens/svg/device/ServerIcon.tsx
|
|
685
|
-
import { jsx as
|
|
858
|
+
import { jsx as jsx66, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
686
859
|
|
|
687
860
|
// src/tokens/svg/device/SmartphoneIcon.tsx
|
|
688
|
-
import { jsx as
|
|
861
|
+
import { jsx as jsx67, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
689
862
|
|
|
690
863
|
// src/tokens/svg/device/TabletIcon.tsx
|
|
691
|
-
import { jsx as
|
|
864
|
+
import { jsx as jsx68, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
692
865
|
|
|
693
866
|
// src/tokens/svg/device/TerminalIcon.tsx
|
|
694
|
-
import { jsx as
|
|
867
|
+
import { jsx as jsx69, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
695
868
|
|
|
696
869
|
// src/tokens/svg/device/TvIcon.tsx
|
|
697
|
-
import { jsx as
|
|
870
|
+
import { jsx as jsx70, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
698
871
|
|
|
699
872
|
// src/tokens/svg/device/WatchIcon.tsx
|
|
700
|
-
import { jsx as
|
|
873
|
+
import { jsx as jsx71, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
701
874
|
|
|
702
875
|
// src/tokens/svg/device/WifiIcon.tsx
|
|
703
|
-
import { jsx as
|
|
876
|
+
import { jsx as jsx72, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
704
877
|
|
|
705
878
|
// src/tokens/svg/device/WifiOffIcon.tsx
|
|
706
|
-
import { jsx as
|
|
879
|
+
import { jsx as jsx73, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
707
880
|
|
|
708
881
|
// src/tokens/svg/edit/AlignCenterIcon.tsx
|
|
709
|
-
import { jsx as
|
|
882
|
+
import { jsx as jsx74, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
710
883
|
|
|
711
884
|
// src/tokens/svg/edit/AlignJustifyIcon.tsx
|
|
712
|
-
import { jsx as
|
|
885
|
+
import { jsx as jsx75, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
713
886
|
|
|
714
887
|
// src/tokens/svg/edit/AlignLeftIcon.tsx
|
|
715
|
-
import { jsx as
|
|
888
|
+
import { jsx as jsx76, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
716
889
|
|
|
717
890
|
// src/tokens/svg/edit/AlignRightIcon.tsx
|
|
718
|
-
import { jsx as
|
|
891
|
+
import { jsx as jsx77, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
719
892
|
|
|
720
893
|
// src/tokens/svg/edit/BoldIcon.tsx
|
|
721
|
-
import { jsx as
|
|
894
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
722
895
|
|
|
723
896
|
// src/tokens/svg/edit/CodeIcon.tsx
|
|
724
|
-
import { jsx as
|
|
897
|
+
import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
725
898
|
|
|
726
899
|
// src/tokens/svg/edit/ItalicIcon.tsx
|
|
727
|
-
import { jsx as
|
|
900
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
728
901
|
|
|
729
902
|
// src/tokens/svg/edit/PenToolIcon.tsx
|
|
730
|
-
import { jsx as
|
|
903
|
+
import { jsx as jsx81, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
731
904
|
|
|
732
905
|
// src/tokens/svg/edit/TypeIcon.tsx
|
|
733
|
-
import { jsx as
|
|
906
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
734
907
|
|
|
735
908
|
// src/tokens/svg/edit/UnderlineIcon.tsx
|
|
736
|
-
import { jsx as
|
|
909
|
+
import { jsx as jsx83, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
737
910
|
|
|
738
911
|
// src/tokens/svg/file/ArchiveIcon.tsx
|
|
739
|
-
import { jsx as
|
|
912
|
+
import { jsx as jsx84, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
740
913
|
|
|
741
914
|
// src/tokens/svg/file/BookIcon.tsx
|
|
742
|
-
import { jsx as
|
|
915
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
743
916
|
|
|
744
917
|
// src/tokens/svg/file/BookOpenIcon.tsx
|
|
745
|
-
import { jsx as
|
|
918
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
746
919
|
|
|
747
920
|
// src/tokens/svg/file/BookmarkIcon.tsx
|
|
748
|
-
import { jsx as
|
|
921
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
749
922
|
|
|
750
923
|
// src/tokens/svg/file/ClipboardIcon.tsx
|
|
751
|
-
import { jsx as
|
|
924
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
752
925
|
|
|
753
926
|
// src/tokens/svg/file/FileIcon.tsx
|
|
754
|
-
import { jsx as
|
|
927
|
+
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
755
928
|
|
|
756
929
|
// src/tokens/svg/file/FileMinusIcon.tsx
|
|
757
|
-
import { jsx as
|
|
930
|
+
import { jsx as jsx90, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
758
931
|
|
|
759
932
|
// src/tokens/svg/file/FilePlusIcon.tsx
|
|
760
|
-
import { jsx as
|
|
933
|
+
import { jsx as jsx91, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
761
934
|
|
|
762
935
|
// src/tokens/svg/file/FileTextIcon.tsx
|
|
763
|
-
import { jsx as
|
|
936
|
+
import { jsx as jsx92, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
764
937
|
|
|
765
938
|
// src/tokens/svg/file/FolderIcon.tsx
|
|
766
|
-
import { jsx as
|
|
939
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
767
940
|
|
|
768
941
|
// src/tokens/svg/file/FolderMinusIcon.tsx
|
|
769
|
-
import { jsx as
|
|
942
|
+
import { jsx as jsx94, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
770
943
|
|
|
771
944
|
// src/tokens/svg/file/FolderPlusIcon.tsx
|
|
772
|
-
import { jsx as
|
|
945
|
+
import { jsx as jsx95, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
773
946
|
|
|
774
947
|
// src/tokens/svg/file/PackageIcon.tsx
|
|
775
|
-
import { jsx as
|
|
948
|
+
import { jsx as jsx96 } from "react/jsx-runtime";
|
|
776
949
|
|
|
777
950
|
// src/tokens/svg/media/AirplayIcon.tsx
|
|
778
|
-
import { jsx as
|
|
951
|
+
import { jsx as jsx97, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
779
952
|
|
|
780
953
|
// src/tokens/svg/media/CameraIcon.tsx
|
|
781
|
-
import { jsx as
|
|
954
|
+
import { jsx as jsx98, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
782
955
|
|
|
783
956
|
// src/tokens/svg/media/CameraOffIcon.tsx
|
|
784
|
-
import { jsx as
|
|
957
|
+
import { jsx as jsx99, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
785
958
|
|
|
786
959
|
// src/tokens/svg/media/CastIcon.tsx
|
|
787
|
-
import { jsx as
|
|
960
|
+
import { jsx as jsx100, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
788
961
|
|
|
789
962
|
// src/tokens/svg/media/DiscIcon.tsx
|
|
790
|
-
import { jsx as
|
|
963
|
+
import { jsx as jsx101, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
791
964
|
|
|
792
965
|
// src/tokens/svg/media/FastForwardIcon.tsx
|
|
793
|
-
import { jsx as
|
|
966
|
+
import { jsx as jsx102, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
794
967
|
|
|
795
968
|
// src/tokens/svg/media/FilmIcon.tsx
|
|
796
|
-
import { jsx as
|
|
969
|
+
import { jsx as jsx103, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
797
970
|
|
|
798
971
|
// src/tokens/svg/media/HeadphonesIcon.tsx
|
|
799
|
-
import { jsx as
|
|
972
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
800
973
|
|
|
801
974
|
// src/tokens/svg/media/ImageIcon.tsx
|
|
802
|
-
import { jsx as
|
|
803
|
-
var ImageIcon = () => /* @__PURE__ */
|
|
975
|
+
import { jsx as jsx105, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
976
|
+
var ImageIcon = () => /* @__PURE__ */ jsxs72(
|
|
804
977
|
"svg",
|
|
805
978
|
{
|
|
806
979
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -809,7 +982,7 @@ var ImageIcon = () => /* @__PURE__ */ jsxs68(
|
|
|
809
982
|
viewBox: "0 0 20 20",
|
|
810
983
|
fill: "none",
|
|
811
984
|
children: [
|
|
812
|
-
/* @__PURE__ */
|
|
985
|
+
/* @__PURE__ */ jsx105(
|
|
813
986
|
"path",
|
|
814
987
|
{
|
|
815
988
|
fillRule: "evenodd",
|
|
@@ -818,7 +991,7 @@ var ImageIcon = () => /* @__PURE__ */ jsxs68(
|
|
|
818
991
|
fill: "currentColor"
|
|
819
992
|
}
|
|
820
993
|
),
|
|
821
|
-
/* @__PURE__ */
|
|
994
|
+
/* @__PURE__ */ jsx105(
|
|
822
995
|
"path",
|
|
823
996
|
{
|
|
824
997
|
fillRule: "evenodd",
|
|
@@ -833,20 +1006,20 @@ var ImageIcon = () => /* @__PURE__ */ jsxs68(
|
|
|
833
1006
|
var ImageIcon_default = ImageIcon;
|
|
834
1007
|
|
|
835
1008
|
// src/tokens/svg/media/MicIcon.tsx
|
|
836
|
-
import { jsx as
|
|
1009
|
+
import { jsx as jsx106, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
837
1010
|
|
|
838
1011
|
// src/tokens/svg/media/MicOffIcon.tsx
|
|
839
|
-
import { jsx as
|
|
1012
|
+
import { jsx as jsx107, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
840
1013
|
|
|
841
1014
|
// src/tokens/svg/media/MusicIcon.tsx
|
|
842
|
-
import { jsx as
|
|
1015
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
843
1016
|
|
|
844
1017
|
// src/tokens/svg/media/PauseCircleIcon.tsx
|
|
845
|
-
import { jsx as
|
|
1018
|
+
import { jsx as jsx109, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
846
1019
|
|
|
847
1020
|
// src/tokens/svg/media/PauseIcon.tsx
|
|
848
|
-
import { jsx as
|
|
849
|
-
var PauseIcon = () => /* @__PURE__ */
|
|
1021
|
+
import { jsx as jsx110, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
1022
|
+
var PauseIcon = () => /* @__PURE__ */ jsxs76(
|
|
850
1023
|
"svg",
|
|
851
1024
|
{
|
|
852
1025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -855,16 +1028,16 @@ var PauseIcon = () => /* @__PURE__ */ jsxs72(
|
|
|
855
1028
|
viewBox: "0 0 20 20",
|
|
856
1029
|
fill: "none",
|
|
857
1030
|
children: [
|
|
858
|
-
/* @__PURE__ */
|
|
859
|
-
/* @__PURE__ */
|
|
1031
|
+
/* @__PURE__ */ jsx110("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.33301 2.58301C8.74714 2.58301 9.08288 2.91891 9.08301 3.33301V16.666C9.08301 17.0802 8.74722 17.416 8.33301 17.416H5C4.58579 17.416 4.25 17.0802 4.25 16.666V3.33301C4.25013 2.91891 4.58587 2.58301 5 2.58301H8.33301ZM5.75 15.916H7.58301V4.08301H5.75V15.916Z", fill: "currentColor" }),
|
|
1032
|
+
/* @__PURE__ */ jsx110("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 2.58301C15.4139 2.58327 15.7499 2.91907 15.75 3.33301V16.666C15.75 17.0801 15.414 17.4158 15 17.416H11.667C11.2528 17.416 10.917 17.0802 10.917 16.666V3.33301C10.9171 2.91891 11.2529 2.58301 11.667 2.58301H15ZM12.417 15.916H14.25V4.08301H12.417V15.916Z", fill: "currentColor" })
|
|
860
1033
|
]
|
|
861
1034
|
}
|
|
862
1035
|
);
|
|
863
1036
|
var PauseIcon_default = PauseIcon;
|
|
864
1037
|
|
|
865
1038
|
// src/tokens/svg/media/PlayCircleIcon.tsx
|
|
866
|
-
import { jsx as
|
|
867
|
-
var PlayCircleIcon = () => /* @__PURE__ */
|
|
1039
|
+
import { jsx as jsx111, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
1040
|
+
var PlayCircleIcon = () => /* @__PURE__ */ jsxs77(
|
|
868
1041
|
"svg",
|
|
869
1042
|
{
|
|
870
1043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -873,241 +1046,241 @@ var PlayCircleIcon = () => /* @__PURE__ */ jsxs73(
|
|
|
873
1046
|
viewBox: "0 0 20 20",
|
|
874
1047
|
fill: "none",
|
|
875
1048
|
children: [
|
|
876
|
-
/* @__PURE__ */
|
|
877
|
-
/* @__PURE__ */
|
|
878
|
-
/* @__PURE__ */
|
|
1049
|
+
/* @__PURE__ */ jsxs77("g", { clipPath: "url(#playcircle-clip)", children: [
|
|
1050
|
+
/* @__PURE__ */ jsx111("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.98047 6.00586C8.22424 5.87564 8.52002 5.88965 8.75 6.04297L13.75 9.37598C13.9583 9.51505 14.0839 9.74954 14.084 10C14.0839 10.2505 13.9584 10.4849 13.75 10.624L8.75 13.958C8.52015 14.1112 8.22412 14.1251 7.98047 13.9951C7.73677 13.8647 7.58419 13.6104 7.58398 13.334V6.66699L7.59082 6.56445C7.6233 6.32874 7.7671 6.12005 7.98047 6.00586ZM9.08398 11.9316L11.9814 10L9.08398 8.06738V11.9316Z", fill: "currentColor" }),
|
|
1051
|
+
/* @__PURE__ */ jsx111("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 0.916992C15.0163 0.917256 19.0838 4.98373 19.084 10C19.0839 15.0163 15.0163 19.0837 10 19.084C4.98364 19.0838 0.916148 15.0164 0.916016 10C0.916191 4.98367 4.98367 0.917168 10 0.916992ZM10 2.41699C5.8121 2.41717 2.41717 5.8121 2.41699 10C2.41712 14.1879 5.81207 17.5838 10 17.584C14.1879 17.5837 17.5839 14.1879 17.584 10C17.5838 5.81215 14.1878 2.41726 10 2.41699Z", fill: "currentColor" })
|
|
879
1052
|
] }),
|
|
880
|
-
/* @__PURE__ */
|
|
1053
|
+
/* @__PURE__ */ jsx111("defs", { children: /* @__PURE__ */ jsx111("clipPath", { id: "playcircle-clip", children: /* @__PURE__ */ jsx111("rect", { width: "20", height: "20", fill: "currentColor" }) }) })
|
|
881
1054
|
]
|
|
882
1055
|
}
|
|
883
1056
|
);
|
|
884
1057
|
var PlayCircleIcon_default = PlayCircleIcon;
|
|
885
1058
|
|
|
886
1059
|
// src/tokens/svg/media/PlayIcon.tsx
|
|
887
|
-
import { jsx as
|
|
1060
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
888
1061
|
|
|
889
1062
|
// src/tokens/svg/media/RepeatIcon.tsx
|
|
890
|
-
import { jsx as
|
|
1063
|
+
import { jsx as jsx113, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
891
1064
|
|
|
892
1065
|
// src/tokens/svg/media/RewindIcon.tsx
|
|
893
|
-
import { jsx as
|
|
1066
|
+
import { jsx as jsx114, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
894
1067
|
|
|
895
1068
|
// src/tokens/svg/media/SkipBackIcon.tsx
|
|
896
|
-
import { jsx as
|
|
1069
|
+
import { jsx as jsx115, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
897
1070
|
|
|
898
1071
|
// src/tokens/svg/media/SkipForwardIcon.tsx
|
|
899
|
-
import { jsx as
|
|
1072
|
+
import { jsx as jsx116, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
900
1073
|
|
|
901
1074
|
// src/tokens/svg/media/SpeakerIcon.tsx
|
|
902
|
-
import { jsx as
|
|
1075
|
+
import { jsx as jsx117, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
903
1076
|
|
|
904
1077
|
// src/tokens/svg/media/StopCircleIcon.tsx
|
|
905
|
-
import { jsx as
|
|
1078
|
+
import { jsx as jsx118, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
906
1079
|
|
|
907
1080
|
// src/tokens/svg/media/VideoIcon.tsx
|
|
908
|
-
import { jsx as
|
|
1081
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
909
1082
|
|
|
910
1083
|
// src/tokens/svg/media/VideoOffIcon.tsx
|
|
911
|
-
import { jsx as
|
|
1084
|
+
import { jsx as jsx120, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
912
1085
|
|
|
913
1086
|
// src/tokens/svg/media/Volume1Icon.tsx
|
|
914
|
-
import { jsx as
|
|
1087
|
+
import { jsx as jsx121, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
915
1088
|
|
|
916
1089
|
// src/tokens/svg/media/Volume2Icon.tsx
|
|
917
|
-
import { jsx as
|
|
1090
|
+
import { jsx as jsx122, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
918
1091
|
|
|
919
1092
|
// src/tokens/svg/media/VolumeIcon.tsx
|
|
920
|
-
import { jsx as
|
|
1093
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
921
1094
|
|
|
922
1095
|
// src/tokens/svg/media/VolumeXIcon.tsx
|
|
923
|
-
import { jsx as
|
|
1096
|
+
import { jsx as jsx124, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
924
1097
|
|
|
925
1098
|
// src/tokens/svg/misc/ActivityIcon.tsx
|
|
926
|
-
import { jsx as
|
|
1099
|
+
import { jsx as jsx125 } from "react/jsx-runtime";
|
|
927
1100
|
|
|
928
1101
|
// src/tokens/svg/misc/AnchorIcon.tsx
|
|
929
|
-
import { jsx as
|
|
1102
|
+
import { jsx as jsx126, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
930
1103
|
|
|
931
1104
|
// src/tokens/svg/misc/ApertureIcon.tsx
|
|
932
|
-
import { jsx as
|
|
1105
|
+
import { jsx as jsx127, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
933
1106
|
|
|
934
1107
|
// src/tokens/svg/misc/AwardIcon.tsx
|
|
935
|
-
import { jsx as
|
|
1108
|
+
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
936
1109
|
|
|
937
1110
|
// src/tokens/svg/misc/BellIcon.tsx
|
|
938
|
-
import { jsx as
|
|
1111
|
+
import { jsx as jsx129, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
939
1112
|
|
|
940
1113
|
// src/tokens/svg/misc/BellOffIcon.tsx
|
|
941
|
-
import { jsx as
|
|
1114
|
+
import { jsx as jsx130, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
942
1115
|
|
|
943
1116
|
// src/tokens/svg/misc/BoxIcon.tsx
|
|
944
|
-
import { jsx as
|
|
1117
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
945
1118
|
|
|
946
1119
|
// src/tokens/svg/misc/BriefcaseIcon.tsx
|
|
947
|
-
import { jsx as
|
|
1120
|
+
import { jsx as jsx132 } from "react/jsx-runtime";
|
|
948
1121
|
|
|
949
1122
|
// src/tokens/svg/misc/CloudDrizzleIcon.tsx
|
|
950
|
-
import { jsx as
|
|
1123
|
+
import { jsx as jsx133, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
951
1124
|
|
|
952
1125
|
// src/tokens/svg/misc/CloudIcon.tsx
|
|
953
|
-
import { jsx as
|
|
1126
|
+
import { jsx as jsx134 } from "react/jsx-runtime";
|
|
954
1127
|
|
|
955
1128
|
// src/tokens/svg/misc/CloudLightningIcon.tsx
|
|
956
|
-
import { jsx as
|
|
1129
|
+
import { jsx as jsx135, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
957
1130
|
|
|
958
1131
|
// src/tokens/svg/misc/CloudOffIcon.tsx
|
|
959
|
-
import { jsx as
|
|
1132
|
+
import { jsx as jsx136, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
960
1133
|
|
|
961
1134
|
// src/tokens/svg/misc/CloudRainIcon.tsx
|
|
962
|
-
import { jsx as
|
|
1135
|
+
import { jsx as jsx137, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
963
1136
|
|
|
964
1137
|
// src/tokens/svg/misc/CloudSnowIcon.tsx
|
|
965
|
-
import { jsx as
|
|
1138
|
+
import { jsx as jsx138, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
966
1139
|
|
|
967
1140
|
// src/tokens/svg/misc/CoffeeIcon.tsx
|
|
968
|
-
import { jsx as
|
|
1141
|
+
import { jsx as jsx139, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
969
1142
|
|
|
970
1143
|
// src/tokens/svg/misc/CreditCardIcon.tsx
|
|
971
|
-
import { jsx as
|
|
1144
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
972
1145
|
|
|
973
1146
|
// src/tokens/svg/misc/CrosshairIcon.tsx
|
|
974
|
-
import { jsx as
|
|
1147
|
+
import { jsx as jsx141, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
975
1148
|
|
|
976
1149
|
// src/tokens/svg/misc/DollarSignIcon.tsx
|
|
977
|
-
import { jsx as
|
|
1150
|
+
import { jsx as jsx142 } from "react/jsx-runtime";
|
|
978
1151
|
|
|
979
1152
|
// src/tokens/svg/misc/DropletIcon.tsx
|
|
980
|
-
import { jsx as
|
|
1153
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
981
1154
|
|
|
982
1155
|
// src/tokens/svg/misc/FeatherIcon.tsx
|
|
983
|
-
import { jsx as
|
|
1156
|
+
import { jsx as jsx144, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
984
1157
|
|
|
985
1158
|
// src/tokens/svg/misc/FlagIcon.tsx
|
|
986
|
-
import { jsx as
|
|
1159
|
+
import { jsx as jsx145 } from "react/jsx-runtime";
|
|
987
1160
|
|
|
988
1161
|
// src/tokens/svg/misc/FrownIcon.tsx
|
|
989
|
-
import { jsx as
|
|
1162
|
+
import { jsx as jsx146, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
990
1163
|
|
|
991
1164
|
// src/tokens/svg/misc/GiftIcon.tsx
|
|
992
|
-
import { jsx as
|
|
1165
|
+
import { jsx as jsx147, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
993
1166
|
|
|
994
1167
|
// src/tokens/svg/misc/GitBranchIcon.tsx
|
|
995
|
-
import { jsx as
|
|
1168
|
+
import { jsx as jsx148 } from "react/jsx-runtime";
|
|
996
1169
|
|
|
997
1170
|
// src/tokens/svg/misc/GitCommitIcon.tsx
|
|
998
|
-
import { jsx as
|
|
1171
|
+
import { jsx as jsx149 } from "react/jsx-runtime";
|
|
999
1172
|
|
|
1000
1173
|
// src/tokens/svg/misc/GitMergeIcon.tsx
|
|
1001
|
-
import { jsx as
|
|
1174
|
+
import { jsx as jsx150 } from "react/jsx-runtime";
|
|
1002
1175
|
|
|
1003
1176
|
// src/tokens/svg/misc/GitPullRequestIcon.tsx
|
|
1004
|
-
import { jsx as
|
|
1177
|
+
import { jsx as jsx151, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
1005
1178
|
|
|
1006
1179
|
// src/tokens/svg/misc/GlobeIcon.tsx
|
|
1007
|
-
import { jsx as
|
|
1180
|
+
import { jsx as jsx152, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
1008
1181
|
|
|
1009
1182
|
// src/tokens/svg/misc/HeartIcon.tsx
|
|
1010
|
-
import { jsx as
|
|
1183
|
+
import { jsx as jsx153 } from "react/jsx-runtime";
|
|
1011
1184
|
|
|
1012
1185
|
// src/tokens/svg/misc/HomeIcon.tsx
|
|
1013
|
-
import { jsx as
|
|
1186
|
+
import { jsx as jsx154 } from "react/jsx-runtime";
|
|
1014
1187
|
|
|
1015
1188
|
// src/tokens/svg/misc/InboxIcon.tsx
|
|
1016
|
-
import { jsx as
|
|
1189
|
+
import { jsx as jsx155 } from "react/jsx-runtime";
|
|
1017
1190
|
|
|
1018
1191
|
// src/tokens/svg/misc/LayersIcon.tsx
|
|
1019
|
-
import { jsx as
|
|
1192
|
+
import { jsx as jsx156, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
1020
1193
|
|
|
1021
1194
|
// src/tokens/svg/misc/LifeBuoyIcon.tsx
|
|
1022
|
-
import { jsx as
|
|
1195
|
+
import { jsx as jsx157, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
1023
1196
|
|
|
1024
1197
|
// src/tokens/svg/misc/MehIcon.tsx
|
|
1025
|
-
import { jsx as
|
|
1198
|
+
import { jsx as jsx158, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
1026
1199
|
|
|
1027
1200
|
// src/tokens/svg/misc/MessageCircleIcon.tsx
|
|
1028
|
-
import { jsx as
|
|
1201
|
+
import { jsx as jsx159 } from "react/jsx-runtime";
|
|
1029
1202
|
|
|
1030
1203
|
// src/tokens/svg/misc/MessageSquareIcon.tsx
|
|
1031
|
-
import { jsx as
|
|
1204
|
+
import { jsx as jsx160 } from "react/jsx-runtime";
|
|
1032
1205
|
|
|
1033
1206
|
// src/tokens/svg/misc/MoonIcon.tsx
|
|
1034
|
-
import { jsx as
|
|
1207
|
+
import { jsx as jsx161 } from "react/jsx-runtime";
|
|
1035
1208
|
|
|
1036
1209
|
// src/tokens/svg/misc/MousePointerIcon.tsx
|
|
1037
|
-
import { jsx as
|
|
1210
|
+
import { jsx as jsx162 } from "react/jsx-runtime";
|
|
1038
1211
|
|
|
1039
1212
|
// src/tokens/svg/misc/PaperclipIcon.tsx
|
|
1040
|
-
import { jsx as
|
|
1213
|
+
import { jsx as jsx163 } from "react/jsx-runtime";
|
|
1041
1214
|
|
|
1042
1215
|
// src/tokens/svg/misc/PocketIcon.tsx
|
|
1043
|
-
import { jsx as
|
|
1216
|
+
import { jsx as jsx164, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
1044
1217
|
|
|
1045
1218
|
// src/tokens/svg/misc/PowerIcon.tsx
|
|
1046
|
-
import { jsx as
|
|
1219
|
+
import { jsx as jsx165, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
1047
1220
|
|
|
1048
1221
|
// src/tokens/svg/misc/RadioIcon.tsx
|
|
1049
|
-
import { jsx as
|
|
1222
|
+
import { jsx as jsx166, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
1050
1223
|
|
|
1051
1224
|
// src/tokens/svg/misc/ShieldIcon.tsx
|
|
1052
|
-
import { jsx as
|
|
1225
|
+
import { jsx as jsx167 } from "react/jsx-runtime";
|
|
1053
1226
|
|
|
1054
1227
|
// src/tokens/svg/misc/ShieldOffIcon.tsx
|
|
1055
|
-
import { jsx as
|
|
1228
|
+
import { jsx as jsx168, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
1056
1229
|
|
|
1057
1230
|
// src/tokens/svg/misc/ShoppingBagIcon.tsx
|
|
1058
|
-
import { jsx as
|
|
1231
|
+
import { jsx as jsx169, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
1059
1232
|
|
|
1060
1233
|
// src/tokens/svg/misc/ShoppingCartIcon.tsx
|
|
1061
|
-
import { jsx as
|
|
1234
|
+
import { jsx as jsx170, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
1062
1235
|
|
|
1063
1236
|
// src/tokens/svg/misc/ShuffleIcon.tsx
|
|
1064
|
-
import { jsx as
|
|
1237
|
+
import { jsx as jsx171, jsxs as jsxs113 } from "react/jsx-runtime";
|
|
1065
1238
|
|
|
1066
1239
|
// src/tokens/svg/misc/SmileIcon.tsx
|
|
1067
|
-
import { jsx as
|
|
1240
|
+
import { jsx as jsx172, jsxs as jsxs114 } from "react/jsx-runtime";
|
|
1068
1241
|
|
|
1069
1242
|
// src/tokens/svg/misc/StarIcon.tsx
|
|
1070
|
-
import { jsx as
|
|
1243
|
+
import { jsx as jsx173 } from "react/jsx-runtime";
|
|
1071
1244
|
|
|
1072
1245
|
// src/tokens/svg/misc/SunIcon.tsx
|
|
1073
|
-
import { jsx as
|
|
1246
|
+
import { jsx as jsx174, jsxs as jsxs115 } from "react/jsx-runtime";
|
|
1074
1247
|
|
|
1075
1248
|
// src/tokens/svg/misc/TagIcon.tsx
|
|
1076
|
-
import { jsx as
|
|
1249
|
+
import { jsx as jsx175, jsxs as jsxs116 } from "react/jsx-runtime";
|
|
1077
1250
|
|
|
1078
1251
|
// src/tokens/svg/misc/TargetIcon.tsx
|
|
1079
|
-
import { jsx as
|
|
1252
|
+
import { jsx as jsx176, jsxs as jsxs117 } from "react/jsx-runtime";
|
|
1080
1253
|
|
|
1081
1254
|
// src/tokens/svg/misc/ThermometerIcon.tsx
|
|
1082
|
-
import { jsx as
|
|
1255
|
+
import { jsx as jsx177 } from "react/jsx-runtime";
|
|
1083
1256
|
|
|
1084
1257
|
// src/tokens/svg/misc/ThumbsDownIcon.tsx
|
|
1085
|
-
import { jsx as
|
|
1258
|
+
import { jsx as jsx178 } from "react/jsx-runtime";
|
|
1086
1259
|
|
|
1087
1260
|
// src/tokens/svg/misc/ThumbsUpIcon.tsx
|
|
1088
|
-
import { jsx as
|
|
1261
|
+
import { jsx as jsx179 } from "react/jsx-runtime";
|
|
1089
1262
|
|
|
1090
1263
|
// src/tokens/svg/misc/ToolIcon.tsx
|
|
1091
|
-
import { jsx as
|
|
1264
|
+
import { jsx as jsx180 } from "react/jsx-runtime";
|
|
1092
1265
|
|
|
1093
1266
|
// src/tokens/svg/misc/TruckIcon.tsx
|
|
1094
|
-
import { jsx as
|
|
1267
|
+
import { jsx as jsx181 } from "react/jsx-runtime";
|
|
1095
1268
|
|
|
1096
1269
|
// src/tokens/svg/misc/UmbrellaIcon.tsx
|
|
1097
|
-
import { jsx as
|
|
1270
|
+
import { jsx as jsx182, jsxs as jsxs118 } from "react/jsx-runtime";
|
|
1098
1271
|
|
|
1099
1272
|
// src/tokens/svg/misc/WindIcon.tsx
|
|
1100
|
-
import { jsx as
|
|
1273
|
+
import { jsx as jsx183, jsxs as jsxs119 } from "react/jsx-runtime";
|
|
1101
1274
|
|
|
1102
1275
|
// src/tokens/svg/misc/ZapIcon.tsx
|
|
1103
|
-
import { jsx as
|
|
1276
|
+
import { jsx as jsx184 } from "react/jsx-runtime";
|
|
1104
1277
|
|
|
1105
1278
|
// src/tokens/svg/misc/ZapOffIcon.tsx
|
|
1106
|
-
import { jsx as
|
|
1279
|
+
import { jsx as jsx185, jsxs as jsxs120 } from "react/jsx-runtime";
|
|
1107
1280
|
|
|
1108
1281
|
// src/tokens/svg/Input/CloseEyeIcon.tsx
|
|
1109
|
-
import { jsx as
|
|
1110
|
-
var CloseEyeIcon = () => /* @__PURE__ */
|
|
1282
|
+
import { jsx as jsx186, jsxs as jsxs121 } from "react/jsx-runtime";
|
|
1283
|
+
var CloseEyeIcon = () => /* @__PURE__ */ jsxs121(
|
|
1111
1284
|
"svg",
|
|
1112
1285
|
{
|
|
1113
1286
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1116,7 +1289,7 @@ var CloseEyeIcon = () => /* @__PURE__ */ jsxs117(
|
|
|
1116
1289
|
viewBox: "0 0 20 20",
|
|
1117
1290
|
fill: "none",
|
|
1118
1291
|
children: [
|
|
1119
|
-
/* @__PURE__ */
|
|
1292
|
+
/* @__PURE__ */ jsx186(
|
|
1120
1293
|
"path",
|
|
1121
1294
|
{
|
|
1122
1295
|
fillRule: "evenodd",
|
|
@@ -1125,7 +1298,7 @@ var CloseEyeIcon = () => /* @__PURE__ */ jsxs117(
|
|
|
1125
1298
|
fill: "currentColor"
|
|
1126
1299
|
}
|
|
1127
1300
|
),
|
|
1128
|
-
/* @__PURE__ */
|
|
1301
|
+
/* @__PURE__ */ jsx186(
|
|
1129
1302
|
"path",
|
|
1130
1303
|
{
|
|
1131
1304
|
d: "M9.91701 2.5008C13.1328 2.5011 15.609 4.33645 17.2344 6.07014C18.0538 6.94422 18.6805 7.81555 19.1016 8.4676C19.3125 8.79427 19.473 9.06857 19.582 9.26252C19.6366 9.35947 19.6784 9.43688 19.707 9.49103C19.7213 9.51797 19.7325 9.53938 19.7402 9.55451C19.744 9.56183 19.7478 9.5677 19.75 9.57209L19.7539 9.5799L19.7901 9.66486C19.8604 9.86248 19.8453 10.0829 19.7451 10.2703C19.2148 11.2625 18.5817 12.1966 17.8574 13.0574C17.5908 13.3743 17.1177 13.4147 16.8008 13.1483C16.4839 12.8816 16.4424 12.4085 16.709 12.0916C17.2798 11.4133 17.7876 10.6845 18.2266 9.91486C18.1327 9.75115 18.0048 9.53442 17.8418 9.28205C17.4558 8.68431 16.8833 7.88875 16.1406 7.0965C14.6413 5.49721 12.5337 4.00013 9.91701 3.99982H9.91505C9.3843 3.99858 8.85471 4.05957 8.33791 4.18049C7.93468 4.27487 7.53105 4.02408 7.43654 3.62092C7.34213 3.21761 7.5928 2.81396 7.99611 2.71955C8.62561 2.57227 9.27051 2.49939 9.91701 2.5008Z",
|
|
@@ -1138,14 +1311,14 @@ var CloseEyeIcon = () => /* @__PURE__ */ jsxs117(
|
|
|
1138
1311
|
var CloseEyeIcon_default = CloseEyeIcon;
|
|
1139
1312
|
|
|
1140
1313
|
// src/tokens/svg/Input/EyeIcon.tsx
|
|
1141
|
-
import { jsx as
|
|
1314
|
+
import { jsx as jsx187, jsxs as jsxs122 } from "react/jsx-runtime";
|
|
1142
1315
|
|
|
1143
1316
|
// src/tokens/svg/Input/EyeOffIcon.tsx
|
|
1144
|
-
import { jsx as
|
|
1317
|
+
import { jsx as jsx188, jsxs as jsxs123 } from "react/jsx-runtime";
|
|
1145
1318
|
|
|
1146
1319
|
// src/tokens/svg/Input/OpenEyeIcon.tsx
|
|
1147
|
-
import { jsx as
|
|
1148
|
-
var OpenEyeIcon = () => /* @__PURE__ */
|
|
1320
|
+
import { jsx as jsx189, jsxs as jsxs124 } from "react/jsx-runtime";
|
|
1321
|
+
var OpenEyeIcon = () => /* @__PURE__ */ jsxs124(
|
|
1149
1322
|
"svg",
|
|
1150
1323
|
{
|
|
1151
1324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1154,7 +1327,7 @@ var OpenEyeIcon = () => /* @__PURE__ */ jsxs120(
|
|
|
1154
1327
|
viewBox: "0 0 20 20",
|
|
1155
1328
|
fill: "none",
|
|
1156
1329
|
children: [
|
|
1157
|
-
/* @__PURE__ */
|
|
1330
|
+
/* @__PURE__ */ jsx189(
|
|
1158
1331
|
"path",
|
|
1159
1332
|
{
|
|
1160
1333
|
fillRule: "evenodd",
|
|
@@ -1163,7 +1336,7 @@ var OpenEyeIcon = () => /* @__PURE__ */ jsxs120(
|
|
|
1163
1336
|
fill: "currentColor"
|
|
1164
1337
|
}
|
|
1165
1338
|
),
|
|
1166
|
-
/* @__PURE__ */
|
|
1339
|
+
/* @__PURE__ */ jsx189(
|
|
1167
1340
|
"path",
|
|
1168
1341
|
{
|
|
1169
1342
|
fillRule: "evenodd",
|
|
@@ -1178,140 +1351,140 @@ var OpenEyeIcon = () => /* @__PURE__ */ jsxs120(
|
|
|
1178
1351
|
var OpenEyeIcon_default = OpenEyeIcon;
|
|
1179
1352
|
|
|
1180
1353
|
// src/tokens/svg/navigation/ArrowDownCircleIcon.tsx
|
|
1181
|
-
import { jsx as
|
|
1354
|
+
import { jsx as jsx190, jsxs as jsxs125 } from "react/jsx-runtime";
|
|
1182
1355
|
|
|
1183
1356
|
// src/tokens/svg/navigation/ArrowDownIcon.tsx
|
|
1184
|
-
import { jsx as
|
|
1357
|
+
import { jsx as jsx191 } from "react/jsx-runtime";
|
|
1185
1358
|
|
|
1186
1359
|
// src/tokens/svg/navigation/ArrowDownLeftIcon.tsx
|
|
1187
|
-
import { jsx as
|
|
1360
|
+
import { jsx as jsx192 } from "react/jsx-runtime";
|
|
1188
1361
|
|
|
1189
1362
|
// src/tokens/svg/navigation/ArrowDownRightIcon.tsx
|
|
1190
|
-
import { jsx as
|
|
1363
|
+
import { jsx as jsx193 } from "react/jsx-runtime";
|
|
1191
1364
|
|
|
1192
1365
|
// src/tokens/svg/navigation/ArrowLeftCircleIcon.tsx
|
|
1193
|
-
import { jsx as
|
|
1366
|
+
import { jsx as jsx194, jsxs as jsxs126 } from "react/jsx-runtime";
|
|
1194
1367
|
|
|
1195
1368
|
// src/tokens/svg/navigation/ArrowLeftIcon.tsx
|
|
1196
|
-
import { jsx as
|
|
1369
|
+
import { jsx as jsx195 } from "react/jsx-runtime";
|
|
1197
1370
|
|
|
1198
1371
|
// src/tokens/svg/navigation/ArrowRightCircleIcon.tsx
|
|
1199
|
-
import { jsx as
|
|
1372
|
+
import { jsx as jsx196, jsxs as jsxs127 } from "react/jsx-runtime";
|
|
1200
1373
|
|
|
1201
1374
|
// src/tokens/svg/navigation/ArrowRightIcon.tsx
|
|
1202
|
-
import { jsx as
|
|
1375
|
+
import { jsx as jsx197 } from "react/jsx-runtime";
|
|
1203
1376
|
|
|
1204
1377
|
// src/tokens/svg/navigation/ArrowUpCircleIcon.tsx
|
|
1205
|
-
import { jsx as
|
|
1378
|
+
import { jsx as jsx198, jsxs as jsxs128 } from "react/jsx-runtime";
|
|
1206
1379
|
|
|
1207
1380
|
// src/tokens/svg/navigation/ArrowUpIcon.tsx
|
|
1208
|
-
import { jsx as
|
|
1381
|
+
import { jsx as jsx199 } from "react/jsx-runtime";
|
|
1209
1382
|
|
|
1210
1383
|
// src/tokens/svg/navigation/ArrowUpLeftIcon.tsx
|
|
1211
|
-
import { jsx as
|
|
1384
|
+
import { jsx as jsx200 } from "react/jsx-runtime";
|
|
1212
1385
|
|
|
1213
1386
|
// src/tokens/svg/navigation/ArrowUpRightIcon.tsx
|
|
1214
|
-
import { jsx as
|
|
1387
|
+
import { jsx as jsx201 } from "react/jsx-runtime";
|
|
1215
1388
|
|
|
1216
1389
|
// src/tokens/svg/navigation/CompassIcon.tsx
|
|
1217
|
-
import { jsx as
|
|
1390
|
+
import { jsx as jsx202, jsxs as jsxs129 } from "react/jsx-runtime";
|
|
1218
1391
|
|
|
1219
1392
|
// src/tokens/svg/navigation/CornerDownLeftIcon.tsx
|
|
1220
|
-
import { jsx as
|
|
1393
|
+
import { jsx as jsx203 } from "react/jsx-runtime";
|
|
1221
1394
|
|
|
1222
1395
|
// src/tokens/svg/navigation/CornerDownRightIcon.tsx
|
|
1223
|
-
import { jsx as
|
|
1396
|
+
import { jsx as jsx204 } from "react/jsx-runtime";
|
|
1224
1397
|
|
|
1225
1398
|
// src/tokens/svg/navigation/CornerLeftDownIcon.tsx
|
|
1226
|
-
import { jsx as
|
|
1399
|
+
import { jsx as jsx205 } from "react/jsx-runtime";
|
|
1227
1400
|
|
|
1228
1401
|
// src/tokens/svg/navigation/CornerLeftUpIcon.tsx
|
|
1229
|
-
import { jsx as
|
|
1402
|
+
import { jsx as jsx206 } from "react/jsx-runtime";
|
|
1230
1403
|
|
|
1231
1404
|
// src/tokens/svg/navigation/CornerRightDownIcon.tsx
|
|
1232
|
-
import { jsx as
|
|
1405
|
+
import { jsx as jsx207 } from "react/jsx-runtime";
|
|
1233
1406
|
|
|
1234
1407
|
// src/tokens/svg/navigation/CornerRightUpIcon.tsx
|
|
1235
|
-
import { jsx as
|
|
1408
|
+
import { jsx as jsx208 } from "react/jsx-runtime";
|
|
1236
1409
|
|
|
1237
1410
|
// src/tokens/svg/navigation/CornerUpLeftIcon.tsx
|
|
1238
|
-
import { jsx as
|
|
1411
|
+
import { jsx as jsx209 } from "react/jsx-runtime";
|
|
1239
1412
|
|
|
1240
1413
|
// src/tokens/svg/navigation/CornerUpRightIcon.tsx
|
|
1241
|
-
import { jsx as
|
|
1414
|
+
import { jsx as jsx210 } from "react/jsx-runtime";
|
|
1242
1415
|
|
|
1243
1416
|
// src/tokens/svg/navigation/MapIcon.tsx
|
|
1244
|
-
import { jsx as
|
|
1417
|
+
import { jsx as jsx211, jsxs as jsxs130 } from "react/jsx-runtime";
|
|
1245
1418
|
|
|
1246
1419
|
// src/tokens/svg/navigation/MapPinIcon.tsx
|
|
1247
|
-
import { jsx as
|
|
1420
|
+
import { jsx as jsx212, jsxs as jsxs131 } from "react/jsx-runtime";
|
|
1248
1421
|
|
|
1249
1422
|
// src/tokens/svg/navigation/Navigation2Icon.tsx
|
|
1250
|
-
import { jsx as
|
|
1423
|
+
import { jsx as jsx213 } from "react/jsx-runtime";
|
|
1251
1424
|
|
|
1252
1425
|
// src/tokens/svg/navigation/NavigationIcon.tsx
|
|
1253
|
-
import { jsx as
|
|
1426
|
+
import { jsx as jsx214 } from "react/jsx-runtime";
|
|
1254
1427
|
|
|
1255
1428
|
// src/tokens/svg/social/ChromeIcon.tsx
|
|
1256
|
-
import { jsx as
|
|
1429
|
+
import { jsx as jsx215, jsxs as jsxs132 } from "react/jsx-runtime";
|
|
1257
1430
|
|
|
1258
1431
|
// src/tokens/svg/social/CodepenIcon.tsx
|
|
1259
|
-
import { jsx as
|
|
1432
|
+
import { jsx as jsx216, jsxs as jsxs133 } from "react/jsx-runtime";
|
|
1260
1433
|
|
|
1261
1434
|
// src/tokens/svg/social/CodesandboxIcon.tsx
|
|
1262
|
-
import { jsx as
|
|
1435
|
+
import { jsx as jsx217 } from "react/jsx-runtime";
|
|
1263
1436
|
|
|
1264
1437
|
// src/tokens/svg/social/DribbbleIcon.tsx
|
|
1265
|
-
import { jsx as
|
|
1438
|
+
import { jsx as jsx218, jsxs as jsxs134 } from "react/jsx-runtime";
|
|
1266
1439
|
|
|
1267
1440
|
// src/tokens/svg/social/FacebookIcon.tsx
|
|
1268
|
-
import { jsx as
|
|
1441
|
+
import { jsx as jsx219 } from "react/jsx-runtime";
|
|
1269
1442
|
|
|
1270
1443
|
// src/tokens/svg/social/FigmaIcon.tsx
|
|
1271
|
-
import { jsx as
|
|
1444
|
+
import { jsx as jsx220 } from "react/jsx-runtime";
|
|
1272
1445
|
|
|
1273
1446
|
// src/tokens/svg/social/FramerIcon.tsx
|
|
1274
|
-
import { jsx as
|
|
1447
|
+
import { jsx as jsx221 } from "react/jsx-runtime";
|
|
1275
1448
|
|
|
1276
1449
|
// src/tokens/svg/social/GithubIcon.tsx
|
|
1277
|
-
import { jsx as
|
|
1450
|
+
import { jsx as jsx222 } from "react/jsx-runtime";
|
|
1278
1451
|
|
|
1279
1452
|
// src/tokens/svg/social/GitlabIcon.tsx
|
|
1280
|
-
import { jsx as
|
|
1453
|
+
import { jsx as jsx223, jsxs as jsxs135 } from "react/jsx-runtime";
|
|
1281
1454
|
|
|
1282
1455
|
// src/tokens/svg/social/InstagramIcon.tsx
|
|
1283
|
-
import { jsx as
|
|
1456
|
+
import { jsx as jsx224, jsxs as jsxs136 } from "react/jsx-runtime";
|
|
1284
1457
|
|
|
1285
1458
|
// src/tokens/svg/social/LinkedinIcon.tsx
|
|
1286
|
-
import { jsx as
|
|
1459
|
+
import { jsx as jsx225, jsxs as jsxs137 } from "react/jsx-runtime";
|
|
1287
1460
|
|
|
1288
1461
|
// src/tokens/svg/social/RssIcon.tsx
|
|
1289
|
-
import { jsx as
|
|
1462
|
+
import { jsx as jsx226, jsxs as jsxs138 } from "react/jsx-runtime";
|
|
1290
1463
|
|
|
1291
1464
|
// src/tokens/svg/social/SlackIcon.tsx
|
|
1292
|
-
import { jsx as
|
|
1465
|
+
import { jsx as jsx227, jsxs as jsxs139 } from "react/jsx-runtime";
|
|
1293
1466
|
|
|
1294
1467
|
// src/tokens/svg/social/TrelloIcon.tsx
|
|
1295
|
-
import { jsx as
|
|
1468
|
+
import { jsx as jsx228, jsxs as jsxs140 } from "react/jsx-runtime";
|
|
1296
1469
|
|
|
1297
1470
|
// src/tokens/svg/social/TwitchIcon.tsx
|
|
1298
|
-
import { jsx as
|
|
1471
|
+
import { jsx as jsx229, jsxs as jsxs141 } from "react/jsx-runtime";
|
|
1299
1472
|
|
|
1300
1473
|
// src/tokens/svg/social/TwitterIcon.tsx
|
|
1301
|
-
import { jsx as
|
|
1474
|
+
import { jsx as jsx230 } from "react/jsx-runtime";
|
|
1302
1475
|
|
|
1303
1476
|
// src/tokens/svg/social/YoutubeIcon.tsx
|
|
1304
|
-
import { jsx as
|
|
1477
|
+
import { jsx as jsx231, jsxs as jsxs142 } from "react/jsx-runtime";
|
|
1305
1478
|
|
|
1306
1479
|
// src/tokens/svg/ui/AtSignIcon.tsx
|
|
1307
|
-
import { jsx as
|
|
1480
|
+
import { jsx as jsx232, jsxs as jsxs143 } from "react/jsx-runtime";
|
|
1308
1481
|
|
|
1309
1482
|
// src/tokens/svg/ui/CheckCircleIcon.tsx
|
|
1310
|
-
import { jsx as
|
|
1483
|
+
import { jsx as jsx233, jsxs as jsxs144 } from "react/jsx-runtime";
|
|
1311
1484
|
|
|
1312
1485
|
// src/tokens/svg/ui/CheckIcon.tsx
|
|
1313
|
-
import { jsx as
|
|
1314
|
-
var CheckIcon = () => /* @__PURE__ */
|
|
1486
|
+
import { jsx as jsx234 } from "react/jsx-runtime";
|
|
1487
|
+
var CheckIcon = () => /* @__PURE__ */ jsx234(
|
|
1315
1488
|
"svg",
|
|
1316
1489
|
{
|
|
1317
1490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1319,7 +1492,7 @@ var CheckIcon = () => /* @__PURE__ */ jsx229(
|
|
|
1319
1492
|
height: "1em",
|
|
1320
1493
|
viewBox: "0 0 12 9",
|
|
1321
1494
|
fill: "none",
|
|
1322
|
-
children: /* @__PURE__ */
|
|
1495
|
+
children: /* @__PURE__ */ jsx234(
|
|
1323
1496
|
"path",
|
|
1324
1497
|
{
|
|
1325
1498
|
d: "M10.842 0.175637C11.0762 -0.0586118 11.4561 -0.0584793 11.6904 0.175637C11.9247 0.409951 11.9247 0.78976 11.6904 1.02407L4.35759 8.35767C4.24516 8.46996 4.09228 8.53338 3.93338 8.53345C3.77449 8.53336 3.62157 8.46994 3.50916 8.35767L0.175563 5.02407C-0.0585904 4.78985 -0.0584518 4.40995 0.175563 4.17564C0.409855 3.94135 0.789681 3.94139 1.024 4.17564L3.93259 7.08423L10.842 0.175637Z",
|
|
@@ -1331,11 +1504,11 @@ var CheckIcon = () => /* @__PURE__ */ jsx229(
|
|
|
1331
1504
|
var CheckIcon_default = CheckIcon;
|
|
1332
1505
|
|
|
1333
1506
|
// src/tokens/svg/ui/CheckSquareIcon.tsx
|
|
1334
|
-
import { jsx as
|
|
1507
|
+
import { jsx as jsx235, jsxs as jsxs145 } from "react/jsx-runtime";
|
|
1335
1508
|
|
|
1336
1509
|
// src/tokens/svg/ui/ChevronDownIcon.tsx
|
|
1337
|
-
import { jsx as
|
|
1338
|
-
var ChevronDownIcon = () => /* @__PURE__ */
|
|
1510
|
+
import { jsx as jsx236 } from "react/jsx-runtime";
|
|
1511
|
+
var ChevronDownIcon = () => /* @__PURE__ */ jsx236(
|
|
1339
1512
|
"svg",
|
|
1340
1513
|
{
|
|
1341
1514
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1343,7 +1516,7 @@ var ChevronDownIcon = () => /* @__PURE__ */ jsx231(
|
|
|
1343
1516
|
height: "1em",
|
|
1344
1517
|
viewBox: "0 0 20 20",
|
|
1345
1518
|
fill: "none",
|
|
1346
|
-
children: /* @__PURE__ */
|
|
1519
|
+
children: /* @__PURE__ */ jsx236(
|
|
1347
1520
|
"path",
|
|
1348
1521
|
{
|
|
1349
1522
|
d: "M14.4698 6.96967C14.7627 6.67678 15.2374 6.67678 15.5303 6.96967C15.8232 7.26257 15.8232 7.73734 15.5303 8.03022L10.5303 13.0302C10.2375 13.3231 9.76269 13.3231 9.46979 13.0302L4.46979 8.03022C4.1769 7.73732 4.1769 7.26256 4.46979 6.96967C4.76269 6.67678 5.23745 6.67678 5.53034 6.96967L10.0001 11.4394L14.4698 6.96967Z",
|
|
@@ -1355,194 +1528,194 @@ var ChevronDownIcon = () => /* @__PURE__ */ jsx231(
|
|
|
1355
1528
|
var ChevronDownIcon_default = ChevronDownIcon;
|
|
1356
1529
|
|
|
1357
1530
|
// src/tokens/svg/ui/ChevronLeftIcon.tsx
|
|
1358
|
-
import { jsx as
|
|
1531
|
+
import { jsx as jsx237 } from "react/jsx-runtime";
|
|
1359
1532
|
|
|
1360
1533
|
// src/tokens/svg/ui/ChevronRightIcon.tsx
|
|
1361
|
-
import { jsx as
|
|
1534
|
+
import { jsx as jsx238 } from "react/jsx-runtime";
|
|
1362
1535
|
|
|
1363
1536
|
// src/tokens/svg/ui/ChevronUpIcon.tsx
|
|
1364
|
-
import { jsx as
|
|
1537
|
+
import { jsx as jsx239 } from "react/jsx-runtime";
|
|
1365
1538
|
|
|
1366
1539
|
// src/tokens/svg/ui/ChevronsDownIcon.tsx
|
|
1367
|
-
import { jsx as
|
|
1540
|
+
import { jsx as jsx240, jsxs as jsxs146 } from "react/jsx-runtime";
|
|
1368
1541
|
|
|
1369
1542
|
// src/tokens/svg/ui/ChevronsLeftIcon.tsx
|
|
1370
|
-
import { jsx as
|
|
1543
|
+
import { jsx as jsx241, jsxs as jsxs147 } from "react/jsx-runtime";
|
|
1371
1544
|
|
|
1372
1545
|
// src/tokens/svg/ui/ChevronsRightIcon.tsx
|
|
1373
|
-
import { jsx as
|
|
1546
|
+
import { jsx as jsx242, jsxs as jsxs148 } from "react/jsx-runtime";
|
|
1374
1547
|
|
|
1375
1548
|
// src/tokens/svg/ui/ChevronsUpIcon.tsx
|
|
1376
|
-
import { jsx as
|
|
1549
|
+
import { jsx as jsx243, jsxs as jsxs149 } from "react/jsx-runtime";
|
|
1377
1550
|
|
|
1378
1551
|
// src/tokens/svg/ui/CircleIcon.tsx
|
|
1379
|
-
import { jsx as
|
|
1552
|
+
import { jsx as jsx244, jsxs as jsxs150 } from "react/jsx-runtime";
|
|
1380
1553
|
|
|
1381
1554
|
// src/tokens/svg/ui/ColumnsIcon.tsx
|
|
1382
|
-
import { jsx as
|
|
1555
|
+
import { jsx as jsx245 } from "react/jsx-runtime";
|
|
1383
1556
|
|
|
1384
1557
|
// src/tokens/svg/ui/DivideCircleIcon.tsx
|
|
1385
|
-
import { jsx as
|
|
1558
|
+
import { jsx as jsx246, jsxs as jsxs151 } from "react/jsx-runtime";
|
|
1386
1559
|
|
|
1387
1560
|
// src/tokens/svg/ui/DivideIcon.tsx
|
|
1388
|
-
import { jsx as
|
|
1561
|
+
import { jsx as jsx247, jsxs as jsxs152 } from "react/jsx-runtime";
|
|
1389
1562
|
|
|
1390
1563
|
// src/tokens/svg/ui/DivideSquareIcon.tsx
|
|
1391
|
-
import { jsx as
|
|
1564
|
+
import { jsx as jsx248, jsxs as jsxs153 } from "react/jsx-runtime";
|
|
1392
1565
|
|
|
1393
1566
|
// src/tokens/svg/ui/GridIcon.tsx
|
|
1394
|
-
import { jsx as
|
|
1567
|
+
import { jsx as jsx249, jsxs as jsxs154 } from "react/jsx-runtime";
|
|
1395
1568
|
|
|
1396
1569
|
// src/tokens/svg/ui/HashIcon.tsx
|
|
1397
|
-
import { jsx as
|
|
1570
|
+
import { jsx as jsx250 } from "react/jsx-runtime";
|
|
1398
1571
|
|
|
1399
1572
|
// src/tokens/svg/ui/HexagonIcon.tsx
|
|
1400
|
-
import { jsx as
|
|
1573
|
+
import { jsx as jsx251 } from "react/jsx-runtime";
|
|
1401
1574
|
|
|
1402
1575
|
// src/tokens/svg/ui/LayoutIcon.tsx
|
|
1403
|
-
import { jsx as
|
|
1576
|
+
import { jsx as jsx252 } from "react/jsx-runtime";
|
|
1404
1577
|
|
|
1405
1578
|
// src/tokens/svg/ui/ListIcon.tsx
|
|
1406
|
-
import { jsx as
|
|
1579
|
+
import { jsx as jsx253, jsxs as jsxs155 } from "react/jsx-runtime";
|
|
1407
1580
|
|
|
1408
1581
|
// src/tokens/svg/ui/LoaderIcon.tsx
|
|
1409
|
-
import { jsx as
|
|
1582
|
+
import { jsx as jsx254, jsxs as jsxs156 } from "react/jsx-runtime";
|
|
1410
1583
|
|
|
1411
1584
|
// src/tokens/svg/ui/Maximize2Icon.tsx
|
|
1412
|
-
import { jsx as
|
|
1585
|
+
import { jsx as jsx255, jsxs as jsxs157 } from "react/jsx-runtime";
|
|
1413
1586
|
|
|
1414
1587
|
// src/tokens/svg/ui/MaximizeIcon.tsx
|
|
1415
|
-
import { jsx as
|
|
1588
|
+
import { jsx as jsx256, jsxs as jsxs158 } from "react/jsx-runtime";
|
|
1416
1589
|
|
|
1417
1590
|
// src/tokens/svg/ui/MenuIcon.tsx
|
|
1418
|
-
import { jsx as
|
|
1591
|
+
import { jsx as jsx257, jsxs as jsxs159 } from "react/jsx-runtime";
|
|
1419
1592
|
|
|
1420
1593
|
// src/tokens/svg/ui/Minimize2Icon.tsx
|
|
1421
|
-
import { jsx as
|
|
1594
|
+
import { jsx as jsx258, jsxs as jsxs160 } from "react/jsx-runtime";
|
|
1422
1595
|
|
|
1423
1596
|
// src/tokens/svg/ui/MinimizeIcon.tsx
|
|
1424
|
-
import { jsx as
|
|
1597
|
+
import { jsx as jsx259, jsxs as jsxs161 } from "react/jsx-runtime";
|
|
1425
1598
|
|
|
1426
1599
|
// src/tokens/svg/ui/MinusCircleIcon.tsx
|
|
1427
|
-
import { jsx as
|
|
1600
|
+
import { jsx as jsx260, jsxs as jsxs162 } from "react/jsx-runtime";
|
|
1428
1601
|
|
|
1429
1602
|
// src/tokens/svg/ui/MinusIcon.tsx
|
|
1430
|
-
import { jsx as
|
|
1603
|
+
import { jsx as jsx261 } from "react/jsx-runtime";
|
|
1431
1604
|
|
|
1432
1605
|
// src/tokens/svg/ui/MinusSquareIcon.tsx
|
|
1433
|
-
import { jsx as
|
|
1606
|
+
import { jsx as jsx262, jsxs as jsxs163 } from "react/jsx-runtime";
|
|
1434
1607
|
|
|
1435
1608
|
// src/tokens/svg/ui/MoreHorizontalIcon.tsx
|
|
1436
|
-
import { jsx as
|
|
1609
|
+
import { jsx as jsx263, jsxs as jsxs164 } from "react/jsx-runtime";
|
|
1437
1610
|
|
|
1438
1611
|
// src/tokens/svg/ui/MoreVerticalIcon.tsx
|
|
1439
|
-
import { jsx as
|
|
1612
|
+
import { jsx as jsx264, jsxs as jsxs165 } from "react/jsx-runtime";
|
|
1440
1613
|
|
|
1441
1614
|
// src/tokens/svg/ui/OctagonIcon.tsx
|
|
1442
|
-
import { jsx as
|
|
1615
|
+
import { jsx as jsx265, jsxs as jsxs166 } from "react/jsx-runtime";
|
|
1443
1616
|
|
|
1444
1617
|
// src/tokens/svg/ui/PercentIcon.tsx
|
|
1445
|
-
import { jsx as
|
|
1618
|
+
import { jsx as jsx266, jsxs as jsxs167 } from "react/jsx-runtime";
|
|
1446
1619
|
|
|
1447
1620
|
// src/tokens/svg/ui/PlusCircleIcon.tsx
|
|
1448
|
-
import { jsx as
|
|
1621
|
+
import { jsx as jsx267, jsxs as jsxs168 } from "react/jsx-runtime";
|
|
1449
1622
|
|
|
1450
1623
|
// src/tokens/svg/ui/PlusIcon.tsx
|
|
1451
|
-
import { jsx as
|
|
1624
|
+
import { jsx as jsx268 } from "react/jsx-runtime";
|
|
1452
1625
|
|
|
1453
1626
|
// src/tokens/svg/ui/PlusSquareIcon.tsx
|
|
1454
|
-
import { jsx as
|
|
1627
|
+
import { jsx as jsx269, jsxs as jsxs169 } from "react/jsx-runtime";
|
|
1455
1628
|
|
|
1456
1629
|
// src/tokens/svg/ui/SettingsIcon.tsx
|
|
1457
|
-
import { jsx as
|
|
1630
|
+
import { jsx as jsx270, jsxs as jsxs170 } from "react/jsx-runtime";
|
|
1458
1631
|
|
|
1459
1632
|
// src/tokens/svg/ui/SidebarIcon.tsx
|
|
1460
|
-
import { jsx as
|
|
1633
|
+
import { jsx as jsx271 } from "react/jsx-runtime";
|
|
1461
1634
|
|
|
1462
1635
|
// src/tokens/svg/ui/SlashIcon.tsx
|
|
1463
|
-
import { jsx as
|
|
1636
|
+
import { jsx as jsx272, jsxs as jsxs171 } from "react/jsx-runtime";
|
|
1464
1637
|
|
|
1465
1638
|
// src/tokens/svg/ui/SlidersIcon.tsx
|
|
1466
|
-
import { jsx as
|
|
1639
|
+
import { jsx as jsx273, jsxs as jsxs172 } from "react/jsx-runtime";
|
|
1467
1640
|
|
|
1468
1641
|
// src/tokens/svg/ui/SquareIcon.tsx
|
|
1469
|
-
import { jsx as
|
|
1642
|
+
import { jsx as jsx274 } from "react/jsx-runtime";
|
|
1470
1643
|
|
|
1471
1644
|
// src/tokens/svg/ui/ToggleLeftIcon.tsx
|
|
1472
|
-
import { jsx as
|
|
1645
|
+
import { jsx as jsx275, jsxs as jsxs173 } from "react/jsx-runtime";
|
|
1473
1646
|
|
|
1474
1647
|
// src/tokens/svg/ui/ToggleRightIcon.tsx
|
|
1475
|
-
import { jsx as
|
|
1648
|
+
import { jsx as jsx276, jsxs as jsxs174 } from "react/jsx-runtime";
|
|
1476
1649
|
|
|
1477
1650
|
// src/tokens/svg/ui/TriangleIcon.tsx
|
|
1478
|
-
import { jsx as
|
|
1651
|
+
import { jsx as jsx277 } from "react/jsx-runtime";
|
|
1479
1652
|
|
|
1480
1653
|
// src/tokens/svg/ui/XCircleIcon.tsx
|
|
1481
|
-
import { jsx as
|
|
1654
|
+
import { jsx as jsx278, jsxs as jsxs175 } from "react/jsx-runtime";
|
|
1482
1655
|
|
|
1483
1656
|
// src/tokens/svg/ui/XIcon.tsx
|
|
1484
|
-
import { jsx as
|
|
1657
|
+
import { jsx as jsx279 } from "react/jsx-runtime";
|
|
1485
1658
|
|
|
1486
1659
|
// src/tokens/svg/ui/XOctagonIcon.tsx
|
|
1487
|
-
import { jsx as
|
|
1660
|
+
import { jsx as jsx280, jsxs as jsxs176 } from "react/jsx-runtime";
|
|
1488
1661
|
|
|
1489
1662
|
// src/tokens/svg/ui/XSquareIcon.tsx
|
|
1490
|
-
import { jsx as
|
|
1663
|
+
import { jsx as jsx281, jsxs as jsxs177 } from "react/jsx-runtime";
|
|
1491
1664
|
|
|
1492
1665
|
// src/tokens/svg/user/GierIcon.tsx
|
|
1493
|
-
import { jsx as
|
|
1666
|
+
import { jsx as jsx282, jsxs as jsxs178 } from "react/jsx-runtime";
|
|
1494
1667
|
|
|
1495
1668
|
// src/tokens/svg/user/KeyIcon.tsx
|
|
1496
|
-
import { jsx as
|
|
1669
|
+
import { jsx as jsx283 } from "react/jsx-runtime";
|
|
1497
1670
|
|
|
1498
1671
|
// src/tokens/svg/user/LockIcon.tsx
|
|
1499
|
-
import { jsx as
|
|
1672
|
+
import { jsx as jsx284 } from "react/jsx-runtime";
|
|
1500
1673
|
|
|
1501
1674
|
// src/tokens/svg/user/LogInIcon.tsx
|
|
1502
|
-
import { jsx as
|
|
1675
|
+
import { jsx as jsx285, jsxs as jsxs179 } from "react/jsx-runtime";
|
|
1503
1676
|
|
|
1504
1677
|
// src/tokens/svg/user/LogOutIcon.tsx
|
|
1505
|
-
import { jsx as
|
|
1678
|
+
import { jsx as jsx286, jsxs as jsxs180 } from "react/jsx-runtime";
|
|
1506
1679
|
|
|
1507
1680
|
// src/tokens/svg/user/MailIcon.tsx
|
|
1508
|
-
import { jsx as
|
|
1681
|
+
import { jsx as jsx287 } from "react/jsx-runtime";
|
|
1509
1682
|
|
|
1510
1683
|
// src/tokens/svg/user/ProfileIcon.tsx
|
|
1511
|
-
import { jsx as
|
|
1684
|
+
import { jsx as jsx288, jsxs as jsxs181 } from "react/jsx-runtime";
|
|
1512
1685
|
|
|
1513
1686
|
// src/tokens/svg/user/UnlockIcon.tsx
|
|
1514
|
-
import { jsx as
|
|
1687
|
+
import { jsx as jsx289 } from "react/jsx-runtime";
|
|
1515
1688
|
|
|
1516
1689
|
// src/tokens/svg/user/UserCheckIcon.tsx
|
|
1517
|
-
import { jsx as
|
|
1690
|
+
import { jsx as jsx290, jsxs as jsxs182 } from "react/jsx-runtime";
|
|
1518
1691
|
|
|
1519
1692
|
// src/tokens/svg/user/UserIcon.tsx
|
|
1520
|
-
import { jsx as
|
|
1693
|
+
import { jsx as jsx291, jsxs as jsxs183 } from "react/jsx-runtime";
|
|
1521
1694
|
|
|
1522
1695
|
// src/tokens/svg/user/UserMinusIcon.tsx
|
|
1523
|
-
import { jsx as
|
|
1696
|
+
import { jsx as jsx292, jsxs as jsxs184 } from "react/jsx-runtime";
|
|
1524
1697
|
|
|
1525
1698
|
// src/tokens/svg/user/UserPlusIcon.tsx
|
|
1526
|
-
import { jsx as
|
|
1699
|
+
import { jsx as jsx293, jsxs as jsxs185 } from "react/jsx-runtime";
|
|
1527
1700
|
|
|
1528
1701
|
// src/tokens/svg/user/UserXIcon.tsx
|
|
1529
|
-
import { jsx as
|
|
1702
|
+
import { jsx as jsx294, jsxs as jsxs186 } from "react/jsx-runtime";
|
|
1530
1703
|
|
|
1531
1704
|
// src/tokens/svg/user/UsersIcon.tsx
|
|
1532
|
-
import { jsx as
|
|
1705
|
+
import { jsx as jsx295, jsxs as jsxs187 } from "react/jsx-runtime";
|
|
1533
1706
|
|
|
1534
1707
|
// src/tokens/svg/validation/AlertCircleIcon.tsx
|
|
1535
|
-
import { jsx as
|
|
1708
|
+
import { jsx as jsx296, jsxs as jsxs188 } from "react/jsx-runtime";
|
|
1536
1709
|
|
|
1537
1710
|
// src/tokens/svg/validation/AlertOctagonIcon.tsx
|
|
1538
|
-
import { jsx as
|
|
1711
|
+
import { jsx as jsx297, jsxs as jsxs189 } from "react/jsx-runtime";
|
|
1539
1712
|
|
|
1540
1713
|
// src/tokens/svg/validation/AlertTriangleIcon.tsx
|
|
1541
|
-
import { jsx as
|
|
1714
|
+
import { jsx as jsx298, jsxs as jsxs190 } from "react/jsx-runtime";
|
|
1542
1715
|
|
|
1543
1716
|
// src/tokens/svg/validation/ErrorIcon.tsx
|
|
1544
|
-
import { jsx as
|
|
1545
|
-
var ErrorIcon = () => /* @__PURE__ */
|
|
1717
|
+
import { jsx as jsx299, jsxs as jsxs191 } from "react/jsx-runtime";
|
|
1718
|
+
var ErrorIcon = () => /* @__PURE__ */ jsxs191(
|
|
1546
1719
|
"svg",
|
|
1547
1720
|
{
|
|
1548
1721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1551,15 +1724,15 @@ var ErrorIcon = () => /* @__PURE__ */ jsxs187(
|
|
|
1551
1724
|
viewBox: "0 0 16 16",
|
|
1552
1725
|
fill: "none",
|
|
1553
1726
|
children: [
|
|
1554
|
-
/* @__PURE__ */
|
|
1555
|
-
/* @__PURE__ */
|
|
1727
|
+
/* @__PURE__ */ jsxs191("g", { clipPath: "url(#clip0_1196_9603)", children: [
|
|
1728
|
+
/* @__PURE__ */ jsx299(
|
|
1556
1729
|
"path",
|
|
1557
1730
|
{
|
|
1558
1731
|
d: "M9.57588 5.57559C9.81019 5.34127 10.19 5.34127 10.4243 5.57559C10.6586 5.8099 10.6586 6.18971 10.4243 6.42402L8.84854 7.9998L10.4243 9.57559C10.6586 9.8099 10.6586 10.1897 10.4243 10.424C10.19 10.6583 9.81019 10.6583 9.57588 10.424L8.0001 8.84824L6.42432 10.424C6.19 10.6583 5.81019 10.6583 5.57588 10.424C5.34156 10.1897 5.34156 9.8099 5.57588 9.57559L7.15166 7.9998L5.57588 6.42402C5.34156 6.18971 5.34156 5.8099 5.57588 5.57559C5.81019 5.34127 6.19 5.34127 6.42432 5.57559L8.0001 7.15137L9.57588 5.57559Z",
|
|
1559
1732
|
fill: "currentColor"
|
|
1560
1733
|
}
|
|
1561
1734
|
),
|
|
1562
|
-
/* @__PURE__ */
|
|
1735
|
+
/* @__PURE__ */ jsx299(
|
|
1563
1736
|
"path",
|
|
1564
1737
|
{
|
|
1565
1738
|
fillRule: "evenodd",
|
|
@@ -1569,18 +1742,18 @@ var ErrorIcon = () => /* @__PURE__ */ jsxs187(
|
|
|
1569
1742
|
}
|
|
1570
1743
|
)
|
|
1571
1744
|
] }),
|
|
1572
|
-
/* @__PURE__ */
|
|
1745
|
+
/* @__PURE__ */ jsx299("defs", { children: /* @__PURE__ */ jsx299("clipPath", { id: "clip0_1196_9603", children: /* @__PURE__ */ jsx299("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
1573
1746
|
]
|
|
1574
1747
|
}
|
|
1575
1748
|
);
|
|
1576
1749
|
var ErrorIcon_default = ErrorIcon;
|
|
1577
1750
|
|
|
1578
1751
|
// src/tokens/svg/validation/HelpCircleIcon.tsx
|
|
1579
|
-
import { jsx as
|
|
1752
|
+
import { jsx as jsx300, jsxs as jsxs192 } from "react/jsx-runtime";
|
|
1580
1753
|
|
|
1581
1754
|
// src/tokens/svg/validation/InfoIcon.tsx
|
|
1582
|
-
import { jsx as
|
|
1583
|
-
var InfoIcon = () => /* @__PURE__ */
|
|
1755
|
+
import { jsx as jsx301, jsxs as jsxs193 } from "react/jsx-runtime";
|
|
1756
|
+
var InfoIcon = () => /* @__PURE__ */ jsxs193(
|
|
1584
1757
|
"svg",
|
|
1585
1758
|
{
|
|
1586
1759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1589,22 +1762,22 @@ var InfoIcon = () => /* @__PURE__ */ jsxs189(
|
|
|
1589
1762
|
viewBox: "0 0 16 16",
|
|
1590
1763
|
fill: "none",
|
|
1591
1764
|
children: [
|
|
1592
|
-
/* @__PURE__ */
|
|
1593
|
-
/* @__PURE__ */
|
|
1765
|
+
/* @__PURE__ */ jsxs193("g", { clipPath: "url(#clip0_1188_11261)", children: [
|
|
1766
|
+
/* @__PURE__ */ jsx301(
|
|
1594
1767
|
"path",
|
|
1595
1768
|
{
|
|
1596
1769
|
d: "M8.00156 7.39999C8.33293 7.39999 8.60156 7.66862 8.60156 7.99999V10.6664C8.60156 10.9978 8.33293 11.2664 8.00156 11.2664C7.67019 11.2664 7.40156 10.9978 7.40156 10.6664V7.99999C7.40156 7.66862 7.67019 7.39999 8.00156 7.39999Z",
|
|
1597
1770
|
fill: "currentColor"
|
|
1598
1771
|
}
|
|
1599
1772
|
),
|
|
1600
|
-
/* @__PURE__ */
|
|
1773
|
+
/* @__PURE__ */ jsx301(
|
|
1601
1774
|
"path",
|
|
1602
1775
|
{
|
|
1603
1776
|
d: "M8.00859 4.73358C8.3398 4.73378 8.60859 5.00233 8.60859 5.33358C8.60849 5.66474 8.33973 5.93338 8.00859 5.93358H8.00156C7.67026 5.93358 7.40167 5.66486 7.40156 5.33358C7.40156 5.00221 7.67019 4.73358 8.00156 4.73358H8.00859Z",
|
|
1604
1777
|
fill: "currentColor"
|
|
1605
1778
|
}
|
|
1606
1779
|
),
|
|
1607
|
-
/* @__PURE__ */
|
|
1780
|
+
/* @__PURE__ */ jsx301(
|
|
1608
1781
|
"path",
|
|
1609
1782
|
{
|
|
1610
1783
|
fillRule: "evenodd",
|
|
@@ -1614,15 +1787,15 @@ var InfoIcon = () => /* @__PURE__ */ jsxs189(
|
|
|
1614
1787
|
}
|
|
1615
1788
|
)
|
|
1616
1789
|
] }),
|
|
1617
|
-
/* @__PURE__ */
|
|
1790
|
+
/* @__PURE__ */ jsx301("defs", { children: /* @__PURE__ */ jsx301("clipPath", { id: "clip0_1188_11261", children: /* @__PURE__ */ jsx301("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
1618
1791
|
]
|
|
1619
1792
|
}
|
|
1620
1793
|
);
|
|
1621
1794
|
var InfoIcon_default = InfoIcon;
|
|
1622
1795
|
|
|
1623
1796
|
// src/tokens/svg/validation/SuccessIcon.tsx
|
|
1624
|
-
import { jsx as
|
|
1625
|
-
var SuccessIcon = () => /* @__PURE__ */
|
|
1797
|
+
import { jsx as jsx302 } from "react/jsx-runtime";
|
|
1798
|
+
var SuccessIcon = () => /* @__PURE__ */ jsx302(
|
|
1626
1799
|
"svg",
|
|
1627
1800
|
{
|
|
1628
1801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1630,7 +1803,7 @@ var SuccessIcon = () => /* @__PURE__ */ jsx297(
|
|
|
1630
1803
|
height: "1em",
|
|
1631
1804
|
viewBox: "0 0 16 16",
|
|
1632
1805
|
fill: "none",
|
|
1633
|
-
children: /* @__PURE__ */
|
|
1806
|
+
children: /* @__PURE__ */ jsx302(
|
|
1634
1807
|
"path",
|
|
1635
1808
|
{
|
|
1636
1809
|
d: "M12.9084 3.57597C13.1426 3.34172 13.5225 3.34185 13.7568 3.57597C13.9911 3.81028 13.9911 4.19009 13.7568 4.4244L6.424 11.758C6.31157 11.8703 6.15869 11.9337 5.99978 11.9338C5.8409 11.9337 5.68798 11.8703 5.57556 11.758L2.24197 8.4244C2.00782 8.19018 2.00795 7.81028 2.24197 7.57597C2.47626 7.34167 2.85609 7.34172 3.09041 7.57597L5.999 10.4846L12.9084 3.57597Z",
|
|
@@ -1642,7 +1815,7 @@ var SuccessIcon = () => /* @__PURE__ */ jsx297(
|
|
|
1642
1815
|
var SuccessIcon_default = SuccessIcon;
|
|
1643
1816
|
|
|
1644
1817
|
// src/components/CheckBox/CheckBox.tsx
|
|
1645
|
-
import { jsx as
|
|
1818
|
+
import { jsx as jsx303, jsxs as jsxs194 } from "react/jsx-runtime";
|
|
1646
1819
|
var CheckBox = (props) => {
|
|
1647
1820
|
const {
|
|
1648
1821
|
colorNamespace = "xplat",
|
|
@@ -1667,8 +1840,8 @@ var CheckBox = (props) => {
|
|
|
1667
1840
|
const checkedClasses = `checked ${mainColor}`;
|
|
1668
1841
|
const disabledClasses = "disabled";
|
|
1669
1842
|
const boxClasses = disabled ? disabledClasses : checked ? checkedClasses : uncheckedClasses;
|
|
1670
|
-
return /* @__PURE__ */
|
|
1671
|
-
/* @__PURE__ */
|
|
1843
|
+
return /* @__PURE__ */ jsxs194("label", { className: clsx_default("lib-xplat-checkbox", className), children: [
|
|
1844
|
+
/* @__PURE__ */ jsx303(
|
|
1672
1845
|
"input",
|
|
1673
1846
|
{
|
|
1674
1847
|
type: "checkbox",
|
|
@@ -1678,15 +1851,15 @@ var CheckBox = (props) => {
|
|
|
1678
1851
|
...rest
|
|
1679
1852
|
}
|
|
1680
1853
|
),
|
|
1681
|
-
/* @__PURE__ */
|
|
1682
|
-
label && /* @__PURE__ */
|
|
1854
|
+
/* @__PURE__ */ jsx303("span", { className: clsx_default("checkbox", boxClasses), children: checked && /* @__PURE__ */ jsx303(CheckIcon_default, {}) }),
|
|
1855
|
+
label && /* @__PURE__ */ jsx303("span", { className: "label", children: label })
|
|
1683
1856
|
] });
|
|
1684
1857
|
};
|
|
1685
1858
|
CheckBox.displayName = "CheckBox";
|
|
1686
1859
|
var CheckBox_default = CheckBox;
|
|
1687
1860
|
|
|
1688
1861
|
// src/components/Chip/Chip.tsx
|
|
1689
|
-
import { jsx as
|
|
1862
|
+
import { jsx as jsx304 } from "react/jsx-runtime";
|
|
1690
1863
|
var Chip = (props) => {
|
|
1691
1864
|
const {
|
|
1692
1865
|
children,
|
|
@@ -1701,29 +1874,29 @@ var Chip = (props) => {
|
|
|
1701
1874
|
color,
|
|
1702
1875
|
colorDepth ?? 500
|
|
1703
1876
|
);
|
|
1704
|
-
return /* @__PURE__ */
|
|
1877
|
+
return /* @__PURE__ */ jsx304("div", { className: clsx_default("lib-xplat-chip", type, colorClass, className), children });
|
|
1705
1878
|
};
|
|
1706
1879
|
Chip.displayName = "Chip";
|
|
1707
1880
|
var Chip_default = Chip;
|
|
1708
1881
|
|
|
1709
1882
|
// src/components/DatePicker/InputDatePicker/index.tsx
|
|
1710
|
-
import
|
|
1883
|
+
import React5 from "react";
|
|
1711
1884
|
|
|
1712
1885
|
// src/components/Input/Input.tsx
|
|
1713
|
-
import
|
|
1886
|
+
import React3 from "react";
|
|
1714
1887
|
|
|
1715
1888
|
// src/components/Input/InputValidations.tsx
|
|
1716
|
-
import { jsx as
|
|
1889
|
+
import { jsx as jsx305, jsxs as jsxs195 } from "react/jsx-runtime";
|
|
1717
1890
|
var InputValidations = (props) => {
|
|
1718
1891
|
const { message, status = "default" } = props;
|
|
1719
|
-
return /* @__PURE__ */
|
|
1720
|
-
/* @__PURE__ */
|
|
1721
|
-
status === "default" && /* @__PURE__ */
|
|
1722
|
-
status === "success" && /* @__PURE__ */
|
|
1723
|
-
status === "warning" && /* @__PURE__ */
|
|
1724
|
-
status === "error" && /* @__PURE__ */
|
|
1892
|
+
return /* @__PURE__ */ jsxs195("div", { className: clsx_default("lib-xplat-input-validation", status), children: [
|
|
1893
|
+
/* @__PURE__ */ jsxs195("div", { className: "icon", children: [
|
|
1894
|
+
status === "default" && /* @__PURE__ */ jsx305(InfoIcon_default, {}),
|
|
1895
|
+
status === "success" && /* @__PURE__ */ jsx305(SuccessIcon_default, {}),
|
|
1896
|
+
status === "warning" && /* @__PURE__ */ jsx305(InfoIcon_default, {}),
|
|
1897
|
+
status === "error" && /* @__PURE__ */ jsx305(ErrorIcon_default, {})
|
|
1725
1898
|
] }),
|
|
1726
|
-
/* @__PURE__ */
|
|
1899
|
+
/* @__PURE__ */ jsx305("div", { className: "message", children: message })
|
|
1727
1900
|
] });
|
|
1728
1901
|
};
|
|
1729
1902
|
InputValidations.displayName = "InputValidations";
|
|
@@ -1764,7 +1937,7 @@ var handleTelBackspace = (prevValue, currValue) => {
|
|
|
1764
1937
|
};
|
|
1765
1938
|
|
|
1766
1939
|
// src/components/Input/Input.tsx
|
|
1767
|
-
import { jsx as
|
|
1940
|
+
import { jsx as jsx306, jsxs as jsxs196 } from "react/jsx-runtime";
|
|
1768
1941
|
import { createElement } from "react";
|
|
1769
1942
|
var formatValue = (type, value) => {
|
|
1770
1943
|
if (value === null || value === void 0) return "";
|
|
@@ -1813,7 +1986,7 @@ var parseValue = (type, value) => {
|
|
|
1813
1986
|
return value;
|
|
1814
1987
|
}
|
|
1815
1988
|
};
|
|
1816
|
-
var Input =
|
|
1989
|
+
var Input = React3.forwardRef((props, ref) => {
|
|
1817
1990
|
const {
|
|
1818
1991
|
value,
|
|
1819
1992
|
onChange,
|
|
@@ -1839,13 +2012,13 @@ var Input = React2.forwardRef((props, ref) => {
|
|
|
1839
2012
|
onChange(event);
|
|
1840
2013
|
}
|
|
1841
2014
|
};
|
|
1842
|
-
return /* @__PURE__ */
|
|
1843
|
-
/* @__PURE__ */
|
|
2015
|
+
return /* @__PURE__ */ jsxs196("div", { className: clsx_default("lib-xplat-input-wrap", className), children: [
|
|
2016
|
+
/* @__PURE__ */ jsxs196(
|
|
1844
2017
|
"div",
|
|
1845
2018
|
{
|
|
1846
2019
|
className: clsx_default("lib-xplat-input", disabled ? "disabled" : void 0),
|
|
1847
2020
|
children: [
|
|
1848
|
-
/* @__PURE__ */
|
|
2021
|
+
/* @__PURE__ */ jsx306(
|
|
1849
2022
|
"input",
|
|
1850
2023
|
{
|
|
1851
2024
|
...inputProps,
|
|
@@ -1856,11 +2029,11 @@ var Input = React2.forwardRef((props, ref) => {
|
|
|
1856
2029
|
onChange: handleChange
|
|
1857
2030
|
}
|
|
1858
2031
|
),
|
|
1859
|
-
suffix && /* @__PURE__ */
|
|
2032
|
+
suffix && /* @__PURE__ */ jsx306("div", { className: "suffix", children: suffix })
|
|
1860
2033
|
]
|
|
1861
2034
|
}
|
|
1862
2035
|
),
|
|
1863
|
-
validations && /* @__PURE__ */
|
|
2036
|
+
validations && /* @__PURE__ */ jsx306("div", { className: "lib-xplat-input-validation-wrap", children: validations?.map((validation, idx) => /* @__PURE__ */ createElement(
|
|
1864
2037
|
InputValidations_default,
|
|
1865
2038
|
{
|
|
1866
2039
|
...validation,
|
|
@@ -1873,20 +2046,20 @@ Input.displayName = "Input";
|
|
|
1873
2046
|
var Input_default = Input;
|
|
1874
2047
|
|
|
1875
2048
|
// src/components/Input/PasswordInput/PasswordInput.tsx
|
|
1876
|
-
import
|
|
1877
|
-
import { jsx as
|
|
1878
|
-
var PasswordInput =
|
|
2049
|
+
import React4 from "react";
|
|
2050
|
+
import { jsx as jsx307 } from "react/jsx-runtime";
|
|
2051
|
+
var PasswordInput = React4.forwardRef(
|
|
1879
2052
|
(props, ref) => {
|
|
1880
2053
|
const { reg: _reg, ...inputProps } = props;
|
|
1881
|
-
const [isView, setIsView] =
|
|
2054
|
+
const [isView, setIsView] = React4.useState(false);
|
|
1882
2055
|
const handleChangeView = () => {
|
|
1883
2056
|
setIsView((prev) => !prev);
|
|
1884
2057
|
};
|
|
1885
|
-
return /* @__PURE__ */
|
|
2058
|
+
return /* @__PURE__ */ jsx307(
|
|
1886
2059
|
Input_default,
|
|
1887
2060
|
{
|
|
1888
2061
|
...inputProps,
|
|
1889
|
-
suffix: /* @__PURE__ */
|
|
2062
|
+
suffix: /* @__PURE__ */ jsx307("div", { className: "wrapper pointer", onClick: handleChangeView, children: isView ? /* @__PURE__ */ jsx307(OpenEyeIcon_default, {}) : /* @__PURE__ */ jsx307(CloseEyeIcon_default, {}) }),
|
|
1890
2063
|
type: isView ? "text" : "password",
|
|
1891
2064
|
ref
|
|
1892
2065
|
}
|
|
@@ -1899,8 +2072,8 @@ var PasswordInput_default = PasswordInput;
|
|
|
1899
2072
|
// src/components/DatePicker/InputDatePicker/index.tsx
|
|
1900
2073
|
import DatePicker from "react-datepicker";
|
|
1901
2074
|
import "react-datepicker/dist/react-datepicker.css";
|
|
1902
|
-
import { jsx as
|
|
1903
|
-
var Suffix = () => /* @__PURE__ */
|
|
2075
|
+
import { jsx as jsx308 } from "react/jsx-runtime";
|
|
2076
|
+
var Suffix = () => /* @__PURE__ */ jsx308("div", { children: /* @__PURE__ */ jsx308(CalenderIcon_default, {}) });
|
|
1904
2077
|
var InputDatePicker = (props) => {
|
|
1905
2078
|
const { value, onChange, disabled, ...rest } = props;
|
|
1906
2079
|
const handleChange = (date) => {
|
|
@@ -1914,22 +2087,22 @@ var InputDatePicker = (props) => {
|
|
|
1914
2087
|
const d = String(date.getDate()).padStart(2, "0");
|
|
1915
2088
|
return `${y}/${m}/${d}`;
|
|
1916
2089
|
};
|
|
1917
|
-
const CustomInput =
|
|
2090
|
+
const CustomInput = React5.forwardRef(({ onClick }, _ref) => /* @__PURE__ */ jsx308("div", { onClick, children: /* @__PURE__ */ jsx308(
|
|
1918
2091
|
Input_default,
|
|
1919
2092
|
{
|
|
1920
2093
|
value: formatDate(value),
|
|
1921
|
-
suffix: /* @__PURE__ */
|
|
2094
|
+
suffix: /* @__PURE__ */ jsx308(Suffix, {}),
|
|
1922
2095
|
disabled
|
|
1923
2096
|
}
|
|
1924
2097
|
) }));
|
|
1925
2098
|
CustomInput.displayName = "InputDatePickerCustomInput";
|
|
1926
|
-
return /* @__PURE__ */
|
|
2099
|
+
return /* @__PURE__ */ jsx308("div", { className: "lib-xplat-datepicker", children: /* @__PURE__ */ jsx308(
|
|
1927
2100
|
DatePicker,
|
|
1928
2101
|
{
|
|
1929
2102
|
selected: value,
|
|
1930
2103
|
onChange: handleChange,
|
|
1931
2104
|
...rest,
|
|
1932
|
-
customInput: /* @__PURE__ */
|
|
2105
|
+
customInput: /* @__PURE__ */ jsx308(CustomInput, {}),
|
|
1933
2106
|
dateFormat: "YYYY/MM/dd"
|
|
1934
2107
|
}
|
|
1935
2108
|
) });
|
|
@@ -1938,18 +2111,18 @@ InputDatePicker.displayName = "InputDatePicker";
|
|
|
1938
2111
|
var InputDatePicker_default = InputDatePicker;
|
|
1939
2112
|
|
|
1940
2113
|
// src/components/DatePicker/PopupPicker/index.tsx
|
|
1941
|
-
import
|
|
2114
|
+
import React7 from "react";
|
|
1942
2115
|
|
|
1943
2116
|
// src/components/Modal/Modal.tsx
|
|
1944
|
-
import
|
|
2117
|
+
import React6 from "react";
|
|
1945
2118
|
import { createPortal } from "react-dom";
|
|
1946
|
-
import { jsx as
|
|
2119
|
+
import { jsx as jsx309 } from "react/jsx-runtime";
|
|
1947
2120
|
var ANIMATION_DURATION_MS = 200;
|
|
1948
2121
|
var Modal = (props) => {
|
|
1949
2122
|
const { isOpen, onClose, children } = props;
|
|
1950
|
-
const [mounted, setMounted] =
|
|
1951
|
-
const [visible, setVisible] =
|
|
1952
|
-
|
|
2123
|
+
const [mounted, setMounted] = React6.useState(false);
|
|
2124
|
+
const [visible, setVisible] = React6.useState(false);
|
|
2125
|
+
React6.useEffect(() => {
|
|
1953
2126
|
if (isOpen) {
|
|
1954
2127
|
setMounted(true);
|
|
1955
2128
|
const t2 = setTimeout(() => setVisible(true), 1);
|
|
@@ -1963,15 +2136,17 @@ var Modal = (props) => {
|
|
|
1963
2136
|
if (!mounted) return null;
|
|
1964
2137
|
const stateClass = visible ? "enter" : "exit";
|
|
1965
2138
|
return createPortal(
|
|
1966
|
-
/* @__PURE__ */
|
|
2139
|
+
/* @__PURE__ */ jsx309(
|
|
1967
2140
|
"div",
|
|
1968
2141
|
{
|
|
1969
2142
|
className: clsx_default("lib-xplat-modal", "dim", stateClass),
|
|
1970
2143
|
onClick: onClose,
|
|
1971
|
-
children: /* @__PURE__ */
|
|
2144
|
+
children: /* @__PURE__ */ jsx309(
|
|
1972
2145
|
"div",
|
|
1973
2146
|
{
|
|
1974
2147
|
className: clsx_default("lib-xplat-modal", "modal-box", stateClass),
|
|
2148
|
+
role: "dialog",
|
|
2149
|
+
"aria-modal": "true",
|
|
1975
2150
|
onClick: (e) => e.stopPropagation(),
|
|
1976
2151
|
children
|
|
1977
2152
|
}
|
|
@@ -1987,23 +2162,23 @@ var Modal_default = Modal;
|
|
|
1987
2162
|
// src/components/DatePicker/SingleDatePicker/index.tsx
|
|
1988
2163
|
import DatePicker2 from "react-datepicker";
|
|
1989
2164
|
import "react-datepicker/dist/react-datepicker.css";
|
|
1990
|
-
import { jsx as
|
|
2165
|
+
import { jsx as jsx310 } from "react/jsx-runtime";
|
|
1991
2166
|
var SingleDatePicker = (props) => {
|
|
1992
2167
|
const { value, onChange, ...rest } = props;
|
|
1993
2168
|
const handleChange = (date) => {
|
|
1994
2169
|
if (Array.isArray(date)) return;
|
|
1995
2170
|
onChange?.(date);
|
|
1996
2171
|
};
|
|
1997
|
-
return /* @__PURE__ */
|
|
2172
|
+
return /* @__PURE__ */ jsx310("div", { className: "lib-xplat-datepicker", children: /* @__PURE__ */ jsx310(DatePicker2, { selected: value, onChange: handleChange, inline: true, ...rest }) });
|
|
1998
2173
|
};
|
|
1999
2174
|
SingleDatePicker.displayName = "SingleDatePicker";
|
|
2000
2175
|
var SingleDatePicker_default = SingleDatePicker;
|
|
2001
2176
|
|
|
2002
2177
|
// src/components/DatePicker/PopupPicker/index.tsx
|
|
2003
|
-
import { jsx as
|
|
2178
|
+
import { jsx as jsx311, jsxs as jsxs197 } from "react/jsx-runtime";
|
|
2004
2179
|
var PopupPicker = (props) => {
|
|
2005
2180
|
const { component, type } = props;
|
|
2006
|
-
const [isOpen, setIsOpen] =
|
|
2181
|
+
const [isOpen, setIsOpen] = React7.useState(false);
|
|
2007
2182
|
const handleClick = () => setIsOpen(true);
|
|
2008
2183
|
const handleClose = () => setIsOpen(false);
|
|
2009
2184
|
const handleSingleChange = (date) => {
|
|
@@ -2011,11 +2186,11 @@ var PopupPicker = (props) => {
|
|
|
2011
2186
|
props.onChange?.(date);
|
|
2012
2187
|
handleClose();
|
|
2013
2188
|
};
|
|
2014
|
-
return /* @__PURE__ */
|
|
2015
|
-
|
|
2016
|
-
/* @__PURE__ */
|
|
2017
|
-
/* @__PURE__ */
|
|
2018
|
-
type === "single" && /* @__PURE__ */
|
|
2189
|
+
return /* @__PURE__ */ jsxs197("div", { className: "lib-xplat-popup-datepicker", children: [
|
|
2190
|
+
React7.cloneElement(component, { onClick: handleClick }),
|
|
2191
|
+
/* @__PURE__ */ jsx311(Modal_default, { isOpen, onClose: handleClose, children: /* @__PURE__ */ jsxs197("div", { className: "lib-xplat-popup-datepicker-card", children: [
|
|
2192
|
+
/* @__PURE__ */ jsxs197("div", { className: "popup-datepicker-content", children: [
|
|
2193
|
+
type === "single" && /* @__PURE__ */ jsx311(
|
|
2019
2194
|
SingleDatePicker_default,
|
|
2020
2195
|
{
|
|
2021
2196
|
value: props.value,
|
|
@@ -2024,7 +2199,7 @@ var PopupPicker = (props) => {
|
|
|
2024
2199
|
maxDate: props.maxDate
|
|
2025
2200
|
}
|
|
2026
2201
|
),
|
|
2027
|
-
type === "range" && /* @__PURE__ */
|
|
2202
|
+
type === "range" && /* @__PURE__ */ jsx311(
|
|
2028
2203
|
RangePicker_default,
|
|
2029
2204
|
{
|
|
2030
2205
|
startDate: props.startDate,
|
|
@@ -2035,8 +2210,8 @@ var PopupPicker = (props) => {
|
|
|
2035
2210
|
}
|
|
2036
2211
|
)
|
|
2037
2212
|
] }),
|
|
2038
|
-
/* @__PURE__ */
|
|
2039
|
-
/* @__PURE__ */
|
|
2213
|
+
/* @__PURE__ */ jsxs197("div", { className: "popup-datepicker-footer", children: [
|
|
2214
|
+
/* @__PURE__ */ jsx311(
|
|
2040
2215
|
Button_default,
|
|
2041
2216
|
{
|
|
2042
2217
|
type: "secondary",
|
|
@@ -2046,7 +2221,7 @@ var PopupPicker = (props) => {
|
|
|
2046
2221
|
children: "\uCDE8\uC18C"
|
|
2047
2222
|
}
|
|
2048
2223
|
),
|
|
2049
|
-
/* @__PURE__ */
|
|
2224
|
+
/* @__PURE__ */ jsx311(Button_default, { type: "primary", color: "blue", onClick: handleClose, children: "\uC801\uC6A9" })
|
|
2050
2225
|
] })
|
|
2051
2226
|
] }) })
|
|
2052
2227
|
] });
|
|
@@ -2055,13 +2230,13 @@ PopupPicker.displayName = "PopupPicker";
|
|
|
2055
2230
|
var PopupPicker_default = PopupPicker;
|
|
2056
2231
|
|
|
2057
2232
|
// src/components/DatePicker/RangePicker/index.tsx
|
|
2058
|
-
import { jsx as
|
|
2233
|
+
import { jsx as jsx312, jsxs as jsxs198 } from "react/jsx-runtime";
|
|
2059
2234
|
var RangePicker = (props) => {
|
|
2060
2235
|
const { startDate, endDate, onChange, minDate, maxDate } = props;
|
|
2061
|
-
return /* @__PURE__ */
|
|
2062
|
-
/* @__PURE__ */
|
|
2063
|
-
/* @__PURE__ */
|
|
2064
|
-
/* @__PURE__ */
|
|
2236
|
+
return /* @__PURE__ */ jsxs198("div", { className: "lib-xplat-range-datepicker", children: [
|
|
2237
|
+
/* @__PURE__ */ jsxs198("div", { className: "lib-xplat-range-datepicker-from", children: [
|
|
2238
|
+
/* @__PURE__ */ jsx312("span", { className: "lib-xplat-range-datepicker-label", children: "\uC2DC\uC791" }),
|
|
2239
|
+
/* @__PURE__ */ jsx312(
|
|
2065
2240
|
SingleDatePicker_default,
|
|
2066
2241
|
{
|
|
2067
2242
|
value: startDate,
|
|
@@ -2071,9 +2246,9 @@ var RangePicker = (props) => {
|
|
|
2071
2246
|
}
|
|
2072
2247
|
)
|
|
2073
2248
|
] }),
|
|
2074
|
-
/* @__PURE__ */
|
|
2075
|
-
/* @__PURE__ */
|
|
2076
|
-
/* @__PURE__ */
|
|
2249
|
+
/* @__PURE__ */ jsxs198("div", { className: "lib-xplat-range-datepicker-to", children: [
|
|
2250
|
+
/* @__PURE__ */ jsx312("span", { className: "lib-xplat-range-datepicker-label", children: "\uC885\uB8CC" }),
|
|
2251
|
+
/* @__PURE__ */ jsx312(
|
|
2077
2252
|
SingleDatePicker_default,
|
|
2078
2253
|
{
|
|
2079
2254
|
value: endDate,
|
|
@@ -2088,17 +2263,33 @@ var RangePicker = (props) => {
|
|
|
2088
2263
|
RangePicker.displayName = "RangePicker";
|
|
2089
2264
|
var RangePicker_default = RangePicker;
|
|
2090
2265
|
|
|
2266
|
+
// src/components/Divider/Divider.tsx
|
|
2267
|
+
import { jsx as jsx313 } from "react/jsx-runtime";
|
|
2268
|
+
var Divider = (props) => {
|
|
2269
|
+
const { orientation = "horizontal", className } = props;
|
|
2270
|
+
return /* @__PURE__ */ jsx313(
|
|
2271
|
+
"div",
|
|
2272
|
+
{
|
|
2273
|
+
className: clsx_default("lib-xplat-divider", orientation, className),
|
|
2274
|
+
role: "separator",
|
|
2275
|
+
"aria-orientation": orientation
|
|
2276
|
+
}
|
|
2277
|
+
);
|
|
2278
|
+
};
|
|
2279
|
+
Divider.displayName = "Divider";
|
|
2280
|
+
var Divider_default = Divider;
|
|
2281
|
+
|
|
2091
2282
|
// src/components/Select/Select.tsx
|
|
2092
|
-
import
|
|
2283
|
+
import React12 from "react";
|
|
2093
2284
|
|
|
2094
2285
|
// src/tokens/hooks/useAutoPosition.ts
|
|
2095
|
-
import
|
|
2286
|
+
import React8 from "react";
|
|
2096
2287
|
var useAutoPosition = (triggerRef, popRef, enabled = true) => {
|
|
2097
|
-
const [position, setPosition] =
|
|
2288
|
+
const [position, setPosition] = React8.useState({
|
|
2098
2289
|
position: {},
|
|
2099
2290
|
direction: "bottom"
|
|
2100
2291
|
});
|
|
2101
|
-
const calculatePosition =
|
|
2292
|
+
const calculatePosition = React8.useCallback(() => {
|
|
2102
2293
|
if (!triggerRef.current || !popRef.current) return;
|
|
2103
2294
|
const triggerRect = triggerRef.current.getBoundingClientRect();
|
|
2104
2295
|
const popRect = popRef.current.getBoundingClientRect();
|
|
@@ -2120,7 +2311,7 @@ var useAutoPosition = (triggerRef, popRef, enabled = true) => {
|
|
|
2120
2311
|
direction
|
|
2121
2312
|
});
|
|
2122
2313
|
}, [triggerRef, popRef]);
|
|
2123
|
-
|
|
2314
|
+
React8.useEffect(() => {
|
|
2124
2315
|
calculatePosition();
|
|
2125
2316
|
window.addEventListener("resize", calculatePosition);
|
|
2126
2317
|
return () => window.removeEventListener("resize", calculatePosition);
|
|
@@ -2130,9 +2321,9 @@ var useAutoPosition = (triggerRef, popRef, enabled = true) => {
|
|
|
2130
2321
|
var useAutoPosition_default = useAutoPosition;
|
|
2131
2322
|
|
|
2132
2323
|
// src/tokens/hooks/useClickOutside.ts
|
|
2133
|
-
import
|
|
2324
|
+
import React9 from "react";
|
|
2134
2325
|
var useClickOutside = (refs, handler, enabled = true) => {
|
|
2135
|
-
|
|
2326
|
+
React9.useEffect(() => {
|
|
2136
2327
|
if (!enabled) return;
|
|
2137
2328
|
const refArray = Array.isArray(refs) ? refs : [refs];
|
|
2138
2329
|
const listener = (event) => {
|
|
@@ -2155,16 +2346,16 @@ var useClickOutside = (refs, handler, enabled = true) => {
|
|
|
2155
2346
|
var useClickOutside_default = useClickOutside;
|
|
2156
2347
|
|
|
2157
2348
|
// src/components/Select/context.ts
|
|
2158
|
-
import
|
|
2159
|
-
var SelectContext =
|
|
2349
|
+
import React10 from "react";
|
|
2350
|
+
var SelectContext = React10.createContext(null);
|
|
2160
2351
|
var context_default = SelectContext;
|
|
2161
2352
|
|
|
2162
2353
|
// src/components/Select/SelectItem.tsx
|
|
2163
|
-
import
|
|
2164
|
-
import { jsx as
|
|
2354
|
+
import React11 from "react";
|
|
2355
|
+
import { jsx as jsx314 } from "react/jsx-runtime";
|
|
2165
2356
|
var SelectItem = (props) => {
|
|
2166
2357
|
const { children, value, onClick, disabled = false, className } = props;
|
|
2167
|
-
const ctx =
|
|
2358
|
+
const ctx = React11.useContext(context_default);
|
|
2168
2359
|
const handleClick = (e) => {
|
|
2169
2360
|
e.preventDefault();
|
|
2170
2361
|
e.stopPropagation();
|
|
@@ -2173,7 +2364,7 @@ var SelectItem = (props) => {
|
|
|
2173
2364
|
ctx?.close();
|
|
2174
2365
|
onClick?.();
|
|
2175
2366
|
};
|
|
2176
|
-
return /* @__PURE__ */
|
|
2367
|
+
return /* @__PURE__ */ jsx314(
|
|
2177
2368
|
"div",
|
|
2178
2369
|
{
|
|
2179
2370
|
className: clsx_default("select-item", disabled && "disabled", className),
|
|
@@ -2194,7 +2385,7 @@ SelectItem.displayName = "Select.Item";
|
|
|
2194
2385
|
var SelectItem_default = SelectItem;
|
|
2195
2386
|
|
|
2196
2387
|
// src/components/Select/Select.tsx
|
|
2197
|
-
import { jsx as
|
|
2388
|
+
import { jsx as jsx315, jsxs as jsxs199 } from "react/jsx-runtime";
|
|
2198
2389
|
var ANIMATION_DURATION_MS2 = 200;
|
|
2199
2390
|
var SelectRoot = (props) => {
|
|
2200
2391
|
const {
|
|
@@ -2204,19 +2395,19 @@ var SelectRoot = (props) => {
|
|
|
2204
2395
|
disabled = false,
|
|
2205
2396
|
error = false
|
|
2206
2397
|
} = props;
|
|
2207
|
-
const itemChildren =
|
|
2208
|
-
(child) =>
|
|
2398
|
+
const itemChildren = React12.Children.toArray(children).filter(
|
|
2399
|
+
(child) => React12.isValidElement(child) && child.type === SelectItem_default
|
|
2209
2400
|
);
|
|
2210
|
-
const [isOpen, setOpen] =
|
|
2211
|
-
const [selectedLabel, setSelectedLabel] =
|
|
2212
|
-
const triggerRef =
|
|
2213
|
-
const contentRef =
|
|
2214
|
-
const [mounted, setMounted] =
|
|
2215
|
-
const [visible, setVisible] =
|
|
2216
|
-
|
|
2401
|
+
const [isOpen, setOpen] = React12.useState(false);
|
|
2402
|
+
const [selectedLabel, setSelectedLabel] = React12.useState(null);
|
|
2403
|
+
const triggerRef = React12.useRef(null);
|
|
2404
|
+
const contentRef = React12.useRef(null);
|
|
2405
|
+
const [mounted, setMounted] = React12.useState(false);
|
|
2406
|
+
const [visible, setVisible] = React12.useState(false);
|
|
2407
|
+
React12.useEffect(() => {
|
|
2217
2408
|
if (disabled && isOpen) setOpen(false);
|
|
2218
2409
|
}, [disabled, isOpen]);
|
|
2219
|
-
|
|
2410
|
+
React12.useEffect(() => {
|
|
2220
2411
|
if (isOpen) {
|
|
2221
2412
|
setMounted(true);
|
|
2222
2413
|
const t2 = setTimeout(() => setVisible(true), 1);
|
|
@@ -2226,19 +2417,19 @@ var SelectRoot = (props) => {
|
|
|
2226
2417
|
const t = setTimeout(() => setMounted(false), ANIMATION_DURATION_MS2);
|
|
2227
2418
|
return () => clearTimeout(t);
|
|
2228
2419
|
}, [isOpen]);
|
|
2229
|
-
const open =
|
|
2230
|
-
const close =
|
|
2231
|
-
const toggle =
|
|
2420
|
+
const open = React12.useCallback(() => setOpen(true), []);
|
|
2421
|
+
const close = React12.useCallback(() => setOpen(false), []);
|
|
2422
|
+
const toggle = React12.useCallback(() => setOpen((prev) => !prev), []);
|
|
2232
2423
|
useClickOutside_default([contentRef, triggerRef], close, isOpen);
|
|
2233
2424
|
const position = useAutoPosition_default(triggerRef, contentRef, mounted);
|
|
2234
|
-
const setSelected =
|
|
2425
|
+
const setSelected = React12.useCallback(
|
|
2235
2426
|
(label, value2) => {
|
|
2236
2427
|
setSelectedLabel(label);
|
|
2237
2428
|
onChange?.(value2, label);
|
|
2238
2429
|
},
|
|
2239
2430
|
[onChange]
|
|
2240
2431
|
);
|
|
2241
|
-
const value =
|
|
2432
|
+
const value = React12.useMemo(
|
|
2242
2433
|
() => ({
|
|
2243
2434
|
isOpen,
|
|
2244
2435
|
mounted,
|
|
@@ -2259,7 +2450,7 @@ var SelectRoot = (props) => {
|
|
|
2259
2450
|
if (disabled) return;
|
|
2260
2451
|
toggle();
|
|
2261
2452
|
};
|
|
2262
|
-
return /* @__PURE__ */
|
|
2453
|
+
return /* @__PURE__ */ jsx315(context_default.Provider, { value, children: /* @__PURE__ */ jsxs199(
|
|
2263
2454
|
"div",
|
|
2264
2455
|
{
|
|
2265
2456
|
className: clsx_default(
|
|
@@ -2269,7 +2460,7 @@ var SelectRoot = (props) => {
|
|
|
2269
2460
|
mounted && "is-open"
|
|
2270
2461
|
),
|
|
2271
2462
|
children: [
|
|
2272
|
-
/* @__PURE__ */
|
|
2463
|
+
/* @__PURE__ */ jsxs199(
|
|
2273
2464
|
"div",
|
|
2274
2465
|
{
|
|
2275
2466
|
ref: triggerRef,
|
|
@@ -2293,7 +2484,7 @@ var SelectRoot = (props) => {
|
|
|
2293
2484
|
}
|
|
2294
2485
|
},
|
|
2295
2486
|
children: [
|
|
2296
|
-
/* @__PURE__ */
|
|
2487
|
+
/* @__PURE__ */ jsx315(
|
|
2297
2488
|
"span",
|
|
2298
2489
|
{
|
|
2299
2490
|
className: clsx_default(
|
|
@@ -2303,18 +2494,18 @@ var SelectRoot = (props) => {
|
|
|
2303
2494
|
children: selectedLabel ?? placeholder
|
|
2304
2495
|
}
|
|
2305
2496
|
),
|
|
2306
|
-
/* @__PURE__ */
|
|
2497
|
+
/* @__PURE__ */ jsx315(
|
|
2307
2498
|
"span",
|
|
2308
2499
|
{
|
|
2309
2500
|
className: clsx_default("select-trigger-icon", isOpen && "open"),
|
|
2310
2501
|
"aria-hidden": true,
|
|
2311
|
-
children: /* @__PURE__ */
|
|
2502
|
+
children: /* @__PURE__ */ jsx315(ChevronDownIcon_default, {})
|
|
2312
2503
|
}
|
|
2313
2504
|
)
|
|
2314
2505
|
]
|
|
2315
2506
|
}
|
|
2316
2507
|
),
|
|
2317
|
-
mounted && /* @__PURE__ */
|
|
2508
|
+
mounted && /* @__PURE__ */ jsx315(
|
|
2318
2509
|
"div",
|
|
2319
2510
|
{
|
|
2320
2511
|
className: clsx_default("select-content", position.direction, stateClass),
|
|
@@ -2335,10 +2526,10 @@ var Select = Object.assign(SelectRoot, {
|
|
|
2335
2526
|
var Select_default = Select;
|
|
2336
2527
|
|
|
2337
2528
|
// src/components/HtmlTypeWriter/HtmlTypeWriter.tsx
|
|
2338
|
-
import
|
|
2529
|
+
import React14 from "react";
|
|
2339
2530
|
|
|
2340
2531
|
// src/components/HtmlTypeWriter/utils.ts
|
|
2341
|
-
import
|
|
2532
|
+
import React13 from "react";
|
|
2342
2533
|
var voidTags = /* @__PURE__ */ new Set([
|
|
2343
2534
|
"br",
|
|
2344
2535
|
"img",
|
|
@@ -2406,40 +2597,40 @@ function convertNodeToReactWithRange(node, typedLen, rangeMap) {
|
|
|
2406
2597
|
props[attr.name] = attr.value;
|
|
2407
2598
|
});
|
|
2408
2599
|
if (voidTags.has(tag)) {
|
|
2409
|
-
return
|
|
2600
|
+
return React13.createElement(tag, props);
|
|
2410
2601
|
}
|
|
2411
2602
|
const children = Array.from(element.childNodes).map((child) => convertNodeToReactWithRange(child, typedLen, rangeMap)).filter((n) => n != null);
|
|
2412
|
-
return
|
|
2603
|
+
return React13.createElement(tag, props, ...children);
|
|
2413
2604
|
}
|
|
2414
2605
|
function htmlToReactProgressive(root, typedLen, rangeMap) {
|
|
2415
2606
|
const nodes = Array.from(root.childNodes).map((child, idx) => {
|
|
2416
2607
|
const node = convertNodeToReactWithRange(child, typedLen, rangeMap);
|
|
2417
|
-
return node == null ? null :
|
|
2608
|
+
return node == null ? null : React13.createElement(React13.Fragment, { key: idx }, node);
|
|
2418
2609
|
}).filter(Boolean);
|
|
2419
2610
|
return nodes.length === 0 ? null : nodes;
|
|
2420
2611
|
}
|
|
2421
2612
|
|
|
2422
2613
|
// src/components/HtmlTypeWriter/HtmlTypeWriter.tsx
|
|
2423
|
-
import { jsx as
|
|
2614
|
+
import { jsx as jsx316 } from "react/jsx-runtime";
|
|
2424
2615
|
var HtmlTypeWriter = ({
|
|
2425
2616
|
html,
|
|
2426
2617
|
duration = 20,
|
|
2427
2618
|
onDone,
|
|
2428
2619
|
onChange
|
|
2429
2620
|
}) => {
|
|
2430
|
-
const [typedLen, setTypedLen] =
|
|
2431
|
-
const doneCalledRef =
|
|
2432
|
-
const { doc, rangeMap, totalLength } =
|
|
2621
|
+
const [typedLen, setTypedLen] = React14.useState(0);
|
|
2622
|
+
const doneCalledRef = React14.useRef(false);
|
|
2623
|
+
const { doc, rangeMap, totalLength } = React14.useMemo(() => {
|
|
2433
2624
|
const decoded = decodeHtmlEntities(html);
|
|
2434
2625
|
const doc2 = new DOMParser().parseFromString(decoded, "text/html");
|
|
2435
2626
|
const { rangeMap: rangeMap2, totalLength: totalLength2 } = buildRangeMap(doc2.body);
|
|
2436
2627
|
return { doc: doc2, rangeMap: rangeMap2, totalLength: totalLength2 };
|
|
2437
2628
|
}, [html]);
|
|
2438
|
-
|
|
2629
|
+
React14.useEffect(() => {
|
|
2439
2630
|
setTypedLen(0);
|
|
2440
2631
|
doneCalledRef.current = false;
|
|
2441
2632
|
}, [html]);
|
|
2442
|
-
|
|
2633
|
+
React14.useEffect(() => {
|
|
2443
2634
|
if (!totalLength) return;
|
|
2444
2635
|
if (typedLen >= totalLength) return;
|
|
2445
2636
|
const timer = window.setInterval(() => {
|
|
@@ -2447,36 +2638,42 @@ var HtmlTypeWriter = ({
|
|
|
2447
2638
|
}, duration);
|
|
2448
2639
|
return () => window.clearInterval(timer);
|
|
2449
2640
|
}, [typedLen, totalLength, duration]);
|
|
2450
|
-
|
|
2641
|
+
React14.useEffect(() => {
|
|
2451
2642
|
if (typedLen > 0 && typedLen < totalLength) {
|
|
2452
2643
|
onChange?.();
|
|
2453
2644
|
}
|
|
2454
2645
|
}, [typedLen, totalLength, onChange]);
|
|
2455
|
-
|
|
2646
|
+
React14.useEffect(() => {
|
|
2456
2647
|
if (typedLen === totalLength && totalLength > 0 && !doneCalledRef.current) {
|
|
2457
2648
|
doneCalledRef.current = true;
|
|
2458
2649
|
onDone?.();
|
|
2459
2650
|
}
|
|
2460
2651
|
}, [typedLen, totalLength, onDone]);
|
|
2461
|
-
const parsed =
|
|
2652
|
+
const parsed = React14.useMemo(
|
|
2462
2653
|
() => htmlToReactProgressive(doc.body, typedLen, rangeMap),
|
|
2463
2654
|
[doc.body, typedLen, rangeMap]
|
|
2464
2655
|
);
|
|
2465
|
-
return /* @__PURE__ */
|
|
2656
|
+
return /* @__PURE__ */ jsx316("div", { className: "lib-xplat-htmlTypewriter", children: parsed });
|
|
2466
2657
|
};
|
|
2467
2658
|
HtmlTypeWriter.displayName = "HtmlTypeWriter";
|
|
2468
2659
|
var HtmlTypeWriter_default = HtmlTypeWriter;
|
|
2469
2660
|
|
|
2470
2661
|
// src/components/ImageSelector/ImageSelector.tsx
|
|
2471
|
-
import
|
|
2472
|
-
import { jsx as
|
|
2662
|
+
import React15 from "react";
|
|
2663
|
+
import { jsx as jsx317, jsxs as jsxs200 } from "react/jsx-runtime";
|
|
2473
2664
|
var ImageSelector = (props) => {
|
|
2474
2665
|
const { value, label, onChange } = props;
|
|
2475
|
-
const previewUrl =
|
|
2476
|
-
|
|
2477
|
-
|
|
2666
|
+
const [previewUrl, setPreviewUrl] = React15.useState();
|
|
2667
|
+
React15.useEffect(() => {
|
|
2668
|
+
if (!value) {
|
|
2669
|
+
setPreviewUrl(void 0);
|
|
2670
|
+
return;
|
|
2671
|
+
}
|
|
2672
|
+
const url = URL.createObjectURL(value);
|
|
2673
|
+
setPreviewUrl(url);
|
|
2674
|
+
return () => URL.revokeObjectURL(url);
|
|
2478
2675
|
}, [value]);
|
|
2479
|
-
const inputRef =
|
|
2676
|
+
const inputRef = React15.useRef(null);
|
|
2480
2677
|
const handleFileChange = (e) => {
|
|
2481
2678
|
const selectedFile = e.target.files?.[0];
|
|
2482
2679
|
if (selectedFile) {
|
|
@@ -2489,8 +2686,8 @@ var ImageSelector = (props) => {
|
|
|
2489
2686
|
const handleOpenFileDialog = () => {
|
|
2490
2687
|
inputRef.current?.click();
|
|
2491
2688
|
};
|
|
2492
|
-
return /* @__PURE__ */
|
|
2493
|
-
/* @__PURE__ */
|
|
2689
|
+
return /* @__PURE__ */ jsxs200("div", { className: `lib-xplat-imageselector${value ? "" : " none-value"}`, children: [
|
|
2690
|
+
/* @__PURE__ */ jsx317(
|
|
2494
2691
|
"input",
|
|
2495
2692
|
{
|
|
2496
2693
|
type: "file",
|
|
@@ -2500,31 +2697,120 @@ var ImageSelector = (props) => {
|
|
|
2500
2697
|
ref: inputRef
|
|
2501
2698
|
}
|
|
2502
2699
|
),
|
|
2503
|
-
value && /* @__PURE__ */
|
|
2504
|
-
/* @__PURE__ */
|
|
2505
|
-
/* @__PURE__ */
|
|
2700
|
+
value && /* @__PURE__ */ jsxs200("div", { className: "action-bar", children: [
|
|
2701
|
+
/* @__PURE__ */ jsx317("div", { className: "icon-wrapper", onClick: handleOpenFileDialog, children: /* @__PURE__ */ jsx317(UploadIcon_default, {}) }),
|
|
2702
|
+
/* @__PURE__ */ jsx317("div", { className: "icon-wrapper", onClick: handleDeleteFile, children: /* @__PURE__ */ jsx317(DeleteIcon_default, {}) })
|
|
2506
2703
|
] }),
|
|
2507
|
-
/* @__PURE__ */
|
|
2508
|
-
/* @__PURE__ */
|
|
2509
|
-
/* @__PURE__ */
|
|
2704
|
+
/* @__PURE__ */ jsx317("div", { className: "content", children: previewUrl ? /* @__PURE__ */ jsx317("img", { src: previewUrl, alt: "preview" }) : /* @__PURE__ */ jsxs200("div", { className: "skeleton", onClick: handleOpenFileDialog, children: [
|
|
2705
|
+
/* @__PURE__ */ jsx317("div", { className: "icon-wrapper", children: /* @__PURE__ */ jsx317(ImageIcon_default, {}) }),
|
|
2706
|
+
/* @__PURE__ */ jsx317("div", { className: "label", children: label || "\uC774\uBBF8\uC9C0 \uCD94\uAC00\uD558\uAE30" })
|
|
2510
2707
|
] }) })
|
|
2511
2708
|
] });
|
|
2512
2709
|
};
|
|
2513
2710
|
ImageSelector.displayName = "ImageSelector";
|
|
2514
2711
|
var ImageSelector_default = ImageSelector;
|
|
2515
2712
|
|
|
2713
|
+
// src/components/Pagination/Pagination.tsx
|
|
2714
|
+
import { jsx as jsx318, jsxs as jsxs201 } from "react/jsx-runtime";
|
|
2715
|
+
function getPageRange(current, totalPages, siblingCount) {
|
|
2716
|
+
const totalNumbers = siblingCount * 2 + 5;
|
|
2717
|
+
if (totalPages <= totalNumbers) {
|
|
2718
|
+
return Array.from({ length: totalPages }, (_, i) => i + 1);
|
|
2719
|
+
}
|
|
2720
|
+
const leftSibling = Math.max(current - siblingCount, 1);
|
|
2721
|
+
const rightSibling = Math.min(current + siblingCount, totalPages);
|
|
2722
|
+
const showLeftDots = leftSibling > 3;
|
|
2723
|
+
const showRightDots = rightSibling < totalPages - 2;
|
|
2724
|
+
if (!showLeftDots && showRightDots) {
|
|
2725
|
+
const leftCount = siblingCount * 2 + 3;
|
|
2726
|
+
const leftRange = Array.from({ length: leftCount }, (_, i) => i + 1);
|
|
2727
|
+
return [...leftRange, "...", totalPages];
|
|
2728
|
+
}
|
|
2729
|
+
if (showLeftDots && !showRightDots) {
|
|
2730
|
+
const rightCount = siblingCount * 2 + 3;
|
|
2731
|
+
const rightRange = Array.from({ length: rightCount }, (_, i) => totalPages - rightCount + i + 1);
|
|
2732
|
+
return [1, "...", ...rightRange];
|
|
2733
|
+
}
|
|
2734
|
+
const middleRange = Array.from(
|
|
2735
|
+
{ length: rightSibling - leftSibling + 1 },
|
|
2736
|
+
(_, i) => leftSibling + i
|
|
2737
|
+
);
|
|
2738
|
+
return [1, "...", ...middleRange, "...", totalPages];
|
|
2739
|
+
}
|
|
2740
|
+
var Pagination = (props) => {
|
|
2741
|
+
const {
|
|
2742
|
+
current,
|
|
2743
|
+
total,
|
|
2744
|
+
pageSize = 10,
|
|
2745
|
+
siblingCount = 1,
|
|
2746
|
+
onChange,
|
|
2747
|
+
colorNamespace = "xplat",
|
|
2748
|
+
color = "blue",
|
|
2749
|
+
colorDepth,
|
|
2750
|
+
className
|
|
2751
|
+
} = props;
|
|
2752
|
+
const colorClass = getColorClass(
|
|
2753
|
+
colorNamespace,
|
|
2754
|
+
color,
|
|
2755
|
+
colorDepth ?? 500
|
|
2756
|
+
);
|
|
2757
|
+
const totalPages = Math.max(1, Math.ceil(total / pageSize));
|
|
2758
|
+
const pages = getPageRange(current, totalPages, siblingCount);
|
|
2759
|
+
const handleClick = (page) => {
|
|
2760
|
+
if (page !== current && page >= 1 && page <= totalPages) {
|
|
2761
|
+
onChange?.(page);
|
|
2762
|
+
}
|
|
2763
|
+
};
|
|
2764
|
+
return /* @__PURE__ */ jsxs201("nav", { className: clsx_default("lib-xplat-pagination", className), "aria-label": "\uD398\uC774\uC9C0 \uB124\uBE44\uAC8C\uC774\uC158", children: [
|
|
2765
|
+
/* @__PURE__ */ jsx318(
|
|
2766
|
+
"button",
|
|
2767
|
+
{
|
|
2768
|
+
className: "page-btn prev",
|
|
2769
|
+
disabled: current <= 1,
|
|
2770
|
+
onClick: () => handleClick(current - 1),
|
|
2771
|
+
"aria-label": "\uC774\uC804 \uD398\uC774\uC9C0",
|
|
2772
|
+
children: /* @__PURE__ */ jsx318("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: "16", height: "16", children: /* @__PURE__ */ jsx318("path", { d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" }) })
|
|
2773
|
+
}
|
|
2774
|
+
),
|
|
2775
|
+
pages.map(
|
|
2776
|
+
(page, i) => page === "..." ? /* @__PURE__ */ jsx318("span", { className: "dots", children: "..." }, `dots-${i}`) : /* @__PURE__ */ jsx318(
|
|
2777
|
+
"button",
|
|
2778
|
+
{
|
|
2779
|
+
className: clsx_default("page-btn", colorClass, { active: page === current }),
|
|
2780
|
+
onClick: () => handleClick(page),
|
|
2781
|
+
"aria-current": page === current ? "page" : void 0,
|
|
2782
|
+
children: page
|
|
2783
|
+
},
|
|
2784
|
+
page
|
|
2785
|
+
)
|
|
2786
|
+
),
|
|
2787
|
+
/* @__PURE__ */ jsx318(
|
|
2788
|
+
"button",
|
|
2789
|
+
{
|
|
2790
|
+
className: "page-btn next",
|
|
2791
|
+
disabled: current >= totalPages,
|
|
2792
|
+
onClick: () => handleClick(current + 1),
|
|
2793
|
+
"aria-label": "\uB2E4\uC74C \uD398\uC774\uC9C0",
|
|
2794
|
+
children: /* @__PURE__ */ jsx318("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: "16", height: "16", children: /* @__PURE__ */ jsx318("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) })
|
|
2795
|
+
}
|
|
2796
|
+
)
|
|
2797
|
+
] });
|
|
2798
|
+
};
|
|
2799
|
+
Pagination.displayName = "Pagination";
|
|
2800
|
+
var Pagination_default = Pagination;
|
|
2801
|
+
|
|
2516
2802
|
// src/components/PopOver/PopOver.tsx
|
|
2517
|
-
import
|
|
2518
|
-
import { jsx as
|
|
2803
|
+
import React16 from "react";
|
|
2804
|
+
import { jsx as jsx319, jsxs as jsxs202 } from "react/jsx-runtime";
|
|
2519
2805
|
var PopOver = (props) => {
|
|
2520
2806
|
const { children, isOpen, onClose, PopOverEl } = props;
|
|
2521
|
-
const popRef =
|
|
2522
|
-
const triggerRef =
|
|
2523
|
-
const [localOpen, setLocalOpen] =
|
|
2524
|
-
const [eventTrigger, setEventTrigger] =
|
|
2807
|
+
const popRef = React16.useRef(null);
|
|
2808
|
+
const triggerRef = React16.useRef(null);
|
|
2809
|
+
const [localOpen, setLocalOpen] = React16.useState(false);
|
|
2810
|
+
const [eventTrigger, setEventTrigger] = React16.useState(false);
|
|
2525
2811
|
useClickOutside_default([popRef, triggerRef], onClose, isOpen);
|
|
2526
2812
|
const position = useAutoPosition_default(triggerRef, popRef, localOpen);
|
|
2527
|
-
|
|
2813
|
+
React16.useEffect(() => {
|
|
2528
2814
|
if (isOpen) {
|
|
2529
2815
|
setLocalOpen(isOpen);
|
|
2530
2816
|
setTimeout(() => {
|
|
@@ -2537,7 +2823,7 @@ var PopOver = (props) => {
|
|
|
2537
2823
|
}, 200);
|
|
2538
2824
|
}
|
|
2539
2825
|
}, [isOpen]);
|
|
2540
|
-
return /* @__PURE__ */
|
|
2826
|
+
return /* @__PURE__ */ jsxs202(
|
|
2541
2827
|
"div",
|
|
2542
2828
|
{
|
|
2543
2829
|
className: "lib-xplat-pop-over",
|
|
@@ -2547,7 +2833,7 @@ var PopOver = (props) => {
|
|
|
2547
2833
|
},
|
|
2548
2834
|
children: [
|
|
2549
2835
|
children,
|
|
2550
|
-
localOpen && /* @__PURE__ */
|
|
2836
|
+
localOpen && /* @__PURE__ */ jsx319(
|
|
2551
2837
|
"div",
|
|
2552
2838
|
{
|
|
2553
2839
|
className: clsx_default(
|
|
@@ -2569,18 +2855,64 @@ var PopOver = (props) => {
|
|
|
2569
2855
|
PopOver.displayName = "PopOver";
|
|
2570
2856
|
var PopOver_default = PopOver;
|
|
2571
2857
|
|
|
2858
|
+
// src/components/Progress/Progress.tsx
|
|
2859
|
+
import { jsx as jsx320, jsxs as jsxs203 } from "react/jsx-runtime";
|
|
2860
|
+
var Progress = (props) => {
|
|
2861
|
+
const {
|
|
2862
|
+
value,
|
|
2863
|
+
max = 100,
|
|
2864
|
+
size = "md",
|
|
2865
|
+
showLabel = false,
|
|
2866
|
+
colorNamespace = "xplat",
|
|
2867
|
+
color = "blue",
|
|
2868
|
+
colorDepth,
|
|
2869
|
+
className
|
|
2870
|
+
} = props;
|
|
2871
|
+
const colorClass = getColorClass(
|
|
2872
|
+
colorNamespace,
|
|
2873
|
+
color,
|
|
2874
|
+
colorDepth ?? 500
|
|
2875
|
+
);
|
|
2876
|
+
const percentage = Math.min(100, Math.max(0, value / max * 100));
|
|
2877
|
+
return /* @__PURE__ */ jsxs203("div", { className: clsx_default("lib-xplat-progress", size, className), children: [
|
|
2878
|
+
/* @__PURE__ */ jsx320(
|
|
2879
|
+
"div",
|
|
2880
|
+
{
|
|
2881
|
+
className: "track",
|
|
2882
|
+
role: "progressbar",
|
|
2883
|
+
"aria-valuenow": value,
|
|
2884
|
+
"aria-valuemin": 0,
|
|
2885
|
+
"aria-valuemax": max,
|
|
2886
|
+
children: /* @__PURE__ */ jsx320(
|
|
2887
|
+
"div",
|
|
2888
|
+
{
|
|
2889
|
+
className: clsx_default("bar", colorClass),
|
|
2890
|
+
style: { width: `${percentage}%` }
|
|
2891
|
+
}
|
|
2892
|
+
)
|
|
2893
|
+
}
|
|
2894
|
+
),
|
|
2895
|
+
showLabel && /* @__PURE__ */ jsxs203("span", { className: "label", children: [
|
|
2896
|
+
Math.round(percentage),
|
|
2897
|
+
"%"
|
|
2898
|
+
] })
|
|
2899
|
+
] });
|
|
2900
|
+
};
|
|
2901
|
+
Progress.displayName = "Progress";
|
|
2902
|
+
var Progress_default = Progress;
|
|
2903
|
+
|
|
2572
2904
|
// src/components/Radio/RadioGroupContext.tsx
|
|
2573
|
-
import
|
|
2574
|
-
var RadioGroupContext =
|
|
2905
|
+
import React17 from "react";
|
|
2906
|
+
var RadioGroupContext = React17.createContext(
|
|
2575
2907
|
null
|
|
2576
2908
|
);
|
|
2577
2909
|
var useRadioGroupContext = () => {
|
|
2578
|
-
return
|
|
2910
|
+
return React17.useContext(RadioGroupContext);
|
|
2579
2911
|
};
|
|
2580
2912
|
var RadioGroupContext_default = RadioGroupContext;
|
|
2581
2913
|
|
|
2582
2914
|
// src/components/Radio/Radio.tsx
|
|
2583
|
-
import { jsx as
|
|
2915
|
+
import { jsx as jsx321, jsxs as jsxs204 } from "react/jsx-runtime";
|
|
2584
2916
|
var Radio = (props) => {
|
|
2585
2917
|
const {
|
|
2586
2918
|
label,
|
|
@@ -2604,7 +2936,7 @@ var Radio = (props) => {
|
|
|
2604
2936
|
color,
|
|
2605
2937
|
colorDepth ?? 500
|
|
2606
2938
|
);
|
|
2607
|
-
return /* @__PURE__ */
|
|
2939
|
+
return /* @__PURE__ */ jsxs204(
|
|
2608
2940
|
"label",
|
|
2609
2941
|
{
|
|
2610
2942
|
className: clsx_default(
|
|
@@ -2613,8 +2945,8 @@ var Radio = (props) => {
|
|
|
2613
2945
|
className
|
|
2614
2946
|
),
|
|
2615
2947
|
children: [
|
|
2616
|
-
/* @__PURE__ */
|
|
2617
|
-
/* @__PURE__ */
|
|
2948
|
+
/* @__PURE__ */ jsx321("input", { ...rest, ...inputProps, checked: localChecked, type: "radio" }),
|
|
2949
|
+
/* @__PURE__ */ jsx321(
|
|
2618
2950
|
"div",
|
|
2619
2951
|
{
|
|
2620
2952
|
className: clsx_default(
|
|
@@ -2622,10 +2954,10 @@ var Radio = (props) => {
|
|
|
2622
2954
|
localChecked ? "checked" : void 0,
|
|
2623
2955
|
colorClass
|
|
2624
2956
|
),
|
|
2625
|
-
children: localChecked && /* @__PURE__ */
|
|
2957
|
+
children: localChecked && /* @__PURE__ */ jsx321("div", { className: "inner-circle" })
|
|
2626
2958
|
}
|
|
2627
2959
|
),
|
|
2628
|
-
label && /* @__PURE__ */
|
|
2960
|
+
label && /* @__PURE__ */ jsx321("span", { children: label })
|
|
2629
2961
|
]
|
|
2630
2962
|
}
|
|
2631
2963
|
);
|
|
@@ -2634,17 +2966,87 @@ Radio.displayName = "Radio";
|
|
|
2634
2966
|
var Radio_default = Radio;
|
|
2635
2967
|
|
|
2636
2968
|
// src/components/Radio/RadioGroup.tsx
|
|
2637
|
-
import { Fragment, jsx as
|
|
2969
|
+
import { Fragment, jsx as jsx322 } from "react/jsx-runtime";
|
|
2638
2970
|
var RadioGroup = (props) => {
|
|
2639
2971
|
const { children, ...rest } = props;
|
|
2640
|
-
return /* @__PURE__ */
|
|
2972
|
+
return /* @__PURE__ */ jsx322(Fragment, { children: /* @__PURE__ */ jsx322(RadioGroupContext_default.Provider, { value: rest, children }) });
|
|
2641
2973
|
};
|
|
2642
2974
|
RadioGroup.displayName = "RadioGroup";
|
|
2643
2975
|
var RadioGroup_default = RadioGroup;
|
|
2644
2976
|
|
|
2977
|
+
// src/components/Skeleton/Skeleton.tsx
|
|
2978
|
+
import { jsx as jsx323 } from "react/jsx-runtime";
|
|
2979
|
+
var Skeleton = (props) => {
|
|
2980
|
+
const { variant = "text", width, height, className } = props;
|
|
2981
|
+
const style = {
|
|
2982
|
+
width: typeof width === "number" ? `${width}px` : width,
|
|
2983
|
+
height: typeof height === "number" ? `${height}px` : height
|
|
2984
|
+
};
|
|
2985
|
+
return /* @__PURE__ */ jsx323(
|
|
2986
|
+
"div",
|
|
2987
|
+
{
|
|
2988
|
+
className: clsx_default("lib-xplat-skeleton", variant, className),
|
|
2989
|
+
style,
|
|
2990
|
+
"aria-hidden": "true"
|
|
2991
|
+
}
|
|
2992
|
+
);
|
|
2993
|
+
};
|
|
2994
|
+
Skeleton.displayName = "Skeleton";
|
|
2995
|
+
var Skeleton_default = Skeleton;
|
|
2996
|
+
|
|
2997
|
+
// src/components/Spinner/Spinner.tsx
|
|
2998
|
+
import { jsx as jsx324, jsxs as jsxs205 } from "react/jsx-runtime";
|
|
2999
|
+
var Spinner = (props) => {
|
|
3000
|
+
const {
|
|
3001
|
+
size = "md",
|
|
3002
|
+
colorNamespace = "xplat",
|
|
3003
|
+
color = "blue",
|
|
3004
|
+
colorDepth,
|
|
3005
|
+
className
|
|
3006
|
+
} = props;
|
|
3007
|
+
const colorClass = getColorClass(
|
|
3008
|
+
colorNamespace,
|
|
3009
|
+
color,
|
|
3010
|
+
colorDepth ?? 500
|
|
3011
|
+
);
|
|
3012
|
+
return /* @__PURE__ */ jsx324(
|
|
3013
|
+
"div",
|
|
3014
|
+
{
|
|
3015
|
+
className: clsx_default("lib-xplat-spinner", size, colorClass, className),
|
|
3016
|
+
role: "status",
|
|
3017
|
+
"aria-label": "\uB85C\uB529 \uC911",
|
|
3018
|
+
children: /* @__PURE__ */ jsxs205("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3019
|
+
/* @__PURE__ */ jsx324(
|
|
3020
|
+
"circle",
|
|
3021
|
+
{
|
|
3022
|
+
className: "track",
|
|
3023
|
+
cx: "12",
|
|
3024
|
+
cy: "12",
|
|
3025
|
+
r: "10",
|
|
3026
|
+
strokeWidth: "3"
|
|
3027
|
+
}
|
|
3028
|
+
),
|
|
3029
|
+
/* @__PURE__ */ jsx324(
|
|
3030
|
+
"circle",
|
|
3031
|
+
{
|
|
3032
|
+
className: "indicator",
|
|
3033
|
+
cx: "12",
|
|
3034
|
+
cy: "12",
|
|
3035
|
+
r: "10",
|
|
3036
|
+
strokeWidth: "3",
|
|
3037
|
+
strokeLinecap: "round"
|
|
3038
|
+
}
|
|
3039
|
+
)
|
|
3040
|
+
] })
|
|
3041
|
+
}
|
|
3042
|
+
);
|
|
3043
|
+
};
|
|
3044
|
+
Spinner.displayName = "Spinner";
|
|
3045
|
+
var Spinner_default = Spinner;
|
|
3046
|
+
|
|
2645
3047
|
// src/components/Switch/Switch.tsx
|
|
2646
|
-
import
|
|
2647
|
-
import { jsx as
|
|
3048
|
+
import React18 from "react";
|
|
3049
|
+
import { jsx as jsx325 } from "react/jsx-runtime";
|
|
2648
3050
|
var KNOB_TRANSITION_MS = 250;
|
|
2649
3051
|
var Switch = (props) => {
|
|
2650
3052
|
const {
|
|
@@ -2656,9 +3058,9 @@ var Switch = (props) => {
|
|
|
2656
3058
|
colorDepth,
|
|
2657
3059
|
className
|
|
2658
3060
|
} = props;
|
|
2659
|
-
const [isAnimating, setIsAnimating] =
|
|
2660
|
-
const timeoutRef =
|
|
2661
|
-
|
|
3061
|
+
const [isAnimating, setIsAnimating] = React18.useState(false);
|
|
3062
|
+
const timeoutRef = React18.useRef(null);
|
|
3063
|
+
React18.useEffect(() => {
|
|
2662
3064
|
return () => {
|
|
2663
3065
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
2664
3066
|
};
|
|
@@ -2678,7 +3080,7 @@ var Switch = (props) => {
|
|
|
2678
3080
|
color,
|
|
2679
3081
|
colorDepth ?? 500
|
|
2680
3082
|
);
|
|
2681
|
-
return /* @__PURE__ */
|
|
3083
|
+
return /* @__PURE__ */ jsx325(
|
|
2682
3084
|
"div",
|
|
2683
3085
|
{
|
|
2684
3086
|
className: clsx_default(
|
|
@@ -2691,7 +3093,7 @@ var Switch = (props) => {
|
|
|
2691
3093
|
),
|
|
2692
3094
|
onClick: handleClick,
|
|
2693
3095
|
"aria-disabled": disabled || isAnimating,
|
|
2694
|
-
children: /* @__PURE__ */
|
|
3096
|
+
children: /* @__PURE__ */ jsx325("div", { className: clsx_default("knob", value ? "checked" : void 0) })
|
|
2695
3097
|
}
|
|
2696
3098
|
);
|
|
2697
3099
|
};
|
|
@@ -2699,14 +3101,14 @@ Switch.displayName = "Switch";
|
|
|
2699
3101
|
var Switch_default = Switch;
|
|
2700
3102
|
|
|
2701
3103
|
// src/components/Tab/Tab.tsx
|
|
2702
|
-
import
|
|
3104
|
+
import React20 from "react";
|
|
2703
3105
|
|
|
2704
3106
|
// src/components/Tab/TabItem.tsx
|
|
2705
|
-
import
|
|
2706
|
-
import { jsx as
|
|
2707
|
-
var TabItem =
|
|
3107
|
+
import React19 from "react";
|
|
3108
|
+
import { jsx as jsx326 } from "react/jsx-runtime";
|
|
3109
|
+
var TabItem = React19.forwardRef((props, ref) => {
|
|
2708
3110
|
const { isActive, title, onClick } = props;
|
|
2709
|
-
return /* @__PURE__ */
|
|
3111
|
+
return /* @__PURE__ */ jsx326(
|
|
2710
3112
|
"div",
|
|
2711
3113
|
{
|
|
2712
3114
|
ref,
|
|
@@ -2720,25 +3122,25 @@ TabItem.displayName = "TabItem";
|
|
|
2720
3122
|
var TabItem_default = TabItem;
|
|
2721
3123
|
|
|
2722
3124
|
// src/components/Tab/Tab.tsx
|
|
2723
|
-
import { jsx as
|
|
3125
|
+
import { jsx as jsx327, jsxs as jsxs206 } from "react/jsx-runtime";
|
|
2724
3126
|
var Tab = (props) => {
|
|
2725
3127
|
const { activeIndex, onChange, tabs, type } = props;
|
|
2726
|
-
const [underlineStyle, setUnderlineStyle] =
|
|
3128
|
+
const [underlineStyle, setUnderlineStyle] = React20.useState({
|
|
2727
3129
|
left: 0,
|
|
2728
3130
|
width: 0
|
|
2729
3131
|
});
|
|
2730
|
-
const itemRefs =
|
|
3132
|
+
const itemRefs = React20.useRef([]);
|
|
2731
3133
|
const handleChangeActiveTab = (tabItem, tabIdx) => {
|
|
2732
3134
|
onChange(tabItem, tabIdx);
|
|
2733
3135
|
};
|
|
2734
|
-
|
|
3136
|
+
React20.useEffect(() => {
|
|
2735
3137
|
const el = itemRefs.current[activeIndex];
|
|
2736
3138
|
if (el) {
|
|
2737
3139
|
setUnderlineStyle({ left: el.offsetLeft, width: el.offsetWidth });
|
|
2738
3140
|
}
|
|
2739
3141
|
}, [activeIndex, tabs.length]);
|
|
2740
|
-
return /* @__PURE__ */
|
|
2741
|
-
tabs.map((tab, idx) => /* @__PURE__ */
|
|
3142
|
+
return /* @__PURE__ */ jsxs206("div", { className: clsx_default("lib-xplat-tab", `type-${type}`), children: [
|
|
3143
|
+
tabs.map((tab, idx) => /* @__PURE__ */ jsx327(
|
|
2742
3144
|
TabItem_default,
|
|
2743
3145
|
{
|
|
2744
3146
|
onClick: () => handleChangeActiveTab(tab, idx),
|
|
@@ -2750,7 +3152,7 @@ var Tab = (props) => {
|
|
|
2750
3152
|
},
|
|
2751
3153
|
`${tab.value}_${idx}`
|
|
2752
3154
|
)),
|
|
2753
|
-
type === "toggle" && /* @__PURE__ */
|
|
3155
|
+
type === "toggle" && /* @__PURE__ */ jsx327(
|
|
2754
3156
|
"div",
|
|
2755
3157
|
{
|
|
2756
3158
|
className: "tab-toggle-underline",
|
|
@@ -2766,17 +3168,17 @@ Tab.displayName = "Tab";
|
|
|
2766
3168
|
var Tab_default = Tab;
|
|
2767
3169
|
|
|
2768
3170
|
// src/components/Table/TableContext.tsx
|
|
2769
|
-
import
|
|
2770
|
-
var TableContext =
|
|
3171
|
+
import React21 from "react";
|
|
3172
|
+
var TableContext = React21.createContext(null);
|
|
2771
3173
|
var useTableContext = () => {
|
|
2772
|
-
const ctx =
|
|
3174
|
+
const ctx = React21.useContext(TableContext);
|
|
2773
3175
|
if (!ctx) throw new Error("Table components must be used inside <Table>");
|
|
2774
3176
|
return ctx;
|
|
2775
3177
|
};
|
|
2776
3178
|
var TableContext_default = TableContext;
|
|
2777
3179
|
|
|
2778
3180
|
// src/components/Table/Table.tsx
|
|
2779
|
-
import { jsx as
|
|
3181
|
+
import { jsx as jsx328 } from "react/jsx-runtime";
|
|
2780
3182
|
var Table = (props) => {
|
|
2781
3183
|
const {
|
|
2782
3184
|
className,
|
|
@@ -2786,7 +3188,7 @@ var Table = (props) => {
|
|
|
2786
3188
|
headerSticky = false,
|
|
2787
3189
|
stickyShadow = true
|
|
2788
3190
|
} = props;
|
|
2789
|
-
return /* @__PURE__ */
|
|
3191
|
+
return /* @__PURE__ */ jsx328("div", { className: clsx_default("lib-xplat-table-wrapper", className), children: /* @__PURE__ */ jsx328(
|
|
2790
3192
|
TableContext_default.Provider,
|
|
2791
3193
|
{
|
|
2792
3194
|
value: {
|
|
@@ -2795,7 +3197,7 @@ var Table = (props) => {
|
|
|
2795
3197
|
headerSticky,
|
|
2796
3198
|
stickyShadow
|
|
2797
3199
|
},
|
|
2798
|
-
children: /* @__PURE__ */
|
|
3200
|
+
children: /* @__PURE__ */ jsx328("table", { className: "lib-xplat-table", children })
|
|
2799
3201
|
}
|
|
2800
3202
|
) });
|
|
2801
3203
|
};
|
|
@@ -2803,40 +3205,40 @@ Table.displayName = "Table";
|
|
|
2803
3205
|
var Table_default = Table;
|
|
2804
3206
|
|
|
2805
3207
|
// src/components/Table/TableBody.tsx
|
|
2806
|
-
import { jsx as
|
|
3208
|
+
import { jsx as jsx329 } from "react/jsx-runtime";
|
|
2807
3209
|
var TableBody = (props) => {
|
|
2808
3210
|
const { children, className } = props;
|
|
2809
|
-
return /* @__PURE__ */
|
|
3211
|
+
return /* @__PURE__ */ jsx329("tbody", { className, children });
|
|
2810
3212
|
};
|
|
2811
3213
|
TableBody.displayName = "TableBody";
|
|
2812
3214
|
var TableBody_default = TableBody;
|
|
2813
3215
|
|
|
2814
3216
|
// src/components/Table/TableCell.tsx
|
|
2815
|
-
import
|
|
3217
|
+
import React24 from "react";
|
|
2816
3218
|
|
|
2817
3219
|
// src/components/Table/TableHeadContext.tsx
|
|
2818
|
-
import
|
|
2819
|
-
var TableHeadContext =
|
|
3220
|
+
import React22 from "react";
|
|
3221
|
+
var TableHeadContext = React22.createContext(
|
|
2820
3222
|
null
|
|
2821
3223
|
);
|
|
2822
3224
|
var useTableHeadContext = () => {
|
|
2823
|
-
const ctx =
|
|
3225
|
+
const ctx = React22.useContext(TableHeadContext);
|
|
2824
3226
|
return ctx;
|
|
2825
3227
|
};
|
|
2826
3228
|
var TableHeadContext_default = TableHeadContext;
|
|
2827
3229
|
|
|
2828
3230
|
// src/components/Table/TableRowContext.tsx
|
|
2829
|
-
import
|
|
2830
|
-
var TableRowContext =
|
|
3231
|
+
import React23 from "react";
|
|
3232
|
+
var TableRowContext = React23.createContext(null);
|
|
2831
3233
|
var useTableRowContext = () => {
|
|
2832
|
-
const ctx =
|
|
3234
|
+
const ctx = React23.useContext(TableRowContext);
|
|
2833
3235
|
if (!ctx) throw new Error("Table components must be used inside <Table>");
|
|
2834
3236
|
return ctx;
|
|
2835
3237
|
};
|
|
2836
3238
|
var TableRowContext_default = TableRowContext;
|
|
2837
3239
|
|
|
2838
3240
|
// src/components/Table/TableCell.tsx
|
|
2839
|
-
import { jsx as
|
|
3241
|
+
import { jsx as jsx330 } from "react/jsx-runtime";
|
|
2840
3242
|
var TableCell = (props) => {
|
|
2841
3243
|
const {
|
|
2842
3244
|
children,
|
|
@@ -2848,9 +3250,9 @@ var TableCell = (props) => {
|
|
|
2848
3250
|
const { registerStickyCell, stickyCells } = useTableRowContext();
|
|
2849
3251
|
const { stickyShadow } = useTableContext();
|
|
2850
3252
|
const headContext = useTableHeadContext();
|
|
2851
|
-
const [left, setLeft] =
|
|
2852
|
-
const cellRef =
|
|
2853
|
-
const calculateLeft =
|
|
3253
|
+
const [left, setLeft] = React24.useState(0);
|
|
3254
|
+
const cellRef = React24.useRef(null);
|
|
3255
|
+
const calculateLeft = React24.useCallback(() => {
|
|
2854
3256
|
if (!cellRef.current) return 0;
|
|
2855
3257
|
let totalLeft = 0;
|
|
2856
3258
|
for (const ref of stickyCells) {
|
|
@@ -2859,7 +3261,7 @@ var TableCell = (props) => {
|
|
|
2859
3261
|
}
|
|
2860
3262
|
return totalLeft;
|
|
2861
3263
|
}, [stickyCells]);
|
|
2862
|
-
|
|
3264
|
+
React24.useEffect(() => {
|
|
2863
3265
|
if (!isSticky || !cellRef.current) return;
|
|
2864
3266
|
registerStickyCell(cellRef);
|
|
2865
3267
|
setLeft(calculateLeft());
|
|
@@ -2877,7 +3279,7 @@ var TableCell = (props) => {
|
|
|
2877
3279
|
const CellTag = cellRef.current?.tagName === "TH" ? "th" : "td";
|
|
2878
3280
|
const isLastSticky = isSticky && stickyCells[stickyCells.length - 1] === cellRef;
|
|
2879
3281
|
const enableHover = headContext && headContext.cellHover;
|
|
2880
|
-
return /* @__PURE__ */
|
|
3282
|
+
return /* @__PURE__ */ jsx330(
|
|
2881
3283
|
CellTag,
|
|
2882
3284
|
{
|
|
2883
3285
|
ref: cellRef,
|
|
@@ -2899,21 +3301,21 @@ TableCell.displayName = "TableCell";
|
|
|
2899
3301
|
var TableCell_default = TableCell;
|
|
2900
3302
|
|
|
2901
3303
|
// src/components/Table/TableHead.tsx
|
|
2902
|
-
import { jsx as
|
|
3304
|
+
import { jsx as jsx331 } from "react/jsx-runtime";
|
|
2903
3305
|
var TableHead = ({
|
|
2904
3306
|
children,
|
|
2905
3307
|
className = "",
|
|
2906
3308
|
cellHover = false
|
|
2907
3309
|
}) => {
|
|
2908
3310
|
const { headerSticky } = useTableContext();
|
|
2909
|
-
return /* @__PURE__ */
|
|
3311
|
+
return /* @__PURE__ */ jsx331(TableHeadContext_default.Provider, { value: { cellHover }, children: /* @__PURE__ */ jsx331("thead", { className: clsx_default(headerSticky ? "table-sticky" : null, className), children }) });
|
|
2910
3312
|
};
|
|
2911
3313
|
TableHead.displayName = "TableHead";
|
|
2912
3314
|
var TableHead_default = TableHead;
|
|
2913
3315
|
|
|
2914
3316
|
// src/components/Table/TableRow.tsx
|
|
2915
|
-
import
|
|
2916
|
-
import { jsx as
|
|
3317
|
+
import React25 from "react";
|
|
3318
|
+
import { jsx as jsx332 } from "react/jsx-runtime";
|
|
2917
3319
|
var TableRow = (props) => {
|
|
2918
3320
|
const {
|
|
2919
3321
|
children,
|
|
@@ -2926,7 +3328,7 @@ var TableRow = (props) => {
|
|
|
2926
3328
|
onClick
|
|
2927
3329
|
} = props;
|
|
2928
3330
|
const { rowBorderUse } = useTableContext();
|
|
2929
|
-
const [stickyCells, setStickyCells] =
|
|
3331
|
+
const [stickyCells, setStickyCells] = React25.useState([]);
|
|
2930
3332
|
const registerStickyCell = (ref) => {
|
|
2931
3333
|
setStickyCells((prev) => {
|
|
2932
3334
|
if (prev.includes(ref)) return prev;
|
|
@@ -2938,7 +3340,7 @@ var TableRow = (props) => {
|
|
|
2938
3340
|
color,
|
|
2939
3341
|
colorDepth ?? 500
|
|
2940
3342
|
);
|
|
2941
|
-
return /* @__PURE__ */
|
|
3343
|
+
return /* @__PURE__ */ jsx332(TableRowContext_default.Provider, { value: { stickyCells, registerStickyCell }, children: /* @__PURE__ */ jsx332(
|
|
2942
3344
|
"tr",
|
|
2943
3345
|
{
|
|
2944
3346
|
className: clsx_default(
|
|
@@ -2958,12 +3360,12 @@ TableRow.displayName = "TableRow";
|
|
|
2958
3360
|
var TableRow_default = TableRow;
|
|
2959
3361
|
|
|
2960
3362
|
// src/components/TextArea/TextArea.tsx
|
|
2961
|
-
import
|
|
2962
|
-
import { jsx as
|
|
2963
|
-
var TextArea =
|
|
3363
|
+
import React26 from "react";
|
|
3364
|
+
import { jsx as jsx333 } from "react/jsx-runtime";
|
|
3365
|
+
var TextArea = React26.forwardRef(
|
|
2964
3366
|
(props, ref) => {
|
|
2965
3367
|
const { value, onChange, className, disabled, ...textareaProps } = props;
|
|
2966
|
-
const localRef =
|
|
3368
|
+
const localRef = React26.useRef(null);
|
|
2967
3369
|
const setRefs = (el) => {
|
|
2968
3370
|
localRef.current = el;
|
|
2969
3371
|
if (!ref) return;
|
|
@@ -2983,21 +3385,21 @@ var TextArea = React25.forwardRef(
|
|
|
2983
3385
|
onChange(event);
|
|
2984
3386
|
}
|
|
2985
3387
|
};
|
|
2986
|
-
|
|
3388
|
+
React26.useEffect(() => {
|
|
2987
3389
|
const el = localRef.current;
|
|
2988
3390
|
if (!el) return;
|
|
2989
3391
|
el.style.height = "0px";
|
|
2990
3392
|
const nextHeight = Math.min(el.scrollHeight, 400);
|
|
2991
3393
|
el.style.height = `${nextHeight}px`;
|
|
2992
3394
|
}, [value]);
|
|
2993
|
-
return /* @__PURE__ */
|
|
3395
|
+
return /* @__PURE__ */ jsx333("div", { className: clsx_default("lib-xplat-textarea-wrapper", className), children: /* @__PURE__ */ jsx333(
|
|
2994
3396
|
"div",
|
|
2995
3397
|
{
|
|
2996
3398
|
className: clsx_default(
|
|
2997
3399
|
"lib-xplat-textarea",
|
|
2998
3400
|
disabled ? "disabled" : void 0
|
|
2999
3401
|
),
|
|
3000
|
-
children: /* @__PURE__ */
|
|
3402
|
+
children: /* @__PURE__ */ jsx333(
|
|
3001
3403
|
"textarea",
|
|
3002
3404
|
{
|
|
3003
3405
|
...textareaProps,
|
|
@@ -3015,8 +3417,8 @@ TextArea.displayName = "TextArea";
|
|
|
3015
3417
|
var TextArea_default = TextArea;
|
|
3016
3418
|
|
|
3017
3419
|
// src/components/Tooltip/Tooltip.tsx
|
|
3018
|
-
import
|
|
3019
|
-
import { jsx as
|
|
3420
|
+
import React27 from "react";
|
|
3421
|
+
import { jsx as jsx334, jsxs as jsxs207 } from "react/jsx-runtime";
|
|
3020
3422
|
var Tooltip2 = (props) => {
|
|
3021
3423
|
const {
|
|
3022
3424
|
type = "primary",
|
|
@@ -3026,24 +3428,24 @@ var Tooltip2 = (props) => {
|
|
|
3026
3428
|
description,
|
|
3027
3429
|
children
|
|
3028
3430
|
} = props;
|
|
3029
|
-
const iconRef =
|
|
3431
|
+
const iconRef = React27.useRef(null);
|
|
3030
3432
|
const colorClass = getColorClass(
|
|
3031
3433
|
colorNamespace,
|
|
3032
3434
|
color,
|
|
3033
3435
|
colorDepth ?? 500
|
|
3034
3436
|
);
|
|
3035
|
-
return /* @__PURE__ */
|
|
3036
|
-
/* @__PURE__ */
|
|
3037
|
-
/* @__PURE__ */
|
|
3437
|
+
return /* @__PURE__ */ jsxs207("div", { className: "lib-xplat-tooltip", children: [
|
|
3438
|
+
/* @__PURE__ */ jsx334("div", { className: "tooltip-content", ref: iconRef, children: children || "Tooltip" }),
|
|
3439
|
+
/* @__PURE__ */ jsx334("div", { className: clsx_default("tooltip-wrapper", colorClass, type), children: description })
|
|
3038
3440
|
] });
|
|
3039
3441
|
};
|
|
3040
3442
|
Tooltip2.displayName = "Tooltip";
|
|
3041
3443
|
var Tooltip_default = Tooltip2;
|
|
3042
3444
|
|
|
3043
3445
|
// src/components/Video/Video.tsx
|
|
3044
|
-
import
|
|
3045
|
-
import { jsx as
|
|
3046
|
-
var Video =
|
|
3446
|
+
import React28 from "react";
|
|
3447
|
+
import { jsx as jsx335, jsxs as jsxs208 } from "react/jsx-runtime";
|
|
3448
|
+
var Video = React28.forwardRef((props, ref) => {
|
|
3047
3449
|
const {
|
|
3048
3450
|
src,
|
|
3049
3451
|
poster,
|
|
@@ -3057,10 +3459,10 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3057
3459
|
onPause,
|
|
3058
3460
|
...rest
|
|
3059
3461
|
} = props;
|
|
3060
|
-
const videoRef =
|
|
3061
|
-
const [isPlaying, setIsPlaying] =
|
|
3062
|
-
const [isLoaded, setIsLoaded] =
|
|
3063
|
-
const setRefs =
|
|
3462
|
+
const videoRef = React28.useRef(null);
|
|
3463
|
+
const [isPlaying, setIsPlaying] = React28.useState(Boolean(autoPlay));
|
|
3464
|
+
const [isLoaded, setIsLoaded] = React28.useState(false);
|
|
3465
|
+
const setRefs = React28.useCallback(
|
|
3064
3466
|
(el) => {
|
|
3065
3467
|
videoRef.current = el;
|
|
3066
3468
|
if (typeof ref === "function") ref(el);
|
|
@@ -3088,7 +3490,7 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3088
3490
|
}
|
|
3089
3491
|
};
|
|
3090
3492
|
const showCustomOverlay = !controls;
|
|
3091
|
-
return /* @__PURE__ */
|
|
3493
|
+
return /* @__PURE__ */ jsxs208(
|
|
3092
3494
|
"div",
|
|
3093
3495
|
{
|
|
3094
3496
|
className: clsx_default(
|
|
@@ -3097,7 +3499,7 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3097
3499
|
className
|
|
3098
3500
|
),
|
|
3099
3501
|
children: [
|
|
3100
|
-
/* @__PURE__ */
|
|
3502
|
+
/* @__PURE__ */ jsx335(
|
|
3101
3503
|
"video",
|
|
3102
3504
|
{
|
|
3103
3505
|
ref: setRefs,
|
|
@@ -3114,7 +3516,7 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3114
3516
|
...rest
|
|
3115
3517
|
}
|
|
3116
3518
|
),
|
|
3117
|
-
showCustomOverlay && /* @__PURE__ */
|
|
3519
|
+
showCustomOverlay && /* @__PURE__ */ jsx335(
|
|
3118
3520
|
"button",
|
|
3119
3521
|
{
|
|
3120
3522
|
type: "button",
|
|
@@ -3125,7 +3527,7 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3125
3527
|
),
|
|
3126
3528
|
onClick: togglePlay,
|
|
3127
3529
|
"aria-label": isPlaying ? "\uC77C\uC2DC\uC815\uC9C0" : "\uC7AC\uC0DD",
|
|
3128
|
-
children: isPlaying ? /* @__PURE__ */
|
|
3530
|
+
children: isPlaying ? /* @__PURE__ */ jsx335(PauseIcon_default, {}) : /* @__PURE__ */ jsx335("span", { className: "play-icon", children: /* @__PURE__ */ jsx335(PlayCircleIcon_default, {}) })
|
|
3129
3531
|
}
|
|
3130
3532
|
)
|
|
3131
3533
|
]
|
|
@@ -3135,25 +3537,35 @@ var Video = React27.forwardRef((props, ref) => {
|
|
|
3135
3537
|
Video.displayName = "Video";
|
|
3136
3538
|
var Video_default = Video;
|
|
3137
3539
|
export {
|
|
3540
|
+
Accordion_default as Accordion,
|
|
3541
|
+
Alert_default as Alert,
|
|
3542
|
+
Avatar_default as Avatar,
|
|
3543
|
+
Badge_default as Badge,
|
|
3544
|
+
Breadcrumb_default as Breadcrumb,
|
|
3138
3545
|
Button_default as Button,
|
|
3139
3546
|
Card_default as Card,
|
|
3140
3547
|
Chart_default as Chart,
|
|
3141
3548
|
CheckBox_default as CheckBox,
|
|
3142
3549
|
Chip_default as Chip,
|
|
3550
|
+
Divider_default as Divider,
|
|
3143
3551
|
HtmlTypeWriter_default as HtmlTypewriter,
|
|
3144
3552
|
ImageSelector_default as ImageSelector,
|
|
3145
3553
|
Input_default as Input,
|
|
3146
3554
|
InputDatePicker_default as InputDatePicker,
|
|
3147
3555
|
Modal_default as Modal,
|
|
3556
|
+
Pagination_default as Pagination,
|
|
3148
3557
|
PasswordInput_default as PasswordInput,
|
|
3149
3558
|
PopOver_default as PopOver,
|
|
3150
3559
|
PopupPicker_default as PopupDatePicker,
|
|
3560
|
+
Progress_default as Progress,
|
|
3151
3561
|
Radio_default as Radio,
|
|
3152
3562
|
RadioGroup_default as RadioGroup,
|
|
3153
3563
|
RangePicker_default as RangeDatePicker,
|
|
3154
3564
|
Select_default as Select,
|
|
3155
3565
|
SelectItem_default as SelectItem,
|
|
3156
3566
|
SingleDatePicker_default as SingleDatePicker,
|
|
3567
|
+
Skeleton_default as Skeleton,
|
|
3568
|
+
Spinner_default as Spinner,
|
|
3157
3569
|
Switch_default as Switch,
|
|
3158
3570
|
Tab_default as Tab,
|
|
3159
3571
|
Table_default as Table,
|