crm-project-ui 0.1.7 → 0.1.10

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,2820 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }"use client";
2
+
3
+ // src/components/ui/accordion/index.tsx
4
+ var _lucidereact = require('lucide-react');
5
+ var _react = require('react'); var React = _interopRequireWildcard(_react); var React2 = _interopRequireWildcard(_react); var React4 = _interopRequireWildcard(_react); var React3 = _interopRequireWildcard(_react); var React5 = _interopRequireWildcard(_react); var React6 = _interopRequireWildcard(_react); var React7 = _interopRequireWildcard(_react); var React8 = _interopRequireWildcard(_react); var React9 = _interopRequireWildcard(_react); var React10 = _interopRequireWildcard(_react); var React12 = _interopRequireWildcard(_react); var React11 = _interopRequireWildcard(_react); var React13 = _interopRequireWildcard(_react); var React14 = _interopRequireWildcard(_react); var React15 = _interopRequireWildcard(_react); var React17 = _interopRequireWildcard(_react); var React16 = _interopRequireWildcard(_react); var React18 = _interopRequireWildcard(_react); var React19 = _interopRequireWildcard(_react); var React20 = _interopRequireWildcard(_react); var React21 = _interopRequireWildcard(_react); var React22 = _interopRequireWildcard(_react); var React23 = _interopRequireWildcard(_react); var React24 = _interopRequireWildcard(_react); var React25 = _interopRequireWildcard(_react); var React26 = _interopRequireWildcard(_react); var React27 = _interopRequireWildcard(_react); var React28 = _interopRequireWildcard(_react); var React29 = _interopRequireWildcard(_react); var React30 = _interopRequireWildcard(_react); var React31 = _interopRequireWildcard(_react); var React32 = _interopRequireWildcard(_react); var React33 = _interopRequireWildcard(_react); var React34 = _interopRequireWildcard(_react); var React35 = _interopRequireWildcard(_react); var React36 = _interopRequireWildcard(_react);
6
+
7
+ // src/lib/utils.ts
8
+ var _clsx = require('clsx');
9
+ var _tailwindmerge = require('tailwind-merge');
10
+ function cn(...inputs) {
11
+ return _tailwindmerge.twMerge.call(void 0, _clsx.clsx.call(void 0, inputs));
12
+ }
13
+
14
+ // src/components/ui/accordion/index.tsx
15
+ var _reactaccordion = require('@radix-ui/react-accordion'); var AccordionPrimitive = _interopRequireWildcard(_reactaccordion);
16
+ var _jsxruntime = require('react/jsx-runtime');
17
+ var Accordion = AccordionPrimitive.Root;
18
+ var AccordionItem = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
19
+ AccordionPrimitive.Item,
20
+ {
21
+ className: cn("border-b", className),
22
+ ref,
23
+ ...props
24
+ }
25
+ ));
26
+ AccordionItem.displayName = "AccordionItem";
27
+ var AccordionTrigger = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
28
+ AccordionPrimitive.Trigger,
29
+ {
30
+ className: cn(
31
+ "flex flex-1 items-center justify-between py-4 text-left text-sm font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180",
32
+ className
33
+ ),
34
+ ref,
35
+ ...props,
36
+ children: [
37
+ children,
38
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronDown, { className: "text-muted-foreground h-4 w-4 shrink-0 transition-transform duration-200" })
39
+ ]
40
+ }
41
+ ) }));
42
+ AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName;
43
+ var AccordionContent = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
44
+ AccordionPrimitive.Content,
45
+ {
46
+ className: "data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down overflow-hidden text-sm",
47
+ ref,
48
+ ...props,
49
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: cn("pt-0 pb-4", className), children })
50
+ }
51
+ ));
52
+ AccordionContent.displayName = AccordionPrimitive.Content.displayName;
53
+
54
+ // src/components/ui/alert/index.tsx
55
+ var _classvarianceauthority = require('class-variance-authority');
56
+
57
+
58
+ var alertVariants = _classvarianceauthority.cva.call(void 0,
59
+ "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",
60
+ {
61
+ variants: {
62
+ variant: {
63
+ default: "bg-background text-foreground",
64
+ destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"
65
+ }
66
+ },
67
+ defaultVariants: {
68
+ variant: "default"
69
+ }
70
+ }
71
+ );
72
+ var Alert = React2.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
73
+ "div",
74
+ {
75
+ className: cn(alertVariants({ variant }), className),
76
+ ref,
77
+ role: "alert",
78
+ ...props
79
+ }
80
+ ));
81
+ Alert.displayName = "Alert";
82
+ var AlertTitle = React2.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
83
+ "h5",
84
+ {
85
+ className: cn("mb-1 leading-none font-medium tracking-tight", className),
86
+ ref,
87
+ ...props
88
+ }
89
+ ));
90
+ AlertTitle.displayName = "AlertTitle";
91
+ var AlertDescription = React2.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
92
+ "div",
93
+ {
94
+ className: cn("text-sm [&_p]:leading-relaxed", className),
95
+ ref,
96
+ ...props
97
+ }
98
+ ));
99
+ AlertDescription.displayName = "AlertDescription";
100
+
101
+ // src/components/ui/alert-dialog/index.tsx
102
+
103
+
104
+ // src/components/ui/button/index.tsx
105
+
106
+
107
+ var _reactslot = require('@radix-ui/react-slot');
108
+
109
+ var buttonVariants = _classvarianceauthority.cva.call(void 0,
110
+ "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",
111
+ {
112
+ variants: {
113
+ variant: {
114
+ default: "bg-primary text-primary-foreground shadow hover:bg-primary/90",
115
+ destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
116
+ outline: "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
117
+ secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
118
+ ghost: "hover:bg-accent hover:text-accent-foreground",
119
+ link: "text-primary underline-offset-4 hover:underline"
120
+ },
121
+ size: {
122
+ default: "h-9 px-4 py-2",
123
+ sm: "h-8 rounded-md px-3 text-xs",
124
+ lg: "h-10 rounded-md px-8",
125
+ icon: "h-9 w-9"
126
+ }
127
+ },
128
+ defaultVariants: {
129
+ variant: "default",
130
+ size: "default"
131
+ }
132
+ }
133
+ );
134
+ var Button = React3.forwardRef(
135
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
136
+ const Comp = asChild ? _reactslot.Slot : "button";
137
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
138
+ Comp,
139
+ {
140
+ className: cn(buttonVariants({ variant, size, className })),
141
+ ref,
142
+ ...props
143
+ }
144
+ );
145
+ }
146
+ );
147
+ Button.displayName = "Button";
148
+
149
+ // src/components/ui/alert-dialog/index.tsx
150
+ var _reactalertdialog = require('@radix-ui/react-alert-dialog'); var AlertDialogPrimitive = _interopRequireWildcard(_reactalertdialog);
151
+
152
+ var AlertDialog = AlertDialogPrimitive.Root;
153
+ var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
154
+ var AlertDialogPortal = AlertDialogPrimitive.Portal;
155
+ var AlertDialogOverlay = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
156
+ AlertDialogPrimitive.Overlay,
157
+ {
158
+ className: cn(
159
+ "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80",
160
+ className
161
+ ),
162
+ ...props,
163
+ ref
164
+ }
165
+ ));
166
+ AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
167
+ var AlertDialogContent = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, AlertDialogPortal, { children: [
168
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AlertDialogOverlay, {}),
169
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
170
+ AlertDialogPrimitive.Content,
171
+ {
172
+ className: cn(
173
+ "bg-background 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%] fixed top-[50%] left-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg duration-200 sm:rounded-lg",
174
+ className
175
+ ),
176
+ ref,
177
+ ...props
178
+ }
179
+ )
180
+ ] }));
181
+ AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
182
+ var AlertDialogHeader = ({
183
+ className,
184
+ ...props
185
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
186
+ "div",
187
+ {
188
+ className: cn(
189
+ "flex flex-col space-y-2 text-center sm:text-left",
190
+ className
191
+ ),
192
+ ...props
193
+ }
194
+ );
195
+ AlertDialogHeader.displayName = "AlertDialogHeader";
196
+ var AlertDialogFooter = ({
197
+ className,
198
+ ...props
199
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
200
+ "div",
201
+ {
202
+ className: cn(
203
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
204
+ className
205
+ ),
206
+ ...props
207
+ }
208
+ );
209
+ AlertDialogFooter.displayName = "AlertDialogFooter";
210
+ var AlertDialogTitle = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
211
+ AlertDialogPrimitive.Title,
212
+ {
213
+ className: cn("text-lg font-semibold", className),
214
+ ref,
215
+ ...props
216
+ }
217
+ ));
218
+ AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
219
+ var AlertDialogDescription = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
220
+ AlertDialogPrimitive.Description,
221
+ {
222
+ className: cn("text-muted-foreground text-sm", className),
223
+ ref,
224
+ ...props
225
+ }
226
+ ));
227
+ AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
228
+ var AlertDialogAction = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
229
+ AlertDialogPrimitive.Action,
230
+ {
231
+ className: cn(buttonVariants(), className),
232
+ ref,
233
+ ...props
234
+ }
235
+ ));
236
+ AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
237
+ var AlertDialogCancel = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
238
+ AlertDialogPrimitive.Cancel,
239
+ {
240
+ className: cn(
241
+ buttonVariants({ variant: "outline" }),
242
+ "mt-2 sm:mt-0",
243
+ className
244
+ ),
245
+ ref,
246
+ ...props
247
+ }
248
+ ));
249
+ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
250
+
251
+ // src/components/ui/avatar/index.tsx
252
+
253
+ var _reactavatar = require('@radix-ui/react-avatar'); var AvatarPrimitive = _interopRequireWildcard(_reactavatar);
254
+
255
+ var Avatar = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
256
+ AvatarPrimitive.Root,
257
+ {
258
+ className: cn(
259
+ "relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
260
+ className
261
+ ),
262
+ ref,
263
+ ...props
264
+ }
265
+ ));
266
+ Avatar.displayName = AvatarPrimitive.Root.displayName;
267
+ var AvatarImage = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
268
+ AvatarPrimitive.Image,
269
+ {
270
+ className: cn("aspect-square h-full w-full", className),
271
+ ref,
272
+ ...props
273
+ }
274
+ ));
275
+ AvatarImage.displayName = AvatarPrimitive.Image.displayName;
276
+ var AvatarFallback = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
277
+ AvatarPrimitive.Fallback,
278
+ {
279
+ className: cn(
280
+ "bg-muted flex h-full w-full items-center justify-center rounded-full",
281
+ className
282
+ ),
283
+ ref,
284
+ ...props
285
+ }
286
+ ));
287
+ AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
288
+
289
+ // src/components/ui/badge/index.tsx
290
+
291
+
292
+ var badgeVariants = _classvarianceauthority.cva.call(void 0,
293
+ "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
294
+ {
295
+ variants: {
296
+ variant: {
297
+ default: "border-transparent bg-primary text-primary-foreground shadow hover:bg-primary/80",
298
+ secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
299
+ destructive: "border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80",
300
+ outline: "text-foreground"
301
+ }
302
+ },
303
+ defaultVariants: {
304
+ variant: "default"
305
+ }
306
+ }
307
+ );
308
+ function Badge({ className, variant, ...props }) {
309
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: cn(badgeVariants({ variant }), className), ...props });
310
+ }
311
+
312
+ // src/components/ui/breadcrumb/index.tsx
313
+
314
+
315
+
316
+
317
+ var Breadcrumb = React6.forwardRef(({ ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "nav", { "aria-label": "breadcrumb", ref, ...props }));
318
+ Breadcrumb.displayName = "Breadcrumb";
319
+ var BreadcrumbList = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
320
+ "ol",
321
+ {
322
+ className: cn(
323
+ "text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm wrap-break-word sm:gap-2.5",
324
+ className
325
+ ),
326
+ ref,
327
+ ...props
328
+ }
329
+ ));
330
+ BreadcrumbList.displayName = "BreadcrumbList";
331
+ var BreadcrumbItem = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
332
+ "li",
333
+ {
334
+ className: cn("inline-flex items-center gap-1.5", className),
335
+ ref,
336
+ ...props
337
+ }
338
+ ));
339
+ BreadcrumbItem.displayName = "BreadcrumbItem";
340
+ var BreadcrumbLink = React6.forwardRef(({ asChild, className, ...props }, ref) => {
341
+ const Comp = asChild ? _reactslot.Slot : "a";
342
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
343
+ Comp,
344
+ {
345
+ className: cn("hover:text-foreground transition-colors", className),
346
+ ref,
347
+ ...props
348
+ }
349
+ );
350
+ });
351
+ BreadcrumbLink.displayName = "BreadcrumbLink";
352
+ var BreadcrumbPage = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
353
+ "span",
354
+ {
355
+ "aria-current": "page",
356
+ "aria-disabled": "true",
357
+ className: cn("text-foreground font-normal", className),
358
+ ref,
359
+ role: "link",
360
+ ...props
361
+ }
362
+ ));
363
+ BreadcrumbPage.displayName = "BreadcrumbPage";
364
+ var BreadcrumbSeparator = ({
365
+ children,
366
+ className,
367
+ ...props
368
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
369
+ "li",
370
+ {
371
+ "aria-hidden": "true",
372
+ className: cn("[&>svg]:h-3.5 [&>svg]:w-3.5", className),
373
+ role: "presentation",
374
+ ...props,
375
+ children: _nullishCoalesce(children, () => ( /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronRight, {})))
376
+ }
377
+ );
378
+ BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
379
+ var BreadcrumbEllipsis = ({
380
+ className,
381
+ ...props
382
+ }) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
383
+ "span",
384
+ {
385
+ "aria-hidden": "true",
386
+ className: cn("flex h-9 w-9 items-center justify-center", className),
387
+ role: "presentation",
388
+ ...props,
389
+ children: [
390
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.MoreHorizontal, { className: "h-4 w-4" }),
391
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "More" })
392
+ ]
393
+ }
394
+ );
395
+ BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
396
+
397
+ // src/components/ui/calendar/index.tsx
398
+
399
+
400
+
401
+
402
+
403
+
404
+ var _reactdaypicker = require('react-day-picker');
405
+
406
+ function Calendar({
407
+ className,
408
+ classNames,
409
+ showOutsideDays = true,
410
+ captionLayout = "label",
411
+ buttonVariant = "ghost",
412
+ formatters,
413
+ components,
414
+ ...props
415
+ }) {
416
+ const defaultClassNames = _reactdaypicker.getDefaultClassNames.call(void 0, );
417
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
418
+ _reactdaypicker.DayPicker,
419
+ {
420
+ className: cn(
421
+ "bg-background group/calendar p-3 [--cell-size:2rem] in-data-[slot=card-content]:bg-transparent in-data-[slot=popover-content]:bg-transparent",
422
+ String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
423
+ String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
424
+ className
425
+ ),
426
+ classNames: {
427
+ root: cn("w-fit", defaultClassNames.root),
428
+ months: cn(
429
+ "relative flex flex-col gap-4 md:flex-row",
430
+ defaultClassNames.months
431
+ ),
432
+ month: cn("flex w-full flex-col gap-4", defaultClassNames.month),
433
+ nav: cn(
434
+ "absolute inset-x-0 top-0 flex w-full items-center justify-between gap-1",
435
+ defaultClassNames.nav
436
+ ),
437
+ button_previous: cn(
438
+ buttonVariants({ variant: buttonVariant }),
439
+ "h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",
440
+ defaultClassNames.button_previous
441
+ ),
442
+ button_next: cn(
443
+ buttonVariants({ variant: buttonVariant }),
444
+ "h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",
445
+ defaultClassNames.button_next
446
+ ),
447
+ month_caption: cn(
448
+ "flex h-[--cell-size] w-full items-center justify-center px-[--cell-size]",
449
+ defaultClassNames.month_caption
450
+ ),
451
+ dropdowns: cn(
452
+ "flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",
453
+ defaultClassNames.dropdowns
454
+ ),
455
+ dropdown_root: cn(
456
+ "has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] relative rounded-md border",
457
+ defaultClassNames.dropdown_root
458
+ ),
459
+ dropdown: cn(
460
+ "bg-popover absolute inset-0 opacity-0",
461
+ defaultClassNames.dropdown
462
+ ),
463
+ caption_label: cn(
464
+ "select-none font-medium",
465
+ captionLayout === "label" ? "text-sm" : "[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",
466
+ defaultClassNames.caption_label
467
+ ),
468
+ table: "w-full border-collapse",
469
+ weekdays: cn("flex", defaultClassNames.weekdays),
470
+ weekday: cn(
471
+ "text-muted-foreground flex-1 select-none rounded-md text-[0.8rem] font-normal",
472
+ defaultClassNames.weekday
473
+ ),
474
+ week: cn("mt-2 flex w-full", defaultClassNames.week),
475
+ week_number_header: cn(
476
+ "w-[--cell-size] select-none",
477
+ defaultClassNames.week_number_header
478
+ ),
479
+ week_number: cn(
480
+ "text-muted-foreground select-none text-[0.8rem]",
481
+ defaultClassNames.week_number
482
+ ),
483
+ day: cn(
484
+ "group/day relative aspect-square h-full w-full select-none p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md",
485
+ defaultClassNames.day
486
+ ),
487
+ range_start: cn(
488
+ "bg-accent rounded-l-md",
489
+ defaultClassNames.range_start
490
+ ),
491
+ range_middle: cn("rounded-none", defaultClassNames.range_middle),
492
+ range_end: cn("bg-accent rounded-r-md", defaultClassNames.range_end),
493
+ today: cn(
494
+ "bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",
495
+ defaultClassNames.today
496
+ ),
497
+ outside: cn(
498
+ "text-muted-foreground aria-selected:text-muted-foreground",
499
+ defaultClassNames.outside
500
+ ),
501
+ disabled: cn(
502
+ "text-muted-foreground opacity-50",
503
+ defaultClassNames.disabled
504
+ ),
505
+ hidden: cn("invisible", defaultClassNames.hidden),
506
+ ...classNames
507
+ },
508
+ components: {
509
+ Root: ({ className: className2, rootRef, ...props2 }) => {
510
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
511
+ "div",
512
+ {
513
+ className: cn(className2),
514
+ "data-slot": "calendar",
515
+ ref: rootRef,
516
+ ...props2
517
+ }
518
+ );
519
+ },
520
+ Chevron: ({ className: className2, orientation, ...props2 }) => {
521
+ if (orientation === "left") {
522
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronLeftIcon, { className: cn("size-4", className2), ...props2 });
523
+ }
524
+ if (orientation === "right") {
525
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
526
+ _lucidereact.ChevronRightIcon,
527
+ {
528
+ className: cn("size-4", className2),
529
+ ...props2
530
+ }
531
+ );
532
+ }
533
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronDownIcon, { className: cn("size-4", className2), ...props2 });
534
+ },
535
+ DayButton: CalendarDayButton,
536
+ WeekNumber: ({ children, ...props2 }) => {
537
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "td", { ...props2, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex size-[--cell-size] items-center justify-center text-center", children }) });
538
+ },
539
+ ...components
540
+ },
541
+ formatters: {
542
+ formatMonthDropdown: (date) => date.toLocaleString("default", { month: "short" }),
543
+ ...formatters
544
+ },
545
+ captionLayout,
546
+ showOutsideDays,
547
+ ...props
548
+ }
549
+ );
550
+ }
551
+ function CalendarDayButton({
552
+ className,
553
+ day,
554
+ modifiers,
555
+ ...props
556
+ }) {
557
+ const defaultClassNames = _reactdaypicker.getDefaultClassNames.call(void 0, );
558
+ const ref = React7.useRef(null);
559
+ React7.useEffect(() => {
560
+ if (modifiers.focused) _optionalChain([ref, 'access', _ => _.current, 'optionalAccess', _2 => _2.focus, 'call', _3 => _3()]);
561
+ }, [modifiers.focused]);
562
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
563
+ Button,
564
+ {
565
+ className: cn(
566
+ "data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 flex aspect-square h-auto w-full min-w-[--cell-size] flex-col gap-1 leading-none font-normal group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] data-[range-end=true]:rounded-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md [&>span]:text-xs [&>span]:opacity-70",
567
+ defaultClassNames.day,
568
+ className
569
+ ),
570
+ "data-selected-single": modifiers.selected && !modifiers.range_start && !modifiers.range_end && !modifiers.range_middle,
571
+ "data-day": day.date.toLocaleDateString(),
572
+ "data-range-end": modifiers.range_end,
573
+ "data-range-middle": modifiers.range_middle,
574
+ "data-range-start": modifiers.range_start,
575
+ ref,
576
+ size: "icon",
577
+ variant: "ghost",
578
+ ...props
579
+ }
580
+ );
581
+ }
582
+
583
+ // src/components/ui/card/index.tsx
584
+
585
+
586
+ var Card = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
587
+ "div",
588
+ {
589
+ className: cn(
590
+ "bg-card text-card-foreground rounded-xl border shadow",
591
+ className
592
+ ),
593
+ ref,
594
+ ...props
595
+ }
596
+ ));
597
+ Card.displayName = "Card";
598
+ var CardHeader = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
599
+ "div",
600
+ {
601
+ className: cn("flex flex-col space-y-1.5 p-6", className),
602
+ ref,
603
+ ...props
604
+ }
605
+ ));
606
+ CardHeader.displayName = "CardHeader";
607
+ var CardTitle = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
608
+ "div",
609
+ {
610
+ className: cn("leading-none font-semibold tracking-tight", className),
611
+ ref,
612
+ ...props
613
+ }
614
+ ));
615
+ CardTitle.displayName = "CardTitle";
616
+ var CardDescription = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
617
+ "div",
618
+ {
619
+ className: cn("text-muted-foreground text-sm", className),
620
+ ref,
621
+ ...props
622
+ }
623
+ ));
624
+ CardDescription.displayName = "CardDescription";
625
+ var CardContent = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: cn("p-6 pt-0", className), ref, ...props }));
626
+ CardContent.displayName = "CardContent";
627
+ var CardFooter = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
628
+ "div",
629
+ {
630
+ className: cn("flex items-center p-6 pt-0", className),
631
+ ref,
632
+ ...props
633
+ }
634
+ ));
635
+ CardFooter.displayName = "CardFooter";
636
+
637
+ // src/components/ui/carousel/index.tsx
638
+ var _emblacarouselreact = require('embla-carousel-react'); var _emblacarouselreact2 = _interopRequireDefault(_emblacarouselreact);
639
+
640
+
641
+
642
+ var CarouselContext = React9.createContext(null);
643
+ function useCarousel() {
644
+ const context = React9.useContext(CarouselContext);
645
+ if (!context) {
646
+ throw new Error("useCarousel must be used within a <Carousel />");
647
+ }
648
+ return context;
649
+ }
650
+ var Carousel = React9.forwardRef(
651
+ ({
652
+ orientation = "horizontal",
653
+ opts,
654
+ setApi,
655
+ plugins,
656
+ className,
657
+ children,
658
+ ...props
659
+ }, ref) => {
660
+ const [carouselRef, api] = _emblacarouselreact2.default.call(void 0,
661
+ {
662
+ ...opts,
663
+ axis: orientation === "horizontal" ? "x" : "y"
664
+ },
665
+ plugins
666
+ );
667
+ const [canScrollPrev, setCanScrollPrev] = React9.useState(false);
668
+ const [canScrollNext, setCanScrollNext] = React9.useState(false);
669
+ const onSelect = React9.useCallback((api2) => {
670
+ if (!api2) {
671
+ return;
672
+ }
673
+ setCanScrollPrev(api2.canScrollPrev());
674
+ setCanScrollNext(api2.canScrollNext());
675
+ }, []);
676
+ const scrollPrev = React9.useCallback(() => {
677
+ _optionalChain([api, 'optionalAccess', _4 => _4.scrollPrev, 'call', _5 => _5()]);
678
+ }, [api]);
679
+ const scrollNext = React9.useCallback(() => {
680
+ _optionalChain([api, 'optionalAccess', _6 => _6.scrollNext, 'call', _7 => _7()]);
681
+ }, [api]);
682
+ const handleKeyDown = React9.useCallback(
683
+ (event) => {
684
+ if (event.key === "ArrowLeft") {
685
+ event.preventDefault();
686
+ scrollPrev();
687
+ } else if (event.key === "ArrowRight") {
688
+ event.preventDefault();
689
+ scrollNext();
690
+ }
691
+ },
692
+ [scrollPrev, scrollNext]
693
+ );
694
+ React9.useEffect(() => {
695
+ if (!api || !setApi) {
696
+ return;
697
+ }
698
+ setApi(api);
699
+ }, [api, setApi]);
700
+ React9.useEffect(() => {
701
+ if (!api) {
702
+ return;
703
+ }
704
+ onSelect(api);
705
+ api.on("reInit", onSelect);
706
+ api.on("select", onSelect);
707
+ return () => {
708
+ _optionalChain([api, 'optionalAccess', _8 => _8.off, 'call', _9 => _9("select", onSelect)]);
709
+ };
710
+ }, [api, onSelect]);
711
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
712
+ CarouselContext.Provider,
713
+ {
714
+ value: {
715
+ carouselRef,
716
+ api,
717
+ opts,
718
+ orientation: orientation || (_optionalChain([opts, 'optionalAccess', _10 => _10.axis]) === "y" ? "vertical" : "horizontal"),
719
+ scrollPrev,
720
+ scrollNext,
721
+ canScrollPrev,
722
+ canScrollNext
723
+ },
724
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
725
+ "div",
726
+ {
727
+ "aria-roledescription": "carousel",
728
+ className: cn("relative", className),
729
+ onKeyDownCapture: handleKeyDown,
730
+ ref,
731
+ role: "region",
732
+ ...props,
733
+ children
734
+ }
735
+ )
736
+ }
737
+ );
738
+ }
739
+ );
740
+ Carousel.displayName = "Carousel";
741
+ var CarouselContent = React9.forwardRef(({ className, ...props }, ref) => {
742
+ const { carouselRef, orientation } = useCarousel();
743
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "overflow-hidden", ref: carouselRef, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
744
+ "div",
745
+ {
746
+ className: cn(
747
+ "flex",
748
+ orientation === "horizontal" ? "-ml-4" : "-mt-4 flex-col",
749
+ className
750
+ ),
751
+ ref,
752
+ ...props
753
+ }
754
+ ) });
755
+ });
756
+ CarouselContent.displayName = "CarouselContent";
757
+ var CarouselItem = React9.forwardRef(({ className, ...props }, ref) => {
758
+ const { orientation } = useCarousel();
759
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
760
+ "div",
761
+ {
762
+ className: cn(
763
+ "min-w-0 shrink-0 grow-0 basis-full",
764
+ orientation === "horizontal" ? "pl-4" : "pt-4",
765
+ className
766
+ ),
767
+ "aria-roledescription": "slide",
768
+ ref,
769
+ role: "group",
770
+ ...props
771
+ }
772
+ );
773
+ });
774
+ CarouselItem.displayName = "CarouselItem";
775
+ var CarouselPrevious = React9.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
776
+ const { orientation, scrollPrev, canScrollPrev } = useCarousel();
777
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
778
+ Button,
779
+ {
780
+ className: cn(
781
+ "absolute h-8 w-8 rounded-full",
782
+ orientation === "horizontal" ? "top-1/2 -left-12 -translate-y-1/2" : "-top-12 left-1/2 -translate-x-1/2 rotate-90",
783
+ className
784
+ ),
785
+ disabled: !canScrollPrev,
786
+ onClick: scrollPrev,
787
+ ref,
788
+ size,
789
+ variant,
790
+ ...props,
791
+ children: [
792
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ArrowLeft, { className: "h-4 w-4" }),
793
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "Previous slide" })
794
+ ]
795
+ }
796
+ );
797
+ });
798
+ CarouselPrevious.displayName = "CarouselPrevious";
799
+ var CarouselNext = React9.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
800
+ const { orientation, scrollNext, canScrollNext } = useCarousel();
801
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
802
+ Button,
803
+ {
804
+ className: cn(
805
+ "absolute h-8 w-8 rounded-full",
806
+ orientation === "horizontal" ? "top-1/2 -right-12 -translate-y-1/2" : "-bottom-12 left-1/2 -translate-x-1/2 rotate-90",
807
+ className
808
+ ),
809
+ disabled: !canScrollNext,
810
+ onClick: scrollNext,
811
+ ref,
812
+ size,
813
+ variant,
814
+ ...props,
815
+ children: [
816
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ArrowRight, { className: "h-4 w-4" }),
817
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "Next slide" })
818
+ ]
819
+ }
820
+ );
821
+ });
822
+ CarouselNext.displayName = "CarouselNext";
823
+
824
+ // src/components/ui/checkbox/index.tsx
825
+
826
+
827
+ var _reactcheckbox = require('@radix-ui/react-checkbox'); var CheckboxPrimitive = _interopRequireWildcard(_reactcheckbox);
828
+
829
+ var Checkbox = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
830
+ CheckboxPrimitive.Root,
831
+ {
832
+ className: cn(
833
+ "peer border-primary focus-visible:ring-ring data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground grid h-4 w-4 shrink-0 place-content-center rounded-sm border shadow focus-visible:ring-1 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50",
834
+ className
835
+ ),
836
+ ref,
837
+ ...props,
838
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
839
+ CheckboxPrimitive.Indicator,
840
+ {
841
+ className: cn("grid place-content-center text-current"),
842
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4" })
843
+ }
844
+ )
845
+ }
846
+ ));
847
+ Checkbox.displayName = CheckboxPrimitive.Root.displayName;
848
+
849
+ // src/components/ui/collapsible/index.tsx
850
+ var _reactcollapsible = require('@radix-ui/react-collapsible'); var CollapsiblePrimitive = _interopRequireWildcard(_reactcollapsible);
851
+ var Collapsible = CollapsiblePrimitive.Root;
852
+ var CollapsibleTrigger2 = CollapsiblePrimitive.CollapsibleTrigger;
853
+ var CollapsibleContent2 = CollapsiblePrimitive.CollapsibleContent;
854
+
855
+ // src/components/ui/command/index.tsx
856
+ var _cmdk = require('cmdk');
857
+
858
+
859
+
860
+ // src/components/ui/dialog/index.tsx
861
+
862
+
863
+ var _reactdialog = require('@radix-ui/react-dialog'); var DialogPrimitive = _interopRequireWildcard(_reactdialog); var SheetPrimitive = _interopRequireWildcard(_reactdialog);
864
+
865
+ var Dialog = DialogPrimitive.Root;
866
+ var DialogTrigger = DialogPrimitive.Trigger;
867
+ var DialogPortal = DialogPrimitive.Portal;
868
+ var DialogClose = DialogPrimitive.Close;
869
+ var DialogOverlay = React11.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
870
+ DialogPrimitive.Overlay,
871
+ {
872
+ className: cn(
873
+ "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80",
874
+ className
875
+ ),
876
+ ref,
877
+ ...props
878
+ }
879
+ ));
880
+ DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
881
+ var DialogContent = React11.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, DialogPortal, { children: [
882
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DialogOverlay, {}),
883
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
884
+ DialogPrimitive.Content,
885
+ {
886
+ className: cn(
887
+ "bg-background 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%] fixed top-[50%] left-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg duration-200 sm:rounded-lg",
888
+ className
889
+ ),
890
+ ref,
891
+ ...props,
892
+ children: [
893
+ children,
894
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, DialogPrimitive.Close, { className: "ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-none disabled:pointer-events-none", children: [
895
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.X, { className: "h-4 w-4" }),
896
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "Close" })
897
+ ] })
898
+ ]
899
+ }
900
+ )
901
+ ] }));
902
+ DialogContent.displayName = DialogPrimitive.Content.displayName;
903
+ var DialogHeader = ({
904
+ className,
905
+ ...props
906
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
907
+ "div",
908
+ {
909
+ className: cn(
910
+ "flex flex-col space-y-1.5 text-center sm:text-left",
911
+ className
912
+ ),
913
+ ...props
914
+ }
915
+ );
916
+ DialogHeader.displayName = "DialogHeader";
917
+ var DialogFooter = ({
918
+ className,
919
+ ...props
920
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
921
+ "div",
922
+ {
923
+ className: cn(
924
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
925
+ className
926
+ ),
927
+ ...props
928
+ }
929
+ );
930
+ DialogFooter.displayName = "DialogFooter";
931
+ var DialogTitle = React11.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
932
+ DialogPrimitive.Title,
933
+ {
934
+ className: cn(
935
+ "text-lg leading-none font-semibold tracking-tight",
936
+ className
937
+ ),
938
+ ref,
939
+ ...props
940
+ }
941
+ ));
942
+ DialogTitle.displayName = DialogPrimitive.Title.displayName;
943
+ var DialogDescription = React11.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
944
+ DialogPrimitive.Description,
945
+ {
946
+ className: cn("text-muted-foreground text-sm", className),
947
+ ref,
948
+ ...props
949
+ }
950
+ ));
951
+ DialogDescription.displayName = DialogPrimitive.Description.displayName;
952
+
953
+ // src/components/ui/command/index.tsx
954
+
955
+ var Command = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
956
+ _cmdk.Command,
957
+ {
958
+ className: cn(
959
+ "bg-popover text-popover-foreground flex h-full w-full flex-col overflow-hidden rounded-md",
960
+ className
961
+ ),
962
+ ref,
963
+ ...props
964
+ }
965
+ ));
966
+ Command.displayName = _cmdk.Command.displayName;
967
+ var CommandDialog = ({ children, ...props }) => {
968
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Dialog, { ...props, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Command, { className: "**:[[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5 **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group]]:px-2 **:[[cmdk-input]]:h-12 **:[[cmdk-item]]:px-2 **:[[cmdk-item]]:py-3", children }) }) });
969
+ };
970
+ var CommandInput = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center border-b px-3", children: [
971
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
972
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
973
+ _cmdk.Command.Input,
974
+ {
975
+ className: cn(
976
+ "placeholder:text-muted-foreground flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none disabled:cursor-not-allowed disabled:opacity-50",
977
+ className
978
+ ),
979
+ ref,
980
+ ...props
981
+ }
982
+ )
983
+ ] }));
984
+ CommandInput.displayName = _cmdk.Command.Input.displayName;
985
+ var CommandList = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
986
+ _cmdk.Command.List,
987
+ {
988
+ className: cn("max-h-[300px] overflow-x-hidden overflow-y-auto", className),
989
+ ref,
990
+ ...props
991
+ }
992
+ ));
993
+ CommandList.displayName = _cmdk.Command.List.displayName;
994
+ var CommandEmpty = React12.forwardRef((props, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
995
+ _cmdk.Command.Empty,
996
+ {
997
+ className: "py-6 text-center text-sm",
998
+ ref,
999
+ ...props
1000
+ }
1001
+ ));
1002
+ CommandEmpty.displayName = _cmdk.Command.Empty.displayName;
1003
+ var CommandGroup = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1004
+ _cmdk.Command.Group,
1005
+ {
1006
+ className: cn(
1007
+ "text-foreground **:[[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:py-1.5 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium",
1008
+ className
1009
+ ),
1010
+ ref,
1011
+ ...props
1012
+ }
1013
+ ));
1014
+ CommandGroup.displayName = _cmdk.Command.Group.displayName;
1015
+ var CommandSeparator = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1016
+ _cmdk.Command.Separator,
1017
+ {
1018
+ className: cn("bg-border -mx-1 h-px", className),
1019
+ ref,
1020
+ ...props
1021
+ }
1022
+ ));
1023
+ CommandSeparator.displayName = _cmdk.Command.Separator.displayName;
1024
+ var CommandItem = React12.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1025
+ _cmdk.Command.Item,
1026
+ {
1027
+ className: cn(
1028
+ "data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none select-none data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
1029
+ className
1030
+ ),
1031
+ ref,
1032
+ ...props
1033
+ }
1034
+ ));
1035
+ CommandItem.displayName = _cmdk.Command.Item.displayName;
1036
+ var CommandShortcut = ({
1037
+ className,
1038
+ ...props
1039
+ }) => {
1040
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1041
+ "span",
1042
+ {
1043
+ className: cn(
1044
+ "text-muted-foreground ml-auto text-xs tracking-widest",
1045
+ className
1046
+ ),
1047
+ ...props
1048
+ }
1049
+ );
1050
+ };
1051
+ CommandShortcut.displayName = "CommandShortcut";
1052
+
1053
+ // src/components/ui/context-menu/index.tsx
1054
+
1055
+
1056
+ var _reactcontextmenu = require('@radix-ui/react-context-menu'); var ContextMenuPrimitive = _interopRequireWildcard(_reactcontextmenu);
1057
+
1058
+ var ContextMenu = ContextMenuPrimitive.Root;
1059
+ var ContextMenuTrigger = ContextMenuPrimitive.Trigger;
1060
+ var ContextMenuGroup = ContextMenuPrimitive.Group;
1061
+ var ContextMenuPortal = ContextMenuPrimitive.Portal;
1062
+ var ContextMenuSub = ContextMenuPrimitive.Sub;
1063
+ var ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup;
1064
+ var ContextMenuSubTrigger = React13.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1065
+ ContextMenuPrimitive.SubTrigger,
1066
+ {
1067
+ className: cn(
1068
+ "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-none select-none",
1069
+ inset && "pl-8",
1070
+ className
1071
+ ),
1072
+ ref,
1073
+ ...props,
1074
+ children: [
1075
+ children,
1076
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronRight, { className: "ml-auto h-4 w-4" })
1077
+ ]
1078
+ }
1079
+ ));
1080
+ ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
1081
+ var ContextMenuSubContent = React13.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1082
+ ContextMenuPrimitive.SubContent,
1083
+ {
1084
+ className: cn(
1085
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] origin-[--radix-context-menu-content-transform-origin] overflow-hidden rounded-md border p-1 shadow-lg",
1086
+ className
1087
+ ),
1088
+ ref,
1089
+ ...props
1090
+ }
1091
+ ));
1092
+ ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
1093
+ var ContextMenuContent = React13.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1094
+ ContextMenuPrimitive.Content,
1095
+ {
1096
+ className: cn(
1097
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 max-h-[--radix-context-menu-content-available-height] min-w-[8rem] origin-[--radix-context-menu-content-transform-origin] overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md",
1098
+ className
1099
+ ),
1100
+ ref,
1101
+ ...props
1102
+ }
1103
+ ) }));
1104
+ ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
1105
+ var ContextMenuItem = React13.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1106
+ ContextMenuPrimitive.Item,
1107
+ {
1108
+ className: cn(
1109
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1110
+ inset && "pl-8",
1111
+ className
1112
+ ),
1113
+ ref,
1114
+ ...props
1115
+ }
1116
+ ));
1117
+ ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
1118
+ var ContextMenuCheckboxItem = React13.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1119
+ ContextMenuPrimitive.CheckboxItem,
1120
+ {
1121
+ className: cn(
1122
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1123
+ className
1124
+ ),
1125
+ checked,
1126
+ ref,
1127
+ ...props,
1128
+ children: [
1129
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4" }) }) }),
1130
+ children
1131
+ ]
1132
+ }
1133
+ ));
1134
+ ContextMenuCheckboxItem.displayName = ContextMenuPrimitive.CheckboxItem.displayName;
1135
+ var ContextMenuRadioItem = React13.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1136
+ ContextMenuPrimitive.RadioItem,
1137
+ {
1138
+ className: cn(
1139
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1140
+ className
1141
+ ),
1142
+ ref,
1143
+ ...props,
1144
+ children: [
1145
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Circle, { className: "h-4 w-4 fill-current" }) }) }),
1146
+ children
1147
+ ]
1148
+ }
1149
+ ));
1150
+ ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
1151
+ var ContextMenuLabel = React13.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1152
+ ContextMenuPrimitive.Label,
1153
+ {
1154
+ className: cn(
1155
+ "text-foreground px-2 py-1.5 text-sm font-semibold",
1156
+ inset && "pl-8",
1157
+ className
1158
+ ),
1159
+ ref,
1160
+ ...props
1161
+ }
1162
+ ));
1163
+ ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
1164
+ var ContextMenuSeparator = React13.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1165
+ ContextMenuPrimitive.Separator,
1166
+ {
1167
+ className: cn("bg-border -mx-1 my-1 h-px", className),
1168
+ ref,
1169
+ ...props
1170
+ }
1171
+ ));
1172
+ ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName;
1173
+ var ContextMenuShortcut = ({
1174
+ className,
1175
+ ...props
1176
+ }) => {
1177
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1178
+ "span",
1179
+ {
1180
+ className: cn(
1181
+ "text-muted-foreground ml-auto text-xs tracking-widest",
1182
+ className
1183
+ ),
1184
+ ...props
1185
+ }
1186
+ );
1187
+ };
1188
+ ContextMenuShortcut.displayName = "ContextMenuShortcut";
1189
+
1190
+ // src/components/ui/drawer/index.tsx
1191
+
1192
+ var _vaul = require('vaul');
1193
+
1194
+ var Drawer = ({
1195
+ shouldScaleBackground = true,
1196
+ ...props
1197
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1198
+ _vaul.Drawer.Root,
1199
+ {
1200
+ shouldScaleBackground,
1201
+ ...props
1202
+ }
1203
+ );
1204
+ Drawer.displayName = "Drawer";
1205
+ var DrawerTrigger = _vaul.Drawer.Trigger;
1206
+ var DrawerPortal = _vaul.Drawer.Portal;
1207
+ var DrawerClose = _vaul.Drawer.Close;
1208
+ var DrawerOverlay = React14.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1209
+ _vaul.Drawer.Overlay,
1210
+ {
1211
+ className: cn("fixed inset-0 z-50 bg-black/80", className),
1212
+ ref,
1213
+ ...props
1214
+ }
1215
+ ));
1216
+ DrawerOverlay.displayName = _vaul.Drawer.Overlay.displayName;
1217
+ var DrawerContent = React14.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, DrawerPortal, { children: [
1218
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DrawerOverlay, {}),
1219
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1220
+ _vaul.Drawer.Content,
1221
+ {
1222
+ className: cn(
1223
+ "bg-background fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border",
1224
+ className
1225
+ ),
1226
+ ref,
1227
+ ...props,
1228
+ children: [
1229
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-muted mx-auto mt-4 h-2 w-[100px] rounded-full" }),
1230
+ children
1231
+ ]
1232
+ }
1233
+ )
1234
+ ] }));
1235
+ DrawerContent.displayName = "DrawerContent";
1236
+ var DrawerHeader = ({
1237
+ className,
1238
+ ...props
1239
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1240
+ "div",
1241
+ {
1242
+ className: cn("grid gap-1.5 p-4 text-center sm:text-left", className),
1243
+ ...props
1244
+ }
1245
+ );
1246
+ DrawerHeader.displayName = "DrawerHeader";
1247
+ var DrawerFooter = ({
1248
+ className,
1249
+ ...props
1250
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1251
+ "div",
1252
+ {
1253
+ className: cn("mt-auto flex flex-col gap-2 p-4", className),
1254
+ ...props
1255
+ }
1256
+ );
1257
+ DrawerFooter.displayName = "DrawerFooter";
1258
+ var DrawerTitle = React14.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1259
+ _vaul.Drawer.Title,
1260
+ {
1261
+ className: cn(
1262
+ "text-lg leading-none font-semibold tracking-tight",
1263
+ className
1264
+ ),
1265
+ ref,
1266
+ ...props
1267
+ }
1268
+ ));
1269
+ DrawerTitle.displayName = _vaul.Drawer.Title.displayName;
1270
+ var DrawerDescription = React14.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1271
+ _vaul.Drawer.Description,
1272
+ {
1273
+ className: cn("text-muted-foreground text-sm", className),
1274
+ ref,
1275
+ ...props
1276
+ }
1277
+ ));
1278
+ DrawerDescription.displayName = _vaul.Drawer.Description.displayName;
1279
+
1280
+ // src/components/ui/dropdown-menu/index.tsx
1281
+
1282
+
1283
+ var _reactdropdownmenu = require('@radix-ui/react-dropdown-menu'); var DropdownMenuPrimitive = _interopRequireWildcard(_reactdropdownmenu);
1284
+
1285
+ var DropdownMenu = DropdownMenuPrimitive.Root;
1286
+ var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
1287
+ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
1288
+ var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
1289
+ var DropdownMenuSub = DropdownMenuPrimitive.Sub;
1290
+ var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
1291
+ var DropdownMenuSubTrigger = React15.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1292
+ DropdownMenuPrimitive.SubTrigger,
1293
+ {
1294
+ className: cn(
1295
+ "focus:bg-accent data-[state=open]:bg-accent flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none select-none [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
1296
+ inset && "pl-8",
1297
+ className
1298
+ ),
1299
+ ref,
1300
+ ...props,
1301
+ children: [
1302
+ children,
1303
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronRight, { className: "ml-auto" })
1304
+ ]
1305
+ }
1306
+ ));
1307
+ DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
1308
+ var DropdownMenuSubContent = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1309
+ DropdownMenuPrimitive.SubContent,
1310
+ {
1311
+ className: cn(
1312
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] origin-[--radix-dropdown-menu-content-transform-origin] overflow-hidden rounded-md border p-1 shadow-lg",
1313
+ className
1314
+ ),
1315
+ ref,
1316
+ ...props
1317
+ }
1318
+ ));
1319
+ DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
1320
+ var DropdownMenuContent = React15.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1321
+ DropdownMenuPrimitive.Content,
1322
+ {
1323
+ className: cn(
1324
+ "bg-popover text-popover-foreground z-50 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md",
1325
+ "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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
1326
+ className
1327
+ ),
1328
+ ref,
1329
+ sideOffset,
1330
+ ...props
1331
+ }
1332
+ ) }));
1333
+ DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
1334
+ var DropdownMenuItem = React15.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1335
+ DropdownMenuPrimitive.Item,
1336
+ {
1337
+ className: cn(
1338
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm transition-colors outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
1339
+ inset && "pl-8",
1340
+ className
1341
+ ),
1342
+ ref,
1343
+ ...props
1344
+ }
1345
+ ));
1346
+ DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
1347
+ var DropdownMenuCheckboxItem = React15.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1348
+ DropdownMenuPrimitive.CheckboxItem,
1349
+ {
1350
+ className: cn(
1351
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm transition-colors outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1352
+ className
1353
+ ),
1354
+ checked,
1355
+ ref,
1356
+ ...props,
1357
+ children: [
1358
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4" }) }) }),
1359
+ children
1360
+ ]
1361
+ }
1362
+ ));
1363
+ DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
1364
+ var DropdownMenuRadioItem = React15.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1365
+ DropdownMenuPrimitive.RadioItem,
1366
+ {
1367
+ className: cn(
1368
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm transition-colors outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1369
+ className
1370
+ ),
1371
+ ref,
1372
+ ...props,
1373
+ children: [
1374
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Circle, { className: "h-2 w-2 fill-current" }) }) }),
1375
+ children
1376
+ ]
1377
+ }
1378
+ ));
1379
+ DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
1380
+ var DropdownMenuLabel = React15.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1381
+ DropdownMenuPrimitive.Label,
1382
+ {
1383
+ className: cn(
1384
+ "px-2 py-1.5 text-sm font-semibold",
1385
+ inset && "pl-8",
1386
+ className
1387
+ ),
1388
+ ref,
1389
+ ...props
1390
+ }
1391
+ ));
1392
+ DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
1393
+ var DropdownMenuSeparator = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1394
+ DropdownMenuPrimitive.Separator,
1395
+ {
1396
+ className: cn("bg-muted -mx-1 my-1 h-px", className),
1397
+ ref,
1398
+ ...props
1399
+ }
1400
+ ));
1401
+ DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
1402
+ var DropdownMenuShortcut = ({
1403
+ className,
1404
+ ...props
1405
+ }) => {
1406
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1407
+ "span",
1408
+ {
1409
+ className: cn("ml-auto text-xs tracking-widest opacity-60", className),
1410
+ ...props
1411
+ }
1412
+ );
1413
+ };
1414
+ DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
1415
+
1416
+ // src/components/ui/form/index.tsx
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+ var _reacthookform = require('react-hook-form');
1423
+
1424
+ // src/components/ui/label/index.tsx
1425
+
1426
+
1427
+ var _reactlabel = require('@radix-ui/react-label'); var LabelPrimitive = _interopRequireWildcard(_reactlabel);
1428
+
1429
+ var labelVariants = _classvarianceauthority.cva.call(void 0,
1430
+ "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
1431
+ );
1432
+ var Label3 = React16.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1433
+ LabelPrimitive.Root,
1434
+ {
1435
+ className: cn(labelVariants(), className),
1436
+ ref,
1437
+ ...props
1438
+ }
1439
+ ));
1440
+ Label3.displayName = LabelPrimitive.Root.displayName;
1441
+
1442
+ // src/components/ui/form/index.tsx
1443
+
1444
+
1445
+ var Form = _reacthookform.FormProvider;
1446
+ var FormFieldContext = React17.createContext(null);
1447
+ var FormField = ({
1448
+ ...props
1449
+ }) => {
1450
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _reacthookform.Controller, { ...props }) });
1451
+ };
1452
+ var useFormField = () => {
1453
+ const fieldContext = React17.useContext(FormFieldContext);
1454
+ const itemContext = React17.useContext(FormItemContext);
1455
+ const { getFieldState, formState } = _reacthookform.useFormContext.call(void 0, );
1456
+ if (!fieldContext) {
1457
+ throw new Error("useFormField should be used within <FormField>");
1458
+ }
1459
+ if (!itemContext) {
1460
+ throw new Error("useFormField should be used within <FormItem>");
1461
+ }
1462
+ const fieldState = getFieldState(fieldContext.name, formState);
1463
+ const { id: id2 } = itemContext;
1464
+ return {
1465
+ id: id2,
1466
+ name: fieldContext.name,
1467
+ formItemId: `${id2}-form-item`,
1468
+ formDescriptionId: `${id2}-form-item-description`,
1469
+ formMessageId: `${id2}-form-item-message`,
1470
+ ...fieldState
1471
+ };
1472
+ };
1473
+ var FormItemContext = React17.createContext(null);
1474
+ var FormItem = React17.forwardRef(({ className, ...props }, ref) => {
1475
+ const id2 = React17.useId();
1476
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FormItemContext.Provider, { value: { id: id2 }, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: cn("space-y-2", className), ref, ...props }) });
1477
+ });
1478
+ FormItem.displayName = "FormItem";
1479
+ var FormLabel = React17.forwardRef(({ className, ...props }, ref) => {
1480
+ const { error, formItemId } = useFormField();
1481
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1482
+ Label3,
1483
+ {
1484
+ className: cn(error && "text-destructive", className),
1485
+ htmlFor: formItemId,
1486
+ ref,
1487
+ ...props
1488
+ }
1489
+ );
1490
+ });
1491
+ FormLabel.displayName = "FormLabel";
1492
+ var FormControl = React17.forwardRef(({ ...props }, ref) => {
1493
+ const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
1494
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1495
+ _reactslot.Slot,
1496
+ {
1497
+ "aria-describedby": !error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`,
1498
+ "aria-invalid": !!error,
1499
+ id: formItemId,
1500
+ ref,
1501
+ ...props
1502
+ }
1503
+ );
1504
+ });
1505
+ FormControl.displayName = "FormControl";
1506
+ var FormDescription = React17.forwardRef(({ className, ...props }, ref) => {
1507
+ const { formDescriptionId } = useFormField();
1508
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1509
+ "p",
1510
+ {
1511
+ className: cn("text-muted-foreground text-[0.8rem]", className),
1512
+ id: formDescriptionId,
1513
+ ref,
1514
+ ...props
1515
+ }
1516
+ );
1517
+ });
1518
+ FormDescription.displayName = "FormDescription";
1519
+ var FormMessage = React17.forwardRef(({ className, children, ...props }, ref) => {
1520
+ const { error, formMessageId } = useFormField();
1521
+ const body = error ? String(_nullishCoalesce(_optionalChain([error, 'optionalAccess', _11 => _11.message]), () => ( ""))) : children;
1522
+ if (!body) {
1523
+ return null;
1524
+ }
1525
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1526
+ "p",
1527
+ {
1528
+ className: cn("text-destructive text-[0.8rem] font-medium", className),
1529
+ id: formMessageId,
1530
+ ref,
1531
+ ...props,
1532
+ children: body
1533
+ }
1534
+ );
1535
+ });
1536
+ FormMessage.displayName = "FormMessage";
1537
+
1538
+ // src/components/ui/hover-card/index.tsx
1539
+
1540
+ var _reacthovercard = require('@radix-ui/react-hover-card'); var HoverCardPrimitive = _interopRequireWildcard(_reacthovercard);
1541
+
1542
+ var HoverCard = HoverCardPrimitive.Root;
1543
+ var HoverCardTrigger = HoverCardPrimitive.Trigger;
1544
+ var HoverCardContent = React18.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1545
+ HoverCardPrimitive.Content,
1546
+ {
1547
+ className: cn(
1548
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-64 origin-[--radix-hover-card-content-transform-origin] rounded-md border p-4 shadow-md outline-none",
1549
+ className
1550
+ ),
1551
+ align,
1552
+ ref,
1553
+ sideOffset,
1554
+ ...props
1555
+ }
1556
+ ));
1557
+ HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
1558
+
1559
+ // src/components/ui/input/index.tsx
1560
+
1561
+
1562
+ var Input = React19.forwardRef(
1563
+ ({ className, type, ...props }, ref) => {
1564
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1565
+ "input",
1566
+ {
1567
+ className: cn(
1568
+ "border-input file:text-foreground placeholder:text-muted-foreground focus-visible:ring-ring flex h-9 w-full rounded-md border bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:ring-1 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
1569
+ className
1570
+ ),
1571
+ ref,
1572
+ type,
1573
+ ...props
1574
+ }
1575
+ );
1576
+ }
1577
+ );
1578
+ Input.displayName = "Input";
1579
+
1580
+ // src/components/ui/menubar/index.tsx
1581
+
1582
+
1583
+ var _reactmenubar = require('@radix-ui/react-menubar'); var MenubarPrimitive = _interopRequireWildcard(_reactmenubar);
1584
+
1585
+ function MenubarMenu({
1586
+ ...props
1587
+ }) {
1588
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.Menu, { ...props });
1589
+ }
1590
+ function MenubarGroup({
1591
+ ...props
1592
+ }) {
1593
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.Group, { ...props });
1594
+ }
1595
+ function MenubarPortal({
1596
+ ...props
1597
+ }) {
1598
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.Portal, { ...props });
1599
+ }
1600
+ function MenubarRadioGroup({
1601
+ ...props
1602
+ }) {
1603
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.RadioGroup, { ...props });
1604
+ }
1605
+ function MenubarSub({
1606
+ ...props
1607
+ }) {
1608
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.Sub, { "data-slot": "menubar-sub", ...props });
1609
+ }
1610
+ var Menubar = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1611
+ MenubarPrimitive.Root,
1612
+ {
1613
+ className: cn(
1614
+ "bg-background flex h-9 items-center space-x-1 rounded-md border p-1 shadow-sm",
1615
+ className
1616
+ ),
1617
+ ref,
1618
+ ...props
1619
+ }
1620
+ ));
1621
+ Menubar.displayName = MenubarPrimitive.Root.displayName;
1622
+ var MenubarTrigger = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1623
+ MenubarPrimitive.Trigger,
1624
+ {
1625
+ className: cn(
1626
+ "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-3 py-1 text-sm font-medium outline-none select-none",
1627
+ className
1628
+ ),
1629
+ ref,
1630
+ ...props
1631
+ }
1632
+ ));
1633
+ MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
1634
+ var MenubarSubTrigger = React20.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1635
+ MenubarPrimitive.SubTrigger,
1636
+ {
1637
+ className: cn(
1638
+ "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-none select-none",
1639
+ inset && "pl-8",
1640
+ className
1641
+ ),
1642
+ ref,
1643
+ ...props,
1644
+ children: [
1645
+ children,
1646
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronRight, { className: "ml-auto h-4 w-4" })
1647
+ ]
1648
+ }
1649
+ ));
1650
+ MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
1651
+ var MenubarSubContent = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1652
+ MenubarPrimitive.SubContent,
1653
+ {
1654
+ className: cn(
1655
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] origin-[--radix-menubar-content-transform-origin] overflow-hidden rounded-md border p-1 shadow-lg",
1656
+ className
1657
+ ),
1658
+ ref,
1659
+ ...props
1660
+ }
1661
+ ));
1662
+ MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
1663
+ var MenubarContent = React20.forwardRef(
1664
+ ({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1665
+ MenubarPrimitive.Content,
1666
+ {
1667
+ className: cn(
1668
+ "bg-popover text-popover-foreground data-[state=open]:animate-in 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[12rem] origin-[--radix-menubar-content-transform-origin] overflow-hidden rounded-md border p-1 shadow-md",
1669
+ className
1670
+ ),
1671
+ align,
1672
+ alignOffset,
1673
+ ref,
1674
+ sideOffset,
1675
+ ...props
1676
+ }
1677
+ ) })
1678
+ );
1679
+ MenubarContent.displayName = MenubarPrimitive.Content.displayName;
1680
+ var MenubarItem = React20.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1681
+ MenubarPrimitive.Item,
1682
+ {
1683
+ className: cn(
1684
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1685
+ inset && "pl-8",
1686
+ className
1687
+ ),
1688
+ ref,
1689
+ ...props
1690
+ }
1691
+ ));
1692
+ MenubarItem.displayName = MenubarPrimitive.Item.displayName;
1693
+ var MenubarCheckboxItem = React20.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1694
+ MenubarPrimitive.CheckboxItem,
1695
+ {
1696
+ className: cn(
1697
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1698
+ className
1699
+ ),
1700
+ checked,
1701
+ ref,
1702
+ ...props,
1703
+ children: [
1704
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4" }) }) }),
1705
+ children
1706
+ ]
1707
+ }
1708
+ ));
1709
+ MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
1710
+ var MenubarRadioItem = React20.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1711
+ MenubarPrimitive.RadioItem,
1712
+ {
1713
+ className: cn(
1714
+ "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
1715
+ className
1716
+ ),
1717
+ ref,
1718
+ ...props,
1719
+ children: [
1720
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Circle, { className: "h-4 w-4 fill-current" }) }) }),
1721
+ children
1722
+ ]
1723
+ }
1724
+ ));
1725
+ MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
1726
+ var MenubarLabel = React20.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1727
+ MenubarPrimitive.Label,
1728
+ {
1729
+ className: cn(
1730
+ "px-2 py-1.5 text-sm font-semibold",
1731
+ inset && "pl-8",
1732
+ className
1733
+ ),
1734
+ ref,
1735
+ ...props
1736
+ }
1737
+ ));
1738
+ MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
1739
+ var MenubarSeparator = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1740
+ MenubarPrimitive.Separator,
1741
+ {
1742
+ className: cn("bg-muted -mx-1 my-1 h-px", className),
1743
+ ref,
1744
+ ...props
1745
+ }
1746
+ ));
1747
+ MenubarSeparator.displayName = MenubarPrimitive.Separator.displayName;
1748
+ var MenubarShortcut = ({
1749
+ className,
1750
+ ...props
1751
+ }) => {
1752
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1753
+ "span",
1754
+ {
1755
+ className: cn(
1756
+ "text-muted-foreground ml-auto text-xs tracking-widest",
1757
+ className
1758
+ ),
1759
+ ...props
1760
+ }
1761
+ );
1762
+ };
1763
+ MenubarShortcut.displayname = "MenubarShortcut";
1764
+
1765
+ // src/components/ui/navigation-menu/index.tsx
1766
+
1767
+
1768
+
1769
+ var _reactnavigationmenu = require('@radix-ui/react-navigation-menu'); var NavigationMenuPrimitive = _interopRequireWildcard(_reactnavigationmenu);
1770
+
1771
+ var NavigationMenu = React21.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1772
+ NavigationMenuPrimitive.Root,
1773
+ {
1774
+ className: cn(
1775
+ "relative z-10 flex max-w-max flex-1 items-center justify-center",
1776
+ className
1777
+ ),
1778
+ ref,
1779
+ ...props,
1780
+ children: [
1781
+ children,
1782
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, NavigationMenuViewport, {})
1783
+ ]
1784
+ }
1785
+ ));
1786
+ NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
1787
+ var NavigationMenuList = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1788
+ NavigationMenuPrimitive.List,
1789
+ {
1790
+ className: cn(
1791
+ "group flex flex-1 list-none items-center justify-center space-x-1",
1792
+ className
1793
+ ),
1794
+ ref,
1795
+ ...props
1796
+ }
1797
+ ));
1798
+ NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName;
1799
+ var NavigationMenuItem = NavigationMenuPrimitive.Item;
1800
+ var navigationMenuTriggerStyle = _classvarianceauthority.cva.call(void 0,
1801
+ "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
1802
+ );
1803
+ var NavigationMenuTrigger = React21.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1804
+ NavigationMenuPrimitive.Trigger,
1805
+ {
1806
+ className: cn(navigationMenuTriggerStyle(), "group", className),
1807
+ ref,
1808
+ ...props,
1809
+ children: [
1810
+ children,
1811
+ " ",
1812
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1813
+ _lucidereact.ChevronDown,
1814
+ {
1815
+ "aria-hidden": "true",
1816
+ className: "relative top-px ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180"
1817
+ }
1818
+ )
1819
+ ]
1820
+ }
1821
+ ));
1822
+ NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
1823
+ var NavigationMenuContent = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1824
+ NavigationMenuPrimitive.Content,
1825
+ {
1826
+ className: cn(
1827
+ "data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 top-0 left-0 w-full md:absolute md:w-auto",
1828
+ className
1829
+ ),
1830
+ ref,
1831
+ ...props
1832
+ }
1833
+ ));
1834
+ NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
1835
+ var NavigationMenuLink = NavigationMenuPrimitive.Link;
1836
+ var NavigationMenuViewport = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: cn("absolute top-full left-0 flex justify-center"), children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1837
+ NavigationMenuPrimitive.Viewport,
1838
+ {
1839
+ className: cn(
1840
+ "origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-(--radix-navigation-menu-viewport-height) w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]",
1841
+ className
1842
+ ),
1843
+ ref,
1844
+ ...props
1845
+ }
1846
+ ) }));
1847
+ NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
1848
+ var NavigationMenuIndicator = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1849
+ NavigationMenuPrimitive.Indicator,
1850
+ {
1851
+ className: cn(
1852
+ "data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in top-full z-1 flex h-1.5 items-end justify-center overflow-hidden",
1853
+ className
1854
+ ),
1855
+ ref,
1856
+ ...props,
1857
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-border relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm shadow-md" })
1858
+ }
1859
+ ));
1860
+ NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
1861
+
1862
+ // src/components/ui/pagination/index.tsx
1863
+
1864
+
1865
+
1866
+ var Pagination = ({ className, ...props }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1867
+ "nav",
1868
+ {
1869
+ "aria-label": "pagination",
1870
+ className: cn("mx-auto flex w-full justify-center", className),
1871
+ role: "navigation",
1872
+ ...props
1873
+ }
1874
+ );
1875
+ Pagination.displayName = "Pagination";
1876
+ var PaginationContent = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1877
+ "ul",
1878
+ {
1879
+ className: cn("flex flex-row items-center gap-1", className),
1880
+ ref,
1881
+ ...props
1882
+ }
1883
+ ));
1884
+ PaginationContent.displayName = "PaginationContent";
1885
+ var PaginationItem = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "li", { className: cn("", className), ref, ...props }));
1886
+ PaginationItem.displayName = "PaginationItem";
1887
+ var PaginationLink = ({
1888
+ className,
1889
+ isActive,
1890
+ size = "icon",
1891
+ ...props
1892
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1893
+ "a",
1894
+ {
1895
+ className: cn(
1896
+ buttonVariants({
1897
+ variant: isActive ? "outline" : "ghost",
1898
+ size
1899
+ }),
1900
+ className
1901
+ ),
1902
+ "aria-current": isActive ? "page" : void 0,
1903
+ ...props
1904
+ }
1905
+ );
1906
+ PaginationLink.displayName = "PaginationLink";
1907
+ var PaginationPrevious = ({
1908
+ className,
1909
+ ...props
1910
+ }) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1911
+ PaginationLink,
1912
+ {
1913
+ "aria-label": "Go to previous page",
1914
+ className: cn("gap-1 pl-2.5", className),
1915
+ size: "default",
1916
+ ...props,
1917
+ children: [
1918
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronLeft, { className: "h-4 w-4" }),
1919
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: "Previous" })
1920
+ ]
1921
+ }
1922
+ );
1923
+ PaginationPrevious.displayName = "PaginationPrevious";
1924
+ var PaginationNext = ({
1925
+ className,
1926
+ ...props
1927
+ }) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1928
+ PaginationLink,
1929
+ {
1930
+ "aria-label": "Go to next page",
1931
+ className: cn("gap-1 pr-2.5", className),
1932
+ size: "default",
1933
+ ...props,
1934
+ children: [
1935
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: "Next" }),
1936
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronRight, { className: "h-4 w-4" })
1937
+ ]
1938
+ }
1939
+ );
1940
+ PaginationNext.displayName = "PaginationNext";
1941
+ var PaginationEllipsis = ({
1942
+ className,
1943
+ ...props
1944
+ }) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
1945
+ "span",
1946
+ {
1947
+ className: cn("flex h-9 w-9 items-center justify-center", className),
1948
+ "aria-hidden": true,
1949
+ ...props,
1950
+ children: [
1951
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.MoreHorizontal, { className: "h-4 w-4" }),
1952
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "More pages" })
1953
+ ]
1954
+ }
1955
+ );
1956
+ PaginationEllipsis.displayName = "PaginationEllipsis";
1957
+
1958
+ // src/components/ui/popover/index.tsx
1959
+
1960
+ var _reactpopover = require('@radix-ui/react-popover'); var PopoverPrimitive = _interopRequireWildcard(_reactpopover);
1961
+
1962
+ var Popover = PopoverPrimitive.Root;
1963
+ var PopoverTrigger = PopoverPrimitive.Trigger;
1964
+ var PopoverAnchor = PopoverPrimitive.Anchor;
1965
+ var PopoverContent = React23.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, PopoverPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1966
+ PopoverPrimitive.Content,
1967
+ {
1968
+ className: cn(
1969
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-72 origin-[--radix-popover-content-transform-origin] rounded-md border p-4 shadow-md outline-none",
1970
+ className
1971
+ ),
1972
+ align,
1973
+ ref,
1974
+ sideOffset,
1975
+ ...props
1976
+ }
1977
+ ) }));
1978
+ PopoverContent.displayName = PopoverPrimitive.Content.displayName;
1979
+
1980
+ // src/components/ui/progress/index.tsx
1981
+
1982
+ var _reactprogress = require('@radix-ui/react-progress'); var ProgressPrimitive = _interopRequireWildcard(_reactprogress);
1983
+
1984
+ var Progress = React24.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1985
+ ProgressPrimitive.Root,
1986
+ {
1987
+ className: cn(
1988
+ "bg-primary/20 relative h-2 w-full overflow-hidden rounded-full",
1989
+ className
1990
+ ),
1991
+ ref,
1992
+ ...props,
1993
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
1994
+ ProgressPrimitive.Indicator,
1995
+ {
1996
+ className: "bg-primary h-full w-full flex-1 transition-all",
1997
+ style: { transform: `translateX(-${100 - (value || 0)}%)` }
1998
+ }
1999
+ )
2000
+ }
2001
+ ));
2002
+ Progress.displayName = ProgressPrimitive.Root.displayName;
2003
+
2004
+ // src/components/ui/radio-group/index.tsx
2005
+
2006
+
2007
+ var _reactradiogroup = require('@radix-ui/react-radio-group'); var RadioGroupPrimitive = _interopRequireWildcard(_reactradiogroup);
2008
+
2009
+ var RadioGroup4 = React25.forwardRef(({ className, ...props }, ref) => {
2010
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2011
+ RadioGroupPrimitive.Root,
2012
+ {
2013
+ className: cn("grid gap-2", className),
2014
+ ...props,
2015
+ ref
2016
+ }
2017
+ );
2018
+ });
2019
+ RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
2020
+ var RadioGroupItem = React25.forwardRef(({ className, ...props }, ref) => {
2021
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2022
+ RadioGroupPrimitive.Item,
2023
+ {
2024
+ className: cn(
2025
+ "border-primary text-primary focus-visible:ring-ring aspect-square h-4 w-4 rounded-full border shadow focus:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50",
2026
+ className
2027
+ ),
2028
+ ref,
2029
+ ...props,
2030
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Circle, { className: "fill-primary h-3.5 w-3.5" }) })
2031
+ }
2032
+ );
2033
+ });
2034
+ RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
2035
+
2036
+ // src/components/ui/resizable/index.tsx
2037
+
2038
+ var _reactresizablepanels = require('react-resizable-panels'); var ResizablePrimitive = _interopRequireWildcard(_reactresizablepanels);
2039
+
2040
+ var ResizablePanelGroup = ({
2041
+ className,
2042
+ ...props
2043
+ // @ts-expect-error
2044
+ }) => (
2045
+ // @ts-expect-error
2046
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2047
+ ResizablePrimitive.PanelGroup,
2048
+ {
2049
+ className: cn(
2050
+ "flex h-full w-full data-[panel-group-direction=vertical]:flex-col",
2051
+ className
2052
+ ),
2053
+ ...props
2054
+ }
2055
+ )
2056
+ );
2057
+ var ResizablePanel = ResizablePrimitive.Panel;
2058
+ var ResizableHandle = ({
2059
+ withHandle,
2060
+ className,
2061
+ ...props
2062
+ // @ts-expect-error
2063
+ }) => (
2064
+ // @ts-expect-error
2065
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2066
+ ResizablePrimitive.PanelResizeHandle,
2067
+ {
2068
+ className: cn(
2069
+ "bg-border focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-none data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90",
2070
+ className
2071
+ ),
2072
+ ...props,
2073
+ children: withHandle && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-border z-10 flex h-4 w-3 items-center justify-center rounded-sm border", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.GripVertical, { className: "h-2.5 w-2.5" }) })
2074
+ }
2075
+ )
2076
+ );
2077
+
2078
+ // src/components/ui/scroll-area/index.tsx
2079
+
2080
+ var _reactscrollarea = require('@radix-ui/react-scroll-area'); var ScrollAreaPrimitive = _interopRequireWildcard(_reactscrollarea);
2081
+
2082
+ var ScrollArea = React26.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2083
+ ScrollAreaPrimitive.Root,
2084
+ {
2085
+ className: cn("relative overflow-hidden", className),
2086
+ ref,
2087
+ ...props,
2088
+ children: [
2089
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollAreaPrimitive.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
2090
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollBar, {}),
2091
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollAreaPrimitive.Corner, {})
2092
+ ]
2093
+ }
2094
+ ));
2095
+ ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
2096
+ var ScrollBar = React26.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2097
+ ScrollAreaPrimitive.ScrollAreaScrollbar,
2098
+ {
2099
+ className: cn(
2100
+ "flex touch-none transition-colors select-none",
2101
+ orientation === "vertical" && "h-full w-2.5 border-l border-l-transparent p-px",
2102
+ orientation === "horizontal" && "h-2.5 flex-col border-t border-t-transparent p-px",
2103
+ className
2104
+ ),
2105
+ orientation,
2106
+ ref,
2107
+ ...props,
2108
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollAreaPrimitive.ScrollAreaThumb, { className: "bg-border relative flex-1 rounded-full" })
2109
+ }
2110
+ ));
2111
+ ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
2112
+
2113
+ // src/components/ui/select/index.tsx
2114
+
2115
+
2116
+ var _reactselect = require('@radix-ui/react-select'); var SelectPrimitive = _interopRequireWildcard(_reactselect);
2117
+
2118
+ var Select = SelectPrimitive.Root;
2119
+ var SelectGroup = SelectPrimitive.Group;
2120
+ var SelectValue = SelectPrimitive.Value;
2121
+ var SelectTrigger = React27.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2122
+ SelectPrimitive.Trigger,
2123
+ {
2124
+ className: cn(
2125
+ "border-input ring-offset-background data-placeholder:text-muted-foreground focus:ring-ring flex h-9 w-full items-center justify-between rounded-md border bg-transparent px-3 py-2 text-sm whitespace-nowrap shadow-sm focus:ring-1 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
2126
+ className
2127
+ ),
2128
+ ref,
2129
+ ...props,
2130
+ children: [
2131
+ children,
2132
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronDown, { className: "h-4 w-4 opacity-50" }) })
2133
+ ]
2134
+ }
2135
+ ));
2136
+ SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
2137
+ var SelectScrollUpButton = React27.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2138
+ SelectPrimitive.ScrollUpButton,
2139
+ {
2140
+ className: cn(
2141
+ "flex cursor-default items-center justify-center py-1",
2142
+ className
2143
+ ),
2144
+ ref,
2145
+ ...props,
2146
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronUp, { className: "h-4 w-4" })
2147
+ }
2148
+ ));
2149
+ SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
2150
+ var SelectScrollDownButton = React27.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2151
+ SelectPrimitive.ScrollDownButton,
2152
+ {
2153
+ className: cn(
2154
+ "flex cursor-default items-center justify-center py-1",
2155
+ className
2156
+ ),
2157
+ ref,
2158
+ ...props,
2159
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ChevronDown, { className: "h-4 w-4" })
2160
+ }
2161
+ ));
2162
+ SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
2163
+ var SelectContent = React27.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2164
+ SelectPrimitive.Content,
2165
+ {
2166
+ className: cn(
2167
+ "bg-popover text-popover-foreground 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-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] origin-[--radix-select-content-transform-origin] overflow-x-hidden overflow-y-auto rounded-md border shadow-md",
2168
+ position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
2169
+ className
2170
+ ),
2171
+ position,
2172
+ ref,
2173
+ ...props,
2174
+ children: [
2175
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectScrollUpButton, {}),
2176
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2177
+ SelectPrimitive.Viewport,
2178
+ {
2179
+ className: cn(
2180
+ "p-1",
2181
+ position === "popper" && "h-(--radix-select-trigger-height) w-full min-w-(--radix-select-trigger-width)"
2182
+ ),
2183
+ children
2184
+ }
2185
+ ),
2186
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectScrollDownButton, {})
2187
+ ]
2188
+ }
2189
+ ) }));
2190
+ SelectContent.displayName = SelectPrimitive.Content.displayName;
2191
+ var SelectLabel = React27.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2192
+ SelectPrimitive.Label,
2193
+ {
2194
+ className: cn("px-2 py-1.5 text-sm font-semibold", className),
2195
+ ref,
2196
+ ...props
2197
+ }
2198
+ ));
2199
+ SelectLabel.displayName = SelectPrimitive.Label.displayName;
2200
+ var SelectItem = React27.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2201
+ SelectPrimitive.Item,
2202
+ {
2203
+ className: cn(
2204
+ "focus:bg-accent focus:text-accent-foreground relative flex w-full cursor-default items-center rounded-sm py-1.5 pr-8 pl-2 text-sm outline-none select-none data-disabled:pointer-events-none data-disabled:opacity-50",
2205
+ className
2206
+ ),
2207
+ ref,
2208
+ ...props,
2209
+ children: [
2210
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4" }) }) }),
2211
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SelectPrimitive.ItemText, { children })
2212
+ ]
2213
+ }
2214
+ ));
2215
+ SelectItem.displayName = SelectPrimitive.Item.displayName;
2216
+ var SelectSeparator = React27.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2217
+ SelectPrimitive.Separator,
2218
+ {
2219
+ className: cn("bg-muted -mx-1 my-1 h-px", className),
2220
+ ref,
2221
+ ...props
2222
+ }
2223
+ ));
2224
+ SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
2225
+
2226
+ // src/components/ui/separator/index.tsx
2227
+
2228
+ var _reactseparator = require('@radix-ui/react-separator'); var SeparatorPrimitive = _interopRequireWildcard(_reactseparator);
2229
+
2230
+ var Separator5 = React28.forwardRef(
2231
+ ({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2232
+ SeparatorPrimitive.Root,
2233
+ {
2234
+ className: cn(
2235
+ "bg-border shrink-0",
2236
+ orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
2237
+ className
2238
+ ),
2239
+ decorative,
2240
+ orientation,
2241
+ ref,
2242
+ ...props
2243
+ }
2244
+ )
2245
+ );
2246
+ Separator5.displayName = SeparatorPrimitive.Root.displayName;
2247
+
2248
+ // src/components/ui/sheet/index.tsx
2249
+
2250
+
2251
+
2252
+
2253
+
2254
+ var Sheet = SheetPrimitive.Root;
2255
+ var SheetTrigger = SheetPrimitive.Trigger;
2256
+ var SheetClose = SheetPrimitive.Close;
2257
+ var SheetPortal = SheetPrimitive.Portal;
2258
+ var SheetOverlay = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2259
+ SheetPrimitive.Overlay,
2260
+ {
2261
+ className: cn(
2262
+ "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80",
2263
+ className
2264
+ ),
2265
+ ...props,
2266
+ ref
2267
+ }
2268
+ ));
2269
+ SheetOverlay.displayName = SheetPrimitive.Overlay.displayName;
2270
+ var sheetVariants = _classvarianceauthority.cva.call(void 0,
2271
+ "fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",
2272
+ {
2273
+ variants: {
2274
+ side: {
2275
+ top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
2276
+ bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
2277
+ left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
2278
+ right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
2279
+ }
2280
+ },
2281
+ defaultVariants: {
2282
+ side: "right"
2283
+ }
2284
+ }
2285
+ );
2286
+ var SheetContent = React29.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, SheetPortal, { children: [
2287
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SheetOverlay, {}),
2288
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2289
+ SheetPrimitive.Content,
2290
+ {
2291
+ className: cn(sheetVariants({ side }), className),
2292
+ ref,
2293
+ ...props,
2294
+ children: [
2295
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, SheetPrimitive.Close, { className: "ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-none disabled:pointer-events-none", children: [
2296
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.X, { className: "h-4 w-4" }),
2297
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", children: "Close" })
2298
+ ] }),
2299
+ children
2300
+ ]
2301
+ }
2302
+ )
2303
+ ] }));
2304
+ SheetContent.displayName = SheetPrimitive.Content.displayName;
2305
+ var SheetHeader = ({
2306
+ className,
2307
+ ...props
2308
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2309
+ "div",
2310
+ {
2311
+ className: cn(
2312
+ "flex flex-col space-y-2 text-center sm:text-left",
2313
+ className
2314
+ ),
2315
+ ...props
2316
+ }
2317
+ );
2318
+ SheetHeader.displayName = "SheetHeader";
2319
+ var SheetFooter = ({
2320
+ className,
2321
+ ...props
2322
+ }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2323
+ "div",
2324
+ {
2325
+ className: cn(
2326
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
2327
+ className
2328
+ ),
2329
+ ...props
2330
+ }
2331
+ );
2332
+ SheetFooter.displayName = "SheetFooter";
2333
+ var SheetTitle = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2334
+ SheetPrimitive.Title,
2335
+ {
2336
+ className: cn("text-foreground text-lg font-semibold", className),
2337
+ ref,
2338
+ ...props
2339
+ }
2340
+ ));
2341
+ SheetTitle.displayName = SheetPrimitive.Title.displayName;
2342
+ var SheetDescription = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2343
+ SheetPrimitive.Description,
2344
+ {
2345
+ className: cn("text-muted-foreground text-sm", className),
2346
+ ref,
2347
+ ...props
2348
+ }
2349
+ ));
2350
+ SheetDescription.displayName = SheetPrimitive.Description.displayName;
2351
+
2352
+ // src/components/ui/skeleton/index.tsx
2353
+
2354
+ function Skeleton({
2355
+ className,
2356
+ ...props
2357
+ }) {
2358
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2359
+ "div",
2360
+ {
2361
+ className: cn("bg-primary/10 animate-pulse rounded-md", className),
2362
+ ...props
2363
+ }
2364
+ );
2365
+ }
2366
+
2367
+ // src/components/ui/slider/index.tsx
2368
+
2369
+ var _reactslider = require('@radix-ui/react-slider'); var SliderPrimitive = _interopRequireWildcard(_reactslider);
2370
+
2371
+ var Slider = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
2372
+ SliderPrimitive.Root,
2373
+ {
2374
+ className: cn(
2375
+ "relative flex w-full touch-none items-center select-none",
2376
+ className
2377
+ ),
2378
+ ref,
2379
+ ...props,
2380
+ children: [
2381
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SliderPrimitive.Track, { className: "bg-primary/20 relative h-1.5 w-full grow overflow-hidden rounded-full", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SliderPrimitive.Range, { className: "bg-primary absolute h-full" }) }),
2382
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SliderPrimitive.Thumb, { className: "border-primary/50 bg-background focus-visible:ring-ring block h-4 w-4 rounded-full border shadow transition-colors focus-visible:ring-1 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50" })
2383
+ ]
2384
+ }
2385
+ ));
2386
+ Slider.displayName = SliderPrimitive.Root.displayName;
2387
+
2388
+ // src/components/ui/spinner/index.tsx
2389
+
2390
+
2391
+ function Spinner({ className, ...props }) {
2392
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2393
+ _lucidereact.Loader2Icon,
2394
+ {
2395
+ "aria-label": "Loading",
2396
+ className: cn("size-4 animate-spin", className),
2397
+ role: "status",
2398
+ ...props
2399
+ }
2400
+ );
2401
+ }
2402
+
2403
+ // src/components/ui/switch/index.tsx
2404
+
2405
+ var _reactswitch = require('@radix-ui/react-switch'); var SwitchPrimitives = _interopRequireWildcard(_reactswitch);
2406
+
2407
+ var Switch = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2408
+ SwitchPrimitives.Root,
2409
+ {
2410
+ className: cn(
2411
+ "peer focus-visible:ring-ring focus-visible:ring-offset-background data-[state=checked]:bg-primary data-[state=unchecked]:bg-input inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50",
2412
+ className
2413
+ ),
2414
+ ...props,
2415
+ ref,
2416
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2417
+ SwitchPrimitives.Thumb,
2418
+ {
2419
+ className: cn(
2420
+ "bg-background pointer-events-none block h-4 w-4 rounded-full shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0"
2421
+ )
2422
+ }
2423
+ )
2424
+ }
2425
+ ));
2426
+ Switch.displayName = SwitchPrimitives.Root.displayName;
2427
+
2428
+ // src/components/ui/tabs/index.tsx
2429
+
2430
+ var _reacttabs = require('@radix-ui/react-tabs'); var TabsPrimitive = _interopRequireWildcard(_reacttabs);
2431
+
2432
+ var Tabs = TabsPrimitive.Root;
2433
+ var TabsList = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2434
+ TabsPrimitive.List,
2435
+ {
2436
+ className: cn(
2437
+ "bg-muted text-muted-foreground inline-flex h-9 items-center justify-center rounded-lg p-1",
2438
+ className
2439
+ ),
2440
+ ref,
2441
+ ...props
2442
+ }
2443
+ ));
2444
+ TabsList.displayName = TabsPrimitive.List.displayName;
2445
+ var TabsTrigger = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2446
+ TabsPrimitive.Trigger,
2447
+ {
2448
+ className: cn(
2449
+ "ring-offset-background focus-visible:ring-ring data-[state=active]:bg-background data-[state=active]:text-foreground inline-flex items-center justify-center rounded-md px-3 py-1 text-sm font-medium whitespace-nowrap transition-all focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=active]:shadow",
2450
+ className
2451
+ ),
2452
+ ref,
2453
+ ...props
2454
+ }
2455
+ ));
2456
+ TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
2457
+ var TabsContent = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2458
+ TabsPrimitive.Content,
2459
+ {
2460
+ className: cn(
2461
+ "ring-offset-background focus-visible:ring-ring mt-2 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none",
2462
+ className
2463
+ ),
2464
+ ref,
2465
+ ...props
2466
+ }
2467
+ ));
2468
+ TabsContent.displayName = TabsPrimitive.Content.displayName;
2469
+
2470
+ // src/components/ui/textarea/index.tsx
2471
+
2472
+
2473
+ var Textarea = React33.forwardRef(({ className, ...props }, ref) => {
2474
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2475
+ "textarea",
2476
+ {
2477
+ className: cn(
2478
+ "border-input placeholder:text-muted-foreground focus-visible:ring-ring flex min-h-[60px] w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-sm focus-visible:ring-1 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
2479
+ className
2480
+ ),
2481
+ ref,
2482
+ ...props
2483
+ }
2484
+ );
2485
+ });
2486
+ Textarea.displayName = "Textarea";
2487
+
2488
+ // src/components/ui/toaster/index.tsx
2489
+ var _sonner = require('sonner');
2490
+
2491
+ var Toaster = () => {
2492
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _sonner.Toaster, {});
2493
+ };
2494
+
2495
+ // src/components/ui/toggle/index.tsx
2496
+
2497
+
2498
+ var _reacttoggle = require('@radix-ui/react-toggle'); var TogglePrimitive = _interopRequireWildcard(_reacttoggle);
2499
+
2500
+ var toggleVariants = _classvarianceauthority.cva.call(void 0,
2501
+ "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
2502
+ {
2503
+ variants: {
2504
+ variant: {
2505
+ default: "bg-transparent",
2506
+ outline: "border border-input bg-transparent shadow-sm hover:bg-accent hover:text-accent-foreground"
2507
+ },
2508
+ size: {
2509
+ default: "h-9 px-2 min-w-9",
2510
+ sm: "h-8 px-1.5 min-w-8",
2511
+ lg: "h-10 px-2.5 min-w-10"
2512
+ }
2513
+ },
2514
+ defaultVariants: {
2515
+ variant: "default",
2516
+ size: "default"
2517
+ }
2518
+ }
2519
+ );
2520
+ var Toggle = React34.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2521
+ TogglePrimitive.Root,
2522
+ {
2523
+ className: cn(toggleVariants({ variant, size, className })),
2524
+ ref,
2525
+ ...props
2526
+ }
2527
+ ));
2528
+ Toggle.displayName = TogglePrimitive.Root.displayName;
2529
+
2530
+ // src/components/ui/tooltip/index.tsx
2531
+
2532
+ var _reacttooltip = require('@radix-ui/react-tooltip'); var TooltipPrimitive = _interopRequireWildcard(_reacttooltip);
2533
+
2534
+ var TooltipProvider = TooltipPrimitive.Provider;
2535
+ var Tooltip = TooltipPrimitive.Root;
2536
+ var TooltipTrigger = TooltipPrimitive.Trigger;
2537
+ var TooltipContent = React35.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipPrimitive.Portal, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
2538
+ TooltipPrimitive.Content,
2539
+ {
2540
+ className: cn(
2541
+ "bg-primary text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 origin-[--radix-tooltip-content-transform-origin] overflow-hidden rounded-md px-3 py-1.5 text-xs",
2542
+ className
2543
+ ),
2544
+ ref,
2545
+ sideOffset,
2546
+ ...props
2547
+ }
2548
+ ) }));
2549
+ TooltipContent.displayName = TooltipPrimitive.Content.displayName;
2550
+
2551
+ // src/hooks/use-auto-focus.ts
2552
+
2553
+ var _usehooksts = require('usehooks-ts');
2554
+ function useAutoFocus({ ref, enabled = true }) {
2555
+ const isMounted = _usehooksts.useIsMounted.call(void 0, );
2556
+ _react.useLayoutEffect.call(void 0, () => {
2557
+ if (!enabled || isMounted()) return;
2558
+ _optionalChain([ref, 'access', _12 => _12.current, 'optionalAccess', _13 => _13.focus, 'call', _14 => _14()]);
2559
+ }, [ref, enabled, isMounted]);
2560
+ }
2561
+
2562
+ // src/hooks/use-mobile.ts
2563
+
2564
+ var MOBILE_BREAKPOINT = 768;
2565
+ function useIsMobile() {
2566
+ const [isMobile, setIsMobile] = React36.useState(void 0);
2567
+ React36.useEffect(() => {
2568
+ const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
2569
+ const onChange = () => {
2570
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
2571
+ };
2572
+ mql.addEventListener("change", onChange);
2573
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
2574
+ return () => mql.removeEventListener("change", onChange);
2575
+ }, []);
2576
+ return !!isMobile;
2577
+ }
2578
+
2579
+ // src/hooks/use-shortcuts.ts
2580
+ function isModifierMatch(event, modifiers = {}) {
2581
+ if (Array.isArray(modifiers))
2582
+ return modifiers.some((modifier) => isModifierMatch(event, modifier));
2583
+ return event.metaKey === !!modifiers.meta && event.shiftKey === !!modifiers.shift && event.altKey === !!modifiers.alt && event.ctrlKey === !!modifiers.ctrl;
2584
+ }
2585
+ function isEnabled(shortcut) {
2586
+ if (shortcut.enabled === void 0) return true;
2587
+ return typeof shortcut.enabled === "function" ? shortcut.enabled() : shortcut.enabled;
2588
+ }
2589
+ function useShortcuts(definitions) {
2590
+ function executeShortcut(event) {
2591
+ const matchedShortcut = definitions.find(
2592
+ (shortcut) => isEnabled(shortcut) && shortcut.keys.includes(event.key) && isModifierMatch(event, shortcut.modifiers)
2593
+ );
2594
+ if (!matchedShortcut) return false;
2595
+ if (matchedShortcut.preventDefault !== false) event.preventDefault();
2596
+ matchedShortcut.handler(event);
2597
+ return true;
2598
+ }
2599
+ return {
2600
+ executeShortcut
2601
+ };
2602
+ }
2603
+
2604
+ // src/hooks/use-uid.ts
2605
+
2606
+ var id = 0;
2607
+ function useUid(prefix) {
2608
+ const [uid] = _react.useState.call(void 0, () => `tui-${prefix}:${++id}`);
2609
+ return uid;
2610
+ }
2611
+
2612
+
2613
+
2614
+
2615
+
2616
+
2617
+
2618
+
2619
+
2620
+
2621
+
2622
+
2623
+
2624
+
2625
+
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+
2632
+
2633
+
2634
+
2635
+
2636
+
2637
+
2638
+
2639
+
2640
+
2641
+
2642
+
2643
+
2644
+
2645
+
2646
+
2647
+
2648
+
2649
+
2650
+
2651
+
2652
+
2653
+
2654
+
2655
+
2656
+
2657
+
2658
+
2659
+
2660
+
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+
2667
+
2668
+
2669
+
2670
+
2671
+
2672
+
2673
+
2674
+
2675
+
2676
+
2677
+
2678
+
2679
+
2680
+
2681
+
2682
+
2683
+
2684
+
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+
2695
+
2696
+
2697
+
2698
+
2699
+
2700
+
2701
+
2702
+
2703
+
2704
+
2705
+
2706
+
2707
+
2708
+
2709
+
2710
+
2711
+
2712
+
2713
+
2714
+
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+
2721
+
2722
+
2723
+
2724
+
2725
+
2726
+
2727
+
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+
2740
+
2741
+
2742
+
2743
+
2744
+
2745
+
2746
+
2747
+
2748
+
2749
+
2750
+
2751
+
2752
+
2753
+
2754
+
2755
+
2756
+
2757
+
2758
+
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+
2765
+
2766
+
2767
+
2768
+
2769
+
2770
+
2771
+
2772
+
2773
+
2774
+
2775
+
2776
+
2777
+
2778
+
2779
+
2780
+
2781
+
2782
+
2783
+
2784
+
2785
+
2786
+
2787
+
2788
+
2789
+
2790
+
2791
+
2792
+
2793
+
2794
+
2795
+
2796
+
2797
+
2798
+
2799
+
2800
+
2801
+
2802
+
2803
+
2804
+
2805
+
2806
+
2807
+
2808
+
2809
+
2810
+
2811
+
2812
+
2813
+
2814
+
2815
+
2816
+
2817
+
2818
+
2819
+ exports.Accordion = Accordion; exports.AccordionContent = AccordionContent; exports.AccordionItem = AccordionItem; exports.AccordionTrigger = AccordionTrigger; exports.Alert = Alert; exports.AlertDescription = AlertDescription; exports.AlertDialog = AlertDialog; exports.AlertDialogAction = AlertDialogAction; exports.AlertDialogCancel = AlertDialogCancel; exports.AlertDialogContent = AlertDialogContent; exports.AlertDialogDescription = AlertDialogDescription; exports.AlertDialogFooter = AlertDialogFooter; exports.AlertDialogHeader = AlertDialogHeader; exports.AlertDialogOverlay = AlertDialogOverlay; exports.AlertDialogPortal = AlertDialogPortal; exports.AlertDialogTitle = AlertDialogTitle; exports.AlertDialogTrigger = AlertDialogTrigger; exports.AlertTitle = AlertTitle; exports.Avatar = Avatar; exports.AvatarFallback = AvatarFallback; exports.AvatarImage = AvatarImage; exports.Badge = Badge; exports.Breadcrumb = Breadcrumb; exports.BreadcrumbEllipsis = BreadcrumbEllipsis; exports.BreadcrumbItem = BreadcrumbItem; exports.BreadcrumbLink = BreadcrumbLink; exports.BreadcrumbList = BreadcrumbList; exports.BreadcrumbPage = BreadcrumbPage; exports.BreadcrumbSeparator = BreadcrumbSeparator; exports.Button = Button; exports.Calendar = Calendar; exports.CalendarDayButton = CalendarDayButton; exports.Card = Card; exports.CardContent = CardContent; exports.CardDescription = CardDescription; exports.CardFooter = CardFooter; exports.CardHeader = CardHeader; exports.CardTitle = CardTitle; exports.Carousel = Carousel; exports.CarouselContent = CarouselContent; exports.CarouselItem = CarouselItem; exports.CarouselNext = CarouselNext; exports.CarouselPrevious = CarouselPrevious; exports.Checkbox = Checkbox; exports.Collapsible = Collapsible; exports.CollapsibleContent = CollapsibleContent2; exports.CollapsibleTrigger = CollapsibleTrigger2; exports.Command = Command; exports.CommandDialog = CommandDialog; exports.CommandEmpty = CommandEmpty; exports.CommandGroup = CommandGroup; exports.CommandInput = CommandInput; exports.CommandItem = CommandItem; exports.CommandList = CommandList; exports.CommandSeparator = CommandSeparator; exports.CommandShortcut = CommandShortcut; exports.ContextMenu = ContextMenu; exports.ContextMenuCheckboxItem = ContextMenuCheckboxItem; exports.ContextMenuContent = ContextMenuContent; exports.ContextMenuGroup = ContextMenuGroup; exports.ContextMenuItem = ContextMenuItem; exports.ContextMenuLabel = ContextMenuLabel; exports.ContextMenuPortal = ContextMenuPortal; exports.ContextMenuRadioGroup = ContextMenuRadioGroup; exports.ContextMenuRadioItem = ContextMenuRadioItem; exports.ContextMenuSeparator = ContextMenuSeparator; exports.ContextMenuShortcut = ContextMenuShortcut; exports.ContextMenuSub = ContextMenuSub; exports.ContextMenuSubContent = ContextMenuSubContent; exports.ContextMenuSubTrigger = ContextMenuSubTrigger; exports.ContextMenuTrigger = ContextMenuTrigger; exports.Dialog = Dialog; exports.DialogClose = DialogClose; exports.DialogContent = DialogContent; exports.DialogDescription = DialogDescription; exports.DialogFooter = DialogFooter; exports.DialogHeader = DialogHeader; exports.DialogOverlay = DialogOverlay; exports.DialogPortal = DialogPortal; exports.DialogTitle = DialogTitle; exports.DialogTrigger = DialogTrigger; exports.Drawer = Drawer; exports.DrawerClose = DrawerClose; exports.DrawerContent = DrawerContent; exports.DrawerDescription = DrawerDescription; exports.DrawerFooter = DrawerFooter; exports.DrawerHeader = DrawerHeader; exports.DrawerOverlay = DrawerOverlay; exports.DrawerPortal = DrawerPortal; exports.DrawerTitle = DrawerTitle; exports.DrawerTrigger = DrawerTrigger; exports.DropdownMenu = DropdownMenu; exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem; exports.DropdownMenuContent = DropdownMenuContent; exports.DropdownMenuGroup = DropdownMenuGroup; exports.DropdownMenuItem = DropdownMenuItem; exports.DropdownMenuLabel = DropdownMenuLabel; exports.DropdownMenuPortal = DropdownMenuPortal; exports.DropdownMenuRadioGroup = DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = DropdownMenuRadioItem; exports.DropdownMenuSeparator = DropdownMenuSeparator; exports.DropdownMenuShortcut = DropdownMenuShortcut; exports.DropdownMenuSub = DropdownMenuSub; exports.DropdownMenuSubContent = DropdownMenuSubContent; exports.DropdownMenuSubTrigger = DropdownMenuSubTrigger; exports.DropdownMenuTrigger = DropdownMenuTrigger; exports.Form = Form; exports.FormControl = FormControl; exports.FormDescription = FormDescription; exports.FormField = FormField; exports.FormItem = FormItem; exports.FormLabel = FormLabel; exports.FormMessage = FormMessage; exports.HoverCard = HoverCard; exports.HoverCardContent = HoverCardContent; exports.HoverCardTrigger = HoverCardTrigger; exports.Input = Input; exports.Label = Label3; exports.Menubar = Menubar; exports.MenubarCheckboxItem = MenubarCheckboxItem; exports.MenubarContent = MenubarContent; exports.MenubarGroup = MenubarGroup; exports.MenubarItem = MenubarItem; exports.MenubarLabel = MenubarLabel; exports.MenubarMenu = MenubarMenu; exports.MenubarPortal = MenubarPortal; exports.MenubarRadioGroup = MenubarRadioGroup; exports.MenubarRadioItem = MenubarRadioItem; exports.MenubarSeparator = MenubarSeparator; exports.MenubarShortcut = MenubarShortcut; exports.MenubarSub = MenubarSub; exports.MenubarSubContent = MenubarSubContent; exports.MenubarSubTrigger = MenubarSubTrigger; exports.MenubarTrigger = MenubarTrigger; exports.NavigationMenu = NavigationMenu; exports.NavigationMenuContent = NavigationMenuContent; exports.NavigationMenuIndicator = NavigationMenuIndicator; exports.NavigationMenuItem = NavigationMenuItem; exports.NavigationMenuLink = NavigationMenuLink; exports.NavigationMenuList = NavigationMenuList; exports.NavigationMenuTrigger = NavigationMenuTrigger; exports.NavigationMenuViewport = NavigationMenuViewport; exports.Pagination = Pagination; exports.PaginationContent = PaginationContent; exports.PaginationEllipsis = PaginationEllipsis; exports.PaginationItem = PaginationItem; exports.PaginationLink = PaginationLink; exports.PaginationNext = PaginationNext; exports.PaginationPrevious = PaginationPrevious; exports.Popover = Popover; exports.PopoverAnchor = PopoverAnchor; exports.PopoverContent = PopoverContent; exports.PopoverTrigger = PopoverTrigger; exports.Progress = Progress; exports.RadioGroup = RadioGroup4; exports.RadioGroupItem = RadioGroupItem; exports.ResizableHandle = ResizableHandle; exports.ResizablePanel = ResizablePanel; exports.ResizablePanelGroup = ResizablePanelGroup; exports.ScrollArea = ScrollArea; exports.ScrollBar = ScrollBar; exports.Select = Select; exports.SelectContent = SelectContent; exports.SelectGroup = SelectGroup; exports.SelectItem = SelectItem; exports.SelectLabel = SelectLabel; exports.SelectScrollDownButton = SelectScrollDownButton; exports.SelectScrollUpButton = SelectScrollUpButton; exports.SelectSeparator = SelectSeparator; exports.SelectTrigger = SelectTrigger; exports.SelectValue = SelectValue; exports.Separator = Separator5; exports.Sheet = Sheet; exports.SheetClose = SheetClose; exports.SheetContent = SheetContent; exports.SheetDescription = SheetDescription; exports.SheetFooter = SheetFooter; exports.SheetHeader = SheetHeader; exports.SheetOverlay = SheetOverlay; exports.SheetPortal = SheetPortal; exports.SheetTitle = SheetTitle; exports.SheetTrigger = SheetTrigger; exports.Skeleton = Skeleton; exports.Slider = Slider; exports.Spinner = Spinner; exports.Switch = Switch; exports.Tabs = Tabs; exports.TabsContent = TabsContent; exports.TabsList = TabsList; exports.TabsTrigger = TabsTrigger; exports.Textarea = Textarea; exports.Toaster = Toaster; exports.Toggle = Toggle; exports.Tooltip = Tooltip; exports.TooltipContent = TooltipContent; exports.TooltipProvider = TooltipProvider; exports.TooltipTrigger = TooltipTrigger; exports.badgeVariants = badgeVariants; exports.buttonVariants = buttonVariants; exports.cn = cn; exports.navigationMenuTriggerStyle = navigationMenuTriggerStyle; exports.toggleVariants = toggleVariants; exports.useAutoFocus = useAutoFocus; exports.useFormField = useFormField; exports.useIsMobile = useIsMobile; exports.useShortcuts = useShortcuts; exports.useUid = useUid;
2820
+ //# sourceMappingURL=index.cjs.map