luaniverse 4.0.44 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +456 -213
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +449 -214
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
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';
|
|
@@ -17,6 +17,9 @@ 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
19
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
20
|
+
import { ChevronLeftIcon, ChevronRightIcon, ChevronDownIcon } from 'lucide-react';
|
|
21
|
+
import { getDefaultClassNames, DayPicker } from 'react-day-picker';
|
|
22
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
20
23
|
|
|
21
24
|
var __defProp = Object.defineProperty;
|
|
22
25
|
var __export = (target, all) => {
|
|
@@ -202,7 +205,7 @@ var buttonVariants = cva(
|
|
|
202
205
|
}
|
|
203
206
|
);
|
|
204
207
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
205
|
-
var Button =
|
|
208
|
+
var Button = React118.forwardRef(
|
|
206
209
|
({
|
|
207
210
|
className,
|
|
208
211
|
variant,
|
|
@@ -220,7 +223,7 @@ var Button = React116.forwardRef(
|
|
|
220
223
|
const Comp = asChild ? Slot : "button";
|
|
221
224
|
const hasStartAdornment = !!startAdornment;
|
|
222
225
|
const hasEndAdornment = !!endAdornment;
|
|
223
|
-
const hasTextContent =
|
|
226
|
+
const hasTextContent = React118.Children.toArray(children).some(
|
|
224
227
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
225
228
|
);
|
|
226
229
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -275,7 +278,7 @@ var iconButtonVariants = {
|
|
|
275
278
|
large: "lua:p-3 lua:size-12"
|
|
276
279
|
}
|
|
277
280
|
};
|
|
278
|
-
var IconButton =
|
|
281
|
+
var IconButton = React118.forwardRef(
|
|
279
282
|
({
|
|
280
283
|
className,
|
|
281
284
|
variant,
|
|
@@ -316,7 +319,7 @@ var IconButton = React116.forwardRef(
|
|
|
316
319
|
className: "lua:text-current",
|
|
317
320
|
"aria-hidden": "true"
|
|
318
321
|
}
|
|
319
|
-
) }) : /* @__PURE__ */ jsx(Fragment, { children:
|
|
322
|
+
) }) : /* @__PURE__ */ jsx(Fragment, { children: React118.cloneElement(children, {
|
|
320
323
|
"aria-hidden": "true"
|
|
321
324
|
}) })
|
|
322
325
|
}
|
|
@@ -324,7 +327,7 @@ var IconButton = React116.forwardRef(
|
|
|
324
327
|
}
|
|
325
328
|
);
|
|
326
329
|
IconButton.displayName = "IconButton";
|
|
327
|
-
var Input =
|
|
330
|
+
var Input = React118.forwardRef(
|
|
328
331
|
({
|
|
329
332
|
className,
|
|
330
333
|
type = "text",
|
|
@@ -340,7 +343,7 @@ var Input = React116.forwardRef(
|
|
|
340
343
|
disabled,
|
|
341
344
|
...props
|
|
342
345
|
}, ref) => {
|
|
343
|
-
const generatedId =
|
|
346
|
+
const generatedId = React118.useId();
|
|
344
347
|
const inputId = id || generatedId;
|
|
345
348
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
346
349
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -487,7 +490,7 @@ var badgeVariants = cva(
|
|
|
487
490
|
}
|
|
488
491
|
}
|
|
489
492
|
);
|
|
490
|
-
var Badge =
|
|
493
|
+
var Badge = React118.forwardRef(
|
|
491
494
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
492
495
|
const Comp = asChild ? Slot : "span";
|
|
493
496
|
return /* @__PURE__ */ jsx(
|
|
@@ -502,7 +505,7 @@ var Badge = React116.forwardRef(
|
|
|
502
505
|
}
|
|
503
506
|
);
|
|
504
507
|
Badge.displayName = "Badge";
|
|
505
|
-
var Textarea =
|
|
508
|
+
var Textarea = React118.forwardRef(
|
|
506
509
|
({
|
|
507
510
|
className,
|
|
508
511
|
description,
|
|
@@ -515,7 +518,7 @@ var Textarea = React116.forwardRef(
|
|
|
515
518
|
disabled,
|
|
516
519
|
...props
|
|
517
520
|
}, ref) => {
|
|
518
|
-
const generatedId =
|
|
521
|
+
const generatedId = React118.useId();
|
|
519
522
|
const textareaId = id || generatedId;
|
|
520
523
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
521
524
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -610,7 +613,7 @@ var Tabs = TabsPrimitive.Root;
|
|
|
610
613
|
var tabsListVariants = cva([
|
|
611
614
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
612
615
|
].join(" "));
|
|
613
|
-
var TabsList =
|
|
616
|
+
var TabsList = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
614
617
|
TabsPrimitive.List,
|
|
615
618
|
{
|
|
616
619
|
ref,
|
|
@@ -626,7 +629,7 @@ var tabsTriggerVariants = cva([
|
|
|
626
629
|
"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",
|
|
627
630
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
628
631
|
].join(" "));
|
|
629
|
-
var TabsTrigger =
|
|
632
|
+
var TabsTrigger = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
630
633
|
TabsPrimitive.Trigger,
|
|
631
634
|
{
|
|
632
635
|
ref,
|
|
@@ -639,7 +642,7 @@ var tabsContentVariants = cva([
|
|
|
639
642
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
640
643
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
641
644
|
].join(" "));
|
|
642
|
-
var TabsContent =
|
|
645
|
+
var TabsContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
643
646
|
TabsPrimitive.Content,
|
|
644
647
|
{
|
|
645
648
|
ref,
|
|
@@ -648,7 +651,7 @@ var TabsContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
648
651
|
}
|
|
649
652
|
));
|
|
650
653
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
651
|
-
var InputOTP =
|
|
654
|
+
var InputOTP = React118.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
652
655
|
OTPInput,
|
|
653
656
|
{
|
|
654
657
|
ref,
|
|
@@ -661,10 +664,10 @@ var InputOTP = React116.forwardRef(({ className, containerClassName, ...props },
|
|
|
661
664
|
}
|
|
662
665
|
));
|
|
663
666
|
InputOTP.displayName = "InputOTP";
|
|
664
|
-
var InputOTPGroup =
|
|
667
|
+
var InputOTPGroup = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
665
668
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
666
|
-
var InputOTPSlot =
|
|
667
|
-
const inputOTPContext =
|
|
669
|
+
var InputOTPSlot = React118.forwardRef(({ index, className, ...props }, ref) => {
|
|
670
|
+
const inputOTPContext = React118.useContext(OTPInputContext);
|
|
668
671
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
669
672
|
return /* @__PURE__ */ jsxs(
|
|
670
673
|
"div",
|
|
@@ -684,7 +687,7 @@ var InputOTPSlot = React116.forwardRef(({ index, className, ...props }, ref) =>
|
|
|
684
687
|
);
|
|
685
688
|
});
|
|
686
689
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
687
|
-
var InputOTPSeparator =
|
|
690
|
+
var InputOTPSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
688
691
|
"div",
|
|
689
692
|
{
|
|
690
693
|
ref,
|
|
@@ -698,7 +701,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
698
701
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
699
702
|
var Tooltip = TooltipPrimitive.Root;
|
|
700
703
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
701
|
-
var TooltipArrow =
|
|
704
|
+
var TooltipArrow = React118.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
702
705
|
TooltipPrimitive.Arrow,
|
|
703
706
|
{
|
|
704
707
|
ref,
|
|
@@ -715,7 +718,7 @@ var TooltipArrow = React116.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
715
718
|
}
|
|
716
719
|
));
|
|
717
720
|
TooltipArrow.displayName = TooltipPrimitive.Arrow.displayName;
|
|
718
|
-
var TooltipContent =
|
|
721
|
+
var TooltipContent = React118.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
719
722
|
TooltipPrimitive.Content,
|
|
720
723
|
{
|
|
721
724
|
ref,
|
|
@@ -739,7 +742,7 @@ var TooltipContent = React116.forwardRef(({ className, sideOffset = 4, style, ..
|
|
|
739
742
|
}
|
|
740
743
|
) }));
|
|
741
744
|
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
742
|
-
var Card =
|
|
745
|
+
var Card = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
743
746
|
"div",
|
|
744
747
|
{
|
|
745
748
|
ref,
|
|
@@ -751,7 +754,7 @@ var Card = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
|
751
754
|
}
|
|
752
755
|
));
|
|
753
756
|
Card.displayName = "Card";
|
|
754
|
-
var CardHeader =
|
|
757
|
+
var CardHeader = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
755
758
|
"div",
|
|
756
759
|
{
|
|
757
760
|
ref,
|
|
@@ -760,7 +763,7 @@ var CardHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
760
763
|
}
|
|
761
764
|
));
|
|
762
765
|
CardHeader.displayName = "CardHeader";
|
|
763
|
-
var CardTitle =
|
|
766
|
+
var CardTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
764
767
|
"div",
|
|
765
768
|
{
|
|
766
769
|
ref,
|
|
@@ -769,7 +772,7 @@ var CardTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
769
772
|
}
|
|
770
773
|
));
|
|
771
774
|
CardTitle.displayName = "CardTitle";
|
|
772
|
-
var CardDescription =
|
|
775
|
+
var CardDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
773
776
|
"div",
|
|
774
777
|
{
|
|
775
778
|
ref,
|
|
@@ -778,9 +781,9 @@ var CardDescription = React116.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
778
781
|
}
|
|
779
782
|
));
|
|
780
783
|
CardDescription.displayName = "CardDescription";
|
|
781
|
-
var CardContent =
|
|
784
|
+
var CardContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
782
785
|
CardContent.displayName = "CardContent";
|
|
783
|
-
var CardFooter =
|
|
786
|
+
var CardFooter = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
784
787
|
"div",
|
|
785
788
|
{
|
|
786
789
|
ref,
|
|
@@ -853,7 +856,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
853
856
|
restProps
|
|
854
857
|
};
|
|
855
858
|
}
|
|
856
|
-
var ArrowLeft =
|
|
859
|
+
var ArrowLeft = React118.forwardRef(
|
|
857
860
|
({ size = 20, ...props }, ref) => {
|
|
858
861
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
859
862
|
return /* @__PURE__ */ jsxs(
|
|
@@ -882,7 +885,7 @@ var ArrowLeft = React116.forwardRef(
|
|
|
882
885
|
}
|
|
883
886
|
);
|
|
884
887
|
ArrowLeft.displayName = "ArrowLeft";
|
|
885
|
-
var ArrowRight =
|
|
888
|
+
var ArrowRight = React118.forwardRef(
|
|
886
889
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
887
890
|
"svg",
|
|
888
891
|
{
|
|
@@ -904,7 +907,7 @@ var ArrowRight = React116.forwardRef(
|
|
|
904
907
|
)
|
|
905
908
|
);
|
|
906
909
|
ArrowRight.displayName = "ArrowRight";
|
|
907
|
-
var ArrowClockwiseIcon =
|
|
910
|
+
var ArrowClockwiseIcon = React118.forwardRef(
|
|
908
911
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
909
912
|
"svg",
|
|
910
913
|
{
|
|
@@ -926,7 +929,7 @@ var ArrowClockwiseIcon = React116.forwardRef(
|
|
|
926
929
|
)
|
|
927
930
|
);
|
|
928
931
|
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
929
|
-
var ArrowsClockwiseIcon =
|
|
932
|
+
var ArrowsClockwiseIcon = React118.forwardRef(
|
|
930
933
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
931
934
|
"svg",
|
|
932
935
|
{
|
|
@@ -948,7 +951,7 @@ var ArrowsClockwiseIcon = React116.forwardRef(
|
|
|
948
951
|
)
|
|
949
952
|
);
|
|
950
953
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
951
|
-
var ArrowSquareOut =
|
|
954
|
+
var ArrowSquareOut = React118.forwardRef(
|
|
952
955
|
({ size = 20, ...props }, ref) => {
|
|
953
956
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
954
957
|
return /* @__PURE__ */ jsxs(
|
|
@@ -977,7 +980,7 @@ var ArrowSquareOut = React116.forwardRef(
|
|
|
977
980
|
}
|
|
978
981
|
);
|
|
979
982
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
980
|
-
var ArrowUp =
|
|
983
|
+
var ArrowUp = React118.forwardRef(
|
|
981
984
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
982
985
|
"svg",
|
|
983
986
|
{
|
|
@@ -999,7 +1002,7 @@ var ArrowUp = React116.forwardRef(
|
|
|
999
1002
|
)
|
|
1000
1003
|
);
|
|
1001
1004
|
ArrowUp.displayName = "ArrowUp";
|
|
1002
|
-
var BooksIcon =
|
|
1005
|
+
var BooksIcon = React118.forwardRef(
|
|
1003
1006
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1004
1007
|
"svg",
|
|
1005
1008
|
{
|
|
@@ -1021,7 +1024,7 @@ var BooksIcon = React116.forwardRef(
|
|
|
1021
1024
|
)
|
|
1022
1025
|
);
|
|
1023
1026
|
BooksIcon.displayName = "BooksIcon";
|
|
1024
|
-
var Camera =
|
|
1027
|
+
var Camera = React118.forwardRef(
|
|
1025
1028
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1026
1029
|
"svg",
|
|
1027
1030
|
{
|
|
@@ -1043,7 +1046,7 @@ var Camera = React116.forwardRef(
|
|
|
1043
1046
|
)
|
|
1044
1047
|
);
|
|
1045
1048
|
Camera.displayName = "Camera";
|
|
1046
|
-
var CaretDown =
|
|
1049
|
+
var CaretDown = React118.forwardRef(
|
|
1047
1050
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1048
1051
|
"svg",
|
|
1049
1052
|
{
|
|
@@ -1065,7 +1068,7 @@ var CaretDown = React116.forwardRef(
|
|
|
1065
1068
|
)
|
|
1066
1069
|
);
|
|
1067
1070
|
CaretDown.displayName = "CaretDown";
|
|
1068
|
-
var CaretRight =
|
|
1071
|
+
var CaretRight = React118.forwardRef(
|
|
1069
1072
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1070
1073
|
"svg",
|
|
1071
1074
|
{
|
|
@@ -1087,7 +1090,7 @@ var CaretRight = React116.forwardRef(
|
|
|
1087
1090
|
)
|
|
1088
1091
|
);
|
|
1089
1092
|
CaretRight.displayName = "CaretRight";
|
|
1090
|
-
var CaretUpIcon =
|
|
1093
|
+
var CaretUpIcon = React118.forwardRef(
|
|
1091
1094
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1092
1095
|
"svg",
|
|
1093
1096
|
{
|
|
@@ -1109,7 +1112,7 @@ var CaretUpIcon = React116.forwardRef(
|
|
|
1109
1112
|
)
|
|
1110
1113
|
);
|
|
1111
1114
|
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1112
|
-
var ChartBar =
|
|
1115
|
+
var ChartBar = React118.forwardRef(
|
|
1113
1116
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1114
1117
|
"svg",
|
|
1115
1118
|
{
|
|
@@ -1131,7 +1134,7 @@ var ChartBar = React116.forwardRef(
|
|
|
1131
1134
|
)
|
|
1132
1135
|
);
|
|
1133
1136
|
ChartBar.displayName = "ChartBar";
|
|
1134
|
-
var Chat =
|
|
1137
|
+
var Chat = React118.forwardRef(
|
|
1135
1138
|
({ size = 20, ...props }, ref) => {
|
|
1136
1139
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1137
1140
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1160,7 +1163,7 @@ var Chat = React116.forwardRef(
|
|
|
1160
1163
|
}
|
|
1161
1164
|
);
|
|
1162
1165
|
Chat.displayName = "Chat";
|
|
1163
|
-
var ChatsCircle =
|
|
1166
|
+
var ChatsCircle = React118.forwardRef(
|
|
1164
1167
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1165
1168
|
"svg",
|
|
1166
1169
|
{
|
|
@@ -1182,7 +1185,7 @@ var ChatsCircle = React116.forwardRef(
|
|
|
1182
1185
|
)
|
|
1183
1186
|
);
|
|
1184
1187
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1185
|
-
var Check =
|
|
1188
|
+
var Check = React118.forwardRef(
|
|
1186
1189
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1187
1190
|
"svg",
|
|
1188
1191
|
{
|
|
@@ -1204,7 +1207,7 @@ var Check = React116.forwardRef(
|
|
|
1204
1207
|
)
|
|
1205
1208
|
);
|
|
1206
1209
|
Check.displayName = "Check";
|
|
1207
|
-
var CheckSquareIcon =
|
|
1210
|
+
var CheckSquareIcon = React118.forwardRef(
|
|
1208
1211
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1209
1212
|
"svg",
|
|
1210
1213
|
{
|
|
@@ -1226,7 +1229,7 @@ var CheckSquareIcon = React116.forwardRef(
|
|
|
1226
1229
|
)
|
|
1227
1230
|
);
|
|
1228
1231
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1229
|
-
var Circle =
|
|
1232
|
+
var Circle = React118.forwardRef(
|
|
1230
1233
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1231
1234
|
"svg",
|
|
1232
1235
|
{
|
|
@@ -1248,7 +1251,7 @@ var Circle = React116.forwardRef(
|
|
|
1248
1251
|
)
|
|
1249
1252
|
);
|
|
1250
1253
|
Circle.displayName = "Circle";
|
|
1251
|
-
var ClipboardTextIcon =
|
|
1254
|
+
var ClipboardTextIcon = React118.forwardRef(
|
|
1252
1255
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1253
1256
|
"svg",
|
|
1254
1257
|
{
|
|
@@ -1270,7 +1273,7 @@ var ClipboardTextIcon = React116.forwardRef(
|
|
|
1270
1273
|
)
|
|
1271
1274
|
);
|
|
1272
1275
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1273
|
-
var Clock =
|
|
1276
|
+
var Clock = React118.forwardRef(
|
|
1274
1277
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1275
1278
|
"svg",
|
|
1276
1279
|
{
|
|
@@ -1292,7 +1295,7 @@ var Clock = React116.forwardRef(
|
|
|
1292
1295
|
)
|
|
1293
1296
|
);
|
|
1294
1297
|
Clock.displayName = "Clock";
|
|
1295
|
-
var CopySimpleIcon =
|
|
1298
|
+
var CopySimpleIcon = React118.forwardRef(
|
|
1296
1299
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1297
1300
|
"svg",
|
|
1298
1301
|
{
|
|
@@ -1314,7 +1317,7 @@ var CopySimpleIcon = React116.forwardRef(
|
|
|
1314
1317
|
)
|
|
1315
1318
|
);
|
|
1316
1319
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1317
|
-
var CreditCard =
|
|
1320
|
+
var CreditCard = React118.forwardRef(
|
|
1318
1321
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1319
1322
|
"svg",
|
|
1320
1323
|
{
|
|
@@ -1336,7 +1339,7 @@ var CreditCard = React116.forwardRef(
|
|
|
1336
1339
|
)
|
|
1337
1340
|
);
|
|
1338
1341
|
CreditCard.displayName = "CreditCard";
|
|
1339
|
-
var CurrencyCircleDollar =
|
|
1342
|
+
var CurrencyCircleDollar = React118__default.forwardRef(
|
|
1340
1343
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1341
1344
|
"svg",
|
|
1342
1345
|
{
|
|
@@ -1358,7 +1361,7 @@ var CurrencyCircleDollar = React116__default.forwardRef(
|
|
|
1358
1361
|
)
|
|
1359
1362
|
);
|
|
1360
1363
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1361
|
-
var DotsSixVerticalIcon =
|
|
1364
|
+
var DotsSixVerticalIcon = React118.forwardRef(
|
|
1362
1365
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1363
1366
|
"svg",
|
|
1364
1367
|
{
|
|
@@ -1380,7 +1383,7 @@ var DotsSixVerticalIcon = React116.forwardRef(
|
|
|
1380
1383
|
)
|
|
1381
1384
|
);
|
|
1382
1385
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1383
|
-
var DotsThree =
|
|
1386
|
+
var DotsThree = React118.forwardRef(
|
|
1384
1387
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1385
1388
|
"svg",
|
|
1386
1389
|
{
|
|
@@ -1402,7 +1405,7 @@ var DotsThree = React116.forwardRef(
|
|
|
1402
1405
|
)
|
|
1403
1406
|
);
|
|
1404
1407
|
DotsThree.displayName = "DotsThree";
|
|
1405
|
-
var DotsThreeVertical =
|
|
1408
|
+
var DotsThreeVertical = React118.forwardRef(
|
|
1406
1409
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1407
1410
|
"svg",
|
|
1408
1411
|
{
|
|
@@ -1424,7 +1427,7 @@ var DotsThreeVertical = React116.forwardRef(
|
|
|
1424
1427
|
)
|
|
1425
1428
|
);
|
|
1426
1429
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1427
|
-
var FacebookLogo =
|
|
1430
|
+
var FacebookLogo = React118.forwardRef(
|
|
1428
1431
|
({ size = 20, ...props }, ref) => {
|
|
1429
1432
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1430
1433
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1453,7 +1456,7 @@ var FacebookLogo = React116.forwardRef(
|
|
|
1453
1456
|
}
|
|
1454
1457
|
);
|
|
1455
1458
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1456
|
-
var FolderIcon =
|
|
1459
|
+
var FolderIcon = React118.forwardRef(
|
|
1457
1460
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1458
1461
|
"svg",
|
|
1459
1462
|
{
|
|
@@ -1475,7 +1478,7 @@ var FolderIcon = React116.forwardRef(
|
|
|
1475
1478
|
)
|
|
1476
1479
|
);
|
|
1477
1480
|
FolderIcon.displayName = "FolderIcon";
|
|
1478
|
-
var FolderSimpleLockIcon =
|
|
1481
|
+
var FolderSimpleLockIcon = React118.forwardRef(
|
|
1479
1482
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1480
1483
|
"svg",
|
|
1481
1484
|
{
|
|
@@ -1497,7 +1500,7 @@ var FolderSimpleLockIcon = React116.forwardRef(
|
|
|
1497
1500
|
)
|
|
1498
1501
|
);
|
|
1499
1502
|
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1500
|
-
var Gear =
|
|
1503
|
+
var Gear = React118.forwardRef(
|
|
1501
1504
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1502
1505
|
"svg",
|
|
1503
1506
|
{
|
|
@@ -1519,7 +1522,7 @@ var Gear = React116.forwardRef(
|
|
|
1519
1522
|
)
|
|
1520
1523
|
);
|
|
1521
1524
|
Gear.displayName = "Gear";
|
|
1522
|
-
var GearSix =
|
|
1525
|
+
var GearSix = React118.forwardRef(
|
|
1523
1526
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1524
1527
|
"svg",
|
|
1525
1528
|
{
|
|
@@ -1541,7 +1544,7 @@ var GearSix = React116.forwardRef(
|
|
|
1541
1544
|
)
|
|
1542
1545
|
);
|
|
1543
1546
|
GearSix.displayName = "GearSix";
|
|
1544
|
-
var GitCommit =
|
|
1547
|
+
var GitCommit = React118.forwardRef(
|
|
1545
1548
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1546
1549
|
"svg",
|
|
1547
1550
|
{
|
|
@@ -1563,7 +1566,7 @@ var GitCommit = React116.forwardRef(
|
|
|
1563
1566
|
)
|
|
1564
1567
|
);
|
|
1565
1568
|
GitCommit.displayName = "GitCommit";
|
|
1566
|
-
var Headset =
|
|
1569
|
+
var Headset = React118.forwardRef(
|
|
1567
1570
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1568
1571
|
"svg",
|
|
1569
1572
|
{
|
|
@@ -1585,7 +1588,7 @@ var Headset = React116.forwardRef(
|
|
|
1585
1588
|
)
|
|
1586
1589
|
);
|
|
1587
1590
|
Headset.displayName = "Headset";
|
|
1588
|
-
var ImageIcon =
|
|
1591
|
+
var ImageIcon = React118.forwardRef(
|
|
1589
1592
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1590
1593
|
"svg",
|
|
1591
1594
|
{
|
|
@@ -1607,7 +1610,7 @@ var ImageIcon = React116.forwardRef(
|
|
|
1607
1610
|
)
|
|
1608
1611
|
);
|
|
1609
1612
|
ImageIcon.displayName = "ImageIcon";
|
|
1610
|
-
var InstagramLogo =
|
|
1613
|
+
var InstagramLogo = React118.forwardRef(
|
|
1611
1614
|
({ size = 20, ...props }, ref) => {
|
|
1612
1615
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1613
1616
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1636,7 +1639,7 @@ var InstagramLogo = React116.forwardRef(
|
|
|
1636
1639
|
}
|
|
1637
1640
|
);
|
|
1638
1641
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1639
|
-
var KeyIcon =
|
|
1642
|
+
var KeyIcon = React118.forwardRef(
|
|
1640
1643
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1641
1644
|
"svg",
|
|
1642
1645
|
{
|
|
@@ -1658,7 +1661,7 @@ var KeyIcon = React116.forwardRef(
|
|
|
1658
1661
|
)
|
|
1659
1662
|
);
|
|
1660
1663
|
KeyIcon.displayName = "KeyIcon";
|
|
1661
|
-
var LinkIcon =
|
|
1664
|
+
var LinkIcon = React118.forwardRef(
|
|
1662
1665
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1663
1666
|
"svg",
|
|
1664
1667
|
{
|
|
@@ -1680,7 +1683,7 @@ var LinkIcon = React116.forwardRef(
|
|
|
1680
1683
|
)
|
|
1681
1684
|
);
|
|
1682
1685
|
LinkIcon.displayName = "LinkIcon";
|
|
1683
|
-
var LinkSimple =
|
|
1686
|
+
var LinkSimple = React118.forwardRef(
|
|
1684
1687
|
({ size = 20, ...props }, ref) => {
|
|
1685
1688
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1686
1689
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1709,7 +1712,7 @@ var LinkSimple = React116.forwardRef(
|
|
|
1709
1712
|
}
|
|
1710
1713
|
);
|
|
1711
1714
|
LinkSimple.displayName = "LinkSimple";
|
|
1712
|
-
var LockSimple =
|
|
1715
|
+
var LockSimple = React118__default.forwardRef(
|
|
1713
1716
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1714
1717
|
"svg",
|
|
1715
1718
|
{
|
|
@@ -1731,7 +1734,7 @@ var LockSimple = React116__default.forwardRef(
|
|
|
1731
1734
|
)
|
|
1732
1735
|
);
|
|
1733
1736
|
LockSimple.displayName = "LockSimple";
|
|
1734
|
-
var Logo =
|
|
1737
|
+
var Logo = React118.forwardRef(
|
|
1735
1738
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
1736
1739
|
"svg",
|
|
1737
1740
|
{
|
|
@@ -2205,7 +2208,7 @@ var Logo = React116.forwardRef(
|
|
|
2205
2208
|
)
|
|
2206
2209
|
);
|
|
2207
2210
|
Logo.displayName = "Logo";
|
|
2208
|
-
var MagnifyingGlass =
|
|
2211
|
+
var MagnifyingGlass = React118.forwardRef(
|
|
2209
2212
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2210
2213
|
"svg",
|
|
2211
2214
|
{
|
|
@@ -2227,7 +2230,7 @@ var MagnifyingGlass = React116.forwardRef(
|
|
|
2227
2230
|
)
|
|
2228
2231
|
);
|
|
2229
2232
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2230
|
-
var MapPin =
|
|
2233
|
+
var MapPin = React118.forwardRef(
|
|
2231
2234
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2232
2235
|
"svg",
|
|
2233
2236
|
{
|
|
@@ -2249,7 +2252,7 @@ var MapPin = React116.forwardRef(
|
|
|
2249
2252
|
)
|
|
2250
2253
|
);
|
|
2251
2254
|
MapPin.displayName = "MapPin";
|
|
2252
|
-
var Microphone =
|
|
2255
|
+
var Microphone = React118.forwardRef(
|
|
2253
2256
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2254
2257
|
"svg",
|
|
2255
2258
|
{
|
|
@@ -2271,7 +2274,7 @@ var Microphone = React116.forwardRef(
|
|
|
2271
2274
|
)
|
|
2272
2275
|
);
|
|
2273
2276
|
Microphone.displayName = "Microphone";
|
|
2274
|
-
var Minus =
|
|
2277
|
+
var Minus = React118.forwardRef(
|
|
2275
2278
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2276
2279
|
"svg",
|
|
2277
2280
|
{
|
|
@@ -2293,7 +2296,7 @@ var Minus = React116.forwardRef(
|
|
|
2293
2296
|
)
|
|
2294
2297
|
);
|
|
2295
2298
|
Minus.displayName = "Minus";
|
|
2296
|
-
var MinusCircleIcon =
|
|
2299
|
+
var MinusCircleIcon = React118.forwardRef(
|
|
2297
2300
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2298
2301
|
"svg",
|
|
2299
2302
|
{
|
|
@@ -2315,7 +2318,7 @@ var MinusCircleIcon = React116.forwardRef(
|
|
|
2315
2318
|
)
|
|
2316
2319
|
);
|
|
2317
2320
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2318
|
-
var PackageIcon =
|
|
2321
|
+
var PackageIcon = React118.forwardRef(
|
|
2319
2322
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2320
2323
|
"svg",
|
|
2321
2324
|
{
|
|
@@ -2337,7 +2340,7 @@ var PackageIcon = React116.forwardRef(
|
|
|
2337
2340
|
)
|
|
2338
2341
|
);
|
|
2339
2342
|
PackageIcon.displayName = "PackageIcon";
|
|
2340
|
-
var Paperclip =
|
|
2343
|
+
var Paperclip = React118.forwardRef(
|
|
2341
2344
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2342
2345
|
"svg",
|
|
2343
2346
|
{
|
|
@@ -2359,7 +2362,7 @@ var Paperclip = React116.forwardRef(
|
|
|
2359
2362
|
)
|
|
2360
2363
|
);
|
|
2361
2364
|
Paperclip.displayName = "Paperclip";
|
|
2362
|
-
var PaperPlane =
|
|
2365
|
+
var PaperPlane = React118.forwardRef(
|
|
2363
2366
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2364
2367
|
"svg",
|
|
2365
2368
|
{
|
|
@@ -2381,7 +2384,7 @@ var PaperPlane = React116.forwardRef(
|
|
|
2381
2384
|
)
|
|
2382
2385
|
);
|
|
2383
2386
|
PaperPlane.displayName = "PaperPlane";
|
|
2384
|
-
var PaperPlaneTilt =
|
|
2387
|
+
var PaperPlaneTilt = React118.forwardRef(
|
|
2385
2388
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2386
2389
|
"svg",
|
|
2387
2390
|
{
|
|
@@ -2403,7 +2406,7 @@ var PaperPlaneTilt = React116.forwardRef(
|
|
|
2403
2406
|
)
|
|
2404
2407
|
);
|
|
2405
2408
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2406
|
-
var PencilSimple =
|
|
2409
|
+
var PencilSimple = React118.forwardRef(
|
|
2407
2410
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2408
2411
|
"svg",
|
|
2409
2412
|
{
|
|
@@ -2425,7 +2428,7 @@ var PencilSimple = React116.forwardRef(
|
|
|
2425
2428
|
)
|
|
2426
2429
|
);
|
|
2427
2430
|
PencilSimple.displayName = "PencilSimple";
|
|
2428
|
-
var PlugsRegular =
|
|
2431
|
+
var PlugsRegular = React118.forwardRef(
|
|
2429
2432
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2430
2433
|
"svg",
|
|
2431
2434
|
{
|
|
@@ -2447,7 +2450,7 @@ var PlugsRegular = React116.forwardRef(
|
|
|
2447
2450
|
)
|
|
2448
2451
|
);
|
|
2449
2452
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2450
|
-
var ShoppingCartIcon =
|
|
2453
|
+
var ShoppingCartIcon = React118.forwardRef(
|
|
2451
2454
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2452
2455
|
"svg",
|
|
2453
2456
|
{
|
|
@@ -2469,7 +2472,7 @@ var ShoppingCartIcon = React116.forwardRef(
|
|
|
2469
2472
|
)
|
|
2470
2473
|
);
|
|
2471
2474
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2472
|
-
var Plus =
|
|
2475
|
+
var Plus = React118.forwardRef(
|
|
2473
2476
|
({ size = 20, ...props }, ref) => {
|
|
2474
2477
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2475
2478
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2498,7 +2501,7 @@ var Plus = React116.forwardRef(
|
|
|
2498
2501
|
}
|
|
2499
2502
|
);
|
|
2500
2503
|
Plus.displayName = "Plus";
|
|
2501
|
-
var RecordIcon =
|
|
2504
|
+
var RecordIcon = React118.forwardRef(
|
|
2502
2505
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2503
2506
|
"svg",
|
|
2504
2507
|
{
|
|
@@ -2520,7 +2523,7 @@ var RecordIcon = React116.forwardRef(
|
|
|
2520
2523
|
)
|
|
2521
2524
|
);
|
|
2522
2525
|
RecordIcon.displayName = "RecordIcon";
|
|
2523
|
-
var SidebarSimple =
|
|
2526
|
+
var SidebarSimple = React118.forwardRef(
|
|
2524
2527
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2525
2528
|
"svg",
|
|
2526
2529
|
{
|
|
@@ -2542,7 +2545,7 @@ var SidebarSimple = React116.forwardRef(
|
|
|
2542
2545
|
)
|
|
2543
2546
|
);
|
|
2544
2547
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2545
|
-
var SignOut =
|
|
2548
|
+
var SignOut = React118.forwardRef(
|
|
2546
2549
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2547
2550
|
"svg",
|
|
2548
2551
|
{
|
|
@@ -2564,7 +2567,7 @@ var SignOut = React116.forwardRef(
|
|
|
2564
2567
|
)
|
|
2565
2568
|
);
|
|
2566
2569
|
SignOut.displayName = "SignOut";
|
|
2567
|
-
var Storefront =
|
|
2570
|
+
var Storefront = React118.forwardRef(
|
|
2568
2571
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2569
2572
|
"svg",
|
|
2570
2573
|
{
|
|
@@ -2586,7 +2589,7 @@ var Storefront = React116.forwardRef(
|
|
|
2586
2589
|
)
|
|
2587
2590
|
);
|
|
2588
2591
|
Storefront.displayName = "Storefront";
|
|
2589
|
-
var Tag =
|
|
2592
|
+
var Tag = React118.forwardRef(
|
|
2590
2593
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2591
2594
|
"svg",
|
|
2592
2595
|
{
|
|
@@ -2608,7 +2611,7 @@ var Tag = React116.forwardRef(
|
|
|
2608
2611
|
)
|
|
2609
2612
|
);
|
|
2610
2613
|
Tag.displayName = "Tag";
|
|
2611
|
-
var Ticket =
|
|
2614
|
+
var Ticket = React118.forwardRef(
|
|
2612
2615
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2613
2616
|
"svg",
|
|
2614
2617
|
{
|
|
@@ -2630,7 +2633,7 @@ var Ticket = React116.forwardRef(
|
|
|
2630
2633
|
)
|
|
2631
2634
|
);
|
|
2632
2635
|
Ticket.displayName = "Ticket";
|
|
2633
|
-
var Trash =
|
|
2636
|
+
var Trash = React118.forwardRef(
|
|
2634
2637
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2635
2638
|
"svg",
|
|
2636
2639
|
{
|
|
@@ -2652,7 +2655,7 @@ var Trash = React116.forwardRef(
|
|
|
2652
2655
|
)
|
|
2653
2656
|
);
|
|
2654
2657
|
Trash.displayName = "Trash";
|
|
2655
|
-
var UserCircle =
|
|
2658
|
+
var UserCircle = React118.forwardRef(
|
|
2656
2659
|
({ size = 24, ...props }, ref) => {
|
|
2657
2660
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2658
2661
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2681,7 +2684,7 @@ var UserCircle = React116.forwardRef(
|
|
|
2681
2684
|
}
|
|
2682
2685
|
);
|
|
2683
2686
|
UserCircle.displayName = "UserCircle";
|
|
2684
|
-
var UserIcon =
|
|
2687
|
+
var UserIcon = React118.forwardRef(
|
|
2685
2688
|
({ size = 24, ...props }, ref) => {
|
|
2686
2689
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2687
2690
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2710,7 +2713,7 @@ var UserIcon = React116.forwardRef(
|
|
|
2710
2713
|
}
|
|
2711
2714
|
);
|
|
2712
2715
|
UserIcon.displayName = "UserIcon";
|
|
2713
|
-
var Users =
|
|
2716
|
+
var Users = React118.forwardRef(
|
|
2714
2717
|
({ size = 20, ...props }, ref) => {
|
|
2715
2718
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2716
2719
|
props,
|
|
@@ -2739,7 +2742,7 @@ var Users = React116.forwardRef(
|
|
|
2739
2742
|
}
|
|
2740
2743
|
);
|
|
2741
2744
|
Users.displayName = "Users";
|
|
2742
|
-
var VideoCamera =
|
|
2745
|
+
var VideoCamera = React118.forwardRef(
|
|
2743
2746
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2744
2747
|
"svg",
|
|
2745
2748
|
{
|
|
@@ -2761,7 +2764,7 @@ var VideoCamera = React116.forwardRef(
|
|
|
2761
2764
|
)
|
|
2762
2765
|
);
|
|
2763
2766
|
VideoCamera.displayName = "VideoCamera";
|
|
2764
|
-
var WhatsAppLogo =
|
|
2767
|
+
var WhatsAppLogo = React118.forwardRef(
|
|
2765
2768
|
({ size = 20, ...props }, ref) => {
|
|
2766
2769
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2767
2770
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2790,7 +2793,7 @@ var WhatsAppLogo = React116.forwardRef(
|
|
|
2790
2793
|
}
|
|
2791
2794
|
);
|
|
2792
2795
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2793
|
-
var WarningOctagon =
|
|
2796
|
+
var WarningOctagon = React118.forwardRef(
|
|
2794
2797
|
({ size = 20, ...props }, ref) => {
|
|
2795
2798
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2796
2799
|
props,
|
|
@@ -2819,7 +2822,7 @@ var WarningOctagon = React116.forwardRef(
|
|
|
2819
2822
|
}
|
|
2820
2823
|
);
|
|
2821
2824
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2822
|
-
var WarningTriangle =
|
|
2825
|
+
var WarningTriangle = React118.forwardRef(
|
|
2823
2826
|
({ size = 20, ...props }, ref) => {
|
|
2824
2827
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2825
2828
|
props,
|
|
@@ -2848,7 +2851,7 @@ var WarningTriangle = React116.forwardRef(
|
|
|
2848
2851
|
}
|
|
2849
2852
|
);
|
|
2850
2853
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2851
|
-
var Waveform =
|
|
2854
|
+
var Waveform = React118.forwardRef(
|
|
2852
2855
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2853
2856
|
"svg",
|
|
2854
2857
|
{
|
|
@@ -2870,7 +2873,7 @@ var Waveform = React116.forwardRef(
|
|
|
2870
2873
|
)
|
|
2871
2874
|
);
|
|
2872
2875
|
Waveform.displayName = "Waveform";
|
|
2873
|
-
var WrenchIcon =
|
|
2876
|
+
var WrenchIcon = React118.forwardRef(
|
|
2874
2877
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2875
2878
|
"svg",
|
|
2876
2879
|
{
|
|
@@ -2892,7 +2895,7 @@ var WrenchIcon = React116.forwardRef(
|
|
|
2892
2895
|
)
|
|
2893
2896
|
);
|
|
2894
2897
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2895
|
-
var XIcon =
|
|
2898
|
+
var XIcon = React118.forwardRef(
|
|
2896
2899
|
({ size = 24, ...props }, ref) => {
|
|
2897
2900
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2898
2901
|
props,
|
|
@@ -2923,13 +2926,50 @@ var XIcon = React116.forwardRef(
|
|
|
2923
2926
|
}
|
|
2924
2927
|
);
|
|
2925
2928
|
XIcon.displayName = "XIcon";
|
|
2929
|
+
var DownloadIcon = React118.forwardRef(
|
|
2930
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2931
|
+
"svg",
|
|
2932
|
+
{
|
|
2933
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2934
|
+
ref,
|
|
2935
|
+
width: size,
|
|
2936
|
+
height: size,
|
|
2937
|
+
fill: "none",
|
|
2938
|
+
viewBox: "0 0 24 24",
|
|
2939
|
+
children: [
|
|
2940
|
+
/* @__PURE__ */ jsx("title", { children: "Download" }),
|
|
2941
|
+
/* @__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" })
|
|
2942
|
+
]
|
|
2943
|
+
}
|
|
2944
|
+
)
|
|
2945
|
+
);
|
|
2946
|
+
DownloadIcon.displayName = "DownloadIcon";
|
|
2947
|
+
var TextIcon = React118.forwardRef(
|
|
2948
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2949
|
+
"svg",
|
|
2950
|
+
{
|
|
2951
|
+
ref,
|
|
2952
|
+
width: size,
|
|
2953
|
+
height: size,
|
|
2954
|
+
...props,
|
|
2955
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2956
|
+
fill: "none",
|
|
2957
|
+
viewBox: "0 0 24 24",
|
|
2958
|
+
children: [
|
|
2959
|
+
/* @__PURE__ */ jsx("title", { children: "Text" }),
|
|
2960
|
+
/* @__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" })
|
|
2961
|
+
]
|
|
2962
|
+
}
|
|
2963
|
+
)
|
|
2964
|
+
);
|
|
2965
|
+
TextIcon.displayName = "TextIcon";
|
|
2926
2966
|
|
|
2927
2967
|
// src/icons/file-icons/aep.tsx
|
|
2928
2968
|
var aep_exports = {};
|
|
2929
2969
|
__export(aep_exports, {
|
|
2930
2970
|
AEP: () => AEP
|
|
2931
2971
|
});
|
|
2932
|
-
var AEP =
|
|
2972
|
+
var AEP = React118.forwardRef(
|
|
2933
2973
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2934
2974
|
"svg",
|
|
2935
2975
|
{
|
|
@@ -2977,7 +3017,7 @@ var ai_exports = {};
|
|
|
2977
3017
|
__export(ai_exports, {
|
|
2978
3018
|
AI: () => AI
|
|
2979
3019
|
});
|
|
2980
|
-
var AI =
|
|
3020
|
+
var AI = React118.forwardRef(
|
|
2981
3021
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2982
3022
|
"svg",
|
|
2983
3023
|
{
|
|
@@ -3025,7 +3065,7 @@ var avi_exports = {};
|
|
|
3025
3065
|
__export(avi_exports, {
|
|
3026
3066
|
AVI: () => AVI
|
|
3027
3067
|
});
|
|
3028
|
-
var AVI =
|
|
3068
|
+
var AVI = React118.forwardRef(
|
|
3029
3069
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3030
3070
|
"svg",
|
|
3031
3071
|
{
|
|
@@ -3073,7 +3113,7 @@ var blend_exports = {};
|
|
|
3073
3113
|
__export(blend_exports, {
|
|
3074
3114
|
Blend: () => Blend
|
|
3075
3115
|
});
|
|
3076
|
-
var Blend =
|
|
3116
|
+
var Blend = React118.forwardRef(
|
|
3077
3117
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3078
3118
|
"svg",
|
|
3079
3119
|
{
|
|
@@ -3121,7 +3161,7 @@ var c4d_exports = {};
|
|
|
3121
3161
|
__export(c4d_exports, {
|
|
3122
3162
|
C4D: () => C4D
|
|
3123
3163
|
});
|
|
3124
|
-
var C4D =
|
|
3164
|
+
var C4D = React118.forwardRef(
|
|
3125
3165
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3126
3166
|
"svg",
|
|
3127
3167
|
{
|
|
@@ -3169,7 +3209,7 @@ var cdr_exports = {};
|
|
|
3169
3209
|
__export(cdr_exports, {
|
|
3170
3210
|
CDR: () => CDR
|
|
3171
3211
|
});
|
|
3172
|
-
var CDR =
|
|
3212
|
+
var CDR = React118.forwardRef(
|
|
3173
3213
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3174
3214
|
"svg",
|
|
3175
3215
|
{
|
|
@@ -3217,7 +3257,7 @@ var css_exports = {};
|
|
|
3217
3257
|
__export(css_exports, {
|
|
3218
3258
|
CSS: () => CSS
|
|
3219
3259
|
});
|
|
3220
|
-
var CSS =
|
|
3260
|
+
var CSS = React118.forwardRef(
|
|
3221
3261
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3222
3262
|
"svg",
|
|
3223
3263
|
{
|
|
@@ -3265,7 +3305,7 @@ var csv_exports = {};
|
|
|
3265
3305
|
__export(csv_exports, {
|
|
3266
3306
|
CSV: () => CSV
|
|
3267
3307
|
});
|
|
3268
|
-
var CSV =
|
|
3308
|
+
var CSV = React118.forwardRef(
|
|
3269
3309
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3270
3310
|
"svg",
|
|
3271
3311
|
{
|
|
@@ -3313,7 +3353,7 @@ var dmg_exports = {};
|
|
|
3313
3353
|
__export(dmg_exports, {
|
|
3314
3354
|
DMG: () => DMG
|
|
3315
3355
|
});
|
|
3316
|
-
var DMG =
|
|
3356
|
+
var DMG = React118.forwardRef(
|
|
3317
3357
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3318
3358
|
"svg",
|
|
3319
3359
|
{
|
|
@@ -3361,7 +3401,7 @@ var doc_exports = {};
|
|
|
3361
3401
|
__export(doc_exports, {
|
|
3362
3402
|
DOC: () => DOC
|
|
3363
3403
|
});
|
|
3364
|
-
var DOC =
|
|
3404
|
+
var DOC = React118.forwardRef(
|
|
3365
3405
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3366
3406
|
"svg",
|
|
3367
3407
|
{
|
|
@@ -3409,7 +3449,7 @@ var exe_exports = {};
|
|
|
3409
3449
|
__export(exe_exports, {
|
|
3410
3450
|
EXE: () => EXE
|
|
3411
3451
|
});
|
|
3412
|
-
var EXE =
|
|
3452
|
+
var EXE = React118.forwardRef(
|
|
3413
3453
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3414
3454
|
"svg",
|
|
3415
3455
|
{
|
|
@@ -3457,7 +3497,7 @@ var fig_exports = {};
|
|
|
3457
3497
|
__export(fig_exports, {
|
|
3458
3498
|
Fig: () => Fig
|
|
3459
3499
|
});
|
|
3460
|
-
var Fig =
|
|
3500
|
+
var Fig = React118.forwardRef(
|
|
3461
3501
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3462
3502
|
"svg",
|
|
3463
3503
|
{
|
|
@@ -3505,7 +3545,7 @@ var gif_exports = {};
|
|
|
3505
3545
|
__export(gif_exports, {
|
|
3506
3546
|
GIF: () => GIF
|
|
3507
3547
|
});
|
|
3508
|
-
var GIF =
|
|
3548
|
+
var GIF = React118.forwardRef(
|
|
3509
3549
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3510
3550
|
"svg",
|
|
3511
3551
|
{
|
|
@@ -3553,7 +3593,7 @@ var html_exports = {};
|
|
|
3553
3593
|
__export(html_exports, {
|
|
3554
3594
|
HTML: () => HTML
|
|
3555
3595
|
});
|
|
3556
|
-
var HTML =
|
|
3596
|
+
var HTML = React118.forwardRef(
|
|
3557
3597
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3558
3598
|
"svg",
|
|
3559
3599
|
{
|
|
@@ -3601,7 +3641,7 @@ var ico_exports = {};
|
|
|
3601
3641
|
__export(ico_exports, {
|
|
3602
3642
|
ICO: () => ICO
|
|
3603
3643
|
});
|
|
3604
|
-
var ICO =
|
|
3644
|
+
var ICO = React118.forwardRef(
|
|
3605
3645
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3606
3646
|
"svg",
|
|
3607
3647
|
{
|
|
@@ -3649,7 +3689,7 @@ var java_exports = {};
|
|
|
3649
3689
|
__export(java_exports, {
|
|
3650
3690
|
Java: () => Java
|
|
3651
3691
|
});
|
|
3652
|
-
var Java =
|
|
3692
|
+
var Java = React118.forwardRef(
|
|
3653
3693
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3654
3694
|
"svg",
|
|
3655
3695
|
{
|
|
@@ -3697,7 +3737,7 @@ var jpeg_exports = {};
|
|
|
3697
3737
|
__export(jpeg_exports, {
|
|
3698
3738
|
JPEG: () => JPEG
|
|
3699
3739
|
});
|
|
3700
|
-
var JPEG =
|
|
3740
|
+
var JPEG = React118.forwardRef(
|
|
3701
3741
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3702
3742
|
"svg",
|
|
3703
3743
|
{
|
|
@@ -3745,7 +3785,7 @@ var jpg_exports = {};
|
|
|
3745
3785
|
__export(jpg_exports, {
|
|
3746
3786
|
JPG: () => JPG
|
|
3747
3787
|
});
|
|
3748
|
-
var JPG =
|
|
3788
|
+
var JPG = React118.forwardRef(
|
|
3749
3789
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3750
3790
|
"svg",
|
|
3751
3791
|
{
|
|
@@ -3793,7 +3833,7 @@ var js_exports = {};
|
|
|
3793
3833
|
__export(js_exports, {
|
|
3794
3834
|
JS: () => JS
|
|
3795
3835
|
});
|
|
3796
|
-
var JS =
|
|
3836
|
+
var JS = React118.forwardRef(
|
|
3797
3837
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3798
3838
|
"svg",
|
|
3799
3839
|
{
|
|
@@ -3841,7 +3881,7 @@ var json_exports = {};
|
|
|
3841
3881
|
__export(json_exports, {
|
|
3842
3882
|
JSON: () => JSON
|
|
3843
3883
|
});
|
|
3844
|
-
var JSON =
|
|
3884
|
+
var JSON = React118.forwardRef(
|
|
3845
3885
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3846
3886
|
"svg",
|
|
3847
3887
|
{
|
|
@@ -3889,7 +3929,7 @@ var mov_exports = {};
|
|
|
3889
3929
|
__export(mov_exports, {
|
|
3890
3930
|
MOV: () => MOV
|
|
3891
3931
|
});
|
|
3892
|
-
var MOV =
|
|
3932
|
+
var MOV = React118.forwardRef(
|
|
3893
3933
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3894
3934
|
"svg",
|
|
3895
3935
|
{
|
|
@@ -3937,7 +3977,7 @@ var mp3_exports = {};
|
|
|
3937
3977
|
__export(mp3_exports, {
|
|
3938
3978
|
MP3: () => MP3
|
|
3939
3979
|
});
|
|
3940
|
-
var MP3 =
|
|
3980
|
+
var MP3 = React118.forwardRef(
|
|
3941
3981
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3942
3982
|
"svg",
|
|
3943
3983
|
{
|
|
@@ -3985,7 +4025,7 @@ var mp4_exports = {};
|
|
|
3985
4025
|
__export(mp4_exports, {
|
|
3986
4026
|
MP4: () => MP4
|
|
3987
4027
|
});
|
|
3988
|
-
var MP4 =
|
|
4028
|
+
var MP4 = React118.forwardRef(
|
|
3989
4029
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3990
4030
|
"svg",
|
|
3991
4031
|
{
|
|
@@ -4033,7 +4073,7 @@ var mpg_exports = {};
|
|
|
4033
4073
|
__export(mpg_exports, {
|
|
4034
4074
|
MPG: () => MPG
|
|
4035
4075
|
});
|
|
4036
|
-
var MPG =
|
|
4076
|
+
var MPG = React118.forwardRef(
|
|
4037
4077
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4038
4078
|
"svg",
|
|
4039
4079
|
{
|
|
@@ -4081,7 +4121,7 @@ var pdf_exports = {};
|
|
|
4081
4121
|
__export(pdf_exports, {
|
|
4082
4122
|
PDF: () => PDF
|
|
4083
4123
|
});
|
|
4084
|
-
var PDF =
|
|
4124
|
+
var PDF = React118.forwardRef(
|
|
4085
4125
|
({ ...props }, ref) => {
|
|
4086
4126
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4087
4127
|
return /* @__PURE__ */ jsxs(
|
|
@@ -4134,7 +4174,7 @@ var png_exports = {};
|
|
|
4134
4174
|
__export(png_exports, {
|
|
4135
4175
|
PNG: () => PNG
|
|
4136
4176
|
});
|
|
4137
|
-
var PNG =
|
|
4177
|
+
var PNG = React118.forwardRef(
|
|
4138
4178
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4139
4179
|
"svg",
|
|
4140
4180
|
{
|
|
@@ -4182,7 +4222,7 @@ var ppt_exports = {};
|
|
|
4182
4222
|
__export(ppt_exports, {
|
|
4183
4223
|
PPT: () => PPT
|
|
4184
4224
|
});
|
|
4185
|
-
var PPT =
|
|
4225
|
+
var PPT = React118.forwardRef(
|
|
4186
4226
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4187
4227
|
"svg",
|
|
4188
4228
|
{
|
|
@@ -4230,7 +4270,7 @@ var psd_exports = {};
|
|
|
4230
4270
|
__export(psd_exports, {
|
|
4231
4271
|
PSD: () => PSD
|
|
4232
4272
|
});
|
|
4233
|
-
var PSD =
|
|
4273
|
+
var PSD = React118.forwardRef(
|
|
4234
4274
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4235
4275
|
"svg",
|
|
4236
4276
|
{
|
|
@@ -4278,7 +4318,7 @@ var rar_exports = {};
|
|
|
4278
4318
|
__export(rar_exports, {
|
|
4279
4319
|
Rar: () => Rar
|
|
4280
4320
|
});
|
|
4281
|
-
var Rar =
|
|
4321
|
+
var Rar = React118.forwardRef(
|
|
4282
4322
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4283
4323
|
"svg",
|
|
4284
4324
|
{
|
|
@@ -4326,7 +4366,7 @@ var sketch_exports = {};
|
|
|
4326
4366
|
__export(sketch_exports, {
|
|
4327
4367
|
Sketch: () => Sketch
|
|
4328
4368
|
});
|
|
4329
|
-
var Sketch =
|
|
4369
|
+
var Sketch = React118.forwardRef(
|
|
4330
4370
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4331
4371
|
"svg",
|
|
4332
4372
|
{
|
|
@@ -4374,7 +4414,7 @@ var svg_exports = {};
|
|
|
4374
4414
|
__export(svg_exports, {
|
|
4375
4415
|
SVG: () => SVG
|
|
4376
4416
|
});
|
|
4377
|
-
var SVG =
|
|
4417
|
+
var SVG = React118.forwardRef(
|
|
4378
4418
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4379
4419
|
"svg",
|
|
4380
4420
|
{
|
|
@@ -4422,7 +4462,7 @@ var tiff_exports = {};
|
|
|
4422
4462
|
__export(tiff_exports, {
|
|
4423
4463
|
TIFF: () => TIFF
|
|
4424
4464
|
});
|
|
4425
|
-
var TIFF =
|
|
4465
|
+
var TIFF = React118.forwardRef(
|
|
4426
4466
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4427
4467
|
"svg",
|
|
4428
4468
|
{
|
|
@@ -4470,7 +4510,7 @@ var txt_exports = {};
|
|
|
4470
4510
|
__export(txt_exports, {
|
|
4471
4511
|
TXT: () => TXT
|
|
4472
4512
|
});
|
|
4473
|
-
var TXT =
|
|
4513
|
+
var TXT = React118.forwardRef(
|
|
4474
4514
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4475
4515
|
"svg",
|
|
4476
4516
|
{
|
|
@@ -4518,7 +4558,7 @@ var wav_exports = {};
|
|
|
4518
4558
|
__export(wav_exports, {
|
|
4519
4559
|
WAV: () => WAV
|
|
4520
4560
|
});
|
|
4521
|
-
var WAV =
|
|
4561
|
+
var WAV = React118.forwardRef(
|
|
4522
4562
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4523
4563
|
"svg",
|
|
4524
4564
|
{
|
|
@@ -4566,7 +4606,7 @@ var webp_exports = {};
|
|
|
4566
4606
|
__export(webp_exports, {
|
|
4567
4607
|
WEBP: () => WEBP
|
|
4568
4608
|
});
|
|
4569
|
-
var WEBP =
|
|
4609
|
+
var WEBP = React118.forwardRef(
|
|
4570
4610
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4571
4611
|
"svg",
|
|
4572
4612
|
{
|
|
@@ -4614,7 +4654,7 @@ var xls_exports = {};
|
|
|
4614
4654
|
__export(xls_exports, {
|
|
4615
4655
|
XLS: () => XLS
|
|
4616
4656
|
});
|
|
4617
|
-
var XLS =
|
|
4657
|
+
var XLS = React118.forwardRef(
|
|
4618
4658
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4619
4659
|
"svg",
|
|
4620
4660
|
{
|
|
@@ -4662,7 +4702,7 @@ var zip_exports = {};
|
|
|
4662
4702
|
__export(zip_exports, {
|
|
4663
4703
|
Zip: () => Zip
|
|
4664
4704
|
});
|
|
4665
|
-
var Zip =
|
|
4705
|
+
var Zip = React118.forwardRef(
|
|
4666
4706
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4667
4707
|
"svg",
|
|
4668
4708
|
{
|
|
@@ -4704,15 +4744,15 @@ var Zip = React116.forwardRef(
|
|
|
4704
4744
|
)
|
|
4705
4745
|
);
|
|
4706
4746
|
Zip.displayName = "Zip";
|
|
4707
|
-
var CarouselContext =
|
|
4747
|
+
var CarouselContext = React118.createContext(null);
|
|
4708
4748
|
function useCarousel() {
|
|
4709
|
-
const context =
|
|
4749
|
+
const context = React118.useContext(CarouselContext);
|
|
4710
4750
|
if (!context) {
|
|
4711
4751
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4712
4752
|
}
|
|
4713
4753
|
return context;
|
|
4714
4754
|
}
|
|
4715
|
-
var Carousel =
|
|
4755
|
+
var Carousel = React118.forwardRef(
|
|
4716
4756
|
({
|
|
4717
4757
|
orientation = "horizontal",
|
|
4718
4758
|
opts,
|
|
@@ -4729,10 +4769,10 @@ var Carousel = React116.forwardRef(
|
|
|
4729
4769
|
},
|
|
4730
4770
|
plugins
|
|
4731
4771
|
);
|
|
4732
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4733
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4734
|
-
const [slideCount, setSlideCount] =
|
|
4735
|
-
const onSelect =
|
|
4772
|
+
const [canScrollPrev, setCanScrollPrev] = React118.useState(false);
|
|
4773
|
+
const [canScrollNext, setCanScrollNext] = React118.useState(false);
|
|
4774
|
+
const [slideCount, setSlideCount] = React118.useState(0);
|
|
4775
|
+
const onSelect = React118.useCallback((api2) => {
|
|
4736
4776
|
if (!api2) {
|
|
4737
4777
|
return;
|
|
4738
4778
|
}
|
|
@@ -4740,13 +4780,13 @@ var Carousel = React116.forwardRef(
|
|
|
4740
4780
|
setCanScrollNext(api2.canScrollNext());
|
|
4741
4781
|
setSlideCount(api2.scrollSnapList().length);
|
|
4742
4782
|
}, []);
|
|
4743
|
-
const scrollPrev =
|
|
4783
|
+
const scrollPrev = React118.useCallback(() => {
|
|
4744
4784
|
api?.scrollPrev();
|
|
4745
4785
|
}, [api]);
|
|
4746
|
-
const scrollNext =
|
|
4786
|
+
const scrollNext = React118.useCallback(() => {
|
|
4747
4787
|
api?.scrollNext();
|
|
4748
4788
|
}, [api]);
|
|
4749
|
-
const handleKeyDown =
|
|
4789
|
+
const handleKeyDown = React118.useCallback(
|
|
4750
4790
|
(event) => {
|
|
4751
4791
|
if (event.key === "ArrowLeft") {
|
|
4752
4792
|
event.preventDefault();
|
|
@@ -4758,13 +4798,13 @@ var Carousel = React116.forwardRef(
|
|
|
4758
4798
|
},
|
|
4759
4799
|
[scrollPrev, scrollNext]
|
|
4760
4800
|
);
|
|
4761
|
-
|
|
4801
|
+
React118.useEffect(() => {
|
|
4762
4802
|
if (!api || !setApi) {
|
|
4763
4803
|
return;
|
|
4764
4804
|
}
|
|
4765
4805
|
setApi(api);
|
|
4766
4806
|
}, [api, setApi]);
|
|
4767
|
-
|
|
4807
|
+
React118.useEffect(() => {
|
|
4768
4808
|
if (!api) {
|
|
4769
4809
|
return;
|
|
4770
4810
|
}
|
|
@@ -4809,7 +4849,7 @@ var Carousel = React116.forwardRef(
|
|
|
4809
4849
|
}
|
|
4810
4850
|
);
|
|
4811
4851
|
Carousel.displayName = "Carousel";
|
|
4812
|
-
var CarouselContent =
|
|
4852
|
+
var CarouselContent = React118.forwardRef(({ className, ...props }, ref) => {
|
|
4813
4853
|
const { carouselRef, orientation } = useCarousel();
|
|
4814
4854
|
return /* @__PURE__ */ jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
4815
4855
|
"div",
|
|
@@ -4825,7 +4865,7 @@ var CarouselContent = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
4825
4865
|
) });
|
|
4826
4866
|
});
|
|
4827
4867
|
CarouselContent.displayName = "CarouselContent";
|
|
4828
|
-
var CarouselItem =
|
|
4868
|
+
var CarouselItem = React118.forwardRef(({ className, ...props }, ref) => {
|
|
4829
4869
|
const { orientation } = useCarousel();
|
|
4830
4870
|
return /* @__PURE__ */ jsx(
|
|
4831
4871
|
"div",
|
|
@@ -4843,7 +4883,7 @@ var CarouselItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
4843
4883
|
);
|
|
4844
4884
|
});
|
|
4845
4885
|
CarouselItem.displayName = "CarouselItem";
|
|
4846
|
-
var CarouselPrevious =
|
|
4886
|
+
var CarouselPrevious = React118.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4847
4887
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4848
4888
|
return /* @__PURE__ */ jsx(
|
|
4849
4889
|
Button,
|
|
@@ -4865,7 +4905,7 @@ var CarouselPrevious = React116.forwardRef(({ className, variant = "outline", si
|
|
|
4865
4905
|
);
|
|
4866
4906
|
});
|
|
4867
4907
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4868
|
-
var CarouselNext =
|
|
4908
|
+
var CarouselNext = React118.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4869
4909
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4870
4910
|
return /* @__PURE__ */ jsx(
|
|
4871
4911
|
Button,
|
|
@@ -4891,7 +4931,7 @@ var Dialog = DialogPrimitive.Root;
|
|
|
4891
4931
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4892
4932
|
var DialogPortal = DialogPrimitive.Portal;
|
|
4893
4933
|
var DialogClose = DialogPrimitive.Close;
|
|
4894
|
-
var DialogOverlay =
|
|
4934
|
+
var DialogOverlay = React118.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4895
4935
|
DialogPrimitive.Overlay,
|
|
4896
4936
|
{
|
|
4897
4937
|
ref,
|
|
@@ -4908,7 +4948,7 @@ var DialogOverlay = React116.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
4908
4948
|
}
|
|
4909
4949
|
));
|
|
4910
4950
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4911
|
-
var DialogContent =
|
|
4951
|
+
var DialogContent = React118.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
|
|
4912
4952
|
/* @__PURE__ */ jsx(DialogOverlay, {}),
|
|
4913
4953
|
/* @__PURE__ */ jsxs(
|
|
4914
4954
|
DialogPrimitive.Content,
|
|
@@ -4960,7 +5000,7 @@ var DialogFooter = ({
|
|
|
4960
5000
|
}
|
|
4961
5001
|
);
|
|
4962
5002
|
DialogFooter.displayName = "DialogFooter";
|
|
4963
|
-
var DialogTitle =
|
|
5003
|
+
var DialogTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4964
5004
|
DialogPrimitive.Title,
|
|
4965
5005
|
{
|
|
4966
5006
|
ref,
|
|
@@ -4972,7 +5012,7 @@ var DialogTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
4972
5012
|
}
|
|
4973
5013
|
));
|
|
4974
5014
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4975
|
-
var DialogDescription =
|
|
5015
|
+
var DialogDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4976
5016
|
DialogPrimitive.Description,
|
|
4977
5017
|
{
|
|
4978
5018
|
ref,
|
|
@@ -4985,7 +5025,7 @@ var Sheet = DialogPrimitive.Root;
|
|
|
4985
5025
|
var SheetTrigger = DialogPrimitive.Trigger;
|
|
4986
5026
|
var SheetClose = DialogPrimitive.Close;
|
|
4987
5027
|
var SheetPortal = DialogPrimitive.Portal;
|
|
4988
|
-
var SheetOverlay =
|
|
5028
|
+
var SheetOverlay = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4989
5029
|
DialogPrimitive.Overlay,
|
|
4990
5030
|
{
|
|
4991
5031
|
className: cn(
|
|
@@ -5013,7 +5053,7 @@ var sheetVariants = cva(
|
|
|
5013
5053
|
}
|
|
5014
5054
|
}
|
|
5015
5055
|
);
|
|
5016
|
-
var SheetContent =
|
|
5056
|
+
var SheetContent = React118.forwardRef(
|
|
5017
5057
|
({
|
|
5018
5058
|
side = "right",
|
|
5019
5059
|
className,
|
|
@@ -5069,7 +5109,7 @@ var SheetFooter = ({
|
|
|
5069
5109
|
}
|
|
5070
5110
|
);
|
|
5071
5111
|
SheetFooter.displayName = "SheetFooter";
|
|
5072
|
-
var SheetTitle =
|
|
5112
|
+
var SheetTitle = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5073
5113
|
DialogPrimitive.Title,
|
|
5074
5114
|
{
|
|
5075
5115
|
ref,
|
|
@@ -5081,7 +5121,7 @@ var SheetTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
5081
5121
|
}
|
|
5082
5122
|
));
|
|
5083
5123
|
SheetTitle.displayName = DialogPrimitive.Title.displayName;
|
|
5084
|
-
var SheetDescription =
|
|
5124
|
+
var SheetDescription = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5085
5125
|
DialogPrimitive.Description,
|
|
5086
5126
|
{
|
|
5087
5127
|
ref,
|
|
@@ -5118,10 +5158,10 @@ var defaultElements = {
|
|
|
5118
5158
|
"caption": "span",
|
|
5119
5159
|
"overline": "span"
|
|
5120
5160
|
};
|
|
5121
|
-
var Typography =
|
|
5161
|
+
var Typography = React118__default.forwardRef(
|
|
5122
5162
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5123
5163
|
const Component = as || defaultElements[variant];
|
|
5124
|
-
return
|
|
5164
|
+
return React118__default.createElement(
|
|
5125
5165
|
Component,
|
|
5126
5166
|
{
|
|
5127
5167
|
ref,
|
|
@@ -5133,46 +5173,46 @@ var Typography = React116__default.forwardRef(
|
|
|
5133
5173
|
}
|
|
5134
5174
|
);
|
|
5135
5175
|
Typography.displayName = "Typography";
|
|
5136
|
-
var Heading1 =
|
|
5176
|
+
var Heading1 = React118__default.forwardRef(
|
|
5137
5177
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h1", ...props })
|
|
5138
5178
|
);
|
|
5139
5179
|
Heading1.displayName = "Heading1";
|
|
5140
|
-
var Heading2 =
|
|
5180
|
+
var Heading2 = React118__default.forwardRef(
|
|
5141
5181
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h2", ...props })
|
|
5142
5182
|
);
|
|
5143
5183
|
Heading2.displayName = "Heading2";
|
|
5144
|
-
var Heading3 =
|
|
5184
|
+
var Heading3 = React118__default.forwardRef(
|
|
5145
5185
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h3", ...props })
|
|
5146
5186
|
);
|
|
5147
5187
|
Heading3.displayName = "Heading3";
|
|
5148
|
-
var Heading4 =
|
|
5188
|
+
var Heading4 = React118__default.forwardRef(
|
|
5149
5189
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h4", ...props })
|
|
5150
5190
|
);
|
|
5151
5191
|
Heading4.displayName = "Heading4";
|
|
5152
|
-
var Heading5 =
|
|
5192
|
+
var Heading5 = React118__default.forwardRef(
|
|
5153
5193
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h5", ...props })
|
|
5154
5194
|
);
|
|
5155
5195
|
Heading5.displayName = "Heading5";
|
|
5156
|
-
var Heading6 =
|
|
5196
|
+
var Heading6 = React118__default.forwardRef(
|
|
5157
5197
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h6", ...props })
|
|
5158
5198
|
);
|
|
5159
5199
|
Heading6.displayName = "Heading6";
|
|
5160
|
-
var Text =
|
|
5200
|
+
var Text = React118__default.forwardRef(
|
|
5161
5201
|
({ size = "default", ...props }, ref) => {
|
|
5162
5202
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5163
5203
|
return /* @__PURE__ */ jsx(Typography, { ref, variant, ...props });
|
|
5164
5204
|
}
|
|
5165
5205
|
);
|
|
5166
5206
|
Text.displayName = "Text";
|
|
5167
|
-
var Caption =
|
|
5207
|
+
var Caption = React118__default.forwardRef(
|
|
5168
5208
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "caption", ...props })
|
|
5169
5209
|
);
|
|
5170
5210
|
Caption.displayName = "Caption";
|
|
5171
|
-
var Overline =
|
|
5211
|
+
var Overline = React118__default.forwardRef(
|
|
5172
5212
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "overline", ...props })
|
|
5173
5213
|
);
|
|
5174
5214
|
Overline.displayName = "Overline";
|
|
5175
|
-
var Link =
|
|
5215
|
+
var Link = React118__default.forwardRef(
|
|
5176
5216
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5177
5217
|
const variantClass = `link-${variant}`;
|
|
5178
5218
|
return /* @__PURE__ */ jsx(
|
|
@@ -5187,11 +5227,11 @@ var Link = React116__default.forwardRef(
|
|
|
5187
5227
|
}
|
|
5188
5228
|
);
|
|
5189
5229
|
Link.displayName = "Link";
|
|
5190
|
-
var PaginationContext =
|
|
5230
|
+
var PaginationContext = React118.createContext({
|
|
5191
5231
|
size: "default"
|
|
5192
5232
|
});
|
|
5193
5233
|
var usePaginationContext = () => {
|
|
5194
|
-
const context =
|
|
5234
|
+
const context = React118.useContext(PaginationContext);
|
|
5195
5235
|
return context;
|
|
5196
5236
|
};
|
|
5197
5237
|
var paginationVariants = cva(
|
|
@@ -5208,7 +5248,7 @@ var paginationVariants = cva(
|
|
|
5208
5248
|
}
|
|
5209
5249
|
}
|
|
5210
5250
|
);
|
|
5211
|
-
var Pagination =
|
|
5251
|
+
var Pagination = React118.forwardRef(
|
|
5212
5252
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsx(
|
|
5213
5253
|
"nav",
|
|
5214
5254
|
{
|
|
@@ -5221,7 +5261,7 @@ var Pagination = React116.forwardRef(
|
|
|
5221
5261
|
) })
|
|
5222
5262
|
);
|
|
5223
5263
|
Pagination.displayName = "Pagination";
|
|
5224
|
-
var PaginationContent =
|
|
5264
|
+
var PaginationContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5225
5265
|
"ul",
|
|
5226
5266
|
{
|
|
5227
5267
|
ref,
|
|
@@ -5230,7 +5270,7 @@ var PaginationContent = React116.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5230
5270
|
}
|
|
5231
5271
|
));
|
|
5232
5272
|
PaginationContent.displayName = "PaginationContent";
|
|
5233
|
-
var PaginationItem =
|
|
5273
|
+
var PaginationItem = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cn("", className), ...props }));
|
|
5234
5274
|
PaginationItem.displayName = "PaginationItem";
|
|
5235
5275
|
var paginationLinkVariants = cva(
|
|
5236
5276
|
[
|
|
@@ -5252,7 +5292,7 @@ var paginationLinkVariants = cva(
|
|
|
5252
5292
|
}
|
|
5253
5293
|
}
|
|
5254
5294
|
);
|
|
5255
|
-
var PaginationLink =
|
|
5295
|
+
var PaginationLink = React118.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5256
5296
|
const { size } = usePaginationContext();
|
|
5257
5297
|
return /* @__PURE__ */ jsx(
|
|
5258
5298
|
"a",
|
|
@@ -5269,7 +5309,7 @@ var PaginationLink = React116.forwardRef(({ className, isActive, ...props }, ref
|
|
|
5269
5309
|
);
|
|
5270
5310
|
});
|
|
5271
5311
|
PaginationLink.displayName = "PaginationLink";
|
|
5272
|
-
var PaginationPrevious =
|
|
5312
|
+
var PaginationPrevious = React118.forwardRef(({ className, ...props }, ref) => {
|
|
5273
5313
|
const { size } = usePaginationContext();
|
|
5274
5314
|
return /* @__PURE__ */ jsxs(
|
|
5275
5315
|
PaginationLink,
|
|
@@ -5290,7 +5330,7 @@ var PaginationPrevious = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
5290
5330
|
);
|
|
5291
5331
|
});
|
|
5292
5332
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5293
|
-
var PaginationNext =
|
|
5333
|
+
var PaginationNext = React118.forwardRef(({ className, ...props }, ref) => {
|
|
5294
5334
|
const { size } = usePaginationContext();
|
|
5295
5335
|
return /* @__PURE__ */ jsxs(
|
|
5296
5336
|
PaginationLink,
|
|
@@ -5311,7 +5351,7 @@ var PaginationNext = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
5311
5351
|
);
|
|
5312
5352
|
});
|
|
5313
5353
|
PaginationNext.displayName = "PaginationNext";
|
|
5314
|
-
var PaginationEllipsis =
|
|
5354
|
+
var PaginationEllipsis = React118.forwardRef(({ className, ...props }, ref) => {
|
|
5315
5355
|
const { size } = usePaginationContext();
|
|
5316
5356
|
return /* @__PURE__ */ jsx(
|
|
5317
5357
|
"span",
|
|
@@ -5335,7 +5375,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
|
5335
5375
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
5336
5376
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
5337
5377
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
5338
|
-
var DropdownMenuSubTrigger =
|
|
5378
|
+
var DropdownMenuSubTrigger = React118.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5339
5379
|
DropdownMenuPrimitive.SubTrigger,
|
|
5340
5380
|
{
|
|
5341
5381
|
ref,
|
|
@@ -5352,7 +5392,7 @@ var DropdownMenuSubTrigger = React116.forwardRef(({ className, inset, children,
|
|
|
5352
5392
|
}
|
|
5353
5393
|
));
|
|
5354
5394
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
5355
|
-
var DropdownMenuSubContent =
|
|
5395
|
+
var DropdownMenuSubContent = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5356
5396
|
DropdownMenuPrimitive.SubContent,
|
|
5357
5397
|
{
|
|
5358
5398
|
ref,
|
|
@@ -5364,7 +5404,7 @@ var DropdownMenuSubContent = React116.forwardRef(({ className, ...props }, ref)
|
|
|
5364
5404
|
}
|
|
5365
5405
|
));
|
|
5366
5406
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
5367
|
-
var DropdownMenuContent =
|
|
5407
|
+
var DropdownMenuContent = React118.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
5368
5408
|
DropdownMenuPrimitive.Content,
|
|
5369
5409
|
{
|
|
5370
5410
|
ref,
|
|
@@ -5378,7 +5418,7 @@ var DropdownMenuContent = React116.forwardRef(({ className, sideOffset = 4, ...p
|
|
|
5378
5418
|
}
|
|
5379
5419
|
) }));
|
|
5380
5420
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
5381
|
-
var DropdownMenuItem =
|
|
5421
|
+
var DropdownMenuItem = React118.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5382
5422
|
DropdownMenuPrimitive.Item,
|
|
5383
5423
|
{
|
|
5384
5424
|
ref,
|
|
@@ -5391,7 +5431,7 @@ var DropdownMenuItem = React116.forwardRef(({ className, inset, ...props }, ref)
|
|
|
5391
5431
|
}
|
|
5392
5432
|
));
|
|
5393
5433
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
5394
|
-
var DropdownMenuCheckboxItem =
|
|
5434
|
+
var DropdownMenuCheckboxItem = React118.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5395
5435
|
DropdownMenuPrimitive.CheckboxItem,
|
|
5396
5436
|
{
|
|
5397
5437
|
ref,
|
|
@@ -5408,7 +5448,7 @@ var DropdownMenuCheckboxItem = React116.forwardRef(({ className, children, check
|
|
|
5408
5448
|
}
|
|
5409
5449
|
));
|
|
5410
5450
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
5411
|
-
var DropdownMenuRadioItem =
|
|
5451
|
+
var DropdownMenuRadioItem = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5412
5452
|
DropdownMenuPrimitive.RadioItem,
|
|
5413
5453
|
{
|
|
5414
5454
|
ref,
|
|
@@ -5424,7 +5464,7 @@ var DropdownMenuRadioItem = React116.forwardRef(({ className, children, ...props
|
|
|
5424
5464
|
}
|
|
5425
5465
|
));
|
|
5426
5466
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
5427
|
-
var DropdownMenuLabel =
|
|
5467
|
+
var DropdownMenuLabel = React118.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5428
5468
|
DropdownMenuPrimitive.Label,
|
|
5429
5469
|
{
|
|
5430
5470
|
ref,
|
|
@@ -5437,7 +5477,7 @@ var DropdownMenuLabel = React116.forwardRef(({ className, inset, ...props }, ref
|
|
|
5437
5477
|
}
|
|
5438
5478
|
));
|
|
5439
5479
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
5440
|
-
var DropdownMenuSeparator =
|
|
5480
|
+
var DropdownMenuSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5441
5481
|
DropdownMenuPrimitive.Separator,
|
|
5442
5482
|
{
|
|
5443
5483
|
ref,
|
|
@@ -5459,7 +5499,7 @@ var DropdownMenuShortcut = ({
|
|
|
5459
5499
|
);
|
|
5460
5500
|
};
|
|
5461
5501
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5462
|
-
var TableWrapper =
|
|
5502
|
+
var TableWrapper = React118.forwardRef(
|
|
5463
5503
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5464
5504
|
"div",
|
|
5465
5505
|
{
|
|
@@ -5474,7 +5514,7 @@ var TableWrapper = React116.forwardRef(
|
|
|
5474
5514
|
)
|
|
5475
5515
|
);
|
|
5476
5516
|
TableWrapper.displayName = "TableWrapper";
|
|
5477
|
-
var Table =
|
|
5517
|
+
var Table = React118.forwardRef(
|
|
5478
5518
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5479
5519
|
"div",
|
|
5480
5520
|
{
|
|
@@ -5496,7 +5536,7 @@ var Table = React116.forwardRef(
|
|
|
5496
5536
|
)
|
|
5497
5537
|
);
|
|
5498
5538
|
Table.displayName = "Table";
|
|
5499
|
-
var TableHeader =
|
|
5539
|
+
var TableHeader = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5500
5540
|
"thead",
|
|
5501
5541
|
{
|
|
5502
5542
|
ref,
|
|
@@ -5509,7 +5549,7 @@ var TableHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5509
5549
|
}
|
|
5510
5550
|
));
|
|
5511
5551
|
TableHeader.displayName = "TableHeader";
|
|
5512
|
-
var TableBody =
|
|
5552
|
+
var TableBody = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5513
5553
|
"tbody",
|
|
5514
5554
|
{
|
|
5515
5555
|
ref,
|
|
@@ -5522,7 +5562,7 @@ var TableBody = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5522
5562
|
}
|
|
5523
5563
|
));
|
|
5524
5564
|
TableBody.displayName = "TableBody";
|
|
5525
|
-
var TableFooter =
|
|
5565
|
+
var TableFooter = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5526
5566
|
"tfoot",
|
|
5527
5567
|
{
|
|
5528
5568
|
ref,
|
|
@@ -5535,7 +5575,7 @@ var TableFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5535
5575
|
}
|
|
5536
5576
|
));
|
|
5537
5577
|
TableFooter.displayName = "TableFooter";
|
|
5538
|
-
var TableRow =
|
|
5578
|
+
var TableRow = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5539
5579
|
"tr",
|
|
5540
5580
|
{
|
|
5541
5581
|
ref,
|
|
@@ -5553,7 +5593,7 @@ var TableRow = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5553
5593
|
}
|
|
5554
5594
|
));
|
|
5555
5595
|
TableRow.displayName = "TableRow";
|
|
5556
|
-
var TableHead =
|
|
5596
|
+
var TableHead = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5557
5597
|
"th",
|
|
5558
5598
|
{
|
|
5559
5599
|
ref,
|
|
@@ -5566,7 +5606,7 @@ var TableHead = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5566
5606
|
}
|
|
5567
5607
|
));
|
|
5568
5608
|
TableHead.displayName = "TableHead";
|
|
5569
|
-
var TableCell =
|
|
5609
|
+
var TableCell = React118.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5570
5610
|
"td",
|
|
5571
5611
|
{
|
|
5572
5612
|
ref,
|
|
@@ -5586,7 +5626,7 @@ var TableCell = React116.forwardRef(({ className, label, ...props }, ref) => /*
|
|
|
5586
5626
|
}
|
|
5587
5627
|
));
|
|
5588
5628
|
TableCell.displayName = "TableCell";
|
|
5589
|
-
var TableCaption =
|
|
5629
|
+
var TableCaption = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5590
5630
|
"caption",
|
|
5591
5631
|
{
|
|
5592
5632
|
ref,
|
|
@@ -5599,7 +5639,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5599
5639
|
var Select = SelectPrimitive.Root;
|
|
5600
5640
|
var SelectGroup = SelectPrimitive.Group;
|
|
5601
5641
|
var SelectValue = SelectPrimitive.Value;
|
|
5602
|
-
var SelectTrigger =
|
|
5642
|
+
var SelectTrigger = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5603
5643
|
SelectPrimitive.Trigger,
|
|
5604
5644
|
{
|
|
5605
5645
|
ref,
|
|
@@ -5615,7 +5655,7 @@ var SelectTrigger = React116.forwardRef(({ className, children, ...props }, ref)
|
|
|
5615
5655
|
}
|
|
5616
5656
|
));
|
|
5617
5657
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
5618
|
-
var SelectScrollUpButton =
|
|
5658
|
+
var SelectScrollUpButton = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5619
5659
|
SelectPrimitive.ScrollUpButton,
|
|
5620
5660
|
{
|
|
5621
5661
|
ref,
|
|
@@ -5628,7 +5668,7 @@ var SelectScrollUpButton = React116.forwardRef(({ className, ...props }, ref) =>
|
|
|
5628
5668
|
}
|
|
5629
5669
|
));
|
|
5630
5670
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
|
|
5631
|
-
var SelectScrollDownButton =
|
|
5671
|
+
var SelectScrollDownButton = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5632
5672
|
SelectPrimitive.ScrollDownButton,
|
|
5633
5673
|
{
|
|
5634
5674
|
ref,
|
|
@@ -5641,7 +5681,7 @@ var SelectScrollDownButton = React116.forwardRef(({ className, ...props }, ref)
|
|
|
5641
5681
|
}
|
|
5642
5682
|
));
|
|
5643
5683
|
SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
|
|
5644
|
-
var SelectContent =
|
|
5684
|
+
var SelectContent = React118.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
|
|
5645
5685
|
SelectPrimitive.Content,
|
|
5646
5686
|
{
|
|
5647
5687
|
ref,
|
|
@@ -5668,7 +5708,7 @@ var SelectContent = React116.forwardRef(({ className, children, position = "popp
|
|
|
5668
5708
|
}
|
|
5669
5709
|
) }));
|
|
5670
5710
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
5671
|
-
var SelectLabel =
|
|
5711
|
+
var SelectLabel = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5672
5712
|
SelectPrimitive.Label,
|
|
5673
5713
|
{
|
|
5674
5714
|
ref,
|
|
@@ -5677,7 +5717,7 @@ var SelectLabel = React116.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5677
5717
|
}
|
|
5678
5718
|
));
|
|
5679
5719
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
5680
|
-
var SelectItem =
|
|
5720
|
+
var SelectItem = React118.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5681
5721
|
SelectPrimitive.Item,
|
|
5682
5722
|
{
|
|
5683
5723
|
ref,
|
|
@@ -5693,7 +5733,7 @@ var SelectItem = React116.forwardRef(({ className, children, ...props }, ref) =>
|
|
|
5693
5733
|
}
|
|
5694
5734
|
));
|
|
5695
5735
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
5696
|
-
var SelectSeparator =
|
|
5736
|
+
var SelectSeparator = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5697
5737
|
SelectPrimitive.Separator,
|
|
5698
5738
|
{
|
|
5699
5739
|
ref,
|
|
@@ -5702,7 +5742,7 @@ var SelectSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
5702
5742
|
}
|
|
5703
5743
|
));
|
|
5704
5744
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
5705
|
-
var Label3 =
|
|
5745
|
+
var Label3 = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5706
5746
|
LabelPrimitive.Root,
|
|
5707
5747
|
{
|
|
5708
5748
|
ref,
|
|
@@ -5714,7 +5754,7 @@ var Label3 = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5714
5754
|
}
|
|
5715
5755
|
));
|
|
5716
5756
|
Label3.displayName = LabelPrimitive.Root.displayName;
|
|
5717
|
-
var Switch =
|
|
5757
|
+
var Switch = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5718
5758
|
SwitchPrimitives.Root,
|
|
5719
5759
|
{
|
|
5720
5760
|
className: cn(
|
|
@@ -5727,7 +5767,7 @@ var Switch = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5727
5767
|
}
|
|
5728
5768
|
));
|
|
5729
5769
|
Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
5730
|
-
var RadioGroup2 =
|
|
5770
|
+
var RadioGroup2 = React118.forwardRef(({ className, ...props }, ref) => {
|
|
5731
5771
|
return /* @__PURE__ */ jsx(
|
|
5732
5772
|
RadioGroupPrimitive.Root,
|
|
5733
5773
|
{
|
|
@@ -5738,7 +5778,7 @@ var RadioGroup2 = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
5738
5778
|
);
|
|
5739
5779
|
});
|
|
5740
5780
|
RadioGroup2.displayName = RadioGroupPrimitive.Root.displayName;
|
|
5741
|
-
var RadioGroupItem =
|
|
5781
|
+
var RadioGroupItem = React118.forwardRef(({ className, ...props }, ref) => {
|
|
5742
5782
|
return /* @__PURE__ */ jsx(
|
|
5743
5783
|
RadioGroupPrimitive.Item,
|
|
5744
5784
|
{
|
|
@@ -5753,7 +5793,7 @@ var RadioGroupItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
|
5753
5793
|
);
|
|
5754
5794
|
});
|
|
5755
5795
|
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
5756
|
-
var Checkbox =
|
|
5796
|
+
var Checkbox = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5757
5797
|
CheckboxPrimitive.Root,
|
|
5758
5798
|
{
|
|
5759
5799
|
ref,
|
|
@@ -5766,7 +5806,7 @@ var Checkbox = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5766
5806
|
}
|
|
5767
5807
|
));
|
|
5768
5808
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
5769
|
-
var MultiSelect =
|
|
5809
|
+
var MultiSelect = React118.forwardRef(
|
|
5770
5810
|
({
|
|
5771
5811
|
options,
|
|
5772
5812
|
value = [],
|
|
@@ -5779,8 +5819,8 @@ var MultiSelect = React116.forwardRef(
|
|
|
5779
5819
|
maxDisplayItems = 3,
|
|
5780
5820
|
...props
|
|
5781
5821
|
}, ref) => {
|
|
5782
|
-
const [open, setOpen] =
|
|
5783
|
-
const handleSelectAll =
|
|
5822
|
+
const [open, setOpen] = React118.useState(false);
|
|
5823
|
+
const handleSelectAll = React118.useCallback(() => {
|
|
5784
5824
|
if (!onValueChange) return;
|
|
5785
5825
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5786
5826
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5793,7 +5833,7 @@ var MultiSelect = React116.forwardRef(
|
|
|
5793
5833
|
onValueChange(allValues);
|
|
5794
5834
|
}
|
|
5795
5835
|
}, [options, value, onValueChange]);
|
|
5796
|
-
const handleItemToggle =
|
|
5836
|
+
const handleItemToggle = React118.useCallback(
|
|
5797
5837
|
(itemValue) => {
|
|
5798
5838
|
if (!onValueChange) return;
|
|
5799
5839
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5801,7 +5841,7 @@ var MultiSelect = React116.forwardRef(
|
|
|
5801
5841
|
},
|
|
5802
5842
|
[value, onValueChange]
|
|
5803
5843
|
);
|
|
5804
|
-
const displayValue =
|
|
5844
|
+
const displayValue = React118.useMemo(() => {
|
|
5805
5845
|
if (value.length === 0) {
|
|
5806
5846
|
return placeholder;
|
|
5807
5847
|
}
|
|
@@ -5922,7 +5962,7 @@ var MultiSelect = React116.forwardRef(
|
|
|
5922
5962
|
}
|
|
5923
5963
|
);
|
|
5924
5964
|
MultiSelect.displayName = "MultiSelect";
|
|
5925
|
-
var Slider =
|
|
5965
|
+
var Slider = React118.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5926
5966
|
SliderPrimitive.Root,
|
|
5927
5967
|
{
|
|
5928
5968
|
ref,
|
|
@@ -5938,6 +5978,201 @@ var Slider = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5938
5978
|
}
|
|
5939
5979
|
));
|
|
5940
5980
|
Slider.displayName = SliderPrimitive.Root.displayName;
|
|
5981
|
+
function CalendarRoot({ className, rootRef, ...props }) {
|
|
5982
|
+
return /* @__PURE__ */ jsx(
|
|
5983
|
+
"div",
|
|
5984
|
+
{
|
|
5985
|
+
"data-slot": "calendar",
|
|
5986
|
+
ref: rootRef,
|
|
5987
|
+
className: cn(className),
|
|
5988
|
+
...props
|
|
5989
|
+
}
|
|
5990
|
+
);
|
|
5991
|
+
}
|
|
5992
|
+
function CalendarChevron({
|
|
5993
|
+
className,
|
|
5994
|
+
orientation,
|
|
5995
|
+
...props
|
|
5996
|
+
}) {
|
|
5997
|
+
if (orientation === "left") {
|
|
5998
|
+
return /* @__PURE__ */ jsx(ChevronLeftIcon, { className: cn("lua:size-3", className), ...props });
|
|
5999
|
+
}
|
|
6000
|
+
if (orientation === "right") {
|
|
6001
|
+
return /* @__PURE__ */ jsx(ChevronRightIcon, { className: cn("lua:size-3", className), ...props });
|
|
6002
|
+
}
|
|
6003
|
+
return /* @__PURE__ */ jsx(ChevronDownIcon, { className: cn("lua:size-3", className), ...props });
|
|
6004
|
+
}
|
|
6005
|
+
function CalendarWeekNumber({ children, ...props }) {
|
|
6006
|
+
return /* @__PURE__ */ jsx("td", { ...props, children: /* @__PURE__ */ jsx("div", { className: "lua:flex lua:size-[--cell-size] lua:items-center lua:justify-center lua:text-center lua:font-onest", children }) });
|
|
6007
|
+
}
|
|
6008
|
+
function CalendarDayButton({
|
|
6009
|
+
className,
|
|
6010
|
+
day,
|
|
6011
|
+
modifiers,
|
|
6012
|
+
...props
|
|
6013
|
+
}) {
|
|
6014
|
+
const defaultClassNames = getDefaultClassNames();
|
|
6015
|
+
const ref = React118.useRef(null);
|
|
6016
|
+
React118.useEffect(() => {
|
|
6017
|
+
if (modifiers.focused) ref.current?.focus();
|
|
6018
|
+
}, [modifiers.focused]);
|
|
6019
|
+
return /* @__PURE__ */ jsx(
|
|
6020
|
+
"button",
|
|
6021
|
+
{
|
|
6022
|
+
ref,
|
|
6023
|
+
type: "button",
|
|
6024
|
+
"data-day": day.date.toLocaleDateString(),
|
|
6025
|
+
"data-selected-single": modifiers.selected && !modifiers.range_start && !modifiers.range_end && !modifiers.range_middle,
|
|
6026
|
+
"data-range-start": modifiers.range_start,
|
|
6027
|
+
"data-range-end": modifiers.range_end,
|
|
6028
|
+
"data-range-middle": modifiers.range_middle,
|
|
6029
|
+
className: cn(defaultClassNames.day, className),
|
|
6030
|
+
...props
|
|
6031
|
+
}
|
|
6032
|
+
);
|
|
6033
|
+
}
|
|
6034
|
+
function Calendar({
|
|
6035
|
+
className,
|
|
6036
|
+
classNames,
|
|
6037
|
+
showOutsideDays = true,
|
|
6038
|
+
captionLayout = "label",
|
|
6039
|
+
formatters,
|
|
6040
|
+
components,
|
|
6041
|
+
...props
|
|
6042
|
+
}) {
|
|
6043
|
+
const defaultClassNames = getDefaultClassNames();
|
|
6044
|
+
return /* @__PURE__ */ jsx(
|
|
6045
|
+
DayPicker,
|
|
6046
|
+
{
|
|
6047
|
+
showOutsideDays,
|
|
6048
|
+
className: cn(
|
|
6049
|
+
"lua:group/calendar lua:p-1.5 lua:rounded-md [--cell-size:1.5rem] lua:font-onest",
|
|
6050
|
+
String.raw`rtl:**:[.rdp-button\_next>svg]:lua:rotate-180`,
|
|
6051
|
+
String.raw`rtl:**:[.rdp-button\_previous>svg]:lua:rotate-180`,
|
|
6052
|
+
className
|
|
6053
|
+
),
|
|
6054
|
+
captionLayout,
|
|
6055
|
+
formatters: {
|
|
6056
|
+
formatMonthDropdown: (date) => date.toLocaleString("default", { month: "short" }),
|
|
6057
|
+
...formatters
|
|
6058
|
+
},
|
|
6059
|
+
classNames: {
|
|
6060
|
+
root: cn("lua:w-fit", defaultClassNames.root),
|
|
6061
|
+
months: cn(
|
|
6062
|
+
"lua:relative lua:flex lua:flex-col lua:gap-2 md:lua:flex-row",
|
|
6063
|
+
defaultClassNames.months
|
|
6064
|
+
),
|
|
6065
|
+
month: cn(
|
|
6066
|
+
"lua:flex lua:w-full lua:flex-col lua:gap-2",
|
|
6067
|
+
defaultClassNames.month
|
|
6068
|
+
),
|
|
6069
|
+
nav: cn(
|
|
6070
|
+
"lua:absolute lua:inset-x-0 lua:top-0 lua:flex lua:w-full lua:items-center lua:justify-between lua:gap-1",
|
|
6071
|
+
defaultClassNames.nav
|
|
6072
|
+
),
|
|
6073
|
+
button_previous: cn(defaultClassNames.button_previous),
|
|
6074
|
+
button_next: cn(
|
|
6075
|
+
// Luaniverse button style
|
|
6076
|
+
"lua:inline-flex lua:items-center lua:justify-center lua:rounded-full lua:transition-all lua:duration-200",
|
|
6077
|
+
"lua:text-gray-900 hover:lua:bg-gray-100",
|
|
6078
|
+
"focus-visible:lua:outline-hidden focus-visible:lua:ring-1 focus-visible:lua:ring-gray-900 focus-visible:lua:ring-offset-1 focus-visible:lua:ring-offset-white",
|
|
6079
|
+
"lua:h-[--cell-size] lua:w-[--cell-size] lua:select-none lua:p-0 aria-disabled:lua:opacity-50",
|
|
6080
|
+
defaultClassNames.button_next
|
|
6081
|
+
),
|
|
6082
|
+
month_caption: cn(
|
|
6083
|
+
"lua:flex lua:h-[--cell-size] lua:w-full lua:items-center lua:justify-center lua:px-[--cell-size]",
|
|
6084
|
+
defaultClassNames.month_caption
|
|
6085
|
+
),
|
|
6086
|
+
dropdowns: cn(
|
|
6087
|
+
"lua:flex lua:h-[--cell-size] lua:w-full lua:items-center lua:justify-center lua:gap-1 lua:text-sm lua:font-onest lua:font-semibold lua:text-gray-900",
|
|
6088
|
+
defaultClassNames.dropdowns
|
|
6089
|
+
),
|
|
6090
|
+
dropdown_root: cn(
|
|
6091
|
+
"has-focus:lua:border-gray-300 lua:border-gray-300 has-focus:lua:ring-gray-900/50 has-focus:lua:ring-2 lua:relative lua:rounded-md lua:border",
|
|
6092
|
+
defaultClassNames.dropdown_root
|
|
6093
|
+
),
|
|
6094
|
+
dropdown: cn(
|
|
6095
|
+
"lua:absolute lua:inset-0 lua:opacity-0",
|
|
6096
|
+
defaultClassNames.dropdown
|
|
6097
|
+
),
|
|
6098
|
+
caption_label: cn(
|
|
6099
|
+
"lua:select-none lua:font-onest lua:font-semibold lua:text-gray-900",
|
|
6100
|
+
captionLayout === "label" ? "lua:text-xs" : "[&>svg]:lua:text-gray-600 lua:flex lua:h-6 lua:items-center lua:gap-1 lua:rounded-md lua:pl-2 lua:pr-1 lua:text-xs [&>svg]:lua:size-3",
|
|
6101
|
+
defaultClassNames.caption_label
|
|
6102
|
+
),
|
|
6103
|
+
table: "lua:w-full lua:border-collapse",
|
|
6104
|
+
weekdays: cn("lua:flex", defaultClassNames.weekdays),
|
|
6105
|
+
weekday: cn(
|
|
6106
|
+
"lua:text-gray-600 lua:flex-1 lua:select-none lua:text-xs lua:font-onest lua:font-medium",
|
|
6107
|
+
defaultClassNames.weekday
|
|
6108
|
+
),
|
|
6109
|
+
week: cn("lua:mt-1 lua:flex lua:w-full", defaultClassNames.week),
|
|
6110
|
+
week_number_header: cn(
|
|
6111
|
+
"lua:w-[--cell-size] lua:select-none",
|
|
6112
|
+
defaultClassNames.week_number_header
|
|
6113
|
+
),
|
|
6114
|
+
week_number: cn(
|
|
6115
|
+
"lua:text-gray-600 lua:select-none lua:text-xs lua:font-onest",
|
|
6116
|
+
defaultClassNames.week_number
|
|
6117
|
+
),
|
|
6118
|
+
day: cn(
|
|
6119
|
+
"lua:relative lua:w-full lua:h-full lua:p-0 lua:text-center lua:group/day lua:aspect-square lua:select-none",
|
|
6120
|
+
defaultClassNames.day
|
|
6121
|
+
),
|
|
6122
|
+
range_start: cn("lua:bg-gray-100", defaultClassNames.range_start),
|
|
6123
|
+
range_middle: cn("lua:bg-gray-50", defaultClassNames.range_middle),
|
|
6124
|
+
range_end: cn("lua:bg-gray-100", defaultClassNames.range_end),
|
|
6125
|
+
today: cn(
|
|
6126
|
+
"lua:bg-gray-100 lua:text-gray-900 lua:font-bold",
|
|
6127
|
+
defaultClassNames.today
|
|
6128
|
+
),
|
|
6129
|
+
outside: cn(
|
|
6130
|
+
"lua:text-gray-400 aria-selected:lua:text-gray-400",
|
|
6131
|
+
defaultClassNames.outside
|
|
6132
|
+
),
|
|
6133
|
+
disabled: cn(
|
|
6134
|
+
"lua:text-gray-400 lua:opacity-50",
|
|
6135
|
+
defaultClassNames.disabled
|
|
6136
|
+
),
|
|
6137
|
+
hidden: cn("lua:invisible", defaultClassNames.hidden),
|
|
6138
|
+
...classNames
|
|
6139
|
+
},
|
|
6140
|
+
components: {
|
|
6141
|
+
Root: CalendarRoot,
|
|
6142
|
+
Chevron: CalendarChevron,
|
|
6143
|
+
DayButton: CalendarDayButton,
|
|
6144
|
+
WeekNumber: CalendarWeekNumber,
|
|
6145
|
+
...components
|
|
6146
|
+
},
|
|
6147
|
+
...props
|
|
6148
|
+
}
|
|
6149
|
+
);
|
|
6150
|
+
}
|
|
6151
|
+
Calendar.displayName = "Calendar";
|
|
6152
|
+
var Popover = PopoverPrimitive.Root;
|
|
6153
|
+
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
6154
|
+
var PopoverContent = React118.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
6155
|
+
PopoverPrimitive.Content,
|
|
6156
|
+
{
|
|
6157
|
+
ref,
|
|
6158
|
+
align,
|
|
6159
|
+
sideOffset,
|
|
6160
|
+
className: cn(
|
|
6161
|
+
// Base styles - Luaniverse design
|
|
6162
|
+
"lua:z-50 lua:rounded-md lua:border lua:border-gray-200 lua:bg-white lua:shadow-lg lua:font-onest",
|
|
6163
|
+
// Animation
|
|
6164
|
+
"lua:transition-all lua:duration-200",
|
|
6165
|
+
"data-[state=open]:lua:animate-in data-[state=open]:lua:fade-in-0 data-[state=open]:lua:zoom-in-95",
|
|
6166
|
+
"data-[state=closed]:lua:animate-out data-[state=closed]:lua:fade-out-0 data-[state=closed]:lua:zoom-out-95",
|
|
6167
|
+
"data-[side=bottom]:lua:slide-in-from-top-2 data-[side=left]:lua:slide-in-from-right-2 data-[side=right]:lua:slide-in-from-left-2 data-[side=top]:lua:slide-in-from-bottom-2",
|
|
6168
|
+
// Focus
|
|
6169
|
+
"focus-visible:lua:outline-none focus-visible:lua:ring-2 focus-visible:lua:ring-gray-900 focus-visible:lua:ring-offset-2",
|
|
6170
|
+
className
|
|
6171
|
+
),
|
|
6172
|
+
...props
|
|
6173
|
+
}
|
|
6174
|
+
) }));
|
|
6175
|
+
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
5941
6176
|
|
|
5942
6177
|
// src/safelist.js
|
|
5943
6178
|
var luaniverseSafelist = [
|
|
@@ -6329,6 +6564,6 @@ var luaniversePreset = {
|
|
|
6329
6564
|
}
|
|
6330
6565
|
};
|
|
6331
6566
|
|
|
6332
|
-
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, Slider, 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 };
|
|
6567
|
+
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, Calendar, CalendarDayButton, 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, Popover, PopoverContent, PopoverTrigger, 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 };
|
|
6333
6568
|
//# sourceMappingURL=index.js.map
|
|
6334
6569
|
//# sourceMappingURL=index.js.map
|