luaniverse 4.2.0 → 4.2.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 +248 -224
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +248 -225
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var React119 = require('react');
|
|
6
6
|
var reactSlot = require('@radix-ui/react-slot');
|
|
7
7
|
var classVarianceAuthority = require('class-variance-authority');
|
|
8
8
|
var clsx = require('clsx');
|
|
@@ -44,7 +44,7 @@ function _interopNamespace(e) {
|
|
|
44
44
|
return Object.freeze(n);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
var
|
|
47
|
+
var React119__namespace = /*#__PURE__*/_interopNamespace(React119);
|
|
48
48
|
var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
|
|
49
49
|
var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
|
|
50
50
|
var useEmblaCarousel__default = /*#__PURE__*/_interopDefault(useEmblaCarousel);
|
|
@@ -242,7 +242,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
242
242
|
}
|
|
243
243
|
);
|
|
244
244
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
245
|
-
var Button =
|
|
245
|
+
var Button = React119__namespace.forwardRef(
|
|
246
246
|
({
|
|
247
247
|
className,
|
|
248
248
|
variant,
|
|
@@ -260,7 +260,7 @@ var Button = React118__namespace.forwardRef(
|
|
|
260
260
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
261
261
|
const hasStartAdornment = !!startAdornment;
|
|
262
262
|
const hasEndAdornment = !!endAdornment;
|
|
263
|
-
const hasTextContent =
|
|
263
|
+
const hasTextContent = React119__namespace.Children.toArray(children).some(
|
|
264
264
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
265
265
|
);
|
|
266
266
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -315,7 +315,7 @@ var iconButtonVariants = {
|
|
|
315
315
|
large: "lua:p-3 lua:size-12"
|
|
316
316
|
}
|
|
317
317
|
};
|
|
318
|
-
var IconButton =
|
|
318
|
+
var IconButton = React119__namespace.forwardRef(
|
|
319
319
|
({
|
|
320
320
|
className,
|
|
321
321
|
variant,
|
|
@@ -356,7 +356,7 @@ var IconButton = React118__namespace.forwardRef(
|
|
|
356
356
|
className: "lua:text-current",
|
|
357
357
|
"aria-hidden": "true"
|
|
358
358
|
}
|
|
359
|
-
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children:
|
|
359
|
+
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: React119__namespace.cloneElement(children, {
|
|
360
360
|
"aria-hidden": "true"
|
|
361
361
|
}) })
|
|
362
362
|
}
|
|
@@ -364,7 +364,7 @@ var IconButton = React118__namespace.forwardRef(
|
|
|
364
364
|
}
|
|
365
365
|
);
|
|
366
366
|
IconButton.displayName = "IconButton";
|
|
367
|
-
var Input =
|
|
367
|
+
var Input = React119__namespace.forwardRef(
|
|
368
368
|
({
|
|
369
369
|
className,
|
|
370
370
|
type = "text",
|
|
@@ -380,7 +380,7 @@ var Input = React118__namespace.forwardRef(
|
|
|
380
380
|
disabled,
|
|
381
381
|
...props
|
|
382
382
|
}, ref) => {
|
|
383
|
-
const generatedId =
|
|
383
|
+
const generatedId = React119__namespace.useId();
|
|
384
384
|
const inputId = id || generatedId;
|
|
385
385
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
386
386
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -527,7 +527,7 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
527
527
|
}
|
|
528
528
|
}
|
|
529
529
|
);
|
|
530
|
-
var Badge =
|
|
530
|
+
var Badge = React119__namespace.forwardRef(
|
|
531
531
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
532
532
|
const Comp = asChild ? reactSlot.Slot : "span";
|
|
533
533
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -542,7 +542,7 @@ var Badge = React118__namespace.forwardRef(
|
|
|
542
542
|
}
|
|
543
543
|
);
|
|
544
544
|
Badge.displayName = "Badge";
|
|
545
|
-
var Textarea =
|
|
545
|
+
var Textarea = React119__namespace.forwardRef(
|
|
546
546
|
({
|
|
547
547
|
className,
|
|
548
548
|
description,
|
|
@@ -555,7 +555,7 @@ var Textarea = React118__namespace.forwardRef(
|
|
|
555
555
|
disabled,
|
|
556
556
|
...props
|
|
557
557
|
}, ref) => {
|
|
558
|
-
const generatedId =
|
|
558
|
+
const generatedId = React119__namespace.useId();
|
|
559
559
|
const textareaId = id || generatedId;
|
|
560
560
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
561
561
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -648,9 +648,9 @@ var Textarea = React118__namespace.forwardRef(
|
|
|
648
648
|
Textarea.displayName = "Textarea";
|
|
649
649
|
var Tabs = TabsPrimitive__namespace.Root;
|
|
650
650
|
var tabsListVariants = classVarianceAuthority.cva([
|
|
651
|
-
"lua:inline-flex lua:items-center lua:justify-
|
|
651
|
+
"lua:inline-flex lua:items-center lua:justify-center lua:p-1 lua:text-gray-600 lua:gap-2 lua:flex-wrap"
|
|
652
652
|
].join(" "));
|
|
653
|
-
var TabsList =
|
|
653
|
+
var TabsList = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
654
654
|
TabsPrimitive__namespace.List,
|
|
655
655
|
{
|
|
656
656
|
ref,
|
|
@@ -660,13 +660,13 @@ var TabsList = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
660
660
|
));
|
|
661
661
|
TabsList.displayName = TabsPrimitive__namespace.List.displayName;
|
|
662
662
|
var tabsTriggerVariants = classVarianceAuthority.cva([
|
|
663
|
-
"lua:inline-flex lua:items-center lua:justify-center lua:whitespace-nowrap lua:px-
|
|
664
|
-
"lua:
|
|
663
|
+
"lua:font-onest lua:inline-flex lua:items-center lua:justify-center lua:whitespace-nowrap lua:rounded-full lua:px-3 lua:py-1 lua:text-sm lua:font-medium",
|
|
664
|
+
"lua:ring-offset-white lua:transition-all lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
665
665
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2 lua:disabled:pointer-events-none lua:disabled:opacity-50",
|
|
666
|
-
"lua:data-[state=active]:
|
|
667
|
-
"lua:
|
|
666
|
+
"lua:data-[state=active]:bg-blue-50 lua:data-[state=active]:text-blue-800 lua:data-[state=active]:hover:bg-blue-100",
|
|
667
|
+
"lua:text-gray-500 lua:hover:bg-gray-100"
|
|
668
668
|
].join(" "));
|
|
669
|
-
var TabsTrigger =
|
|
669
|
+
var TabsTrigger = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
670
670
|
TabsPrimitive__namespace.Trigger,
|
|
671
671
|
{
|
|
672
672
|
ref,
|
|
@@ -676,10 +676,10 @@ var TabsTrigger = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
676
676
|
));
|
|
677
677
|
TabsTrigger.displayName = TabsPrimitive__namespace.Trigger.displayName;
|
|
678
678
|
var tabsContentVariants = classVarianceAuthority.cva([
|
|
679
|
-
"lua:mt-
|
|
679
|
+
"lua:mt-2 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
680
680
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
681
681
|
].join(" "));
|
|
682
|
-
var TabsContent =
|
|
682
|
+
var TabsContent = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
683
683
|
TabsPrimitive__namespace.Content,
|
|
684
684
|
{
|
|
685
685
|
ref,
|
|
@@ -688,7 +688,7 @@ var TabsContent = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
688
688
|
}
|
|
689
689
|
));
|
|
690
690
|
TabsContent.displayName = TabsPrimitive__namespace.Content.displayName;
|
|
691
|
-
var InputOTP =
|
|
691
|
+
var InputOTP = React119__namespace.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
692
692
|
inputOtp.OTPInput,
|
|
693
693
|
{
|
|
694
694
|
ref,
|
|
@@ -701,10 +701,10 @@ var InputOTP = React118__namespace.forwardRef(({ className, containerClassName,
|
|
|
701
701
|
}
|
|
702
702
|
));
|
|
703
703
|
InputOTP.displayName = "InputOTP";
|
|
704
|
-
var InputOTPGroup =
|
|
704
|
+
var InputOTPGroup = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
705
705
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
706
|
-
var InputOTPSlot =
|
|
707
|
-
const inputOTPContext =
|
|
706
|
+
var InputOTPSlot = React119__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
707
|
+
const inputOTPContext = React119__namespace.useContext(inputOtp.OTPInputContext);
|
|
708
708
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
709
709
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
710
710
|
"div",
|
|
@@ -724,7 +724,7 @@ var InputOTPSlot = React118__namespace.forwardRef(({ index, className, ...props
|
|
|
724
724
|
);
|
|
725
725
|
});
|
|
726
726
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
727
|
-
var InputOTPSeparator =
|
|
727
|
+
var InputOTPSeparator = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
728
728
|
"div",
|
|
729
729
|
{
|
|
730
730
|
ref,
|
|
@@ -738,7 +738,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
738
738
|
var TooltipProvider = TooltipPrimitive__namespace.Provider;
|
|
739
739
|
var Tooltip = TooltipPrimitive__namespace.Root;
|
|
740
740
|
var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
|
|
741
|
-
var TooltipArrow =
|
|
741
|
+
var TooltipArrow = React119__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
742
742
|
TooltipPrimitive__namespace.Arrow,
|
|
743
743
|
{
|
|
744
744
|
ref,
|
|
@@ -755,7 +755,7 @@ var TooltipArrow = React118__namespace.forwardRef(({ className, style, ...props
|
|
|
755
755
|
}
|
|
756
756
|
));
|
|
757
757
|
TooltipArrow.displayName = TooltipPrimitive__namespace.Arrow.displayName;
|
|
758
|
-
var TooltipContent =
|
|
758
|
+
var TooltipContent = React119__namespace.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
759
759
|
TooltipPrimitive__namespace.Content,
|
|
760
760
|
{
|
|
761
761
|
ref,
|
|
@@ -779,7 +779,7 @@ var TooltipContent = React118__namespace.forwardRef(({ className, sideOffset = 4
|
|
|
779
779
|
}
|
|
780
780
|
) }));
|
|
781
781
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
782
|
-
var Card =
|
|
782
|
+
var Card = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
783
783
|
"div",
|
|
784
784
|
{
|
|
785
785
|
ref,
|
|
@@ -791,7 +791,7 @@ var Card = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
791
791
|
}
|
|
792
792
|
));
|
|
793
793
|
Card.displayName = "Card";
|
|
794
|
-
var CardHeader =
|
|
794
|
+
var CardHeader = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
795
795
|
"div",
|
|
796
796
|
{
|
|
797
797
|
ref,
|
|
@@ -800,7 +800,7 @@ var CardHeader = React118__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
800
800
|
}
|
|
801
801
|
));
|
|
802
802
|
CardHeader.displayName = "CardHeader";
|
|
803
|
-
var CardTitle =
|
|
803
|
+
var CardTitle = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
804
804
|
"div",
|
|
805
805
|
{
|
|
806
806
|
ref,
|
|
@@ -809,7 +809,7 @@ var CardTitle = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
809
809
|
}
|
|
810
810
|
));
|
|
811
811
|
CardTitle.displayName = "CardTitle";
|
|
812
|
-
var CardDescription =
|
|
812
|
+
var CardDescription = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
813
813
|
"div",
|
|
814
814
|
{
|
|
815
815
|
ref,
|
|
@@ -818,9 +818,9 @@ var CardDescription = React118__namespace.forwardRef(({ className, ...props }, r
|
|
|
818
818
|
}
|
|
819
819
|
));
|
|
820
820
|
CardDescription.displayName = "CardDescription";
|
|
821
|
-
var CardContent =
|
|
821
|
+
var CardContent = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
822
822
|
CardContent.displayName = "CardContent";
|
|
823
|
-
var CardFooter =
|
|
823
|
+
var CardFooter = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
824
824
|
"div",
|
|
825
825
|
{
|
|
826
826
|
ref,
|
|
@@ -839,6 +839,7 @@ function getDefaultAriaLabel(componentName) {
|
|
|
839
839
|
RecordIcon: "Record",
|
|
840
840
|
Logo: "Lua logo",
|
|
841
841
|
ChatsCircle: "Chats circle",
|
|
842
|
+
FloppyDiscIcon: "Floppy disk",
|
|
842
843
|
DotsThree: "More options",
|
|
843
844
|
DotsThreeVertical: "More options vertical",
|
|
844
845
|
CaretDown: "Expand",
|
|
@@ -893,7 +894,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
893
894
|
restProps
|
|
894
895
|
};
|
|
895
896
|
}
|
|
896
|
-
var ArrowLeft =
|
|
897
|
+
var ArrowLeft = React119__namespace.forwardRef(
|
|
897
898
|
({ size = 20, ...props }, ref) => {
|
|
898
899
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
899
900
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -922,7 +923,7 @@ var ArrowLeft = React118__namespace.forwardRef(
|
|
|
922
923
|
}
|
|
923
924
|
);
|
|
924
925
|
ArrowLeft.displayName = "ArrowLeft";
|
|
925
|
-
var ArrowRight =
|
|
926
|
+
var ArrowRight = React119__namespace.forwardRef(
|
|
926
927
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
927
928
|
"svg",
|
|
928
929
|
{
|
|
@@ -944,7 +945,7 @@ var ArrowRight = React118__namespace.forwardRef(
|
|
|
944
945
|
)
|
|
945
946
|
);
|
|
946
947
|
ArrowRight.displayName = "ArrowRight";
|
|
947
|
-
var ArrowClockwiseIcon =
|
|
948
|
+
var ArrowClockwiseIcon = React119__namespace.forwardRef(
|
|
948
949
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
949
950
|
"svg",
|
|
950
951
|
{
|
|
@@ -966,7 +967,7 @@ var ArrowClockwiseIcon = React118__namespace.forwardRef(
|
|
|
966
967
|
)
|
|
967
968
|
);
|
|
968
969
|
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
969
|
-
var ArrowsClockwiseIcon =
|
|
970
|
+
var ArrowsClockwiseIcon = React119__namespace.forwardRef(
|
|
970
971
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
971
972
|
"svg",
|
|
972
973
|
{
|
|
@@ -988,7 +989,7 @@ var ArrowsClockwiseIcon = React118__namespace.forwardRef(
|
|
|
988
989
|
)
|
|
989
990
|
);
|
|
990
991
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
991
|
-
var ArrowSquareOut =
|
|
992
|
+
var ArrowSquareOut = React119__namespace.forwardRef(
|
|
992
993
|
({ size = 20, ...props }, ref) => {
|
|
993
994
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
994
995
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1017,7 +1018,7 @@ var ArrowSquareOut = React118__namespace.forwardRef(
|
|
|
1017
1018
|
}
|
|
1018
1019
|
);
|
|
1019
1020
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
1020
|
-
var ArrowUp =
|
|
1021
|
+
var ArrowUp = React119__namespace.forwardRef(
|
|
1021
1022
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1022
1023
|
"svg",
|
|
1023
1024
|
{
|
|
@@ -1039,7 +1040,7 @@ var ArrowUp = React118__namespace.forwardRef(
|
|
|
1039
1040
|
)
|
|
1040
1041
|
);
|
|
1041
1042
|
ArrowUp.displayName = "ArrowUp";
|
|
1042
|
-
var BooksIcon =
|
|
1043
|
+
var BooksIcon = React119__namespace.forwardRef(
|
|
1043
1044
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1044
1045
|
"svg",
|
|
1045
1046
|
{
|
|
@@ -1061,7 +1062,7 @@ var BooksIcon = React118__namespace.forwardRef(
|
|
|
1061
1062
|
)
|
|
1062
1063
|
);
|
|
1063
1064
|
BooksIcon.displayName = "BooksIcon";
|
|
1064
|
-
var Camera =
|
|
1065
|
+
var Camera = React119__namespace.forwardRef(
|
|
1065
1066
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1066
1067
|
"svg",
|
|
1067
1068
|
{
|
|
@@ -1083,7 +1084,7 @@ var Camera = React118__namespace.forwardRef(
|
|
|
1083
1084
|
)
|
|
1084
1085
|
);
|
|
1085
1086
|
Camera.displayName = "Camera";
|
|
1086
|
-
var CaretDown =
|
|
1087
|
+
var CaretDown = React119__namespace.forwardRef(
|
|
1087
1088
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1088
1089
|
"svg",
|
|
1089
1090
|
{
|
|
@@ -1105,7 +1106,7 @@ var CaretDown = React118__namespace.forwardRef(
|
|
|
1105
1106
|
)
|
|
1106
1107
|
);
|
|
1107
1108
|
CaretDown.displayName = "CaretDown";
|
|
1108
|
-
var CaretRight =
|
|
1109
|
+
var CaretRight = React119__namespace.forwardRef(
|
|
1109
1110
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1110
1111
|
"svg",
|
|
1111
1112
|
{
|
|
@@ -1127,7 +1128,7 @@ var CaretRight = React118__namespace.forwardRef(
|
|
|
1127
1128
|
)
|
|
1128
1129
|
);
|
|
1129
1130
|
CaretRight.displayName = "CaretRight";
|
|
1130
|
-
var CaretUpIcon =
|
|
1131
|
+
var CaretUpIcon = React119__namespace.forwardRef(
|
|
1131
1132
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1132
1133
|
"svg",
|
|
1133
1134
|
{
|
|
@@ -1149,7 +1150,7 @@ var CaretUpIcon = React118__namespace.forwardRef(
|
|
|
1149
1150
|
)
|
|
1150
1151
|
);
|
|
1151
1152
|
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1152
|
-
var ChartBar =
|
|
1153
|
+
var ChartBar = React119__namespace.forwardRef(
|
|
1153
1154
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1154
1155
|
"svg",
|
|
1155
1156
|
{
|
|
@@ -1171,7 +1172,7 @@ var ChartBar = React118__namespace.forwardRef(
|
|
|
1171
1172
|
)
|
|
1172
1173
|
);
|
|
1173
1174
|
ChartBar.displayName = "ChartBar";
|
|
1174
|
-
var Chat =
|
|
1175
|
+
var Chat = React119__namespace.forwardRef(
|
|
1175
1176
|
({ size = 20, ...props }, ref) => {
|
|
1176
1177
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1177
1178
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1200,7 +1201,7 @@ var Chat = React118__namespace.forwardRef(
|
|
|
1200
1201
|
}
|
|
1201
1202
|
);
|
|
1202
1203
|
Chat.displayName = "Chat";
|
|
1203
|
-
var ChatsCircle =
|
|
1204
|
+
var ChatsCircle = React119__namespace.forwardRef(
|
|
1204
1205
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1205
1206
|
"svg",
|
|
1206
1207
|
{
|
|
@@ -1222,7 +1223,7 @@ var ChatsCircle = React118__namespace.forwardRef(
|
|
|
1222
1223
|
)
|
|
1223
1224
|
);
|
|
1224
1225
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1225
|
-
var Check =
|
|
1226
|
+
var Check = React119__namespace.forwardRef(
|
|
1226
1227
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1227
1228
|
"svg",
|
|
1228
1229
|
{
|
|
@@ -1244,7 +1245,7 @@ var Check = React118__namespace.forwardRef(
|
|
|
1244
1245
|
)
|
|
1245
1246
|
);
|
|
1246
1247
|
Check.displayName = "Check";
|
|
1247
|
-
var CheckSquareIcon =
|
|
1248
|
+
var CheckSquareIcon = React119__namespace.forwardRef(
|
|
1248
1249
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1249
1250
|
"svg",
|
|
1250
1251
|
{
|
|
@@ -1266,7 +1267,7 @@ var CheckSquareIcon = React118__namespace.forwardRef(
|
|
|
1266
1267
|
)
|
|
1267
1268
|
);
|
|
1268
1269
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1269
|
-
var Circle =
|
|
1270
|
+
var Circle = React119__namespace.forwardRef(
|
|
1270
1271
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1271
1272
|
"svg",
|
|
1272
1273
|
{
|
|
@@ -1288,7 +1289,7 @@ var Circle = React118__namespace.forwardRef(
|
|
|
1288
1289
|
)
|
|
1289
1290
|
);
|
|
1290
1291
|
Circle.displayName = "Circle";
|
|
1291
|
-
var ClipboardTextIcon =
|
|
1292
|
+
var ClipboardTextIcon = React119__namespace.forwardRef(
|
|
1292
1293
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1293
1294
|
"svg",
|
|
1294
1295
|
{
|
|
@@ -1310,7 +1311,7 @@ var ClipboardTextIcon = React118__namespace.forwardRef(
|
|
|
1310
1311
|
)
|
|
1311
1312
|
);
|
|
1312
1313
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1313
|
-
var Clock =
|
|
1314
|
+
var Clock = React119__namespace.forwardRef(
|
|
1314
1315
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1315
1316
|
"svg",
|
|
1316
1317
|
{
|
|
@@ -1332,7 +1333,7 @@ var Clock = React118__namespace.forwardRef(
|
|
|
1332
1333
|
)
|
|
1333
1334
|
);
|
|
1334
1335
|
Clock.displayName = "Clock";
|
|
1335
|
-
var CopySimpleIcon =
|
|
1336
|
+
var CopySimpleIcon = React119__namespace.forwardRef(
|
|
1336
1337
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1337
1338
|
"svg",
|
|
1338
1339
|
{
|
|
@@ -1354,7 +1355,7 @@ var CopySimpleIcon = React118__namespace.forwardRef(
|
|
|
1354
1355
|
)
|
|
1355
1356
|
);
|
|
1356
1357
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1357
|
-
var CreditCard =
|
|
1358
|
+
var CreditCard = React119__namespace.forwardRef(
|
|
1358
1359
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1359
1360
|
"svg",
|
|
1360
1361
|
{
|
|
@@ -1376,7 +1377,7 @@ var CreditCard = React118__namespace.forwardRef(
|
|
|
1376
1377
|
)
|
|
1377
1378
|
);
|
|
1378
1379
|
CreditCard.displayName = "CreditCard";
|
|
1379
|
-
var CurrencyCircleDollar =
|
|
1380
|
+
var CurrencyCircleDollar = React119__namespace.default.forwardRef(
|
|
1380
1381
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1381
1382
|
"svg",
|
|
1382
1383
|
{
|
|
@@ -1398,7 +1399,7 @@ var CurrencyCircleDollar = React118__namespace.default.forwardRef(
|
|
|
1398
1399
|
)
|
|
1399
1400
|
);
|
|
1400
1401
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1401
|
-
var DotsSixVerticalIcon =
|
|
1402
|
+
var DotsSixVerticalIcon = React119__namespace.forwardRef(
|
|
1402
1403
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1403
1404
|
"svg",
|
|
1404
1405
|
{
|
|
@@ -1420,7 +1421,7 @@ var DotsSixVerticalIcon = React118__namespace.forwardRef(
|
|
|
1420
1421
|
)
|
|
1421
1422
|
);
|
|
1422
1423
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1423
|
-
var DotsThree =
|
|
1424
|
+
var DotsThree = React119__namespace.forwardRef(
|
|
1424
1425
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1425
1426
|
"svg",
|
|
1426
1427
|
{
|
|
@@ -1442,7 +1443,7 @@ var DotsThree = React118__namespace.forwardRef(
|
|
|
1442
1443
|
)
|
|
1443
1444
|
);
|
|
1444
1445
|
DotsThree.displayName = "DotsThree";
|
|
1445
|
-
var DotsThreeVertical =
|
|
1446
|
+
var DotsThreeVertical = React119__namespace.forwardRef(
|
|
1446
1447
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1447
1448
|
"svg",
|
|
1448
1449
|
{
|
|
@@ -1464,7 +1465,7 @@ var DotsThreeVertical = React118__namespace.forwardRef(
|
|
|
1464
1465
|
)
|
|
1465
1466
|
);
|
|
1466
1467
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1467
|
-
var FacebookLogo =
|
|
1468
|
+
var FacebookLogo = React119__namespace.forwardRef(
|
|
1468
1469
|
({ size = 20, ...props }, ref) => {
|
|
1469
1470
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1470
1471
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1493,7 +1494,29 @@ var FacebookLogo = React118__namespace.forwardRef(
|
|
|
1493
1494
|
}
|
|
1494
1495
|
);
|
|
1495
1496
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1496
|
-
var
|
|
1497
|
+
var FloppyDiskIcon = React119__namespace.forwardRef(
|
|
1498
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1499
|
+
"svg",
|
|
1500
|
+
{
|
|
1501
|
+
ref,
|
|
1502
|
+
width: size,
|
|
1503
|
+
height: size,
|
|
1504
|
+
viewBox: "0 0 24 24",
|
|
1505
|
+
fill: "none",
|
|
1506
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1507
|
+
...props,
|
|
1508
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1509
|
+
"path",
|
|
1510
|
+
{
|
|
1511
|
+
d: "M20.5603 6.75001L17.25 3.43969C17.1112 3.2998 16.946 3.18889 16.764 3.11341C16.582 3.03792 16.3867 2.99938 16.1897 3.00001H4.5C4.10218 3.00001 3.72064 3.15804 3.43934 3.43935C3.15804 3.72065 3 4.10218 3 4.50001V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V7.81032C21.0006 7.61326 20.9621 7.41805 20.8866 7.23602C20.8111 7.054 20.7002 6.88879 20.5603 6.75001ZM15.75 19.5H8.25V14.25H15.75V19.5ZM19.5 19.5H17.25V14.25C17.25 13.8522 17.092 13.4707 16.8107 13.1893C16.5294 12.908 16.1478 12.75 15.75 12.75H8.25C7.85218 12.75 7.47064 12.908 7.18934 13.1893C6.90804 13.4707 6.75 13.8522 6.75 14.25V19.5H4.5V4.50001H16.1897L19.5 7.81032V19.5ZM15 6.75001C15 6.94892 14.921 7.13969 14.7803 7.28034C14.6397 7.42099 14.4489 7.50001 14.25 7.50001H9C8.80109 7.50001 8.61032 7.42099 8.46967 7.28034C8.32902 7.13969 8.25 6.94892 8.25 6.75001C8.25 6.5511 8.32902 6.36033 8.46967 6.21968C8.61032 6.07903 8.80109 6.00001 9 6.00001H14.25C14.4489 6.00001 14.6397 6.07903 14.7803 6.21968C14.921 6.36033 15 6.5511 15 6.75001Z",
|
|
1512
|
+
fill: props.color || "currentColor"
|
|
1513
|
+
}
|
|
1514
|
+
)
|
|
1515
|
+
}
|
|
1516
|
+
)
|
|
1517
|
+
);
|
|
1518
|
+
FloppyDiskIcon.displayName = "FloppyDiskIcon";
|
|
1519
|
+
var FolderIcon = React119__namespace.forwardRef(
|
|
1497
1520
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1498
1521
|
"svg",
|
|
1499
1522
|
{
|
|
@@ -1515,7 +1538,7 @@ var FolderIcon = React118__namespace.forwardRef(
|
|
|
1515
1538
|
)
|
|
1516
1539
|
);
|
|
1517
1540
|
FolderIcon.displayName = "FolderIcon";
|
|
1518
|
-
var FolderSimpleLockIcon =
|
|
1541
|
+
var FolderSimpleLockIcon = React119__namespace.forwardRef(
|
|
1519
1542
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1520
1543
|
"svg",
|
|
1521
1544
|
{
|
|
@@ -1537,7 +1560,7 @@ var FolderSimpleLockIcon = React118__namespace.forwardRef(
|
|
|
1537
1560
|
)
|
|
1538
1561
|
);
|
|
1539
1562
|
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1540
|
-
var Gear =
|
|
1563
|
+
var Gear = React119__namespace.forwardRef(
|
|
1541
1564
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1542
1565
|
"svg",
|
|
1543
1566
|
{
|
|
@@ -1559,7 +1582,7 @@ var Gear = React118__namespace.forwardRef(
|
|
|
1559
1582
|
)
|
|
1560
1583
|
);
|
|
1561
1584
|
Gear.displayName = "Gear";
|
|
1562
|
-
var GearSix =
|
|
1585
|
+
var GearSix = React119__namespace.forwardRef(
|
|
1563
1586
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1564
1587
|
"svg",
|
|
1565
1588
|
{
|
|
@@ -1581,7 +1604,7 @@ var GearSix = React118__namespace.forwardRef(
|
|
|
1581
1604
|
)
|
|
1582
1605
|
);
|
|
1583
1606
|
GearSix.displayName = "GearSix";
|
|
1584
|
-
var GitCommit =
|
|
1607
|
+
var GitCommit = React119__namespace.forwardRef(
|
|
1585
1608
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1586
1609
|
"svg",
|
|
1587
1610
|
{
|
|
@@ -1603,7 +1626,7 @@ var GitCommit = React118__namespace.forwardRef(
|
|
|
1603
1626
|
)
|
|
1604
1627
|
);
|
|
1605
1628
|
GitCommit.displayName = "GitCommit";
|
|
1606
|
-
var Headset =
|
|
1629
|
+
var Headset = React119__namespace.forwardRef(
|
|
1607
1630
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1608
1631
|
"svg",
|
|
1609
1632
|
{
|
|
@@ -1625,7 +1648,7 @@ var Headset = React118__namespace.forwardRef(
|
|
|
1625
1648
|
)
|
|
1626
1649
|
);
|
|
1627
1650
|
Headset.displayName = "Headset";
|
|
1628
|
-
var ImageIcon =
|
|
1651
|
+
var ImageIcon = React119__namespace.forwardRef(
|
|
1629
1652
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1630
1653
|
"svg",
|
|
1631
1654
|
{
|
|
@@ -1647,7 +1670,7 @@ var ImageIcon = React118__namespace.forwardRef(
|
|
|
1647
1670
|
)
|
|
1648
1671
|
);
|
|
1649
1672
|
ImageIcon.displayName = "ImageIcon";
|
|
1650
|
-
var InstagramLogo =
|
|
1673
|
+
var InstagramLogo = React119__namespace.forwardRef(
|
|
1651
1674
|
({ size = 20, ...props }, ref) => {
|
|
1652
1675
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1653
1676
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1676,7 +1699,7 @@ var InstagramLogo = React118__namespace.forwardRef(
|
|
|
1676
1699
|
}
|
|
1677
1700
|
);
|
|
1678
1701
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1679
|
-
var KeyIcon =
|
|
1702
|
+
var KeyIcon = React119__namespace.forwardRef(
|
|
1680
1703
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1681
1704
|
"svg",
|
|
1682
1705
|
{
|
|
@@ -1698,7 +1721,7 @@ var KeyIcon = React118__namespace.forwardRef(
|
|
|
1698
1721
|
)
|
|
1699
1722
|
);
|
|
1700
1723
|
KeyIcon.displayName = "KeyIcon";
|
|
1701
|
-
var LinkIcon =
|
|
1724
|
+
var LinkIcon = React119__namespace.forwardRef(
|
|
1702
1725
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1703
1726
|
"svg",
|
|
1704
1727
|
{
|
|
@@ -1720,7 +1743,7 @@ var LinkIcon = React118__namespace.forwardRef(
|
|
|
1720
1743
|
)
|
|
1721
1744
|
);
|
|
1722
1745
|
LinkIcon.displayName = "LinkIcon";
|
|
1723
|
-
var LinkSimple =
|
|
1746
|
+
var LinkSimple = React119__namespace.forwardRef(
|
|
1724
1747
|
({ size = 20, ...props }, ref) => {
|
|
1725
1748
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1726
1749
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1749,7 +1772,7 @@ var LinkSimple = React118__namespace.forwardRef(
|
|
|
1749
1772
|
}
|
|
1750
1773
|
);
|
|
1751
1774
|
LinkSimple.displayName = "LinkSimple";
|
|
1752
|
-
var LockSimple =
|
|
1775
|
+
var LockSimple = React119__namespace.default.forwardRef(
|
|
1753
1776
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1754
1777
|
"svg",
|
|
1755
1778
|
{
|
|
@@ -1771,7 +1794,7 @@ var LockSimple = React118__namespace.default.forwardRef(
|
|
|
1771
1794
|
)
|
|
1772
1795
|
);
|
|
1773
1796
|
LockSimple.displayName = "LockSimple";
|
|
1774
|
-
var Logo =
|
|
1797
|
+
var Logo = React119__namespace.forwardRef(
|
|
1775
1798
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1776
1799
|
"svg",
|
|
1777
1800
|
{
|
|
@@ -2245,7 +2268,7 @@ var Logo = React118__namespace.forwardRef(
|
|
|
2245
2268
|
)
|
|
2246
2269
|
);
|
|
2247
2270
|
Logo.displayName = "Logo";
|
|
2248
|
-
var MagnifyingGlass =
|
|
2271
|
+
var MagnifyingGlass = React119__namespace.forwardRef(
|
|
2249
2272
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2250
2273
|
"svg",
|
|
2251
2274
|
{
|
|
@@ -2267,7 +2290,7 @@ var MagnifyingGlass = React118__namespace.forwardRef(
|
|
|
2267
2290
|
)
|
|
2268
2291
|
);
|
|
2269
2292
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2270
|
-
var MapPin =
|
|
2293
|
+
var MapPin = React119__namespace.forwardRef(
|
|
2271
2294
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2272
2295
|
"svg",
|
|
2273
2296
|
{
|
|
@@ -2289,7 +2312,7 @@ var MapPin = React118__namespace.forwardRef(
|
|
|
2289
2312
|
)
|
|
2290
2313
|
);
|
|
2291
2314
|
MapPin.displayName = "MapPin";
|
|
2292
|
-
var Microphone =
|
|
2315
|
+
var Microphone = React119__namespace.forwardRef(
|
|
2293
2316
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2294
2317
|
"svg",
|
|
2295
2318
|
{
|
|
@@ -2311,7 +2334,7 @@ var Microphone = React118__namespace.forwardRef(
|
|
|
2311
2334
|
)
|
|
2312
2335
|
);
|
|
2313
2336
|
Microphone.displayName = "Microphone";
|
|
2314
|
-
var Minus =
|
|
2337
|
+
var Minus = React119__namespace.forwardRef(
|
|
2315
2338
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2316
2339
|
"svg",
|
|
2317
2340
|
{
|
|
@@ -2333,7 +2356,7 @@ var Minus = React118__namespace.forwardRef(
|
|
|
2333
2356
|
)
|
|
2334
2357
|
);
|
|
2335
2358
|
Minus.displayName = "Minus";
|
|
2336
|
-
var MinusCircleIcon =
|
|
2359
|
+
var MinusCircleIcon = React119__namespace.forwardRef(
|
|
2337
2360
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2338
2361
|
"svg",
|
|
2339
2362
|
{
|
|
@@ -2355,7 +2378,7 @@ var MinusCircleIcon = React118__namespace.forwardRef(
|
|
|
2355
2378
|
)
|
|
2356
2379
|
);
|
|
2357
2380
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2358
|
-
var PackageIcon =
|
|
2381
|
+
var PackageIcon = React119__namespace.forwardRef(
|
|
2359
2382
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2360
2383
|
"svg",
|
|
2361
2384
|
{
|
|
@@ -2377,7 +2400,7 @@ var PackageIcon = React118__namespace.forwardRef(
|
|
|
2377
2400
|
)
|
|
2378
2401
|
);
|
|
2379
2402
|
PackageIcon.displayName = "PackageIcon";
|
|
2380
|
-
var Paperclip =
|
|
2403
|
+
var Paperclip = React119__namespace.forwardRef(
|
|
2381
2404
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2382
2405
|
"svg",
|
|
2383
2406
|
{
|
|
@@ -2399,7 +2422,7 @@ var Paperclip = React118__namespace.forwardRef(
|
|
|
2399
2422
|
)
|
|
2400
2423
|
);
|
|
2401
2424
|
Paperclip.displayName = "Paperclip";
|
|
2402
|
-
var PaperPlane =
|
|
2425
|
+
var PaperPlane = React119__namespace.forwardRef(
|
|
2403
2426
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2404
2427
|
"svg",
|
|
2405
2428
|
{
|
|
@@ -2421,7 +2444,7 @@ var PaperPlane = React118__namespace.forwardRef(
|
|
|
2421
2444
|
)
|
|
2422
2445
|
);
|
|
2423
2446
|
PaperPlane.displayName = "PaperPlane";
|
|
2424
|
-
var PaperPlaneTilt =
|
|
2447
|
+
var PaperPlaneTilt = React119__namespace.forwardRef(
|
|
2425
2448
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2426
2449
|
"svg",
|
|
2427
2450
|
{
|
|
@@ -2443,7 +2466,7 @@ var PaperPlaneTilt = React118__namespace.forwardRef(
|
|
|
2443
2466
|
)
|
|
2444
2467
|
);
|
|
2445
2468
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2446
|
-
var PencilSimple =
|
|
2469
|
+
var PencilSimple = React119__namespace.forwardRef(
|
|
2447
2470
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2448
2471
|
"svg",
|
|
2449
2472
|
{
|
|
@@ -2465,7 +2488,7 @@ var PencilSimple = React118__namespace.forwardRef(
|
|
|
2465
2488
|
)
|
|
2466
2489
|
);
|
|
2467
2490
|
PencilSimple.displayName = "PencilSimple";
|
|
2468
|
-
var PlugsRegular =
|
|
2491
|
+
var PlugsRegular = React119__namespace.forwardRef(
|
|
2469
2492
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2470
2493
|
"svg",
|
|
2471
2494
|
{
|
|
@@ -2487,7 +2510,7 @@ var PlugsRegular = React118__namespace.forwardRef(
|
|
|
2487
2510
|
)
|
|
2488
2511
|
);
|
|
2489
2512
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2490
|
-
var ShoppingCartIcon =
|
|
2513
|
+
var ShoppingCartIcon = React119__namespace.forwardRef(
|
|
2491
2514
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2492
2515
|
"svg",
|
|
2493
2516
|
{
|
|
@@ -2509,7 +2532,7 @@ var ShoppingCartIcon = React118__namespace.forwardRef(
|
|
|
2509
2532
|
)
|
|
2510
2533
|
);
|
|
2511
2534
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2512
|
-
var Plus =
|
|
2535
|
+
var Plus = React119__namespace.forwardRef(
|
|
2513
2536
|
({ size = 20, ...props }, ref) => {
|
|
2514
2537
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2515
2538
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2538,7 +2561,7 @@ var Plus = React118__namespace.forwardRef(
|
|
|
2538
2561
|
}
|
|
2539
2562
|
);
|
|
2540
2563
|
Plus.displayName = "Plus";
|
|
2541
|
-
var RecordIcon =
|
|
2564
|
+
var RecordIcon = React119__namespace.forwardRef(
|
|
2542
2565
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2543
2566
|
"svg",
|
|
2544
2567
|
{
|
|
@@ -2560,7 +2583,7 @@ var RecordIcon = React118__namespace.forwardRef(
|
|
|
2560
2583
|
)
|
|
2561
2584
|
);
|
|
2562
2585
|
RecordIcon.displayName = "RecordIcon";
|
|
2563
|
-
var SidebarSimple =
|
|
2586
|
+
var SidebarSimple = React119__namespace.forwardRef(
|
|
2564
2587
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2565
2588
|
"svg",
|
|
2566
2589
|
{
|
|
@@ -2582,7 +2605,7 @@ var SidebarSimple = React118__namespace.forwardRef(
|
|
|
2582
2605
|
)
|
|
2583
2606
|
);
|
|
2584
2607
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2585
|
-
var SignOut =
|
|
2608
|
+
var SignOut = React119__namespace.forwardRef(
|
|
2586
2609
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2587
2610
|
"svg",
|
|
2588
2611
|
{
|
|
@@ -2604,7 +2627,7 @@ var SignOut = React118__namespace.forwardRef(
|
|
|
2604
2627
|
)
|
|
2605
2628
|
);
|
|
2606
2629
|
SignOut.displayName = "SignOut";
|
|
2607
|
-
var Storefront =
|
|
2630
|
+
var Storefront = React119__namespace.forwardRef(
|
|
2608
2631
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2609
2632
|
"svg",
|
|
2610
2633
|
{
|
|
@@ -2626,7 +2649,7 @@ var Storefront = React118__namespace.forwardRef(
|
|
|
2626
2649
|
)
|
|
2627
2650
|
);
|
|
2628
2651
|
Storefront.displayName = "Storefront";
|
|
2629
|
-
var Tag =
|
|
2652
|
+
var Tag = React119__namespace.forwardRef(
|
|
2630
2653
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2631
2654
|
"svg",
|
|
2632
2655
|
{
|
|
@@ -2648,7 +2671,7 @@ var Tag = React118__namespace.forwardRef(
|
|
|
2648
2671
|
)
|
|
2649
2672
|
);
|
|
2650
2673
|
Tag.displayName = "Tag";
|
|
2651
|
-
var Ticket =
|
|
2674
|
+
var Ticket = React119__namespace.forwardRef(
|
|
2652
2675
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2653
2676
|
"svg",
|
|
2654
2677
|
{
|
|
@@ -2670,7 +2693,7 @@ var Ticket = React118__namespace.forwardRef(
|
|
|
2670
2693
|
)
|
|
2671
2694
|
);
|
|
2672
2695
|
Ticket.displayName = "Ticket";
|
|
2673
|
-
var Trash =
|
|
2696
|
+
var Trash = React119__namespace.forwardRef(
|
|
2674
2697
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2675
2698
|
"svg",
|
|
2676
2699
|
{
|
|
@@ -2692,7 +2715,7 @@ var Trash = React118__namespace.forwardRef(
|
|
|
2692
2715
|
)
|
|
2693
2716
|
);
|
|
2694
2717
|
Trash.displayName = "Trash";
|
|
2695
|
-
var UserCircle =
|
|
2718
|
+
var UserCircle = React119__namespace.forwardRef(
|
|
2696
2719
|
({ size = 24, ...props }, ref) => {
|
|
2697
2720
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2698
2721
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2721,7 +2744,7 @@ var UserCircle = React118__namespace.forwardRef(
|
|
|
2721
2744
|
}
|
|
2722
2745
|
);
|
|
2723
2746
|
UserCircle.displayName = "UserCircle";
|
|
2724
|
-
var UserIcon =
|
|
2747
|
+
var UserIcon = React119__namespace.forwardRef(
|
|
2725
2748
|
({ size = 24, ...props }, ref) => {
|
|
2726
2749
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2727
2750
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2750,7 +2773,7 @@ var UserIcon = React118__namespace.forwardRef(
|
|
|
2750
2773
|
}
|
|
2751
2774
|
);
|
|
2752
2775
|
UserIcon.displayName = "UserIcon";
|
|
2753
|
-
var Users =
|
|
2776
|
+
var Users = React119__namespace.forwardRef(
|
|
2754
2777
|
({ size = 20, ...props }, ref) => {
|
|
2755
2778
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2756
2779
|
props,
|
|
@@ -2779,7 +2802,7 @@ var Users = React118__namespace.forwardRef(
|
|
|
2779
2802
|
}
|
|
2780
2803
|
);
|
|
2781
2804
|
Users.displayName = "Users";
|
|
2782
|
-
var VideoCamera =
|
|
2805
|
+
var VideoCamera = React119__namespace.forwardRef(
|
|
2783
2806
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2784
2807
|
"svg",
|
|
2785
2808
|
{
|
|
@@ -2801,7 +2824,7 @@ var VideoCamera = React118__namespace.forwardRef(
|
|
|
2801
2824
|
)
|
|
2802
2825
|
);
|
|
2803
2826
|
VideoCamera.displayName = "VideoCamera";
|
|
2804
|
-
var WhatsAppLogo =
|
|
2827
|
+
var WhatsAppLogo = React119__namespace.forwardRef(
|
|
2805
2828
|
({ size = 20, ...props }, ref) => {
|
|
2806
2829
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2807
2830
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2830,7 +2853,7 @@ var WhatsAppLogo = React118__namespace.forwardRef(
|
|
|
2830
2853
|
}
|
|
2831
2854
|
);
|
|
2832
2855
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2833
|
-
var WarningOctagon =
|
|
2856
|
+
var WarningOctagon = React119__namespace.forwardRef(
|
|
2834
2857
|
({ size = 20, ...props }, ref) => {
|
|
2835
2858
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2836
2859
|
props,
|
|
@@ -2859,7 +2882,7 @@ var WarningOctagon = React118__namespace.forwardRef(
|
|
|
2859
2882
|
}
|
|
2860
2883
|
);
|
|
2861
2884
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2862
|
-
var WarningTriangle =
|
|
2885
|
+
var WarningTriangle = React119__namespace.forwardRef(
|
|
2863
2886
|
({ size = 20, ...props }, ref) => {
|
|
2864
2887
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2865
2888
|
props,
|
|
@@ -2888,7 +2911,7 @@ var WarningTriangle = React118__namespace.forwardRef(
|
|
|
2888
2911
|
}
|
|
2889
2912
|
);
|
|
2890
2913
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2891
|
-
var Waveform =
|
|
2914
|
+
var Waveform = React119__namespace.forwardRef(
|
|
2892
2915
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2893
2916
|
"svg",
|
|
2894
2917
|
{
|
|
@@ -2910,7 +2933,7 @@ var Waveform = React118__namespace.forwardRef(
|
|
|
2910
2933
|
)
|
|
2911
2934
|
);
|
|
2912
2935
|
Waveform.displayName = "Waveform";
|
|
2913
|
-
var WrenchIcon =
|
|
2936
|
+
var WrenchIcon = React119__namespace.forwardRef(
|
|
2914
2937
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2915
2938
|
"svg",
|
|
2916
2939
|
{
|
|
@@ -2932,7 +2955,7 @@ var WrenchIcon = React118__namespace.forwardRef(
|
|
|
2932
2955
|
)
|
|
2933
2956
|
);
|
|
2934
2957
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2935
|
-
var XIcon =
|
|
2958
|
+
var XIcon = React119__namespace.forwardRef(
|
|
2936
2959
|
({ size = 24, ...props }, ref) => {
|
|
2937
2960
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2938
2961
|
props,
|
|
@@ -2963,7 +2986,7 @@ var XIcon = React118__namespace.forwardRef(
|
|
|
2963
2986
|
}
|
|
2964
2987
|
);
|
|
2965
2988
|
XIcon.displayName = "XIcon";
|
|
2966
|
-
var DownloadIcon =
|
|
2989
|
+
var DownloadIcon = React119__namespace.forwardRef(
|
|
2967
2990
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2968
2991
|
"svg",
|
|
2969
2992
|
{
|
|
@@ -2981,7 +3004,7 @@ var DownloadIcon = React118__namespace.forwardRef(
|
|
|
2981
3004
|
)
|
|
2982
3005
|
);
|
|
2983
3006
|
DownloadIcon.displayName = "DownloadIcon";
|
|
2984
|
-
var TextIcon =
|
|
3007
|
+
var TextIcon = React119__namespace.forwardRef(
|
|
2985
3008
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2986
3009
|
"svg",
|
|
2987
3010
|
{
|
|
@@ -3006,7 +3029,7 @@ var aep_exports = {};
|
|
|
3006
3029
|
__export(aep_exports, {
|
|
3007
3030
|
AEP: () => AEP
|
|
3008
3031
|
});
|
|
3009
|
-
var AEP =
|
|
3032
|
+
var AEP = React119__namespace.forwardRef(
|
|
3010
3033
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3011
3034
|
"svg",
|
|
3012
3035
|
{
|
|
@@ -3054,7 +3077,7 @@ var ai_exports = {};
|
|
|
3054
3077
|
__export(ai_exports, {
|
|
3055
3078
|
AI: () => AI
|
|
3056
3079
|
});
|
|
3057
|
-
var AI =
|
|
3080
|
+
var AI = React119__namespace.forwardRef(
|
|
3058
3081
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3059
3082
|
"svg",
|
|
3060
3083
|
{
|
|
@@ -3102,7 +3125,7 @@ var avi_exports = {};
|
|
|
3102
3125
|
__export(avi_exports, {
|
|
3103
3126
|
AVI: () => AVI
|
|
3104
3127
|
});
|
|
3105
|
-
var AVI =
|
|
3128
|
+
var AVI = React119__namespace.forwardRef(
|
|
3106
3129
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3107
3130
|
"svg",
|
|
3108
3131
|
{
|
|
@@ -3150,7 +3173,7 @@ var blend_exports = {};
|
|
|
3150
3173
|
__export(blend_exports, {
|
|
3151
3174
|
Blend: () => Blend
|
|
3152
3175
|
});
|
|
3153
|
-
var Blend =
|
|
3176
|
+
var Blend = React119__namespace.forwardRef(
|
|
3154
3177
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3155
3178
|
"svg",
|
|
3156
3179
|
{
|
|
@@ -3198,7 +3221,7 @@ var c4d_exports = {};
|
|
|
3198
3221
|
__export(c4d_exports, {
|
|
3199
3222
|
C4D: () => C4D
|
|
3200
3223
|
});
|
|
3201
|
-
var C4D =
|
|
3224
|
+
var C4D = React119__namespace.forwardRef(
|
|
3202
3225
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3203
3226
|
"svg",
|
|
3204
3227
|
{
|
|
@@ -3246,7 +3269,7 @@ var cdr_exports = {};
|
|
|
3246
3269
|
__export(cdr_exports, {
|
|
3247
3270
|
CDR: () => CDR
|
|
3248
3271
|
});
|
|
3249
|
-
var CDR =
|
|
3272
|
+
var CDR = React119__namespace.forwardRef(
|
|
3250
3273
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3251
3274
|
"svg",
|
|
3252
3275
|
{
|
|
@@ -3294,7 +3317,7 @@ var css_exports = {};
|
|
|
3294
3317
|
__export(css_exports, {
|
|
3295
3318
|
CSS: () => CSS
|
|
3296
3319
|
});
|
|
3297
|
-
var CSS =
|
|
3320
|
+
var CSS = React119__namespace.forwardRef(
|
|
3298
3321
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3299
3322
|
"svg",
|
|
3300
3323
|
{
|
|
@@ -3342,7 +3365,7 @@ var csv_exports = {};
|
|
|
3342
3365
|
__export(csv_exports, {
|
|
3343
3366
|
CSV: () => CSV
|
|
3344
3367
|
});
|
|
3345
|
-
var CSV =
|
|
3368
|
+
var CSV = React119__namespace.forwardRef(
|
|
3346
3369
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3347
3370
|
"svg",
|
|
3348
3371
|
{
|
|
@@ -3390,7 +3413,7 @@ var dmg_exports = {};
|
|
|
3390
3413
|
__export(dmg_exports, {
|
|
3391
3414
|
DMG: () => DMG
|
|
3392
3415
|
});
|
|
3393
|
-
var DMG =
|
|
3416
|
+
var DMG = React119__namespace.forwardRef(
|
|
3394
3417
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3395
3418
|
"svg",
|
|
3396
3419
|
{
|
|
@@ -3438,7 +3461,7 @@ var doc_exports = {};
|
|
|
3438
3461
|
__export(doc_exports, {
|
|
3439
3462
|
DOC: () => DOC
|
|
3440
3463
|
});
|
|
3441
|
-
var DOC =
|
|
3464
|
+
var DOC = React119__namespace.forwardRef(
|
|
3442
3465
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3443
3466
|
"svg",
|
|
3444
3467
|
{
|
|
@@ -3486,7 +3509,7 @@ var exe_exports = {};
|
|
|
3486
3509
|
__export(exe_exports, {
|
|
3487
3510
|
EXE: () => EXE
|
|
3488
3511
|
});
|
|
3489
|
-
var EXE =
|
|
3512
|
+
var EXE = React119__namespace.forwardRef(
|
|
3490
3513
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3491
3514
|
"svg",
|
|
3492
3515
|
{
|
|
@@ -3534,7 +3557,7 @@ var fig_exports = {};
|
|
|
3534
3557
|
__export(fig_exports, {
|
|
3535
3558
|
Fig: () => Fig
|
|
3536
3559
|
});
|
|
3537
|
-
var Fig =
|
|
3560
|
+
var Fig = React119__namespace.forwardRef(
|
|
3538
3561
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3539
3562
|
"svg",
|
|
3540
3563
|
{
|
|
@@ -3582,7 +3605,7 @@ var gif_exports = {};
|
|
|
3582
3605
|
__export(gif_exports, {
|
|
3583
3606
|
GIF: () => GIF
|
|
3584
3607
|
});
|
|
3585
|
-
var GIF =
|
|
3608
|
+
var GIF = React119__namespace.forwardRef(
|
|
3586
3609
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3587
3610
|
"svg",
|
|
3588
3611
|
{
|
|
@@ -3630,7 +3653,7 @@ var html_exports = {};
|
|
|
3630
3653
|
__export(html_exports, {
|
|
3631
3654
|
HTML: () => HTML
|
|
3632
3655
|
});
|
|
3633
|
-
var HTML =
|
|
3656
|
+
var HTML = React119__namespace.forwardRef(
|
|
3634
3657
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3635
3658
|
"svg",
|
|
3636
3659
|
{
|
|
@@ -3678,7 +3701,7 @@ var ico_exports = {};
|
|
|
3678
3701
|
__export(ico_exports, {
|
|
3679
3702
|
ICO: () => ICO
|
|
3680
3703
|
});
|
|
3681
|
-
var ICO =
|
|
3704
|
+
var ICO = React119__namespace.forwardRef(
|
|
3682
3705
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3683
3706
|
"svg",
|
|
3684
3707
|
{
|
|
@@ -3726,7 +3749,7 @@ var java_exports = {};
|
|
|
3726
3749
|
__export(java_exports, {
|
|
3727
3750
|
Java: () => Java
|
|
3728
3751
|
});
|
|
3729
|
-
var Java =
|
|
3752
|
+
var Java = React119__namespace.forwardRef(
|
|
3730
3753
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3731
3754
|
"svg",
|
|
3732
3755
|
{
|
|
@@ -3774,7 +3797,7 @@ var jpeg_exports = {};
|
|
|
3774
3797
|
__export(jpeg_exports, {
|
|
3775
3798
|
JPEG: () => JPEG
|
|
3776
3799
|
});
|
|
3777
|
-
var JPEG =
|
|
3800
|
+
var JPEG = React119__namespace.forwardRef(
|
|
3778
3801
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3779
3802
|
"svg",
|
|
3780
3803
|
{
|
|
@@ -3822,7 +3845,7 @@ var jpg_exports = {};
|
|
|
3822
3845
|
__export(jpg_exports, {
|
|
3823
3846
|
JPG: () => JPG
|
|
3824
3847
|
});
|
|
3825
|
-
var JPG =
|
|
3848
|
+
var JPG = React119__namespace.forwardRef(
|
|
3826
3849
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3827
3850
|
"svg",
|
|
3828
3851
|
{
|
|
@@ -3870,7 +3893,7 @@ var js_exports = {};
|
|
|
3870
3893
|
__export(js_exports, {
|
|
3871
3894
|
JS: () => JS
|
|
3872
3895
|
});
|
|
3873
|
-
var JS =
|
|
3896
|
+
var JS = React119__namespace.forwardRef(
|
|
3874
3897
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3875
3898
|
"svg",
|
|
3876
3899
|
{
|
|
@@ -3918,7 +3941,7 @@ var json_exports = {};
|
|
|
3918
3941
|
__export(json_exports, {
|
|
3919
3942
|
JSON: () => JSON
|
|
3920
3943
|
});
|
|
3921
|
-
var JSON =
|
|
3944
|
+
var JSON = React119__namespace.forwardRef(
|
|
3922
3945
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3923
3946
|
"svg",
|
|
3924
3947
|
{
|
|
@@ -3966,7 +3989,7 @@ var mov_exports = {};
|
|
|
3966
3989
|
__export(mov_exports, {
|
|
3967
3990
|
MOV: () => MOV
|
|
3968
3991
|
});
|
|
3969
|
-
var MOV =
|
|
3992
|
+
var MOV = React119__namespace.forwardRef(
|
|
3970
3993
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3971
3994
|
"svg",
|
|
3972
3995
|
{
|
|
@@ -4014,7 +4037,7 @@ var mp3_exports = {};
|
|
|
4014
4037
|
__export(mp3_exports, {
|
|
4015
4038
|
MP3: () => MP3
|
|
4016
4039
|
});
|
|
4017
|
-
var MP3 =
|
|
4040
|
+
var MP3 = React119__namespace.forwardRef(
|
|
4018
4041
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4019
4042
|
"svg",
|
|
4020
4043
|
{
|
|
@@ -4062,7 +4085,7 @@ var mp4_exports = {};
|
|
|
4062
4085
|
__export(mp4_exports, {
|
|
4063
4086
|
MP4: () => MP4
|
|
4064
4087
|
});
|
|
4065
|
-
var MP4 =
|
|
4088
|
+
var MP4 = React119__namespace.forwardRef(
|
|
4066
4089
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4067
4090
|
"svg",
|
|
4068
4091
|
{
|
|
@@ -4110,7 +4133,7 @@ var mpg_exports = {};
|
|
|
4110
4133
|
__export(mpg_exports, {
|
|
4111
4134
|
MPG: () => MPG
|
|
4112
4135
|
});
|
|
4113
|
-
var MPG =
|
|
4136
|
+
var MPG = React119__namespace.forwardRef(
|
|
4114
4137
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4115
4138
|
"svg",
|
|
4116
4139
|
{
|
|
@@ -4158,7 +4181,7 @@ var pdf_exports = {};
|
|
|
4158
4181
|
__export(pdf_exports, {
|
|
4159
4182
|
PDF: () => PDF
|
|
4160
4183
|
});
|
|
4161
|
-
var PDF =
|
|
4184
|
+
var PDF = React119__namespace.forwardRef(
|
|
4162
4185
|
({ ...props }, ref) => {
|
|
4163
4186
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4164
4187
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -4211,7 +4234,7 @@ var png_exports = {};
|
|
|
4211
4234
|
__export(png_exports, {
|
|
4212
4235
|
PNG: () => PNG
|
|
4213
4236
|
});
|
|
4214
|
-
var PNG =
|
|
4237
|
+
var PNG = React119__namespace.forwardRef(
|
|
4215
4238
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4216
4239
|
"svg",
|
|
4217
4240
|
{
|
|
@@ -4259,7 +4282,7 @@ var ppt_exports = {};
|
|
|
4259
4282
|
__export(ppt_exports, {
|
|
4260
4283
|
PPT: () => PPT
|
|
4261
4284
|
});
|
|
4262
|
-
var PPT =
|
|
4285
|
+
var PPT = React119__namespace.forwardRef(
|
|
4263
4286
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4264
4287
|
"svg",
|
|
4265
4288
|
{
|
|
@@ -4307,7 +4330,7 @@ var psd_exports = {};
|
|
|
4307
4330
|
__export(psd_exports, {
|
|
4308
4331
|
PSD: () => PSD
|
|
4309
4332
|
});
|
|
4310
|
-
var PSD =
|
|
4333
|
+
var PSD = React119__namespace.forwardRef(
|
|
4311
4334
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4312
4335
|
"svg",
|
|
4313
4336
|
{
|
|
@@ -4355,7 +4378,7 @@ var rar_exports = {};
|
|
|
4355
4378
|
__export(rar_exports, {
|
|
4356
4379
|
Rar: () => Rar
|
|
4357
4380
|
});
|
|
4358
|
-
var Rar =
|
|
4381
|
+
var Rar = React119__namespace.forwardRef(
|
|
4359
4382
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4360
4383
|
"svg",
|
|
4361
4384
|
{
|
|
@@ -4403,7 +4426,7 @@ var sketch_exports = {};
|
|
|
4403
4426
|
__export(sketch_exports, {
|
|
4404
4427
|
Sketch: () => Sketch
|
|
4405
4428
|
});
|
|
4406
|
-
var Sketch =
|
|
4429
|
+
var Sketch = React119__namespace.forwardRef(
|
|
4407
4430
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4408
4431
|
"svg",
|
|
4409
4432
|
{
|
|
@@ -4451,7 +4474,7 @@ var svg_exports = {};
|
|
|
4451
4474
|
__export(svg_exports, {
|
|
4452
4475
|
SVG: () => SVG
|
|
4453
4476
|
});
|
|
4454
|
-
var SVG =
|
|
4477
|
+
var SVG = React119__namespace.forwardRef(
|
|
4455
4478
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4456
4479
|
"svg",
|
|
4457
4480
|
{
|
|
@@ -4499,7 +4522,7 @@ var tiff_exports = {};
|
|
|
4499
4522
|
__export(tiff_exports, {
|
|
4500
4523
|
TIFF: () => TIFF
|
|
4501
4524
|
});
|
|
4502
|
-
var TIFF =
|
|
4525
|
+
var TIFF = React119__namespace.forwardRef(
|
|
4503
4526
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4504
4527
|
"svg",
|
|
4505
4528
|
{
|
|
@@ -4547,7 +4570,7 @@ var txt_exports = {};
|
|
|
4547
4570
|
__export(txt_exports, {
|
|
4548
4571
|
TXT: () => TXT
|
|
4549
4572
|
});
|
|
4550
|
-
var TXT =
|
|
4573
|
+
var TXT = React119__namespace.forwardRef(
|
|
4551
4574
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4552
4575
|
"svg",
|
|
4553
4576
|
{
|
|
@@ -4595,7 +4618,7 @@ var wav_exports = {};
|
|
|
4595
4618
|
__export(wav_exports, {
|
|
4596
4619
|
WAV: () => WAV
|
|
4597
4620
|
});
|
|
4598
|
-
var WAV =
|
|
4621
|
+
var WAV = React119__namespace.forwardRef(
|
|
4599
4622
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4600
4623
|
"svg",
|
|
4601
4624
|
{
|
|
@@ -4643,7 +4666,7 @@ var webp_exports = {};
|
|
|
4643
4666
|
__export(webp_exports, {
|
|
4644
4667
|
WEBP: () => WEBP
|
|
4645
4668
|
});
|
|
4646
|
-
var WEBP =
|
|
4669
|
+
var WEBP = React119__namespace.forwardRef(
|
|
4647
4670
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4648
4671
|
"svg",
|
|
4649
4672
|
{
|
|
@@ -4691,7 +4714,7 @@ var xls_exports = {};
|
|
|
4691
4714
|
__export(xls_exports, {
|
|
4692
4715
|
XLS: () => XLS
|
|
4693
4716
|
});
|
|
4694
|
-
var XLS =
|
|
4717
|
+
var XLS = React119__namespace.forwardRef(
|
|
4695
4718
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4696
4719
|
"svg",
|
|
4697
4720
|
{
|
|
@@ -4739,7 +4762,7 @@ var zip_exports = {};
|
|
|
4739
4762
|
__export(zip_exports, {
|
|
4740
4763
|
Zip: () => Zip
|
|
4741
4764
|
});
|
|
4742
|
-
var Zip =
|
|
4765
|
+
var Zip = React119__namespace.forwardRef(
|
|
4743
4766
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4744
4767
|
"svg",
|
|
4745
4768
|
{
|
|
@@ -4781,15 +4804,15 @@ var Zip = React118__namespace.forwardRef(
|
|
|
4781
4804
|
)
|
|
4782
4805
|
);
|
|
4783
4806
|
Zip.displayName = "Zip";
|
|
4784
|
-
var CarouselContext =
|
|
4807
|
+
var CarouselContext = React119__namespace.createContext(null);
|
|
4785
4808
|
function useCarousel() {
|
|
4786
|
-
const context =
|
|
4809
|
+
const context = React119__namespace.useContext(CarouselContext);
|
|
4787
4810
|
if (!context) {
|
|
4788
4811
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4789
4812
|
}
|
|
4790
4813
|
return context;
|
|
4791
4814
|
}
|
|
4792
|
-
var Carousel =
|
|
4815
|
+
var Carousel = React119__namespace.forwardRef(
|
|
4793
4816
|
({
|
|
4794
4817
|
orientation = "horizontal",
|
|
4795
4818
|
opts,
|
|
@@ -4806,10 +4829,10 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4806
4829
|
},
|
|
4807
4830
|
plugins
|
|
4808
4831
|
);
|
|
4809
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4810
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4811
|
-
const [slideCount, setSlideCount] =
|
|
4812
|
-
const onSelect =
|
|
4832
|
+
const [canScrollPrev, setCanScrollPrev] = React119__namespace.useState(false);
|
|
4833
|
+
const [canScrollNext, setCanScrollNext] = React119__namespace.useState(false);
|
|
4834
|
+
const [slideCount, setSlideCount] = React119__namespace.useState(0);
|
|
4835
|
+
const onSelect = React119__namespace.useCallback((api2) => {
|
|
4813
4836
|
if (!api2) {
|
|
4814
4837
|
return;
|
|
4815
4838
|
}
|
|
@@ -4817,13 +4840,13 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4817
4840
|
setCanScrollNext(api2.canScrollNext());
|
|
4818
4841
|
setSlideCount(api2.scrollSnapList().length);
|
|
4819
4842
|
}, []);
|
|
4820
|
-
const scrollPrev =
|
|
4843
|
+
const scrollPrev = React119__namespace.useCallback(() => {
|
|
4821
4844
|
api?.scrollPrev();
|
|
4822
4845
|
}, [api]);
|
|
4823
|
-
const scrollNext =
|
|
4846
|
+
const scrollNext = React119__namespace.useCallback(() => {
|
|
4824
4847
|
api?.scrollNext();
|
|
4825
4848
|
}, [api]);
|
|
4826
|
-
const handleKeyDown =
|
|
4849
|
+
const handleKeyDown = React119__namespace.useCallback(
|
|
4827
4850
|
(event) => {
|
|
4828
4851
|
if (event.key === "ArrowLeft") {
|
|
4829
4852
|
event.preventDefault();
|
|
@@ -4835,13 +4858,13 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4835
4858
|
},
|
|
4836
4859
|
[scrollPrev, scrollNext]
|
|
4837
4860
|
);
|
|
4838
|
-
|
|
4861
|
+
React119__namespace.useEffect(() => {
|
|
4839
4862
|
if (!api || !setApi) {
|
|
4840
4863
|
return;
|
|
4841
4864
|
}
|
|
4842
4865
|
setApi(api);
|
|
4843
4866
|
}, [api, setApi]);
|
|
4844
|
-
|
|
4867
|
+
React119__namespace.useEffect(() => {
|
|
4845
4868
|
if (!api) {
|
|
4846
4869
|
return;
|
|
4847
4870
|
}
|
|
@@ -4886,7 +4909,7 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4886
4909
|
}
|
|
4887
4910
|
);
|
|
4888
4911
|
Carousel.displayName = "Carousel";
|
|
4889
|
-
var CarouselContent =
|
|
4912
|
+
var CarouselContent = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4890
4913
|
const { carouselRef, orientation } = useCarousel();
|
|
4891
4914
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4892
4915
|
"div",
|
|
@@ -4902,7 +4925,7 @@ var CarouselContent = React118__namespace.forwardRef(({ className, ...props }, r
|
|
|
4902
4925
|
) });
|
|
4903
4926
|
});
|
|
4904
4927
|
CarouselContent.displayName = "CarouselContent";
|
|
4905
|
-
var CarouselItem =
|
|
4928
|
+
var CarouselItem = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4906
4929
|
const { orientation } = useCarousel();
|
|
4907
4930
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4908
4931
|
"div",
|
|
@@ -4920,7 +4943,7 @@ var CarouselItem = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4920
4943
|
);
|
|
4921
4944
|
});
|
|
4922
4945
|
CarouselItem.displayName = "CarouselItem";
|
|
4923
|
-
var CarouselPrevious =
|
|
4946
|
+
var CarouselPrevious = React119__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4924
4947
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4925
4948
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4926
4949
|
Button,
|
|
@@ -4942,7 +4965,7 @@ var CarouselPrevious = React118__namespace.forwardRef(({ className, variant = "o
|
|
|
4942
4965
|
);
|
|
4943
4966
|
});
|
|
4944
4967
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4945
|
-
var CarouselNext =
|
|
4968
|
+
var CarouselNext = React119__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4946
4969
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4947
4970
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4948
4971
|
Button,
|
|
@@ -4968,7 +4991,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4968
4991
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4969
4992
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4970
4993
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4971
|
-
var DialogOverlay =
|
|
4994
|
+
var DialogOverlay = React119__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4972
4995
|
DialogPrimitive__namespace.Overlay,
|
|
4973
4996
|
{
|
|
4974
4997
|
ref,
|
|
@@ -4985,7 +5008,7 @@ var DialogOverlay = React118__namespace.forwardRef(({ className, style, ...props
|
|
|
4985
5008
|
}
|
|
4986
5009
|
));
|
|
4987
5010
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4988
|
-
var DialogContent =
|
|
5011
|
+
var DialogContent = React119__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4989
5012
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4990
5013
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4991
5014
|
DialogPrimitive__namespace.Content,
|
|
@@ -5037,7 +5060,7 @@ var DialogFooter = ({
|
|
|
5037
5060
|
}
|
|
5038
5061
|
);
|
|
5039
5062
|
DialogFooter.displayName = "DialogFooter";
|
|
5040
|
-
var DialogTitle =
|
|
5063
|
+
var DialogTitle = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5041
5064
|
DialogPrimitive__namespace.Title,
|
|
5042
5065
|
{
|
|
5043
5066
|
ref,
|
|
@@ -5049,7 +5072,7 @@ var DialogTitle = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5049
5072
|
}
|
|
5050
5073
|
));
|
|
5051
5074
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5052
|
-
var DialogDescription =
|
|
5075
|
+
var DialogDescription = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5053
5076
|
DialogPrimitive__namespace.Description,
|
|
5054
5077
|
{
|
|
5055
5078
|
ref,
|
|
@@ -5062,7 +5085,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
5062
5085
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
5063
5086
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
5064
5087
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
5065
|
-
var SheetOverlay =
|
|
5088
|
+
var SheetOverlay = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5066
5089
|
DialogPrimitive__namespace.Overlay,
|
|
5067
5090
|
{
|
|
5068
5091
|
className: cn(
|
|
@@ -5090,7 +5113,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
5090
5113
|
}
|
|
5091
5114
|
}
|
|
5092
5115
|
);
|
|
5093
|
-
var SheetContent =
|
|
5116
|
+
var SheetContent = React119__namespace.forwardRef(
|
|
5094
5117
|
({
|
|
5095
5118
|
side = "right",
|
|
5096
5119
|
className,
|
|
@@ -5146,7 +5169,7 @@ var SheetFooter = ({
|
|
|
5146
5169
|
}
|
|
5147
5170
|
);
|
|
5148
5171
|
SheetFooter.displayName = "SheetFooter";
|
|
5149
|
-
var SheetTitle =
|
|
5172
|
+
var SheetTitle = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5150
5173
|
DialogPrimitive__namespace.Title,
|
|
5151
5174
|
{
|
|
5152
5175
|
ref,
|
|
@@ -5158,7 +5181,7 @@ var SheetTitle = React118__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
5158
5181
|
}
|
|
5159
5182
|
));
|
|
5160
5183
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5161
|
-
var SheetDescription =
|
|
5184
|
+
var SheetDescription = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5162
5185
|
DialogPrimitive__namespace.Description,
|
|
5163
5186
|
{
|
|
5164
5187
|
ref,
|
|
@@ -5195,10 +5218,10 @@ var defaultElements = {
|
|
|
5195
5218
|
"caption": "span",
|
|
5196
5219
|
"overline": "span"
|
|
5197
5220
|
};
|
|
5198
|
-
var Typography =
|
|
5221
|
+
var Typography = React119__namespace.default.forwardRef(
|
|
5199
5222
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5200
5223
|
const Component = as || defaultElements[variant];
|
|
5201
|
-
return
|
|
5224
|
+
return React119__namespace.default.createElement(
|
|
5202
5225
|
Component,
|
|
5203
5226
|
{
|
|
5204
5227
|
ref,
|
|
@@ -5210,46 +5233,46 @@ var Typography = React118__namespace.default.forwardRef(
|
|
|
5210
5233
|
}
|
|
5211
5234
|
);
|
|
5212
5235
|
Typography.displayName = "Typography";
|
|
5213
|
-
var Heading1 =
|
|
5236
|
+
var Heading1 = React119__namespace.default.forwardRef(
|
|
5214
5237
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
5215
5238
|
);
|
|
5216
5239
|
Heading1.displayName = "Heading1";
|
|
5217
|
-
var Heading2 =
|
|
5240
|
+
var Heading2 = React119__namespace.default.forwardRef(
|
|
5218
5241
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
5219
5242
|
);
|
|
5220
5243
|
Heading2.displayName = "Heading2";
|
|
5221
|
-
var Heading3 =
|
|
5244
|
+
var Heading3 = React119__namespace.default.forwardRef(
|
|
5222
5245
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
5223
5246
|
);
|
|
5224
5247
|
Heading3.displayName = "Heading3";
|
|
5225
|
-
var Heading4 =
|
|
5248
|
+
var Heading4 = React119__namespace.default.forwardRef(
|
|
5226
5249
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
5227
5250
|
);
|
|
5228
5251
|
Heading4.displayName = "Heading4";
|
|
5229
|
-
var Heading5 =
|
|
5252
|
+
var Heading5 = React119__namespace.default.forwardRef(
|
|
5230
5253
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
5231
5254
|
);
|
|
5232
5255
|
Heading5.displayName = "Heading5";
|
|
5233
|
-
var Heading6 =
|
|
5256
|
+
var Heading6 = React119__namespace.default.forwardRef(
|
|
5234
5257
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
5235
5258
|
);
|
|
5236
5259
|
Heading6.displayName = "Heading6";
|
|
5237
|
-
var Text =
|
|
5260
|
+
var Text = React119__namespace.default.forwardRef(
|
|
5238
5261
|
({ size = "default", ...props }, ref) => {
|
|
5239
5262
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5240
5263
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
5241
5264
|
}
|
|
5242
5265
|
);
|
|
5243
5266
|
Text.displayName = "Text";
|
|
5244
|
-
var Caption =
|
|
5267
|
+
var Caption = React119__namespace.default.forwardRef(
|
|
5245
5268
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
5246
5269
|
);
|
|
5247
5270
|
Caption.displayName = "Caption";
|
|
5248
|
-
var Overline =
|
|
5271
|
+
var Overline = React119__namespace.default.forwardRef(
|
|
5249
5272
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
5250
5273
|
);
|
|
5251
5274
|
Overline.displayName = "Overline";
|
|
5252
|
-
var Link =
|
|
5275
|
+
var Link = React119__namespace.default.forwardRef(
|
|
5253
5276
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5254
5277
|
const variantClass = `link-${variant}`;
|
|
5255
5278
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5264,11 +5287,11 @@ var Link = React118__namespace.default.forwardRef(
|
|
|
5264
5287
|
}
|
|
5265
5288
|
);
|
|
5266
5289
|
Link.displayName = "Link";
|
|
5267
|
-
var PaginationContext =
|
|
5290
|
+
var PaginationContext = React119__namespace.createContext({
|
|
5268
5291
|
size: "default"
|
|
5269
5292
|
});
|
|
5270
5293
|
var usePaginationContext = () => {
|
|
5271
|
-
const context =
|
|
5294
|
+
const context = React119__namespace.useContext(PaginationContext);
|
|
5272
5295
|
return context;
|
|
5273
5296
|
};
|
|
5274
5297
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5285,7 +5308,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5285
5308
|
}
|
|
5286
5309
|
}
|
|
5287
5310
|
);
|
|
5288
|
-
var Pagination =
|
|
5311
|
+
var Pagination = React119__namespace.forwardRef(
|
|
5289
5312
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5290
5313
|
"nav",
|
|
5291
5314
|
{
|
|
@@ -5298,7 +5321,7 @@ var Pagination = React118__namespace.forwardRef(
|
|
|
5298
5321
|
) })
|
|
5299
5322
|
);
|
|
5300
5323
|
Pagination.displayName = "Pagination";
|
|
5301
|
-
var PaginationContent =
|
|
5324
|
+
var PaginationContent = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5302
5325
|
"ul",
|
|
5303
5326
|
{
|
|
5304
5327
|
ref,
|
|
@@ -5307,7 +5330,7 @@ var PaginationContent = React118__namespace.forwardRef(({ className, ...props },
|
|
|
5307
5330
|
}
|
|
5308
5331
|
));
|
|
5309
5332
|
PaginationContent.displayName = "PaginationContent";
|
|
5310
|
-
var PaginationItem =
|
|
5333
|
+
var PaginationItem = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5311
5334
|
PaginationItem.displayName = "PaginationItem";
|
|
5312
5335
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5313
5336
|
[
|
|
@@ -5329,7 +5352,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5329
5352
|
}
|
|
5330
5353
|
}
|
|
5331
5354
|
);
|
|
5332
|
-
var PaginationLink =
|
|
5355
|
+
var PaginationLink = React119__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5333
5356
|
const { size } = usePaginationContext();
|
|
5334
5357
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5335
5358
|
"a",
|
|
@@ -5346,7 +5369,7 @@ var PaginationLink = React118__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5346
5369
|
);
|
|
5347
5370
|
});
|
|
5348
5371
|
PaginationLink.displayName = "PaginationLink";
|
|
5349
|
-
var PaginationPrevious =
|
|
5372
|
+
var PaginationPrevious = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5350
5373
|
const { size } = usePaginationContext();
|
|
5351
5374
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5352
5375
|
PaginationLink,
|
|
@@ -5367,7 +5390,7 @@ var PaginationPrevious = React118__namespace.forwardRef(({ className, ...props }
|
|
|
5367
5390
|
);
|
|
5368
5391
|
});
|
|
5369
5392
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5370
|
-
var PaginationNext =
|
|
5393
|
+
var PaginationNext = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5371
5394
|
const { size } = usePaginationContext();
|
|
5372
5395
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5373
5396
|
PaginationLink,
|
|
@@ -5388,7 +5411,7 @@ var PaginationNext = React118__namespace.forwardRef(({ className, ...props }, re
|
|
|
5388
5411
|
);
|
|
5389
5412
|
});
|
|
5390
5413
|
PaginationNext.displayName = "PaginationNext";
|
|
5391
|
-
var PaginationEllipsis =
|
|
5414
|
+
var PaginationEllipsis = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5392
5415
|
const { size } = usePaginationContext();
|
|
5393
5416
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5394
5417
|
"span",
|
|
@@ -5412,7 +5435,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5412
5435
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5413
5436
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5414
5437
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5415
|
-
var DropdownMenuSubTrigger =
|
|
5438
|
+
var DropdownMenuSubTrigger = React119__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5416
5439
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5417
5440
|
{
|
|
5418
5441
|
ref,
|
|
@@ -5429,7 +5452,7 @@ var DropdownMenuSubTrigger = React118__namespace.forwardRef(({ className, inset,
|
|
|
5429
5452
|
}
|
|
5430
5453
|
));
|
|
5431
5454
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5432
|
-
var DropdownMenuSubContent =
|
|
5455
|
+
var DropdownMenuSubContent = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5433
5456
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5434
5457
|
{
|
|
5435
5458
|
ref,
|
|
@@ -5441,7 +5464,7 @@ var DropdownMenuSubContent = React118__namespace.forwardRef(({ className, ...pro
|
|
|
5441
5464
|
}
|
|
5442
5465
|
));
|
|
5443
5466
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5444
|
-
var DropdownMenuContent =
|
|
5467
|
+
var DropdownMenuContent = React119__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5445
5468
|
DropdownMenuPrimitive__namespace.Content,
|
|
5446
5469
|
{
|
|
5447
5470
|
ref,
|
|
@@ -5455,7 +5478,7 @@ var DropdownMenuContent = React118__namespace.forwardRef(({ className, sideOffse
|
|
|
5455
5478
|
}
|
|
5456
5479
|
) }));
|
|
5457
5480
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5458
|
-
var DropdownMenuItem =
|
|
5481
|
+
var DropdownMenuItem = React119__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5459
5482
|
DropdownMenuPrimitive__namespace.Item,
|
|
5460
5483
|
{
|
|
5461
5484
|
ref,
|
|
@@ -5468,7 +5491,7 @@ var DropdownMenuItem = React118__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5468
5491
|
}
|
|
5469
5492
|
));
|
|
5470
5493
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5471
|
-
var DropdownMenuCheckboxItem =
|
|
5494
|
+
var DropdownMenuCheckboxItem = React119__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5472
5495
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5473
5496
|
{
|
|
5474
5497
|
ref,
|
|
@@ -5485,7 +5508,7 @@ var DropdownMenuCheckboxItem = React118__namespace.forwardRef(({ className, chil
|
|
|
5485
5508
|
}
|
|
5486
5509
|
));
|
|
5487
5510
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5488
|
-
var DropdownMenuRadioItem =
|
|
5511
|
+
var DropdownMenuRadioItem = React119__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5489
5512
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5490
5513
|
{
|
|
5491
5514
|
ref,
|
|
@@ -5501,7 +5524,7 @@ var DropdownMenuRadioItem = React118__namespace.forwardRef(({ className, childre
|
|
|
5501
5524
|
}
|
|
5502
5525
|
));
|
|
5503
5526
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5504
|
-
var DropdownMenuLabel =
|
|
5527
|
+
var DropdownMenuLabel = React119__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5505
5528
|
DropdownMenuPrimitive__namespace.Label,
|
|
5506
5529
|
{
|
|
5507
5530
|
ref,
|
|
@@ -5514,7 +5537,7 @@ var DropdownMenuLabel = React118__namespace.forwardRef(({ className, inset, ...p
|
|
|
5514
5537
|
}
|
|
5515
5538
|
));
|
|
5516
5539
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5517
|
-
var DropdownMenuSeparator =
|
|
5540
|
+
var DropdownMenuSeparator = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5518
5541
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5519
5542
|
{
|
|
5520
5543
|
ref,
|
|
@@ -5536,7 +5559,7 @@ var DropdownMenuShortcut = ({
|
|
|
5536
5559
|
);
|
|
5537
5560
|
};
|
|
5538
5561
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5539
|
-
var TableWrapper =
|
|
5562
|
+
var TableWrapper = React119__namespace.forwardRef(
|
|
5540
5563
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5541
5564
|
"div",
|
|
5542
5565
|
{
|
|
@@ -5551,7 +5574,7 @@ var TableWrapper = React118__namespace.forwardRef(
|
|
|
5551
5574
|
)
|
|
5552
5575
|
);
|
|
5553
5576
|
TableWrapper.displayName = "TableWrapper";
|
|
5554
|
-
var Table =
|
|
5577
|
+
var Table = React119__namespace.forwardRef(
|
|
5555
5578
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5556
5579
|
"div",
|
|
5557
5580
|
{
|
|
@@ -5573,7 +5596,7 @@ var Table = React118__namespace.forwardRef(
|
|
|
5573
5596
|
)
|
|
5574
5597
|
);
|
|
5575
5598
|
Table.displayName = "Table";
|
|
5576
|
-
var TableHeader =
|
|
5599
|
+
var TableHeader = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5577
5600
|
"thead",
|
|
5578
5601
|
{
|
|
5579
5602
|
ref,
|
|
@@ -5586,7 +5609,7 @@ var TableHeader = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5586
5609
|
}
|
|
5587
5610
|
));
|
|
5588
5611
|
TableHeader.displayName = "TableHeader";
|
|
5589
|
-
var TableBody =
|
|
5612
|
+
var TableBody = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5590
5613
|
"tbody",
|
|
5591
5614
|
{
|
|
5592
5615
|
ref,
|
|
@@ -5599,7 +5622,7 @@ var TableBody = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5599
5622
|
}
|
|
5600
5623
|
));
|
|
5601
5624
|
TableBody.displayName = "TableBody";
|
|
5602
|
-
var TableFooter =
|
|
5625
|
+
var TableFooter = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5603
5626
|
"tfoot",
|
|
5604
5627
|
{
|
|
5605
5628
|
ref,
|
|
@@ -5612,7 +5635,7 @@ var TableFooter = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5612
5635
|
}
|
|
5613
5636
|
));
|
|
5614
5637
|
TableFooter.displayName = "TableFooter";
|
|
5615
|
-
var TableRow =
|
|
5638
|
+
var TableRow = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5616
5639
|
"tr",
|
|
5617
5640
|
{
|
|
5618
5641
|
ref,
|
|
@@ -5630,7 +5653,7 @@ var TableRow = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5630
5653
|
}
|
|
5631
5654
|
));
|
|
5632
5655
|
TableRow.displayName = "TableRow";
|
|
5633
|
-
var TableHead =
|
|
5656
|
+
var TableHead = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5634
5657
|
"th",
|
|
5635
5658
|
{
|
|
5636
5659
|
ref,
|
|
@@ -5643,7 +5666,7 @@ var TableHead = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5643
5666
|
}
|
|
5644
5667
|
));
|
|
5645
5668
|
TableHead.displayName = "TableHead";
|
|
5646
|
-
var TableCell =
|
|
5669
|
+
var TableCell = React119__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5647
5670
|
"td",
|
|
5648
5671
|
{
|
|
5649
5672
|
ref,
|
|
@@ -5663,7 +5686,7 @@ var TableCell = React118__namespace.forwardRef(({ className, label, ...props },
|
|
|
5663
5686
|
}
|
|
5664
5687
|
));
|
|
5665
5688
|
TableCell.displayName = "TableCell";
|
|
5666
|
-
var TableCaption =
|
|
5689
|
+
var TableCaption = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5667
5690
|
"caption",
|
|
5668
5691
|
{
|
|
5669
5692
|
ref,
|
|
@@ -5676,7 +5699,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5676
5699
|
var Select = SelectPrimitive__namespace.Root;
|
|
5677
5700
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5678
5701
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5679
|
-
var SelectTrigger =
|
|
5702
|
+
var SelectTrigger = React119__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5680
5703
|
SelectPrimitive__namespace.Trigger,
|
|
5681
5704
|
{
|
|
5682
5705
|
ref,
|
|
@@ -5692,7 +5715,7 @@ var SelectTrigger = React118__namespace.forwardRef(({ className, children, ...pr
|
|
|
5692
5715
|
}
|
|
5693
5716
|
));
|
|
5694
5717
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5695
|
-
var SelectScrollUpButton =
|
|
5718
|
+
var SelectScrollUpButton = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5696
5719
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5697
5720
|
{
|
|
5698
5721
|
ref,
|
|
@@ -5705,7 +5728,7 @@ var SelectScrollUpButton = React118__namespace.forwardRef(({ className, ...props
|
|
|
5705
5728
|
}
|
|
5706
5729
|
));
|
|
5707
5730
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5708
|
-
var SelectScrollDownButton =
|
|
5731
|
+
var SelectScrollDownButton = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5709
5732
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5710
5733
|
{
|
|
5711
5734
|
ref,
|
|
@@ -5718,7 +5741,7 @@ var SelectScrollDownButton = React118__namespace.forwardRef(({ className, ...pro
|
|
|
5718
5741
|
}
|
|
5719
5742
|
));
|
|
5720
5743
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5721
|
-
var SelectContent =
|
|
5744
|
+
var SelectContent = React119__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5722
5745
|
SelectPrimitive__namespace.Content,
|
|
5723
5746
|
{
|
|
5724
5747
|
ref,
|
|
@@ -5745,7 +5768,7 @@ var SelectContent = React118__namespace.forwardRef(({ className, children, posit
|
|
|
5745
5768
|
}
|
|
5746
5769
|
) }));
|
|
5747
5770
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5748
|
-
var SelectLabel =
|
|
5771
|
+
var SelectLabel = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5749
5772
|
SelectPrimitive__namespace.Label,
|
|
5750
5773
|
{
|
|
5751
5774
|
ref,
|
|
@@ -5754,7 +5777,7 @@ var SelectLabel = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5754
5777
|
}
|
|
5755
5778
|
));
|
|
5756
5779
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5757
|
-
var SelectItem =
|
|
5780
|
+
var SelectItem = React119__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5758
5781
|
SelectPrimitive__namespace.Item,
|
|
5759
5782
|
{
|
|
5760
5783
|
ref,
|
|
@@ -5770,7 +5793,7 @@ var SelectItem = React118__namespace.forwardRef(({ className, children, ...props
|
|
|
5770
5793
|
}
|
|
5771
5794
|
));
|
|
5772
5795
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5773
|
-
var SelectSeparator =
|
|
5796
|
+
var SelectSeparator = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5774
5797
|
SelectPrimitive__namespace.Separator,
|
|
5775
5798
|
{
|
|
5776
5799
|
ref,
|
|
@@ -5779,7 +5802,7 @@ var SelectSeparator = React118__namespace.forwardRef(({ className, ...props }, r
|
|
|
5779
5802
|
}
|
|
5780
5803
|
));
|
|
5781
5804
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5782
|
-
var Label3 =
|
|
5805
|
+
var Label3 = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5783
5806
|
LabelPrimitive__namespace.Root,
|
|
5784
5807
|
{
|
|
5785
5808
|
ref,
|
|
@@ -5791,7 +5814,7 @@ var Label3 = React118__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5791
5814
|
}
|
|
5792
5815
|
));
|
|
5793
5816
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5794
|
-
var Switch =
|
|
5817
|
+
var Switch = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5795
5818
|
SwitchPrimitives__namespace.Root,
|
|
5796
5819
|
{
|
|
5797
5820
|
className: cn(
|
|
@@ -5804,7 +5827,7 @@ var Switch = React118__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5804
5827
|
}
|
|
5805
5828
|
));
|
|
5806
5829
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5807
|
-
var RadioGroup2 =
|
|
5830
|
+
var RadioGroup2 = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5808
5831
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5809
5832
|
RadioGroupPrimitive__namespace.Root,
|
|
5810
5833
|
{
|
|
@@ -5815,7 +5838,7 @@ var RadioGroup2 = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5815
5838
|
);
|
|
5816
5839
|
});
|
|
5817
5840
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5818
|
-
var RadioGroupItem =
|
|
5841
|
+
var RadioGroupItem = React119__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5819
5842
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5820
5843
|
RadioGroupPrimitive__namespace.Item,
|
|
5821
5844
|
{
|
|
@@ -5830,7 +5853,7 @@ var RadioGroupItem = React118__namespace.forwardRef(({ className, ...props }, re
|
|
|
5830
5853
|
);
|
|
5831
5854
|
});
|
|
5832
5855
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5833
|
-
var Checkbox =
|
|
5856
|
+
var Checkbox = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5834
5857
|
CheckboxPrimitive__namespace.Root,
|
|
5835
5858
|
{
|
|
5836
5859
|
ref,
|
|
@@ -5843,7 +5866,7 @@ var Checkbox = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5843
5866
|
}
|
|
5844
5867
|
));
|
|
5845
5868
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5846
|
-
var MultiSelect =
|
|
5869
|
+
var MultiSelect = React119__namespace.forwardRef(
|
|
5847
5870
|
({
|
|
5848
5871
|
options,
|
|
5849
5872
|
value = [],
|
|
@@ -5856,8 +5879,8 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5856
5879
|
maxDisplayItems = 3,
|
|
5857
5880
|
...props
|
|
5858
5881
|
}, ref) => {
|
|
5859
|
-
const [open, setOpen] =
|
|
5860
|
-
const handleSelectAll =
|
|
5882
|
+
const [open, setOpen] = React119__namespace.useState(false);
|
|
5883
|
+
const handleSelectAll = React119__namespace.useCallback(() => {
|
|
5861
5884
|
if (!onValueChange) return;
|
|
5862
5885
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5863
5886
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5870,7 +5893,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5870
5893
|
onValueChange(allValues);
|
|
5871
5894
|
}
|
|
5872
5895
|
}, [options, value, onValueChange]);
|
|
5873
|
-
const handleItemToggle =
|
|
5896
|
+
const handleItemToggle = React119__namespace.useCallback(
|
|
5874
5897
|
(itemValue) => {
|
|
5875
5898
|
if (!onValueChange) return;
|
|
5876
5899
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5878,7 +5901,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5878
5901
|
},
|
|
5879
5902
|
[value, onValueChange]
|
|
5880
5903
|
);
|
|
5881
|
-
const displayValue =
|
|
5904
|
+
const displayValue = React119__namespace.useMemo(() => {
|
|
5882
5905
|
if (value.length === 0) {
|
|
5883
5906
|
return placeholder;
|
|
5884
5907
|
}
|
|
@@ -5999,7 +6022,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5999
6022
|
}
|
|
6000
6023
|
);
|
|
6001
6024
|
MultiSelect.displayName = "MultiSelect";
|
|
6002
|
-
var Slider =
|
|
6025
|
+
var Slider = React119__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
6003
6026
|
SliderPrimitive__namespace.Root,
|
|
6004
6027
|
{
|
|
6005
6028
|
ref,
|
|
@@ -6049,8 +6072,8 @@ function CalendarDayButton({
|
|
|
6049
6072
|
...props
|
|
6050
6073
|
}) {
|
|
6051
6074
|
const defaultClassNames = reactDayPicker.getDefaultClassNames();
|
|
6052
|
-
const ref =
|
|
6053
|
-
|
|
6075
|
+
const ref = React119__namespace.useRef(null);
|
|
6076
|
+
React119__namespace.useEffect(() => {
|
|
6054
6077
|
if (modifiers.focused) ref.current?.focus();
|
|
6055
6078
|
}, [modifiers.focused]);
|
|
6056
6079
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -6181,7 +6204,7 @@ function Calendar({
|
|
|
6181
6204
|
Calendar.displayName = "Calendar";
|
|
6182
6205
|
var Popover = PopoverPrimitive__namespace.Root;
|
|
6183
6206
|
var PopoverTrigger = PopoverPrimitive__namespace.Trigger;
|
|
6184
|
-
var PopoverContent =
|
|
6207
|
+
var PopoverContent = React119__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6185
6208
|
PopoverPrimitive__namespace.Content,
|
|
6186
6209
|
{
|
|
6187
6210
|
ref,
|
|
@@ -6687,6 +6710,7 @@ exports.ExeIcon = exe_exports;
|
|
|
6687
6710
|
exports.FacebookLogo = FacebookLogo;
|
|
6688
6711
|
exports.Fig = Fig;
|
|
6689
6712
|
exports.FigIcon = fig_exports;
|
|
6713
|
+
exports.FloppyDiskIcon = FloppyDiskIcon;
|
|
6690
6714
|
exports.FolderIcon = FolderIcon;
|
|
6691
6715
|
exports.FolderSimpleLockIcon = FolderSimpleLockIcon;
|
|
6692
6716
|
exports.GIF = GIF;
|