@sia.soul/sia-react-ui 0.1.23 → 0.1.25
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/{Select-BoVx-D0D.d.ts → Select-O_yY51vc.d.ts} +4 -2
- package/dist/{Select-BO3VyE2n.d.cts → Select-W_xpkpOW.d.cts} +4 -2
- package/dist/chart.cjs +1401 -1160
- package/dist/chart.css +21 -0
- package/dist/chart.js +4 -4
- package/dist/{chunk-KLI65JVD.js → chunk-27ZYAKII.js} +68 -186
- package/dist/{chunk-TZGUBGA4.js → chunk-IYNS423D.js} +4 -3
- package/dist/{chunk-GM47DAAN.js → chunk-IYO2JSGQ.js} +8 -7
- package/dist/{chunk-QJ4OQNQ4.js → chunk-PXHBIRQW.js} +4 -3
- package/dist/{chunk-VX2JECOU.js → chunk-QCBKT5FV.js} +20 -16
- package/dist/chunk-RAO3JHDL.js +284 -0
- package/dist/{chunk-RWGSZW32.js → chunk-RWODH2LW.js} +7 -6
- package/dist/{chunk-OKP4DIQH.js → chunk-TZROBD65.js} +29 -26
- package/dist/{chunk-NPB33IXJ.js → chunk-W52CNNWW.js} +349 -278
- package/dist/{chunk-YT6E3X2K.js → chunk-YQDHCORW.js} +4 -3
- package/dist/{core-Cqgl6Z7h.d.ts → core-BOzLwiXG.d.ts} +44 -5
- package/dist/{core-DF0pknX6.d.cts → core-tbb9ZiBY.d.cts} +44 -5
- package/dist/core.cjs +1637 -1443
- package/dist/core.css +53 -0
- package/dist/core.d.cts +2 -2
- package/dist/core.d.ts +2 -2
- package/dist/core.js +8 -6
- package/dist/index.cjs +3797 -3583
- package/dist/index.css +53 -0
- package/dist/index.d.cts +36 -17
- package/dist/index.d.ts +36 -17
- package/dist/index.js +104 -83
- package/dist/markdown-editor.cjs +269 -28
- package/dist/markdown-editor.css +20 -0
- package/dist/markdown-editor.js +2 -2
- package/dist/rich-text-editor.cjs +1156 -1031
- package/dist/rich-text-editor.css +20 -0
- package/dist/rich-text-editor.js +4 -4
- package/dist/{select-date-range-a6nzK7Wu.d.ts → select-date-range-BjqFUeU6.d.ts} +1 -1
- package/dist/{select-date-range-IOe6MMqu.d.cts → select-date-range-C9w8z3G8.d.cts} +1 -1
- package/dist/select-date-range.cjs +1188 -1059
- package/dist/select-date-range.css +20 -0
- package/dist/select-date-range.d.cts +2 -2
- package/dist/select-date-range.d.ts +2 -2
- package/dist/select-date-range.js +5 -5
- package/package.json +2 -2
- package/dist/chunk-3VJ4CZDQ.js +0 -43
|
@@ -24,857 +24,13 @@ __export(select_date_range_exports, {
|
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(select_date_range_exports);
|
|
26
26
|
|
|
27
|
-
// src/components/
|
|
28
|
-
var
|
|
29
|
-
var ControlSizeContext = (0, import_react.createContext)("medium");
|
|
30
|
-
function useControlSize(size) {
|
|
31
|
-
const inherited = (0, import_react.useContext)(ControlSizeContext);
|
|
32
|
-
return size ?? inherited;
|
|
33
|
-
}
|
|
34
|
-
var PlaceholderModeContext = (0, import_react.createContext)("default");
|
|
35
|
-
function usePlaceholderMode(mode) {
|
|
36
|
-
const inherited = (0, import_react.useContext)(PlaceholderModeContext);
|
|
37
|
-
return mode ?? inherited;
|
|
38
|
-
}
|
|
39
|
-
function useControllableState({ value, defaultValue, onChange }) {
|
|
40
|
-
const [internalValue, setInternalValue] = (0, import_react.useState)(defaultValue);
|
|
41
|
-
const controlled = value !== void 0;
|
|
42
|
-
const currentValue = controlled ? value : internalValue;
|
|
43
|
-
const setValue = (0, import_react.useCallback)((nextValue) => {
|
|
44
|
-
if (Object.is(currentValue, nextValue)) return;
|
|
45
|
-
if (!controlled) setInternalValue(nextValue);
|
|
46
|
-
onChange?.(nextValue);
|
|
47
|
-
}, [controlled, currentValue, onChange]);
|
|
48
|
-
return [currentValue, setValue];
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// src/components/FloatingPlaceholder.tsx
|
|
52
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
53
|
-
function useFloatingPlaceholder({ mode, placeholder, filled, active = false }) {
|
|
54
|
-
const enabled = usePlaceholderMode(mode) === "floating" && Boolean(placeholder);
|
|
55
|
-
return {
|
|
56
|
-
enabled,
|
|
57
|
-
className: enabled ? ` sia-placeholder-floating${filled ? " sia-placeholder-floating--filled" : ""}${active ? " sia-placeholder-floating--active" : ""}` : "",
|
|
58
|
-
label: enabled ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "sia-floating-placeholder", "aria-hidden": "true", children: placeholder }) : null
|
|
59
|
-
};
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
// src/components/DatePicker.tsx
|
|
63
|
-
var import_react5 = require("react");
|
|
64
|
-
|
|
65
|
-
// src/components/Icon.tsx
|
|
66
|
-
var import_react2 = require("react");
|
|
67
|
-
|
|
68
|
-
// src/components/IconCatalog.tsx
|
|
69
|
-
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
70
|
-
var extendedIconPaths = {
|
|
71
|
-
"notepad-file": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
72
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M752 80H272c-70.4 0-128 57.6-128 128v608c0 70.4 57.6 128 128 128h353.6c33.6 0 65.6-12.8 91.2-36.8l126.4-126.4c24-24 36.8-56 36.8-91.2V208c0-70.4-57.6-128-128-128zM208 816V208c0-35.2 28.8-64 64-64h480c35.2 0 64 28.8 64 64v464h-96c-70.4 0-128 57.6-128 128v80H272c-35.2 0-64-28.8-64-64z m462.4 44.8c-4.8 4.8-9.6 8-14.4 11.2v-72c0-35.2 28.8-64 64-64h75.2L670.4 860.8z" }),
|
|
73
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M368 352h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z m128 256H368c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32s-14.4-32-32-32z m-128-96h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z" })
|
|
74
|
-
] }),
|
|
75
|
-
"notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M510.4 243.2c8 27.2 33.6 44.8 60.8 44.8h259.2c0-35.2-28.8-64-64-64H504l6.4 19.2zM484.8 160h281.6c70.4 0 128 57.6 128 128v25.6c30.4 24 51.2 60.8 51.2 102.4v384c0 70.4-57.6 128-128 128H208c-70.4 0-128-57.6-128-128V224c0-70.4 57.6-128 128-128h164.8c46.4 0 89.6 25.6 112 64z m-112 0H208c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h608c35.2 0 64-28.8 64-64V416c0-35.2-28.8-64-64-64H574.4c-56 0-105.6-36.8-121.6-89.6l-19.2-57.6c-8-27.2-32-44.8-60.8-44.8zM272 704h256c17.6 0 32 14.4 32 32s-14.4 32-32 32H272c-17.6 0-32-14.4-32-32s14.4-32 32-32z" }) }),
|
|
76
|
-
"notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
77
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M704 864H192c-89.6 0-160-70.4-160-160V192c0-89.6 70.4-160 160-160h512c89.6 0 160 70.4 160 160v512c0 89.6-70.4 160-160 160zM192 96c-51.2 0-96 44.8-96 96v512c0 51.2 44.8 96 96 96h512c51.2 0 96-44.8 96-96V192c0-51.2-44.8-96-96-96H192z" }),
|
|
78
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M832 992H320c-19.2 0-32-12.8-32-32s12.8-32 32-32h512c51.2 0 96-44.8 96-96V320c0-19.2 12.8-32 32-32s32 12.8 32 32v512c0 89.6-70.4 160-160 160z" })
|
|
79
|
-
] }),
|
|
80
|
-
"step-backward": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
81
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 5v14" }),
|
|
82
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
|
|
83
|
-
] }),
|
|
84
|
-
"step-forward": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
85
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M18 5v14" }),
|
|
86
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
|
|
87
|
-
] }),
|
|
88
|
-
"fast-backward": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
|
|
89
|
-
"fast-forward": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
|
|
90
|
-
"corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
91
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 5-5 5 5 5" }),
|
|
92
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
|
|
93
|
-
] }),
|
|
94
|
-
"corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
95
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15 5 5 5-5 5" }),
|
|
96
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
|
|
97
|
-
] }),
|
|
98
|
-
"swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
99
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
|
|
100
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
|
|
101
|
-
] }),
|
|
102
|
-
"swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
103
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
|
|
104
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
|
|
105
|
-
] }),
|
|
106
|
-
expand: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
|
|
107
|
-
shrink: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
|
|
108
|
-
fullscreen: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
|
|
109
|
-
"fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
|
|
110
|
-
"menu-fold": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
111
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
|
|
112
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m18 9-3 3 3 3" })
|
|
113
|
-
] }),
|
|
114
|
-
"menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
115
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
|
|
116
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 9 3 3-3 3" })
|
|
117
|
-
] }),
|
|
118
|
-
login: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
|
|
119
|
-
logout: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
|
|
120
|
-
move: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
121
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v18M3 12h18" }),
|
|
122
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
|
|
123
|
-
] }),
|
|
124
|
-
"vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
|
|
125
|
-
"vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
|
|
126
|
-
"vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
|
|
127
|
-
"square-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
128
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
129
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
130
|
-
] }),
|
|
131
|
-
"square-minus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
132
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
133
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 12h8" })
|
|
134
|
-
] }),
|
|
135
|
-
"square-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
136
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
137
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 3 3 6-7" })
|
|
138
|
-
] }),
|
|
139
|
-
"square-close": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
140
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
141
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
|
|
142
|
-
] }),
|
|
143
|
-
"tab-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
144
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
145
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
|
|
146
|
-
] }),
|
|
147
|
-
"folder-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
148
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
149
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 11v6M13 14h6" })
|
|
150
|
-
] }),
|
|
151
|
-
pin: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
|
|
152
|
-
"pin-off": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
|
|
153
|
-
stop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
154
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
155
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 18 18 6" })
|
|
156
|
-
] }),
|
|
157
|
-
"help-circle": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
158
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
159
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.7 9a2.5 2.5 0 1 1 3.6 2.3c-.9.5-1.3 1.1-1.3 2.1M12 17v.1" })
|
|
160
|
-
] }),
|
|
161
|
-
save: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
162
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
|
|
163
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
|
|
164
|
-
] }),
|
|
165
|
-
clipboard: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
166
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
167
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
|
|
168
|
-
] }),
|
|
169
|
-
"clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
170
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
171
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
|
|
172
|
-
] }),
|
|
173
|
-
"file-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
174
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
175
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
|
|
176
|
-
] }),
|
|
177
|
-
"file-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
178
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
179
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
|
|
180
|
-
] }),
|
|
181
|
-
"file-warning": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
182
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
183
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
|
|
184
|
-
] }),
|
|
185
|
-
"file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
186
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
187
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
|
|
188
|
-
] }),
|
|
189
|
-
"align-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
|
|
190
|
-
"align-center": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
|
|
191
|
-
"align-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
|
|
192
|
-
"align-justify": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
|
|
193
|
-
bold: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
|
|
194
|
-
italic: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
|
|
195
|
-
underline: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
|
|
196
|
-
strikethrough: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 12h14M8 8c.3-2.5 2-4 4.5-4 2.2 0 3.7 1 4.5 2.5M8 16c.8 2.5 2.5 4 5 4 2.2 0 3.8-1 4.5-2.5" }) }),
|
|
197
|
-
"list-ordered": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
198
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
199
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
|
|
200
|
-
] }),
|
|
201
|
-
"list-unordered": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
202
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
203
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
|
|
204
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
|
|
205
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
|
|
206
|
-
] }),
|
|
207
|
-
eraser: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
208
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
|
|
209
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 9 8 7M13 20h8" })
|
|
210
|
-
] }),
|
|
211
|
-
highlighter: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
212
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
|
|
213
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
|
|
214
|
-
] }),
|
|
215
|
-
table: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
216
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
217
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
|
|
218
|
-
] }),
|
|
219
|
-
columns: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
220
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
221
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 4v16" })
|
|
222
|
-
] }),
|
|
223
|
-
rows: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
224
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
225
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M3 15h18" })
|
|
226
|
-
] }),
|
|
227
|
-
"bar-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
|
|
228
|
-
"line-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
229
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
|
|
230
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
|
|
231
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "13", cy: "14", r: "1" })
|
|
232
|
-
] }),
|
|
233
|
-
"pie-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
234
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
|
|
235
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
|
|
236
|
-
] }),
|
|
237
|
-
"area-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
|
|
238
|
-
activity: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
|
|
239
|
-
"trending-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
240
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
|
|
241
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 8h5v5" })
|
|
242
|
-
] }),
|
|
243
|
-
"trending-down": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
244
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
|
|
245
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 16h5v-5" })
|
|
246
|
-
] }),
|
|
247
|
-
database: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
248
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
|
|
249
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5v7c0 1.7 3.6 3 8 3s8-1.3 8-3V5M4 12v7c0 1.7 3.6 3 8 3s8-1.3 8-3v-7" })
|
|
250
|
-
] }),
|
|
251
|
-
cloud: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 19h11a4 4 0 0 0 .5-8A7 7 0 0 0 5.2 9.5 4.8 4.8 0 0 0 7 19Z" }),
|
|
252
|
-
"cloud-download": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
253
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
254
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
|
|
255
|
-
] }),
|
|
256
|
-
"cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
257
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
258
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
|
|
259
|
-
] }),
|
|
260
|
-
server: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
261
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
|
|
262
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
|
|
263
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
|
|
264
|
-
] }),
|
|
265
|
-
desktop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
266
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
|
|
267
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 21h8M12 17v4" })
|
|
268
|
-
] }),
|
|
269
|
-
laptop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
270
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
|
|
271
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
|
|
272
|
-
] }),
|
|
273
|
-
mobile: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
274
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
|
|
275
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
276
|
-
] }),
|
|
277
|
-
tablet: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
278
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
279
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
280
|
-
] }),
|
|
281
|
-
printer: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
282
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
|
|
283
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
|
|
284
|
-
] }),
|
|
285
|
-
camera: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
286
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
|
|
287
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "13", r: "4" })
|
|
288
|
-
] }),
|
|
289
|
-
video: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
290
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
|
|
291
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
|
|
292
|
-
] }),
|
|
293
|
-
microphone: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
294
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
|
|
295
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
|
|
296
|
-
] }),
|
|
297
|
-
"volume-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
298
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
|
|
299
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
|
|
300
|
-
] }),
|
|
301
|
-
"volume-off": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
|
|
302
|
-
"speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
303
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
304
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
|
|
305
|
-
] }),
|
|
306
|
-
"speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
307
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
308
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
|
|
309
|
-
] }),
|
|
310
|
-
wifi: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9a14 14 0 0 1 18 0M6 13a9 9 0 0 1 12 0M9.5 17a4 4 0 0 1 5 0M12 21v.1" }) }),
|
|
311
|
-
power: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
312
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v9" }),
|
|
313
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
|
|
314
|
-
] }),
|
|
315
|
-
key: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
316
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
|
|
317
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
|
|
318
|
-
] }),
|
|
319
|
-
shield: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
320
|
-
"shield-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
321
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
322
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
|
|
323
|
-
] }),
|
|
324
|
-
bug: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 9h8v7a4 4 0 0 1-8 0V9ZM9 9a3 3 0 0 1 6 0M5 11h3M16 11h3M5 16h3M16 16h3M7 5l2 2M17 5l-2 2" }) }),
|
|
325
|
-
bulb: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
326
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 15a7 7 0 1 1 8 0c-1.2.8-1.5 1.8-1.5 3h-5c0-1.2-.3-2.2-1.5-3Z" }),
|
|
327
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.5 21h5" })
|
|
328
|
-
] }),
|
|
329
|
-
rocket: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
330
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 16c-2-1-4-1-5 0 0-3 1-5 4-6M14 6c3-3 6-3 7-3 0 1 0 4-3 7l-6 6-4-4 6-6Z" }),
|
|
331
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
|
|
332
|
-
] }),
|
|
333
|
-
target: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
334
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
335
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
|
|
336
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
337
|
-
] }),
|
|
338
|
-
trophy: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
339
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
|
|
340
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
|
|
341
|
-
] }),
|
|
342
|
-
"shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
343
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
|
|
344
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
|
|
345
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "17", cy: "20", r: "1" })
|
|
346
|
-
] }),
|
|
347
|
-
"shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
348
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
|
|
349
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
|
|
350
|
-
] }),
|
|
351
|
-
shop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
352
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
|
|
353
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 21v-6h6v6" })
|
|
354
|
-
] }),
|
|
355
|
-
wallet: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
356
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
|
|
357
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
|
|
358
|
-
] }),
|
|
359
|
-
bank: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
|
|
360
|
-
calculator: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
361
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
362
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
|
|
363
|
-
] }),
|
|
364
|
-
tag: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
365
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
|
|
366
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
|
|
367
|
-
] }),
|
|
368
|
-
tags: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
369
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
|
|
370
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
|
|
371
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
|
|
372
|
-
] }),
|
|
373
|
-
message: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
|
|
374
|
-
comments: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
375
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
|
|
376
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
|
|
377
|
-
] }),
|
|
378
|
-
send: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
|
|
379
|
-
share: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
380
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
|
|
381
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
|
|
382
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
|
|
383
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
|
|
384
|
-
] }),
|
|
385
|
-
paperclip: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
|
|
386
|
-
location: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
387
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
|
|
388
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
|
|
389
|
-
] }),
|
|
390
|
-
compass: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
391
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
392
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
|
|
393
|
-
] }),
|
|
394
|
-
car: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
395
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
|
|
396
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
|
|
397
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "17", cy: "18", r: "2" })
|
|
398
|
-
] }),
|
|
399
|
-
truck: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
400
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
|
|
401
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
|
|
402
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "19", r: "2" })
|
|
403
|
-
] }),
|
|
404
|
-
gift: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
405
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
|
|
406
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
|
|
407
|
-
] }),
|
|
408
|
-
coffee: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
409
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h13v6a6 6 0 0 1-6 6H10a6 6 0 0 1-6-6V8ZM17 10h2a3 3 0 0 1 0 6h-3" }),
|
|
410
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4v1M12 3v2" })
|
|
411
|
-
] }),
|
|
412
|
-
experiment: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
413
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
|
|
414
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 16h10" })
|
|
415
|
-
] }),
|
|
416
|
-
tool: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 6a5 5 0 0 0-6-3l3 3-3 3-3-3a5 5 0 0 0 6 6l7 7a2 2 0 0 0 3-3l-7-7Z" }) }),
|
|
417
|
-
appstore: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
418
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
|
|
419
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
|
|
420
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
|
|
421
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
|
|
422
|
-
] }),
|
|
423
|
-
puzzle: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h4.2a2.8 2.8 0 1 0 5.6 0H21v6h-2.2a2.8 2.8 0 1 0 0 5.6H21V21h-6.4v-2.2a2.8 2.8 0 1 0-5.6 0V21H3v-6.4h2.2a2.8 2.8 0 1 0 0-5.6H3V3h6Z" }) }),
|
|
424
|
-
partition: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
425
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
|
|
426
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
|
|
427
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
|
|
428
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
|
|
429
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "16", r: "2" })
|
|
430
|
-
] }),
|
|
431
|
-
branches: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
432
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
|
|
433
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
|
|
434
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
|
|
435
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
|
|
436
|
-
] }),
|
|
437
|
-
scan: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
|
|
438
|
-
"qr-code": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
439
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
|
|
440
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
|
|
441
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
|
|
442
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
|
|
443
|
-
] }),
|
|
444
|
-
barcode: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
|
|
445
|
-
"user-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
446
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
447
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M19 14v7M15.5 17.5h7" })
|
|
448
|
-
] }),
|
|
449
|
-
"user-minus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
450
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
451
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M15.5 17.5h7" })
|
|
452
|
-
] }),
|
|
453
|
-
smile: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
454
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
455
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
|
|
456
|
-
] }),
|
|
457
|
-
meh: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
458
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
459
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
|
|
460
|
-
] }),
|
|
461
|
-
frown: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
462
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
463
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
|
|
464
|
-
] }),
|
|
465
|
-
"game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
466
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
|
|
467
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
|
|
468
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.5 21c.2-4.9 1.8-7.3 4.5-7.3s4.3 2.4 4.5 7.3M9.4 15.2 7 18m7.6-2.8L17 18M10 21l2-4 2 4" })
|
|
469
|
-
] }),
|
|
470
|
-
"game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
471
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
|
|
472
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
|
|
473
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.2 21c.3-5 1.9-7.4 4.8-7.4s4.5 2.4 4.8 7.4M9.2 14.8 7 18.2m7.8-3.4 2.2 3.4M9.5 21l2.5-4 2.5 4" }),
|
|
474
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
|
|
475
|
-
] }),
|
|
476
|
-
"game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
477
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5.2 8.2.7-4 3.3 2.2A9 9 0 0 1 12 6c1 0 1.9.1 2.8.4l3.3-2.2.7 4A7.7 7.7 0 0 1 20 13c0 4.3-3.5 7.7-8 7.7S4 17.3 4 13c0-1.8.4-3.4 1.2-4.8Z" }),
|
|
478
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.3 12h.1m7.2 0h.1M9 16c1.8 1.3 4.2 1.3 6 0m-3-1.5v1M7 18l-2.2 2M17 18l2.2 2" })
|
|
479
|
-
] }),
|
|
480
|
-
"game-gem": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
481
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
|
|
482
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
|
|
483
|
-
] }),
|
|
484
|
-
"game-ingot": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
485
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 9.5c2.2 1 4.1 1.5 5.8 1.6L12 6l2.2 5.1c1.7-.1 3.6-.6 5.8-1.6-.3 5.1-2.9 8.4-8 10-5.1-1.6-7.7-4.9-8-10Z" }),
|
|
486
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4.6 10.1 3 6.5c2.3 1.2 4.2 1.6 5.8 1.2M19.4 10.1 21 6.5c-2.3 1.2-4.2 1.6-5.8 1.2M7 16.3c3.3 1 6.7 1 10 0" })
|
|
487
|
-
] }),
|
|
488
|
-
"game-sword": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
489
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
|
|
490
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
|
|
491
|
-
] }),
|
|
492
|
-
"game-robe": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
493
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 4 3.5 2 3.5-2 4 4-2.5 3-1.2-1V21H8.2V10L7 11 4.5 8l4-4Z" }),
|
|
494
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
|
|
495
|
-
] }),
|
|
496
|
-
"game-pants": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
497
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
|
|
498
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7h10M12 3v8" })
|
|
499
|
-
] }),
|
|
500
|
-
"game-pendant": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
501
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
|
|
502
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 10.6c-2.7 1.8-4 3.8-4 6a4 4 0 0 0 8 0c0-2.2-1.3-4.2-4-6Z" }),
|
|
503
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
|
|
504
|
-
] }),
|
|
505
|
-
"game-necklace": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
506
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
|
|
507
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
|
|
508
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
|
|
509
|
-
] }),
|
|
510
|
-
"game-pill": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
511
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6.2 17.8a5.7 5.7 0 0 1 0-8.1l3.5-3.5a5.7 5.7 0 1 1 8.1 8.1l-3.5 3.5a5.7 5.7 0 0 1-8.1 0Z" }),
|
|
512
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 8 8 8" }),
|
|
513
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
|
|
514
|
-
] }),
|
|
515
|
-
"game-potion": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
516
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h6M10 3v5l-5 7.5A3.5 3.5 0 0 0 8 21h8a3.5 3.5 0 0 0 3-5.5L14 8V3" }),
|
|
517
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 15h10M9.5 12h5" })
|
|
518
|
-
] }),
|
|
519
|
-
"game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
520
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3h8l-1 4c2.6 1.2 4 3.5 4 6.8V21H5v-7.2C5 10.5 6.4 8.2 9 7L8 3Z" }),
|
|
521
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
|
|
522
|
-
] }),
|
|
523
|
-
"game-flame": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
524
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M13.8 2.5c.6 3.6-2.1 4.8-2.1 7.2 0 1.1.7 1.9 1.7 1.9 1.8 0 2.4-2.1 2-4.1 2.6 2 4.1 4.6 4.1 7.4A7.5 7.5 0 0 1 4.5 15c0-3.5 1.8-6.5 5.2-9-.2 2.3.8 3.4 1.8 3.7-.4-2.6.3-5.1 2.3-7.2Z" }),
|
|
525
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21c-2 0-3.3-1.3-3.3-3.2 0-1.5.9-2.8 2.6-4.2 0 1.7.8 2.5 1.7 2.5 1 0 1.7-.9 1.5-2.3 1.2 1.2 1.8 2.5 1.8 4A4 4 0 0 1 12 21Z" })
|
|
526
|
-
] }),
|
|
527
|
-
"game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
528
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
|
|
529
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.2 2.2m9 9 2.2 2.2m0-13.4-2.2 2.2m-9 9-2.2 2.2" }),
|
|
530
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
|
|
531
|
-
] }),
|
|
532
|
-
"game-herb": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
533
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21V9" }),
|
|
534
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 13c-5.5.1-8-2.6-8-7.5 5-.2 7.8 2.1 8 7.5Zm0 4c5.5.1 8-2.6 8-7.5-5-.2-7.8 2.1-8 7.5Z" })
|
|
535
|
-
] }),
|
|
536
|
-
"game-meditate": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
537
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
|
|
538
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 11c1-1.5 2.2-2.2 3.5-2.2s2.5.7 3.5 2.2l2.8 4M5.7 15l2.8-4M4 19c2.5-2.2 5.2-2.5 8-1 2.8-1.5 5.5-1.2 8 1M7 21h10" }),
|
|
539
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
|
|
540
|
-
] }),
|
|
541
|
-
"game-backpack": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
542
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
|
|
543
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
|
|
544
|
-
] }),
|
|
545
|
-
"game-qi": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
546
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
547
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 8.5c2.5-2.8 7-2.2 8.7.2 1.7 2.4.9 5.6-1.6 6.8-2.4 1.2-5.5-.1-5.8-2.5-.2-1.8 1.4-3.1 3.2-2.8 1.8.3 2.6 2.2 1.7 3.5" })
|
|
548
|
-
] })
|
|
549
|
-
};
|
|
550
|
-
|
|
551
|
-
// src/components/Icon.tsx
|
|
552
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
553
|
-
var coreIconPaths = {
|
|
554
|
-
search: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
555
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
556
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2" })
|
|
557
|
-
] }),
|
|
558
|
-
plus: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 4v16M4 12h16" }),
|
|
559
|
-
minus: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 12h16" }),
|
|
560
|
-
close: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 5 14 14M19 5 5 19" }),
|
|
561
|
-
check: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 12.5 5.2 5L20 6.5" }),
|
|
562
|
-
info: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
563
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
564
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 11v6M12 7.2v.1" })
|
|
565
|
-
] }),
|
|
566
|
-
question: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
567
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
568
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.8 9a2.4 2.4 0 1 1 3.5 2.2c-.9.5-1.3 1.1-1.3 2.1M12 16.8v.1" })
|
|
569
|
-
] }),
|
|
570
|
-
warning: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
571
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.3 4.1 2.6 18a2 2 0 0 0 1.8 3h15.2a2 2 0 0 0 1.8-3L13.7 4.1a2 2 0 0 0-3.4 0Z" }),
|
|
572
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v4M12 17v.1" })
|
|
573
|
-
] }),
|
|
574
|
-
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
575
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
576
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 12 2.7 2.7L16.5 9" })
|
|
577
|
-
] }),
|
|
578
|
-
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
579
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
580
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 9 6 6M15 9l-6 6" })
|
|
581
|
-
] }),
|
|
582
|
-
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
583
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
584
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
585
|
-
] }),
|
|
586
|
-
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
587
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
588
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 12h8" })
|
|
589
|
-
] }),
|
|
590
|
-
"chevron-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.5 5-7 7 7 7" }),
|
|
591
|
-
"chevron-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
|
|
592
|
-
"chevron-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
|
|
593
|
-
"chevron-down": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
|
|
594
|
-
"double-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
595
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 5-7 7 7 7" }),
|
|
596
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m19 5-7 7 7 7" })
|
|
597
|
-
] }),
|
|
598
|
-
"double-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
599
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 5 7 7-7 7" }),
|
|
600
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
601
|
-
] }),
|
|
602
|
-
"arrow-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
603
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 5-7 7 7 7" }),
|
|
604
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h18" })
|
|
605
|
-
] }),
|
|
606
|
-
"arrow-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
607
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m14 5 7 7-7 7" }),
|
|
608
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h18" })
|
|
609
|
-
] }),
|
|
610
|
-
"arrow-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
611
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 10 7-7 7 7" }),
|
|
612
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v18" })
|
|
613
|
-
] }),
|
|
614
|
-
"arrow-down": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
615
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 14 7 7 7-7" }),
|
|
616
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v18" })
|
|
617
|
-
] }),
|
|
618
|
-
menu: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
|
|
619
|
-
"more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
|
|
620
|
-
"more-vertical": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
|
|
621
|
-
home: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
622
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
|
|
623
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
|
|
624
|
-
] }),
|
|
625
|
-
user: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
626
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
|
|
627
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
|
|
628
|
-
] }),
|
|
629
|
-
users: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
630
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
|
|
631
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
|
|
632
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 5.2a3.5 3.5 0 0 1 0 6.6M16.2 14.5c2.9.5 4.4 2.3 4.9 5.5" })
|
|
633
|
-
] }),
|
|
634
|
-
settings: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
635
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3.5" }),
|
|
636
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 4.8 10 2 14 2 14 4.8 15.68 5.49 17.66 3.51 20.49 6.34 18.51 8.32 19.2 10 22 10 22 14 19.2 14 18.51 15.68 20.49 17.66 17.66 20.49 15.68 18.51 14 19.2 14 22 10 22 10 19.2 8.32 18.51 6.34 20.49 3.51 17.66 5.49 15.68 4.8 14 2 14 2 10 4.8 10 5.49 8.32 3.51 6.34 6.34 3.51 8.32 5.49Z" })
|
|
637
|
-
] }),
|
|
638
|
-
edit: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
639
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
|
|
640
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
|
|
641
|
-
] }),
|
|
642
|
-
copy: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
643
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
|
|
644
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
|
|
645
|
-
] }),
|
|
646
|
-
trash: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
|
|
647
|
-
scissors: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
648
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
|
|
649
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
|
|
650
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
|
|
651
|
-
] }),
|
|
652
|
-
undo: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
653
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 7-5 5 5 5" }),
|
|
654
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
|
|
655
|
-
] }),
|
|
656
|
-
redo: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
657
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m16 7 5 5-5 5" }),
|
|
658
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
|
|
659
|
-
] }),
|
|
660
|
-
"zoom-in": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
661
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
662
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
|
|
663
|
-
] }),
|
|
664
|
-
"zoom-out": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
665
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
666
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
|
|
667
|
-
] }),
|
|
668
|
-
download: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
|
|
669
|
-
upload: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
|
|
670
|
-
refresh: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
671
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 4v4.686h-4.686" }),
|
|
672
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
|
|
673
|
-
] }),
|
|
674
|
-
loader: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1" }),
|
|
675
|
-
calendar: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
676
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
|
|
677
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
|
|
678
|
-
] }),
|
|
679
|
-
clock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
680
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
681
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 7v5l3.5 2" })
|
|
682
|
-
] }),
|
|
683
|
-
mail: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
684
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
|
|
685
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 7 8 6 8-6" })
|
|
686
|
-
] }),
|
|
687
|
-
phone: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.2 3.5 5.4 4.8c-1 .5-1.5 1.7-1.1 2.8 2.2 5.9 6.2 9.9 12.1 12.1 1.1.4 2.3-.1 2.8-1.1l1.3-2.8-4.2-2-1.4 2.1c-2.8-1.2-5.6-4-6.8-6.8l2.1-1.4-2-4.2Z" }),
|
|
688
|
-
link: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
689
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9.5 14.5 5-5" }),
|
|
690
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7.5 16.5 6 18a3.5 3.5 0 0 1-5-5l3-3a3.5 3.5 0 0 1 5 0M16.5 7.5 18 6a3.5 3.5 0 0 1 5 5l-3 3a3.5 3.5 0 0 1-5 0" })
|
|
691
|
-
] }),
|
|
692
|
-
"external-link": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
693
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
|
|
694
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
|
|
695
|
-
] }),
|
|
696
|
-
eye: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
697
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z" }),
|
|
698
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
699
|
-
] }),
|
|
700
|
-
"eye-off": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 3 18 18M10.6 6.1A10 10 0 0 1 12 6c6 0 9.5 6 9.5 6a14.5 14.5 0 0 1-2.2 3M6.4 6.4C3.9 8.2 2.5 12 2.5 12s3.5 6 9.5 6a9.7 9.7 0 0 0 3-.5M9.9 9.9a3 3 0 0 0 4.2 4.2" }) }),
|
|
701
|
-
lock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
702
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
703
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
|
|
704
|
-
] }),
|
|
705
|
-
unlock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
706
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
707
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10V7a4 4 0 0 1 7.5-2M12 14v3" })
|
|
708
|
-
] }),
|
|
709
|
-
bell: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
710
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9Z" }),
|
|
711
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 21h4" })
|
|
712
|
-
] }),
|
|
713
|
-
star: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9L12 3Z" }),
|
|
714
|
-
heart: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20.8 5.8a5.5 5.5 0 0 0-7.8 0L12 6.9l-1-1.1a5.5 5.5 0 1 0-7.8 7.8L12 21l8.8-7.4a5.5 5.5 0 0 0 0-7.8Z" }),
|
|
715
|
-
file: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
716
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
717
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4" })
|
|
718
|
-
] }),
|
|
719
|
-
folder: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
720
|
-
image: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
721
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
722
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
723
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
|
|
724
|
-
] }),
|
|
725
|
-
filter: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
|
|
726
|
-
"sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
727
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
|
|
728
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
|
|
729
|
-
] }),
|
|
730
|
-
"sort-descending": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
731
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 5v14M3.5 15.5 7 19l3.5-3.5" }),
|
|
732
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M13 7h4M13 12h6M13 17h8" })
|
|
733
|
-
] }),
|
|
734
|
-
play: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
735
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
736
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 8 6 4-6 4V8Z" })
|
|
737
|
-
] }),
|
|
738
|
-
pause: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
739
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
740
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.5 9v6M14.5 9v6" })
|
|
741
|
-
] }),
|
|
742
|
-
book: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
743
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 5.5A2.5 2.5 0 0 1 6.5 3H11v17H6.5A2.5 2.5 0 0 0 4 22V5.5Z" }),
|
|
744
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 5.5A2.5 2.5 0 0 0 17.5 3H13v17h4.5A2.5 2.5 0 0 1 20 22V5.5Z" })
|
|
745
|
-
] }),
|
|
746
|
-
component: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
747
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
748
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
749
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "14", width: "6", height: "6", rx: "1.5" }),
|
|
750
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "14", width: "6", height: "6", rx: "1.5" })
|
|
751
|
-
] }),
|
|
752
|
-
token: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
753
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
754
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.1 2.1M16.6 16.6l2.1 2.1M18.7 5.3l-2.1 2.1M7.4 16.6l-2.1 2.1" })
|
|
755
|
-
] }),
|
|
756
|
-
sun: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
757
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3.6" }),
|
|
758
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5v2M12 19.5v2M2.5 12h2M19.5 12h2M5.3 5.3l1.4 1.4M17.3 17.3l1.4 1.4M18.7 5.3l-1.4 1.4M6.7 17.3l-1.4 1.4" })
|
|
759
|
-
] }),
|
|
760
|
-
moon: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 15.2A8 8 0 0 1 8.8 4 8.5 8.5 0 1 0 20 15.2Z" }),
|
|
761
|
-
code: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 18-6-6 6-6M15 6l6 6-6 6" }),
|
|
762
|
-
github: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 19c-4 1.2-4-2-5-2.5M14 22v-3.1c0-.9.3-1.5.8-1.9 2.7-.3 5.5-1.3 5.5-6A4.7 4.7 0 0 0 19 7.7 4.4 4.4 0 0 0 18.9 4S17.8 3.7 15 5.3a11.7 11.7 0 0 0-6 0C6.2 3.7 5.1 4 5.1 4A4.4 4.4 0 0 0 5 7.7 4.7 4.7 0 0 0 3.7 11c0 4.7 2.8 5.7 5.5 6 .5.4.8 1 .8 1.9V22" })
|
|
763
|
-
};
|
|
764
|
-
var iconPaths = { ...coreIconPaths, ...extendedIconPaths };
|
|
765
|
-
var ICON_NAMES = Object.freeze(Object.keys(iconPaths));
|
|
766
|
-
var filledIconPaths = {
|
|
767
|
-
info: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
768
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
769
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 10.5v6M12 7.2v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
770
|
-
] }),
|
|
771
|
-
question: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
772
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
773
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.6 9a2.5 2.5 0 1 1 3.6 2.3c-.8.5-1.2 1.1-1.2 2.1M12 16.8v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
774
|
-
] }),
|
|
775
|
-
warning: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
776
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.3 3.5 1.8 19a2 2 0 0 0 1.8 3h16.8a2 2 0 0 0 1.8-3L13.7 3.5a2 2 0 0 0-3.4 0Z", fill: "currentColor", stroke: "none" }),
|
|
777
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v5M12 18v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
778
|
-
] }),
|
|
779
|
-
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
780
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
781
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m7.5 12 3 3 6-6", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
782
|
-
] }),
|
|
783
|
-
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
784
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
785
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.8 8.8 6.4 6.4M15.2 8.8l-6.4 6.4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
786
|
-
] }),
|
|
787
|
-
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
788
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
789
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 7.5v9M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
790
|
-
] }),
|
|
791
|
-
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
792
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
793
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
794
|
-
] }),
|
|
795
|
-
home: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.6 10.8 12 2.8l9.4 8a1 1 0 0 1-1.3 1.5l-.6-.5V21h-5.2v-6.2H9.7V21H4.5v-9.2l-.6.5a1 1 0 1 1-1.3-1.5Z", fill: "currentColor", stroke: "none" }),
|
|
796
|
-
user: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
797
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "7.5", r: "4.5", fill: "currentColor", stroke: "none" }),
|
|
798
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3.5 21c.7-5 3.6-7.5 8.5-7.5s7.8 2.5 8.5 7.5H3.5Z", fill: "currentColor", stroke: "none" })
|
|
799
|
-
] }),
|
|
800
|
-
users: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
801
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "8.5", cy: "8", r: "3.8", fill: "currentColor", stroke: "none" }),
|
|
802
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "17", cy: "8.5", r: "3", fill: "currentColor", stroke: "none", opacity: ".7" }),
|
|
803
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M1.8 21c.6-4.6 2.8-7 6.7-7s6.1 2.4 6.7 7H1.8ZM14.4 15.2c3.9-.2 6.4 1.7 7 5.8h-4.5a9.9 9.9 0 0 0-2.5-5.8Z", fill: "currentColor", stroke: "none" })
|
|
804
|
-
] }),
|
|
805
|
-
trash: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3h8l1 3h4v2H3V6h4l1-3Zm-2.5 7h13l-1 11h-11l-1-11Z", fill: "currentColor", stroke: "none" }),
|
|
806
|
-
bell: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5a2 2 0 0 1 2 1.6c3 .9 5 3.6 5 6.9v4.3l2 3.2H3l2-3.2V11c0-3.3 2-6 5-6.9a2 2 0 0 1 2-1.6ZM9.2 20h5.6a3 3 0 0 1-5.6 0Z", fill: "currentColor", stroke: "none" }),
|
|
807
|
-
star: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 2.2 3 6 6.6 1-4.8 4.6 1.1 6.6-5.9-3.1-5.9 3.1 1.1-6.6-4.8-4.6 6.6-1 3-6Z", fill: "currentColor", stroke: "none" }),
|
|
808
|
-
heart: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 21.3 3.1 13.7A5.8 5.8 0 0 1 11 5.2l1 1 1-1a5.8 5.8 0 0 1 7.9 8.5L12 21.3Z", fill: "currentColor", stroke: "none" }),
|
|
809
|
-
mail: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
810
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "15", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
811
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4.5 7 7.5 5.8L19.5 7", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
812
|
-
] }),
|
|
813
|
-
lock: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 10V7a5 5 0 0 1 10 0v3h1.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Zm2.5 0h5V7a2.5 2.5 0 0 0-5 0v3Z", fill: "currentColor", stroke: "none" }),
|
|
814
|
-
unlock: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 10V7a5 5 0 0 1 9.5-2.2l-2.2 1.1A2.5 2.5 0 0 0 9.5 7v3h9A2.5 2.5 0 0 1 21 12.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Z", fill: "currentColor", stroke: "none" }),
|
|
815
|
-
calendar: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
816
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
817
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
818
|
-
] }),
|
|
819
|
-
clock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
820
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
821
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 6.5V12l4 2.3", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
822
|
-
] }),
|
|
823
|
-
file: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 2.5h10l4 4V22H5V2.5Zm9 1.8V8h3.7L14 4.3Z", fill: "currentColor", stroke: "none" }),
|
|
824
|
-
folder: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.5 5h7l2.2 2.5h9.8V20H2.5V5Z", fill: "currentColor", stroke: "none" }),
|
|
825
|
-
image: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
826
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "3.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
827
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4.5 18 4.3-4.6 3.4 3 2.5-2.6 4.8 4.2", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.7" }),
|
|
828
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "8", cy: "8.5", r: "1.7", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
829
|
-
] }),
|
|
830
|
-
filter: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2 4h20l-7.8 9v6.2L9.8 22v-9L2 4Z", fill: "currentColor", stroke: "none" }),
|
|
831
|
-
play: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
832
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
833
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 7.8 6.5 4.2-6.5 4.2V7.8Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
834
|
-
] }),
|
|
835
|
-
pause: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
836
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
837
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.5 7.5h2.5v9H8.5v-9Zm4.5 0h2.5v9H13v-9Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
838
|
-
] }),
|
|
839
|
-
book: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 4.5A3.5 3.5 0 0 1 6.5 1H11v19H6.5A3.5 3.5 0 0 0 3 23V4.5ZM21 4.5A3.5 3.5 0 0 0 17.5 1H13v19h4.5A3.5 3.5 0 0 1 21 23V4.5Z", fill: "currentColor", stroke: "none" }),
|
|
840
|
-
component: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
841
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
842
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "13", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
843
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
844
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "13", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" })
|
|
845
|
-
] }),
|
|
846
|
-
token: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
847
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "5", fill: "currentColor", stroke: "none" }),
|
|
848
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 1v4M12 19v4M1 12h4M19 12h4M4.2 4.2 7 7M17 17l2.8 2.8M19.8 4.2 17 7M7 17l-2.8 2.8", stroke: "currentColor", strokeWidth: "2.2" })
|
|
849
|
-
] })
|
|
850
|
-
};
|
|
851
|
-
var FILLED_ICON_NAMES = Object.freeze(Object.keys(filledIconPaths));
|
|
852
|
-
var Icon = (0, import_react2.forwardRef)(function Icon2({ name, size = "1em", strokeWidth = 1.8, rotate = 0, spin = false, pulse = false, label, variant = "outline", className = "", style, ...props }, ref) {
|
|
853
|
-
const resolvedSize = typeof size === "number" ? `${size}px` : size;
|
|
854
|
-
const mergedStyle = { "--sia-icon-size": resolvedSize, "--sia-icon-rotate": `${rotate}deg`, ...style };
|
|
855
|
-
const animationClass = spin ? " sia-icon--spin" : pulse ? " sia-icon--pulse" : "";
|
|
856
|
-
const filledPath = filledIconPaths[name];
|
|
857
|
-
const resolvedVariant = variant === "filled" && filledPath ? "filled" : "outline";
|
|
858
|
-
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
859
|
-
"span",
|
|
860
|
-
{
|
|
861
|
-
ref,
|
|
862
|
-
className: `sia-icon${animationClass} ${className}`.trim(),
|
|
863
|
-
"data-variant": resolvedVariant,
|
|
864
|
-
role: label ? "img" : void 0,
|
|
865
|
-
"aria-label": label,
|
|
866
|
-
"aria-hidden": label ? void 0 : true,
|
|
867
|
-
style: mergedStyle,
|
|
868
|
-
...props,
|
|
869
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", focusable: "false", children: resolvedVariant === "filled" ? filledPath : iconPaths[name] })
|
|
870
|
-
}
|
|
871
|
-
);
|
|
872
|
-
});
|
|
27
|
+
// src/components/titleTooltip.tsx
|
|
28
|
+
var import_client = require("react-dom/client");
|
|
873
29
|
|
|
874
30
|
// src/components/PopupPortal.tsx
|
|
875
|
-
var
|
|
31
|
+
var import_react = require("react");
|
|
876
32
|
var import_react_dom = require("react-dom");
|
|
877
|
-
var
|
|
33
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
878
34
|
function setForwardedRef(ref, value) {
|
|
879
35
|
if (typeof ref === "function") ref(value);
|
|
880
36
|
else if (ref) ref.current = value;
|
|
@@ -882,7 +38,7 @@ function setForwardedRef(ref, value) {
|
|
|
882
38
|
function clamp(value, min, max) {
|
|
883
39
|
return Math.min(Math.max(value, min), Math.max(min, max));
|
|
884
40
|
}
|
|
885
|
-
var PopupPortal = (0,
|
|
41
|
+
var PopupPortal = (0, import_react.forwardRef)(function PopupPortal2({
|
|
886
42
|
anchorRef,
|
|
887
43
|
open = true,
|
|
888
44
|
placement = "bottom-start",
|
|
@@ -893,9 +49,9 @@ var PopupPortal = (0, import_react3.forwardRef)(function PopupPortal2({
|
|
|
893
49
|
children,
|
|
894
50
|
...props
|
|
895
51
|
}, forwardedRef) {
|
|
896
|
-
const popupRef = (0,
|
|
897
|
-
const [position, setPosition] = (0,
|
|
898
|
-
(0,
|
|
52
|
+
const popupRef = (0, import_react.useRef)(null);
|
|
53
|
+
const [position, setPosition] = (0, import_react.useState)();
|
|
54
|
+
(0, import_react.useLayoutEffect)(() => {
|
|
899
55
|
if (!open || typeof document === "undefined") {
|
|
900
56
|
setPosition(void 0);
|
|
901
57
|
return;
|
|
@@ -960,7 +116,7 @@ var PopupPortal = (0, import_react3.forwardRef)(function PopupPortal2({
|
|
|
960
116
|
}, [anchorRef, offset, open, placement, viewportPadding]);
|
|
961
117
|
if (!open || typeof document === "undefined") return null;
|
|
962
118
|
return (0, import_react_dom.createPortal)(
|
|
963
|
-
/* @__PURE__ */ (0,
|
|
119
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
964
120
|
"div",
|
|
965
121
|
{
|
|
966
122
|
ref: (node) => {
|
|
@@ -978,7 +134,7 @@ var PopupPortal = (0, import_react3.forwardRef)(function PopupPortal2({
|
|
|
978
134
|
left: position?.left ?? 0,
|
|
979
135
|
visibility: position ? "visible" : "hidden"
|
|
980
136
|
},
|
|
981
|
-
...props,
|
|
137
|
+
...withTitleTooltip(props),
|
|
982
138
|
children
|
|
983
139
|
}
|
|
984
140
|
),
|
|
@@ -986,9 +142,979 @@ var PopupPortal = (0, import_react3.forwardRef)(function PopupPortal2({
|
|
|
986
142
|
);
|
|
987
143
|
});
|
|
988
144
|
|
|
145
|
+
// src/components/titleTooltip.tsx
|
|
146
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
147
|
+
var documents = /* @__PURE__ */ new WeakSet();
|
|
148
|
+
function withTitleTooltip(props) {
|
|
149
|
+
if (!props || typeof props !== "object" || !("title" in props)) return props;
|
|
150
|
+
const { title, ...rest } = props;
|
|
151
|
+
if (typeof document !== "undefined") installTitleTooltips(document);
|
|
152
|
+
return { ...rest, "data-sia-title": title == null ? void 0 : String(title) };
|
|
153
|
+
}
|
|
154
|
+
function installTitleTooltips(doc) {
|
|
155
|
+
if (documents.has(doc)) return;
|
|
156
|
+
documents.add(doc);
|
|
157
|
+
let hovered = null;
|
|
158
|
+
let focused = null;
|
|
159
|
+
let active = null;
|
|
160
|
+
let pending = null;
|
|
161
|
+
let timer;
|
|
162
|
+
let root;
|
|
163
|
+
let observer;
|
|
164
|
+
let tooltipId = "";
|
|
165
|
+
const candidate = (target) => {
|
|
166
|
+
if (!(target instanceof Element)) return null;
|
|
167
|
+
const element = target.closest("[data-sia-title]");
|
|
168
|
+
return element?.getAttribute("data-sia-title") && !element.closest(".sia-floating") ? element : null;
|
|
169
|
+
};
|
|
170
|
+
const hasExplicitTooltip = (target) => target instanceof Element && Boolean(target.closest(".sia-floating"));
|
|
171
|
+
const hide = () => {
|
|
172
|
+
clearTimeout(timer);
|
|
173
|
+
pending = null;
|
|
174
|
+
observer?.disconnect();
|
|
175
|
+
observer = void 0;
|
|
176
|
+
if (active) {
|
|
177
|
+
const ids = (active.getAttribute("aria-describedby") ?? "").split(/\s+/).filter((id) => id && id !== tooltipId);
|
|
178
|
+
if (ids.length) active.setAttribute("aria-describedby", ids.join(" "));
|
|
179
|
+
else active.removeAttribute("aria-describedby");
|
|
180
|
+
}
|
|
181
|
+
active = null;
|
|
182
|
+
root?.render(null);
|
|
183
|
+
};
|
|
184
|
+
const render = () => {
|
|
185
|
+
const text = active?.getAttribute("data-sia-title");
|
|
186
|
+
if (!active?.isConnected || !text) {
|
|
187
|
+
hide();
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
if (!root) {
|
|
191
|
+
const host = doc.createElement("div");
|
|
192
|
+
host.setAttribute("data-sia-title-tooltip-host", "");
|
|
193
|
+
doc.body.append(host);
|
|
194
|
+
root = (0, import_client.createRoot)(host);
|
|
195
|
+
tooltipId = `sia-title-tooltip-${Math.random().toString(36).slice(2)}`;
|
|
196
|
+
}
|
|
197
|
+
const ids = new Set((active.getAttribute("aria-describedby") ?? "").split(/\s+/).filter(Boolean));
|
|
198
|
+
ids.add(tooltipId);
|
|
199
|
+
active.setAttribute("aria-describedby", [...ids].join(" "));
|
|
200
|
+
root.render(/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
201
|
+
PopupPortal,
|
|
202
|
+
{
|
|
203
|
+
anchorRef: { current: active },
|
|
204
|
+
placement: "top-start",
|
|
205
|
+
id: tooltipId,
|
|
206
|
+
role: "tooltip",
|
|
207
|
+
className: "sia-title-tooltip",
|
|
208
|
+
children: text
|
|
209
|
+
}
|
|
210
|
+
));
|
|
211
|
+
};
|
|
212
|
+
const show = (element) => {
|
|
213
|
+
if (!element && !active && !pending) return;
|
|
214
|
+
if (element && (element === active || element === pending)) return;
|
|
215
|
+
hide();
|
|
216
|
+
if (!element) return;
|
|
217
|
+
pending = element;
|
|
218
|
+
timer = setTimeout(() => {
|
|
219
|
+
pending = null;
|
|
220
|
+
if (!element.isConnected) return;
|
|
221
|
+
active = element;
|
|
222
|
+
render();
|
|
223
|
+
if (!active) return;
|
|
224
|
+
observer = new MutationObserver(() => {
|
|
225
|
+
if (!active?.isConnected) hide();
|
|
226
|
+
else if (active.getAttribute("data-sia-title") !== doc.getElementById(tooltipId)?.textContent) render();
|
|
227
|
+
});
|
|
228
|
+
observer.observe(doc.body, { childList: true, subtree: true, attributes: true, attributeFilter: ["data-sia-title"] });
|
|
229
|
+
}, 600);
|
|
230
|
+
};
|
|
231
|
+
doc.addEventListener("pointerover", (event) => {
|
|
232
|
+
if (event.pointerType === "touch") return;
|
|
233
|
+
hovered = candidate(event.target);
|
|
234
|
+
if (hasExplicitTooltip(event.target)) hide();
|
|
235
|
+
else show(hovered ?? focused);
|
|
236
|
+
}, true);
|
|
237
|
+
doc.addEventListener("pointermove", (event) => {
|
|
238
|
+
if (event.pointerType === "touch" || event.buttons) return;
|
|
239
|
+
hovered = candidate(event.target);
|
|
240
|
+
if (!hasExplicitTooltip(event.target)) show(hovered ?? focused);
|
|
241
|
+
}, true);
|
|
242
|
+
doc.addEventListener("pointerout", (event) => {
|
|
243
|
+
if (event.pointerType === "touch") return;
|
|
244
|
+
hovered = candidate(event.relatedTarget);
|
|
245
|
+
if (hasExplicitTooltip(event.relatedTarget)) hide();
|
|
246
|
+
else show(hovered ?? focused);
|
|
247
|
+
}, true);
|
|
248
|
+
doc.addEventListener("focusin", (event) => {
|
|
249
|
+
focused = candidate(event.target);
|
|
250
|
+
if (hasExplicitTooltip(event.target)) hide();
|
|
251
|
+
else show(focused ?? hovered);
|
|
252
|
+
}, true);
|
|
253
|
+
doc.addEventListener("focusout", (event) => {
|
|
254
|
+
focused = candidate(event.relatedTarget);
|
|
255
|
+
show(hovered ?? focused);
|
|
256
|
+
}, true);
|
|
257
|
+
doc.addEventListener("pointerdown", hide, true);
|
|
258
|
+
doc.addEventListener("keydown", (event) => {
|
|
259
|
+
if (event.key === "Escape") hide();
|
|
260
|
+
}, true);
|
|
261
|
+
doc.addEventListener("scroll", hide, true);
|
|
262
|
+
doc.defaultView?.addEventListener("blur", () => {
|
|
263
|
+
hovered = focused = null;
|
|
264
|
+
hide();
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
// src/components/shared.ts
|
|
269
|
+
var import_react2 = require("react");
|
|
270
|
+
var ControlSizeContext = (0, import_react2.createContext)("medium");
|
|
271
|
+
function useControlSize(size) {
|
|
272
|
+
const inherited = (0, import_react2.useContext)(ControlSizeContext);
|
|
273
|
+
return size ?? inherited;
|
|
274
|
+
}
|
|
275
|
+
var PlaceholderModeContext = (0, import_react2.createContext)("default");
|
|
276
|
+
function usePlaceholderMode(mode) {
|
|
277
|
+
const inherited = (0, import_react2.useContext)(PlaceholderModeContext);
|
|
278
|
+
return mode ?? inherited;
|
|
279
|
+
}
|
|
280
|
+
function useControllableState({ value, defaultValue, onChange }) {
|
|
281
|
+
const [internalValue, setInternalValue] = (0, import_react2.useState)(defaultValue);
|
|
282
|
+
const controlled = value !== void 0;
|
|
283
|
+
const currentValue = controlled ? value : internalValue;
|
|
284
|
+
const setValue = (0, import_react2.useCallback)((nextValue) => {
|
|
285
|
+
if (Object.is(currentValue, nextValue)) return;
|
|
286
|
+
if (!controlled) setInternalValue(nextValue);
|
|
287
|
+
onChange?.(nextValue);
|
|
288
|
+
}, [controlled, currentValue, onChange]);
|
|
289
|
+
return [currentValue, setValue];
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// src/components/FloatingPlaceholder.tsx
|
|
293
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
294
|
+
function useFloatingPlaceholder({ mode, placeholder, filled, active = false }) {
|
|
295
|
+
const enabled = usePlaceholderMode(mode) === "floating" && Boolean(placeholder);
|
|
296
|
+
return {
|
|
297
|
+
enabled,
|
|
298
|
+
className: enabled ? ` sia-placeholder-floating${filled ? " sia-placeholder-floating--filled" : ""}${active ? " sia-placeholder-floating--active" : ""}` : "",
|
|
299
|
+
label: enabled ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "sia-floating-placeholder", "aria-hidden": "true", children: placeholder }) : null
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
// src/components/DatePicker.tsx
|
|
304
|
+
var import_react5 = require("react");
|
|
305
|
+
|
|
306
|
+
// src/components/Icon.tsx
|
|
307
|
+
var import_react3 = require("react");
|
|
308
|
+
|
|
309
|
+
// src/components/IconCatalog.tsx
|
|
310
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
311
|
+
var extendedIconPaths = {
|
|
312
|
+
"notepad-file": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
313
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M752 80H272c-70.4 0-128 57.6-128 128v608c0 70.4 57.6 128 128 128h353.6c33.6 0 65.6-12.8 91.2-36.8l126.4-126.4c24-24 36.8-56 36.8-91.2V208c0-70.4-57.6-128-128-128zM208 816V208c0-35.2 28.8-64 64-64h480c35.2 0 64 28.8 64 64v464h-96c-70.4 0-128 57.6-128 128v80H272c-35.2 0-64-28.8-64-64z m462.4 44.8c-4.8 4.8-9.6 8-14.4 11.2v-72c0-35.2 28.8-64 64-64h75.2L670.4 860.8z" }),
|
|
314
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M368 352h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z m128 256H368c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32s-14.4-32-32-32z m-128-96h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z" })
|
|
315
|
+
] }),
|
|
316
|
+
"notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M510.4 243.2c8 27.2 33.6 44.8 60.8 44.8h259.2c0-35.2-28.8-64-64-64H504l6.4 19.2zM484.8 160h281.6c70.4 0 128 57.6 128 128v25.6c30.4 24 51.2 60.8 51.2 102.4v384c0 70.4-57.6 128-128 128H208c-70.4 0-128-57.6-128-128V224c0-70.4 57.6-128 128-128h164.8c46.4 0 89.6 25.6 112 64z m-112 0H208c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h608c35.2 0 64-28.8 64-64V416c0-35.2-28.8-64-64-64H574.4c-56 0-105.6-36.8-121.6-89.6l-19.2-57.6c-8-27.2-32-44.8-60.8-44.8zM272 704h256c17.6 0 32 14.4 32 32s-14.4 32-32 32H272c-17.6 0-32-14.4-32-32s14.4-32 32-32z" }) }),
|
|
317
|
+
"notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
318
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M704 864H192c-89.6 0-160-70.4-160-160V192c0-89.6 70.4-160 160-160h512c89.6 0 160 70.4 160 160v512c0 89.6-70.4 160-160 160zM192 96c-51.2 0-96 44.8-96 96v512c0 51.2 44.8 96 96 96h512c51.2 0 96-44.8 96-96V192c0-51.2-44.8-96-96-96H192z" }),
|
|
319
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M832 992H320c-19.2 0-32-12.8-32-32s12.8-32 32-32h512c51.2 0 96-44.8 96-96V320c0-19.2 12.8-32 32-32s32 12.8 32 32v512c0 89.6-70.4 160-160 160z" })
|
|
320
|
+
] }),
|
|
321
|
+
"step-backward": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
322
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 5v14" }),
|
|
323
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
|
|
324
|
+
] }),
|
|
325
|
+
"step-forward": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
326
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M18 5v14" }),
|
|
327
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
|
|
328
|
+
] }),
|
|
329
|
+
"fast-backward": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
|
|
330
|
+
"fast-forward": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
|
|
331
|
+
"corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
332
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 5-5 5 5 5" }),
|
|
333
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
|
|
334
|
+
] }),
|
|
335
|
+
"corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
336
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15 5 5 5-5 5" }),
|
|
337
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
|
|
338
|
+
] }),
|
|
339
|
+
"swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
340
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
|
|
341
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
|
|
342
|
+
] }),
|
|
343
|
+
"swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
344
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
|
|
345
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
|
|
346
|
+
] }),
|
|
347
|
+
expand: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
|
|
348
|
+
shrink: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
|
|
349
|
+
fullscreen: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
|
|
350
|
+
"fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
|
|
351
|
+
"menu-fold": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
352
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
|
|
353
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m18 9-3 3 3 3" })
|
|
354
|
+
] }),
|
|
355
|
+
"menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
356
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
|
|
357
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m6 9 3 3-3 3" })
|
|
358
|
+
] }),
|
|
359
|
+
login: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
|
|
360
|
+
logout: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
|
|
361
|
+
move: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
362
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3v18M3 12h18" }),
|
|
363
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
|
|
364
|
+
] }),
|
|
365
|
+
"vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
|
|
366
|
+
"vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
|
|
367
|
+
"vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
|
|
368
|
+
"square-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
369
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
370
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
371
|
+
] }),
|
|
372
|
+
"square-minus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
373
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
374
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 12h8" })
|
|
375
|
+
] }),
|
|
376
|
+
"square-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
377
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
378
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 12 3 3 6-7" })
|
|
379
|
+
] }),
|
|
380
|
+
"square-close": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
381
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
382
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
|
|
383
|
+
] }),
|
|
384
|
+
"tab-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
385
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
386
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
|
|
387
|
+
] }),
|
|
388
|
+
"folder-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
389
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
390
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M16 11v6M13 14h6" })
|
|
391
|
+
] }),
|
|
392
|
+
pin: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
|
|
393
|
+
"pin-off": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
|
|
394
|
+
stop: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
395
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
396
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 18 18 6" })
|
|
397
|
+
] }),
|
|
398
|
+
"help-circle": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
399
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
400
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9.7 9a2.5 2.5 0 1 1 3.6 2.3c-.9.5-1.3 1.1-1.3 2.1M12 17v.1" })
|
|
401
|
+
] }),
|
|
402
|
+
save: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
403
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
|
|
404
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
|
|
405
|
+
] }),
|
|
406
|
+
clipboard: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
407
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
408
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
|
|
409
|
+
] }),
|
|
410
|
+
"clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
411
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
412
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
|
|
413
|
+
] }),
|
|
414
|
+
"file-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
415
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
416
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
|
|
417
|
+
] }),
|
|
418
|
+
"file-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
419
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
420
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
|
|
421
|
+
] }),
|
|
422
|
+
"file-warning": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
423
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
424
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
|
|
425
|
+
] }),
|
|
426
|
+
"file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
427
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
428
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
|
|
429
|
+
] }),
|
|
430
|
+
"align-left": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
|
|
431
|
+
"align-center": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
|
|
432
|
+
"align-right": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
|
|
433
|
+
"align-justify": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
|
|
434
|
+
bold: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
|
|
435
|
+
italic: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
|
|
436
|
+
underline: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
|
|
437
|
+
strikethrough: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 12h14M8 8c.3-2.5 2-4 4.5-4 2.2 0 3.7 1 4.5 2.5M8 16c.8 2.5 2.5 4 5 4 2.2 0 3.8-1 4.5-2.5" }) }),
|
|
438
|
+
"list-ordered": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
439
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
440
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
|
|
441
|
+
] }),
|
|
442
|
+
"list-unordered": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
443
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
444
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
|
|
445
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
|
|
446
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
|
|
447
|
+
] }),
|
|
448
|
+
eraser: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
449
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
|
|
450
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 9 8 7M13 20h8" })
|
|
451
|
+
] }),
|
|
452
|
+
highlighter: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
453
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
|
|
454
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
|
|
455
|
+
] }),
|
|
456
|
+
table: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
457
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
458
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
|
|
459
|
+
] }),
|
|
460
|
+
columns: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
461
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
462
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 4v16" })
|
|
463
|
+
] }),
|
|
464
|
+
rows: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
465
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
466
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9h18M3 15h18" })
|
|
467
|
+
] }),
|
|
468
|
+
"bar-chart": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
|
|
469
|
+
"line-chart": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
470
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
|
|
471
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
|
|
472
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "13", cy: "14", r: "1" })
|
|
473
|
+
] }),
|
|
474
|
+
"pie-chart": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
475
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
|
|
476
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
|
|
477
|
+
] }),
|
|
478
|
+
"area-chart": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
|
|
479
|
+
activity: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
|
|
480
|
+
"trending-up": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
481
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
|
|
482
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M15 8h5v5" })
|
|
483
|
+
] }),
|
|
484
|
+
"trending-down": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
485
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
|
|
486
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M15 16h5v-5" })
|
|
487
|
+
] }),
|
|
488
|
+
database: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
489
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
|
|
490
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 5v7c0 1.7 3.6 3 8 3s8-1.3 8-3V5M4 12v7c0 1.7 3.6 3 8 3s8-1.3 8-3v-7" })
|
|
491
|
+
] }),
|
|
492
|
+
cloud: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 19h11a4 4 0 0 0 .5-8A7 7 0 0 0 5.2 9.5 4.8 4.8 0 0 0 7 19Z" }),
|
|
493
|
+
"cloud-download": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
494
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
495
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
|
|
496
|
+
] }),
|
|
497
|
+
"cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
498
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
499
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
|
|
500
|
+
] }),
|
|
501
|
+
server: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
502
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
|
|
503
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
|
|
504
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
|
|
505
|
+
] }),
|
|
506
|
+
desktop: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
507
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
|
|
508
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 21h8M12 17v4" })
|
|
509
|
+
] }),
|
|
510
|
+
laptop: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
511
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
|
|
512
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
|
|
513
|
+
] }),
|
|
514
|
+
mobile: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
515
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
|
|
516
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
517
|
+
] }),
|
|
518
|
+
tablet: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
519
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
520
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
521
|
+
] }),
|
|
522
|
+
printer: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
523
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
|
|
524
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
|
|
525
|
+
] }),
|
|
526
|
+
camera: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
527
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
|
|
528
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "13", r: "4" })
|
|
529
|
+
] }),
|
|
530
|
+
video: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
531
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
|
|
532
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
|
|
533
|
+
] }),
|
|
534
|
+
microphone: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
535
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
|
|
536
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
|
|
537
|
+
] }),
|
|
538
|
+
"volume-up": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
539
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
|
|
540
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
|
|
541
|
+
] }),
|
|
542
|
+
"volume-off": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
|
|
543
|
+
"speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
544
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
545
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
|
|
546
|
+
] }),
|
|
547
|
+
"speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
548
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
549
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
|
|
550
|
+
] }),
|
|
551
|
+
wifi: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9a14 14 0 0 1 18 0M6 13a9 9 0 0 1 12 0M9.5 17a4 4 0 0 1 5 0M12 21v.1" }) }),
|
|
552
|
+
power: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
553
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3v9" }),
|
|
554
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
|
|
555
|
+
] }),
|
|
556
|
+
key: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
557
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
|
|
558
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
|
|
559
|
+
] }),
|
|
560
|
+
shield: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
561
|
+
"shield-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
562
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
563
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
|
|
564
|
+
] }),
|
|
565
|
+
bug: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 9h8v7a4 4 0 0 1-8 0V9ZM9 9a3 3 0 0 1 6 0M5 11h3M16 11h3M5 16h3M16 16h3M7 5l2 2M17 5l-2 2" }) }),
|
|
566
|
+
bulb: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
567
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 15a7 7 0 1 1 8 0c-1.2.8-1.5 1.8-1.5 3h-5c0-1.2-.3-2.2-1.5-3Z" }),
|
|
568
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9.5 21h5" })
|
|
569
|
+
] }),
|
|
570
|
+
rocket: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
571
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 16c-2-1-4-1-5 0 0-3 1-5 4-6M14 6c3-3 6-3 7-3 0 1 0 4-3 7l-6 6-4-4 6-6Z" }),
|
|
572
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
|
|
573
|
+
] }),
|
|
574
|
+
target: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
575
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
576
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
|
|
577
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
578
|
+
] }),
|
|
579
|
+
trophy: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
580
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
|
|
581
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
|
|
582
|
+
] }),
|
|
583
|
+
"shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
584
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
|
|
585
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
|
|
586
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "17", cy: "20", r: "1" })
|
|
587
|
+
] }),
|
|
588
|
+
"shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
589
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
|
|
590
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
|
|
591
|
+
] }),
|
|
592
|
+
shop: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
593
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
|
|
594
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 21v-6h6v6" })
|
|
595
|
+
] }),
|
|
596
|
+
wallet: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
597
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
|
|
598
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
|
|
599
|
+
] }),
|
|
600
|
+
bank: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
|
|
601
|
+
calculator: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
|
|
604
|
+
] }),
|
|
605
|
+
tag: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
606
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
|
|
607
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
|
|
608
|
+
] }),
|
|
609
|
+
tags: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
610
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
|
|
611
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
|
|
612
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
|
|
613
|
+
] }),
|
|
614
|
+
message: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
|
|
615
|
+
comments: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
616
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
|
|
617
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
|
|
618
|
+
] }),
|
|
619
|
+
send: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
|
|
620
|
+
share: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
621
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
|
|
622
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
|
|
623
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
|
|
624
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
|
|
625
|
+
] }),
|
|
626
|
+
paperclip: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
|
|
627
|
+
location: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
628
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
|
|
629
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
|
|
630
|
+
] }),
|
|
631
|
+
compass: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
633
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
|
|
634
|
+
] }),
|
|
635
|
+
car: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
636
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
|
|
637
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
|
|
638
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "17", cy: "18", r: "2" })
|
|
639
|
+
] }),
|
|
640
|
+
truck: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
641
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
|
|
642
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
|
|
643
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "18", cy: "19", r: "2" })
|
|
644
|
+
] }),
|
|
645
|
+
gift: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
646
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
|
|
647
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
|
|
648
|
+
] }),
|
|
649
|
+
coffee: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
650
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 8h13v6a6 6 0 0 1-6 6H10a6 6 0 0 1-6-6V8ZM17 10h2a3 3 0 0 1 0 6h-3" }),
|
|
651
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 4v1M12 3v2" })
|
|
652
|
+
] }),
|
|
653
|
+
experiment: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
654
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 16h10" })
|
|
656
|
+
] }),
|
|
657
|
+
tool: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 6a5 5 0 0 0-6-3l3 3-3 3-3-3a5 5 0 0 0 6 6l7 7a2 2 0 0 0 3-3l-7-7Z" }) }),
|
|
658
|
+
appstore: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
659
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
|
|
660
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
|
|
661
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
|
|
662
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
|
|
663
|
+
] }),
|
|
664
|
+
puzzle: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 3h4.2a2.8 2.8 0 1 0 5.6 0H21v6h-2.2a2.8 2.8 0 1 0 0 5.6H21V21h-6.4v-2.2a2.8 2.8 0 1 0-5.6 0V21H3v-6.4h2.2a2.8 2.8 0 1 0 0-5.6H3V3h6Z" }) }),
|
|
665
|
+
partition: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
666
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
|
|
667
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
|
|
668
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
|
|
669
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
|
|
670
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "18", cy: "16", r: "2" })
|
|
671
|
+
] }),
|
|
672
|
+
branches: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
673
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
|
|
674
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
|
|
675
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
|
|
676
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
|
|
677
|
+
] }),
|
|
678
|
+
scan: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
|
|
679
|
+
"qr-code": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
680
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
|
|
681
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
|
|
682
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
|
|
683
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
|
|
684
|
+
] }),
|
|
685
|
+
barcode: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
|
|
686
|
+
"user-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
687
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
688
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M19 14v7M15.5 17.5h7" })
|
|
689
|
+
] }),
|
|
690
|
+
"user-minus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
691
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
692
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M15.5 17.5h7" })
|
|
693
|
+
] }),
|
|
694
|
+
smile: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
695
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
696
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
|
|
697
|
+
] }),
|
|
698
|
+
meh: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
699
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
700
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
|
|
701
|
+
] }),
|
|
702
|
+
frown: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
703
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
704
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
|
|
705
|
+
] }),
|
|
706
|
+
"game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
707
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
|
|
708
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
|
|
709
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7.5 21c.2-4.9 1.8-7.3 4.5-7.3s4.3 2.4 4.5 7.3M9.4 15.2 7 18m7.6-2.8L17 18M10 21l2-4 2 4" })
|
|
710
|
+
] }),
|
|
711
|
+
"game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
712
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
|
|
713
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
|
|
714
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7.2 21c.3-5 1.9-7.4 4.8-7.4s4.5 2.4 4.8 7.4M9.2 14.8 7 18.2m7.8-3.4 2.2 3.4M9.5 21l2.5-4 2.5 4" }),
|
|
715
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
|
|
716
|
+
] }),
|
|
717
|
+
"game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
718
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5.2 8.2.7-4 3.3 2.2A9 9 0 0 1 12 6c1 0 1.9.1 2.8.4l3.3-2.2.7 4A7.7 7.7 0 0 1 20 13c0 4.3-3.5 7.7-8 7.7S4 17.3 4 13c0-1.8.4-3.4 1.2-4.8Z" }),
|
|
719
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8.3 12h.1m7.2 0h.1M9 16c1.8 1.3 4.2 1.3 6 0m-3-1.5v1M7 18l-2.2 2M17 18l2.2 2" })
|
|
720
|
+
] }),
|
|
721
|
+
"game-gem": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
722
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
|
|
723
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
|
|
724
|
+
] }),
|
|
725
|
+
"game-ingot": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
726
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 9.5c2.2 1 4.1 1.5 5.8 1.6L12 6l2.2 5.1c1.7-.1 3.6-.6 5.8-1.6-.3 5.1-2.9 8.4-8 10-5.1-1.6-7.7-4.9-8-10Z" }),
|
|
727
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4.6 10.1 3 6.5c2.3 1.2 4.2 1.6 5.8 1.2M19.4 10.1 21 6.5c-2.3 1.2-4.2 1.6-5.8 1.2M7 16.3c3.3 1 6.7 1 10 0" })
|
|
728
|
+
] }),
|
|
729
|
+
"game-sword": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
730
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
|
|
731
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
|
|
732
|
+
] }),
|
|
733
|
+
"game-robe": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
734
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8.5 4 3.5 2 3.5-2 4 4-2.5 3-1.2-1V21H8.2V10L7 11 4.5 8l4-4Z" }),
|
|
735
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
|
|
736
|
+
] }),
|
|
737
|
+
"game-pants": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 7h10M12 3v8" })
|
|
740
|
+
] }),
|
|
741
|
+
"game-pendant": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
742
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
|
|
743
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 10.6c-2.7 1.8-4 3.8-4 6a4 4 0 0 0 8 0c0-2.2-1.3-4.2-4-6Z" }),
|
|
744
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
|
|
745
|
+
] }),
|
|
746
|
+
"game-necklace": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
747
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
|
|
748
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
|
|
749
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
|
|
750
|
+
] }),
|
|
751
|
+
"game-pill": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
752
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6.2 17.8a5.7 5.7 0 0 1 0-8.1l3.5-3.5a5.7 5.7 0 1 1 8.1 8.1l-3.5 3.5a5.7 5.7 0 0 1-8.1 0Z" }),
|
|
753
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 8 8 8" }),
|
|
754
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
|
|
755
|
+
] }),
|
|
756
|
+
"game-potion": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
757
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9 3h6M10 3v5l-5 7.5A3.5 3.5 0 0 0 8 21h8a3.5 3.5 0 0 0 3-5.5L14 8V3" }),
|
|
758
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 15h10M9.5 12h5" })
|
|
759
|
+
] }),
|
|
760
|
+
"game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
761
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3h8l-1 4c2.6 1.2 4 3.5 4 6.8V21H5v-7.2C5 10.5 6.4 8.2 9 7L8 3Z" }),
|
|
762
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
|
|
763
|
+
] }),
|
|
764
|
+
"game-flame": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M13.8 2.5c.6 3.6-2.1 4.8-2.1 7.2 0 1.1.7 1.9 1.7 1.9 1.8 0 2.4-2.1 2-4.1 2.6 2 4.1 4.6 4.1 7.4A7.5 7.5 0 0 1 4.5 15c0-3.5 1.8-6.5 5.2-9-.2 2.3.8 3.4 1.8 3.7-.4-2.6.3-5.1 2.3-7.2Z" }),
|
|
766
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 21c-2 0-3.3-1.3-3.3-3.2 0-1.5.9-2.8 2.6-4.2 0 1.7.8 2.5 1.7 2.5 1 0 1.7-.9 1.5-2.3 1.2 1.2 1.8 2.5 1.8 4A4 4 0 0 1 12 21Z" })
|
|
767
|
+
] }),
|
|
768
|
+
"game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
769
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
|
|
770
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.2 2.2m9 9 2.2 2.2m0-13.4-2.2 2.2m-9 9-2.2 2.2" }),
|
|
771
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
|
|
772
|
+
] }),
|
|
773
|
+
"game-herb": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
774
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 21V9" }),
|
|
775
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 13c-5.5.1-8-2.6-8-7.5 5-.2 7.8 2.1 8 7.5Zm0 4c5.5.1 8-2.6 8-7.5-5-.2-7.8 2.1-8 7.5Z" })
|
|
776
|
+
] }),
|
|
777
|
+
"game-meditate": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
778
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
|
|
779
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8.5 11c1-1.5 2.2-2.2 3.5-2.2s2.5.7 3.5 2.2l2.8 4M5.7 15l2.8-4M4 19c2.5-2.2 5.2-2.5 8-1 2.8-1.5 5.5-1.2 8 1M7 21h10" }),
|
|
780
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
|
|
781
|
+
] }),
|
|
782
|
+
"game-backpack": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
783
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
|
|
785
|
+
] }),
|
|
786
|
+
"game-qi": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
787
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
788
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 8.5c2.5-2.8 7-2.2 8.7.2 1.7 2.4.9 5.6-1.6 6.8-2.4 1.2-5.5-.1-5.8-2.5-.2-1.8 1.4-3.1 3.2-2.8 1.8.3 2.6 2.2 1.7 3.5" })
|
|
789
|
+
] })
|
|
790
|
+
};
|
|
791
|
+
|
|
792
|
+
// src/components/Icon.tsx
|
|
793
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
794
|
+
var coreIconPaths = {
|
|
795
|
+
search: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
796
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
797
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.8 15.8 5.2 5.2" })
|
|
798
|
+
] }),
|
|
799
|
+
plus: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 4v16M4 12h16" }),
|
|
800
|
+
minus: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 12h16" }),
|
|
801
|
+
close: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 5 14 14M19 5 5 19" }),
|
|
802
|
+
check: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 12.5 5.2 5L20 6.5" }),
|
|
803
|
+
info: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
804
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
805
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 11v6M12 7.2v.1" })
|
|
806
|
+
] }),
|
|
807
|
+
question: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
808
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
809
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.8 9a2.4 2.4 0 1 1 3.5 2.2c-.9.5-1.3 1.1-1.3 2.1M12 16.8v.1" })
|
|
810
|
+
] }),
|
|
811
|
+
warning: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
812
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10.3 4.1 2.6 18a2 2 0 0 0 1.8 3h15.2a2 2 0 0 0 1.8-3L13.7 4.1a2 2 0 0 0-3.4 0Z" }),
|
|
813
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 9v4M12 17v.1" })
|
|
814
|
+
] }),
|
|
815
|
+
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
816
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
817
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 12 2.7 2.7L16.5 9" })
|
|
818
|
+
] }),
|
|
819
|
+
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
820
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
821
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 9 6 6M15 9l-6 6" })
|
|
822
|
+
] }),
|
|
823
|
+
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
824
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
825
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
826
|
+
] }),
|
|
827
|
+
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
828
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
829
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 12h8" })
|
|
830
|
+
] }),
|
|
831
|
+
"chevron-left": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.5 5-7 7 7 7" }),
|
|
832
|
+
"chevron-right": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
|
|
833
|
+
"chevron-up": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
|
|
834
|
+
"chevron-down": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
|
|
835
|
+
"double-left": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
836
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12 5-7 7 7 7" }),
|
|
837
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m19 5-7 7 7 7" })
|
|
838
|
+
] }),
|
|
839
|
+
"double-right": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
840
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 5 7 7-7 7" }),
|
|
841
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
842
|
+
] }),
|
|
843
|
+
"arrow-left": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
844
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m10 5-7 7 7 7" }),
|
|
845
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 12h18" })
|
|
846
|
+
] }),
|
|
847
|
+
"arrow-right": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
848
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m14 5 7 7-7 7" }),
|
|
849
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 12h18" })
|
|
850
|
+
] }),
|
|
851
|
+
"arrow-up": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
852
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 10 7-7 7 7" }),
|
|
853
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v18" })
|
|
854
|
+
] }),
|
|
855
|
+
"arrow-down": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
856
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 14 7 7 7-7" }),
|
|
857
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v18" })
|
|
858
|
+
] }),
|
|
859
|
+
menu: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
|
|
860
|
+
"more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
|
|
861
|
+
"more-vertical": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
|
|
862
|
+
home: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
863
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
|
|
864
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
|
|
865
|
+
] }),
|
|
866
|
+
user: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
867
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
|
|
868
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
|
|
869
|
+
] }),
|
|
870
|
+
users: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
871
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
|
|
872
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
|
|
873
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M15 5.2a3.5 3.5 0 0 1 0 6.6M16.2 14.5c2.9.5 4.4 2.3 4.9 5.5" })
|
|
874
|
+
] }),
|
|
875
|
+
settings: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
876
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "3.5" }),
|
|
877
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 4.8 10 2 14 2 14 4.8 15.68 5.49 17.66 3.51 20.49 6.34 18.51 8.32 19.2 10 22 10 22 14 19.2 14 18.51 15.68 20.49 17.66 17.66 20.49 15.68 18.51 14 19.2 14 22 10 22 10 19.2 8.32 18.51 6.34 20.49 3.51 17.66 5.49 15.68 4.8 14 2 14 2 10 4.8 10 5.49 8.32 3.51 6.34 6.34 3.51 8.32 5.49Z" })
|
|
878
|
+
] }),
|
|
879
|
+
edit: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
880
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
|
|
881
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
|
|
882
|
+
] }),
|
|
883
|
+
copy: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
884
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
|
|
885
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
|
|
886
|
+
] }),
|
|
887
|
+
trash: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
|
|
888
|
+
scissors: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
889
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
|
|
890
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
|
|
891
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
|
|
892
|
+
] }),
|
|
893
|
+
undo: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
894
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 7-5 5 5 5" }),
|
|
895
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
|
|
896
|
+
] }),
|
|
897
|
+
redo: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
898
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m16 7 5 5-5 5" }),
|
|
899
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
|
|
900
|
+
] }),
|
|
901
|
+
"zoom-in": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
902
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
903
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
|
|
904
|
+
] }),
|
|
905
|
+
"zoom-out": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
906
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
907
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
|
|
908
|
+
] }),
|
|
909
|
+
download: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
|
|
910
|
+
upload: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
|
|
911
|
+
refresh: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
912
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 4v4.686h-4.686" }),
|
|
913
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
|
|
914
|
+
] }),
|
|
915
|
+
loader: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1" }),
|
|
916
|
+
calendar: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
917
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
|
|
918
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
|
|
919
|
+
] }),
|
|
920
|
+
clock: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
921
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 7v5l3.5 2" })
|
|
923
|
+
] }),
|
|
924
|
+
mail: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
925
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
|
|
926
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 7 8 6 8-6" })
|
|
927
|
+
] }),
|
|
928
|
+
phone: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8.2 3.5 5.4 4.8c-1 .5-1.5 1.7-1.1 2.8 2.2 5.9 6.2 9.9 12.1 12.1 1.1.4 2.3-.1 2.8-1.1l1.3-2.8-4.2-2-1.4 2.1c-2.8-1.2-5.6-4-6.8-6.8l2.1-1.4-2-4.2Z" }),
|
|
929
|
+
link: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
930
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9.5 14.5 5-5" }),
|
|
931
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7.5 16.5 6 18a3.5 3.5 0 0 1-5-5l3-3a3.5 3.5 0 0 1 5 0M16.5 7.5 18 6a3.5 3.5 0 0 1 5 5l-3 3a3.5 3.5 0 0 1-5 0" })
|
|
932
|
+
] }),
|
|
933
|
+
"external-link": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
934
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
|
|
935
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
|
|
936
|
+
] }),
|
|
937
|
+
eye: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
938
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z" }),
|
|
939
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
940
|
+
] }),
|
|
941
|
+
"eye-off": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 3 18 18M10.6 6.1A10 10 0 0 1 12 6c6 0 9.5 6 9.5 6a14.5 14.5 0 0 1-2.2 3M6.4 6.4C3.9 8.2 2.5 12 2.5 12s3.5 6 9.5 6a9.7 9.7 0 0 0 3-.5M9.9 9.9a3 3 0 0 0 4.2 4.2" }) }),
|
|
942
|
+
lock: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
943
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
944
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
|
|
945
|
+
] }),
|
|
946
|
+
unlock: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
947
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
948
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 10V7a4 4 0 0 1 7.5-2M12 14v3" })
|
|
949
|
+
] }),
|
|
950
|
+
bell: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
951
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9Z" }),
|
|
952
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 21h4" })
|
|
953
|
+
] }),
|
|
954
|
+
star: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9L12 3Z" }),
|
|
955
|
+
heart: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20.8 5.8a5.5 5.5 0 0 0-7.8 0L12 6.9l-1-1.1a5.5 5.5 0 1 0-7.8 7.8L12 21l8.8-7.4a5.5 5.5 0 0 0 0-7.8Z" }),
|
|
956
|
+
file: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
957
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
958
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3v5h4" })
|
|
959
|
+
] }),
|
|
960
|
+
folder: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
961
|
+
image: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
962
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
963
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
964
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
|
|
965
|
+
] }),
|
|
966
|
+
filter: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
|
|
967
|
+
"sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
968
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
|
|
969
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
|
|
970
|
+
] }),
|
|
971
|
+
"sort-descending": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
972
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 5v14M3.5 15.5 7 19l3.5-3.5" }),
|
|
973
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M13 7h4M13 12h6M13 17h8" })
|
|
974
|
+
] }),
|
|
975
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
976
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
977
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m10 8 6 4-6 4V8Z" })
|
|
978
|
+
] }),
|
|
979
|
+
pause: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
980
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
981
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.5 9v6M14.5 9v6" })
|
|
982
|
+
] }),
|
|
983
|
+
book: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
984
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 5.5A2.5 2.5 0 0 1 6.5 3H11v17H6.5A2.5 2.5 0 0 0 4 22V5.5Z" }),
|
|
985
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 5.5A2.5 2.5 0 0 0 17.5 3H13v17h4.5A2.5 2.5 0 0 1 20 22V5.5Z" })
|
|
986
|
+
] }),
|
|
987
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
988
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "4", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
989
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "14", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
990
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "4", y: "14", width: "6", height: "6", rx: "1.5" }),
|
|
991
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "14", y: "14", width: "6", height: "6", rx: "1.5" })
|
|
992
|
+
] }),
|
|
993
|
+
token: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
994
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
995
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.1 2.1M16.6 16.6l2.1 2.1M18.7 5.3l-2.1 2.1M7.4 16.6l-2.1 2.1" })
|
|
996
|
+
] }),
|
|
997
|
+
sun: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
998
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "3.6" }),
|
|
999
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 2.5v2M12 19.5v2M2.5 12h2M19.5 12h2M5.3 5.3l1.4 1.4M17.3 17.3l1.4 1.4M18.7 5.3l-1.4 1.4M6.7 17.3l-1.4 1.4" })
|
|
1000
|
+
] }),
|
|
1001
|
+
moon: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 15.2A8 8 0 0 1 8.8 4 8.5 8.5 0 1 0 20 15.2Z" }),
|
|
1002
|
+
code: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 18-6-6 6-6M15 6l6 6-6 6" }),
|
|
1003
|
+
github: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 19c-4 1.2-4-2-5-2.5M14 22v-3.1c0-.9.3-1.5.8-1.9 2.7-.3 5.5-1.3 5.5-6A4.7 4.7 0 0 0 19 7.7 4.4 4.4 0 0 0 18.9 4S17.8 3.7 15 5.3a11.7 11.7 0 0 0-6 0C6.2 3.7 5.1 4 5.1 4A4.4 4.4 0 0 0 5 7.7 4.7 4.7 0 0 0 3.7 11c0 4.7 2.8 5.7 5.5 6 .5.4.8 1 .8 1.9V22" })
|
|
1004
|
+
};
|
|
1005
|
+
var iconPaths = { ...coreIconPaths, ...extendedIconPaths };
|
|
1006
|
+
var ICON_NAMES = Object.freeze(Object.keys(iconPaths));
|
|
1007
|
+
var filledIconPaths = {
|
|
1008
|
+
info: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1009
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1010
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 10.5v6M12 7.2v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1011
|
+
] }),
|
|
1012
|
+
question: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1013
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1014
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.6 9a2.5 2.5 0 1 1 3.6 2.3c-.8.5-1.2 1.1-1.2 2.1M12 16.8v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1015
|
+
] }),
|
|
1016
|
+
warning: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1017
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10.3 3.5 1.8 19a2 2 0 0 0 1.8 3h16.8a2 2 0 0 0 1.8-3L13.7 3.5a2 2 0 0 0-3.4 0Z", fill: "currentColor", stroke: "none" }),
|
|
1018
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 9v5M12 18v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1019
|
+
] }),
|
|
1020
|
+
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1021
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1022
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m7.5 12 3 3 6-6", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1023
|
+
] }),
|
|
1024
|
+
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1025
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8.8 8.8 6.4 6.4M15.2 8.8l-6.4 6.4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1027
|
+
] }),
|
|
1028
|
+
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1029
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1030
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 7.5v9M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1031
|
+
] }),
|
|
1032
|
+
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1033
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1034
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1035
|
+
] }),
|
|
1036
|
+
home: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M2.6 10.8 12 2.8l9.4 8a1 1 0 0 1-1.3 1.5l-.6-.5V21h-5.2v-6.2H9.7V21H4.5v-9.2l-.6.5a1 1 0 1 1-1.3-1.5Z", fill: "currentColor", stroke: "none" }),
|
|
1037
|
+
user: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1038
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "7.5", r: "4.5", fill: "currentColor", stroke: "none" }),
|
|
1039
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3.5 21c.7-5 3.6-7.5 8.5-7.5s7.8 2.5 8.5 7.5H3.5Z", fill: "currentColor", stroke: "none" })
|
|
1040
|
+
] }),
|
|
1041
|
+
users: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1042
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "8.5", cy: "8", r: "3.8", fill: "currentColor", stroke: "none" }),
|
|
1043
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "17", cy: "8.5", r: "3", fill: "currentColor", stroke: "none", opacity: ".7" }),
|
|
1044
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M1.8 21c.6-4.6 2.8-7 6.7-7s6.1 2.4 6.7 7H1.8ZM14.4 15.2c3.9-.2 6.4 1.7 7 5.8h-4.5a9.9 9.9 0 0 0-2.5-5.8Z", fill: "currentColor", stroke: "none" })
|
|
1045
|
+
] }),
|
|
1046
|
+
trash: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 3h8l1 3h4v2H3V6h4l1-3Zm-2.5 7h13l-1 11h-11l-1-11Z", fill: "currentColor", stroke: "none" }),
|
|
1047
|
+
bell: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 2.5a2 2 0 0 1 2 1.6c3 .9 5 3.6 5 6.9v4.3l2 3.2H3l2-3.2V11c0-3.3 2-6 5-6.9a2 2 0 0 1 2-1.6ZM9.2 20h5.6a3 3 0 0 1-5.6 0Z", fill: "currentColor", stroke: "none" }),
|
|
1048
|
+
star: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12 2.2 3 6 6.6 1-4.8 4.6 1.1 6.6-5.9-3.1-5.9 3.1 1.1-6.6-4.8-4.6 6.6-1 3-6Z", fill: "currentColor", stroke: "none" }),
|
|
1049
|
+
heart: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 21.3 3.1 13.7A5.8 5.8 0 0 1 11 5.2l1 1 1-1a5.8 5.8 0 0 1 7.9 8.5L12 21.3Z", fill: "currentColor", stroke: "none" }),
|
|
1050
|
+
mail: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1051
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "15", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4.5 7 7.5 5.8L19.5 7", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
1053
|
+
] }),
|
|
1054
|
+
lock: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 10V7a5 5 0 0 1 10 0v3h1.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Zm2.5 0h5V7a2.5 2.5 0 0 0-5 0v3Z", fill: "currentColor", stroke: "none" }),
|
|
1055
|
+
unlock: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 10V7a5 5 0 0 1 9.5-2.2l-2.2 1.1A2.5 2.5 0 0 0 9.5 7v3h9A2.5 2.5 0 0 1 21 12.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Z", fill: "currentColor", stroke: "none" }),
|
|
1056
|
+
calendar: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1057
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
1058
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
1059
|
+
] }),
|
|
1060
|
+
clock: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1061
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1062
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 6.5V12l4 2.3", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
1063
|
+
] }),
|
|
1064
|
+
file: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 2.5h10l4 4V22H5V2.5Zm9 1.8V8h3.7L14 4.3Z", fill: "currentColor", stroke: "none" }),
|
|
1065
|
+
folder: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M2.5 5h7l2.2 2.5h9.8V20H2.5V5Z", fill: "currentColor", stroke: "none" }),
|
|
1066
|
+
image: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1067
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "2.5", y: "3.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
1068
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4.5 18 4.3-4.6 3.4 3 2.5-2.6 4.8 4.2", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.7" }),
|
|
1069
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "8", cy: "8.5", r: "1.7", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
1070
|
+
] }),
|
|
1071
|
+
filter: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M2 4h20l-7.8 9v6.2L9.8 22v-9L2 4Z", fill: "currentColor", stroke: "none" }),
|
|
1072
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1073
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1074
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m10 7.8 6.5 4.2-6.5 4.2V7.8Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
1075
|
+
] }),
|
|
1076
|
+
pause: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1077
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
1078
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8.5 7.5h2.5v9H8.5v-9Zm4.5 0h2.5v9H13v-9Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
1079
|
+
] }),
|
|
1080
|
+
book: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 4.5A3.5 3.5 0 0 1 6.5 1H11v19H6.5A3.5 3.5 0 0 0 3 23V4.5ZM21 4.5A3.5 3.5 0 0 0 17.5 1H13v19h4.5A3.5 3.5 0 0 1 21 23V4.5Z", fill: "currentColor", stroke: "none" }),
|
|
1081
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1082
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
1083
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "13", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
1084
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
1085
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "13", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" })
|
|
1086
|
+
] }),
|
|
1087
|
+
token: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
1088
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "5", fill: "currentColor", stroke: "none" }),
|
|
1089
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 1v4M12 19v4M1 12h4M19 12h4M4.2 4.2 7 7M17 17l2.8 2.8M19.8 4.2 17 7M7 17l-2.8 2.8", stroke: "currentColor", strokeWidth: "2.2" })
|
|
1090
|
+
] })
|
|
1091
|
+
};
|
|
1092
|
+
var FILLED_ICON_NAMES = Object.freeze(Object.keys(filledIconPaths));
|
|
1093
|
+
var Icon = (0, import_react3.forwardRef)(function Icon2({ name, size = "1em", strokeWidth = 1.8, rotate = 0, spin = false, pulse = false, label, variant = "outline", className = "", style, ...props }, ref) {
|
|
1094
|
+
const resolvedSize = typeof size === "number" ? `${size}px` : size;
|
|
1095
|
+
const mergedStyle = { "--sia-icon-size": resolvedSize, "--sia-icon-rotate": `${rotate}deg`, ...style };
|
|
1096
|
+
const animationClass = spin ? " sia-icon--spin" : pulse ? " sia-icon--pulse" : "";
|
|
1097
|
+
const filledPath = filledIconPaths[name];
|
|
1098
|
+
const resolvedVariant = variant === "filled" && filledPath ? "filled" : "outline";
|
|
1099
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1100
|
+
"span",
|
|
1101
|
+
{
|
|
1102
|
+
ref,
|
|
1103
|
+
className: `sia-icon${animationClass} ${className}`.trim(),
|
|
1104
|
+
"data-variant": resolvedVariant,
|
|
1105
|
+
role: label ? "img" : void 0,
|
|
1106
|
+
"aria-label": label,
|
|
1107
|
+
"aria-hidden": label ? void 0 : true,
|
|
1108
|
+
style: mergedStyle,
|
|
1109
|
+
...withTitleTooltip(props),
|
|
1110
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", focusable: "false", children: resolvedVariant === "filled" ? filledPath : iconPaths[name] })
|
|
1111
|
+
}
|
|
1112
|
+
);
|
|
1113
|
+
});
|
|
1114
|
+
|
|
989
1115
|
// src/components/DatePickerPanel.tsx
|
|
990
1116
|
var import_react4 = require("react");
|
|
991
|
-
var
|
|
1117
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
992
1118
|
function pad(value) {
|
|
993
1119
|
return String(value).padStart(2, "0");
|
|
994
1120
|
}
|
|
@@ -1053,9 +1179,9 @@ function CalendarMonth({
|
|
|
1053
1179
|
const end = range[1] || previewEnd || "";
|
|
1054
1180
|
const low = start && end ? start <= end ? start : end : "";
|
|
1055
1181
|
const high = start && end ? start <= end ? end : start : "";
|
|
1056
|
-
return /* @__PURE__ */ (0,
|
|
1057
|
-
/* @__PURE__ */ (0,
|
|
1058
|
-
/* @__PURE__ */ (0,
|
|
1182
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "sia-date-panel__month", children: [
|
|
1183
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "sia-date-panel__weekdays", "aria-hidden": "true", children: WEEKDAYS.map((day) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { children: day }, day)) }),
|
|
1184
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "sia-date-panel__days", children: Array.from({ length: 42 }, (_, index) => {
|
|
1059
1185
|
const date = addDays(gridStart, index);
|
|
1060
1186
|
const key = dateKey(date);
|
|
1061
1187
|
const outside = date.getMonth() !== month.getMonth();
|
|
@@ -1064,11 +1190,11 @@ function CalendarMonth({
|
|
|
1064
1190
|
const rangeStart = Boolean(start && key === start);
|
|
1065
1191
|
const rangeEnd = Boolean(range[1] && key === range[1]);
|
|
1066
1192
|
const inRange = Boolean(low && high && key >= low && key <= high);
|
|
1067
|
-
return /* @__PURE__ */ (0,
|
|
1193
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1068
1194
|
"span",
|
|
1069
1195
|
{
|
|
1070
1196
|
className: `sia-date-panel__cell${outside ? " is-outside" : ""}${selected ? " is-selected" : ""}${rangeStart ? " is-range-start" : ""}${rangeEnd ? " is-range-end" : ""}${inRange ? " is-in-range" : ""}${key === today ? " is-today" : ""}`,
|
|
1071
|
-
children: /* @__PURE__ */ (0,
|
|
1197
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1072
1198
|
"button",
|
|
1073
1199
|
{
|
|
1074
1200
|
type: "button",
|
|
@@ -1095,28 +1221,28 @@ function CalendarHeader({
|
|
|
1095
1221
|
onNextMonth,
|
|
1096
1222
|
onNextYear
|
|
1097
1223
|
}) {
|
|
1098
|
-
return /* @__PURE__ */ (0,
|
|
1099
|
-
/* @__PURE__ */ (0,
|
|
1100
|
-
onPreviousYear ? /* @__PURE__ */ (0,
|
|
1101
|
-
/* @__PURE__ */ (0,
|
|
1102
|
-
/* @__PURE__ */ (0,
|
|
1224
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "sia-date-panel__header", children: [
|
|
1225
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { className: "sia-date-panel__nav", children: [
|
|
1226
|
+
onPreviousYear ? /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("button", { type: "button", "aria-label": "\u4E0A\u4E00\u5E74", onClick: onPreviousYear, children: [
|
|
1227
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-left", size: 13 }),
|
|
1228
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-left", size: 13 })
|
|
1103
1229
|
] }) : null,
|
|
1104
|
-
onPreviousMonth ? /* @__PURE__ */ (0,
|
|
1230
|
+
onPreviousMonth ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", "aria-label": "\u4E0A\u4E2A\u6708", onClick: onPreviousMonth, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-left", size: 15 }) }) : null
|
|
1105
1231
|
] }),
|
|
1106
|
-
/* @__PURE__ */ (0,
|
|
1107
|
-
label ? /* @__PURE__ */ (0,
|
|
1108
|
-
/* @__PURE__ */ (0,
|
|
1232
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("strong", { children: [
|
|
1233
|
+
label ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("small", { children: label }) : null,
|
|
1234
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { children: [
|
|
1109
1235
|
month.getFullYear(),
|
|
1110
1236
|
"\u5E74\xA0 ",
|
|
1111
1237
|
month.getMonth() + 1,
|
|
1112
1238
|
"\u6708"
|
|
1113
1239
|
] })
|
|
1114
1240
|
] }),
|
|
1115
|
-
/* @__PURE__ */ (0,
|
|
1116
|
-
onNextMonth ? /* @__PURE__ */ (0,
|
|
1117
|
-
onNextYear ? /* @__PURE__ */ (0,
|
|
1118
|
-
/* @__PURE__ */ (0,
|
|
1119
|
-
/* @__PURE__ */ (0,
|
|
1241
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { className: "sia-date-panel__nav", children: [
|
|
1242
|
+
onNextMonth ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", "aria-label": "\u4E0B\u4E2A\u6708", onClick: onNextMonth, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-right", size: 15 }) }) : null,
|
|
1243
|
+
onNextYear ? /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("button", { type: "button", "aria-label": "\u4E0B\u4E00\u5E74", onClick: onNextYear, children: [
|
|
1244
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-right", size: 13 }),
|
|
1245
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "chevron-right", size: 13 })
|
|
1120
1246
|
] }) : null
|
|
1121
1247
|
] }),
|
|
1122
1248
|
range ? null : null
|
|
@@ -1154,19 +1280,19 @@ function TimePanel({
|
|
|
1154
1280
|
values[index] = next;
|
|
1155
1281
|
onChange(values.join(":"));
|
|
1156
1282
|
}
|
|
1157
|
-
return /* @__PURE__ */ (0,
|
|
1158
|
-
/* @__PURE__ */ (0,
|
|
1283
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("aside", { className: "sia-date-panel__time", "aria-label": ariaLabel, children: [
|
|
1284
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("strong", { children: [
|
|
1159
1285
|
use12Hours ? pad(Number(hour) % 12 || 12) : hour,
|
|
1160
1286
|
":",
|
|
1161
1287
|
minute,
|
|
1162
1288
|
showSecond ? `:${second}` : "",
|
|
1163
1289
|
use12Hours ? Number(hour) < 12 ? " AM" : " PM" : ""
|
|
1164
1290
|
] }),
|
|
1165
|
-
/* @__PURE__ */ (0,
|
|
1291
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { ref: columnsRef, className: "sia-date-panel__time-columns", children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { role: "listbox", "aria-label": `${ariaLabel}${column.label}`, children: Array.from({ length: column.count }, (_, index) => {
|
|
1166
1292
|
const next = pad(index);
|
|
1167
1293
|
const candidate = [hour, minute, second];
|
|
1168
1294
|
candidate[column.index] = next;
|
|
1169
|
-
return /* @__PURE__ */ (0,
|
|
1295
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", role: "option", disabled: disabledTime?.(candidate.join(":")), "aria-selected": next === column.value, className: next === column.value ? "is-selected" : "", onKeyDown: (event) => {
|
|
1170
1296
|
if (!["ArrowDown", "ArrowUp", "Home", "End"].includes(event.key)) return;
|
|
1171
1297
|
event.preventDefault();
|
|
1172
1298
|
const buttons = Array.from(event.currentTarget.parentElement.querySelectorAll("button:not(:disabled)"));
|
|
@@ -1186,17 +1312,17 @@ function DatePanelFooter({
|
|
|
1186
1312
|
onToday,
|
|
1187
1313
|
onConfirm
|
|
1188
1314
|
}) {
|
|
1189
|
-
return /* @__PURE__ */ (0,
|
|
1190
|
-
/* @__PURE__ */ (0,
|
|
1191
|
-
showToday ? /* @__PURE__ */ (0,
|
|
1315
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("footer", { className: "sia-date-panel__footer", children: [
|
|
1316
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { children: [
|
|
1317
|
+
showToday ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", onClick: onToday, children: "\u4ECA\u5929" }) : null,
|
|
1192
1318
|
extra
|
|
1193
1319
|
] }),
|
|
1194
|
-
needConfirm ? /* @__PURE__ */ (0,
|
|
1320
|
+
needConfirm ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", className: "sia-date-panel__confirm", disabled: disabledConfirm, onClick: onConfirm, children: confirmText }) : null
|
|
1195
1321
|
] });
|
|
1196
1322
|
}
|
|
1197
1323
|
|
|
1198
1324
|
// src/components/DatePicker.tsx
|
|
1199
|
-
var
|
|
1325
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
1200
1326
|
function formatWeek(date) {
|
|
1201
1327
|
const target = new Date(date);
|
|
1202
1328
|
target.setHours(0, 0, 0, 0);
|
|
@@ -1349,8 +1475,8 @@ function DatePicker({
|
|
|
1349
1475
|
const display = Array.isArray(currentValue) ? currentValue.map(formatValue).join("\u3001") : currentValue ? formatValue(currentValue) : "";
|
|
1350
1476
|
const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder: placeholder ?? placeholderFor(picker, showTime, multiple), filled: Boolean(display), active: visible });
|
|
1351
1477
|
const triggerLabel = props["aria-label"] ?? (typeof placeholder === "string" ? placeholder : "\u65E5\u671F\u9009\u62E9\u5668");
|
|
1352
|
-
return /* @__PURE__ */ (0,
|
|
1353
|
-
/* @__PURE__ */ (0,
|
|
1478
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { ref: rootRef, className: `sia-picker${floating.className} sia-picker--${size} sia-picker--${status}${visible ? " is-open" : ""}${disabled ? " is-disabled" : ""} ${className}`.trim(), children: [
|
|
1479
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
1354
1480
|
"button",
|
|
1355
1481
|
{
|
|
1356
1482
|
type: "button",
|
|
@@ -1372,16 +1498,16 @@ function DatePicker({
|
|
|
1372
1498
|
} else if (event.key === "Escape") changeOpen(false);
|
|
1373
1499
|
},
|
|
1374
1500
|
children: [
|
|
1375
|
-
/* @__PURE__ */ (0,
|
|
1376
|
-
/* @__PURE__ */ (0,
|
|
1501
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: `sia-picker__value${display ? "" : " is-placeholder"}`, children: display || placeholder || placeholderFor(picker, showTime, multiple) }),
|
|
1502
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-picker__icon", "aria-hidden": "true", children: suffixIcon ?? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "calendar", size: 16 }) })
|
|
1377
1503
|
]
|
|
1378
1504
|
}
|
|
1379
1505
|
),
|
|
1380
1506
|
floating.label,
|
|
1381
|
-
allowClear && display && !disabled ? /* @__PURE__ */ (0,
|
|
1382
|
-
/* @__PURE__ */ (0,
|
|
1383
|
-
/* @__PURE__ */ (0,
|
|
1384
|
-
presets?.length ? /* @__PURE__ */ (0,
|
|
1507
|
+
allowClear && display && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { type: "button", className: "sia-picker__clear", "aria-label": "\u6E05\u9664\u65E5\u671F", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
1508
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open: visible, className: `sia-date-panel${showTime ? " sia-date-panel--with-time" : ""}${presets?.length ? " sia-date-panel--with-presets" : ""}`, role: "dialog", "aria-label": "\u65E5\u671F\u9009\u62E9\u9762\u677F", children: [
|
|
1509
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "sia-date-panel__body", children: [
|
|
1510
|
+
presets?.length ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("aside", { className: "sia-date-panel__presets", children: presets.map((preset2, index) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { type: "button", onClick: () => {
|
|
1385
1511
|
const next = resolvePreset(preset2.value);
|
|
1386
1512
|
if (!next || isDisabled(dayFromValue(next))) return;
|
|
1387
1513
|
setDraftValue(next);
|
|
@@ -1390,8 +1516,8 @@ function DatePicker({
|
|
|
1390
1516
|
changeOpen(false);
|
|
1391
1517
|
}
|
|
1392
1518
|
}, children: preset2.label }, index)) }) : null,
|
|
1393
|
-
/* @__PURE__ */ (0,
|
|
1394
|
-
/* @__PURE__ */ (0,
|
|
1519
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1520
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1395
1521
|
CalendarHeader,
|
|
1396
1522
|
{
|
|
1397
1523
|
month: viewMonth,
|
|
@@ -1401,14 +1527,14 @@ function DatePicker({
|
|
|
1401
1527
|
onNextYear: () => setViewMonth(addMonths(viewMonth, 12))
|
|
1402
1528
|
}
|
|
1403
1529
|
),
|
|
1404
|
-
/* @__PURE__ */ (0,
|
|
1530
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CalendarMonth, { month: viewMonth, selectedDates, disabledDate: isDisabled, onSelect: selectDate })
|
|
1405
1531
|
] }),
|
|
1406
|
-
showTime ? /* @__PURE__ */ (0,
|
|
1532
|
+
showTime ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(TimePanel, { value: draftTime, showSecond, onChange: (next) => {
|
|
1407
1533
|
setDraftTime(next);
|
|
1408
1534
|
if (typeof draftValue === "string" && draftValue) setDraftValue(withTime(dayFromValue(draftValue), next, showSecond));
|
|
1409
1535
|
} }) : null
|
|
1410
1536
|
] }),
|
|
1411
|
-
/* @__PURE__ */ (0,
|
|
1537
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1412
1538
|
DatePanelFooter,
|
|
1413
1539
|
{
|
|
1414
1540
|
extra: renderExtraFooter?.(),
|
|
@@ -1651,14 +1777,14 @@ function DateRangePicker({
|
|
|
1651
1777
|
const month = index === 0 ? viewMonth : endViewMonth;
|
|
1652
1778
|
const setMonth = index === 0 ? setViewMonth : setEndViewMonth;
|
|
1653
1779
|
const endpointLabel = index === 0 ? "\u5F00\u59CB" : "\u7ED3\u675F";
|
|
1654
|
-
return /* @__PURE__ */ (0,
|
|
1780
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
1655
1781
|
"div",
|
|
1656
1782
|
{
|
|
1657
1783
|
className: `sia-date-panel__range-date-time-group${activeIndex === index ? " is-active" : ""}`,
|
|
1658
1784
|
"aria-label": `${endpointLabel}\u65E5\u671F\u65F6\u95F4`,
|
|
1659
1785
|
children: [
|
|
1660
|
-
/* @__PURE__ */ (0,
|
|
1661
|
-
/* @__PURE__ */ (0,
|
|
1786
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1787
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1662
1788
|
CalendarHeader,
|
|
1663
1789
|
{
|
|
1664
1790
|
month,
|
|
@@ -1670,7 +1796,7 @@ function DateRangePicker({
|
|
|
1670
1796
|
onNextYear: () => setMonth(addMonths(month, 12))
|
|
1671
1797
|
}
|
|
1672
1798
|
),
|
|
1673
|
-
/* @__PURE__ */ (0,
|
|
1799
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1674
1800
|
CalendarMonth,
|
|
1675
1801
|
{
|
|
1676
1802
|
month,
|
|
@@ -1680,7 +1806,7 @@ function DateRangePicker({
|
|
|
1680
1806
|
}
|
|
1681
1807
|
)
|
|
1682
1808
|
] }),
|
|
1683
|
-
/* @__PURE__ */ (0,
|
|
1809
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1684
1810
|
TimePanel,
|
|
1685
1811
|
{
|
|
1686
1812
|
value: times[index],
|
|
@@ -1696,8 +1822,8 @@ function DateRangePicker({
|
|
|
1696
1822
|
}
|
|
1697
1823
|
const startFloating = useFloatingPlaceholder({ mode: placeholderMode, placeholder: placeholder[0], filled: Boolean(currentValue[0]), active: visible });
|
|
1698
1824
|
const endFloating = useFloatingPlaceholder({ mode: placeholderMode, placeholder: placeholder[1], filled: Boolean(currentValue[1]), active: visible });
|
|
1699
|
-
return /* @__PURE__ */ (0,
|
|
1700
|
-
/* @__PURE__ */ (0,
|
|
1825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { ref: rootRef, className: `sia-picker sia-picker-range-control sia-picker--${size} sia-picker--${status}${visible ? " is-open" : ""}${disabled ? " is-disabled" : ""} ${className}`.trim(), children: [
|
|
1826
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
1701
1827
|
"button",
|
|
1702
1828
|
{
|
|
1703
1829
|
type: "button",
|
|
@@ -1713,27 +1839,27 @@ function DateRangePicker({
|
|
|
1713
1839
|
disabled,
|
|
1714
1840
|
onClick: () => changeOpen(!visible),
|
|
1715
1841
|
children: [
|
|
1716
|
-
/* @__PURE__ */ (0,
|
|
1717
|
-
/* @__PURE__ */ (0,
|
|
1842
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: `sia-picker-range-control__field${startFloating.className}`, children: [
|
|
1843
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: `sia-picker-range-control__value${currentValue[0] ? "" : " is-placeholder"}`, children: currentValue[0] ? formatValue(currentValue[0]) : placeholder[0] }),
|
|
1718
1844
|
startFloating.label
|
|
1719
1845
|
] }),
|
|
1720
|
-
/* @__PURE__ */ (0,
|
|
1721
|
-
/* @__PURE__ */ (0,
|
|
1722
|
-
/* @__PURE__ */ (0,
|
|
1846
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-picker-range-control__separator", children: separator }),
|
|
1847
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: `sia-picker-range-control__field${endFloating.className}`, children: [
|
|
1848
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: `sia-picker-range-control__value${currentValue[1] ? "" : " is-placeholder"}`, children: currentValue[1] ? formatValue(currentValue[1]) : placeholder[1] }),
|
|
1723
1849
|
endFloating.label
|
|
1724
1850
|
] }),
|
|
1725
|
-
/* @__PURE__ */ (0,
|
|
1851
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-picker__icon", "aria-hidden": "true", children: suffixIcon ?? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "calendar", size: 16 }) })
|
|
1726
1852
|
]
|
|
1727
1853
|
}
|
|
1728
1854
|
),
|
|
1729
|
-
allowClear && (currentValue[0] || currentValue[1]) && !disabled ? /* @__PURE__ */ (0,
|
|
1730
|
-
/* @__PURE__ */ (0,
|
|
1731
|
-
/* @__PURE__ */ (0,
|
|
1855
|
+
allowClear && (currentValue[0] || currentValue[1]) && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { type: "button", className: "sia-picker__clear", "aria-label": "\u6E05\u9664\u65E5\u671F\u8303\u56F4", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
1856
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open: visible, className: `sia-date-panel sia-date-panel--range${showTime ? ` sia-date-panel--with-time sia-date-panel--range-time-${compactDateTime ? "compact" : "paired"}` : ""}${presets?.length ? " sia-date-panel--with-presets" : ""}`, role: "dialog", "aria-label": "\u65E5\u671F\u8303\u56F4\u9009\u62E9\u9762\u677F", children: [
|
|
1857
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "sia-date-panel__body", children: showTime ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "sia-date-panel__range-date-time", children: compactDateTime ? renderDateTimeGroup(activeIndex) : /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(import_jsx_runtime7.Fragment, { children: [
|
|
1732
1858
|
renderDateTimeGroup(0),
|
|
1733
1859
|
renderDateTimeGroup(1)
|
|
1734
|
-
] }) }) : /* @__PURE__ */ (0,
|
|
1735
|
-
/* @__PURE__ */ (0,
|
|
1736
|
-
/* @__PURE__ */ (0,
|
|
1860
|
+
] }) }) : /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "sia-date-panel__range-calendars", children: [
|
|
1861
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1862
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1737
1863
|
CalendarHeader,
|
|
1738
1864
|
{
|
|
1739
1865
|
month: viewMonth,
|
|
@@ -1742,10 +1868,10 @@ function DateRangePicker({
|
|
|
1742
1868
|
onPreviousMonth: () => setViewMonth(addMonths(viewMonth, -1))
|
|
1743
1869
|
}
|
|
1744
1870
|
),
|
|
1745
|
-
/* @__PURE__ */ (0,
|
|
1871
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CalendarMonth, { month: viewMonth, range: rangeDates, previewEnd: activeIndex === 1 ? hoverDate : "", disabledDate: isDisabled, onSelect: selectDate, onHover: activeIndex === 1 ? setHoverDate : void 0 })
|
|
1746
1872
|
] }),
|
|
1747
|
-
/* @__PURE__ */ (0,
|
|
1748
|
-
/* @__PURE__ */ (0,
|
|
1873
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1874
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1749
1875
|
CalendarHeader,
|
|
1750
1876
|
{
|
|
1751
1877
|
month: addMonths(viewMonth, 1),
|
|
@@ -1754,24 +1880,24 @@ function DateRangePicker({
|
|
|
1754
1880
|
onNextYear: () => setViewMonth(addMonths(viewMonth, 12))
|
|
1755
1881
|
}
|
|
1756
1882
|
),
|
|
1757
|
-
/* @__PURE__ */ (0,
|
|
1883
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CalendarMonth, { month: addMonths(viewMonth, 1), range: rangeDates, previewEnd: activeIndex === 1 ? hoverDate : "", disabledDate: isDisabled, onSelect: selectDate, onHover: activeIndex === 1 ? setHoverDate : void 0 })
|
|
1758
1884
|
] })
|
|
1759
1885
|
] }) }),
|
|
1760
|
-
/* @__PURE__ */ (0,
|
|
1886
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1761
1887
|
DatePanelFooter,
|
|
1762
1888
|
{
|
|
1763
1889
|
showToday: showToday && !presets?.length,
|
|
1764
1890
|
needConfirm: resolvedNeedConfirm || allowEmpty.some(Boolean),
|
|
1765
1891
|
disabledConfirm: compactDateTime && showTime && activeIndex === 0 ? !draftValue[0] : !isValidRange(draftValue),
|
|
1766
1892
|
confirmText: compactDateTime && showTime && activeIndex === 0 ? "\u4E0B\u4E00\u6B65" : "\u786E\u5B9A",
|
|
1767
|
-
extra: /* @__PURE__ */ (0,
|
|
1893
|
+
extra: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(import_jsx_runtime7.Fragment, { children: [
|
|
1768
1894
|
renderExtraFooter?.(),
|
|
1769
|
-
presets?.map((preset2, index) => /* @__PURE__ */ (0,
|
|
1770
|
-
compactDateTime && showTime && activeIndex === 1 ? /* @__PURE__ */ (0,
|
|
1895
|
+
presets?.map((preset2, index) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { type: "button", onClick: () => applyPreset(preset2), children: preset2.label }, index)),
|
|
1896
|
+
compactDateTime && showTime && activeIndex === 1 ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { type: "button", onClick: () => {
|
|
1771
1897
|
setActiveIndex(0);
|
|
1772
1898
|
setViewMonth(startOfMonth(parseDate(dayFromValue(draftValue[0])) ?? /* @__PURE__ */ new Date()));
|
|
1773
1899
|
}, children: "\u4E0A\u4E00\u6B65" }) : null,
|
|
1774
|
-
invalidDateTimeRange ? /* @__PURE__ */ (0,
|
|
1900
|
+
invalidDateTimeRange ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("small", { className: "sia-date-panel__range-error", children: "\u7ED3\u675F\u65F6\u95F4\u4E0D\u80FD\u65E9\u4E8E\u5F00\u59CB\u65F6\u95F4" }) : maxRangeDays ? /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("small", { children: [
|
|
1775
1901
|
"\u6700\u591A\u9009\u62E9 ",
|
|
1776
1902
|
maxRangeDays,
|
|
1777
1903
|
" \u5929"
|
|
@@ -1793,11 +1919,11 @@ var import_react16 = require("react");
|
|
|
1793
1919
|
|
|
1794
1920
|
// src/components/Modal.tsx
|
|
1795
1921
|
var import_react8 = require("react");
|
|
1796
|
-
var
|
|
1922
|
+
var import_client2 = require("react-dom/client");
|
|
1797
1923
|
|
|
1798
1924
|
// src/components/Button.tsx
|
|
1799
1925
|
var import_react6 = require("react");
|
|
1800
|
-
var
|
|
1926
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1801
1927
|
var Button = (0, import_react6.forwardRef)(function Button2({
|
|
1802
1928
|
variant = "default",
|
|
1803
1929
|
size: sizeProp,
|
|
@@ -1832,7 +1958,7 @@ var Button = (0, import_react6.forwardRef)(function Button2({
|
|
|
1832
1958
|
onClick?.(event);
|
|
1833
1959
|
}
|
|
1834
1960
|
const mergedStyle = block ? { ...style, width: "100%" } : style ?? {};
|
|
1835
|
-
return /* @__PURE__ */ (0,
|
|
1961
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1836
1962
|
"button",
|
|
1837
1963
|
{
|
|
1838
1964
|
ref: setRef,
|
|
@@ -1842,11 +1968,11 @@ var Button = (0, import_react6.forwardRef)(function Button2({
|
|
|
1842
1968
|
disabled: disabled || loading,
|
|
1843
1969
|
onClick: handleClick,
|
|
1844
1970
|
style: mergedStyle,
|
|
1845
|
-
...props,
|
|
1971
|
+
...withTitleTooltip(props),
|
|
1846
1972
|
children: [
|
|
1847
|
-
loading ? /* @__PURE__ */ (0,
|
|
1848
|
-
children !== void 0 && children !== null ? /* @__PURE__ */ (0,
|
|
1849
|
-
!loading && icon && iconPosition === "end" ? /* @__PURE__ */ (0,
|
|
1973
|
+
loading ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-button__spinner", "aria-hidden": "true" }) : icon && iconPosition === "start" ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-button__icon", children: icon }) : null,
|
|
1974
|
+
children !== void 0 && children !== null ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children }) : null,
|
|
1975
|
+
!loading && icon && iconPosition === "end" ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-button__icon", children: icon }) : null
|
|
1850
1976
|
]
|
|
1851
1977
|
}
|
|
1852
1978
|
);
|
|
@@ -1932,15 +2058,15 @@ function OverlayPortal({ children, container }) {
|
|
|
1932
2058
|
}
|
|
1933
2059
|
|
|
1934
2060
|
// src/components/Modal.tsx
|
|
1935
|
-
var
|
|
2061
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1936
2062
|
var modalHandles = /* @__PURE__ */ new Set();
|
|
1937
2063
|
var MODAL_MOTION_DURATION = 220;
|
|
1938
2064
|
var typeIcons = {
|
|
1939
|
-
info: /* @__PURE__ */ (0,
|
|
1940
|
-
success: /* @__PURE__ */ (0,
|
|
1941
|
-
warning: /* @__PURE__ */ (0,
|
|
1942
|
-
error: /* @__PURE__ */ (0,
|
|
1943
|
-
confirm: /* @__PURE__ */ (0,
|
|
2065
|
+
info: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "info", size: 23 }),
|
|
2066
|
+
success: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "circle-check", size: 23 }),
|
|
2067
|
+
warning: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "warning", size: 23 }),
|
|
2068
|
+
error: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "circle-close", size: 23 }),
|
|
2069
|
+
confirm: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "question", size: 23 })
|
|
1944
2070
|
};
|
|
1945
2071
|
var ModalRoot = (0, import_react8.forwardRef)(function Modal({
|
|
1946
2072
|
open,
|
|
@@ -1960,6 +2086,7 @@ var ModalRoot = (0, import_react8.forwardRef)(function Modal({
|
|
|
1960
2086
|
keyboard = true,
|
|
1961
2087
|
centered = false,
|
|
1962
2088
|
width = 520,
|
|
2089
|
+
height,
|
|
1963
2090
|
zIndex = 1e3,
|
|
1964
2091
|
getContainer,
|
|
1965
2092
|
onOk,
|
|
@@ -2035,15 +2162,16 @@ var ModalRoot = (0, import_react8.forwardRef)(function Modal({
|
|
|
2035
2162
|
useOverlayLifecycle(rendered, localRef, requestClose, keyboard);
|
|
2036
2163
|
if (!rendered) return null;
|
|
2037
2164
|
const mergedStyle = {
|
|
2165
|
+
...height !== void 0 ? { display: "flex", flexDirection: "column", height, maxHeight: "calc(100dvh - 48px)" } : {},
|
|
2038
2166
|
...style,
|
|
2039
2167
|
"--sia-modal-width": typeof width === "number" ? `${width}px` : width
|
|
2040
2168
|
};
|
|
2041
2169
|
const loading = submitting || confirmLoading;
|
|
2042
|
-
const defaultFooter = /* @__PURE__ */ (0,
|
|
2043
|
-
showCancel ? /* @__PURE__ */ (0,
|
|
2044
|
-
/* @__PURE__ */ (0,
|
|
2170
|
+
const defaultFooter = /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
2171
|
+
showCancel ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Button, { ...cancelButtonProps, onClick: requestClose, disabled: loading || cancelButtonProps?.disabled, children: cancelText }) : null,
|
|
2172
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Button, { variant: "primary", ...okButtonProps, onClick: handleOk, loading, children: okText })
|
|
2045
2173
|
] });
|
|
2046
|
-
return /* @__PURE__ */ (0,
|
|
2174
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(OverlayPortal, { container: getContainer, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
2047
2175
|
"div",
|
|
2048
2176
|
{
|
|
2049
2177
|
className: `sia-modal-root${centered ? " sia-modal-root--centered" : ""}`,
|
|
@@ -2052,7 +2180,7 @@ var ModalRoot = (0, import_react8.forwardRef)(function Modal({
|
|
|
2052
2180
|
onMouseDown: (event) => {
|
|
2053
2181
|
if (event.target === event.currentTarget && maskClosable) requestClose();
|
|
2054
2182
|
},
|
|
2055
|
-
children: /* @__PURE__ */ (0,
|
|
2183
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
2056
2184
|
"div",
|
|
2057
2185
|
{
|
|
2058
2186
|
ref: setRef,
|
|
@@ -2062,18 +2190,18 @@ var ModalRoot = (0, import_react8.forwardRef)(function Modal({
|
|
|
2062
2190
|
"aria-modal": "true",
|
|
2063
2191
|
"aria-labelledby": title ? titleId : void 0,
|
|
2064
2192
|
tabIndex: -1,
|
|
2065
|
-
...props,
|
|
2193
|
+
...withTitleTooltip(props),
|
|
2066
2194
|
children: [
|
|
2067
|
-
/* @__PURE__ */ (0,
|
|
2068
|
-
/* @__PURE__ */ (0,
|
|
2069
|
-
typeIcons[type] ? /* @__PURE__ */ (0,
|
|
2070
|
-
title ? /* @__PURE__ */ (0,
|
|
2195
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-modal__header", style: height !== void 0 ? { flexShrink: 0 } : void 0, children: [
|
|
2196
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-modal__heading", children: [
|
|
2197
|
+
typeIcons[type] ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-modal__type-icon", "aria-hidden": "true", children: typeIcons[type] }) : null,
|
|
2198
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("strong", { id: titleId, children: title }) : null
|
|
2071
2199
|
] }),
|
|
2072
|
-
closable ? /* @__PURE__ */ (0,
|
|
2200
|
+
closable ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("button", { type: "button", className: "sia-modal__close", "aria-label": "\u5173\u95ED\u5BF9\u8BDD\u6846", onClick: requestClose, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "close", size: 17 }) }) : null
|
|
2073
2201
|
] }),
|
|
2074
|
-
children !== void 0 ? /* @__PURE__ */ (0,
|
|
2075
|
-
footer !== null ? /* @__PURE__ */ (0,
|
|
2076
|
-
footer === void 0 && footerExtra != null ? /* @__PURE__ */ (0,
|
|
2202
|
+
children !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "sia-modal__body", style: height !== void 0 ? { flex: 1, minHeight: 0, overflow: "auto" } : void 0, children }) : null,
|
|
2203
|
+
footer !== null ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-modal__footer", style: height !== void 0 ? { flexShrink: 0 } : void 0, children: [
|
|
2204
|
+
footer === void 0 && footerExtra != null ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { marginRight: "auto" }, children: footerExtra }) : null,
|
|
2077
2205
|
footer ?? defaultFooter
|
|
2078
2206
|
] }) : null
|
|
2079
2207
|
]
|
|
@@ -2089,7 +2217,7 @@ function openModal(config) {
|
|
|
2089
2217
|
const container = document.createElement("div");
|
|
2090
2218
|
container.className = "sia-modal-api-host";
|
|
2091
2219
|
document.body.appendChild(container);
|
|
2092
|
-
const root = (0,
|
|
2220
|
+
const root = (0, import_client2.createRoot)(container);
|
|
2093
2221
|
let currentConfig = config;
|
|
2094
2222
|
let currentOpen = true;
|
|
2095
2223
|
let destroyed = false;
|
|
@@ -2109,7 +2237,7 @@ function openModal(config) {
|
|
|
2109
2237
|
cleanupTimer = window.setTimeout(cleanup2, MODAL_MOTION_DURATION);
|
|
2110
2238
|
}
|
|
2111
2239
|
function render() {
|
|
2112
|
-
root.render(/* @__PURE__ */ (0,
|
|
2240
|
+
root.render(/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(ModalRoot, { ...currentConfig, open: currentOpen, onOpenChange: (nextOpen) => {
|
|
2113
2241
|
currentConfig.onOpenChange?.(nextOpen);
|
|
2114
2242
|
if (!nextOpen) closeWithMotion();
|
|
2115
2243
|
} }));
|
|
@@ -2158,7 +2286,7 @@ var Modal2 = Object.assign(ModalRoot, {
|
|
|
2158
2286
|
|
|
2159
2287
|
// src/components/Input.tsx
|
|
2160
2288
|
var import_react9 = require("react");
|
|
2161
|
-
var
|
|
2289
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
2162
2290
|
var Input = (0, import_react9.forwardRef)(function Input2({
|
|
2163
2291
|
label,
|
|
2164
2292
|
hint,
|
|
@@ -2222,10 +2350,10 @@ var Input = (0, import_react9.forwardRef)(function Input2({
|
|
|
2222
2350
|
event.preventDefault();
|
|
2223
2351
|
localRef.current?.focus({ preventScroll: true });
|
|
2224
2352
|
}
|
|
2225
|
-
const input = /* @__PURE__ */ (0,
|
|
2353
|
+
const input = /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
2226
2354
|
"input",
|
|
2227
2355
|
{
|
|
2228
|
-
...props,
|
|
2356
|
+
...withTitleTooltip(props),
|
|
2229
2357
|
ref: setRef,
|
|
2230
2358
|
id: inputId,
|
|
2231
2359
|
className: "sia-input",
|
|
@@ -2239,30 +2367,30 @@ var Input = (0, import_react9.forwardRef)(function Input2({
|
|
|
2239
2367
|
onChange: handleChange
|
|
2240
2368
|
}
|
|
2241
2369
|
);
|
|
2242
|
-
const control = /* @__PURE__ */ (0,
|
|
2243
|
-
prefix ? /* @__PURE__ */ (0,
|
|
2244
|
-
floatingPlaceholder ? /* @__PURE__ */ (0,
|
|
2370
|
+
const control = /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("span", { onMouseDown: handleControlMouseDown, className: `sia-input-control sia-input-control--${size} sia-input-control--${status}${floatingPlaceholder ? " sia-input-control--floating" : ""}${floatingPlaceholder && hasValue ? " is-filled" : ""}${disabled ? " is-disabled" : ""}`, children: [
|
|
2371
|
+
prefix ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-input-control__affix", children: prefix }) : null,
|
|
2372
|
+
floatingPlaceholder ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("span", { className: "sia-input-control__input-wrap", children: [
|
|
2245
2373
|
input,
|
|
2246
|
-
/* @__PURE__ */ (0,
|
|
2374
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-input-control__floating-placeholder", "aria-hidden": "true", children: placeholder })
|
|
2247
2375
|
] }) : input,
|
|
2248
|
-
allowClear && hasValue && !disabled ? /* @__PURE__ */ (0,
|
|
2249
|
-
suffix ? /* @__PURE__ */ (0,
|
|
2250
|
-
showCount ? /* @__PURE__ */ (0,
|
|
2376
|
+
allowClear && hasValue && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "sia-input-control__clear", type: "button", "aria-label": "\u6E05\u7A7A\u8F93\u5165", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
2377
|
+
suffix ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-input-control__affix", children: suffix }) : null,
|
|
2378
|
+
showCount ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("span", { className: `sia-input-control__count${maxLength !== void 0 && currentText.length >= maxLength ? " is-limit" : ""}`, "aria-live": "polite", children: [
|
|
2251
2379
|
currentText.length,
|
|
2252
2380
|
maxLength !== void 0 ? `/${maxLength}` : null
|
|
2253
2381
|
] }) : null
|
|
2254
2382
|
] });
|
|
2255
|
-
if (!label && !hint) return /* @__PURE__ */ (0,
|
|
2256
|
-
return /* @__PURE__ */ (0,
|
|
2257
|
-
label ? /* @__PURE__ */ (0,
|
|
2383
|
+
if (!label && !hint) return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: `sia-field ${className}`.trim(), children: control });
|
|
2384
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("span", { className: `sia-field ${className}`.trim(), children: [
|
|
2385
|
+
label ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { className: "sia-field__label", htmlFor: inputId, children: label }) : null,
|
|
2258
2386
|
control,
|
|
2259
|
-
hint ? /* @__PURE__ */ (0,
|
|
2387
|
+
hint ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { id: hintId, className: `sia-field__hint sia-field__hint--${status}`, children: hint }) : null
|
|
2260
2388
|
] });
|
|
2261
2389
|
});
|
|
2262
2390
|
|
|
2263
2391
|
// src/components/Checkbox.tsx
|
|
2264
2392
|
var import_react10 = require("react");
|
|
2265
|
-
var
|
|
2393
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
2266
2394
|
var CheckboxGroupContext = (0, import_react10.createContext)(null);
|
|
2267
2395
|
var CheckboxRoot = (0, import_react10.forwardRef)(function Checkbox({ value, size: sizeProp, indeterminate = false, children, disabled, checked, defaultChecked, className = "", onChange, ...props }, forwardedRef) {
|
|
2268
2396
|
const size = useControlSize(sizeProp);
|
|
@@ -2279,11 +2407,11 @@ var CheckboxRoot = (0, import_react10.forwardRef)(function Checkbox({ value, siz
|
|
|
2279
2407
|
if (typeof forwardedRef === "function") forwardedRef(node);
|
|
2280
2408
|
else if (forwardedRef) forwardedRef.current = node;
|
|
2281
2409
|
}
|
|
2282
|
-
return /* @__PURE__ */ (0,
|
|
2283
|
-
/* @__PURE__ */ (0,
|
|
2410
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("label", { className: `sia-checkbox sia-checkbox--${size}${disabled || group?.disabled ? " is-disabled" : ""} ${className}`.trim(), children: [
|
|
2411
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
2284
2412
|
"input",
|
|
2285
2413
|
{
|
|
2286
|
-
...props,
|
|
2414
|
+
...withTitleTooltip(props),
|
|
2287
2415
|
ref: setRef,
|
|
2288
2416
|
id: props.id ?? fallbackId,
|
|
2289
2417
|
className: "sia-checkbox__input",
|
|
@@ -2299,8 +2427,8 @@ var CheckboxRoot = (0, import_react10.forwardRef)(function Checkbox({ value, siz
|
|
|
2299
2427
|
}
|
|
2300
2428
|
}
|
|
2301
2429
|
),
|
|
2302
|
-
/* @__PURE__ */ (0,
|
|
2303
|
-
children !== void 0 ? /* @__PURE__ */ (0,
|
|
2430
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { className: "sia-checkbox__control", "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", {}) }),
|
|
2431
|
+
children !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { className: "sia-checkbox__label", children }) : null
|
|
2304
2432
|
] });
|
|
2305
2433
|
});
|
|
2306
2434
|
function CheckboxGroup({
|
|
@@ -2325,10 +2453,10 @@ function CheckboxGroup({
|
|
|
2325
2453
|
setValues(next);
|
|
2326
2454
|
}
|
|
2327
2455
|
}), [disabled, name, setValues, values]);
|
|
2328
|
-
return /* @__PURE__ */ (0,
|
|
2456
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(ControlSizeContext.Provider, { value: size, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(CheckboxGroupContext.Provider, { value: context, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: `sia-checkbox-group ${className}`.trim(), role: "group", children: [
|
|
2329
2457
|
options?.map((option) => {
|
|
2330
2458
|
const normalized = typeof option === "object" ? option : { label: String(option), value: option };
|
|
2331
|
-
return /* @__PURE__ */ (0,
|
|
2459
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(CheckboxRoot, { value: normalized.value, disabled: normalized.disabled, children: normalized.label }, normalized.value);
|
|
2332
2460
|
}),
|
|
2333
2461
|
children
|
|
2334
2462
|
] }) }) });
|
|
@@ -2344,7 +2472,7 @@ var import_react12 = require("react");
|
|
|
2344
2472
|
// src/components/FloatingDisplay.tsx
|
|
2345
2473
|
var import_react11 = require("react");
|
|
2346
2474
|
var import_react_dom3 = require("react-dom");
|
|
2347
|
-
var
|
|
2475
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
2348
2476
|
var FLOATING_GAP = 9;
|
|
2349
2477
|
var FLOATING_VIEWPORT_PADDING = 8;
|
|
2350
2478
|
var FLOATING_ARROW_EDGE_OFFSET = 16;
|
|
@@ -2495,7 +2623,7 @@ function Floating({
|
|
|
2495
2623
|
"aria-describedby": visible ? contentId : void 0
|
|
2496
2624
|
});
|
|
2497
2625
|
const overlay = visible && content !== null && content !== void 0 && typeof document !== "undefined" ? (0, import_react_dom3.createPortal)(
|
|
2498
|
-
/* @__PURE__ */ (0,
|
|
2626
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
2499
2627
|
"span",
|
|
2500
2628
|
{
|
|
2501
2629
|
ref: overlayRef,
|
|
@@ -2515,23 +2643,23 @@ function Floating({
|
|
|
2515
2643
|
onMouseLeave: triggers.includes("hover") ? () => hide(mouseLeaveDelay) : void 0,
|
|
2516
2644
|
children: [
|
|
2517
2645
|
content,
|
|
2518
|
-
arrow ? /* @__PURE__ */ (0,
|
|
2646
|
+
arrow ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "sia-floating__arrow" }) : null
|
|
2519
2647
|
]
|
|
2520
2648
|
}
|
|
2521
2649
|
),
|
|
2522
2650
|
document.body
|
|
2523
2651
|
) : null;
|
|
2524
|
-
return /* @__PURE__ */ (0,
|
|
2525
|
-
/* @__PURE__ */ (0,
|
|
2652
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
|
|
2653
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ref: rootRef, className: `sia-floating ${className}`.trim(), children: child }),
|
|
2526
2654
|
overlay
|
|
2527
2655
|
] });
|
|
2528
2656
|
}
|
|
2529
2657
|
function Tooltip(props) {
|
|
2530
|
-
return /* @__PURE__ */ (0,
|
|
2658
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Floating, { ...props, content: props.title });
|
|
2531
2659
|
}
|
|
2532
2660
|
|
|
2533
2661
|
// src/components/SelectionPanel.tsx
|
|
2534
|
-
var
|
|
2662
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2535
2663
|
function SelectionPanel({
|
|
2536
2664
|
options,
|
|
2537
2665
|
value,
|
|
@@ -2620,8 +2748,8 @@ function SelectionPanel({
|
|
|
2620
2748
|
const add = enabled.filter((option) => operation === "all" || !selected.has(option.value)).map((option) => option.value);
|
|
2621
2749
|
onChange([...retained, ...add]);
|
|
2622
2750
|
}
|
|
2623
|
-
return /* @__PURE__ */ (0,
|
|
2624
|
-
showSearch && /* @__PURE__ */ (0,
|
|
2751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "sia-selection-panel", children: [
|
|
2752
|
+
showSearch && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2625
2753
|
Input,
|
|
2626
2754
|
{
|
|
2627
2755
|
"aria-label": "\u641C\u7D22\u9009\u9879",
|
|
@@ -2635,17 +2763,17 @@ function SelectionPanel({
|
|
|
2635
2763
|
}
|
|
2636
2764
|
}
|
|
2637
2765
|
),
|
|
2638
|
-
multiple && showActions && /* @__PURE__ */ (0,
|
|
2639
|
-
/* @__PURE__ */ (0,
|
|
2640
|
-
/* @__PURE__ */ (0,
|
|
2641
|
-
/* @__PURE__ */ (0,
|
|
2642
|
-
/* @__PURE__ */ (0,
|
|
2766
|
+
multiple && showActions && /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "sia-selection-panel__actions", children: [
|
|
2767
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Button, { variant: "link", size: "small", disabled: disabled || loading || !enabled.length, onClick: () => batch("all"), children: "\u5168\u9009" }),
|
|
2768
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Button, { variant: "link", size: "small", disabled: disabled || loading || !enabled.length, onClick: () => batch("invert"), children: "\u53CD\u9009" }),
|
|
2769
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Button, { variant: "link", size: "small", disabled: disabled || loading || !value.length, onClick: () => batch("clear"), children: "\u6E05\u7A7A" }),
|
|
2770
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("span", { children: [
|
|
2643
2771
|
"\u5DF2\u9009 ",
|
|
2644
2772
|
value.length,
|
|
2645
2773
|
" \u9879"
|
|
2646
2774
|
] })
|
|
2647
2775
|
] }),
|
|
2648
|
-
/* @__PURE__ */ (0,
|
|
2776
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2649
2777
|
"div",
|
|
2650
2778
|
{
|
|
2651
2779
|
ref: listRef,
|
|
@@ -2682,12 +2810,12 @@ function SelectionPanel({
|
|
|
2682
2810
|
toggle(enabled[index], true);
|
|
2683
2811
|
}
|
|
2684
2812
|
},
|
|
2685
|
-
children: loading ? /* @__PURE__ */ (0,
|
|
2813
|
+
children: loading ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { role: "status", children: "\u52A0\u8F7D\u4E2D\u2026" }) : !rows.length ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "sia-selection-panel__empty", children: "\u6682\u65E0\u5339\u914D\u9009\u9879" }) : /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { height: totalHeight, position: "relative" }, children: renderedRows.map((row) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2686
2814
|
"div",
|
|
2687
2815
|
{
|
|
2688
2816
|
className: row.title !== void 0 ? "sia-selection-panel__group" : "sia-selection-panel__row",
|
|
2689
2817
|
style: { position: "absolute", top: row.top, height: row.height, width: "100%", gridTemplateColumns: `repeat(${count}, minmax(0, 1fr))` },
|
|
2690
|
-
children: row.title ?? row.items?.map((option, index) => option.optionType === "divider" ? /* @__PURE__ */ (0,
|
|
2818
|
+
children: row.title ?? row.items?.map((option, index) => option.optionType === "divider" ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { role: "separator", className: "sia-selection-panel__divider" }, `divider-${index}`) : /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Tooltip, { title: option.disabled ? option.disabledTip : void 0, placement: "right", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2691
2819
|
"div",
|
|
2692
2820
|
{
|
|
2693
2821
|
role: "option",
|
|
@@ -2703,12 +2831,12 @@ function SelectionPanel({
|
|
|
2703
2831
|
onClick: (event) => {
|
|
2704
2832
|
if (!event.target.closest(".sia-checkbox")) toggle(option);
|
|
2705
2833
|
},
|
|
2706
|
-
children: multiple ? /* @__PURE__ */ (0,
|
|
2707
|
-
/* @__PURE__ */ (0,
|
|
2708
|
-
showValue && /* @__PURE__ */ (0,
|
|
2709
|
-
] }) }) : /* @__PURE__ */ (0,
|
|
2710
|
-
/* @__PURE__ */ (0,
|
|
2711
|
-
showValue && /* @__PURE__ */ (0,
|
|
2834
|
+
children: multiple ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Checkbox2, { checked: selected.has(option.value), disabled: disabled || loading || option.disabled, tabIndex: -1, onChange: () => toggle(option), children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("span", { className: "sia-selection-panel__text", children: [
|
|
2835
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "sia-selection-panel__label", children: showValue || displayField === "label" ? option.label : String(option.value) }),
|
|
2836
|
+
showValue && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("small", { children: String(option.value) })
|
|
2837
|
+
] }) }) : /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("span", { className: "sia-selection-panel__text", children: [
|
|
2838
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "sia-selection-panel__label", children: showValue || displayField === "label" ? option.label : String(option.value) }),
|
|
2839
|
+
showValue && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("small", { children: String(option.value) })
|
|
2712
2840
|
] })
|
|
2713
2841
|
}
|
|
2714
2842
|
) }, `${typeof option.value}-${option.value}`))
|
|
@@ -2722,7 +2850,7 @@ function SelectionPanel({
|
|
|
2722
2850
|
|
|
2723
2851
|
// src/components/OverflowTags.tsx
|
|
2724
2852
|
var import_react13 = require("react");
|
|
2725
|
-
var
|
|
2853
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
2726
2854
|
function OverflowTags({ items, maxCount, className = "", tagClassName, restClassName = "" }) {
|
|
2727
2855
|
const rootRef = (0, import_react13.useRef)(null);
|
|
2728
2856
|
const measureRef = (0, import_react13.useRef)(null);
|
|
@@ -2751,15 +2879,15 @@ function OverflowTags({ items, maxCount, className = "", tagClassName, restClass
|
|
|
2751
2879
|
return () => observer.disconnect();
|
|
2752
2880
|
}, [items, limit]);
|
|
2753
2881
|
const count = Math.min(visibleCount, limit);
|
|
2754
|
-
return /* @__PURE__ */ (0,
|
|
2755
|
-
items.slice(0, count).map((item) => /* @__PURE__ */ (0,
|
|
2756
|
-
items.length > count ? /* @__PURE__ */ (0,
|
|
2882
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { ref: rootRef, className: `sia-overflow-tags ${className}`.trim(), children: [
|
|
2883
|
+
items.slice(0, count).map((item) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: tagClassName, children: item.label }, item.key)),
|
|
2884
|
+
items.length > count ? /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { className: `${tagClassName} sia-overflow-tags__rest ${restClassName}`.trim(), children: [
|
|
2757
2885
|
"+",
|
|
2758
2886
|
items.length - count
|
|
2759
2887
|
] }) : null,
|
|
2760
|
-
/* @__PURE__ */ (0,
|
|
2761
|
-
items.slice(0, limit).map((item) => /* @__PURE__ */ (0,
|
|
2762
|
-
Array.from({ length: limit + 1 }, (_, index) => /* @__PURE__ */ (0,
|
|
2888
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { ref: measureRef, className: "sia-overflow-tags__measure", "aria-hidden": "true", children: [
|
|
2889
|
+
items.slice(0, limit).map((item) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: tagClassName, children: item.label }, item.key)),
|
|
2890
|
+
Array.from({ length: limit + 1 }, (_, index) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("span", { className: `${tagClassName} ${restClassName}`.trim(), children: [
|
|
2763
2891
|
"+",
|
|
2764
2892
|
items.length - index
|
|
2765
2893
|
] }, `rest-${index}`))
|
|
@@ -3143,7 +3271,7 @@ function FloatingScrollbarProvider({ disabled = false, targetRef }) {
|
|
|
3143
3271
|
}
|
|
3144
3272
|
|
|
3145
3273
|
// src/components/Select.tsx
|
|
3146
|
-
var
|
|
3274
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
3147
3275
|
function defaultFilterOption(query, option) {
|
|
3148
3276
|
const keyword = query.toLowerCase();
|
|
3149
3277
|
return [option.label, option.value].some((value) => String(value).toLowerCase().includes(keyword));
|
|
@@ -3220,9 +3348,10 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3220
3348
|
}
|
|
3221
3349
|
});
|
|
3222
3350
|
const selectedValues = (0, import_react16.useMemo)(() => {
|
|
3351
|
+
if (currentValue == null || currentValue === "" && !options.some((option) => option.value === "")) return [];
|
|
3223
3352
|
if (mode === "multiple") return Array.isArray(currentValue) ? currentValue : currentValue === null ? [] : [currentValue];
|
|
3224
3353
|
return Array.isArray(currentValue) ? currentValue.slice(0, 1) : currentValue === null ? [] : [currentValue];
|
|
3225
|
-
}, [currentValue, mode]);
|
|
3354
|
+
}, [currentValue, mode, options]);
|
|
3226
3355
|
const selectedValueSet = (0, import_react16.useMemo)(() => new Set(selectedValues), [selectedValues]);
|
|
3227
3356
|
const availableOptions = (0, import_react16.useMemo)(() => {
|
|
3228
3357
|
if (!allowInput) return options;
|
|
@@ -3404,7 +3533,7 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3404
3533
|
function renderOption(option, renderedIndex) {
|
|
3405
3534
|
const optionIndex = virtualEnabled ? virtualStart + renderedIndex : renderedIndex;
|
|
3406
3535
|
const selected = selectedValueSet.has(option.value);
|
|
3407
|
-
return /* @__PURE__ */ (0,
|
|
3536
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
3408
3537
|
"div",
|
|
3409
3538
|
{
|
|
3410
3539
|
id: `${listboxId}-${optionIndex}`,
|
|
@@ -3417,11 +3546,11 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3417
3546
|
onMouseDown: (event) => event.preventDefault(),
|
|
3418
3547
|
onClick: () => selectOption(option),
|
|
3419
3548
|
children: [
|
|
3420
|
-
/* @__PURE__ */ (0,
|
|
3421
|
-
/* @__PURE__ */ (0,
|
|
3422
|
-
showValue ? /* @__PURE__ */ (0,
|
|
3549
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { className: "sia-select__option-content", children: [
|
|
3550
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "sia-select__option-label", children: option.label }),
|
|
3551
|
+
showValue ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("small", { className: "sia-select__option-value", children: String(option.value) }) : null
|
|
3423
3552
|
] }),
|
|
3424
|
-
selected ? /* @__PURE__ */ (0,
|
|
3553
|
+
selected ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { name: "check", size: 15 }) : null
|
|
3425
3554
|
]
|
|
3426
3555
|
},
|
|
3427
3556
|
`${typeof option.value}-${option.value}`
|
|
@@ -3435,11 +3564,11 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3435
3564
|
setModalValues([...modalValues.filter((value2) => !editable.has(value2)), ...modalEnabled.filter((option) => operation === "all" || operation === "invert" && !modalValues.includes(option.value)).map((option) => option.value)]);
|
|
3436
3565
|
}
|
|
3437
3566
|
const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder, filled: hasValue, active: open });
|
|
3438
|
-
return /* @__PURE__ */ (0,
|
|
3439
|
-
/* @__PURE__ */ (0,
|
|
3567
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { ref: rootRef, className: `sia-select sia-select--${size} sia-select--${status}${open ? " is-open" : ""}${disabled ? " is-disabled" : ""}${multiple ? " sia-select--multiple" : ""} ${className}`.trim(), style, children: [
|
|
3568
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
3440
3569
|
"button",
|
|
3441
3570
|
{
|
|
3442
|
-
...props,
|
|
3571
|
+
...withTitleTooltip(props),
|
|
3443
3572
|
ref: forwardedRef,
|
|
3444
3573
|
className: `sia-select__trigger${floating.className}`,
|
|
3445
3574
|
id: selectId,
|
|
@@ -3454,29 +3583,29 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3454
3583
|
onClick: () => open ? closeDropdown() : openDropdown(),
|
|
3455
3584
|
onKeyDown: handleTriggerKeyDown,
|
|
3456
3585
|
children: [
|
|
3457
|
-
multiple && hasValue ? /* @__PURE__ */ (0,
|
|
3458
|
-
loading ? /* @__PURE__ */ (0,
|
|
3586
|
+
multiple && hasValue ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(OverflowTags, { className: "sia-select__tags", tagClassName: "sia-select__tag", restClassName: "sia-select__tag--rest", maxCount: maxTagCount, items: selectedOptions.map((option) => ({ key: `${typeof option.value}-${option.value}`, label: option.label })) }) : /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: `sia-select__value${hasValue ? "" : " is-placeholder"}`, children: selectedOptions[0]?.label ?? placeholder }),
|
|
3587
|
+
loading ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "sia-select__spinner", "aria-hidden": "true" }) : null,
|
|
3459
3588
|
floating.label,
|
|
3460
|
-
/* @__PURE__ */ (0,
|
|
3589
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { className: "sia-select__arrow", name: "chevron-down", size: 15 })
|
|
3461
3590
|
]
|
|
3462
3591
|
}
|
|
3463
3592
|
),
|
|
3464
|
-
allowClear && hasValue && !disabled && !loading ? /* @__PURE__ */ (0,
|
|
3465
|
-
/* @__PURE__ */ (0,
|
|
3466
|
-
/* @__PURE__ */ (0,
|
|
3467
|
-
showSearch || allowInput ? /* @__PURE__ */ (0,
|
|
3468
|
-
/* @__PURE__ */ (0,
|
|
3469
|
-
/* @__PURE__ */ (0,
|
|
3593
|
+
allowClear && hasValue && !disabled && !loading ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "sia-select__clear", type: "button", "aria-label": "\u6E05\u7A7A\u9009\u62E9", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
3594
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open: open && popupMode === "dropdown", className: `sia-select__dropdown${filteredOptions.length === 0 && !canSubmitInput ? " sia-select__dropdown--empty" : ""}`, children: [
|
|
3595
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(FloatingScrollbarProvider, { targetRef: listRef }),
|
|
3596
|
+
showSearch || allowInput ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: "sia-select__search", children: [
|
|
3597
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { name: "search", size: 15 }),
|
|
3598
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("input", { ref: searchRef, value: query, maxLength: inputMaxLength, onChange: handleSearchChange, onKeyDown: (event) => handleInteractionKeyDown(event, true), placeholder: searchPlaceholder, "aria-label": searchPlaceholder })
|
|
3470
3599
|
] }) : null,
|
|
3471
|
-
canSubmitInput ? /* @__PURE__ */ (0,
|
|
3472
|
-
/* @__PURE__ */ (0,
|
|
3473
|
-
/* @__PURE__ */ (0,
|
|
3600
|
+
canSubmitInput ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { type: "button", className: "sia-select__input-option", onMouseDown: (event) => event.preventDefault(), onClick: submitInputValue, children: [
|
|
3601
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { name: "plus", size: 14 }),
|
|
3602
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { children: [
|
|
3474
3603
|
"\u4F7F\u7528\u201C",
|
|
3475
3604
|
inputValue,
|
|
3476
3605
|
"\u201D"
|
|
3477
3606
|
] })
|
|
3478
3607
|
] }) : null,
|
|
3479
|
-
/* @__PURE__ */ (0,
|
|
3608
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
3480
3609
|
"div",
|
|
3481
3610
|
{
|
|
3482
3611
|
ref: listRef,
|
|
@@ -3487,23 +3616,23 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3487
3616
|
"aria-multiselectable": multiple || void 0,
|
|
3488
3617
|
style: { maxHeight: listHeight },
|
|
3489
3618
|
onScroll: handleListScroll,
|
|
3490
|
-
children: filteredOptions.length > 0 ? virtualEnabled ? /* @__PURE__ */ (0,
|
|
3619
|
+
children: filteredOptions.length > 0 ? virtualEnabled ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "sia-select__virtual-space", style: { height: filteredOptions.length * optionHeight }, children: renderedOptions.map(renderOption) }) : renderedOptions.map(renderOption) : canSubmitInput ? null : /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "sia-select__empty", children: notFoundContent })
|
|
3491
3620
|
}
|
|
3492
3621
|
),
|
|
3493
|
-
showActions ? /* @__PURE__ */ (0,
|
|
3494
|
-
/* @__PURE__ */ (0,
|
|
3622
|
+
showActions ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "sia-select__actions", children: [
|
|
3623
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("span", { children: [
|
|
3495
3624
|
"\u5171 ",
|
|
3496
3625
|
filteredOptions.length,
|
|
3497
3626
|
" \u6761"
|
|
3498
3627
|
] }),
|
|
3499
|
-
multiple && showSelectAll ? /* @__PURE__ */ (0,
|
|
3500
|
-
/* @__PURE__ */ (0,
|
|
3501
|
-
/* @__PURE__ */ (0,
|
|
3628
|
+
multiple && showSelectAll ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_jsx_runtime15.Fragment, { children: [
|
|
3629
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "link", size: "small", disabled: allFilteredSelected || !enabledFilteredOptions.length, onClick: selectAllFiltered, children: "\u5168\u9009" }),
|
|
3630
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "link", size: "small", disabled: !enabledFilteredOptions.length, onClick: invertFiltered, children: "\u53CD\u9009" })
|
|
3502
3631
|
] }) : null,
|
|
3503
|
-
multiple || allowClear ? /* @__PURE__ */ (0,
|
|
3632
|
+
multiple || allowClear ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "link", size: "small", danger: true, disabled: !hasValue, onClick: clearSelection, children: "\u6E05\u7A7A" }) : null
|
|
3504
3633
|
] }) : null
|
|
3505
3634
|
] }),
|
|
3506
|
-
popupMode === "modal" ? /* @__PURE__ */ (0,
|
|
3635
|
+
popupMode === "modal" ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
3507
3636
|
Modal2,
|
|
3508
3637
|
{
|
|
3509
3638
|
className: "sia-select-modal",
|
|
@@ -3515,30 +3644,30 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3515
3644
|
if (!next) closeDropdown();
|
|
3516
3645
|
},
|
|
3517
3646
|
onCancel: closeDropdown,
|
|
3518
|
-
footer: /* @__PURE__ */ (0,
|
|
3519
|
-
/* @__PURE__ */ (0,
|
|
3520
|
-
/* @__PURE__ */ (0,
|
|
3521
|
-
/* @__PURE__ */ (0,
|
|
3522
|
-
/* @__PURE__ */ (0,
|
|
3647
|
+
footer: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "sia-select-modal__footer", children: [
|
|
3648
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: modalConfig?.footerExtra }),
|
|
3649
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
|
|
3650
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { disabled: modalSubmitting, onClick: closeDropdown, children: "\u53D6\u6D88" }),
|
|
3651
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "primary", loading: modalSubmitting, disabled: disabled || loading, onClick: confirmModalSelection, children: "\u786E\u5B9A" })
|
|
3523
3652
|
] })
|
|
3524
3653
|
] }),
|
|
3525
|
-
children: open ? /* @__PURE__ */ (0,
|
|
3526
|
-
modalConfig?.headerExtra != null && modalConfig.headerExtra !== false ? /* @__PURE__ */ (0,
|
|
3527
|
-
/* @__PURE__ */ (0,
|
|
3528
|
-
/* @__PURE__ */ (0,
|
|
3529
|
-
/* @__PURE__ */ (0,
|
|
3530
|
-
/* @__PURE__ */ (0,
|
|
3654
|
+
children: open ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_jsx_runtime15.Fragment, { children: [
|
|
3655
|
+
modalConfig?.headerExtra != null && modalConfig.headerExtra !== false ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "sia-select-modal__header-extra", children: modalConfig.headerExtra }) : null,
|
|
3656
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "sia-select-modal__heading", children: [
|
|
3657
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { role: "tablist", "aria-label": "\u9009\u9879\u8303\u56F4", children: [
|
|
3658
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { role: "tab", "aria-selected": !selectedOnly, variant: "link", onClick: () => setSelectedOnly(false), children: "\u5168\u90E8" }),
|
|
3659
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(Button, { role: "tab", "aria-selected": selectedOnly, variant: "link", onClick: () => setSelectedOnly(true), children: [
|
|
3531
3660
|
"\u5DF2\u9009\u9879(",
|
|
3532
3661
|
modalValues.length,
|
|
3533
3662
|
")"
|
|
3534
3663
|
] })
|
|
3535
3664
|
] }),
|
|
3536
|
-
/* @__PURE__ */ (0,
|
|
3665
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
3537
3666
|
Input,
|
|
3538
3667
|
{
|
|
3539
3668
|
"aria-label": searchPlaceholder,
|
|
3540
3669
|
placeholder: searchPlaceholder,
|
|
3541
|
-
prefix: /* @__PURE__ */ (0,
|
|
3670
|
+
prefix: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { name: "search", size: 14 }),
|
|
3542
3671
|
value: query,
|
|
3543
3672
|
allowClear: true,
|
|
3544
3673
|
onChange: (event) => {
|
|
@@ -3548,8 +3677,8 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3548
3677
|
}
|
|
3549
3678
|
)
|
|
3550
3679
|
] }),
|
|
3551
|
-
multiple && showSelectAll ? /* @__PURE__ */ (0,
|
|
3552
|
-
/* @__PURE__ */ (0,
|
|
3680
|
+
multiple && showSelectAll ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "sia-select-modal__actions", children: [
|
|
3681
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
3553
3682
|
Checkbox2,
|
|
3554
3683
|
{
|
|
3555
3684
|
checked: modalEnabled.length > 0 && modalEnabled.every((option) => modalValues.includes(option.value)),
|
|
@@ -3559,10 +3688,10 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3559
3688
|
children: "\u5168\u9009"
|
|
3560
3689
|
}
|
|
3561
3690
|
),
|
|
3562
|
-
/* @__PURE__ */ (0,
|
|
3563
|
-
/* @__PURE__ */ (0,
|
|
3691
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "link", size: "small", disabled: !modalEnabled.length, onClick: () => modalBatch("invert"), children: "\u53CD\u9009" }),
|
|
3692
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { variant: "link", size: "small", danger: true, disabled: !modalValues.length, onClick: () => setModalValues([]), children: "\u6E05\u7A7A" })
|
|
3564
3693
|
] }) : null,
|
|
3565
|
-
allowInput && canSubmitInput ? /* @__PURE__ */ (0,
|
|
3694
|
+
allowInput && canSubmitInput ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(Button, { variant: "link", onClick: () => {
|
|
3566
3695
|
setModalValues(multiple ? [.../* @__PURE__ */ new Set([...modalValues, inputValue])] : [inputValue]);
|
|
3567
3696
|
setQuery("");
|
|
3568
3697
|
}, children: [
|
|
@@ -3570,7 +3699,7 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3570
3699
|
inputValue,
|
|
3571
3700
|
"\u201D"
|
|
3572
3701
|
] }) : null,
|
|
3573
|
-
/* @__PURE__ */ (0,
|
|
3702
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
3574
3703
|
SelectionPanel,
|
|
3575
3704
|
{
|
|
3576
3705
|
options: modalFiltered,
|
|
@@ -3594,7 +3723,7 @@ var Select = (0, import_react16.forwardRef)(function Select2({
|
|
|
3594
3723
|
});
|
|
3595
3724
|
|
|
3596
3725
|
// src/components/SelectDateRange.tsx
|
|
3597
|
-
var
|
|
3726
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
3598
3727
|
function SelectDateRange({
|
|
3599
3728
|
options,
|
|
3600
3729
|
value,
|
|
@@ -3617,8 +3746,8 @@ function SelectDateRange({
|
|
|
3617
3746
|
const size = useControlSize(sizeProp);
|
|
3618
3747
|
const initialValue = defaultValue ?? { select: options[0]?.value ?? "", range: ["", ""] };
|
|
3619
3748
|
const [currentValue, setCurrentValue] = useControllableState({ value: value === void 0 ? void 0 : value && typeof value === "object" ? value : { select: "", range: ["", ""] }, defaultValue: initialValue, onChange });
|
|
3620
|
-
return /* @__PURE__ */ (0,
|
|
3621
|
-
/* @__PURE__ */ (0,
|
|
3749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: `sia-select-date-range sia-select-date-range--${size} ${className}`.trim(), role: "group", "aria-label": `${selectAriaLabel}\u4E0E${rangeAriaLabel}`, ...withTitleTooltip(props), style: { ...style, "--sia-select-date-range-select-width": typeof selectWidth === "number" ? `${selectWidth}px` : selectWidth }, children: [
|
|
3750
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
3622
3751
|
Select,
|
|
3623
3752
|
{
|
|
3624
3753
|
className: "sia-select-date-range__select",
|
|
@@ -3636,7 +3765,7 @@ function SelectDateRange({
|
|
|
3636
3765
|
}
|
|
3637
3766
|
}
|
|
3638
3767
|
),
|
|
3639
|
-
/* @__PURE__ */ (0,
|
|
3768
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
3640
3769
|
DatePicker.RangePicker,
|
|
3641
3770
|
{
|
|
3642
3771
|
className: "sia-select-date-range__picker",
|