@hai3/uikit 0.1.0-alpha.4 → 0.1.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -2,14 +2,18 @@
2
2
 
3
3
  var AspectRatioPrimitive = require('@radix-ui/react-aspect-ratio');
4
4
  var jsxRuntime = require('react/jsx-runtime');
5
- var React18 = require('react');
5
+ var React20 = require('react');
6
6
  var AvatarPrimitive = require('@radix-ui/react-avatar');
7
7
  var clsx = require('clsx');
8
8
  var tailwindMerge = require('tailwind-merge');
9
9
  var reactSlot = require('@radix-ui/react-slot');
10
10
  var classVarianceAuthority = require('class-variance-authority');
11
11
  var uikitContracts = require('@hai3/uikit-contracts');
12
+ var reactDayPicker = require('react-day-picker');
12
13
  var CheckboxPrimitive = require('@radix-ui/react-checkbox');
14
+ var RadioGroupPrimitive = require('@radix-ui/react-radio-group');
15
+ var inputOtp = require('input-otp');
16
+ var LabelPrimitive = require('@radix-ui/react-label');
13
17
  var SwitchPrimitives = require('@radix-ui/react-switch');
14
18
  var lucideReact = require('lucide-react');
15
19
  var lodash = require('lodash');
@@ -55,9 +59,11 @@ function _interopNamespace(e) {
55
59
  }
56
60
 
57
61
  var AspectRatioPrimitive__namespace = /*#__PURE__*/_interopNamespace(AspectRatioPrimitive);
58
- var React18__namespace = /*#__PURE__*/_interopNamespace(React18);
62
+ var React20__namespace = /*#__PURE__*/_interopNamespace(React20);
59
63
  var AvatarPrimitive__namespace = /*#__PURE__*/_interopNamespace(AvatarPrimitive);
60
64
  var CheckboxPrimitive__namespace = /*#__PURE__*/_interopNamespace(CheckboxPrimitive);
65
+ var RadioGroupPrimitive__namespace = /*#__PURE__*/_interopNamespace(RadioGroupPrimitive);
66
+ var LabelPrimitive__namespace = /*#__PURE__*/_interopNamespace(LabelPrimitive);
61
67
  var SwitchPrimitives__namespace = /*#__PURE__*/_interopNamespace(SwitchPrimitives);
62
68
  var SliderPrimitive__namespace = /*#__PURE__*/_interopNamespace(SliderPrimitive);
63
69
  var ProgressPrimitive__namespace = /*#__PURE__*/_interopNamespace(ProgressPrimitive);
@@ -87,7 +93,7 @@ function AspectRatio({
87
93
  function cn(...inputs) {
88
94
  return tailwindMerge.twMerge(clsx.clsx(inputs));
89
95
  }
90
- var Avatar = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
96
+ var Avatar = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
91
97
  AvatarPrimitive__namespace.Root,
92
98
  {
93
99
  ref,
@@ -99,7 +105,7 @@ var Avatar = React18__namespace.forwardRef(({ className, ...props }, ref) => /*
99
105
  }
100
106
  ));
101
107
  Avatar.displayName = AvatarPrimitive__namespace.Root.displayName;
102
- var AvatarImage = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
108
+ var AvatarImage = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
103
109
  AvatarPrimitive__namespace.Image,
104
110
  {
105
111
  ref,
@@ -108,7 +114,7 @@ var AvatarImage = React18__namespace.forwardRef(({ className, ...props }, ref) =
108
114
  }
109
115
  ));
110
116
  AvatarImage.displayName = AvatarPrimitive__namespace.Image.displayName;
111
- var AvatarFallback = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
117
+ var AvatarFallback = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
112
118
  AvatarPrimitive__namespace.Fallback,
113
119
  {
114
120
  ref,
@@ -145,7 +151,7 @@ var buttonVariants = classVarianceAuthority.cva(
145
151
  }
146
152
  }
147
153
  );
148
- var Button = React18__namespace.forwardRef(
154
+ var Button = React20__namespace.forwardRef(
149
155
  ({ className, variant, size, asChild = false, ...props }, ref) => {
150
156
  const Comp = asChild ? reactSlot.Slot : "button";
151
157
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -190,6 +196,232 @@ function Badge({
190
196
  }
191
197
  );
192
198
  }
199
+ var ChevronDownIcon = ({
200
+ className = "",
201
+ ...props
202
+ }) => {
203
+ return /* @__PURE__ */ jsxRuntime.jsx(
204
+ "svg",
205
+ {
206
+ className,
207
+ width: "16",
208
+ height: "16",
209
+ viewBox: "0 0 24 24",
210
+ fill: "none",
211
+ stroke: "currentColor",
212
+ strokeWidth: "2",
213
+ strokeLinecap: "round",
214
+ strokeLinejoin: "round",
215
+ ...props,
216
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6 9 6 6 6-6" })
217
+ }
218
+ );
219
+ };
220
+ var ChevronLeftIcon = ({ className = "" }) => {
221
+ return /* @__PURE__ */ jsxRuntime.jsx(
222
+ "svg",
223
+ {
224
+ className,
225
+ width: "16",
226
+ height: "16",
227
+ viewBox: "0 0 24 24",
228
+ fill: "none",
229
+ stroke: "currentColor",
230
+ strokeWidth: "2",
231
+ strokeLinecap: "round",
232
+ strokeLinejoin: "round",
233
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15 18-6-6 6-6" })
234
+ }
235
+ );
236
+ };
237
+ var ChevronRightIcon = ({ className = "" }) => {
238
+ return /* @__PURE__ */ jsxRuntime.jsx(
239
+ "svg",
240
+ {
241
+ className,
242
+ width: "16",
243
+ height: "16",
244
+ viewBox: "0 0 24 24",
245
+ fill: "none",
246
+ stroke: "currentColor",
247
+ strokeWidth: "2",
248
+ strokeLinecap: "round",
249
+ strokeLinejoin: "round",
250
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 18 6-6-6-6" })
251
+ }
252
+ );
253
+ };
254
+ function Calendar({
255
+ className,
256
+ classNames,
257
+ showOutsideDays = true,
258
+ captionLayout = "label",
259
+ buttonVariant = uikitContracts.ButtonVariant.Ghost,
260
+ formatters,
261
+ components,
262
+ ...props
263
+ }) {
264
+ const defaultClassNames = reactDayPicker.getDefaultClassNames();
265
+ return /* @__PURE__ */ jsxRuntime.jsx(
266
+ reactDayPicker.DayPicker,
267
+ {
268
+ showOutsideDays,
269
+ className: cn(
270
+ "bg-background group/calendar p-3 [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",
271
+ String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
272
+ String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
273
+ className
274
+ ),
275
+ captionLayout,
276
+ formatters: {
277
+ formatMonthDropdown: (date) => date.toLocaleString("default", { month: "short" }),
278
+ ...formatters
279
+ },
280
+ classNames: {
281
+ root: cn("w-fit", defaultClassNames.root),
282
+ months: cn(
283
+ "flex gap-4 flex-col md:flex-row relative",
284
+ defaultClassNames.months
285
+ ),
286
+ month: cn("flex flex-col w-full gap-4", defaultClassNames.month),
287
+ nav: cn(
288
+ "flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between",
289
+ defaultClassNames.nav
290
+ ),
291
+ button_previous: cn(
292
+ buttonVariants({ variant: buttonVariant }),
293
+ "size-9 md:size-10 aria-disabled:opacity-50 p-0 select-none",
294
+ defaultClassNames.button_previous
295
+ ),
296
+ button_next: cn(
297
+ buttonVariants({ variant: buttonVariant }),
298
+ "size-9 md:size-10 aria-disabled:opacity-50 p-0 select-none",
299
+ defaultClassNames.button_next
300
+ ),
301
+ month_caption: cn(
302
+ "flex items-center justify-center h-9 md:h-10 w-full px-9 md:px-10",
303
+ defaultClassNames.month_caption
304
+ ),
305
+ dropdowns: cn(
306
+ "w-full flex items-center text-sm font-medium justify-center h-9 md:h-10 gap-1.5",
307
+ defaultClassNames.dropdowns
308
+ ),
309
+ dropdown_root: cn(
310
+ "relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md",
311
+ defaultClassNames.dropdown_root
312
+ ),
313
+ dropdown: cn(
314
+ "absolute bg-popover inset-0 opacity-0",
315
+ defaultClassNames.dropdown
316
+ ),
317
+ caption_label: cn(
318
+ "select-none font-medium",
319
+ captionLayout === "label" ? "text-sm" : "rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5",
320
+ defaultClassNames.caption_label
321
+ ),
322
+ table: "w-full border-collapse",
323
+ weekdays: cn("flex", defaultClassNames.weekdays),
324
+ weekday: cn(
325
+ "text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem] select-none",
326
+ defaultClassNames.weekday
327
+ ),
328
+ week: cn("flex w-full mt-2", defaultClassNames.week),
329
+ week_number_header: cn(
330
+ "select-none w-9 md:w-10",
331
+ defaultClassNames.week_number_header
332
+ ),
333
+ week_number: cn(
334
+ "text-[0.8rem] select-none text-muted-foreground",
335
+ defaultClassNames.week_number
336
+ ),
337
+ day: cn(
338
+ "relative w-full h-full p-0 text-center [&:last-child[data-selected=true]_button]:rounded-r-md group/day aspect-square select-none",
339
+ props.showWeekNumber ? "[&:nth-child(2)[data-selected=true]_button]:rounded-l-md" : "[&:first-child[data-selected=true]_button]:rounded-l-md",
340
+ defaultClassNames.day
341
+ ),
342
+ range_start: cn(
343
+ "rounded-l-md bg-accent",
344
+ defaultClassNames.range_start
345
+ ),
346
+ range_middle: cn("rounded-none", defaultClassNames.range_middle),
347
+ range_end: cn("rounded-r-md bg-accent", defaultClassNames.range_end),
348
+ today: cn(
349
+ "bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",
350
+ defaultClassNames.today
351
+ ),
352
+ outside: cn(
353
+ "text-muted-foreground aria-selected:text-muted-foreground",
354
+ defaultClassNames.outside
355
+ ),
356
+ disabled: cn(
357
+ "text-muted-foreground opacity-50",
358
+ defaultClassNames.disabled
359
+ ),
360
+ hidden: cn("invisible", defaultClassNames.hidden),
361
+ ...classNames
362
+ },
363
+ components: {
364
+ Root: ({ className: className2, rootRef, ...props2 }) => {
365
+ return /* @__PURE__ */ jsxRuntime.jsx(
366
+ "div",
367
+ {
368
+ "data-slot": "calendar",
369
+ ref: rootRef,
370
+ className: cn(className2),
371
+ ...props2
372
+ }
373
+ );
374
+ },
375
+ Chevron: ({ className: className2, orientation, ...props2 }) => {
376
+ if (orientation === "left") {
377
+ return /* @__PURE__ */ jsxRuntime.jsx(ChevronLeftIcon, { className: cn("size-4", className2), ...props2 });
378
+ }
379
+ if (orientation === "right") {
380
+ return /* @__PURE__ */ jsxRuntime.jsx(ChevronRightIcon, { className: cn("size-4", className2), ...props2 });
381
+ }
382
+ return /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { className: cn("size-4", className2), ...props2 });
383
+ },
384
+ DayButton: CalendarDayButton,
385
+ WeekNumber: ({ children, ...props2 }) => {
386
+ return /* @__PURE__ */ jsxRuntime.jsx("td", { ...props2, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-9 md:size-10 items-center justify-center text-center", children }) });
387
+ },
388
+ ...components
389
+ },
390
+ ...props
391
+ }
392
+ );
393
+ }
394
+ function CalendarDayButton({
395
+ className,
396
+ day,
397
+ modifiers,
398
+ ...props
399
+ }) {
400
+ const defaultClassNames = reactDayPicker.getDefaultClassNames();
401
+ const ref = React20__namespace.useRef(null);
402
+ React20__namespace.useEffect(() => {
403
+ if (modifiers.focused) ref.current?.focus();
404
+ }, [modifiers.focused]);
405
+ return /* @__PURE__ */ jsxRuntime.jsx(
406
+ Button,
407
+ {
408
+ ref,
409
+ variant: uikitContracts.ButtonVariant.Ghost,
410
+ size: uikitContracts.ButtonSize.Icon,
411
+ "data-day": day.date.toLocaleDateString(),
412
+ "data-selected-single": modifiers.selected && !modifiers.range_start && !modifiers.range_end && !modifiers.range_middle,
413
+ "data-range-start": modifiers.range_start,
414
+ "data-range-end": modifiers.range_end,
415
+ "data-range-middle": modifiers.range_middle,
416
+ className: cn(
417
+ "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 dark:hover:text-accent-foreground flex aspect-square size-auto w-full min-w-9 md:min-w-10 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-end=true]:rounded-r-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md data-[range-start=true]:rounded-l-md [&>span]:text-xs [&>span]:opacity-70",
418
+ defaultClassNames.day,
419
+ className
420
+ ),
421
+ ...props
422
+ }
423
+ );
424
+ }
193
425
  var CheckIcon = ({ className = "" }) => {
194
426
  return /* @__PURE__ */ jsxRuntime.jsx(
195
427
  "svg",
@@ -231,7 +463,185 @@ function Checkbox({
231
463
  }
232
464
  );
233
465
  }
234
- var Input = React18__namespace.forwardRef(
466
+ var CircleIcon = ({ className = "" }) => {
467
+ return /* @__PURE__ */ jsxRuntime.jsx(
468
+ "svg",
469
+ {
470
+ className,
471
+ width: "16",
472
+ height: "16",
473
+ viewBox: "0 0 24 24",
474
+ fill: "none",
475
+ stroke: "currentColor",
476
+ strokeWidth: "2",
477
+ strokeLinecap: "round",
478
+ strokeLinejoin: "round",
479
+ children: /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" })
480
+ }
481
+ );
482
+ };
483
+ function RadioGroup({
484
+ className,
485
+ ...props
486
+ }) {
487
+ return /* @__PURE__ */ jsxRuntime.jsx(
488
+ RadioGroupPrimitive__namespace.Root,
489
+ {
490
+ "data-slot": "radio-group",
491
+ className: cn("grid gap-3", className),
492
+ ...props
493
+ }
494
+ );
495
+ }
496
+ function RadioGroupItem({
497
+ className,
498
+ ...props
499
+ }) {
500
+ return /* @__PURE__ */ jsxRuntime.jsx(
501
+ RadioGroupPrimitive__namespace.Item,
502
+ {
503
+ "data-slot": "radio-group-item",
504
+ className: cn(
505
+ "border-input text-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 aspect-square size-4 shrink-0 rounded-full border shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",
506
+ className
507
+ ),
508
+ ...props,
509
+ children: /* @__PURE__ */ jsxRuntime.jsx(
510
+ RadioGroupPrimitive__namespace.Indicator,
511
+ {
512
+ "data-slot": "radio-group-indicator",
513
+ className: "relative flex items-center justify-center",
514
+ children: /* @__PURE__ */ jsxRuntime.jsx(CircleIcon, { className: "fill-current absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2" })
515
+ }
516
+ )
517
+ }
518
+ );
519
+ }
520
+ function NativeSelect({ className, ...props }) {
521
+ return /* @__PURE__ */ jsxRuntime.jsxs(
522
+ "div",
523
+ {
524
+ className: "group/native-select relative w-fit has-[select:disabled]:opacity-50",
525
+ "data-slot": "native-select-wrapper",
526
+ children: [
527
+ /* @__PURE__ */ jsxRuntime.jsx(
528
+ "select",
529
+ {
530
+ "data-slot": "native-select",
531
+ className: cn(
532
+ "border-input placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 dark:hover:bg-input/50 h-9 w-full min-w-0 appearance-none rounded-md border bg-transparent px-3 py-2 pr-9 text-sm shadow-xs transition-[color,box-shadow] outline-none disabled:pointer-events-none disabled:cursor-not-allowed",
533
+ "focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",
534
+ "aria-[invalid=true]:ring-2 aria-[invalid=true]:ring-destructive/30 aria-[invalid=true]:border-destructive",
535
+ className
536
+ ),
537
+ ...props
538
+ }
539
+ ),
540
+ /* @__PURE__ */ jsxRuntime.jsx(
541
+ ChevronDownIcon,
542
+ {
543
+ className: "text-muted-foreground pointer-events-none absolute top-1/2 right-3.5 size-4 -translate-y-1/2 opacity-50 select-none",
544
+ "aria-hidden": "true",
545
+ "data-slot": "native-select-icon"
546
+ }
547
+ )
548
+ ]
549
+ }
550
+ );
551
+ }
552
+ function NativeSelectOption({ ...props }) {
553
+ return /* @__PURE__ */ jsxRuntime.jsx("option", { "data-slot": "native-select-option", ...props });
554
+ }
555
+ function NativeSelectOptGroup({
556
+ className,
557
+ ...props
558
+ }) {
559
+ return /* @__PURE__ */ jsxRuntime.jsx(
560
+ "optgroup",
561
+ {
562
+ "data-slot": "native-select-optgroup",
563
+ className: cn(className),
564
+ ...props
565
+ }
566
+ );
567
+ }
568
+ var MinusIcon = ({
569
+ className = "",
570
+ ...props
571
+ }) => {
572
+ return /* @__PURE__ */ jsxRuntime.jsx(
573
+ "svg",
574
+ {
575
+ className,
576
+ width: "16",
577
+ height: "16",
578
+ viewBox: "0 0 24 24",
579
+ fill: "none",
580
+ stroke: "currentColor",
581
+ strokeWidth: "2",
582
+ strokeLinecap: "round",
583
+ strokeLinejoin: "round",
584
+ ...props,
585
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12h14" })
586
+ }
587
+ );
588
+ };
589
+ function InputOTP({
590
+ className,
591
+ containerClassName,
592
+ ...props
593
+ }) {
594
+ return /* @__PURE__ */ jsxRuntime.jsx(
595
+ inputOtp.OTPInput,
596
+ {
597
+ "data-slot": "input-otp",
598
+ containerClassName: cn(
599
+ "flex items-center gap-2 has-disabled:opacity-50",
600
+ containerClassName
601
+ ),
602
+ className: cn("disabled:cursor-not-allowed", className),
603
+ ...props
604
+ }
605
+ );
606
+ }
607
+ function InputOTPGroup({ className, ...props }) {
608
+ return /* @__PURE__ */ jsxRuntime.jsx(
609
+ "div",
610
+ {
611
+ "data-slot": "input-otp-group",
612
+ className: cn("flex items-center", className),
613
+ ...props
614
+ }
615
+ );
616
+ }
617
+ function InputOTPSlot({
618
+ index,
619
+ className,
620
+ ...props
621
+ }) {
622
+ const inputOTPContext = React20__namespace.useContext(inputOtp.OTPInputContext);
623
+ const { char, hasFakeCaret, isActive } = inputOTPContext?.slots[index] ?? {};
624
+ return /* @__PURE__ */ jsxRuntime.jsxs(
625
+ "div",
626
+ {
627
+ "data-slot": "input-otp-slot",
628
+ "data-active": isActive,
629
+ className: cn(
630
+ "data-[active=true]:border-ring data-[active=true]:ring-ring/50 data-[active=true]:aria-invalid:ring-destructive/20 dark:data-[active=true]:aria-invalid:ring-destructive/40 aria-invalid:border-destructive data-[active=true]:aria-invalid:border-destructive dark:bg-input/30 border-input relative flex h-9 w-9 items-center justify-center border-y border-r text-sm shadow-xs transition-all outline-none first:rounded-l-md first:border-l last:rounded-r-md data-[active=true]:z-10 data-[active=true]:ring-[3px]",
631
+ className
632
+ ),
633
+ ...props,
634
+ children: [
635
+ char,
636
+ hasFakeCaret && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "pointer-events-none absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "animate-caret-blink bg-foreground h-4 w-px duration-1000" }) })
637
+ ]
638
+ }
639
+ );
640
+ }
641
+ function InputOTPSeparator({ ...props }) {
642
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "input-otp-separator", role: "separator", ...props, children: /* @__PURE__ */ jsxRuntime.jsx(MinusIcon, {}) });
643
+ }
644
+ var Input = React20__namespace.forwardRef(
235
645
  ({ className, type, ...props }, ref) => {
236
646
  return /* @__PURE__ */ jsxRuntime.jsx(
237
647
  "input",
@@ -248,10 +658,26 @@ var Input = React18__namespace.forwardRef(
248
658
  }
249
659
  );
250
660
  Input.displayName = "Input";
251
- var Textarea = React18__namespace.forwardRef(
661
+ function Label({
662
+ className,
663
+ ...props
664
+ }) {
665
+ return /* @__PURE__ */ jsxRuntime.jsx(
666
+ LabelPrimitive__namespace.Root,
667
+ {
668
+ "data-slot": "label",
669
+ className: cn(
670
+ "flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
671
+ className
672
+ ),
673
+ ...props
674
+ }
675
+ );
676
+ }
677
+ var Textarea = React20__namespace.forwardRef(
252
678
  ({ className, autoResize = false, minHeight = 50, maxHeight = 350, size = "default", onChange, ...props }, ref) => {
253
- const internalRef = React18__namespace.useRef(null);
254
- React18__namespace.useImperativeHandle(ref, () => internalRef.current);
679
+ const internalRef = React20__namespace.useRef(null);
680
+ React20__namespace.useImperativeHandle(ref, () => internalRef.current);
255
681
  const sizeClasses = {
256
682
  sm: "min-h-11 h-11",
257
683
  // 44px / 2.75rem - exact height
@@ -268,7 +694,7 @@ var Textarea = React18__namespace.forwardRef(
268
694
  lg: "py-2"
269
695
  // 8px top + 8px bottom (default)
270
696
  };
271
- const handleResize = React18__namespace.useCallback(() => {
697
+ const handleResize = React20__namespace.useCallback(() => {
272
698
  if (autoResize && size !== "sm" && internalRef.current) {
273
699
  const textarea = internalRef.current;
274
700
  textarea.style.height = "auto";
@@ -276,10 +702,10 @@ var Textarea = React18__namespace.forwardRef(
276
702
  textarea.style.height = `${Math.min(Math.max(scrollHeight, minHeight), maxHeight)}px`;
277
703
  }
278
704
  }, [autoResize, size, minHeight, maxHeight]);
279
- React18__namespace.useEffect(() => {
705
+ React20__namespace.useEffect(() => {
280
706
  handleResize();
281
707
  }, [handleResize, props.value]);
282
- const handleChange = React18__namespace.useCallback(
708
+ const handleChange = React20__namespace.useCallback(
283
709
  (e) => {
284
710
  handleResize();
285
711
  onChange?.(e);
@@ -303,7 +729,7 @@ var Textarea = React18__namespace.forwardRef(
303
729
  }
304
730
  );
305
731
  Textarea.displayName = "Textarea";
306
- var Switch = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
732
+ var Switch = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
307
733
  SwitchPrimitives__namespace.Root,
308
734
  {
309
735
  className: cn(
@@ -342,7 +768,7 @@ function Skeleton({
342
768
  }
343
769
  );
344
770
  }
345
- var Spinner = React18__namespace.forwardRef(
771
+ var Spinner = React20__namespace.forwardRef(
346
772
  ({ className, icon: Icon2 = lucideReact.Loader2, size = "size-4", ...props }, ref) => {
347
773
  const textColorClasses = className?.match(/\btext-\S+/g)?.join(" ") || "";
348
774
  const wrapperClasses = lodash.trim(className?.replace(/\btext-\S+/g, "") || "");
@@ -358,7 +784,7 @@ var Spinner = React18__namespace.forwardRef(
358
784
  }
359
785
  );
360
786
  Spinner.displayName = "Spinner";
361
- var Slider = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
787
+ var Slider = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
362
788
  SliderPrimitive__namespace.Root,
363
789
  {
364
790
  ref,
@@ -370,7 +796,7 @@ var Slider = React18__namespace.forwardRef(({ className, ...props }, ref) => /*
370
796
  }
371
797
  ));
372
798
  Slider.displayName = SliderPrimitive__namespace.Root.displayName;
373
- var SliderTrack = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
799
+ var SliderTrack = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
374
800
  SliderPrimitive__namespace.Track,
375
801
  {
376
802
  ref,
@@ -382,7 +808,7 @@ var SliderTrack = React18__namespace.forwardRef(({ className, ...props }, ref) =
382
808
  }
383
809
  ));
384
810
  SliderTrack.displayName = SliderPrimitive__namespace.Track.displayName;
385
- var SliderRange = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
811
+ var SliderRange = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
386
812
  SliderPrimitive__namespace.Range,
387
813
  {
388
814
  ref,
@@ -391,7 +817,7 @@ var SliderRange = React18__namespace.forwardRef(({ className, ...props }, ref) =
391
817
  }
392
818
  ));
393
819
  SliderRange.displayName = SliderPrimitive__namespace.Range.displayName;
394
- var SliderThumb = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
820
+ var SliderThumb = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
395
821
  SliderPrimitive__namespace.Thumb,
396
822
  {
397
823
  ref,
@@ -403,7 +829,7 @@ var SliderThumb = React18__namespace.forwardRef(({ className, ...props }, ref) =
403
829
  }
404
830
  ));
405
831
  SliderThumb.displayName = SliderPrimitive__namespace.Thumb.displayName;
406
- var Progress = React18__namespace.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
832
+ var Progress = React20__namespace.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
407
833
  ProgressPrimitive__namespace.Root,
408
834
  {
409
835
  ref,
@@ -437,9 +863,9 @@ var Tooltip = ({
437
863
  ...props
438
864
  }) => /* @__PURE__ */ jsxRuntime.jsx(TooltipProvider, { children: /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Root, { ...props }) });
439
865
  Tooltip.displayName = TooltipPrimitive__namespace.Root.displayName;
440
- var TooltipTrigger = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Trigger, { ref, ...props }));
866
+ var TooltipTrigger = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Trigger, { ref, ...props }));
441
867
  TooltipTrigger.displayName = TooltipPrimitive__namespace.Trigger.displayName;
442
- var TooltipContent = React18__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
868
+ var TooltipContent = React20__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
443
869
  TooltipPrimitive__namespace.Content,
444
870
  {
445
871
  ref,
@@ -454,7 +880,7 @@ var TooltipContent = React18__namespace.forwardRef(({ className, sideOffset = 4,
454
880
  TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
455
881
  var Popover = PopoverPrimitive__namespace.Root;
456
882
  Popover.displayName = "Popover";
457
- var PopoverTrigger = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
883
+ var PopoverTrigger = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
458
884
  PopoverPrimitive__namespace.Trigger,
459
885
  {
460
886
  ref,
@@ -463,7 +889,7 @@ var PopoverTrigger = React18__namespace.forwardRef(({ ...props }, ref) => /* @__
463
889
  }
464
890
  ));
465
891
  PopoverTrigger.displayName = "PopoverTrigger";
466
- var PopoverContent = React18__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
892
+ var PopoverContent = React20__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
467
893
  PopoverPrimitive__namespace.Content,
468
894
  {
469
895
  ref,
@@ -478,7 +904,7 @@ var PopoverContent = React18__namespace.forwardRef(({ className, align = "center
478
904
  }
479
905
  ) }));
480
906
  PopoverContent.displayName = "PopoverContent";
481
- var PopoverAnchor = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
907
+ var PopoverAnchor = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
482
908
  PopoverPrimitive__namespace.Anchor,
483
909
  {
484
910
  ref,
@@ -489,7 +915,7 @@ var PopoverAnchor = React18__namespace.forwardRef(({ ...props }, ref) => /* @__P
489
915
  PopoverAnchor.displayName = "PopoverAnchor";
490
916
  var HoverCard = HoverCardPrimitive__namespace.Root;
491
917
  HoverCard.displayName = "HoverCard";
492
- var HoverCardTrigger = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
918
+ var HoverCardTrigger = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
493
919
  HoverCardPrimitive__namespace.Trigger,
494
920
  {
495
921
  ref,
@@ -498,7 +924,7 @@ var HoverCardTrigger = React18__namespace.forwardRef(({ ...props }, ref) => /* @
498
924
  }
499
925
  ));
500
926
  HoverCardTrigger.displayName = "HoverCardTrigger";
501
- var HoverCardContent = React18__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(HoverCardPrimitive__namespace.Portal, { "data-slot": "hover-card-portal", children: /* @__PURE__ */ jsxRuntime.jsx(
927
+ var HoverCardContent = React20__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(HoverCardPrimitive__namespace.Portal, { "data-slot": "hover-card-portal", children: /* @__PURE__ */ jsxRuntime.jsx(
502
928
  HoverCardPrimitive__namespace.Content,
503
929
  {
504
930
  ref,
@@ -513,7 +939,7 @@ var HoverCardContent = React18__namespace.forwardRef(({ className, align = "cent
513
939
  }
514
940
  ) }));
515
941
  HoverCardContent.displayName = "HoverCardContent";
516
- var Card = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
942
+ var Card = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
517
943
  "div",
518
944
  {
519
945
  ref,
@@ -525,7 +951,7 @@ var Card = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @_
525
951
  }
526
952
  ));
527
953
  Card.displayName = "Card";
528
- var CardHeader = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
954
+ var CardHeader = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
529
955
  "div",
530
956
  {
531
957
  ref,
@@ -534,7 +960,7 @@ var CardHeader = React18__namespace.forwardRef(({ className, ...props }, ref) =>
534
960
  }
535
961
  ));
536
962
  CardHeader.displayName = "CardHeader";
537
- var CardTitle = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
963
+ var CardTitle = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
538
964
  "div",
539
965
  {
540
966
  ref,
@@ -543,7 +969,7 @@ var CardTitle = React18__namespace.forwardRef(({ className, ...props }, ref) =>
543
969
  }
544
970
  ));
545
971
  CardTitle.displayName = "CardTitle";
546
- var CardDescription = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
972
+ var CardDescription = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
547
973
  "div",
548
974
  {
549
975
  ref,
@@ -552,9 +978,9 @@ var CardDescription = React18__namespace.forwardRef(({ className, ...props }, re
552
978
  }
553
979
  ));
554
980
  CardDescription.displayName = "CardDescription";
555
- var CardContent = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
981
+ var CardContent = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
556
982
  CardContent.displayName = "CardContent";
557
- var CardFooter = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
983
+ var CardFooter = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
558
984
  "div",
559
985
  {
560
986
  ref,
@@ -563,7 +989,7 @@ var CardFooter = React18__namespace.forwardRef(({ className, ...props }, ref) =>
563
989
  }
564
990
  ));
565
991
  CardFooter.displayName = "CardFooter";
566
- var Header = React18__namespace.default.forwardRef(
992
+ var Header = React20__namespace.default.forwardRef(
567
993
  ({ children, className }, ref) => {
568
994
  return /* @__PURE__ */ jsxRuntime.jsx(
569
995
  "header",
@@ -579,7 +1005,7 @@ var Header = React18__namespace.default.forwardRef(
579
1005
  }
580
1006
  );
581
1007
  Header.displayName = "Header";
582
- var NavigationMenu = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1008
+ var NavigationMenu = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
583
1009
  NavigationMenuPrimitive__namespace.Root,
584
1010
  {
585
1011
  ref,
@@ -595,7 +1021,7 @@ var NavigationMenu = React18__namespace.forwardRef(({ className, children, ...pr
595
1021
  }
596
1022
  ));
597
1023
  NavigationMenu.displayName = NavigationMenuPrimitive__namespace.Root.displayName;
598
- var NavigationMenuList = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1024
+ var NavigationMenuList = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
599
1025
  NavigationMenuPrimitive__namespace.List,
600
1026
  {
601
1027
  ref,
@@ -611,7 +1037,7 @@ var NavigationMenuItem = NavigationMenuPrimitive__namespace.Item;
611
1037
  var navigationMenuTriggerStyle = classVarianceAuthority.cva(
612
1038
  "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"
613
1039
  );
614
- var NavigationMenuTrigger = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1040
+ var NavigationMenuTrigger = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
615
1041
  NavigationMenuPrimitive__namespace.Trigger,
616
1042
  {
617
1043
  ref,
@@ -621,7 +1047,7 @@ var NavigationMenuTrigger = React18__namespace.forwardRef(({ className, children
621
1047
  children,
622
1048
  " ",
623
1049
  /* @__PURE__ */ jsxRuntime.jsx(
624
- lucideReact.ChevronDown,
1050
+ ChevronDownIcon,
625
1051
  {
626
1052
  className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
627
1053
  "aria-hidden": "true"
@@ -631,7 +1057,7 @@ var NavigationMenuTrigger = React18__namespace.forwardRef(({ className, children
631
1057
  }
632
1058
  ));
633
1059
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive__namespace.Trigger.displayName;
634
- var NavigationMenuContent = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1060
+ var NavigationMenuContent = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
635
1061
  NavigationMenuPrimitive__namespace.Content,
636
1062
  {
637
1063
  ref,
@@ -644,7 +1070,7 @@ var NavigationMenuContent = React18__namespace.forwardRef(({ className, ...props
644
1070
  ));
645
1071
  NavigationMenuContent.displayName = NavigationMenuPrimitive__namespace.Content.displayName;
646
1072
  var NavigationMenuLink = NavigationMenuPrimitive__namespace.Link;
647
- var NavigationMenuViewport = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ jsxRuntime.jsx(
1073
+ var NavigationMenuViewport = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ jsxRuntime.jsx(
648
1074
  NavigationMenuPrimitive__namespace.Viewport,
649
1075
  {
650
1076
  className: cn(
@@ -656,7 +1082,7 @@ var NavigationMenuViewport = React18__namespace.forwardRef(({ className, ...prop
656
1082
  }
657
1083
  ) }));
658
1084
  NavigationMenuViewport.displayName = NavigationMenuPrimitive__namespace.Viewport.displayName;
659
- var NavigationMenuIndicator = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1085
+ var NavigationMenuIndicator = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
660
1086
  NavigationMenuPrimitive__namespace.Indicator,
661
1087
  {
662
1088
  ref,
@@ -759,40 +1185,6 @@ function BreadcrumbEllipsis({
759
1185
  }
760
1186
  );
761
1187
  }
762
- var ChevronRightIcon = ({ className = "" }) => {
763
- return /* @__PURE__ */ jsxRuntime.jsx(
764
- "svg",
765
- {
766
- className,
767
- width: "16",
768
- height: "16",
769
- viewBox: "0 0 24 24",
770
- fill: "none",
771
- stroke: "currentColor",
772
- strokeWidth: "2",
773
- strokeLinecap: "round",
774
- strokeLinejoin: "round",
775
- children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 18 6-6-6-6" })
776
- }
777
- );
778
- };
779
- var CircleIcon = ({ className = "" }) => {
780
- return /* @__PURE__ */ jsxRuntime.jsx(
781
- "svg",
782
- {
783
- className,
784
- width: "16",
785
- height: "16",
786
- viewBox: "0 0 24 24",
787
- fill: "none",
788
- stroke: "currentColor",
789
- strokeWidth: "2",
790
- strokeLinecap: "round",
791
- strokeLinejoin: "round",
792
- children: /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" })
793
- }
794
- );
795
- };
796
1188
  function Menubar({
797
1189
  className,
798
1190
  ...props
@@ -1022,23 +1414,6 @@ function MenubarSubContent({
1022
1414
  }
1023
1415
  );
1024
1416
  }
1025
- var ChevronLeftIcon = ({ className = "" }) => {
1026
- return /* @__PURE__ */ jsxRuntime.jsx(
1027
- "svg",
1028
- {
1029
- className,
1030
- width: "16",
1031
- height: "16",
1032
- viewBox: "0 0 24 24",
1033
- fill: "none",
1034
- stroke: "currentColor",
1035
- strokeWidth: "2",
1036
- strokeLinecap: "round",
1037
- strokeLinejoin: "round",
1038
- children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15 18-6-6 6-6" })
1039
- }
1040
- );
1041
- };
1042
1417
  var MoreHorizontalIcon = ({ className = "" }) => {
1043
1418
  return /* @__PURE__ */ jsxRuntime.jsxs(
1044
1419
  "svg",
@@ -1231,7 +1606,7 @@ var Sheet = SheetPrimitive__namespace.Root;
1231
1606
  var SheetTrigger = SheetPrimitive__namespace.Trigger;
1232
1607
  var SheetClose = SheetPrimitive__namespace.Close;
1233
1608
  var SheetPortal = SheetPrimitive__namespace.Portal;
1234
- var SheetOverlay = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1609
+ var SheetOverlay = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1235
1610
  SheetPrimitive__namespace.Overlay,
1236
1611
  {
1237
1612
  className: cn(
@@ -1259,7 +1634,7 @@ var sheetVariants = classVarianceAuthority.cva(
1259
1634
  }
1260
1635
  }
1261
1636
  );
1262
- var SheetContent = React18__namespace.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SheetPortal, { children: [
1637
+ var SheetContent = React20__namespace.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SheetPortal, { children: [
1263
1638
  /* @__PURE__ */ jsxRuntime.jsx(SheetOverlay, {}),
1264
1639
  /* @__PURE__ */ jsxRuntime.jsxs(
1265
1640
  SheetPrimitive__namespace.Content,
@@ -1306,7 +1681,7 @@ var SheetFooter = ({
1306
1681
  }
1307
1682
  );
1308
1683
  SheetFooter.displayName = "SheetFooter";
1309
- var SheetTitle = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1684
+ var SheetTitle = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1310
1685
  SheetPrimitive__namespace.Title,
1311
1686
  {
1312
1687
  ref,
@@ -1315,7 +1690,7 @@ var SheetTitle = React18__namespace.forwardRef(({ className, ...props }, ref) =>
1315
1690
  }
1316
1691
  ));
1317
1692
  SheetTitle.displayName = SheetPrimitive__namespace.Title.displayName;
1318
- var SheetDescription = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1693
+ var SheetDescription = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1319
1694
  SheetPrimitive__namespace.Description,
1320
1695
  {
1321
1696
  ref,
@@ -1328,7 +1703,7 @@ var Dialog = SheetPrimitive__namespace.Root;
1328
1703
  var DialogTrigger = SheetPrimitive__namespace.Trigger;
1329
1704
  var DialogPortal = SheetPrimitive__namespace.Portal;
1330
1705
  var DialogClose = SheetPrimitive__namespace.Close;
1331
- var DialogOverlay = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1706
+ var DialogOverlay = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1332
1707
  SheetPrimitive__namespace.Overlay,
1333
1708
  {
1334
1709
  ref,
@@ -1340,7 +1715,7 @@ var DialogOverlay = React18__namespace.forwardRef(({ className, ...props }, ref)
1340
1715
  }
1341
1716
  ));
1342
1717
  DialogOverlay.displayName = SheetPrimitive__namespace.Overlay.displayName;
1343
- var DialogContent = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
1718
+ var DialogContent = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
1344
1719
  /* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
1345
1720
  /* @__PURE__ */ jsxRuntime.jsxs(
1346
1721
  SheetPrimitive__namespace.Content,
@@ -1390,7 +1765,7 @@ var DialogFooter = ({
1390
1765
  }
1391
1766
  );
1392
1767
  DialogFooter.displayName = "DialogFooter";
1393
- var DialogTitle = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1768
+ var DialogTitle = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1394
1769
  SheetPrimitive__namespace.Title,
1395
1770
  {
1396
1771
  ref,
@@ -1402,7 +1777,7 @@ var DialogTitle = React18__namespace.forwardRef(({ className, ...props }, ref) =
1402
1777
  }
1403
1778
  ));
1404
1779
  DialogTitle.displayName = SheetPrimitive__namespace.Title.displayName;
1405
- var DialogDescription = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1780
+ var DialogDescription = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1406
1781
  SheetPrimitive__namespace.Description,
1407
1782
  {
1408
1783
  ref,
@@ -1636,7 +2011,7 @@ function Separator2({
1636
2011
  }
1637
2012
  );
1638
2013
  }
1639
- var Accordion = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2014
+ var Accordion = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1640
2015
  AccordionPrimitive__namespace.Root,
1641
2016
  {
1642
2017
  ref,
@@ -1645,7 +2020,7 @@ var Accordion = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE_
1645
2020
  }
1646
2021
  ));
1647
2022
  Accordion.displayName = "Accordion";
1648
- var AccordionItem = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2023
+ var AccordionItem = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1649
2024
  AccordionPrimitive__namespace.Item,
1650
2025
  {
1651
2026
  ref,
@@ -1655,7 +2030,7 @@ var AccordionItem = React18__namespace.forwardRef(({ className, ...props }, ref)
1655
2030
  }
1656
2031
  ));
1657
2032
  AccordionItem.displayName = "AccordionItem";
1658
- var AccordionTrigger = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AccordionPrimitive__namespace.Header, { className: "flex", children: /* @__PURE__ */ jsxRuntime.jsxs(
2033
+ var AccordionTrigger = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AccordionPrimitive__namespace.Header, { className: "flex", children: /* @__PURE__ */ jsxRuntime.jsxs(
1659
2034
  AccordionPrimitive__namespace.Trigger,
1660
2035
  {
1661
2036
  ref,
@@ -1667,12 +2042,12 @@ var AccordionTrigger = React18__namespace.forwardRef(({ className, children, ...
1667
2042
  ...props,
1668
2043
  children: [
1669
2044
  children,
1670
- /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
2045
+ /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
1671
2046
  ]
1672
2047
  }
1673
2048
  ) }));
1674
2049
  AccordionTrigger.displayName = "AccordionTrigger";
1675
- var AccordionContent = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2050
+ var AccordionContent = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1676
2051
  AccordionPrimitive__namespace.Content,
1677
2052
  {
1678
2053
  ref,
@@ -1683,15 +2058,15 @@ var AccordionContent = React18__namespace.forwardRef(({ className, children, ...
1683
2058
  }
1684
2059
  ));
1685
2060
  AccordionContent.displayName = "AccordionContent";
1686
- var CarouselContext = React18__namespace.createContext(null);
2061
+ var CarouselContext = React20__namespace.createContext(null);
1687
2062
  function useCarousel() {
1688
- const context = React18__namespace.useContext(CarouselContext);
2063
+ const context = React20__namespace.useContext(CarouselContext);
1689
2064
  if (!context) {
1690
2065
  throw new Error("useCarousel must be used within a <Carousel />");
1691
2066
  }
1692
2067
  return context;
1693
2068
  }
1694
- var Carousel = React18__namespace.forwardRef(
2069
+ var Carousel = React20__namespace.forwardRef(
1695
2070
  ({
1696
2071
  orientation = "horizontal",
1697
2072
  opts,
@@ -1708,20 +2083,20 @@ var Carousel = React18__namespace.forwardRef(
1708
2083
  },
1709
2084
  plugins
1710
2085
  );
1711
- const [canScrollPrev, setCanScrollPrev] = React18__namespace.useState(false);
1712
- const [canScrollNext, setCanScrollNext] = React18__namespace.useState(false);
1713
- const onSelect = React18__namespace.useCallback((api2) => {
2086
+ const [canScrollPrev, setCanScrollPrev] = React20__namespace.useState(false);
2087
+ const [canScrollNext, setCanScrollNext] = React20__namespace.useState(false);
2088
+ const onSelect = React20__namespace.useCallback((api2) => {
1714
2089
  if (!api2) return;
1715
2090
  setCanScrollPrev(api2.canScrollPrev());
1716
2091
  setCanScrollNext(api2.canScrollNext());
1717
2092
  }, []);
1718
- const scrollPrev = React18__namespace.useCallback(() => {
2093
+ const scrollPrev = React20__namespace.useCallback(() => {
1719
2094
  api?.scrollPrev();
1720
2095
  }, [api]);
1721
- const scrollNext = React18__namespace.useCallback(() => {
2096
+ const scrollNext = React20__namespace.useCallback(() => {
1722
2097
  api?.scrollNext();
1723
2098
  }, [api]);
1724
- const handleKeyDown = React18__namespace.useCallback(
2099
+ const handleKeyDown = React20__namespace.useCallback(
1725
2100
  (event) => {
1726
2101
  if (event.key === "ArrowLeft") {
1727
2102
  event.preventDefault();
@@ -1733,11 +2108,11 @@ var Carousel = React18__namespace.forwardRef(
1733
2108
  },
1734
2109
  [scrollPrev, scrollNext]
1735
2110
  );
1736
- React18__namespace.useEffect(() => {
2111
+ React20__namespace.useEffect(() => {
1737
2112
  if (!api || !setApi) return;
1738
2113
  setApi(api);
1739
2114
  }, [api, setApi]);
1740
- React18__namespace.useEffect(() => {
2115
+ React20__namespace.useEffect(() => {
1741
2116
  if (!api) return;
1742
2117
  onSelect(api);
1743
2118
  api.on("reInit", onSelect);
@@ -1777,7 +2152,7 @@ var Carousel = React18__namespace.forwardRef(
1777
2152
  }
1778
2153
  );
1779
2154
  Carousel.displayName = "Carousel";
1780
- var CarouselContent = React18__namespace.forwardRef(({ className, ...props }, ref) => {
2155
+ var CarouselContent = React20__namespace.forwardRef(({ className, ...props }, ref) => {
1781
2156
  const { carouselRef, orientation } = useCarousel();
1782
2157
  return /* @__PURE__ */ jsxRuntime.jsx(
1783
2158
  "div",
@@ -1801,7 +2176,7 @@ var CarouselContent = React18__namespace.forwardRef(({ className, ...props }, re
1801
2176
  );
1802
2177
  });
1803
2178
  CarouselContent.displayName = "CarouselContent";
1804
- var CarouselItem = React18__namespace.forwardRef(({ className, ...props }, ref) => {
2179
+ var CarouselItem = React20__namespace.forwardRef(({ className, ...props }, ref) => {
1805
2180
  const { orientation } = useCarousel();
1806
2181
  return /* @__PURE__ */ jsxRuntime.jsx(
1807
2182
  "div",
@@ -1820,7 +2195,7 @@ var CarouselItem = React18__namespace.forwardRef(({ className, ...props }, ref)
1820
2195
  );
1821
2196
  });
1822
2197
  CarouselItem.displayName = "CarouselItem";
1823
- var CarouselPrevious = React18__namespace.forwardRef(({ className, variant = uikitContracts.ButtonVariant.Outline, size = uikitContracts.ButtonSize.Icon, ...props }, ref) => {
2198
+ var CarouselPrevious = React20__namespace.forwardRef(({ className, variant = uikitContracts.ButtonVariant.Outline, size = uikitContracts.ButtonSize.Icon, ...props }, ref) => {
1824
2199
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
1825
2200
  return /* @__PURE__ */ jsxRuntime.jsxs(
1826
2201
  Button,
@@ -1845,7 +2220,7 @@ var CarouselPrevious = React18__namespace.forwardRef(({ className, variant = uik
1845
2220
  );
1846
2221
  });
1847
2222
  CarouselPrevious.displayName = "CarouselPrevious";
1848
- var CarouselNext = React18__namespace.forwardRef(({ className, variant = uikitContracts.ButtonVariant.Outline, size = uikitContracts.ButtonSize.Icon, ...props }, ref) => {
2223
+ var CarouselNext = React20__namespace.forwardRef(({ className, variant = uikitContracts.ButtonVariant.Outline, size = uikitContracts.ButtonSize.Icon, ...props }, ref) => {
1849
2224
  const { orientation, scrollNext, canScrollNext } = useCarousel();
1850
2225
  return /* @__PURE__ */ jsxRuntime.jsxs(
1851
2226
  Button,
@@ -1870,7 +2245,7 @@ var CarouselNext = React18__namespace.forwardRef(({ className, variant = uikitCo
1870
2245
  );
1871
2246
  });
1872
2247
  CarouselNext.displayName = "CarouselNext";
1873
- var Collapsible = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2248
+ var Collapsible = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1874
2249
  CollapsiblePrimitive__namespace.Root,
1875
2250
  {
1876
2251
  ref,
@@ -1879,7 +2254,7 @@ var Collapsible = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PUR
1879
2254
  }
1880
2255
  ));
1881
2256
  Collapsible.displayName = "Collapsible";
1882
- var CollapsibleTrigger2 = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2257
+ var CollapsibleTrigger2 = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1883
2258
  CollapsiblePrimitive__namespace.CollapsibleTrigger,
1884
2259
  {
1885
2260
  ref,
@@ -1888,7 +2263,7 @@ var CollapsibleTrigger2 = React18__namespace.forwardRef(({ ...props }, ref) => /
1888
2263
  }
1889
2264
  ));
1890
2265
  CollapsibleTrigger2.displayName = "CollapsibleTrigger";
1891
- var CollapsibleContent2 = React18__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2266
+ var CollapsibleContent2 = React20__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1892
2267
  CollapsiblePrimitive__namespace.CollapsibleContent,
1893
2268
  {
1894
2269
  ref,
@@ -1975,10 +2350,31 @@ function ChartLegendContent({
1975
2350
  }
1976
2351
  );
1977
2352
  }
2353
+ var ChevronUpIcon = ({
2354
+ className = "",
2355
+ ...props
2356
+ }) => {
2357
+ return /* @__PURE__ */ jsxRuntime.jsx(
2358
+ "svg",
2359
+ {
2360
+ className,
2361
+ width: "16",
2362
+ height: "16",
2363
+ viewBox: "0 0 24 24",
2364
+ fill: "none",
2365
+ stroke: "currentColor",
2366
+ strokeWidth: "2",
2367
+ strokeLinecap: "round",
2368
+ strokeLinejoin: "round",
2369
+ ...props,
2370
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18 15-6-6-6 6" })
2371
+ }
2372
+ );
2373
+ };
1978
2374
  var Select = SelectPrimitive__namespace.Root;
1979
2375
  var SelectGroup = SelectPrimitive__namespace.Group;
1980
2376
  var SelectValue = SelectPrimitive__namespace.Value;
1981
- var SelectTrigger = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2377
+ var SelectTrigger = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1982
2378
  SelectPrimitive__namespace.Trigger,
1983
2379
  {
1984
2380
  ref,
@@ -1990,12 +2386,12 @@ var SelectTrigger = React18__namespace.forwardRef(({ className, children, ...pro
1990
2386
  ...props,
1991
2387
  children: [
1992
2388
  children,
1993
- /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Icon, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "h-4 w-4 opacity-50" }) })
2389
+ /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Icon, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { className: "h-4 w-4 opacity-50" }) })
1994
2390
  ]
1995
2391
  }
1996
2392
  ));
1997
2393
  SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
1998
- var SelectScrollUpButton = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2394
+ var SelectScrollUpButton = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1999
2395
  SelectPrimitive__namespace.ScrollUpButton,
2000
2396
  {
2001
2397
  ref,
@@ -2004,11 +2400,11 @@ var SelectScrollUpButton = React18__namespace.forwardRef(({ className, ...props
2004
2400
  className
2005
2401
  ),
2006
2402
  ...props,
2007
- children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { className: "h-4 w-4" })
2403
+ children: /* @__PURE__ */ jsxRuntime.jsx(ChevronUpIcon, { className: "h-4 w-4" })
2008
2404
  }
2009
2405
  ));
2010
2406
  SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
2011
- var SelectScrollDownButton = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2407
+ var SelectScrollDownButton = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2012
2408
  SelectPrimitive__namespace.ScrollDownButton,
2013
2409
  {
2014
2410
  ref,
@@ -2017,11 +2413,11 @@ var SelectScrollDownButton = React18__namespace.forwardRef(({ className, ...prop
2017
2413
  className
2018
2414
  ),
2019
2415
  ...props,
2020
- children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "h-4 w-4" })
2416
+ children: /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { className: "h-4 w-4" })
2021
2417
  }
2022
2418
  ));
2023
2419
  SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
2024
- var SelectContent = React18__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
2420
+ var SelectContent = React20__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
2025
2421
  SelectPrimitive__namespace.Content,
2026
2422
  {
2027
2423
  ref,
@@ -2049,7 +2445,7 @@ var SelectContent = React18__namespace.forwardRef(({ className, children, positi
2049
2445
  }
2050
2446
  ) }));
2051
2447
  SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
2052
- var SelectLabel = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2448
+ var SelectLabel = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2053
2449
  SelectPrimitive__namespace.Label,
2054
2450
  {
2055
2451
  ref,
@@ -2058,7 +2454,7 @@ var SelectLabel = React18__namespace.forwardRef(({ className, ...props }, ref) =
2058
2454
  }
2059
2455
  ));
2060
2456
  SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
2061
- var SelectItem = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2457
+ var SelectItem = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2062
2458
  SelectPrimitive__namespace.Item,
2063
2459
  {
2064
2460
  ref,
@@ -2068,13 +2464,13 @@ var SelectItem = React18__namespace.forwardRef(({ className, children, ...props
2068
2464
  ),
2069
2465
  ...props,
2070
2466
  children: [
2071
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Check, { className: "h-4 w-4" }) }) }),
2467
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(CheckIcon, { className: "h-4 w-4" }) }) }),
2072
2468
  /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemText, { children })
2073
2469
  ]
2074
2470
  }
2075
2471
  ));
2076
2472
  SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
2077
- var SelectSeparator = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2473
+ var SelectSeparator = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2078
2474
  SelectPrimitive__namespace.Separator,
2079
2475
  {
2080
2476
  ref,
@@ -2096,7 +2492,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
2096
2492
  var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
2097
2493
  var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
2098
2494
  var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
2099
- var DropdownMenuSubTrigger = React18__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2495
+ var DropdownMenuSubTrigger = React20__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2100
2496
  DropdownMenuPrimitive__namespace.SubTrigger,
2101
2497
  {
2102
2498
  ref,
@@ -2113,7 +2509,7 @@ var DropdownMenuSubTrigger = React18__namespace.forwardRef(({ className, inset,
2113
2509
  }
2114
2510
  ));
2115
2511
  DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
2116
- var DropdownMenuSubContent = React18__namespace.forwardRef(({ className, container, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { container: container ?? void 0, children: /* @__PURE__ */ jsxRuntime.jsx(
2512
+ var DropdownMenuSubContent = React20__namespace.forwardRef(({ className, container, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { container: container ?? void 0, children: /* @__PURE__ */ jsxRuntime.jsx(
2117
2513
  DropdownMenuPrimitive__namespace.SubContent,
2118
2514
  {
2119
2515
  ref,
@@ -2125,7 +2521,7 @@ var DropdownMenuSubContent = React18__namespace.forwardRef(({ className, contain
2125
2521
  }
2126
2522
  ) }));
2127
2523
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
2128
- var DropdownMenuContent = React18__namespace.forwardRef(({ className, sideOffset = 4, container, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { container: container ?? void 0, children: /* @__PURE__ */ jsxRuntime.jsx(
2524
+ var DropdownMenuContent = React20__namespace.forwardRef(({ className, sideOffset = 4, container, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { container: container ?? void 0, children: /* @__PURE__ */ jsxRuntime.jsx(
2129
2525
  DropdownMenuPrimitive__namespace.Content,
2130
2526
  {
2131
2527
  ref,
@@ -2139,7 +2535,7 @@ var DropdownMenuContent = React18__namespace.forwardRef(({ className, sideOffset
2139
2535
  }
2140
2536
  ) }));
2141
2537
  DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
2142
- var DropdownMenuItem = React18__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2538
+ var DropdownMenuItem = React20__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2143
2539
  DropdownMenuPrimitive__namespace.Item,
2144
2540
  {
2145
2541
  ref,
@@ -2152,7 +2548,7 @@ var DropdownMenuItem = React18__namespace.forwardRef(({ className, inset, ...pro
2152
2548
  }
2153
2549
  ));
2154
2550
  DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
2155
- var DropdownMenuCheckboxItem = React18__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2551
+ var DropdownMenuCheckboxItem = React20__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2156
2552
  DropdownMenuPrimitive__namespace.CheckboxItem,
2157
2553
  {
2158
2554
  ref,
@@ -2169,7 +2565,7 @@ var DropdownMenuCheckboxItem = React18__namespace.forwardRef(({ className, child
2169
2565
  }
2170
2566
  ));
2171
2567
  DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
2172
- var DropdownMenuRadioItem = React18__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2568
+ var DropdownMenuRadioItem = React20__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2173
2569
  DropdownMenuPrimitive__namespace.RadioItem,
2174
2570
  {
2175
2571
  ref,
@@ -2185,7 +2581,7 @@ var DropdownMenuRadioItem = React18__namespace.forwardRef(({ className, children
2185
2581
  }
2186
2582
  ));
2187
2583
  DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
2188
- var DropdownMenuLabel = React18__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2584
+ var DropdownMenuLabel = React20__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2189
2585
  DropdownMenuPrimitive__namespace.Label,
2190
2586
  {
2191
2587
  ref,
@@ -2198,7 +2594,7 @@ var DropdownMenuLabel = React18__namespace.forwardRef(({ className, inset, ...pr
2198
2594
  }
2199
2595
  ));
2200
2596
  DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
2201
- var DropdownMenuSeparator = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2597
+ var DropdownMenuSeparator = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2202
2598
  DropdownMenuPrimitive__namespace.Separator,
2203
2599
  {
2204
2600
  ref,
@@ -2422,7 +2818,7 @@ function ContextMenuShortcut({
2422
2818
  }
2423
2819
  );
2424
2820
  }
2425
- var IconButton = React18__namespace.default.forwardRef(
2821
+ var IconButton = React20__namespace.default.forwardRef(
2426
2822
  ({ variant = uikitContracts.ButtonVariant.Ghost, size = uikitContracts.IconButtonSize.Default, className, ...props }, ref) => {
2427
2823
  const sizeStyles = {
2428
2824
  [uikitContracts.IconButtonSize.Small]: "h-8 w-8",
@@ -2442,7 +2838,7 @@ var IconButton = React18__namespace.default.forwardRef(
2442
2838
  }
2443
2839
  );
2444
2840
  IconButton.displayName = "IconButton";
2445
- var DropdownButton = React18__namespace.default.forwardRef(({ children, variant = uikitContracts.ButtonVariant.Outline, className, ...props }, ref) => {
2841
+ var DropdownButton = React20__namespace.default.forwardRef(({ children, variant = uikitContracts.ButtonVariant.Outline, className, ...props }, ref) => {
2446
2842
  return /* @__PURE__ */ jsxRuntime.jsxs(
2447
2843
  Button,
2448
2844
  {
@@ -2452,13 +2848,13 @@ var DropdownButton = React18__namespace.default.forwardRef(({ children, variant
2452
2848
  ...props,
2453
2849
  children: [
2454
2850
  /* @__PURE__ */ jsxRuntime.jsx("span", { children }),
2455
- /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "h-4 w-4" })
2851
+ /* @__PURE__ */ jsxRuntime.jsx(ChevronDownIcon, { className: "h-4 w-4" })
2456
2852
  ]
2457
2853
  }
2458
2854
  );
2459
2855
  });
2460
2856
  DropdownButton.displayName = "DropdownButton";
2461
- var Sidebar = React18__namespace.forwardRef(({ collapsed = false, className, children, ...props }, ref) => {
2857
+ var Sidebar = React20__namespace.forwardRef(({ collapsed = false, className, children, ...props }, ref) => {
2462
2858
  return /* @__PURE__ */ jsxRuntime.jsx(
2463
2859
  "aside",
2464
2860
  {
@@ -2477,7 +2873,7 @@ var Sidebar = React18__namespace.forwardRef(({ collapsed = false, className, chi
2477
2873
  );
2478
2874
  });
2479
2875
  Sidebar.displayName = "Sidebar";
2480
- var SidebarContent = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2876
+ var SidebarContent = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2481
2877
  "div",
2482
2878
  {
2483
2879
  ref,
@@ -2491,7 +2887,7 @@ var SidebarContent = React18__namespace.forwardRef(({ className, ...props }, ref
2491
2887
  }
2492
2888
  ));
2493
2889
  SidebarContent.displayName = "SidebarContent";
2494
- var SidebarMenu = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2890
+ var SidebarMenu = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2495
2891
  "ul",
2496
2892
  {
2497
2893
  ref,
@@ -2501,7 +2897,7 @@ var SidebarMenu = React18__namespace.forwardRef(({ className, ...props }, ref) =
2501
2897
  }
2502
2898
  ));
2503
2899
  SidebarMenu.displayName = "SidebarMenu";
2504
- var SidebarMenuItem = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2900
+ var SidebarMenuItem = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2505
2901
  "li",
2506
2902
  {
2507
2903
  ref,
@@ -2533,7 +2929,7 @@ var sidebarMenuButtonVariants = classVarianceAuthority.cva(
2533
2929
  }
2534
2930
  }
2535
2931
  );
2536
- var SidebarMenuButton = React18__namespace.forwardRef(
2932
+ var SidebarMenuButton = React20__namespace.forwardRef(
2537
2933
  ({
2538
2934
  asChild = false,
2539
2935
  isActive = false,
@@ -2559,7 +2955,7 @@ var SidebarMenuButton = React18__namespace.forwardRef(
2559
2955
  }
2560
2956
  );
2561
2957
  SidebarMenuButton.displayName = "SidebarMenuButton";
2562
- var SidebarMenuIcon = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2958
+ var SidebarMenuIcon = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2563
2959
  "span",
2564
2960
  {
2565
2961
  ref,
@@ -2568,7 +2964,7 @@ var SidebarMenuIcon = React18__namespace.forwardRef(({ className, ...props }, re
2568
2964
  }
2569
2965
  ));
2570
2966
  SidebarMenuIcon.displayName = "SidebarMenuIcon";
2571
- var SidebarMenuLabel = React18__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2967
+ var SidebarMenuLabel = React20__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2572
2968
  "span",
2573
2969
  {
2574
2970
  ref,
@@ -2577,7 +2973,7 @@ var SidebarMenuLabel = React18__namespace.forwardRef(({ className, ...props }, r
2577
2973
  }
2578
2974
  ));
2579
2975
  SidebarMenuLabel.displayName = "SidebarMenuLabel";
2580
- var SidebarHeader = React18__namespace.forwardRef(
2976
+ var SidebarHeader = React20__namespace.forwardRef(
2581
2977
  ({ logo, logoText, collapsed = false, onClick, className, ...props }, ref) => {
2582
2978
  return /* @__PURE__ */ jsxRuntime.jsxs(
2583
2979
  "div",
@@ -2600,7 +2996,7 @@ var SidebarHeader = React18__namespace.forwardRef(
2600
2996
  }
2601
2997
  );
2602
2998
  SidebarHeader.displayName = "SidebarHeader";
2603
- var UserInfo = React18__namespace.default.forwardRef(
2999
+ var UserInfo = React20__namespace.default.forwardRef(
2604
3000
  ({ displayName, email, avatarUrl, className, loading }, ref) => {
2605
3001
  const getInitials = () => {
2606
3002
  if (!displayName) return lodash.toUpper(email?.[0] || "") || "?";
@@ -2946,6 +3342,32 @@ var CloseIcon = ({ className = "" }) => {
2946
3342
  }
2947
3343
  );
2948
3344
  };
3345
+ var CalendarIcon = ({
3346
+ className = "",
3347
+ ...props
3348
+ }) => {
3349
+ return /* @__PURE__ */ jsxRuntime.jsxs(
3350
+ "svg",
3351
+ {
3352
+ className,
3353
+ width: "16",
3354
+ height: "16",
3355
+ viewBox: "0 0 24 24",
3356
+ fill: "none",
3357
+ stroke: "currentColor",
3358
+ strokeWidth: "2",
3359
+ strokeLinecap: "round",
3360
+ strokeLinejoin: "round",
3361
+ ...props,
3362
+ children: [
3363
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 2v4" }),
3364
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 2v4" }),
3365
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
3366
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10h18" })
3367
+ ]
3368
+ }
3369
+ );
3370
+ };
2949
3371
 
2950
3372
  // src/styles/applyTheme.ts
2951
3373
  var hslToVar = (color) => {
@@ -3054,6 +3476,10 @@ Object.defineProperty(exports, "Cell", {
3054
3476
  enumerable: true,
3055
3477
  get: function () { return recharts.Cell; }
3056
3478
  });
3479
+ Object.defineProperty(exports, "ChartLabel", {
3480
+ enumerable: true,
3481
+ get: function () { return recharts.Label; }
3482
+ });
3057
3483
  Object.defineProperty(exports, "ChartLegend", {
3058
3484
  enumerable: true,
3059
3485
  get: function () { return recharts.Legend; }
@@ -3094,10 +3520,6 @@ Object.defineProperty(exports, "FunnelChart", {
3094
3520
  enumerable: true,
3095
3521
  get: function () { return recharts.FunnelChart; }
3096
3522
  });
3097
- Object.defineProperty(exports, "Label", {
3098
- enumerable: true,
3099
- get: function () { return recharts.Label; }
3100
- });
3101
3523
  Object.defineProperty(exports, "LabelList", {
3102
3524
  enumerable: true,
3103
3525
  get: function () { return recharts.LabelList; }
@@ -3224,6 +3646,9 @@ exports.BreadcrumbPage = BreadcrumbPage;
3224
3646
  exports.BreadcrumbSeparator = BreadcrumbSeparator;
3225
3647
  exports.Button = Button;
3226
3648
  exports.CLOSE_ICON_ID = CLOSE_ICON_ID;
3649
+ exports.Calendar = Calendar;
3650
+ exports.CalendarDayButton = CalendarDayButton;
3651
+ exports.CalendarIcon = CalendarIcon;
3227
3652
  exports.Card = Card;
3228
3653
  exports.CardContent = CardContent;
3229
3654
  exports.CardDescription = CardDescription;
@@ -3240,6 +3665,10 @@ exports.ChartLegendContent = ChartLegendContent;
3240
3665
  exports.ChartTooltipContent = ChartTooltipContent;
3241
3666
  exports.ChatInput = ChatInput;
3242
3667
  exports.Checkbox = Checkbox;
3668
+ exports.ChevronDownIcon = ChevronDownIcon;
3669
+ exports.ChevronLeftIcon = ChevronLeftIcon;
3670
+ exports.ChevronRightIcon = ChevronRightIcon;
3671
+ exports.ChevronUpIcon = ChevronUpIcon;
3243
3672
  exports.CloseIcon = CloseIcon;
3244
3673
  exports.Collapsible = Collapsible;
3245
3674
  exports.CollapsibleContent = CollapsibleContent2;
@@ -3301,6 +3730,11 @@ exports.HoverCardContent = HoverCardContent;
3301
3730
  exports.HoverCardTrigger = HoverCardTrigger;
3302
3731
  exports.IconButton = IconButton;
3303
3732
  exports.Input = Input;
3733
+ exports.InputOTP = InputOTP;
3734
+ exports.InputOTPGroup = InputOTPGroup;
3735
+ exports.InputOTPSeparator = InputOTPSeparator;
3736
+ exports.InputOTPSlot = InputOTPSlot;
3737
+ exports.Label = Label;
3304
3738
  exports.MENU_ICON_ID = MENU_ICON_ID;
3305
3739
  exports.MenuIcon = MenuIcon;
3306
3740
  exports.Menubar = Menubar;
@@ -3321,6 +3755,9 @@ exports.MenubarSubTrigger = MenubarSubTrigger;
3321
3755
  exports.MenubarTrigger = MenubarTrigger;
3322
3756
  exports.MessageBubble = MessageBubble;
3323
3757
  exports.MessageType = MessageType;
3758
+ exports.NativeSelect = NativeSelect;
3759
+ exports.NativeSelectOptGroup = NativeSelectOptGroup;
3760
+ exports.NativeSelectOption = NativeSelectOption;
3324
3761
  exports.NavigationMenu = NavigationMenu;
3325
3762
  exports.NavigationMenuContent = NavigationMenuContent;
3326
3763
  exports.NavigationMenuIndicator = NavigationMenuIndicator;
@@ -3341,6 +3778,8 @@ exports.PopoverAnchor = PopoverAnchor;
3341
3778
  exports.PopoverContent = PopoverContent;
3342
3779
  exports.PopoverTrigger = PopoverTrigger;
3343
3780
  exports.Progress = Progress;
3781
+ exports.RadioGroup = RadioGroup;
3782
+ exports.RadioGroupItem = RadioGroupItem;
3344
3783
  exports.ResizableHandle = ResizableHandle;
3345
3784
  exports.ResizablePanel = ResizablePanel;
3346
3785
  exports.ResizablePanelGroup = ResizablePanelGroup;