luaniverse 4.0.43 → 4.1.0

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.js CHANGED
@@ -1,5 +1,5 @@
1
- import * as React116 from 'react';
2
- import React116__default from 'react';
1
+ import * as React118 from 'react';
2
+ import React118__default from 'react';
3
3
  import { Slot } from '@radix-ui/react-slot';
4
4
  import { cva } from 'class-variance-authority';
5
5
  import { clsx } from 'clsx';
@@ -16,6 +16,7 @@ import * as LabelPrimitive from '@radix-ui/react-label';
16
16
  import * as SwitchPrimitives from '@radix-ui/react-switch';
17
17
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
18
18
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
19
+ import * as SliderPrimitive from '@radix-ui/react-slider';
19
20
 
20
21
  var __defProp = Object.defineProperty;
21
22
  var __export = (target, all) => {
@@ -201,7 +202,7 @@ var buttonVariants = cva(
201
202
  }
202
203
  );
203
204
  var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
204
- var Button = React116.forwardRef(
205
+ var Button = React118.forwardRef(
205
206
  ({
206
207
  className,
207
208
  variant,
@@ -219,7 +220,7 @@ var Button = React116.forwardRef(
219
220
  const Comp = asChild ? Slot : "button";
220
221
  const hasStartAdornment = !!startAdornment;
221
222
  const hasEndAdornment = !!endAdornment;
222
- const hasTextContent = React116.Children.toArray(children).some(
223
+ const hasTextContent = React118.Children.toArray(children).some(
223
224
  (child) => typeof child === "string" && child.trim().length > 0
224
225
  );
225
226
  const needsAriaLabel = !hasTextContent && !ariaLabel;
@@ -274,7 +275,7 @@ var iconButtonVariants = {
274
275
  large: "lua:p-3 lua:size-12"
275
276
  }
276
277
  };
277
- var IconButton = React116.forwardRef(
278
+ var IconButton = React118.forwardRef(
278
279
  ({
279
280
  className,
280
281
  variant,
@@ -315,7 +316,7 @@ var IconButton = React116.forwardRef(
315
316
  className: "lua:text-current",
316
317
  "aria-hidden": "true"
317
318
  }
318
- ) }) : /* @__PURE__ */ jsx(Fragment, { children: React116.cloneElement(children, {
319
+ ) }) : /* @__PURE__ */ jsx(Fragment, { children: React118.cloneElement(children, {
319
320
  "aria-hidden": "true"
320
321
  }) })
321
322
  }
@@ -323,7 +324,7 @@ var IconButton = React116.forwardRef(
323
324
  }
324
325
  );
325
326
  IconButton.displayName = "IconButton";
326
- var Input = React116.forwardRef(
327
+ var Input = React118.forwardRef(
327
328
  ({
328
329
  className,
329
330
  type = "text",
@@ -339,7 +340,7 @@ var Input = React116.forwardRef(
339
340
  disabled,
340
341
  ...props
341
342
  }, ref) => {
342
- const generatedId = React116.useId();
343
+ const generatedId = React118.useId();
343
344
  const inputId = id || generatedId;
344
345
  const descriptionId = description ? `${inputId}-description` : void 0;
345
346
  const errorId = error ? `${inputId}-error` : void 0;
@@ -486,7 +487,7 @@ var badgeVariants = cva(
486
487
  }
487
488
  }
488
489
  );
489
- var Badge = React116.forwardRef(
490
+ var Badge = React118.forwardRef(
490
491
  ({ className, variant, asChild = false, ...props }, ref) => {
491
492
  const Comp = asChild ? Slot : "span";
492
493
  return /* @__PURE__ */ jsx(
@@ -501,7 +502,7 @@ var Badge = React116.forwardRef(
501
502
  }
502
503
  );
503
504
  Badge.displayName = "Badge";
504
- var Textarea = React116.forwardRef(
505
+ var Textarea = React118.forwardRef(
505
506
  ({
506
507
  className,
507
508
  description,
@@ -514,7 +515,7 @@ var Textarea = React116.forwardRef(
514
515
  disabled,
515
516
  ...props
516
517
  }, ref) => {
517
- const generatedId = React116.useId();
518
+ const generatedId = React118.useId();
518
519
  const textareaId = id || generatedId;
519
520
  const descriptionId = description ? `${textareaId}-description` : void 0;
520
521
  const errorId = error ? `${textareaId}-error` : void 0;
@@ -609,7 +610,7 @@ var Tabs = TabsPrimitive.Root;
609
610
  var tabsListVariants = cva([
610
611
  "lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
611
612
  ].join(" "));
612
- var TabsList = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
613
+ var TabsList = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
613
614
  TabsPrimitive.List,
614
615
  {
615
616
  ref,
@@ -625,7 +626,7 @@ var tabsTriggerVariants = cva([
625
626
  "lua:data-[state=active]:text-blue-600 lua:data-[state=active]:border-b-2 lua:data-[state=active]:border-blue-600 lua:data-[state=active]:-mb-px",
626
627
  "lua:hover:text-gray-900 lua:text-gray-600"
627
628
  ].join(" "));
628
- var TabsTrigger = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
629
+ var TabsTrigger = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
629
630
  TabsPrimitive.Trigger,
630
631
  {
631
632
  ref,
@@ -638,7 +639,7 @@ var tabsContentVariants = cva([
638
639
  "lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
639
640
  "lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
640
641
  ].join(" "));
641
- var TabsContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
642
+ var TabsContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
642
643
  TabsPrimitive.Content,
643
644
  {
644
645
  ref,
@@ -647,7 +648,7 @@ var TabsContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
647
648
  }
648
649
  ));
649
650
  TabsContent.displayName = TabsPrimitive.Content.displayName;
650
- var InputOTP = React116.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
651
+ var InputOTP = React118.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
651
652
  OTPInput,
652
653
  {
653
654
  ref,
@@ -660,10 +661,10 @@ var InputOTP = React116.forwardRef(({ className, containerClassName, ...props },
660
661
  }
661
662
  ));
662
663
  InputOTP.displayName = "InputOTP";
663
- var InputOTPGroup = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
664
+ var InputOTPGroup = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
664
665
  InputOTPGroup.displayName = "InputOTPGroup";
665
- var InputOTPSlot = React116.forwardRef(({ index, className, ...props }, ref) => {
666
- const inputOTPContext = React116.useContext(OTPInputContext);
666
+ var InputOTPSlot = React118.forwardRef(({ index, className, ...props }, ref) => {
667
+ const inputOTPContext = React118.useContext(OTPInputContext);
667
668
  const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
668
669
  return /* @__PURE__ */ jsxs(
669
670
  "div",
@@ -683,7 +684,7 @@ var InputOTPSlot = React116.forwardRef(({ index, className, ...props }, ref) =>
683
684
  );
684
685
  });
685
686
  InputOTPSlot.displayName = "InputOTPSlot";
686
- var InputOTPSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
687
+ var InputOTPSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
687
688
  "div",
688
689
  {
689
690
  ref,
@@ -697,7 +698,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
697
698
  var TooltipProvider = TooltipPrimitive.Provider;
698
699
  var Tooltip = TooltipPrimitive.Root;
699
700
  var TooltipTrigger = TooltipPrimitive.Trigger;
700
- var TooltipArrow = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
701
+ var TooltipArrow = React118.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
701
702
  TooltipPrimitive.Arrow,
702
703
  {
703
704
  ref,
@@ -714,7 +715,7 @@ var TooltipArrow = React116.forwardRef(({ className, style, ...props }, ref) =>
714
715
  }
715
716
  ));
716
717
  TooltipArrow.displayName = TooltipPrimitive.Arrow.displayName;
717
- var TooltipContent = React116.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
718
+ var TooltipContent = React118.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
718
719
  TooltipPrimitive.Content,
719
720
  {
720
721
  ref,
@@ -738,7 +739,7 @@ var TooltipContent = React116.forwardRef(({ className, sideOffset = 4, style, ..
738
739
  }
739
740
  ) }));
740
741
  TooltipContent.displayName = TooltipPrimitive.Content.displayName;
741
- var Card = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
742
+ var Card = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
742
743
  "div",
743
744
  {
744
745
  ref,
@@ -750,7 +751,7 @@ var Card = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
750
751
  }
751
752
  ));
752
753
  Card.displayName = "Card";
753
- var CardHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
754
+ var CardHeader = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
754
755
  "div",
755
756
  {
756
757
  ref,
@@ -759,7 +760,7 @@ var CardHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PUR
759
760
  }
760
761
  ));
761
762
  CardHeader.displayName = "CardHeader";
762
- var CardTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
763
+ var CardTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
763
764
  "div",
764
765
  {
765
766
  ref,
@@ -768,7 +769,7 @@ var CardTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
768
769
  }
769
770
  ));
770
771
  CardTitle.displayName = "CardTitle";
771
- var CardDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
772
+ var CardDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
772
773
  "div",
773
774
  {
774
775
  ref,
@@ -777,9 +778,9 @@ var CardDescription = React116.forwardRef(({ className, ...props }, ref) => /* @
777
778
  }
778
779
  ));
779
780
  CardDescription.displayName = "CardDescription";
780
- var CardContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
781
+ var CardContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
781
782
  CardContent.displayName = "CardContent";
782
- var CardFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
783
+ var CardFooter = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
783
784
  "div",
784
785
  {
785
786
  ref,
@@ -852,7 +853,7 @@ function getAccessibilityProps(props, componentName) {
852
853
  restProps
853
854
  };
854
855
  }
855
- var ArrowLeft = React116.forwardRef(
856
+ var ArrowLeft = React118.forwardRef(
856
857
  ({ size = 20, ...props }, ref) => {
857
858
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
858
859
  return /* @__PURE__ */ jsxs(
@@ -881,7 +882,7 @@ var ArrowLeft = React116.forwardRef(
881
882
  }
882
883
  );
883
884
  ArrowLeft.displayName = "ArrowLeft";
884
- var ArrowRight = React116.forwardRef(
885
+ var ArrowRight = React118.forwardRef(
885
886
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
886
887
  "svg",
887
888
  {
@@ -903,7 +904,7 @@ var ArrowRight = React116.forwardRef(
903
904
  )
904
905
  );
905
906
  ArrowRight.displayName = "ArrowRight";
906
- var ArrowClockwiseIcon = React116.forwardRef(
907
+ var ArrowClockwiseIcon = React118.forwardRef(
907
908
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
908
909
  "svg",
909
910
  {
@@ -925,7 +926,7 @@ var ArrowClockwiseIcon = React116.forwardRef(
925
926
  )
926
927
  );
927
928
  ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
928
- var ArrowsClockwiseIcon = React116.forwardRef(
929
+ var ArrowsClockwiseIcon = React118.forwardRef(
929
930
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
930
931
  "svg",
931
932
  {
@@ -947,7 +948,7 @@ var ArrowsClockwiseIcon = React116.forwardRef(
947
948
  )
948
949
  );
949
950
  ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
950
- var ArrowSquareOut = React116.forwardRef(
951
+ var ArrowSquareOut = React118.forwardRef(
951
952
  ({ size = 20, ...props }, ref) => {
952
953
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
953
954
  return /* @__PURE__ */ jsxs(
@@ -976,7 +977,7 @@ var ArrowSquareOut = React116.forwardRef(
976
977
  }
977
978
  );
978
979
  ArrowSquareOut.displayName = "ArrowSquareOut";
979
- var ArrowUp = React116.forwardRef(
980
+ var ArrowUp = React118.forwardRef(
980
981
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
981
982
  "svg",
982
983
  {
@@ -998,7 +999,7 @@ var ArrowUp = React116.forwardRef(
998
999
  )
999
1000
  );
1000
1001
  ArrowUp.displayName = "ArrowUp";
1001
- var BooksIcon = React116.forwardRef(
1002
+ var BooksIcon = React118.forwardRef(
1002
1003
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1003
1004
  "svg",
1004
1005
  {
@@ -1020,7 +1021,7 @@ var BooksIcon = React116.forwardRef(
1020
1021
  )
1021
1022
  );
1022
1023
  BooksIcon.displayName = "BooksIcon";
1023
- var Camera = React116.forwardRef(
1024
+ var Camera = React118.forwardRef(
1024
1025
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1025
1026
  "svg",
1026
1027
  {
@@ -1042,7 +1043,7 @@ var Camera = React116.forwardRef(
1042
1043
  )
1043
1044
  );
1044
1045
  Camera.displayName = "Camera";
1045
- var CaretDown = React116.forwardRef(
1046
+ var CaretDown = React118.forwardRef(
1046
1047
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1047
1048
  "svg",
1048
1049
  {
@@ -1064,7 +1065,7 @@ var CaretDown = React116.forwardRef(
1064
1065
  )
1065
1066
  );
1066
1067
  CaretDown.displayName = "CaretDown";
1067
- var CaretRight = React116.forwardRef(
1068
+ var CaretRight = React118.forwardRef(
1068
1069
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1069
1070
  "svg",
1070
1071
  {
@@ -1086,7 +1087,7 @@ var CaretRight = React116.forwardRef(
1086
1087
  )
1087
1088
  );
1088
1089
  CaretRight.displayName = "CaretRight";
1089
- var CaretUpIcon = React116.forwardRef(
1090
+ var CaretUpIcon = React118.forwardRef(
1090
1091
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1091
1092
  "svg",
1092
1093
  {
@@ -1108,7 +1109,7 @@ var CaretUpIcon = React116.forwardRef(
1108
1109
  )
1109
1110
  );
1110
1111
  CaretUpIcon.displayName = "CaretUpIcon";
1111
- var ChartBar = React116.forwardRef(
1112
+ var ChartBar = React118.forwardRef(
1112
1113
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1113
1114
  "svg",
1114
1115
  {
@@ -1130,7 +1131,7 @@ var ChartBar = React116.forwardRef(
1130
1131
  )
1131
1132
  );
1132
1133
  ChartBar.displayName = "ChartBar";
1133
- var Chat = React116.forwardRef(
1134
+ var Chat = React118.forwardRef(
1134
1135
  ({ size = 20, ...props }, ref) => {
1135
1136
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
1136
1137
  return /* @__PURE__ */ jsxs(
@@ -1159,7 +1160,7 @@ var Chat = React116.forwardRef(
1159
1160
  }
1160
1161
  );
1161
1162
  Chat.displayName = "Chat";
1162
- var ChatsCircle = React116.forwardRef(
1163
+ var ChatsCircle = React118.forwardRef(
1163
1164
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1164
1165
  "svg",
1165
1166
  {
@@ -1181,7 +1182,7 @@ var ChatsCircle = React116.forwardRef(
1181
1182
  )
1182
1183
  );
1183
1184
  ChatsCircle.displayName = "ChatsCircle";
1184
- var Check = React116.forwardRef(
1185
+ var Check = React118.forwardRef(
1185
1186
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1186
1187
  "svg",
1187
1188
  {
@@ -1203,7 +1204,7 @@ var Check = React116.forwardRef(
1203
1204
  )
1204
1205
  );
1205
1206
  Check.displayName = "Check";
1206
- var CheckSquareIcon = React116.forwardRef(
1207
+ var CheckSquareIcon = React118.forwardRef(
1207
1208
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1208
1209
  "svg",
1209
1210
  {
@@ -1225,7 +1226,7 @@ var CheckSquareIcon = React116.forwardRef(
1225
1226
  )
1226
1227
  );
1227
1228
  CheckSquareIcon.displayName = "CheckSquareIcon";
1228
- var Circle = React116.forwardRef(
1229
+ var Circle = React118.forwardRef(
1229
1230
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1230
1231
  "svg",
1231
1232
  {
@@ -1247,7 +1248,7 @@ var Circle = React116.forwardRef(
1247
1248
  )
1248
1249
  );
1249
1250
  Circle.displayName = "Circle";
1250
- var ClipboardTextIcon = React116.forwardRef(
1251
+ var ClipboardTextIcon = React118.forwardRef(
1251
1252
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1252
1253
  "svg",
1253
1254
  {
@@ -1269,7 +1270,7 @@ var ClipboardTextIcon = React116.forwardRef(
1269
1270
  )
1270
1271
  );
1271
1272
  ClipboardTextIcon.displayName = "ClipboardTextIcon";
1272
- var Clock = React116.forwardRef(
1273
+ var Clock = React118.forwardRef(
1273
1274
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
1274
1275
  "svg",
1275
1276
  {
@@ -1291,7 +1292,7 @@ var Clock = React116.forwardRef(
1291
1292
  )
1292
1293
  );
1293
1294
  Clock.displayName = "Clock";
1294
- var CopySimpleIcon = React116.forwardRef(
1295
+ var CopySimpleIcon = React118.forwardRef(
1295
1296
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1296
1297
  "svg",
1297
1298
  {
@@ -1313,7 +1314,7 @@ var CopySimpleIcon = React116.forwardRef(
1313
1314
  )
1314
1315
  );
1315
1316
  CopySimpleIcon.displayName = "CopySimpleIcon";
1316
- var CreditCard = React116.forwardRef(
1317
+ var CreditCard = React118.forwardRef(
1317
1318
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1318
1319
  "svg",
1319
1320
  {
@@ -1335,7 +1336,7 @@ var CreditCard = React116.forwardRef(
1335
1336
  )
1336
1337
  );
1337
1338
  CreditCard.displayName = "CreditCard";
1338
- var CurrencyCircleDollar = React116__default.forwardRef(
1339
+ var CurrencyCircleDollar = React118__default.forwardRef(
1339
1340
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1340
1341
  "svg",
1341
1342
  {
@@ -1357,7 +1358,7 @@ var CurrencyCircleDollar = React116__default.forwardRef(
1357
1358
  )
1358
1359
  );
1359
1360
  CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
1360
- var DotsSixVerticalIcon = React116.forwardRef(
1361
+ var DotsSixVerticalIcon = React118.forwardRef(
1361
1362
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1362
1363
  "svg",
1363
1364
  {
@@ -1379,7 +1380,7 @@ var DotsSixVerticalIcon = React116.forwardRef(
1379
1380
  )
1380
1381
  );
1381
1382
  DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
1382
- var DotsThree = React116.forwardRef(
1383
+ var DotsThree = React118.forwardRef(
1383
1384
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1384
1385
  "svg",
1385
1386
  {
@@ -1401,7 +1402,7 @@ var DotsThree = React116.forwardRef(
1401
1402
  )
1402
1403
  );
1403
1404
  DotsThree.displayName = "DotsThree";
1404
- var DotsThreeVertical = React116.forwardRef(
1405
+ var DotsThreeVertical = React118.forwardRef(
1405
1406
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1406
1407
  "svg",
1407
1408
  {
@@ -1423,7 +1424,7 @@ var DotsThreeVertical = React116.forwardRef(
1423
1424
  )
1424
1425
  );
1425
1426
  DotsThreeVertical.displayName = "DotsThreeVertical";
1426
- var FacebookLogo = React116.forwardRef(
1427
+ var FacebookLogo = React118.forwardRef(
1427
1428
  ({ size = 20, ...props }, ref) => {
1428
1429
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
1429
1430
  return /* @__PURE__ */ jsxs(
@@ -1452,7 +1453,7 @@ var FacebookLogo = React116.forwardRef(
1452
1453
  }
1453
1454
  );
1454
1455
  FacebookLogo.displayName = "FacebookLogo";
1455
- var FolderIcon = React116.forwardRef(
1456
+ var FolderIcon = React118.forwardRef(
1456
1457
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1457
1458
  "svg",
1458
1459
  {
@@ -1474,7 +1475,7 @@ var FolderIcon = React116.forwardRef(
1474
1475
  )
1475
1476
  );
1476
1477
  FolderIcon.displayName = "FolderIcon";
1477
- var FolderSimpleLockIcon = React116.forwardRef(
1478
+ var FolderSimpleLockIcon = React118.forwardRef(
1478
1479
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1479
1480
  "svg",
1480
1481
  {
@@ -1496,7 +1497,7 @@ var FolderSimpleLockIcon = React116.forwardRef(
1496
1497
  )
1497
1498
  );
1498
1499
  FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
1499
- var Gear = React116.forwardRef(
1500
+ var Gear = React118.forwardRef(
1500
1501
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1501
1502
  "svg",
1502
1503
  {
@@ -1518,7 +1519,7 @@ var Gear = React116.forwardRef(
1518
1519
  )
1519
1520
  );
1520
1521
  Gear.displayName = "Gear";
1521
- var GearSix = React116.forwardRef(
1522
+ var GearSix = React118.forwardRef(
1522
1523
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1523
1524
  "svg",
1524
1525
  {
@@ -1540,7 +1541,7 @@ var GearSix = React116.forwardRef(
1540
1541
  )
1541
1542
  );
1542
1543
  GearSix.displayName = "GearSix";
1543
- var GitCommit = React116.forwardRef(
1544
+ var GitCommit = React118.forwardRef(
1544
1545
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
1545
1546
  "svg",
1546
1547
  {
@@ -1562,7 +1563,7 @@ var GitCommit = React116.forwardRef(
1562
1563
  )
1563
1564
  );
1564
1565
  GitCommit.displayName = "GitCommit";
1565
- var Headset = React116.forwardRef(
1566
+ var Headset = React118.forwardRef(
1566
1567
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
1567
1568
  "svg",
1568
1569
  {
@@ -1584,7 +1585,7 @@ var Headset = React116.forwardRef(
1584
1585
  )
1585
1586
  );
1586
1587
  Headset.displayName = "Headset";
1587
- var ImageIcon = React116.forwardRef(
1588
+ var ImageIcon = React118.forwardRef(
1588
1589
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1589
1590
  "svg",
1590
1591
  {
@@ -1606,7 +1607,7 @@ var ImageIcon = React116.forwardRef(
1606
1607
  )
1607
1608
  );
1608
1609
  ImageIcon.displayName = "ImageIcon";
1609
- var InstagramLogo = React116.forwardRef(
1610
+ var InstagramLogo = React118.forwardRef(
1610
1611
  ({ size = 20, ...props }, ref) => {
1611
1612
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
1612
1613
  return /* @__PURE__ */ jsxs(
@@ -1635,7 +1636,7 @@ var InstagramLogo = React116.forwardRef(
1635
1636
  }
1636
1637
  );
1637
1638
  InstagramLogo.displayName = "InstagramLogo";
1638
- var KeyIcon = React116.forwardRef(
1639
+ var KeyIcon = React118.forwardRef(
1639
1640
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1640
1641
  "svg",
1641
1642
  {
@@ -1657,7 +1658,7 @@ var KeyIcon = React116.forwardRef(
1657
1658
  )
1658
1659
  );
1659
1660
  KeyIcon.displayName = "KeyIcon";
1660
- var LinkIcon = React116.forwardRef(
1661
+ var LinkIcon = React118.forwardRef(
1661
1662
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1662
1663
  "svg",
1663
1664
  {
@@ -1679,7 +1680,7 @@ var LinkIcon = React116.forwardRef(
1679
1680
  )
1680
1681
  );
1681
1682
  LinkIcon.displayName = "LinkIcon";
1682
- var LinkSimple = React116.forwardRef(
1683
+ var LinkSimple = React118.forwardRef(
1683
1684
  ({ size = 20, ...props }, ref) => {
1684
1685
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
1685
1686
  return /* @__PURE__ */ jsxs(
@@ -1708,7 +1709,7 @@ var LinkSimple = React116.forwardRef(
1708
1709
  }
1709
1710
  );
1710
1711
  LinkSimple.displayName = "LinkSimple";
1711
- var LockSimple = React116__default.forwardRef(
1712
+ var LockSimple = React118__default.forwardRef(
1712
1713
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
1713
1714
  "svg",
1714
1715
  {
@@ -1730,7 +1731,7 @@ var LockSimple = React116__default.forwardRef(
1730
1731
  )
1731
1732
  );
1732
1733
  LockSimple.displayName = "LockSimple";
1733
- var Logo = React116.forwardRef(
1734
+ var Logo = React118.forwardRef(
1734
1735
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
1735
1736
  "svg",
1736
1737
  {
@@ -2204,7 +2205,7 @@ var Logo = React116.forwardRef(
2204
2205
  )
2205
2206
  );
2206
2207
  Logo.displayName = "Logo";
2207
- var MagnifyingGlass = React116.forwardRef(
2208
+ var MagnifyingGlass = React118.forwardRef(
2208
2209
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2209
2210
  "svg",
2210
2211
  {
@@ -2226,7 +2227,7 @@ var MagnifyingGlass = React116.forwardRef(
2226
2227
  )
2227
2228
  );
2228
2229
  MagnifyingGlass.displayName = "MagnifyingGlass";
2229
- var MapPin = React116.forwardRef(
2230
+ var MapPin = React118.forwardRef(
2230
2231
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2231
2232
  "svg",
2232
2233
  {
@@ -2248,7 +2249,7 @@ var MapPin = React116.forwardRef(
2248
2249
  )
2249
2250
  );
2250
2251
  MapPin.displayName = "MapPin";
2251
- var Microphone = React116.forwardRef(
2252
+ var Microphone = React118.forwardRef(
2252
2253
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2253
2254
  "svg",
2254
2255
  {
@@ -2270,7 +2271,7 @@ var Microphone = React116.forwardRef(
2270
2271
  )
2271
2272
  );
2272
2273
  Microphone.displayName = "Microphone";
2273
- var Minus = React116.forwardRef(
2274
+ var Minus = React118.forwardRef(
2274
2275
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
2275
2276
  "svg",
2276
2277
  {
@@ -2292,7 +2293,7 @@ var Minus = React116.forwardRef(
2292
2293
  )
2293
2294
  );
2294
2295
  Minus.displayName = "Minus";
2295
- var MinusCircleIcon = React116.forwardRef(
2296
+ var MinusCircleIcon = React118.forwardRef(
2296
2297
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2297
2298
  "svg",
2298
2299
  {
@@ -2314,7 +2315,7 @@ var MinusCircleIcon = React116.forwardRef(
2314
2315
  )
2315
2316
  );
2316
2317
  MinusCircleIcon.displayName = "MinusCircleIcon";
2317
- var PackageIcon = React116.forwardRef(
2318
+ var PackageIcon = React118.forwardRef(
2318
2319
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2319
2320
  "svg",
2320
2321
  {
@@ -2336,7 +2337,7 @@ var PackageIcon = React116.forwardRef(
2336
2337
  )
2337
2338
  );
2338
2339
  PackageIcon.displayName = "PackageIcon";
2339
- var Paperclip = React116.forwardRef(
2340
+ var Paperclip = React118.forwardRef(
2340
2341
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2341
2342
  "svg",
2342
2343
  {
@@ -2358,7 +2359,7 @@ var Paperclip = React116.forwardRef(
2358
2359
  )
2359
2360
  );
2360
2361
  Paperclip.displayName = "Paperclip";
2361
- var PaperPlane = React116.forwardRef(
2362
+ var PaperPlane = React118.forwardRef(
2362
2363
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
2363
2364
  "svg",
2364
2365
  {
@@ -2380,7 +2381,7 @@ var PaperPlane = React116.forwardRef(
2380
2381
  )
2381
2382
  );
2382
2383
  PaperPlane.displayName = "PaperPlane";
2383
- var PaperPlaneTilt = React116.forwardRef(
2384
+ var PaperPlaneTilt = React118.forwardRef(
2384
2385
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2385
2386
  "svg",
2386
2387
  {
@@ -2402,7 +2403,7 @@ var PaperPlaneTilt = React116.forwardRef(
2402
2403
  )
2403
2404
  );
2404
2405
  PaperPlaneTilt.displayName = "PaperPlaneTilt";
2405
- var PencilSimple = React116.forwardRef(
2406
+ var PencilSimple = React118.forwardRef(
2406
2407
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2407
2408
  "svg",
2408
2409
  {
@@ -2424,7 +2425,7 @@ var PencilSimple = React116.forwardRef(
2424
2425
  )
2425
2426
  );
2426
2427
  PencilSimple.displayName = "PencilSimple";
2427
- var PlugsRegular = React116.forwardRef(
2428
+ var PlugsRegular = React118.forwardRef(
2428
2429
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
2429
2430
  "svg",
2430
2431
  {
@@ -2446,7 +2447,7 @@ var PlugsRegular = React116.forwardRef(
2446
2447
  )
2447
2448
  );
2448
2449
  PlugsRegular.displayName = "PlugsRegular";
2449
- var ShoppingCartIcon = React116.forwardRef(
2450
+ var ShoppingCartIcon = React118.forwardRef(
2450
2451
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2451
2452
  "svg",
2452
2453
  {
@@ -2468,7 +2469,7 @@ var ShoppingCartIcon = React116.forwardRef(
2468
2469
  )
2469
2470
  );
2470
2471
  ShoppingCartIcon.displayName = "ShoppingCartIcon";
2471
- var Plus = React116.forwardRef(
2472
+ var Plus = React118.forwardRef(
2472
2473
  ({ size = 20, ...props }, ref) => {
2473
2474
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
2474
2475
  return /* @__PURE__ */ jsxs(
@@ -2497,7 +2498,7 @@ var Plus = React116.forwardRef(
2497
2498
  }
2498
2499
  );
2499
2500
  Plus.displayName = "Plus";
2500
- var RecordIcon = React116.forwardRef(
2501
+ var RecordIcon = React118.forwardRef(
2501
2502
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2502
2503
  "svg",
2503
2504
  {
@@ -2519,7 +2520,7 @@ var RecordIcon = React116.forwardRef(
2519
2520
  )
2520
2521
  );
2521
2522
  RecordIcon.displayName = "RecordIcon";
2522
- var SidebarSimple = React116.forwardRef(
2523
+ var SidebarSimple = React118.forwardRef(
2523
2524
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2524
2525
  "svg",
2525
2526
  {
@@ -2541,7 +2542,7 @@ var SidebarSimple = React116.forwardRef(
2541
2542
  )
2542
2543
  );
2543
2544
  SidebarSimple.displayName = "SidebarSimple";
2544
- var SignOut = React116.forwardRef(
2545
+ var SignOut = React118.forwardRef(
2545
2546
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2546
2547
  "svg",
2547
2548
  {
@@ -2563,7 +2564,7 @@ var SignOut = React116.forwardRef(
2563
2564
  )
2564
2565
  );
2565
2566
  SignOut.displayName = "SignOut";
2566
- var Storefront = React116.forwardRef(
2567
+ var Storefront = React118.forwardRef(
2567
2568
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2568
2569
  "svg",
2569
2570
  {
@@ -2585,7 +2586,7 @@ var Storefront = React116.forwardRef(
2585
2586
  )
2586
2587
  );
2587
2588
  Storefront.displayName = "Storefront";
2588
- var Tag = React116.forwardRef(
2589
+ var Tag = React118.forwardRef(
2589
2590
  ({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
2590
2591
  "svg",
2591
2592
  {
@@ -2607,7 +2608,7 @@ var Tag = React116.forwardRef(
2607
2608
  )
2608
2609
  );
2609
2610
  Tag.displayName = "Tag";
2610
- var Ticket = React116.forwardRef(
2611
+ var Ticket = React118.forwardRef(
2611
2612
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2612
2613
  "svg",
2613
2614
  {
@@ -2629,7 +2630,7 @@ var Ticket = React116.forwardRef(
2629
2630
  )
2630
2631
  );
2631
2632
  Ticket.displayName = "Ticket";
2632
- var Trash = React116.forwardRef(
2633
+ var Trash = React118.forwardRef(
2633
2634
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2634
2635
  "svg",
2635
2636
  {
@@ -2651,7 +2652,7 @@ var Trash = React116.forwardRef(
2651
2652
  )
2652
2653
  );
2653
2654
  Trash.displayName = "Trash";
2654
- var UserCircle = React116.forwardRef(
2655
+ var UserCircle = React118.forwardRef(
2655
2656
  ({ size = 24, ...props }, ref) => {
2656
2657
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
2657
2658
  return /* @__PURE__ */ jsxs(
@@ -2680,7 +2681,7 @@ var UserCircle = React116.forwardRef(
2680
2681
  }
2681
2682
  );
2682
2683
  UserCircle.displayName = "UserCircle";
2683
- var UserIcon = React116.forwardRef(
2684
+ var UserIcon = React118.forwardRef(
2684
2685
  ({ size = 24, ...props }, ref) => {
2685
2686
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
2686
2687
  return /* @__PURE__ */ jsxs(
@@ -2709,7 +2710,7 @@ var UserIcon = React116.forwardRef(
2709
2710
  }
2710
2711
  );
2711
2712
  UserIcon.displayName = "UserIcon";
2712
- var Users = React116.forwardRef(
2713
+ var Users = React118.forwardRef(
2713
2714
  ({ size = 20, ...props }, ref) => {
2714
2715
  const { accessibilityProps, restProps } = getAccessibilityProps(
2715
2716
  props,
@@ -2738,7 +2739,7 @@ var Users = React116.forwardRef(
2738
2739
  }
2739
2740
  );
2740
2741
  Users.displayName = "Users";
2741
- var VideoCamera = React116.forwardRef(
2742
+ var VideoCamera = React118.forwardRef(
2742
2743
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2743
2744
  "svg",
2744
2745
  {
@@ -2760,7 +2761,7 @@ var VideoCamera = React116.forwardRef(
2760
2761
  )
2761
2762
  );
2762
2763
  VideoCamera.displayName = "VideoCamera";
2763
- var WhatsAppLogo = React116.forwardRef(
2764
+ var WhatsAppLogo = React118.forwardRef(
2764
2765
  ({ size = 20, ...props }, ref) => {
2765
2766
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
2766
2767
  return /* @__PURE__ */ jsxs(
@@ -2789,7 +2790,7 @@ var WhatsAppLogo = React116.forwardRef(
2789
2790
  }
2790
2791
  );
2791
2792
  WhatsAppLogo.displayName = "WhatsAppLogo";
2792
- var WarningOctagon = React116.forwardRef(
2793
+ var WarningOctagon = React118.forwardRef(
2793
2794
  ({ size = 20, ...props }, ref) => {
2794
2795
  const { accessibilityProps, restProps } = getAccessibilityProps(
2795
2796
  props,
@@ -2818,7 +2819,7 @@ var WarningOctagon = React116.forwardRef(
2818
2819
  }
2819
2820
  );
2820
2821
  WarningOctagon.displayName = "WarningOctagon";
2821
- var WarningTriangle = React116.forwardRef(
2822
+ var WarningTriangle = React118.forwardRef(
2822
2823
  ({ size = 20, ...props }, ref) => {
2823
2824
  const { accessibilityProps, restProps } = getAccessibilityProps(
2824
2825
  props,
@@ -2847,7 +2848,7 @@ var WarningTriangle = React116.forwardRef(
2847
2848
  }
2848
2849
  );
2849
2850
  WarningTriangle.displayName = "WarningTriangle";
2850
- var Waveform = React116.forwardRef(
2851
+ var Waveform = React118.forwardRef(
2851
2852
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2852
2853
  "svg",
2853
2854
  {
@@ -2869,7 +2870,7 @@ var Waveform = React116.forwardRef(
2869
2870
  )
2870
2871
  );
2871
2872
  Waveform.displayName = "Waveform";
2872
- var WrenchIcon = React116.forwardRef(
2873
+ var WrenchIcon = React118.forwardRef(
2873
2874
  ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
2874
2875
  "svg",
2875
2876
  {
@@ -2891,7 +2892,7 @@ var WrenchIcon = React116.forwardRef(
2891
2892
  )
2892
2893
  );
2893
2894
  WrenchIcon.displayName = "WrenchIcon";
2894
- var XIcon = React116.forwardRef(
2895
+ var XIcon = React118.forwardRef(
2895
2896
  ({ size = 24, ...props }, ref) => {
2896
2897
  const { accessibilityProps, title, restProps } = getAccessibilityProps(
2897
2898
  props,
@@ -2922,13 +2923,50 @@ var XIcon = React116.forwardRef(
2922
2923
  }
2923
2924
  );
2924
2925
  XIcon.displayName = "XIcon";
2926
+ var DownloadIcon = React118.forwardRef(
2927
+ ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
2928
+ "svg",
2929
+ {
2930
+ xmlns: "http://www.w3.org/2000/svg",
2931
+ ref,
2932
+ width: size,
2933
+ height: size,
2934
+ fill: "none",
2935
+ viewBox: "0 0 24 24",
2936
+ children: [
2937
+ /* @__PURE__ */ jsx("title", { children: "Download" }),
2938
+ /* @__PURE__ */ jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M21 13.5v6a.75.75 0 0 1-.75.75H3.75A.75.75 0 0 1 3 19.5v-6a.75.75 0 1 1 1.5 0v5.25h15V13.5a.75.75 0 1 1 1.5 0M8.78 7.282l2.47-2.47v8.69a.75.75 0 1 0 1.5 0V4.81l2.47 2.47a.75.75 0 1 0 1.06-1.061l-3.75-3.75a.75.75 0 0 0-1.06 0L7.72 6.22a.75.75 0 0 0 1.06 1.061" })
2939
+ ]
2940
+ }
2941
+ )
2942
+ );
2943
+ DownloadIcon.displayName = "DownloadIcon";
2944
+ var TextIcon = React118.forwardRef(
2945
+ ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
2946
+ "svg",
2947
+ {
2948
+ ref,
2949
+ width: size,
2950
+ height: size,
2951
+ ...props,
2952
+ xmlns: "http://www.w3.org/2000/svg",
2953
+ fill: "none",
2954
+ viewBox: "0 0 24 24",
2955
+ children: [
2956
+ /* @__PURE__ */ jsx("title", { children: "Text" }),
2957
+ /* @__PURE__ */ jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M19.5 5.25v3a.75.75 0 1 1-1.5 0V6h-5.25v12H15a.75.75 0 1 1 0 1.5H9A.75.75 0 1 1 9 18h2.25V6H6v2.25a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75" })
2958
+ ]
2959
+ }
2960
+ )
2961
+ );
2962
+ TextIcon.displayName = "TextIcon";
2925
2963
 
2926
2964
  // src/icons/file-icons/aep.tsx
2927
2965
  var aep_exports = {};
2928
2966
  __export(aep_exports, {
2929
2967
  AEP: () => AEP
2930
2968
  });
2931
- var AEP = React116.forwardRef(
2969
+ var AEP = React118.forwardRef(
2932
2970
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
2933
2971
  "svg",
2934
2972
  {
@@ -2976,7 +3014,7 @@ var ai_exports = {};
2976
3014
  __export(ai_exports, {
2977
3015
  AI: () => AI
2978
3016
  });
2979
- var AI = React116.forwardRef(
3017
+ var AI = React118.forwardRef(
2980
3018
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
2981
3019
  "svg",
2982
3020
  {
@@ -3024,7 +3062,7 @@ var avi_exports = {};
3024
3062
  __export(avi_exports, {
3025
3063
  AVI: () => AVI
3026
3064
  });
3027
- var AVI = React116.forwardRef(
3065
+ var AVI = React118.forwardRef(
3028
3066
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3029
3067
  "svg",
3030
3068
  {
@@ -3072,7 +3110,7 @@ var blend_exports = {};
3072
3110
  __export(blend_exports, {
3073
3111
  Blend: () => Blend
3074
3112
  });
3075
- var Blend = React116.forwardRef(
3113
+ var Blend = React118.forwardRef(
3076
3114
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3077
3115
  "svg",
3078
3116
  {
@@ -3120,7 +3158,7 @@ var c4d_exports = {};
3120
3158
  __export(c4d_exports, {
3121
3159
  C4D: () => C4D
3122
3160
  });
3123
- var C4D = React116.forwardRef(
3161
+ var C4D = React118.forwardRef(
3124
3162
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3125
3163
  "svg",
3126
3164
  {
@@ -3168,7 +3206,7 @@ var cdr_exports = {};
3168
3206
  __export(cdr_exports, {
3169
3207
  CDR: () => CDR
3170
3208
  });
3171
- var CDR = React116.forwardRef(
3209
+ var CDR = React118.forwardRef(
3172
3210
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3173
3211
  "svg",
3174
3212
  {
@@ -3216,7 +3254,7 @@ var css_exports = {};
3216
3254
  __export(css_exports, {
3217
3255
  CSS: () => CSS
3218
3256
  });
3219
- var CSS = React116.forwardRef(
3257
+ var CSS = React118.forwardRef(
3220
3258
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3221
3259
  "svg",
3222
3260
  {
@@ -3264,7 +3302,7 @@ var csv_exports = {};
3264
3302
  __export(csv_exports, {
3265
3303
  CSV: () => CSV
3266
3304
  });
3267
- var CSV = React116.forwardRef(
3305
+ var CSV = React118.forwardRef(
3268
3306
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3269
3307
  "svg",
3270
3308
  {
@@ -3312,7 +3350,7 @@ var dmg_exports = {};
3312
3350
  __export(dmg_exports, {
3313
3351
  DMG: () => DMG
3314
3352
  });
3315
- var DMG = React116.forwardRef(
3353
+ var DMG = React118.forwardRef(
3316
3354
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3317
3355
  "svg",
3318
3356
  {
@@ -3360,7 +3398,7 @@ var doc_exports = {};
3360
3398
  __export(doc_exports, {
3361
3399
  DOC: () => DOC
3362
3400
  });
3363
- var DOC = React116.forwardRef(
3401
+ var DOC = React118.forwardRef(
3364
3402
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3365
3403
  "svg",
3366
3404
  {
@@ -3408,7 +3446,7 @@ var exe_exports = {};
3408
3446
  __export(exe_exports, {
3409
3447
  EXE: () => EXE
3410
3448
  });
3411
- var EXE = React116.forwardRef(
3449
+ var EXE = React118.forwardRef(
3412
3450
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3413
3451
  "svg",
3414
3452
  {
@@ -3456,7 +3494,7 @@ var fig_exports = {};
3456
3494
  __export(fig_exports, {
3457
3495
  Fig: () => Fig
3458
3496
  });
3459
- var Fig = React116.forwardRef(
3497
+ var Fig = React118.forwardRef(
3460
3498
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3461
3499
  "svg",
3462
3500
  {
@@ -3504,7 +3542,7 @@ var gif_exports = {};
3504
3542
  __export(gif_exports, {
3505
3543
  GIF: () => GIF
3506
3544
  });
3507
- var GIF = React116.forwardRef(
3545
+ var GIF = React118.forwardRef(
3508
3546
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3509
3547
  "svg",
3510
3548
  {
@@ -3552,7 +3590,7 @@ var html_exports = {};
3552
3590
  __export(html_exports, {
3553
3591
  HTML: () => HTML
3554
3592
  });
3555
- var HTML = React116.forwardRef(
3593
+ var HTML = React118.forwardRef(
3556
3594
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3557
3595
  "svg",
3558
3596
  {
@@ -3600,7 +3638,7 @@ var ico_exports = {};
3600
3638
  __export(ico_exports, {
3601
3639
  ICO: () => ICO
3602
3640
  });
3603
- var ICO = React116.forwardRef(
3641
+ var ICO = React118.forwardRef(
3604
3642
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3605
3643
  "svg",
3606
3644
  {
@@ -3648,7 +3686,7 @@ var java_exports = {};
3648
3686
  __export(java_exports, {
3649
3687
  Java: () => Java
3650
3688
  });
3651
- var Java = React116.forwardRef(
3689
+ var Java = React118.forwardRef(
3652
3690
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3653
3691
  "svg",
3654
3692
  {
@@ -3696,7 +3734,7 @@ var jpeg_exports = {};
3696
3734
  __export(jpeg_exports, {
3697
3735
  JPEG: () => JPEG
3698
3736
  });
3699
- var JPEG = React116.forwardRef(
3737
+ var JPEG = React118.forwardRef(
3700
3738
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3701
3739
  "svg",
3702
3740
  {
@@ -3744,7 +3782,7 @@ var jpg_exports = {};
3744
3782
  __export(jpg_exports, {
3745
3783
  JPG: () => JPG
3746
3784
  });
3747
- var JPG = React116.forwardRef(
3785
+ var JPG = React118.forwardRef(
3748
3786
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3749
3787
  "svg",
3750
3788
  {
@@ -3792,7 +3830,7 @@ var js_exports = {};
3792
3830
  __export(js_exports, {
3793
3831
  JS: () => JS
3794
3832
  });
3795
- var JS = React116.forwardRef(
3833
+ var JS = React118.forwardRef(
3796
3834
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3797
3835
  "svg",
3798
3836
  {
@@ -3840,7 +3878,7 @@ var json_exports = {};
3840
3878
  __export(json_exports, {
3841
3879
  JSON: () => JSON
3842
3880
  });
3843
- var JSON = React116.forwardRef(
3881
+ var JSON = React118.forwardRef(
3844
3882
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3845
3883
  "svg",
3846
3884
  {
@@ -3888,7 +3926,7 @@ var mov_exports = {};
3888
3926
  __export(mov_exports, {
3889
3927
  MOV: () => MOV
3890
3928
  });
3891
- var MOV = React116.forwardRef(
3929
+ var MOV = React118.forwardRef(
3892
3930
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3893
3931
  "svg",
3894
3932
  {
@@ -3936,7 +3974,7 @@ var mp3_exports = {};
3936
3974
  __export(mp3_exports, {
3937
3975
  MP3: () => MP3
3938
3976
  });
3939
- var MP3 = React116.forwardRef(
3977
+ var MP3 = React118.forwardRef(
3940
3978
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3941
3979
  "svg",
3942
3980
  {
@@ -3984,7 +4022,7 @@ var mp4_exports = {};
3984
4022
  __export(mp4_exports, {
3985
4023
  MP4: () => MP4
3986
4024
  });
3987
- var MP4 = React116.forwardRef(
4025
+ var MP4 = React118.forwardRef(
3988
4026
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
3989
4027
  "svg",
3990
4028
  {
@@ -4032,7 +4070,7 @@ var mpg_exports = {};
4032
4070
  __export(mpg_exports, {
4033
4071
  MPG: () => MPG
4034
4072
  });
4035
- var MPG = React116.forwardRef(
4073
+ var MPG = React118.forwardRef(
4036
4074
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4037
4075
  "svg",
4038
4076
  {
@@ -4080,7 +4118,7 @@ var pdf_exports = {};
4080
4118
  __export(pdf_exports, {
4081
4119
  PDF: () => PDF
4082
4120
  });
4083
- var PDF = React116.forwardRef(
4121
+ var PDF = React118.forwardRef(
4084
4122
  ({ ...props }, ref) => {
4085
4123
  const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
4086
4124
  return /* @__PURE__ */ jsxs(
@@ -4133,7 +4171,7 @@ var png_exports = {};
4133
4171
  __export(png_exports, {
4134
4172
  PNG: () => PNG
4135
4173
  });
4136
- var PNG = React116.forwardRef(
4174
+ var PNG = React118.forwardRef(
4137
4175
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4138
4176
  "svg",
4139
4177
  {
@@ -4181,7 +4219,7 @@ var ppt_exports = {};
4181
4219
  __export(ppt_exports, {
4182
4220
  PPT: () => PPT
4183
4221
  });
4184
- var PPT = React116.forwardRef(
4222
+ var PPT = React118.forwardRef(
4185
4223
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4186
4224
  "svg",
4187
4225
  {
@@ -4229,7 +4267,7 @@ var psd_exports = {};
4229
4267
  __export(psd_exports, {
4230
4268
  PSD: () => PSD
4231
4269
  });
4232
- var PSD = React116.forwardRef(
4270
+ var PSD = React118.forwardRef(
4233
4271
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4234
4272
  "svg",
4235
4273
  {
@@ -4277,7 +4315,7 @@ var rar_exports = {};
4277
4315
  __export(rar_exports, {
4278
4316
  Rar: () => Rar
4279
4317
  });
4280
- var Rar = React116.forwardRef(
4318
+ var Rar = React118.forwardRef(
4281
4319
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4282
4320
  "svg",
4283
4321
  {
@@ -4325,7 +4363,7 @@ var sketch_exports = {};
4325
4363
  __export(sketch_exports, {
4326
4364
  Sketch: () => Sketch
4327
4365
  });
4328
- var Sketch = React116.forwardRef(
4366
+ var Sketch = React118.forwardRef(
4329
4367
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4330
4368
  "svg",
4331
4369
  {
@@ -4373,7 +4411,7 @@ var svg_exports = {};
4373
4411
  __export(svg_exports, {
4374
4412
  SVG: () => SVG
4375
4413
  });
4376
- var SVG = React116.forwardRef(
4414
+ var SVG = React118.forwardRef(
4377
4415
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4378
4416
  "svg",
4379
4417
  {
@@ -4421,7 +4459,7 @@ var tiff_exports = {};
4421
4459
  __export(tiff_exports, {
4422
4460
  TIFF: () => TIFF
4423
4461
  });
4424
- var TIFF = React116.forwardRef(
4462
+ var TIFF = React118.forwardRef(
4425
4463
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4426
4464
  "svg",
4427
4465
  {
@@ -4469,7 +4507,7 @@ var txt_exports = {};
4469
4507
  __export(txt_exports, {
4470
4508
  TXT: () => TXT
4471
4509
  });
4472
- var TXT = React116.forwardRef(
4510
+ var TXT = React118.forwardRef(
4473
4511
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4474
4512
  "svg",
4475
4513
  {
@@ -4517,7 +4555,7 @@ var wav_exports = {};
4517
4555
  __export(wav_exports, {
4518
4556
  WAV: () => WAV
4519
4557
  });
4520
- var WAV = React116.forwardRef(
4558
+ var WAV = React118.forwardRef(
4521
4559
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4522
4560
  "svg",
4523
4561
  {
@@ -4565,7 +4603,7 @@ var webp_exports = {};
4565
4603
  __export(webp_exports, {
4566
4604
  WEBP: () => WEBP
4567
4605
  });
4568
- var WEBP = React116.forwardRef(
4606
+ var WEBP = React118.forwardRef(
4569
4607
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4570
4608
  "svg",
4571
4609
  {
@@ -4613,7 +4651,7 @@ var xls_exports = {};
4613
4651
  __export(xls_exports, {
4614
4652
  XLS: () => XLS
4615
4653
  });
4616
- var XLS = React116.forwardRef(
4654
+ var XLS = React118.forwardRef(
4617
4655
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4618
4656
  "svg",
4619
4657
  {
@@ -4661,7 +4699,7 @@ var zip_exports = {};
4661
4699
  __export(zip_exports, {
4662
4700
  Zip: () => Zip
4663
4701
  });
4664
- var Zip = React116.forwardRef(
4702
+ var Zip = React118.forwardRef(
4665
4703
  ({ ...props }, ref) => /* @__PURE__ */ jsxs(
4666
4704
  "svg",
4667
4705
  {
@@ -4703,15 +4741,15 @@ var Zip = React116.forwardRef(
4703
4741
  )
4704
4742
  );
4705
4743
  Zip.displayName = "Zip";
4706
- var CarouselContext = React116.createContext(null);
4744
+ var CarouselContext = React118.createContext(null);
4707
4745
  function useCarousel() {
4708
- const context = React116.useContext(CarouselContext);
4746
+ const context = React118.useContext(CarouselContext);
4709
4747
  if (!context) {
4710
4748
  throw new Error("useCarousel must be used within a <Carousel />");
4711
4749
  }
4712
4750
  return context;
4713
4751
  }
4714
- var Carousel = React116.forwardRef(
4752
+ var Carousel = React118.forwardRef(
4715
4753
  ({
4716
4754
  orientation = "horizontal",
4717
4755
  opts,
@@ -4728,10 +4766,10 @@ var Carousel = React116.forwardRef(
4728
4766
  },
4729
4767
  plugins
4730
4768
  );
4731
- const [canScrollPrev, setCanScrollPrev] = React116.useState(false);
4732
- const [canScrollNext, setCanScrollNext] = React116.useState(false);
4733
- const [slideCount, setSlideCount] = React116.useState(0);
4734
- const onSelect = React116.useCallback((api2) => {
4769
+ const [canScrollPrev, setCanScrollPrev] = React118.useState(false);
4770
+ const [canScrollNext, setCanScrollNext] = React118.useState(false);
4771
+ const [slideCount, setSlideCount] = React118.useState(0);
4772
+ const onSelect = React118.useCallback((api2) => {
4735
4773
  if (!api2) {
4736
4774
  return;
4737
4775
  }
@@ -4739,13 +4777,13 @@ var Carousel = React116.forwardRef(
4739
4777
  setCanScrollNext(api2.canScrollNext());
4740
4778
  setSlideCount(api2.scrollSnapList().length);
4741
4779
  }, []);
4742
- const scrollPrev = React116.useCallback(() => {
4780
+ const scrollPrev = React118.useCallback(() => {
4743
4781
  api?.scrollPrev();
4744
4782
  }, [api]);
4745
- const scrollNext = React116.useCallback(() => {
4783
+ const scrollNext = React118.useCallback(() => {
4746
4784
  api?.scrollNext();
4747
4785
  }, [api]);
4748
- const handleKeyDown = React116.useCallback(
4786
+ const handleKeyDown = React118.useCallback(
4749
4787
  (event) => {
4750
4788
  if (event.key === "ArrowLeft") {
4751
4789
  event.preventDefault();
@@ -4757,13 +4795,13 @@ var Carousel = React116.forwardRef(
4757
4795
  },
4758
4796
  [scrollPrev, scrollNext]
4759
4797
  );
4760
- React116.useEffect(() => {
4798
+ React118.useEffect(() => {
4761
4799
  if (!api || !setApi) {
4762
4800
  return;
4763
4801
  }
4764
4802
  setApi(api);
4765
4803
  }, [api, setApi]);
4766
- React116.useEffect(() => {
4804
+ React118.useEffect(() => {
4767
4805
  if (!api) {
4768
4806
  return;
4769
4807
  }
@@ -4808,7 +4846,7 @@ var Carousel = React116.forwardRef(
4808
4846
  }
4809
4847
  );
4810
4848
  Carousel.displayName = "Carousel";
4811
- var CarouselContent = React116.forwardRef(({ className, ...props }, ref) => {
4849
+ var CarouselContent = React118.forwardRef(({ className, ...props }, ref) => {
4812
4850
  const { carouselRef, orientation } = useCarousel();
4813
4851
  return /* @__PURE__ */ jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsx(
4814
4852
  "div",
@@ -4824,7 +4862,7 @@ var CarouselContent = React116.forwardRef(({ className, ...props }, ref) => {
4824
4862
  ) });
4825
4863
  });
4826
4864
  CarouselContent.displayName = "CarouselContent";
4827
- var CarouselItem = React116.forwardRef(({ className, ...props }, ref) => {
4865
+ var CarouselItem = React118.forwardRef(({ className, ...props }, ref) => {
4828
4866
  const { orientation } = useCarousel();
4829
4867
  return /* @__PURE__ */ jsx(
4830
4868
  "div",
@@ -4842,7 +4880,7 @@ var CarouselItem = React116.forwardRef(({ className, ...props }, ref) => {
4842
4880
  );
4843
4881
  });
4844
4882
  CarouselItem.displayName = "CarouselItem";
4845
- var CarouselPrevious = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
4883
+ var CarouselPrevious = React118.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
4846
4884
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
4847
4885
  return /* @__PURE__ */ jsx(
4848
4886
  Button,
@@ -4864,7 +4902,7 @@ var CarouselPrevious = React116.forwardRef(({ className, variant = "outline", si
4864
4902
  );
4865
4903
  });
4866
4904
  CarouselPrevious.displayName = "CarouselPrevious";
4867
- var CarouselNext = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
4905
+ var CarouselNext = React118.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
4868
4906
  const { orientation, scrollNext, canScrollNext } = useCarousel();
4869
4907
  return /* @__PURE__ */ jsx(
4870
4908
  Button,
@@ -4890,7 +4928,7 @@ var Dialog = DialogPrimitive.Root;
4890
4928
  var DialogTrigger = DialogPrimitive.Trigger;
4891
4929
  var DialogPortal = DialogPrimitive.Portal;
4892
4930
  var DialogClose = DialogPrimitive.Close;
4893
- var DialogOverlay = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
4931
+ var DialogOverlay = React118.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
4894
4932
  DialogPrimitive.Overlay,
4895
4933
  {
4896
4934
  ref,
@@ -4907,7 +4945,7 @@ var DialogOverlay = React116.forwardRef(({ className, style, ...props }, ref) =>
4907
4945
  }
4908
4946
  ));
4909
4947
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
4910
- var DialogContent = React116.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
4948
+ var DialogContent = React118.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
4911
4949
  /* @__PURE__ */ jsx(DialogOverlay, {}),
4912
4950
  /* @__PURE__ */ jsxs(
4913
4951
  DialogPrimitive.Content,
@@ -4959,7 +4997,7 @@ var DialogFooter = ({
4959
4997
  }
4960
4998
  );
4961
4999
  DialogFooter.displayName = "DialogFooter";
4962
- var DialogTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5000
+ var DialogTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
4963
5001
  DialogPrimitive.Title,
4964
5002
  {
4965
5003
  ref,
@@ -4971,7 +5009,7 @@ var DialogTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
4971
5009
  }
4972
5010
  ));
4973
5011
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
4974
- var DialogDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5012
+ var DialogDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
4975
5013
  DialogPrimitive.Description,
4976
5014
  {
4977
5015
  ref,
@@ -4984,7 +5022,7 @@ var Sheet = DialogPrimitive.Root;
4984
5022
  var SheetTrigger = DialogPrimitive.Trigger;
4985
5023
  var SheetClose = DialogPrimitive.Close;
4986
5024
  var SheetPortal = DialogPrimitive.Portal;
4987
- var SheetOverlay = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5025
+ var SheetOverlay = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
4988
5026
  DialogPrimitive.Overlay,
4989
5027
  {
4990
5028
  className: cn(
@@ -5012,7 +5050,7 @@ var sheetVariants = cva(
5012
5050
  }
5013
5051
  }
5014
5052
  );
5015
- var SheetContent = React116.forwardRef(
5053
+ var SheetContent = React118.forwardRef(
5016
5054
  ({
5017
5055
  side = "right",
5018
5056
  className,
@@ -5068,7 +5106,7 @@ var SheetFooter = ({
5068
5106
  }
5069
5107
  );
5070
5108
  SheetFooter.displayName = "SheetFooter";
5071
- var SheetTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5109
+ var SheetTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5072
5110
  DialogPrimitive.Title,
5073
5111
  {
5074
5112
  ref,
@@ -5080,7 +5118,7 @@ var SheetTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PUR
5080
5118
  }
5081
5119
  ));
5082
5120
  SheetTitle.displayName = DialogPrimitive.Title.displayName;
5083
- var SheetDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5121
+ var SheetDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5084
5122
  DialogPrimitive.Description,
5085
5123
  {
5086
5124
  ref,
@@ -5117,10 +5155,10 @@ var defaultElements = {
5117
5155
  "caption": "span",
5118
5156
  "overline": "span"
5119
5157
  };
5120
- var Typography = React116__default.forwardRef(
5158
+ var Typography = React118__default.forwardRef(
5121
5159
  ({ variant = "body", as, className, children, ...props }, ref) => {
5122
5160
  const Component = as || defaultElements[variant];
5123
- return React116__default.createElement(
5161
+ return React118__default.createElement(
5124
5162
  Component,
5125
5163
  {
5126
5164
  ref,
@@ -5132,46 +5170,46 @@ var Typography = React116__default.forwardRef(
5132
5170
  }
5133
5171
  );
5134
5172
  Typography.displayName = "Typography";
5135
- var Heading1 = React116__default.forwardRef(
5173
+ var Heading1 = React118__default.forwardRef(
5136
5174
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h1", ...props })
5137
5175
  );
5138
5176
  Heading1.displayName = "Heading1";
5139
- var Heading2 = React116__default.forwardRef(
5177
+ var Heading2 = React118__default.forwardRef(
5140
5178
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h2", ...props })
5141
5179
  );
5142
5180
  Heading2.displayName = "Heading2";
5143
- var Heading3 = React116__default.forwardRef(
5181
+ var Heading3 = React118__default.forwardRef(
5144
5182
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h3", ...props })
5145
5183
  );
5146
5184
  Heading3.displayName = "Heading3";
5147
- var Heading4 = React116__default.forwardRef(
5185
+ var Heading4 = React118__default.forwardRef(
5148
5186
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h4", ...props })
5149
5187
  );
5150
5188
  Heading4.displayName = "Heading4";
5151
- var Heading5 = React116__default.forwardRef(
5189
+ var Heading5 = React118__default.forwardRef(
5152
5190
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h5", ...props })
5153
5191
  );
5154
5192
  Heading5.displayName = "Heading5";
5155
- var Heading6 = React116__default.forwardRef(
5193
+ var Heading6 = React118__default.forwardRef(
5156
5194
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h6", ...props })
5157
5195
  );
5158
5196
  Heading6.displayName = "Heading6";
5159
- var Text = React116__default.forwardRef(
5197
+ var Text = React118__default.forwardRef(
5160
5198
  ({ size = "default", ...props }, ref) => {
5161
5199
  const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
5162
5200
  return /* @__PURE__ */ jsx(Typography, { ref, variant, ...props });
5163
5201
  }
5164
5202
  );
5165
5203
  Text.displayName = "Text";
5166
- var Caption = React116__default.forwardRef(
5204
+ var Caption = React118__default.forwardRef(
5167
5205
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "caption", ...props })
5168
5206
  );
5169
5207
  Caption.displayName = "Caption";
5170
- var Overline = React116__default.forwardRef(
5208
+ var Overline = React118__default.forwardRef(
5171
5209
  (props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "overline", ...props })
5172
5210
  );
5173
5211
  Overline.displayName = "Overline";
5174
- var Link = React116__default.forwardRef(
5212
+ var Link = React118__default.forwardRef(
5175
5213
  ({ variant = "primary", className, children, ...props }, ref) => {
5176
5214
  const variantClass = `link-${variant}`;
5177
5215
  return /* @__PURE__ */ jsx(
@@ -5186,11 +5224,11 @@ var Link = React116__default.forwardRef(
5186
5224
  }
5187
5225
  );
5188
5226
  Link.displayName = "Link";
5189
- var PaginationContext = React116.createContext({
5227
+ var PaginationContext = React118.createContext({
5190
5228
  size: "default"
5191
5229
  });
5192
5230
  var usePaginationContext = () => {
5193
- const context = React116.useContext(PaginationContext);
5231
+ const context = React118.useContext(PaginationContext);
5194
5232
  return context;
5195
5233
  };
5196
5234
  var paginationVariants = cva(
@@ -5207,7 +5245,7 @@ var paginationVariants = cva(
5207
5245
  }
5208
5246
  }
5209
5247
  );
5210
- var Pagination = React116.forwardRef(
5248
+ var Pagination = React118.forwardRef(
5211
5249
  ({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsx(
5212
5250
  "nav",
5213
5251
  {
@@ -5220,7 +5258,7 @@ var Pagination = React116.forwardRef(
5220
5258
  ) })
5221
5259
  );
5222
5260
  Pagination.displayName = "Pagination";
5223
- var PaginationContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5261
+ var PaginationContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5224
5262
  "ul",
5225
5263
  {
5226
5264
  ref,
@@ -5229,7 +5267,7 @@ var PaginationContent = React116.forwardRef(({ className, ...props }, ref) => /*
5229
5267
  }
5230
5268
  ));
5231
5269
  PaginationContent.displayName = "PaginationContent";
5232
- var PaginationItem = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cn("", className), ...props }));
5270
+ var PaginationItem = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cn("", className), ...props }));
5233
5271
  PaginationItem.displayName = "PaginationItem";
5234
5272
  var paginationLinkVariants = cva(
5235
5273
  [
@@ -5251,7 +5289,7 @@ var paginationLinkVariants = cva(
5251
5289
  }
5252
5290
  }
5253
5291
  );
5254
- var PaginationLink = React116.forwardRef(({ className, isActive, ...props }, ref) => {
5292
+ var PaginationLink = React118.forwardRef(({ className, isActive, ...props }, ref) => {
5255
5293
  const { size } = usePaginationContext();
5256
5294
  return /* @__PURE__ */ jsx(
5257
5295
  "a",
@@ -5268,7 +5306,7 @@ var PaginationLink = React116.forwardRef(({ className, isActive, ...props }, ref
5268
5306
  );
5269
5307
  });
5270
5308
  PaginationLink.displayName = "PaginationLink";
5271
- var PaginationPrevious = React116.forwardRef(({ className, ...props }, ref) => {
5309
+ var PaginationPrevious = React118.forwardRef(({ className, ...props }, ref) => {
5272
5310
  const { size } = usePaginationContext();
5273
5311
  return /* @__PURE__ */ jsxs(
5274
5312
  PaginationLink,
@@ -5289,7 +5327,7 @@ var PaginationPrevious = React116.forwardRef(({ className, ...props }, ref) => {
5289
5327
  );
5290
5328
  });
5291
5329
  PaginationPrevious.displayName = "PaginationPrevious";
5292
- var PaginationNext = React116.forwardRef(({ className, ...props }, ref) => {
5330
+ var PaginationNext = React118.forwardRef(({ className, ...props }, ref) => {
5293
5331
  const { size } = usePaginationContext();
5294
5332
  return /* @__PURE__ */ jsxs(
5295
5333
  PaginationLink,
@@ -5310,7 +5348,7 @@ var PaginationNext = React116.forwardRef(({ className, ...props }, ref) => {
5310
5348
  );
5311
5349
  });
5312
5350
  PaginationNext.displayName = "PaginationNext";
5313
- var PaginationEllipsis = React116.forwardRef(({ className, ...props }, ref) => {
5351
+ var PaginationEllipsis = React118.forwardRef(({ className, ...props }, ref) => {
5314
5352
  const { size } = usePaginationContext();
5315
5353
  return /* @__PURE__ */ jsx(
5316
5354
  "span",
@@ -5334,7 +5372,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
5334
5372
  var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
5335
5373
  var DropdownMenuSub = DropdownMenuPrimitive.Sub;
5336
5374
  var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
5337
- var DropdownMenuSubTrigger = React116.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5375
+ var DropdownMenuSubTrigger = React118.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5338
5376
  DropdownMenuPrimitive.SubTrigger,
5339
5377
  {
5340
5378
  ref,
@@ -5351,7 +5389,7 @@ var DropdownMenuSubTrigger = React116.forwardRef(({ className, inset, children,
5351
5389
  }
5352
5390
  ));
5353
5391
  DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
5354
- var DropdownMenuSubContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5392
+ var DropdownMenuSubContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5355
5393
  DropdownMenuPrimitive.SubContent,
5356
5394
  {
5357
5395
  ref,
@@ -5363,7 +5401,7 @@ var DropdownMenuSubContent = React116.forwardRef(({ className, ...props }, ref)
5363
5401
  }
5364
5402
  ));
5365
5403
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
5366
- var DropdownMenuContent = React116.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
5404
+ var DropdownMenuContent = React118.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
5367
5405
  DropdownMenuPrimitive.Content,
5368
5406
  {
5369
5407
  ref,
@@ -5377,7 +5415,7 @@ var DropdownMenuContent = React116.forwardRef(({ className, sideOffset = 4, ...p
5377
5415
  }
5378
5416
  ) }));
5379
5417
  DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
5380
- var DropdownMenuItem = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
5418
+ var DropdownMenuItem = React118.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
5381
5419
  DropdownMenuPrimitive.Item,
5382
5420
  {
5383
5421
  ref,
@@ -5390,7 +5428,7 @@ var DropdownMenuItem = React116.forwardRef(({ className, inset, ...props }, ref)
5390
5428
  }
5391
5429
  ));
5392
5430
  DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
5393
- var DropdownMenuCheckboxItem = React116.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
5431
+ var DropdownMenuCheckboxItem = React118.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
5394
5432
  DropdownMenuPrimitive.CheckboxItem,
5395
5433
  {
5396
5434
  ref,
@@ -5407,7 +5445,7 @@ var DropdownMenuCheckboxItem = React116.forwardRef(({ className, children, check
5407
5445
  }
5408
5446
  ));
5409
5447
  DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
5410
- var DropdownMenuRadioItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5448
+ var DropdownMenuRadioItem = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5411
5449
  DropdownMenuPrimitive.RadioItem,
5412
5450
  {
5413
5451
  ref,
@@ -5423,7 +5461,7 @@ var DropdownMenuRadioItem = React116.forwardRef(({ className, children, ...props
5423
5461
  }
5424
5462
  ));
5425
5463
  DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
5426
- var DropdownMenuLabel = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
5464
+ var DropdownMenuLabel = React118.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
5427
5465
  DropdownMenuPrimitive.Label,
5428
5466
  {
5429
5467
  ref,
@@ -5436,7 +5474,7 @@ var DropdownMenuLabel = React116.forwardRef(({ className, inset, ...props }, ref
5436
5474
  }
5437
5475
  ));
5438
5476
  DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
5439
- var DropdownMenuSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5477
+ var DropdownMenuSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5440
5478
  DropdownMenuPrimitive.Separator,
5441
5479
  {
5442
5480
  ref,
@@ -5458,7 +5496,7 @@ var DropdownMenuShortcut = ({
5458
5496
  );
5459
5497
  };
5460
5498
  DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
5461
- var TableWrapper = React116.forwardRef(
5499
+ var TableWrapper = React118.forwardRef(
5462
5500
  ({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5463
5501
  "div",
5464
5502
  {
@@ -5473,7 +5511,7 @@ var TableWrapper = React116.forwardRef(
5473
5511
  )
5474
5512
  );
5475
5513
  TableWrapper.displayName = "TableWrapper";
5476
- var Table = React116.forwardRef(
5514
+ var Table = React118.forwardRef(
5477
5515
  ({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5478
5516
  "div",
5479
5517
  {
@@ -5495,7 +5533,7 @@ var Table = React116.forwardRef(
5495
5533
  )
5496
5534
  );
5497
5535
  Table.displayName = "Table";
5498
- var TableHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5536
+ var TableHeader = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5499
5537
  "thead",
5500
5538
  {
5501
5539
  ref,
@@ -5508,7 +5546,7 @@ var TableHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
5508
5546
  }
5509
5547
  ));
5510
5548
  TableHeader.displayName = "TableHeader";
5511
- var TableBody = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5549
+ var TableBody = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5512
5550
  "tbody",
5513
5551
  {
5514
5552
  ref,
@@ -5521,7 +5559,7 @@ var TableBody = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
5521
5559
  }
5522
5560
  ));
5523
5561
  TableBody.displayName = "TableBody";
5524
- var TableFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5562
+ var TableFooter = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5525
5563
  "tfoot",
5526
5564
  {
5527
5565
  ref,
@@ -5534,7 +5572,7 @@ var TableFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
5534
5572
  }
5535
5573
  ));
5536
5574
  TableFooter.displayName = "TableFooter";
5537
- var TableRow = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5575
+ var TableRow = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5538
5576
  "tr",
5539
5577
  {
5540
5578
  ref,
@@ -5552,7 +5590,7 @@ var TableRow = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE_
5552
5590
  }
5553
5591
  ));
5554
5592
  TableRow.displayName = "TableRow";
5555
- var TableHead = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5593
+ var TableHead = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5556
5594
  "th",
5557
5595
  {
5558
5596
  ref,
@@ -5565,7 +5603,7 @@ var TableHead = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
5565
5603
  }
5566
5604
  ));
5567
5605
  TableHead.displayName = "TableHead";
5568
- var TableCell = React116.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsx(
5606
+ var TableCell = React118.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsx(
5569
5607
  "td",
5570
5608
  {
5571
5609
  ref,
@@ -5585,7 +5623,7 @@ var TableCell = React116.forwardRef(({ className, label, ...props }, ref) => /*
5585
5623
  }
5586
5624
  ));
5587
5625
  TableCell.displayName = "TableCell";
5588
- var TableCaption = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5626
+ var TableCaption = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5589
5627
  "caption",
5590
5628
  {
5591
5629
  ref,
@@ -5598,7 +5636,7 @@ TableCaption.displayName = "TableCaption";
5598
5636
  var Select = SelectPrimitive.Root;
5599
5637
  var SelectGroup = SelectPrimitive.Group;
5600
5638
  var SelectValue = SelectPrimitive.Value;
5601
- var SelectTrigger = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5639
+ var SelectTrigger = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5602
5640
  SelectPrimitive.Trigger,
5603
5641
  {
5604
5642
  ref,
@@ -5614,7 +5652,7 @@ var SelectTrigger = React116.forwardRef(({ className, children, ...props }, ref)
5614
5652
  }
5615
5653
  ));
5616
5654
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
5617
- var SelectScrollUpButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5655
+ var SelectScrollUpButton = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5618
5656
  SelectPrimitive.ScrollUpButton,
5619
5657
  {
5620
5658
  ref,
@@ -5627,7 +5665,7 @@ var SelectScrollUpButton = React116.forwardRef(({ className, ...props }, ref) =>
5627
5665
  }
5628
5666
  ));
5629
5667
  SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
5630
- var SelectScrollDownButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5668
+ var SelectScrollDownButton = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5631
5669
  SelectPrimitive.ScrollDownButton,
5632
5670
  {
5633
5671
  ref,
@@ -5640,7 +5678,7 @@ var SelectScrollDownButton = React116.forwardRef(({ className, ...props }, ref)
5640
5678
  }
5641
5679
  ));
5642
5680
  SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
5643
- var SelectContent = React116.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
5681
+ var SelectContent = React118.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
5644
5682
  SelectPrimitive.Content,
5645
5683
  {
5646
5684
  ref,
@@ -5667,7 +5705,7 @@ var SelectContent = React116.forwardRef(({ className, children, position = "popp
5667
5705
  }
5668
5706
  ) }));
5669
5707
  SelectContent.displayName = SelectPrimitive.Content.displayName;
5670
- var SelectLabel = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5708
+ var SelectLabel = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5671
5709
  SelectPrimitive.Label,
5672
5710
  {
5673
5711
  ref,
@@ -5676,7 +5714,7 @@ var SelectLabel = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
5676
5714
  }
5677
5715
  ));
5678
5716
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
5679
- var SelectItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5717
+ var SelectItem = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
5680
5718
  SelectPrimitive.Item,
5681
5719
  {
5682
5720
  ref,
@@ -5692,7 +5730,7 @@ var SelectItem = React116.forwardRef(({ className, children, ...props }, ref) =>
5692
5730
  }
5693
5731
  ));
5694
5732
  SelectItem.displayName = SelectPrimitive.Item.displayName;
5695
- var SelectSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5733
+ var SelectSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5696
5734
  SelectPrimitive.Separator,
5697
5735
  {
5698
5736
  ref,
@@ -5701,7 +5739,7 @@ var SelectSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @
5701
5739
  }
5702
5740
  ));
5703
5741
  SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
5704
- var Label3 = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5742
+ var Label3 = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5705
5743
  LabelPrimitive.Root,
5706
5744
  {
5707
5745
  ref,
@@ -5713,7 +5751,7 @@ var Label3 = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__
5713
5751
  }
5714
5752
  ));
5715
5753
  Label3.displayName = LabelPrimitive.Root.displayName;
5716
- var Switch = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5754
+ var Switch = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5717
5755
  SwitchPrimitives.Root,
5718
5756
  {
5719
5757
  className: cn(
@@ -5726,7 +5764,7 @@ var Switch = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__
5726
5764
  }
5727
5765
  ));
5728
5766
  Switch.displayName = SwitchPrimitives.Root.displayName;
5729
- var RadioGroup2 = React116.forwardRef(({ className, ...props }, ref) => {
5767
+ var RadioGroup2 = React118.forwardRef(({ className, ...props }, ref) => {
5730
5768
  return /* @__PURE__ */ jsx(
5731
5769
  RadioGroupPrimitive.Root,
5732
5770
  {
@@ -5737,7 +5775,7 @@ var RadioGroup2 = React116.forwardRef(({ className, ...props }, ref) => {
5737
5775
  );
5738
5776
  });
5739
5777
  RadioGroup2.displayName = RadioGroupPrimitive.Root.displayName;
5740
- var RadioGroupItem = React116.forwardRef(({ className, ...props }, ref) => {
5778
+ var RadioGroupItem = React118.forwardRef(({ className, ...props }, ref) => {
5741
5779
  return /* @__PURE__ */ jsx(
5742
5780
  RadioGroupPrimitive.Item,
5743
5781
  {
@@ -5752,7 +5790,7 @@ var RadioGroupItem = React116.forwardRef(({ className, ...props }, ref) => {
5752
5790
  );
5753
5791
  });
5754
5792
  RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
5755
- var Checkbox = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5793
+ var Checkbox = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
5756
5794
  CheckboxPrimitive.Root,
5757
5795
  {
5758
5796
  ref,
@@ -5765,7 +5803,7 @@ var Checkbox = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE_
5765
5803
  }
5766
5804
  ));
5767
5805
  Checkbox.displayName = CheckboxPrimitive.Root.displayName;
5768
- var MultiSelect = React116.forwardRef(
5806
+ var MultiSelect = React118.forwardRef(
5769
5807
  ({
5770
5808
  options,
5771
5809
  value = [],
@@ -5778,8 +5816,8 @@ var MultiSelect = React116.forwardRef(
5778
5816
  maxDisplayItems = 3,
5779
5817
  ...props
5780
5818
  }, ref) => {
5781
- const [open, setOpen] = React116.useState(false);
5782
- const handleSelectAll = React116.useCallback(() => {
5819
+ const [open, setOpen] = React118.useState(false);
5820
+ const handleSelectAll = React118.useCallback(() => {
5783
5821
  if (!onValueChange) return;
5784
5822
  const enabledOptions2 = options.filter((option) => !option.disabled);
5785
5823
  const allValues = enabledOptions2.map((option) => option.value);
@@ -5792,7 +5830,7 @@ var MultiSelect = React116.forwardRef(
5792
5830
  onValueChange(allValues);
5793
5831
  }
5794
5832
  }, [options, value, onValueChange]);
5795
- const handleItemToggle = React116.useCallback(
5833
+ const handleItemToggle = React118.useCallback(
5796
5834
  (itemValue) => {
5797
5835
  if (!onValueChange) return;
5798
5836
  const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
@@ -5800,7 +5838,7 @@ var MultiSelect = React116.forwardRef(
5800
5838
  },
5801
5839
  [value, onValueChange]
5802
5840
  );
5803
- const displayValue = React116.useMemo(() => {
5841
+ const displayValue = React118.useMemo(() => {
5804
5842
  if (value.length === 0) {
5805
5843
  return placeholder;
5806
5844
  }
@@ -5921,6 +5959,22 @@ var MultiSelect = React116.forwardRef(
5921
5959
  }
5922
5960
  );
5923
5961
  MultiSelect.displayName = "MultiSelect";
5962
+ var Slider = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(
5963
+ SliderPrimitive.Root,
5964
+ {
5965
+ ref,
5966
+ className: cn(
5967
+ "lua:relative lua:flex lua:w-full lua:touch-none lua:select-none lua:items-center",
5968
+ className
5969
+ ),
5970
+ ...props,
5971
+ children: [
5972
+ /* @__PURE__ */ jsx(SliderPrimitive.Track, { className: "lua:relative lua:h-2 lua:w-full lua:grow lua:overflow-hidden lua:rounded-full lua:bg-gray-200", children: /* @__PURE__ */ jsx(SliderPrimitive.Range, { className: "lua:absolute lua:h-full lua:bg-gradient-to-r lua:from-blue-600 lua:to-purple-600" }) }),
5973
+ /* @__PURE__ */ jsx(SliderPrimitive.Thumb, { className: "lua:block lua:h-5 lua:w-5 lua:rounded-full lua:border-2 lua:border-white lua:bg-purple-600 lua:shadow-lg lua:ring-offset-white lua:transition-all lua:focus-visible:outline-none lua:focus-visible:ring-2 lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2 lua:hover:shadow-xl lua:hover:scale-105 lua:active:scale-95 lua:disabled:bg-gray-200 lua:disabled:pointer-events-none lua:disabled:opacity-50" })
5974
+ ]
5975
+ }
5976
+ ));
5977
+ Slider.displayName = SliderPrimitive.Root.displayName;
5924
5978
 
5925
5979
  // src/safelist.js
5926
5980
  var luaniverseSafelist = [
@@ -6136,7 +6190,59 @@ var luaniverseSafelist = [
6136
6190
  "lua:text-xs",
6137
6191
  // select
6138
6192
  "lua:max-h-96",
6139
- "lua:min-w-32"
6193
+ "lua:min-w-32",
6194
+ // slider
6195
+ "lua:disabled:bg-gray-200",
6196
+ "lua:hover:shadow-xl",
6197
+ "lua:hover:scale-105",
6198
+ "lua:active:scale-95",
6199
+ "lua:bg-gradient-to-r",
6200
+ "lua:from-blue-600",
6201
+ "lua:to-purple-600",
6202
+ "lua:bg-purple-600",
6203
+ // input
6204
+ "lua:text-gray-600",
6205
+ "lua:cursor-not-allowed",
6206
+ "lua:mb-2",
6207
+ "lua:text-gray-900",
6208
+ "lua:left-3",
6209
+ "lua:top-1/2",
6210
+ "lua:-translate-y-1/2",
6211
+ "lua:items-center",
6212
+ "lua:pointer-events-none",
6213
+ "lua:text-gray-500",
6214
+ "lua:h-10",
6215
+ "lua:rounded-md",
6216
+ "lua:bg-transparent",
6217
+ "lua:px-3",
6218
+ "lua:py-2",
6219
+ "lua:text-base",
6220
+ "lua:transition-all",
6221
+ "lua:duration-200",
6222
+ "file:lua:border-0",
6223
+ "file:lua:bg-transparent",
6224
+ "file:lua:text-sm",
6225
+ "file:lua:font-medium",
6226
+ "file:lua:text-gray-900",
6227
+ "placeholder:lua:text-gray-500",
6228
+ "focus-visible:lua:outline-hidden",
6229
+ "focus-visible:lua:ring-2",
6230
+ "focus-visible:lua:ring-offset-2",
6231
+ "focus-visible:lua:ring-offset-white",
6232
+ "lua:border-gray-300",
6233
+ "focus-visible:lua:ring-blue-600",
6234
+ "lua:border-red-600",
6235
+ "focus-visible:lua:ring-red-600",
6236
+ "lua:border-green-500",
6237
+ "focus-visible:lua:ring-green-500",
6238
+ "lua:opacity-50",
6239
+ "placeholder:lua:text-gray-400",
6240
+ "lua:pr-10",
6241
+ "md:lua:text-sm",
6242
+ "lua:right-3",
6243
+ "lua:mt-2",
6244
+ "lua:text-red-600",
6245
+ "lua:text-green-600"
6140
6246
  ];
6141
6247
 
6142
6248
  // src/tailwind.preset.js
@@ -6260,6 +6366,6 @@ var luaniversePreset = {
6260
6366
  }
6261
6367
  };
6262
6368
 
6263
- export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, BooksIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
6369
+ export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, BooksIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Slider, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, TextIcon, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
6264
6370
  //# sourceMappingURL=index.js.map
6265
6371
  //# sourceMappingURL=index.js.map