thomas-uikit-core 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs ADDED
@@ -0,0 +1,1334 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/components/index.ts
30
+ var index_exports = {};
31
+ __export(index_exports, {
32
+ Alert: () => Alert,
33
+ AlertDescription: () => AlertDescription,
34
+ AlertTitle: () => AlertTitle,
35
+ Breadcrumb: () => Breadcrumb,
36
+ BreadcrumbEllipsis: () => BreadcrumbEllipsis,
37
+ BreadcrumbItem: () => BreadcrumbItem,
38
+ BreadcrumbLink: () => BreadcrumbLink,
39
+ BreadcrumbList: () => BreadcrumbList,
40
+ BreadcrumbPage: () => BreadcrumbPage,
41
+ BreadcrumbSeparator: () => BreadcrumbSeparator,
42
+ Button: () => Button,
43
+ Dialog: () => Dialog,
44
+ DialogClose: () => DialogClose,
45
+ DialogContent: () => DialogContent,
46
+ DialogDescription: () => DialogDescription,
47
+ DialogFooter: () => DialogFooter,
48
+ DialogHeader: () => DialogHeader,
49
+ DialogOverlay: () => DialogOverlay,
50
+ DialogPortal: () => DialogPortal,
51
+ DialogTitle: () => DialogTitle,
52
+ DialogTrigger: () => DialogTrigger,
53
+ Icon: () => Icon,
54
+ Input: () => Input,
55
+ Table: () => Table,
56
+ TableBody: () => TableBody,
57
+ TableCaption: () => TableCaption,
58
+ TableCell: () => TableCell,
59
+ TableFooter: () => TableFooter,
60
+ TableHead: () => TableHead,
61
+ TableHeader: () => TableHeader,
62
+ TableRow: () => TableRow,
63
+ Text: () => Text,
64
+ buttonVariants: () => buttonVariants
65
+ });
66
+ module.exports = __toCommonJS(index_exports);
67
+
68
+ // src/components/ui/button.tsx
69
+ var React = __toESM(require("react"), 1);
70
+ var import_react_slot = require("@radix-ui/react-slot");
71
+ var import_class_variance_authority = require("class-variance-authority");
72
+
73
+ // src/lib/utils.ts
74
+ var import_clsx = require("clsx");
75
+ var import_tailwind_merge = require("tailwind-merge");
76
+ function cn(...inputs) {
77
+ return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
78
+ }
79
+
80
+ // src/components/ui/button.tsx
81
+ var import_jsx_runtime = require("react/jsx-runtime");
82
+ var buttonVariants = (0, import_class_variance_authority.cva)(
83
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
84
+ {
85
+ variants: {
86
+ variant: {
87
+ default: "bg-primary text-primary-foreground shadow hover:bg-primary/90",
88
+ destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
89
+ outline: "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
90
+ secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
91
+ ghost: "hover:bg-accent hover:text-accent-foreground",
92
+ link: "text-primary underline-offset-4 hover:underline"
93
+ },
94
+ size: {
95
+ default: "h-9 px-4 py-2",
96
+ sm: "h-8 rounded-md px-3 text-xs",
97
+ lg: "h-10 rounded-md px-8",
98
+ icon: "h-9 w-9"
99
+ }
100
+ },
101
+ defaultVariants: {
102
+ variant: "default",
103
+ size: "default"
104
+ }
105
+ }
106
+ );
107
+ var Button = React.forwardRef(
108
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
109
+ const Comp = asChild ? import_react_slot.Slot : "button";
110
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
111
+ Comp,
112
+ {
113
+ className: cn(buttonVariants({ variant, size, className })),
114
+ ref,
115
+ ...props
116
+ }
117
+ );
118
+ }
119
+ );
120
+ Button.displayName = "Button";
121
+
122
+ // src/components/ui/input.tsx
123
+ var React2 = __toESM(require("react"), 1);
124
+ var import_jsx_runtime2 = require("react/jsx-runtime");
125
+ var Input = React2.forwardRef(
126
+ ({ className, type, ...props }, ref) => {
127
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
128
+ "input",
129
+ {
130
+ type,
131
+ className: cn(
132
+ "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
133
+ className
134
+ ),
135
+ ref,
136
+ ...props
137
+ }
138
+ );
139
+ }
140
+ );
141
+ Input.displayName = "Input";
142
+
143
+ // src/components/ui/common/Text.tsx
144
+ var import_react = require("react");
145
+ var import_jsx_runtime3 = require("react/jsx-runtime");
146
+ var Text = ({
147
+ variant = "body-m",
148
+ as: Component = "span",
149
+ children,
150
+ className = "",
151
+ ...props
152
+ }) => {
153
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
154
+ Component,
155
+ {
156
+ className: `text-${variant} ${className}`.trim(),
157
+ ...props,
158
+ children
159
+ }
160
+ );
161
+ };
162
+
163
+ // src/components/ui/common/Icon.tsx
164
+ var import_react2 = require("react");
165
+ var import_jsx_runtime4 = require("react/jsx-runtime");
166
+ var icons = {
167
+ company: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
168
+ "svg",
169
+ {
170
+ xmlns: "http://www.w3.org/2000/svg",
171
+ width: "20",
172
+ height: "20",
173
+ viewBox: "0 0 20 20",
174
+ fill: "none",
175
+ ...props,
176
+ children: [
177
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29345_12597)", children: [
178
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
179
+ "path",
180
+ {
181
+ d: "M2.5 17.5H17.5",
182
+ stroke: "#3B5AF7",
183
+ strokeWidth: "1.5",
184
+ strokeLinecap: "round",
185
+ strokeLinejoin: "round"
186
+ }
187
+ ),
188
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
189
+ "path",
190
+ {
191
+ d: "M4.16675 17.5V5.83333L10.8334 2.5V17.5",
192
+ stroke: "#3B5AF7",
193
+ strokeWidth: "1.5",
194
+ strokeLinecap: "round",
195
+ strokeLinejoin: "round"
196
+ }
197
+ ),
198
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
199
+ "path",
200
+ {
201
+ d: "M15.8333 17.4999V9.16659L10.8333 5.83325",
202
+ stroke: "#3B5AF7",
203
+ strokeWidth: "1.5",
204
+ strokeLinecap: "round",
205
+ strokeLinejoin: "round"
206
+ }
207
+ ),
208
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
209
+ "path",
210
+ {
211
+ d: "M7.5 7.5V7.50833",
212
+ stroke: "#3B5AF7",
213
+ strokeWidth: "1.5",
214
+ strokeLinecap: "round",
215
+ strokeLinejoin: "round"
216
+ }
217
+ ),
218
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
219
+ "path",
220
+ {
221
+ d: "M7.5 10V10.0083",
222
+ stroke: "#3B5AF7",
223
+ strokeWidth: "1.5",
224
+ strokeLinecap: "round",
225
+ strokeLinejoin: "round"
226
+ }
227
+ ),
228
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
229
+ "path",
230
+ {
231
+ d: "M7.5 12.5V12.5083",
232
+ stroke: "#3B5AF7",
233
+ strokeWidth: "1.5",
234
+ strokeLinecap: "round",
235
+ strokeLinejoin: "round"
236
+ }
237
+ ),
238
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
239
+ "path",
240
+ {
241
+ d: "M7.5 15V15.0083",
242
+ stroke: "#3B5AF7",
243
+ strokeWidth: "1.5",
244
+ strokeLinecap: "round",
245
+ strokeLinejoin: "round"
246
+ }
247
+ )
248
+ ] }),
249
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29345_12597", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
250
+ ]
251
+ }
252
+ ),
253
+ notification: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
254
+ "svg",
255
+ {
256
+ width: "24",
257
+ height: "24",
258
+ viewBox: "0 0 24 24",
259
+ fill: "none",
260
+ xmlns: "http://www.w3.org/2000/svg",
261
+ ...props,
262
+ children: [
263
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
264
+ "path",
265
+ {
266
+ d: "M10.3335 6.16667C10.3335 5.72464 10.5091 5.30072 10.8217 4.98816C11.1342 4.67559 11.5581 4.5 12.0002 4.5C12.4422 4.5 12.8661 4.67559 13.1787 4.98816C13.4912 5.30072 13.6668 5.72464 13.6668 6.16667C14.6238 6.61919 15.4397 7.32361 16.0269 8.20442C16.6141 9.08523 16.9505 10.1092 17.0002 11.1667V13.6667C17.0629 14.1848 17.2464 14.6809 17.5358 15.1151C17.8253 15.5493 18.2127 15.9095 18.6668 16.1667H5.3335C5.78761 15.9095 6.175 15.5493 6.46449 15.1151C6.75397 14.6809 6.93745 14.1848 7.00016 13.6667V11.1667C7.0498 10.1092 7.38625 9.08523 7.97345 8.20442C8.56066 7.32361 9.37649 6.61919 10.3335 6.16667Z",
267
+ stroke: "black",
268
+ strokeWidth: "1.5",
269
+ strokeLinecap: "round",
270
+ strokeLinejoin: "round"
271
+ }
272
+ ),
273
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
274
+ "path",
275
+ {
276
+ d: "M9.5 16.1667V17C9.5 17.6631 9.76339 18.2989 10.2322 18.7678C10.7011 19.2366 11.337 19.5 12 19.5C12.663 19.5 13.2989 19.2366 13.7678 18.7678C14.2366 18.2989 14.5 17.6631 14.5 17V16.1667",
277
+ stroke: "black",
278
+ strokeWidth: "1.5",
279
+ strokeLinecap: "round",
280
+ strokeLinejoin: "round"
281
+ }
282
+ )
283
+ ]
284
+ }
285
+ ),
286
+ user: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
287
+ "svg",
288
+ {
289
+ width: "24",
290
+ height: "24",
291
+ viewBox: "0 0 24 24",
292
+ fill: "none",
293
+ xmlns: "http://www.w3.org/2000/svg",
294
+ ...props,
295
+ children: [
296
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { "clip-path": "url(#clip0_15856_33162)", children: [
297
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
298
+ "path",
299
+ {
300
+ d: "M8.6665 8.00002C8.6665 8.88408 9.01769 9.73192 9.64281 10.357C10.2679 10.9822 11.1158 11.3334 11.9998 11.3334C12.8839 11.3334 13.7317 10.9822 14.3569 10.357C14.982 9.73192 15.3332 8.88408 15.3332 8.00002C15.3332 7.11597 14.982 6.26812 14.3569 5.643C13.7317 5.01788 12.8839 4.66669 11.9998 4.66669C11.1158 4.66669 10.2679 5.01788 9.64281 5.643C9.01769 6.26812 8.6665 7.11597 8.6665 8.00002Z",
301
+ stroke: "black",
302
+ strokeWidth: "1.5",
303
+ strokeLinecap: "round",
304
+ strokeLinejoin: "round"
305
+ }
306
+ ),
307
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
308
+ "path",
309
+ {
310
+ d: "M7 19.3333V17.6666C7 16.7826 7.35119 15.9347 7.97631 15.3096C8.60143 14.6845 9.44928 14.3333 10.3333 14.3333H13.6667C14.5507 14.3333 15.3986 14.6845 16.0237 15.3096C16.6488 15.9347 17 16.7826 17 17.6666V19.3333",
311
+ stroke: "black",
312
+ strokeWidth: "1.5",
313
+ strokeLinecap: "round",
314
+ strokeLinejoin: "round"
315
+ }
316
+ )
317
+ ] }),
318
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_15856_33162", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "24", height: "24", rx: "12", fill: "white" }) }) })
319
+ ]
320
+ }
321
+ ),
322
+ home: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
323
+ "svg",
324
+ {
325
+ xmlns: "http://www.w3.org/2000/svg",
326
+ width: "20",
327
+ height: "20",
328
+ viewBox: "0 0 20 20",
329
+ fill: "none",
330
+ ...props,
331
+ children: [
332
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29149_9500)", children: [
333
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
334
+ "path",
335
+ {
336
+ d: "M4.16667 10H2.5L10 2.5L17.5 10H15.8333",
337
+ stroke: "currentColor",
338
+ strokeWidth: "1.5",
339
+ strokeLinecap: "round",
340
+ strokeLinejoin: "round"
341
+ }
342
+ ),
343
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
344
+ "path",
345
+ {
346
+ d: "M4.16675 10V15.8333C4.16675 16.2754 4.34234 16.6993 4.6549 17.0118C4.96746 17.3244 5.39139 17.5 5.83341 17.5H14.1667C14.6088 17.5 15.0327 17.3244 15.3453 17.0118C15.6578 16.6993 15.8334 16.2754 15.8334 15.8333V10",
347
+ stroke: "currentColor",
348
+ strokeWidth: "1.5",
349
+ strokeLinecap: "round",
350
+ strokeLinejoin: "round"
351
+ }
352
+ ),
353
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
354
+ "path",
355
+ {
356
+ d: "M7.5 17.4999V12.4999C7.5 12.0579 7.6756 11.634 7.98816 11.3214C8.30072 11.0088 8.72464 10.8333 9.16667 10.8333H10.8333C11.2754 10.8333 11.6993 11.0088 12.0118 11.3214C12.3244 11.634 12.5 12.0579 12.5 12.4999V17.4999",
357
+ stroke: "currentColor",
358
+ strokeWidth: "1.5",
359
+ strokeLinecap: "round",
360
+ strokeLinejoin: "round"
361
+ }
362
+ )
363
+ ] }),
364
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29149_9500", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
365
+ ]
366
+ }
367
+ ),
368
+ list: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
369
+ "svg",
370
+ {
371
+ xmlns: "http://www.w3.org/2000/svg",
372
+ width: "20",
373
+ height: "20",
374
+ viewBox: "0 0 20 20",
375
+ fill: "none",
376
+ ...props,
377
+ children: [
378
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29149_9508)", children: [
379
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
380
+ "path",
381
+ {
382
+ d: "M11.6665 2.5V5.83333C11.6665 6.05435 11.7543 6.26631 11.9106 6.42259C12.0669 6.57887 12.2788 6.66667 12.4998 6.66667H15.8332",
383
+ stroke: "currentColor",
384
+ strokeWidth: "1.5",
385
+ strokeLinecap: "round",
386
+ strokeLinejoin: "round"
387
+ }
388
+ ),
389
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
390
+ "path",
391
+ {
392
+ d: "M14.1665 17.5H5.83317C5.39114 17.5 4.96722 17.3244 4.65466 17.0118C4.3421 16.6993 4.1665 16.2754 4.1665 15.8333V4.16667C4.1665 3.72464 4.3421 3.30072 4.65466 2.98816C4.96722 2.67559 5.39114 2.5 5.83317 2.5H11.6665L15.8332 6.66667V15.8333C15.8332 16.2754 15.6576 16.6993 15.345 17.0118C15.0325 17.3244 14.6085 17.5 14.1665 17.5Z",
393
+ stroke: "currentColor",
394
+ strokeWidth: "1.5",
395
+ strokeLinecap: "round",
396
+ strokeLinejoin: "round"
397
+ }
398
+ ),
399
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
400
+ "path",
401
+ {
402
+ d: "M7.5 7.5H8.33333",
403
+ stroke: "currentColor",
404
+ strokeWidth: "1.5",
405
+ strokeLinecap: "round",
406
+ strokeLinejoin: "round"
407
+ }
408
+ ),
409
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
410
+ "path",
411
+ {
412
+ d: "M7.5 10.8333H12.5",
413
+ stroke: "currentColor",
414
+ strokeWidth: "1.5",
415
+ strokeLinecap: "round",
416
+ strokeLinejoin: "round"
417
+ }
418
+ ),
419
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
420
+ "path",
421
+ {
422
+ d: "M7.5 14.1667H12.5",
423
+ stroke: "currentColor",
424
+ strokeWidth: "1.5",
425
+ strokeLinecap: "round",
426
+ strokeLinejoin: "round"
427
+ }
428
+ )
429
+ ] }),
430
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29149_9508", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
431
+ ]
432
+ }
433
+ ),
434
+ file: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
435
+ "svg",
436
+ {
437
+ xmlns: "http://www.w3.org/2000/svg",
438
+ width: "20",
439
+ height: "20",
440
+ viewBox: "0 0 20 20",
441
+ fill: "none",
442
+ ...props,
443
+ children: [
444
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29149_1912)", children: [
445
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
446
+ "path",
447
+ {
448
+ d: "M11.25 15.8333H4.16667C3.72464 15.8333 3.30072 15.6577 2.98816 15.3451C2.67559 15.0325 2.5 14.6086 2.5 14.1666V4.99992C2.5 4.55789 2.67559 4.13397 2.98816 3.82141C3.30072 3.50885 3.72464 3.33325 4.16667 3.33325H7.5L10 5.83325H15.8333C16.2754 5.83325 16.6993 6.00885 17.0118 6.32141C17.3244 6.63397 17.5 7.05789 17.5 7.49992V8.74992",
449
+ stroke: "currentColor",
450
+ strokeWidth: "1.5",
451
+ strokeLinecap: "round",
452
+ strokeLinejoin: "round"
453
+ }
454
+ ),
455
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
456
+ "path",
457
+ {
458
+ d: "M17.5001 12.5H15.4167C15.0852 12.5 14.7673 12.6317 14.5329 12.8661C14.2984 13.1005 14.1667 13.4185 14.1667 13.75C14.1667 14.0815 14.2984 14.3995 14.5329 14.6339C14.7673 14.8683 15.0852 15 15.4167 15H16.2501C16.5816 15 16.8995 15.1317 17.134 15.3661C17.3684 15.6005 17.5001 15.9185 17.5001 16.25C17.5001 16.5815 17.3684 16.8995 17.134 17.1339C16.8995 17.3683 16.5816 17.5 16.2501 17.5H14.1667",
459
+ stroke: "currentColor",
460
+ strokeWidth: "1.5",
461
+ strokeLinecap: "round",
462
+ strokeLinejoin: "round"
463
+ }
464
+ ),
465
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
466
+ "path",
467
+ {
468
+ d: "M15.8333 17.5001V18.3334M15.8333 11.6667V12.5001",
469
+ stroke: "currentColor",
470
+ strokeWidth: "1.5",
471
+ strokeLinecap: "round",
472
+ strokeLinejoin: "round"
473
+ }
474
+ )
475
+ ] }),
476
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29149_1912", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
477
+ ]
478
+ }
479
+ ),
480
+ task: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
481
+ "svg",
482
+ {
483
+ xmlns: "http://www.w3.org/2000/svg",
484
+ width: "20",
485
+ height: "20",
486
+ viewBox: "0 0 20 20",
487
+ fill: "none",
488
+ ...props,
489
+ children: [
490
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29149_8563)", children: [
491
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
492
+ "path",
493
+ {
494
+ d: "M6.66667 17.5001H5C4.33696 17.5001 3.70107 17.2367 3.23223 16.7678C2.76339 16.299 2.5 15.6631 2.5 15.0001V14.1667H7.08333",
495
+ stroke: "currentColor",
496
+ strokeWidth: "1.5",
497
+ strokeLinecap: "round",
498
+ strokeLinejoin: "round"
499
+ }
500
+ ),
501
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
502
+ "path",
503
+ {
504
+ d: "M14.1667 7.08333V4.16667C14.1667 3.83703 14.2645 3.5148 14.4476 3.24072C14.6308 2.96664 14.8911 2.75301 15.1956 2.62687C15.5002 2.50072 15.8353 2.46772 16.1586 2.53203C16.4819 2.59633 16.7788 2.75507 17.0119 2.98816C17.245 3.22124 17.4037 3.51822 17.4681 3.84152C17.5324 4.16482 17.4994 4.49993 17.3732 4.80447C17.2471 5.10902 17.0334 5.36931 16.7594 5.55245C16.4853 5.73559 16.1631 5.83333 15.8334 5.83333H14.1667",
505
+ stroke: "currentColor",
506
+ strokeWidth: "1.5",
507
+ strokeLinecap: "round",
508
+ strokeLinejoin: "round"
509
+ }
510
+ ),
511
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
512
+ "path",
513
+ {
514
+ d: "M15.8334 2.5H6.66675C6.00371 2.5 5.36782 2.76339 4.89898 3.23223C4.43014 3.70107 4.16675 4.33696 4.16675 5V14.1667",
515
+ stroke: "currentColor",
516
+ strokeWidth: "1.5",
517
+ strokeLinecap: "round",
518
+ strokeLinejoin: "round"
519
+ }
520
+ ),
521
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
522
+ "path",
523
+ {
524
+ d: "M7.5 5.83325H10.8333",
525
+ stroke: "currentColor",
526
+ strokeWidth: "1.5",
527
+ strokeLinecap: "round",
528
+ strokeLinejoin: "round"
529
+ }
530
+ ),
531
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
532
+ "path",
533
+ {
534
+ d: "M7.5 9.16675H10.8333",
535
+ stroke: "currentColor",
536
+ strokeWidth: "1.5",
537
+ strokeLinecap: "round",
538
+ strokeLinejoin: "round"
539
+ }
540
+ ),
541
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
542
+ "path",
543
+ {
544
+ d: "M15.35 10.5084C15.6782 10.1802 16.1233 9.99585 16.5875 9.99585C17.0517 9.99585 17.4968 10.1802 17.825 10.5084C18.1532 10.8366 18.3376 11.2818 18.3376 11.7459C18.3376 12.2101 18.1532 12.6552 17.825 12.9834L12.5 18.3334H10V15.8334L15.35 10.5084Z",
545
+ stroke: "currentColor",
546
+ strokeWidth: "1.5",
547
+ strokeLinecap: "round",
548
+ strokeLinejoin: "round"
549
+ }
550
+ )
551
+ ] }),
552
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29149_8563", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
553
+ ]
554
+ }
555
+ ),
556
+ filter: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
557
+ "svg",
558
+ {
559
+ xmlns: "http://www.w3.org/2000/svg",
560
+ width: "16",
561
+ height: "16",
562
+ viewBox: "0 0 16 16",
563
+ fill: "none",
564
+ ...props,
565
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
566
+ "path",
567
+ {
568
+ fillRule: "evenodd",
569
+ clipRule: "evenodd",
570
+ d: "M2.16699 2.6665C2.16699 2.39036 2.39085 2.1665 2.66699 2.1665H13.3337C13.6098 2.1665 13.8337 2.39036 13.8337 2.6665V4.1145C13.8336 4.60067 13.6404 5.06699 13.2965 5.41072C13.2965 5.41074 13.2966 5.41071 13.2965 5.41072L10.5003 8.20694V12.6665C10.5003 12.8817 10.3626 13.0728 10.1584 13.1408L6.15844 14.4742C6.00597 14.525 5.83835 14.4994 5.70797 14.4055C5.57759 14.3115 5.50033 14.1606 5.50033 13.9998V8.52647L2.64369 5.38417C2.33702 5.04677 2.16704 4.60717 2.16699 4.15122V2.6665ZM3.16699 3.1665V4.15112C3.16699 4.15114 3.16699 4.1511 3.16699 4.15112C3.16703 4.35833 3.24426 4.55815 3.38363 4.7115C3.38364 4.71151 3.38362 4.71149 3.38363 4.7115L6.3703 7.99683C6.45396 8.08887 6.50033 8.20879 6.50033 8.33317V13.3061L9.50033 12.3061V7.99984C9.50033 7.86723 9.553 7.74005 9.64677 7.64628L12.5894 4.70362C12.7457 4.5474 12.8336 4.33546 12.8337 4.1145C12.8337 4.11447 12.8337 4.11454 12.8337 4.1145V3.1665H3.16699Z",
571
+ fill: "currentColor"
572
+ }
573
+ )
574
+ }
575
+ ),
576
+ search: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
577
+ "svg",
578
+ {
579
+ xmlns: "http://www.w3.org/2000/svg",
580
+ width: "16",
581
+ height: "16",
582
+ viewBox: "0 0 16 16",
583
+ fill: "none",
584
+ ...props,
585
+ children: [
586
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
587
+ "path",
588
+ {
589
+ d: "M7 12C9.76142 12 12 9.76142 12 7C12 4.23858 9.76142 2 7 2C4.23858 2 2 4.23858 2 7C2 9.76142 4.23858 12 7 12Z",
590
+ stroke: "currentColor",
591
+ strokeWidth: "1.5",
592
+ strokeLinecap: "round",
593
+ strokeLinejoin: "round",
594
+ fill: "none"
595
+ }
596
+ ),
597
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
598
+ "path",
599
+ {
600
+ d: "M10.5 10.5L14 14",
601
+ stroke: "currentColor",
602
+ strokeWidth: "1.5",
603
+ strokeLinecap: "round",
604
+ strokeLinejoin: "round"
605
+ }
606
+ )
607
+ ]
608
+ }
609
+ ),
610
+ add: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
611
+ "svg",
612
+ {
613
+ xmlns: "http://www.w3.org/2000/svg",
614
+ width: "16",
615
+ height: "16",
616
+ viewBox: "0 0 16 16",
617
+ fill: "none",
618
+ ...props,
619
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
620
+ "path",
621
+ {
622
+ d: "M8 3V13M3 8H13",
623
+ stroke: "currentColor",
624
+ strokeWidth: "1.5",
625
+ strokeLinecap: "round",
626
+ strokeLinejoin: "round"
627
+ }
628
+ )
629
+ }
630
+ ),
631
+ edit: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
632
+ "svg",
633
+ {
634
+ xmlns: "http://www.w3.org/2000/svg",
635
+ width: "17",
636
+ height: "17",
637
+ viewBox: "0 0 17 17",
638
+ fill: "none",
639
+ ...props,
640
+ children: [
641
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
642
+ "path",
643
+ {
644
+ d: "M13.0491 5.92764C13.3112 5.66556 13.4585 5.31007 13.4586 4.93937C13.4586 4.56868 13.3114 4.21315 13.0493 3.951C12.7872 3.68885 12.4317 3.54155 12.061 3.5415C11.6904 3.54146 11.3348 3.68867 11.0727 3.95076L4.45528 10.5696C4.34016 10.6844 4.25502 10.8257 4.20737 10.9812L3.55237 13.139C3.53956 13.1819 3.53859 13.2275 3.54957 13.2709C3.56055 13.3142 3.58307 13.3539 3.61475 13.3855C3.64642 13.4171 3.68606 13.4396 3.72946 13.4505C3.77287 13.4614 3.81842 13.4603 3.86128 13.4475L6.01964 12.793C6.17492 12.7457 6.31623 12.6611 6.43118 12.5465L13.0491 5.92764Z",
645
+ stroke: "#414143",
646
+ strokeLinecap: "round",
647
+ strokeLinejoin: "round"
648
+ }
649
+ ),
650
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
651
+ "path",
652
+ {
653
+ d: "M9.9873 5.0293L11.9706 7.01263",
654
+ stroke: "#414143",
655
+ strokeLinecap: "round",
656
+ strokeLinejoin: "round"
657
+ }
658
+ )
659
+ ]
660
+ }
661
+ ),
662
+ delete: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
663
+ "svg",
664
+ {
665
+ xmlns: "http://www.w3.org/2000/svg",
666
+ width: "17",
667
+ height: "17",
668
+ viewBox: "0 0 17 17",
669
+ fill: "none",
670
+ ...props,
671
+ children: [
672
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
673
+ "path",
674
+ {
675
+ d: "M3.40039 5.19434H13.6004",
676
+ stroke: "#414143",
677
+ strokeLinecap: "round",
678
+ strokeLinejoin: "round"
679
+ }
680
+ ),
681
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
682
+ "path",
683
+ {
684
+ d: "M7.22461 7.83887V11.8055",
685
+ stroke: "#414143",
686
+ strokeLinecap: "round",
687
+ strokeLinejoin: "round"
688
+ }
689
+ ),
690
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
691
+ "path",
692
+ {
693
+ d: "M9.77441 7.83887V11.8055",
694
+ stroke: "#414143",
695
+ strokeLinecap: "round",
696
+ strokeLinejoin: "round"
697
+ }
698
+ ),
699
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
700
+ "path",
701
+ {
702
+ d: "M4.03711 5.19434L4.67461 13.1277C4.67461 13.4784 4.80894 13.8147 5.04805 14.0627C5.28716 14.3106 5.61146 14.4499 5.94961 14.4499H11.0496C11.3878 14.4499 11.7121 14.3106 11.9512 14.0627C12.1903 13.8147 12.3246 13.4784 12.3246 13.1277L12.9621 5.19434",
703
+ stroke: "#414143",
704
+ strokeLinecap: "round",
705
+ strokeLinejoin: "round"
706
+ }
707
+ ),
708
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
709
+ "path",
710
+ {
711
+ d: "M6.58691 5.19426V3.21092C6.58691 3.03558 6.65408 2.86742 6.77363 2.74344C6.89319 2.61946 7.05534 2.5498 7.22441 2.5498H9.77441C9.94349 2.5498 10.1056 2.61946 10.2252 2.74344C10.3447 2.86742 10.4119 3.03558 10.4119 3.21092V5.19426",
712
+ stroke: "#414143",
713
+ strokeLinecap: "round",
714
+ strokeLinejoin: "round"
715
+ }
716
+ )
717
+ ]
718
+ }
719
+ ),
720
+ close: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
721
+ "svg",
722
+ {
723
+ xmlns: "http://www.w3.org/2000/svg",
724
+ width: "16",
725
+ height: "16",
726
+ viewBox: "0 0 16 16",
727
+ fill: "none",
728
+ ...props,
729
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
730
+ "path",
731
+ {
732
+ d: "M4 4L12 12M12 4L4 12",
733
+ stroke: "currentColor",
734
+ strokeWidth: "1.5",
735
+ strokeLinecap: "round",
736
+ strokeLinejoin: "round"
737
+ }
738
+ )
739
+ }
740
+ ),
741
+ check: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
742
+ "svg",
743
+ {
744
+ xmlns: "http://www.w3.org/2000/svg",
745
+ width: "16",
746
+ height: "16",
747
+ viewBox: "0 0 16 16",
748
+ fill: "none",
749
+ ...props,
750
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
751
+ "path",
752
+ {
753
+ d: "M3 8L6 11L13 4",
754
+ stroke: "currentColor",
755
+ strokeWidth: "1.5",
756
+ strokeLinecap: "round",
757
+ strokeLinejoin: "round",
758
+ fill: "none"
759
+ }
760
+ )
761
+ }
762
+ ),
763
+ "arrow-down": (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
764
+ "svg",
765
+ {
766
+ xmlns: "http://www.w3.org/2000/svg",
767
+ width: "16",
768
+ height: "16",
769
+ viewBox: "0 0 16 16",
770
+ fill: "none",
771
+ ...props,
772
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
773
+ "path",
774
+ {
775
+ d: "M4 6L8 10L12 6",
776
+ stroke: "currentColor",
777
+ strokeWidth: "1.5",
778
+ strokeLinecap: "round",
779
+ strokeLinejoin: "round",
780
+ fill: "none"
781
+ }
782
+ )
783
+ }
784
+ ),
785
+ "arrow-up": (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
786
+ "svg",
787
+ {
788
+ xmlns: "http://www.w3.org/2000/svg",
789
+ width: "16",
790
+ height: "16",
791
+ viewBox: "0 0 16 16",
792
+ fill: "none",
793
+ ...props,
794
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
795
+ "path",
796
+ {
797
+ d: "M4 10L8 6L12 10",
798
+ stroke: "currentColor",
799
+ strokeWidth: "1.5",
800
+ strokeLinecap: "round",
801
+ strokeLinejoin: "round",
802
+ fill: "none"
803
+ }
804
+ )
805
+ }
806
+ ),
807
+ "arrow-left": (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
808
+ "svg",
809
+ {
810
+ xmlns: "http://www.w3.org/2000/svg",
811
+ width: "16",
812
+ height: "16",
813
+ viewBox: "0 0 16 16",
814
+ fill: "none",
815
+ ...props,
816
+ children: [
817
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { "clip-path": "url(#clip0_20456_23073)", children: [
818
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
819
+ "path",
820
+ {
821
+ d: "M3.33325 8H12.6666",
822
+ stroke: "black",
823
+ strokeWidth: "1.5",
824
+ strokeLinecap: "round",
825
+ strokeLinejoin: "round"
826
+ }
827
+ ),
828
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
829
+ "path",
830
+ {
831
+ d: "M3.33325 8H12.6666",
832
+ stroke: "black",
833
+ strokeOpacity: "0.2",
834
+ strokeWidth: "1.5",
835
+ strokeLinecap: "round",
836
+ strokeLinejoin: "round"
837
+ }
838
+ ),
839
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
840
+ "path",
841
+ {
842
+ d: "M3.33325 8L7.33325 12",
843
+ stroke: "black",
844
+ strokeWidth: "1.5",
845
+ strokeLinecap: "round",
846
+ strokeLinejoin: "round"
847
+ }
848
+ ),
849
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
850
+ "path",
851
+ {
852
+ d: "M3.33325 8L7.33325 12",
853
+ stroke: "black",
854
+ strokeOpacity: "0.2",
855
+ strokeWidth: "1.5",
856
+ strokeLinecap: "round",
857
+ strokeLinejoin: "round"
858
+ }
859
+ ),
860
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
861
+ "path",
862
+ {
863
+ d: "M3.33325 8L7.33325 4",
864
+ stroke: "black",
865
+ strokeWidth: "1.5",
866
+ strokeLinecap: "round",
867
+ strokeLinejoin: "round"
868
+ }
869
+ ),
870
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
871
+ "path",
872
+ {
873
+ d: "M3.33325 8L7.33325 4",
874
+ stroke: "black",
875
+ strokeOpacity: "0.2",
876
+ strokeWidth: "1.5",
877
+ strokeLinecap: "round",
878
+ strokeLinejoin: "round"
879
+ }
880
+ )
881
+ ] }),
882
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_20456_23073", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
883
+ ]
884
+ }
885
+ ),
886
+ "arrow-down-select": (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
887
+ "svg",
888
+ {
889
+ xmlns: "http://www.w3.org/2000/svg",
890
+ width: "9",
891
+ height: "5",
892
+ viewBox: "0 0 9 5",
893
+ fill: "none",
894
+ ...props,
895
+ children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
896
+ "path",
897
+ {
898
+ fillRule: "evenodd",
899
+ clipRule: "evenodd",
900
+ d: "M0.146447 0.146447C0.341709 -0.0488155 0.658291 -0.0488155 0.853553 0.146447L4.5 3.79289L8.14645 0.146447C8.34171 -0.0488155 8.65829 -0.0488155 8.85355 0.146447C9.04882 0.341709 9.04882 0.658291 8.85355 0.853553L4.85355 4.85355C4.65829 5.04882 4.34171 5.04882 4.14645 4.85355L0.146447 0.853553C-0.0488155 0.658291 -0.0488155 0.341709 0.146447 0.146447Z",
901
+ fill: "#414143"
902
+ }
903
+ )
904
+ }
905
+ ),
906
+ pause: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
907
+ "svg",
908
+ {
909
+ xmlns: "http://www.w3.org/2000/svg",
910
+ width: "16",
911
+ height: "16",
912
+ viewBox: "0 0 16 16",
913
+ fill: "none",
914
+ ...props,
915
+ children: [
916
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
917
+ "path",
918
+ {
919
+ d: "M11.1997 3.2002H9.59974C9.30519 3.2002 9.06641 3.43898 9.06641 3.73353V12.2669C9.06641 12.5614 9.30519 12.8002 9.59974 12.8002H11.1997C11.4943 12.8002 11.7331 12.5614 11.7331 12.2669V3.73353C11.7331 3.43898 11.4943 3.2002 11.1997 3.2002Z",
920
+ stroke: "#414143",
921
+ strokeLinecap: "round",
922
+ strokeLinejoin: "round"
923
+ }
924
+ ),
925
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
926
+ "path",
927
+ {
928
+ d: "M6.39994 3.2002H4.79993C4.50538 3.2002 4.2666 3.43898 4.2666 3.73353V12.2669C4.2666 12.5614 4.50538 12.8002 4.79993 12.8002H6.39994C6.69449 12.8002 6.93327 12.5614 6.93327 12.2669V3.73353C6.93327 3.43898 6.69449 3.2002 6.39994 3.2002Z",
929
+ stroke: "#414143",
930
+ strokeLinecap: "round",
931
+ strokeLinejoin: "round"
932
+ }
933
+ )
934
+ ]
935
+ }
936
+ ),
937
+ download: (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
938
+ "svg",
939
+ {
940
+ xmlns: "http://www.w3.org/2000/svg",
941
+ width: "20",
942
+ height: "20",
943
+ viewBox: "0 0 20 20",
944
+ fill: "none",
945
+ ...props,
946
+ children: [
947
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("g", { clipPath: "url(#clip0_29149_6026)", children: [
948
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
949
+ "path",
950
+ {
951
+ d: "M3.33325 14.1667V15.8334C3.33325 16.2754 3.50885 16.6994 3.82141 17.0119C4.13397 17.3245 4.55789 17.5001 4.99992 17.5001H14.9999C15.4419 17.5001 15.8659 17.3245 16.1784 17.0119C16.491 16.6994 16.6666 16.2754 16.6666 15.8334V14.1667",
952
+ stroke: "black",
953
+ strokeLinecap: "round",
954
+ strokeLinejoin: "round"
955
+ }
956
+ ),
957
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
958
+ "path",
959
+ {
960
+ d: "M5.83325 9.16675L9.99992 13.3334L14.1666 9.16675",
961
+ stroke: "black",
962
+ strokeLinecap: "round",
963
+ strokeLinejoin: "round"
964
+ }
965
+ ),
966
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 3.33325V13.3333", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
967
+ ] }),
968
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "clip0_29149_6026", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
969
+ ]
970
+ }
971
+ )
972
+ };
973
+ var Icon = ({ name, size = 16, className = "", color }) => {
974
+ const IconComponent = icons[name];
975
+ if (!IconComponent) {
976
+ console.warn(`Icon "${name}" not found`);
977
+ return null;
978
+ }
979
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
980
+ IconComponent,
981
+ {
982
+ width: size,
983
+ height: size,
984
+ className,
985
+ style: {
986
+ minWidth: size,
987
+ minHeight: size,
988
+ ...color ? { color } : {}
989
+ }
990
+ }
991
+ );
992
+ };
993
+
994
+ // src/components/ui/dialog.tsx
995
+ var React5 = __toESM(require("react"), 1);
996
+ var DialogPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
997
+ var import_lucide_react = require("lucide-react");
998
+ var import_jsx_runtime5 = require("react/jsx-runtime");
999
+ var Dialog = DialogPrimitive.Root;
1000
+ var DialogTrigger = DialogPrimitive.Trigger;
1001
+ var DialogPortal = DialogPrimitive.Portal;
1002
+ var DialogClose = DialogPrimitive.Close;
1003
+ var DialogOverlay = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1004
+ DialogPrimitive.Overlay,
1005
+ {
1006
+ ref,
1007
+ className: cn(
1008
+ "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
1009
+ className
1010
+ ),
1011
+ ...props
1012
+ }
1013
+ ));
1014
+ DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
1015
+ var DialogContent = React5.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(DialogPortal, { children: [
1016
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(DialogOverlay, {}),
1017
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
1018
+ DialogPrimitive.Content,
1019
+ {
1020
+ ref,
1021
+ className: cn(
1022
+ "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
1023
+ className
1024
+ ),
1025
+ ...props,
1026
+ children: [
1027
+ children,
1028
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(DialogPrimitive.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", children: [
1029
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_lucide_react.X, { className: "h-4 w-4" }),
1030
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { className: "sr-only", children: "Close" })
1031
+ ] })
1032
+ ]
1033
+ }
1034
+ )
1035
+ ] }));
1036
+ DialogContent.displayName = DialogPrimitive.Content.displayName;
1037
+ var DialogHeader = ({
1038
+ className,
1039
+ ...props
1040
+ }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1041
+ "div",
1042
+ {
1043
+ className: cn(
1044
+ "flex flex-col space-y-1.5 text-center sm:text-left",
1045
+ className
1046
+ ),
1047
+ ...props
1048
+ }
1049
+ );
1050
+ DialogHeader.displayName = "DialogHeader";
1051
+ var DialogFooter = ({
1052
+ className,
1053
+ ...props
1054
+ }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1055
+ "div",
1056
+ {
1057
+ className: cn(
1058
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
1059
+ className
1060
+ ),
1061
+ ...props
1062
+ }
1063
+ );
1064
+ DialogFooter.displayName = "DialogFooter";
1065
+ var DialogTitle = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1066
+ DialogPrimitive.Title,
1067
+ {
1068
+ ref,
1069
+ className: cn(
1070
+ "text-lg font-semibold leading-none tracking-tight",
1071
+ className
1072
+ ),
1073
+ ...props
1074
+ }
1075
+ ));
1076
+ DialogTitle.displayName = DialogPrimitive.Title.displayName;
1077
+ var DialogDescription = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1078
+ DialogPrimitive.Description,
1079
+ {
1080
+ ref,
1081
+ className: cn("text-sm text-muted-foreground", className),
1082
+ ...props
1083
+ }
1084
+ ));
1085
+ DialogDescription.displayName = DialogPrimitive.Description.displayName;
1086
+
1087
+ // src/components/ui/alert.tsx
1088
+ var React6 = __toESM(require("react"), 1);
1089
+ var import_class_variance_authority2 = require("class-variance-authority");
1090
+ var import_jsx_runtime6 = require("react/jsx-runtime");
1091
+ var alertVariants = (0, import_class_variance_authority2.cva)(
1092
+ "relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7",
1093
+ {
1094
+ variants: {
1095
+ variant: {
1096
+ default: "bg-background text-foreground",
1097
+ destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"
1098
+ }
1099
+ },
1100
+ defaultVariants: {
1101
+ variant: "default"
1102
+ }
1103
+ }
1104
+ );
1105
+ var Alert = React6.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1106
+ "div",
1107
+ {
1108
+ ref,
1109
+ role: "alert",
1110
+ className: cn(alertVariants({ variant }), className),
1111
+ ...props
1112
+ }
1113
+ ));
1114
+ Alert.displayName = "Alert";
1115
+ var AlertTitle = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1116
+ "h5",
1117
+ {
1118
+ ref,
1119
+ className: cn("mb-1 font-medium leading-none tracking-tight", className),
1120
+ ...props
1121
+ }
1122
+ ));
1123
+ AlertTitle.displayName = "AlertTitle";
1124
+ var AlertDescription = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1125
+ "div",
1126
+ {
1127
+ ref,
1128
+ className: cn("text-sm [&_p]:leading-relaxed", className),
1129
+ ...props
1130
+ }
1131
+ ));
1132
+ AlertDescription.displayName = "AlertDescription";
1133
+
1134
+ // src/components/ui/breadcrumb.tsx
1135
+ var React7 = __toESM(require("react"), 1);
1136
+ var import_react_slot2 = require("@radix-ui/react-slot");
1137
+ var import_lucide_react2 = require("lucide-react");
1138
+ var import_jsx_runtime7 = require("react/jsx-runtime");
1139
+ var Breadcrumb = React7.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("nav", { ref, "aria-label": "breadcrumb", ...props }));
1140
+ Breadcrumb.displayName = "Breadcrumb";
1141
+ var BreadcrumbList = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1142
+ "ol",
1143
+ {
1144
+ ref,
1145
+ className: cn(
1146
+ "flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",
1147
+ className
1148
+ ),
1149
+ ...props
1150
+ }
1151
+ ));
1152
+ BreadcrumbList.displayName = "BreadcrumbList";
1153
+ var BreadcrumbItem = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1154
+ "li",
1155
+ {
1156
+ ref,
1157
+ className: cn("inline-flex items-center gap-1.5", className),
1158
+ ...props
1159
+ }
1160
+ ));
1161
+ BreadcrumbItem.displayName = "BreadcrumbItem";
1162
+ var BreadcrumbLink = React7.forwardRef(({ asChild, className, ...props }, ref) => {
1163
+ const Comp = asChild ? import_react_slot2.Slot : "a";
1164
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1165
+ Comp,
1166
+ {
1167
+ ref,
1168
+ className: cn("transition-colors hover:text-foreground", className),
1169
+ ...props
1170
+ }
1171
+ );
1172
+ });
1173
+ BreadcrumbLink.displayName = "BreadcrumbLink";
1174
+ var BreadcrumbPage = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1175
+ "span",
1176
+ {
1177
+ ref,
1178
+ role: "link",
1179
+ "aria-disabled": "true",
1180
+ "aria-current": "page",
1181
+ className: cn("font-normal text-foreground", className),
1182
+ ...props
1183
+ }
1184
+ ));
1185
+ BreadcrumbPage.displayName = "BreadcrumbPage";
1186
+ var BreadcrumbSeparator = ({
1187
+ children,
1188
+ className,
1189
+ ...props
1190
+ }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1191
+ "li",
1192
+ {
1193
+ role: "presentation",
1194
+ "aria-hidden": "true",
1195
+ className: cn("[&>svg]:w-3.5 [&>svg]:h-3.5", className),
1196
+ ...props,
1197
+ children: children ?? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_lucide_react2.ChevronRight, {})
1198
+ }
1199
+ );
1200
+ BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
1201
+ var BreadcrumbEllipsis = ({
1202
+ className,
1203
+ ...props
1204
+ }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1205
+ "span",
1206
+ {
1207
+ role: "presentation",
1208
+ "aria-hidden": "true",
1209
+ className: cn("flex h-9 w-9 items-center justify-center", className),
1210
+ ...props,
1211
+ children: [
1212
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_lucide_react2.MoreHorizontal, { className: "h-4 w-4" }),
1213
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sr-only", children: "More" })
1214
+ ]
1215
+ }
1216
+ );
1217
+ BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
1218
+
1219
+ // src/components/ui/table.tsx
1220
+ var React8 = __toESM(require("react"), 1);
1221
+ var import_jsx_runtime8 = require("react/jsx-runtime");
1222
+ var Table = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1223
+ "table",
1224
+ {
1225
+ ref,
1226
+ className: cn("w-full caption-bottom text-sm", className),
1227
+ ...props
1228
+ }
1229
+ ) }));
1230
+ Table.displayName = "Table";
1231
+ var TableHeader = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("thead", { ref, className: cn("[&_tr]:border-b", className), ...props }));
1232
+ TableHeader.displayName = "TableHeader";
1233
+ var TableBody = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1234
+ "tbody",
1235
+ {
1236
+ ref,
1237
+ className: cn("[&_tr:last-child]:border-0", className),
1238
+ ...props
1239
+ }
1240
+ ));
1241
+ TableBody.displayName = "TableBody";
1242
+ var TableFooter = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1243
+ "tfoot",
1244
+ {
1245
+ ref,
1246
+ className: cn(
1247
+ "border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
1248
+ className
1249
+ ),
1250
+ ...props
1251
+ }
1252
+ ));
1253
+ TableFooter.displayName = "TableFooter";
1254
+ var TableRow = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1255
+ "tr",
1256
+ {
1257
+ ref,
1258
+ className: cn(
1259
+ "border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
1260
+ className
1261
+ ),
1262
+ ...props
1263
+ }
1264
+ ));
1265
+ TableRow.displayName = "TableRow";
1266
+ var TableHead = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1267
+ "th",
1268
+ {
1269
+ ref,
1270
+ className: cn(
1271
+ "h-10 px-2 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
1272
+ className
1273
+ ),
1274
+ ...props
1275
+ }
1276
+ ));
1277
+ TableHead.displayName = "TableHead";
1278
+ var TableCell = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1279
+ "td",
1280
+ {
1281
+ ref,
1282
+ className: cn(
1283
+ "p-2 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
1284
+ className
1285
+ ),
1286
+ ...props
1287
+ }
1288
+ ));
1289
+ TableCell.displayName = "TableCell";
1290
+ var TableCaption = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1291
+ "caption",
1292
+ {
1293
+ ref,
1294
+ className: cn("mt-4 text-sm text-muted-foreground", className),
1295
+ ...props
1296
+ }
1297
+ ));
1298
+ TableCaption.displayName = "TableCaption";
1299
+ // Annotate the CommonJS export names for ESM import in node:
1300
+ 0 && (module.exports = {
1301
+ Alert,
1302
+ AlertDescription,
1303
+ AlertTitle,
1304
+ Breadcrumb,
1305
+ BreadcrumbEllipsis,
1306
+ BreadcrumbItem,
1307
+ BreadcrumbLink,
1308
+ BreadcrumbList,
1309
+ BreadcrumbPage,
1310
+ BreadcrumbSeparator,
1311
+ Button,
1312
+ Dialog,
1313
+ DialogClose,
1314
+ DialogContent,
1315
+ DialogDescription,
1316
+ DialogFooter,
1317
+ DialogHeader,
1318
+ DialogOverlay,
1319
+ DialogPortal,
1320
+ DialogTitle,
1321
+ DialogTrigger,
1322
+ Icon,
1323
+ Input,
1324
+ Table,
1325
+ TableBody,
1326
+ TableCaption,
1327
+ TableCell,
1328
+ TableFooter,
1329
+ TableHead,
1330
+ TableHeader,
1331
+ TableRow,
1332
+ Text,
1333
+ buttonVariants
1334
+ });