luaniverse 4.2.0 → 4.2.2
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 +307 -233
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +305 -234
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +4 -6
- package/dist/safelist.txt +3 -7
- 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 React121 = 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 React121__namespace = /*#__PURE__*/_interopNamespace(React121);
|
|
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 = React121__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 = React121__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 = React121__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: React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
707
|
+
const inputOTPContext = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__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 = React121__namespace.forwardRef(
|
|
2469
2492
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2470
2493
|
"svg",
|
|
2471
2494
|
{
|
|
@@ -2487,7 +2510,51 @@ var PlugsRegular = React118__namespace.forwardRef(
|
|
|
2487
2510
|
)
|
|
2488
2511
|
);
|
|
2489
2512
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2490
|
-
var
|
|
2513
|
+
var ShieldTickIcon = React121__namespace.forwardRef(
|
|
2514
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2515
|
+
"svg",
|
|
2516
|
+
{
|
|
2517
|
+
ref,
|
|
2518
|
+
width: size,
|
|
2519
|
+
height: size,
|
|
2520
|
+
viewBox: "0 0 24 24",
|
|
2521
|
+
fill: "none",
|
|
2522
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2523
|
+
...props,
|
|
2524
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2525
|
+
"path",
|
|
2526
|
+
{
|
|
2527
|
+
d: "M19.5 3.75H4.5C4.10218 3.75 3.72064 3.90804 3.43934 4.18934C3.15804 4.47064 3 4.85218 3 5.25V10.5C3 15.4425 5.3925 18.4378 7.39969 20.0803C9.56156 21.8484 11.7122 22.4484 11.8059 22.4738C11.9348 22.5088 12.0708 22.5088 12.1997 22.4738C12.2934 22.4484 14.4413 21.8484 16.6059 20.0803C18.6075 18.4378 21 15.4425 21 10.5V5.25C21 4.85218 20.842 4.47064 20.5607 4.18934C20.2794 3.90804 19.8978 3.75 19.5 3.75ZM19.5 10.5C19.5 13.9753 18.2194 16.7962 15.6937 18.8831C14.5943 19.7885 13.344 20.493 12 20.9644C10.6736 20.5012 9.4387 19.8092 8.35125 18.9197C5.79563 16.8291 4.5 13.9969 4.5 10.5V5.25H19.5V10.5ZM7.71937 13.2806C7.57864 13.1399 7.49958 12.949 7.49958 12.75C7.49958 12.551 7.57864 12.3601 7.71937 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44902 11.9996 8.63989 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8485 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1217 15.6557 10.039 15.6004 9.96937 15.5306L7.71937 13.2806Z",
|
|
2528
|
+
fill: props.color || "currentColor"
|
|
2529
|
+
}
|
|
2530
|
+
)
|
|
2531
|
+
}
|
|
2532
|
+
)
|
|
2533
|
+
);
|
|
2534
|
+
ShieldTickIcon.displayName = "ShieldTickIcon";
|
|
2535
|
+
var ShoppingBagOpenIcon = React121__namespace.forwardRef(
|
|
2536
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2537
|
+
"svg",
|
|
2538
|
+
{
|
|
2539
|
+
ref,
|
|
2540
|
+
width: size,
|
|
2541
|
+
height: size,
|
|
2542
|
+
viewBox: "0 0 24 24",
|
|
2543
|
+
fill: "none",
|
|
2544
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2545
|
+
...props,
|
|
2546
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2547
|
+
"path",
|
|
2548
|
+
{
|
|
2549
|
+
d: "M20.25 3.75H3.75C3.35218 3.75 2.97064 3.90804 2.68934 4.18934C2.40804 4.47064 2.25 4.85218 2.25 5.25V18.75C2.25 19.1478 2.40804 19.5294 2.68934 19.8107C2.97064 20.092 3.35218 20.25 3.75 20.25H20.25C20.6478 20.25 21.0294 20.092 21.3107 19.8107C21.592 19.5294 21.75 19.1478 21.75 18.75V5.25C21.75 4.85218 21.592 4.47064 21.3107 4.18934C21.0294 3.90804 20.6478 3.75 20.25 3.75ZM20.25 5.25V6.75H3.75V5.25H20.25ZM20.25 18.75H3.75V8.25H20.25V18.75ZM16.5 10.5C16.5 11.6935 16.0259 12.8381 15.182 13.682C14.3381 14.5259 13.1935 15 12 15C10.8065 15 9.66193 14.5259 8.81802 13.682C7.97411 12.8381 7.5 11.6935 7.5 10.5C7.5 10.3011 7.57902 10.1103 7.71967 9.96967C7.86032 9.82902 8.05109 9.75 8.25 9.75C8.44891 9.75 8.63968 9.82902 8.78033 9.96967C8.92098 10.1103 9 10.3011 9 10.5C9 11.2956 9.31607 12.0587 9.87868 12.6213C10.4413 13.1839 11.2044 13.5 12 13.5C12.7956 13.5 13.5587 13.1839 14.1213 12.6213C14.6839 12.0587 15 11.2956 15 10.5C15 10.3011 15.079 10.1103 15.2197 9.96967C15.3603 9.82902 15.5511 9.75 15.75 9.75C15.9489 9.75 16.1397 9.82902 16.2803 9.96967C16.421 10.1103 16.5 10.3011 16.5 10.5Z",
|
|
2550
|
+
fill: props.color || "currentColor"
|
|
2551
|
+
}
|
|
2552
|
+
)
|
|
2553
|
+
}
|
|
2554
|
+
)
|
|
2555
|
+
);
|
|
2556
|
+
ShoppingBagOpenIcon.displayName = "ShoppingBagOpenIcon";
|
|
2557
|
+
var ShoppingCartIcon = React121__namespace.forwardRef(
|
|
2491
2558
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2492
2559
|
"svg",
|
|
2493
2560
|
{
|
|
@@ -2509,7 +2576,7 @@ var ShoppingCartIcon = React118__namespace.forwardRef(
|
|
|
2509
2576
|
)
|
|
2510
2577
|
);
|
|
2511
2578
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2512
|
-
var Plus =
|
|
2579
|
+
var Plus = React121__namespace.forwardRef(
|
|
2513
2580
|
({ size = 20, ...props }, ref) => {
|
|
2514
2581
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2515
2582
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2538,7 +2605,7 @@ var Plus = React118__namespace.forwardRef(
|
|
|
2538
2605
|
}
|
|
2539
2606
|
);
|
|
2540
2607
|
Plus.displayName = "Plus";
|
|
2541
|
-
var RecordIcon =
|
|
2608
|
+
var RecordIcon = React121__namespace.forwardRef(
|
|
2542
2609
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2543
2610
|
"svg",
|
|
2544
2611
|
{
|
|
@@ -2560,7 +2627,7 @@ var RecordIcon = React118__namespace.forwardRef(
|
|
|
2560
2627
|
)
|
|
2561
2628
|
);
|
|
2562
2629
|
RecordIcon.displayName = "RecordIcon";
|
|
2563
|
-
var SidebarSimple =
|
|
2630
|
+
var SidebarSimple = React121__namespace.forwardRef(
|
|
2564
2631
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2565
2632
|
"svg",
|
|
2566
2633
|
{
|
|
@@ -2582,7 +2649,7 @@ var SidebarSimple = React118__namespace.forwardRef(
|
|
|
2582
2649
|
)
|
|
2583
2650
|
);
|
|
2584
2651
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2585
|
-
var SignOut =
|
|
2652
|
+
var SignOut = React121__namespace.forwardRef(
|
|
2586
2653
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2587
2654
|
"svg",
|
|
2588
2655
|
{
|
|
@@ -2604,7 +2671,7 @@ var SignOut = React118__namespace.forwardRef(
|
|
|
2604
2671
|
)
|
|
2605
2672
|
);
|
|
2606
2673
|
SignOut.displayName = "SignOut";
|
|
2607
|
-
var Storefront =
|
|
2674
|
+
var Storefront = React121__namespace.forwardRef(
|
|
2608
2675
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2609
2676
|
"svg",
|
|
2610
2677
|
{
|
|
@@ -2626,7 +2693,7 @@ var Storefront = React118__namespace.forwardRef(
|
|
|
2626
2693
|
)
|
|
2627
2694
|
);
|
|
2628
2695
|
Storefront.displayName = "Storefront";
|
|
2629
|
-
var Tag =
|
|
2696
|
+
var Tag = React121__namespace.forwardRef(
|
|
2630
2697
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2631
2698
|
"svg",
|
|
2632
2699
|
{
|
|
@@ -2648,7 +2715,7 @@ var Tag = React118__namespace.forwardRef(
|
|
|
2648
2715
|
)
|
|
2649
2716
|
);
|
|
2650
2717
|
Tag.displayName = "Tag";
|
|
2651
|
-
var Ticket =
|
|
2718
|
+
var Ticket = React121__namespace.forwardRef(
|
|
2652
2719
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2653
2720
|
"svg",
|
|
2654
2721
|
{
|
|
@@ -2670,7 +2737,7 @@ var Ticket = React118__namespace.forwardRef(
|
|
|
2670
2737
|
)
|
|
2671
2738
|
);
|
|
2672
2739
|
Ticket.displayName = "Ticket";
|
|
2673
|
-
var Trash =
|
|
2740
|
+
var Trash = React121__namespace.forwardRef(
|
|
2674
2741
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2675
2742
|
"svg",
|
|
2676
2743
|
{
|
|
@@ -2692,7 +2759,7 @@ var Trash = React118__namespace.forwardRef(
|
|
|
2692
2759
|
)
|
|
2693
2760
|
);
|
|
2694
2761
|
Trash.displayName = "Trash";
|
|
2695
|
-
var UserCircle =
|
|
2762
|
+
var UserCircle = React121__namespace.forwardRef(
|
|
2696
2763
|
({ size = 24, ...props }, ref) => {
|
|
2697
2764
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2698
2765
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2721,7 +2788,7 @@ var UserCircle = React118__namespace.forwardRef(
|
|
|
2721
2788
|
}
|
|
2722
2789
|
);
|
|
2723
2790
|
UserCircle.displayName = "UserCircle";
|
|
2724
|
-
var UserIcon =
|
|
2791
|
+
var UserIcon = React121__namespace.forwardRef(
|
|
2725
2792
|
({ size = 24, ...props }, ref) => {
|
|
2726
2793
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2727
2794
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2750,7 +2817,7 @@ var UserIcon = React118__namespace.forwardRef(
|
|
|
2750
2817
|
}
|
|
2751
2818
|
);
|
|
2752
2819
|
UserIcon.displayName = "UserIcon";
|
|
2753
|
-
var Users =
|
|
2820
|
+
var Users = React121__namespace.forwardRef(
|
|
2754
2821
|
({ size = 20, ...props }, ref) => {
|
|
2755
2822
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2756
2823
|
props,
|
|
@@ -2779,7 +2846,7 @@ var Users = React118__namespace.forwardRef(
|
|
|
2779
2846
|
}
|
|
2780
2847
|
);
|
|
2781
2848
|
Users.displayName = "Users";
|
|
2782
|
-
var VideoCamera =
|
|
2849
|
+
var VideoCamera = React121__namespace.forwardRef(
|
|
2783
2850
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2784
2851
|
"svg",
|
|
2785
2852
|
{
|
|
@@ -2801,7 +2868,7 @@ var VideoCamera = React118__namespace.forwardRef(
|
|
|
2801
2868
|
)
|
|
2802
2869
|
);
|
|
2803
2870
|
VideoCamera.displayName = "VideoCamera";
|
|
2804
|
-
var WhatsAppLogo =
|
|
2871
|
+
var WhatsAppLogo = React121__namespace.forwardRef(
|
|
2805
2872
|
({ size = 20, ...props }, ref) => {
|
|
2806
2873
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2807
2874
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2830,7 +2897,7 @@ var WhatsAppLogo = React118__namespace.forwardRef(
|
|
|
2830
2897
|
}
|
|
2831
2898
|
);
|
|
2832
2899
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2833
|
-
var WarningOctagon =
|
|
2900
|
+
var WarningOctagon = React121__namespace.forwardRef(
|
|
2834
2901
|
({ size = 20, ...props }, ref) => {
|
|
2835
2902
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2836
2903
|
props,
|
|
@@ -2859,7 +2926,7 @@ var WarningOctagon = React118__namespace.forwardRef(
|
|
|
2859
2926
|
}
|
|
2860
2927
|
);
|
|
2861
2928
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2862
|
-
var WarningTriangle =
|
|
2929
|
+
var WarningTriangle = React121__namespace.forwardRef(
|
|
2863
2930
|
({ size = 20, ...props }, ref) => {
|
|
2864
2931
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2865
2932
|
props,
|
|
@@ -2888,7 +2955,7 @@ var WarningTriangle = React118__namespace.forwardRef(
|
|
|
2888
2955
|
}
|
|
2889
2956
|
);
|
|
2890
2957
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2891
|
-
var Waveform =
|
|
2958
|
+
var Waveform = React121__namespace.forwardRef(
|
|
2892
2959
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2893
2960
|
"svg",
|
|
2894
2961
|
{
|
|
@@ -2910,7 +2977,7 @@ var Waveform = React118__namespace.forwardRef(
|
|
|
2910
2977
|
)
|
|
2911
2978
|
);
|
|
2912
2979
|
Waveform.displayName = "Waveform";
|
|
2913
|
-
var WrenchIcon =
|
|
2980
|
+
var WrenchIcon = React121__namespace.forwardRef(
|
|
2914
2981
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2915
2982
|
"svg",
|
|
2916
2983
|
{
|
|
@@ -2932,7 +2999,7 @@ var WrenchIcon = React118__namespace.forwardRef(
|
|
|
2932
2999
|
)
|
|
2933
3000
|
);
|
|
2934
3001
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2935
|
-
var XIcon =
|
|
3002
|
+
var XIcon = React121__namespace.forwardRef(
|
|
2936
3003
|
({ size = 24, ...props }, ref) => {
|
|
2937
3004
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2938
3005
|
props,
|
|
@@ -2963,25 +3030,32 @@ var XIcon = React118__namespace.forwardRef(
|
|
|
2963
3030
|
}
|
|
2964
3031
|
);
|
|
2965
3032
|
XIcon.displayName = "XIcon";
|
|
2966
|
-
var DownloadIcon =
|
|
3033
|
+
var DownloadIcon = React121__namespace.forwardRef(
|
|
2967
3034
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2968
3035
|
"svg",
|
|
2969
3036
|
{
|
|
2970
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2971
3037
|
ref,
|
|
2972
3038
|
width: size,
|
|
2973
3039
|
height: size,
|
|
2974
|
-
fill: "none",
|
|
2975
3040
|
viewBox: "0 0 24 24",
|
|
3041
|
+
fill: "none",
|
|
3042
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3043
|
+
...props,
|
|
2976
3044
|
children: [
|
|
2977
3045
|
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Download" }),
|
|
2978
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3046
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3047
|
+
"path",
|
|
3048
|
+
{
|
|
3049
|
+
fill: props.color || "currentColor",
|
|
3050
|
+
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"
|
|
3051
|
+
}
|
|
3052
|
+
)
|
|
2979
3053
|
]
|
|
2980
3054
|
}
|
|
2981
3055
|
)
|
|
2982
3056
|
);
|
|
2983
3057
|
DownloadIcon.displayName = "DownloadIcon";
|
|
2984
|
-
var TextIcon =
|
|
3058
|
+
var TextIcon = React121__namespace.forwardRef(
|
|
2985
3059
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2986
3060
|
"svg",
|
|
2987
3061
|
{
|
|
@@ -3006,7 +3080,7 @@ var aep_exports = {};
|
|
|
3006
3080
|
__export(aep_exports, {
|
|
3007
3081
|
AEP: () => AEP
|
|
3008
3082
|
});
|
|
3009
|
-
var AEP =
|
|
3083
|
+
var AEP = React121__namespace.forwardRef(
|
|
3010
3084
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3011
3085
|
"svg",
|
|
3012
3086
|
{
|
|
@@ -3054,7 +3128,7 @@ var ai_exports = {};
|
|
|
3054
3128
|
__export(ai_exports, {
|
|
3055
3129
|
AI: () => AI
|
|
3056
3130
|
});
|
|
3057
|
-
var AI =
|
|
3131
|
+
var AI = React121__namespace.forwardRef(
|
|
3058
3132
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3059
3133
|
"svg",
|
|
3060
3134
|
{
|
|
@@ -3102,7 +3176,7 @@ var avi_exports = {};
|
|
|
3102
3176
|
__export(avi_exports, {
|
|
3103
3177
|
AVI: () => AVI
|
|
3104
3178
|
});
|
|
3105
|
-
var AVI =
|
|
3179
|
+
var AVI = React121__namespace.forwardRef(
|
|
3106
3180
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3107
3181
|
"svg",
|
|
3108
3182
|
{
|
|
@@ -3150,7 +3224,7 @@ var blend_exports = {};
|
|
|
3150
3224
|
__export(blend_exports, {
|
|
3151
3225
|
Blend: () => Blend
|
|
3152
3226
|
});
|
|
3153
|
-
var Blend =
|
|
3227
|
+
var Blend = React121__namespace.forwardRef(
|
|
3154
3228
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3155
3229
|
"svg",
|
|
3156
3230
|
{
|
|
@@ -3198,7 +3272,7 @@ var c4d_exports = {};
|
|
|
3198
3272
|
__export(c4d_exports, {
|
|
3199
3273
|
C4D: () => C4D
|
|
3200
3274
|
});
|
|
3201
|
-
var C4D =
|
|
3275
|
+
var C4D = React121__namespace.forwardRef(
|
|
3202
3276
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3203
3277
|
"svg",
|
|
3204
3278
|
{
|
|
@@ -3246,7 +3320,7 @@ var cdr_exports = {};
|
|
|
3246
3320
|
__export(cdr_exports, {
|
|
3247
3321
|
CDR: () => CDR
|
|
3248
3322
|
});
|
|
3249
|
-
var CDR =
|
|
3323
|
+
var CDR = React121__namespace.forwardRef(
|
|
3250
3324
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3251
3325
|
"svg",
|
|
3252
3326
|
{
|
|
@@ -3294,7 +3368,7 @@ var css_exports = {};
|
|
|
3294
3368
|
__export(css_exports, {
|
|
3295
3369
|
CSS: () => CSS
|
|
3296
3370
|
});
|
|
3297
|
-
var CSS =
|
|
3371
|
+
var CSS = React121__namespace.forwardRef(
|
|
3298
3372
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3299
3373
|
"svg",
|
|
3300
3374
|
{
|
|
@@ -3342,7 +3416,7 @@ var csv_exports = {};
|
|
|
3342
3416
|
__export(csv_exports, {
|
|
3343
3417
|
CSV: () => CSV
|
|
3344
3418
|
});
|
|
3345
|
-
var CSV =
|
|
3419
|
+
var CSV = React121__namespace.forwardRef(
|
|
3346
3420
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3347
3421
|
"svg",
|
|
3348
3422
|
{
|
|
@@ -3390,7 +3464,7 @@ var dmg_exports = {};
|
|
|
3390
3464
|
__export(dmg_exports, {
|
|
3391
3465
|
DMG: () => DMG
|
|
3392
3466
|
});
|
|
3393
|
-
var DMG =
|
|
3467
|
+
var DMG = React121__namespace.forwardRef(
|
|
3394
3468
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3395
3469
|
"svg",
|
|
3396
3470
|
{
|
|
@@ -3438,7 +3512,7 @@ var doc_exports = {};
|
|
|
3438
3512
|
__export(doc_exports, {
|
|
3439
3513
|
DOC: () => DOC
|
|
3440
3514
|
});
|
|
3441
|
-
var DOC =
|
|
3515
|
+
var DOC = React121__namespace.forwardRef(
|
|
3442
3516
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3443
3517
|
"svg",
|
|
3444
3518
|
{
|
|
@@ -3486,7 +3560,7 @@ var exe_exports = {};
|
|
|
3486
3560
|
__export(exe_exports, {
|
|
3487
3561
|
EXE: () => EXE
|
|
3488
3562
|
});
|
|
3489
|
-
var EXE =
|
|
3563
|
+
var EXE = React121__namespace.forwardRef(
|
|
3490
3564
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3491
3565
|
"svg",
|
|
3492
3566
|
{
|
|
@@ -3534,7 +3608,7 @@ var fig_exports = {};
|
|
|
3534
3608
|
__export(fig_exports, {
|
|
3535
3609
|
Fig: () => Fig
|
|
3536
3610
|
});
|
|
3537
|
-
var Fig =
|
|
3611
|
+
var Fig = React121__namespace.forwardRef(
|
|
3538
3612
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3539
3613
|
"svg",
|
|
3540
3614
|
{
|
|
@@ -3582,7 +3656,7 @@ var gif_exports = {};
|
|
|
3582
3656
|
__export(gif_exports, {
|
|
3583
3657
|
GIF: () => GIF
|
|
3584
3658
|
});
|
|
3585
|
-
var GIF =
|
|
3659
|
+
var GIF = React121__namespace.forwardRef(
|
|
3586
3660
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3587
3661
|
"svg",
|
|
3588
3662
|
{
|
|
@@ -3630,7 +3704,7 @@ var html_exports = {};
|
|
|
3630
3704
|
__export(html_exports, {
|
|
3631
3705
|
HTML: () => HTML
|
|
3632
3706
|
});
|
|
3633
|
-
var HTML =
|
|
3707
|
+
var HTML = React121__namespace.forwardRef(
|
|
3634
3708
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3635
3709
|
"svg",
|
|
3636
3710
|
{
|
|
@@ -3678,7 +3752,7 @@ var ico_exports = {};
|
|
|
3678
3752
|
__export(ico_exports, {
|
|
3679
3753
|
ICO: () => ICO
|
|
3680
3754
|
});
|
|
3681
|
-
var ICO =
|
|
3755
|
+
var ICO = React121__namespace.forwardRef(
|
|
3682
3756
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3683
3757
|
"svg",
|
|
3684
3758
|
{
|
|
@@ -3726,7 +3800,7 @@ var java_exports = {};
|
|
|
3726
3800
|
__export(java_exports, {
|
|
3727
3801
|
Java: () => Java
|
|
3728
3802
|
});
|
|
3729
|
-
var Java =
|
|
3803
|
+
var Java = React121__namespace.forwardRef(
|
|
3730
3804
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3731
3805
|
"svg",
|
|
3732
3806
|
{
|
|
@@ -3774,7 +3848,7 @@ var jpeg_exports = {};
|
|
|
3774
3848
|
__export(jpeg_exports, {
|
|
3775
3849
|
JPEG: () => JPEG
|
|
3776
3850
|
});
|
|
3777
|
-
var JPEG =
|
|
3851
|
+
var JPEG = React121__namespace.forwardRef(
|
|
3778
3852
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3779
3853
|
"svg",
|
|
3780
3854
|
{
|
|
@@ -3822,7 +3896,7 @@ var jpg_exports = {};
|
|
|
3822
3896
|
__export(jpg_exports, {
|
|
3823
3897
|
JPG: () => JPG
|
|
3824
3898
|
});
|
|
3825
|
-
var JPG =
|
|
3899
|
+
var JPG = React121__namespace.forwardRef(
|
|
3826
3900
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3827
3901
|
"svg",
|
|
3828
3902
|
{
|
|
@@ -3870,7 +3944,7 @@ var js_exports = {};
|
|
|
3870
3944
|
__export(js_exports, {
|
|
3871
3945
|
JS: () => JS
|
|
3872
3946
|
});
|
|
3873
|
-
var JS =
|
|
3947
|
+
var JS = React121__namespace.forwardRef(
|
|
3874
3948
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3875
3949
|
"svg",
|
|
3876
3950
|
{
|
|
@@ -3918,7 +3992,7 @@ var json_exports = {};
|
|
|
3918
3992
|
__export(json_exports, {
|
|
3919
3993
|
JSON: () => JSON
|
|
3920
3994
|
});
|
|
3921
|
-
var JSON =
|
|
3995
|
+
var JSON = React121__namespace.forwardRef(
|
|
3922
3996
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3923
3997
|
"svg",
|
|
3924
3998
|
{
|
|
@@ -3966,7 +4040,7 @@ var mov_exports = {};
|
|
|
3966
4040
|
__export(mov_exports, {
|
|
3967
4041
|
MOV: () => MOV
|
|
3968
4042
|
});
|
|
3969
|
-
var MOV =
|
|
4043
|
+
var MOV = React121__namespace.forwardRef(
|
|
3970
4044
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3971
4045
|
"svg",
|
|
3972
4046
|
{
|
|
@@ -4014,7 +4088,7 @@ var mp3_exports = {};
|
|
|
4014
4088
|
__export(mp3_exports, {
|
|
4015
4089
|
MP3: () => MP3
|
|
4016
4090
|
});
|
|
4017
|
-
var MP3 =
|
|
4091
|
+
var MP3 = React121__namespace.forwardRef(
|
|
4018
4092
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4019
4093
|
"svg",
|
|
4020
4094
|
{
|
|
@@ -4062,7 +4136,7 @@ var mp4_exports = {};
|
|
|
4062
4136
|
__export(mp4_exports, {
|
|
4063
4137
|
MP4: () => MP4
|
|
4064
4138
|
});
|
|
4065
|
-
var MP4 =
|
|
4139
|
+
var MP4 = React121__namespace.forwardRef(
|
|
4066
4140
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4067
4141
|
"svg",
|
|
4068
4142
|
{
|
|
@@ -4110,7 +4184,7 @@ var mpg_exports = {};
|
|
|
4110
4184
|
__export(mpg_exports, {
|
|
4111
4185
|
MPG: () => MPG
|
|
4112
4186
|
});
|
|
4113
|
-
var MPG =
|
|
4187
|
+
var MPG = React121__namespace.forwardRef(
|
|
4114
4188
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4115
4189
|
"svg",
|
|
4116
4190
|
{
|
|
@@ -4158,7 +4232,7 @@ var pdf_exports = {};
|
|
|
4158
4232
|
__export(pdf_exports, {
|
|
4159
4233
|
PDF: () => PDF
|
|
4160
4234
|
});
|
|
4161
|
-
var PDF =
|
|
4235
|
+
var PDF = React121__namespace.forwardRef(
|
|
4162
4236
|
({ ...props }, ref) => {
|
|
4163
4237
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4164
4238
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -4211,7 +4285,7 @@ var png_exports = {};
|
|
|
4211
4285
|
__export(png_exports, {
|
|
4212
4286
|
PNG: () => PNG
|
|
4213
4287
|
});
|
|
4214
|
-
var PNG =
|
|
4288
|
+
var PNG = React121__namespace.forwardRef(
|
|
4215
4289
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4216
4290
|
"svg",
|
|
4217
4291
|
{
|
|
@@ -4259,7 +4333,7 @@ var ppt_exports = {};
|
|
|
4259
4333
|
__export(ppt_exports, {
|
|
4260
4334
|
PPT: () => PPT
|
|
4261
4335
|
});
|
|
4262
|
-
var PPT =
|
|
4336
|
+
var PPT = React121__namespace.forwardRef(
|
|
4263
4337
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4264
4338
|
"svg",
|
|
4265
4339
|
{
|
|
@@ -4307,7 +4381,7 @@ var psd_exports = {};
|
|
|
4307
4381
|
__export(psd_exports, {
|
|
4308
4382
|
PSD: () => PSD
|
|
4309
4383
|
});
|
|
4310
|
-
var PSD =
|
|
4384
|
+
var PSD = React121__namespace.forwardRef(
|
|
4311
4385
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4312
4386
|
"svg",
|
|
4313
4387
|
{
|
|
@@ -4355,7 +4429,7 @@ var rar_exports = {};
|
|
|
4355
4429
|
__export(rar_exports, {
|
|
4356
4430
|
Rar: () => Rar
|
|
4357
4431
|
});
|
|
4358
|
-
var Rar =
|
|
4432
|
+
var Rar = React121__namespace.forwardRef(
|
|
4359
4433
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4360
4434
|
"svg",
|
|
4361
4435
|
{
|
|
@@ -4403,7 +4477,7 @@ var sketch_exports = {};
|
|
|
4403
4477
|
__export(sketch_exports, {
|
|
4404
4478
|
Sketch: () => Sketch
|
|
4405
4479
|
});
|
|
4406
|
-
var Sketch =
|
|
4480
|
+
var Sketch = React121__namespace.forwardRef(
|
|
4407
4481
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4408
4482
|
"svg",
|
|
4409
4483
|
{
|
|
@@ -4451,7 +4525,7 @@ var svg_exports = {};
|
|
|
4451
4525
|
__export(svg_exports, {
|
|
4452
4526
|
SVG: () => SVG
|
|
4453
4527
|
});
|
|
4454
|
-
var SVG =
|
|
4528
|
+
var SVG = React121__namespace.forwardRef(
|
|
4455
4529
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4456
4530
|
"svg",
|
|
4457
4531
|
{
|
|
@@ -4499,7 +4573,7 @@ var tiff_exports = {};
|
|
|
4499
4573
|
__export(tiff_exports, {
|
|
4500
4574
|
TIFF: () => TIFF
|
|
4501
4575
|
});
|
|
4502
|
-
var TIFF =
|
|
4576
|
+
var TIFF = React121__namespace.forwardRef(
|
|
4503
4577
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4504
4578
|
"svg",
|
|
4505
4579
|
{
|
|
@@ -4547,7 +4621,7 @@ var txt_exports = {};
|
|
|
4547
4621
|
__export(txt_exports, {
|
|
4548
4622
|
TXT: () => TXT
|
|
4549
4623
|
});
|
|
4550
|
-
var TXT =
|
|
4624
|
+
var TXT = React121__namespace.forwardRef(
|
|
4551
4625
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4552
4626
|
"svg",
|
|
4553
4627
|
{
|
|
@@ -4595,7 +4669,7 @@ var wav_exports = {};
|
|
|
4595
4669
|
__export(wav_exports, {
|
|
4596
4670
|
WAV: () => WAV
|
|
4597
4671
|
});
|
|
4598
|
-
var WAV =
|
|
4672
|
+
var WAV = React121__namespace.forwardRef(
|
|
4599
4673
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4600
4674
|
"svg",
|
|
4601
4675
|
{
|
|
@@ -4643,7 +4717,7 @@ var webp_exports = {};
|
|
|
4643
4717
|
__export(webp_exports, {
|
|
4644
4718
|
WEBP: () => WEBP
|
|
4645
4719
|
});
|
|
4646
|
-
var WEBP =
|
|
4720
|
+
var WEBP = React121__namespace.forwardRef(
|
|
4647
4721
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4648
4722
|
"svg",
|
|
4649
4723
|
{
|
|
@@ -4691,7 +4765,7 @@ var xls_exports = {};
|
|
|
4691
4765
|
__export(xls_exports, {
|
|
4692
4766
|
XLS: () => XLS
|
|
4693
4767
|
});
|
|
4694
|
-
var XLS =
|
|
4768
|
+
var XLS = React121__namespace.forwardRef(
|
|
4695
4769
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4696
4770
|
"svg",
|
|
4697
4771
|
{
|
|
@@ -4739,7 +4813,7 @@ var zip_exports = {};
|
|
|
4739
4813
|
__export(zip_exports, {
|
|
4740
4814
|
Zip: () => Zip
|
|
4741
4815
|
});
|
|
4742
|
-
var Zip =
|
|
4816
|
+
var Zip = React121__namespace.forwardRef(
|
|
4743
4817
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4744
4818
|
"svg",
|
|
4745
4819
|
{
|
|
@@ -4781,15 +4855,15 @@ var Zip = React118__namespace.forwardRef(
|
|
|
4781
4855
|
)
|
|
4782
4856
|
);
|
|
4783
4857
|
Zip.displayName = "Zip";
|
|
4784
|
-
var CarouselContext =
|
|
4858
|
+
var CarouselContext = React121__namespace.createContext(null);
|
|
4785
4859
|
function useCarousel() {
|
|
4786
|
-
const context =
|
|
4860
|
+
const context = React121__namespace.useContext(CarouselContext);
|
|
4787
4861
|
if (!context) {
|
|
4788
4862
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4789
4863
|
}
|
|
4790
4864
|
return context;
|
|
4791
4865
|
}
|
|
4792
|
-
var Carousel =
|
|
4866
|
+
var Carousel = React121__namespace.forwardRef(
|
|
4793
4867
|
({
|
|
4794
4868
|
orientation = "horizontal",
|
|
4795
4869
|
opts,
|
|
@@ -4806,10 +4880,10 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4806
4880
|
},
|
|
4807
4881
|
plugins
|
|
4808
4882
|
);
|
|
4809
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4810
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4811
|
-
const [slideCount, setSlideCount] =
|
|
4812
|
-
const onSelect =
|
|
4883
|
+
const [canScrollPrev, setCanScrollPrev] = React121__namespace.useState(false);
|
|
4884
|
+
const [canScrollNext, setCanScrollNext] = React121__namespace.useState(false);
|
|
4885
|
+
const [slideCount, setSlideCount] = React121__namespace.useState(0);
|
|
4886
|
+
const onSelect = React121__namespace.useCallback((api2) => {
|
|
4813
4887
|
if (!api2) {
|
|
4814
4888
|
return;
|
|
4815
4889
|
}
|
|
@@ -4817,13 +4891,13 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4817
4891
|
setCanScrollNext(api2.canScrollNext());
|
|
4818
4892
|
setSlideCount(api2.scrollSnapList().length);
|
|
4819
4893
|
}, []);
|
|
4820
|
-
const scrollPrev =
|
|
4894
|
+
const scrollPrev = React121__namespace.useCallback(() => {
|
|
4821
4895
|
api?.scrollPrev();
|
|
4822
4896
|
}, [api]);
|
|
4823
|
-
const scrollNext =
|
|
4897
|
+
const scrollNext = React121__namespace.useCallback(() => {
|
|
4824
4898
|
api?.scrollNext();
|
|
4825
4899
|
}, [api]);
|
|
4826
|
-
const handleKeyDown =
|
|
4900
|
+
const handleKeyDown = React121__namespace.useCallback(
|
|
4827
4901
|
(event) => {
|
|
4828
4902
|
if (event.key === "ArrowLeft") {
|
|
4829
4903
|
event.preventDefault();
|
|
@@ -4835,13 +4909,13 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4835
4909
|
},
|
|
4836
4910
|
[scrollPrev, scrollNext]
|
|
4837
4911
|
);
|
|
4838
|
-
|
|
4912
|
+
React121__namespace.useEffect(() => {
|
|
4839
4913
|
if (!api || !setApi) {
|
|
4840
4914
|
return;
|
|
4841
4915
|
}
|
|
4842
4916
|
setApi(api);
|
|
4843
4917
|
}, [api, setApi]);
|
|
4844
|
-
|
|
4918
|
+
React121__namespace.useEffect(() => {
|
|
4845
4919
|
if (!api) {
|
|
4846
4920
|
return;
|
|
4847
4921
|
}
|
|
@@ -4886,7 +4960,7 @@ var Carousel = React118__namespace.forwardRef(
|
|
|
4886
4960
|
}
|
|
4887
4961
|
);
|
|
4888
4962
|
Carousel.displayName = "Carousel";
|
|
4889
|
-
var CarouselContent =
|
|
4963
|
+
var CarouselContent = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4890
4964
|
const { carouselRef, orientation } = useCarousel();
|
|
4891
4965
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4892
4966
|
"div",
|
|
@@ -4902,7 +4976,7 @@ var CarouselContent = React118__namespace.forwardRef(({ className, ...props }, r
|
|
|
4902
4976
|
) });
|
|
4903
4977
|
});
|
|
4904
4978
|
CarouselContent.displayName = "CarouselContent";
|
|
4905
|
-
var CarouselItem =
|
|
4979
|
+
var CarouselItem = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4906
4980
|
const { orientation } = useCarousel();
|
|
4907
4981
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4908
4982
|
"div",
|
|
@@ -4920,7 +4994,7 @@ var CarouselItem = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4920
4994
|
);
|
|
4921
4995
|
});
|
|
4922
4996
|
CarouselItem.displayName = "CarouselItem";
|
|
4923
|
-
var CarouselPrevious =
|
|
4997
|
+
var CarouselPrevious = React121__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4924
4998
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4925
4999
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4926
5000
|
Button,
|
|
@@ -4942,7 +5016,7 @@ var CarouselPrevious = React118__namespace.forwardRef(({ className, variant = "o
|
|
|
4942
5016
|
);
|
|
4943
5017
|
});
|
|
4944
5018
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4945
|
-
var CarouselNext =
|
|
5019
|
+
var CarouselNext = React121__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4946
5020
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4947
5021
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4948
5022
|
Button,
|
|
@@ -4968,7 +5042,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4968
5042
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4969
5043
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4970
5044
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4971
|
-
var DialogOverlay =
|
|
5045
|
+
var DialogOverlay = React121__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4972
5046
|
DialogPrimitive__namespace.Overlay,
|
|
4973
5047
|
{
|
|
4974
5048
|
ref,
|
|
@@ -4985,7 +5059,7 @@ var DialogOverlay = React118__namespace.forwardRef(({ className, style, ...props
|
|
|
4985
5059
|
}
|
|
4986
5060
|
));
|
|
4987
5061
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4988
|
-
var DialogContent =
|
|
5062
|
+
var DialogContent = React121__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4989
5063
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4990
5064
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4991
5065
|
DialogPrimitive__namespace.Content,
|
|
@@ -5037,7 +5111,7 @@ var DialogFooter = ({
|
|
|
5037
5111
|
}
|
|
5038
5112
|
);
|
|
5039
5113
|
DialogFooter.displayName = "DialogFooter";
|
|
5040
|
-
var DialogTitle =
|
|
5114
|
+
var DialogTitle = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5041
5115
|
DialogPrimitive__namespace.Title,
|
|
5042
5116
|
{
|
|
5043
5117
|
ref,
|
|
@@ -5049,7 +5123,7 @@ var DialogTitle = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5049
5123
|
}
|
|
5050
5124
|
));
|
|
5051
5125
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5052
|
-
var DialogDescription =
|
|
5126
|
+
var DialogDescription = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5053
5127
|
DialogPrimitive__namespace.Description,
|
|
5054
5128
|
{
|
|
5055
5129
|
ref,
|
|
@@ -5062,7 +5136,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
5062
5136
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
5063
5137
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
5064
5138
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
5065
|
-
var SheetOverlay =
|
|
5139
|
+
var SheetOverlay = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5066
5140
|
DialogPrimitive__namespace.Overlay,
|
|
5067
5141
|
{
|
|
5068
5142
|
className: cn(
|
|
@@ -5090,7 +5164,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
5090
5164
|
}
|
|
5091
5165
|
}
|
|
5092
5166
|
);
|
|
5093
|
-
var SheetContent =
|
|
5167
|
+
var SheetContent = React121__namespace.forwardRef(
|
|
5094
5168
|
({
|
|
5095
5169
|
side = "right",
|
|
5096
5170
|
className,
|
|
@@ -5146,7 +5220,7 @@ var SheetFooter = ({
|
|
|
5146
5220
|
}
|
|
5147
5221
|
);
|
|
5148
5222
|
SheetFooter.displayName = "SheetFooter";
|
|
5149
|
-
var SheetTitle =
|
|
5223
|
+
var SheetTitle = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5150
5224
|
DialogPrimitive__namespace.Title,
|
|
5151
5225
|
{
|
|
5152
5226
|
ref,
|
|
@@ -5158,7 +5232,7 @@ var SheetTitle = React118__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
5158
5232
|
}
|
|
5159
5233
|
));
|
|
5160
5234
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5161
|
-
var SheetDescription =
|
|
5235
|
+
var SheetDescription = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5162
5236
|
DialogPrimitive__namespace.Description,
|
|
5163
5237
|
{
|
|
5164
5238
|
ref,
|
|
@@ -5195,10 +5269,10 @@ var defaultElements = {
|
|
|
5195
5269
|
"caption": "span",
|
|
5196
5270
|
"overline": "span"
|
|
5197
5271
|
};
|
|
5198
|
-
var Typography =
|
|
5272
|
+
var Typography = React121__namespace.default.forwardRef(
|
|
5199
5273
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5200
5274
|
const Component = as || defaultElements[variant];
|
|
5201
|
-
return
|
|
5275
|
+
return React121__namespace.default.createElement(
|
|
5202
5276
|
Component,
|
|
5203
5277
|
{
|
|
5204
5278
|
ref,
|
|
@@ -5210,46 +5284,46 @@ var Typography = React118__namespace.default.forwardRef(
|
|
|
5210
5284
|
}
|
|
5211
5285
|
);
|
|
5212
5286
|
Typography.displayName = "Typography";
|
|
5213
|
-
var Heading1 =
|
|
5287
|
+
var Heading1 = React121__namespace.default.forwardRef(
|
|
5214
5288
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
5215
5289
|
);
|
|
5216
5290
|
Heading1.displayName = "Heading1";
|
|
5217
|
-
var Heading2 =
|
|
5291
|
+
var Heading2 = React121__namespace.default.forwardRef(
|
|
5218
5292
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
5219
5293
|
);
|
|
5220
5294
|
Heading2.displayName = "Heading2";
|
|
5221
|
-
var Heading3 =
|
|
5295
|
+
var Heading3 = React121__namespace.default.forwardRef(
|
|
5222
5296
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
5223
5297
|
);
|
|
5224
5298
|
Heading3.displayName = "Heading3";
|
|
5225
|
-
var Heading4 =
|
|
5299
|
+
var Heading4 = React121__namespace.default.forwardRef(
|
|
5226
5300
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
5227
5301
|
);
|
|
5228
5302
|
Heading4.displayName = "Heading4";
|
|
5229
|
-
var Heading5 =
|
|
5303
|
+
var Heading5 = React121__namespace.default.forwardRef(
|
|
5230
5304
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
5231
5305
|
);
|
|
5232
5306
|
Heading5.displayName = "Heading5";
|
|
5233
|
-
var Heading6 =
|
|
5307
|
+
var Heading6 = React121__namespace.default.forwardRef(
|
|
5234
5308
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
5235
5309
|
);
|
|
5236
5310
|
Heading6.displayName = "Heading6";
|
|
5237
|
-
var Text =
|
|
5311
|
+
var Text = React121__namespace.default.forwardRef(
|
|
5238
5312
|
({ size = "default", ...props }, ref) => {
|
|
5239
5313
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5240
5314
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
5241
5315
|
}
|
|
5242
5316
|
);
|
|
5243
5317
|
Text.displayName = "Text";
|
|
5244
|
-
var Caption =
|
|
5318
|
+
var Caption = React121__namespace.default.forwardRef(
|
|
5245
5319
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
5246
5320
|
);
|
|
5247
5321
|
Caption.displayName = "Caption";
|
|
5248
|
-
var Overline =
|
|
5322
|
+
var Overline = React121__namespace.default.forwardRef(
|
|
5249
5323
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
5250
5324
|
);
|
|
5251
5325
|
Overline.displayName = "Overline";
|
|
5252
|
-
var Link =
|
|
5326
|
+
var Link = React121__namespace.default.forwardRef(
|
|
5253
5327
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5254
5328
|
const variantClass = `link-${variant}`;
|
|
5255
5329
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5264,11 +5338,11 @@ var Link = React118__namespace.default.forwardRef(
|
|
|
5264
5338
|
}
|
|
5265
5339
|
);
|
|
5266
5340
|
Link.displayName = "Link";
|
|
5267
|
-
var PaginationContext =
|
|
5341
|
+
var PaginationContext = React121__namespace.createContext({
|
|
5268
5342
|
size: "default"
|
|
5269
5343
|
});
|
|
5270
5344
|
var usePaginationContext = () => {
|
|
5271
|
-
const context =
|
|
5345
|
+
const context = React121__namespace.useContext(PaginationContext);
|
|
5272
5346
|
return context;
|
|
5273
5347
|
};
|
|
5274
5348
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5285,7 +5359,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5285
5359
|
}
|
|
5286
5360
|
}
|
|
5287
5361
|
);
|
|
5288
|
-
var Pagination =
|
|
5362
|
+
var Pagination = React121__namespace.forwardRef(
|
|
5289
5363
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5290
5364
|
"nav",
|
|
5291
5365
|
{
|
|
@@ -5298,7 +5372,7 @@ var Pagination = React118__namespace.forwardRef(
|
|
|
5298
5372
|
) })
|
|
5299
5373
|
);
|
|
5300
5374
|
Pagination.displayName = "Pagination";
|
|
5301
|
-
var PaginationContent =
|
|
5375
|
+
var PaginationContent = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5302
5376
|
"ul",
|
|
5303
5377
|
{
|
|
5304
5378
|
ref,
|
|
@@ -5307,7 +5381,7 @@ var PaginationContent = React118__namespace.forwardRef(({ className, ...props },
|
|
|
5307
5381
|
}
|
|
5308
5382
|
));
|
|
5309
5383
|
PaginationContent.displayName = "PaginationContent";
|
|
5310
|
-
var PaginationItem =
|
|
5384
|
+
var PaginationItem = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5311
5385
|
PaginationItem.displayName = "PaginationItem";
|
|
5312
5386
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5313
5387
|
[
|
|
@@ -5329,7 +5403,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5329
5403
|
}
|
|
5330
5404
|
}
|
|
5331
5405
|
);
|
|
5332
|
-
var PaginationLink =
|
|
5406
|
+
var PaginationLink = React121__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5333
5407
|
const { size } = usePaginationContext();
|
|
5334
5408
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5335
5409
|
"a",
|
|
@@ -5346,7 +5420,7 @@ var PaginationLink = React118__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5346
5420
|
);
|
|
5347
5421
|
});
|
|
5348
5422
|
PaginationLink.displayName = "PaginationLink";
|
|
5349
|
-
var PaginationPrevious =
|
|
5423
|
+
var PaginationPrevious = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5350
5424
|
const { size } = usePaginationContext();
|
|
5351
5425
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5352
5426
|
PaginationLink,
|
|
@@ -5367,7 +5441,7 @@ var PaginationPrevious = React118__namespace.forwardRef(({ className, ...props }
|
|
|
5367
5441
|
);
|
|
5368
5442
|
});
|
|
5369
5443
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5370
|
-
var PaginationNext =
|
|
5444
|
+
var PaginationNext = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5371
5445
|
const { size } = usePaginationContext();
|
|
5372
5446
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5373
5447
|
PaginationLink,
|
|
@@ -5388,7 +5462,7 @@ var PaginationNext = React118__namespace.forwardRef(({ className, ...props }, re
|
|
|
5388
5462
|
);
|
|
5389
5463
|
});
|
|
5390
5464
|
PaginationNext.displayName = "PaginationNext";
|
|
5391
|
-
var PaginationEllipsis =
|
|
5465
|
+
var PaginationEllipsis = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5392
5466
|
const { size } = usePaginationContext();
|
|
5393
5467
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5394
5468
|
"span",
|
|
@@ -5412,7 +5486,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5412
5486
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5413
5487
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5414
5488
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5415
|
-
var DropdownMenuSubTrigger =
|
|
5489
|
+
var DropdownMenuSubTrigger = React121__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5416
5490
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5417
5491
|
{
|
|
5418
5492
|
ref,
|
|
@@ -5429,7 +5503,7 @@ var DropdownMenuSubTrigger = React118__namespace.forwardRef(({ className, inset,
|
|
|
5429
5503
|
}
|
|
5430
5504
|
));
|
|
5431
5505
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5432
|
-
var DropdownMenuSubContent =
|
|
5506
|
+
var DropdownMenuSubContent = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5433
5507
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5434
5508
|
{
|
|
5435
5509
|
ref,
|
|
@@ -5441,7 +5515,7 @@ var DropdownMenuSubContent = React118__namespace.forwardRef(({ className, ...pro
|
|
|
5441
5515
|
}
|
|
5442
5516
|
));
|
|
5443
5517
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5444
|
-
var DropdownMenuContent =
|
|
5518
|
+
var DropdownMenuContent = React121__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5445
5519
|
DropdownMenuPrimitive__namespace.Content,
|
|
5446
5520
|
{
|
|
5447
5521
|
ref,
|
|
@@ -5455,7 +5529,7 @@ var DropdownMenuContent = React118__namespace.forwardRef(({ className, sideOffse
|
|
|
5455
5529
|
}
|
|
5456
5530
|
) }));
|
|
5457
5531
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5458
|
-
var DropdownMenuItem =
|
|
5532
|
+
var DropdownMenuItem = React121__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5459
5533
|
DropdownMenuPrimitive__namespace.Item,
|
|
5460
5534
|
{
|
|
5461
5535
|
ref,
|
|
@@ -5468,7 +5542,7 @@ var DropdownMenuItem = React118__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5468
5542
|
}
|
|
5469
5543
|
));
|
|
5470
5544
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5471
|
-
var DropdownMenuCheckboxItem =
|
|
5545
|
+
var DropdownMenuCheckboxItem = React121__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5472
5546
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5473
5547
|
{
|
|
5474
5548
|
ref,
|
|
@@ -5485,7 +5559,7 @@ var DropdownMenuCheckboxItem = React118__namespace.forwardRef(({ className, chil
|
|
|
5485
5559
|
}
|
|
5486
5560
|
));
|
|
5487
5561
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5488
|
-
var DropdownMenuRadioItem =
|
|
5562
|
+
var DropdownMenuRadioItem = React121__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5489
5563
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5490
5564
|
{
|
|
5491
5565
|
ref,
|
|
@@ -5501,7 +5575,7 @@ var DropdownMenuRadioItem = React118__namespace.forwardRef(({ className, childre
|
|
|
5501
5575
|
}
|
|
5502
5576
|
));
|
|
5503
5577
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5504
|
-
var DropdownMenuLabel =
|
|
5578
|
+
var DropdownMenuLabel = React121__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5505
5579
|
DropdownMenuPrimitive__namespace.Label,
|
|
5506
5580
|
{
|
|
5507
5581
|
ref,
|
|
@@ -5514,7 +5588,7 @@ var DropdownMenuLabel = React118__namespace.forwardRef(({ className, inset, ...p
|
|
|
5514
5588
|
}
|
|
5515
5589
|
));
|
|
5516
5590
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5517
|
-
var DropdownMenuSeparator =
|
|
5591
|
+
var DropdownMenuSeparator = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5518
5592
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5519
5593
|
{
|
|
5520
5594
|
ref,
|
|
@@ -5536,7 +5610,7 @@ var DropdownMenuShortcut = ({
|
|
|
5536
5610
|
);
|
|
5537
5611
|
};
|
|
5538
5612
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5539
|
-
var TableWrapper =
|
|
5613
|
+
var TableWrapper = React121__namespace.forwardRef(
|
|
5540
5614
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5541
5615
|
"div",
|
|
5542
5616
|
{
|
|
@@ -5551,7 +5625,7 @@ var TableWrapper = React118__namespace.forwardRef(
|
|
|
5551
5625
|
)
|
|
5552
5626
|
);
|
|
5553
5627
|
TableWrapper.displayName = "TableWrapper";
|
|
5554
|
-
var Table =
|
|
5628
|
+
var Table = React121__namespace.forwardRef(
|
|
5555
5629
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5556
5630
|
"div",
|
|
5557
5631
|
{
|
|
@@ -5573,7 +5647,7 @@ var Table = React118__namespace.forwardRef(
|
|
|
5573
5647
|
)
|
|
5574
5648
|
);
|
|
5575
5649
|
Table.displayName = "Table";
|
|
5576
|
-
var TableHeader =
|
|
5650
|
+
var TableHeader = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5577
5651
|
"thead",
|
|
5578
5652
|
{
|
|
5579
5653
|
ref,
|
|
@@ -5586,7 +5660,7 @@ var TableHeader = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5586
5660
|
}
|
|
5587
5661
|
));
|
|
5588
5662
|
TableHeader.displayName = "TableHeader";
|
|
5589
|
-
var TableBody =
|
|
5663
|
+
var TableBody = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5590
5664
|
"tbody",
|
|
5591
5665
|
{
|
|
5592
5666
|
ref,
|
|
@@ -5599,7 +5673,7 @@ var TableBody = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5599
5673
|
}
|
|
5600
5674
|
));
|
|
5601
5675
|
TableBody.displayName = "TableBody";
|
|
5602
|
-
var TableFooter =
|
|
5676
|
+
var TableFooter = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5603
5677
|
"tfoot",
|
|
5604
5678
|
{
|
|
5605
5679
|
ref,
|
|
@@ -5612,7 +5686,7 @@ var TableFooter = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5612
5686
|
}
|
|
5613
5687
|
));
|
|
5614
5688
|
TableFooter.displayName = "TableFooter";
|
|
5615
|
-
var TableRow =
|
|
5689
|
+
var TableRow = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5616
5690
|
"tr",
|
|
5617
5691
|
{
|
|
5618
5692
|
ref,
|
|
@@ -5630,7 +5704,7 @@ var TableRow = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5630
5704
|
}
|
|
5631
5705
|
));
|
|
5632
5706
|
TableRow.displayName = "TableRow";
|
|
5633
|
-
var TableHead =
|
|
5707
|
+
var TableHead = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5634
5708
|
"th",
|
|
5635
5709
|
{
|
|
5636
5710
|
ref,
|
|
@@ -5643,7 +5717,7 @@ var TableHead = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5643
5717
|
}
|
|
5644
5718
|
));
|
|
5645
5719
|
TableHead.displayName = "TableHead";
|
|
5646
|
-
var TableCell =
|
|
5720
|
+
var TableCell = React121__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5647
5721
|
"td",
|
|
5648
5722
|
{
|
|
5649
5723
|
ref,
|
|
@@ -5663,7 +5737,7 @@ var TableCell = React118__namespace.forwardRef(({ className, label, ...props },
|
|
|
5663
5737
|
}
|
|
5664
5738
|
));
|
|
5665
5739
|
TableCell.displayName = "TableCell";
|
|
5666
|
-
var TableCaption =
|
|
5740
|
+
var TableCaption = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5667
5741
|
"caption",
|
|
5668
5742
|
{
|
|
5669
5743
|
ref,
|
|
@@ -5676,7 +5750,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5676
5750
|
var Select = SelectPrimitive__namespace.Root;
|
|
5677
5751
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5678
5752
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5679
|
-
var SelectTrigger =
|
|
5753
|
+
var SelectTrigger = React121__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5680
5754
|
SelectPrimitive__namespace.Trigger,
|
|
5681
5755
|
{
|
|
5682
5756
|
ref,
|
|
@@ -5692,7 +5766,7 @@ var SelectTrigger = React118__namespace.forwardRef(({ className, children, ...pr
|
|
|
5692
5766
|
}
|
|
5693
5767
|
));
|
|
5694
5768
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5695
|
-
var SelectScrollUpButton =
|
|
5769
|
+
var SelectScrollUpButton = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5696
5770
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5697
5771
|
{
|
|
5698
5772
|
ref,
|
|
@@ -5705,7 +5779,7 @@ var SelectScrollUpButton = React118__namespace.forwardRef(({ className, ...props
|
|
|
5705
5779
|
}
|
|
5706
5780
|
));
|
|
5707
5781
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5708
|
-
var SelectScrollDownButton =
|
|
5782
|
+
var SelectScrollDownButton = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5709
5783
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5710
5784
|
{
|
|
5711
5785
|
ref,
|
|
@@ -5718,7 +5792,7 @@ var SelectScrollDownButton = React118__namespace.forwardRef(({ className, ...pro
|
|
|
5718
5792
|
}
|
|
5719
5793
|
));
|
|
5720
5794
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5721
|
-
var SelectContent =
|
|
5795
|
+
var SelectContent = React121__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5722
5796
|
SelectPrimitive__namespace.Content,
|
|
5723
5797
|
{
|
|
5724
5798
|
ref,
|
|
@@ -5745,7 +5819,7 @@ var SelectContent = React118__namespace.forwardRef(({ className, children, posit
|
|
|
5745
5819
|
}
|
|
5746
5820
|
) }));
|
|
5747
5821
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5748
|
-
var SelectLabel =
|
|
5822
|
+
var SelectLabel = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5749
5823
|
SelectPrimitive__namespace.Label,
|
|
5750
5824
|
{
|
|
5751
5825
|
ref,
|
|
@@ -5754,7 +5828,7 @@ var SelectLabel = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5754
5828
|
}
|
|
5755
5829
|
));
|
|
5756
5830
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5757
|
-
var SelectItem =
|
|
5831
|
+
var SelectItem = React121__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5758
5832
|
SelectPrimitive__namespace.Item,
|
|
5759
5833
|
{
|
|
5760
5834
|
ref,
|
|
@@ -5770,7 +5844,7 @@ var SelectItem = React118__namespace.forwardRef(({ className, children, ...props
|
|
|
5770
5844
|
}
|
|
5771
5845
|
));
|
|
5772
5846
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5773
|
-
var SelectSeparator =
|
|
5847
|
+
var SelectSeparator = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5774
5848
|
SelectPrimitive__namespace.Separator,
|
|
5775
5849
|
{
|
|
5776
5850
|
ref,
|
|
@@ -5779,7 +5853,7 @@ var SelectSeparator = React118__namespace.forwardRef(({ className, ...props }, r
|
|
|
5779
5853
|
}
|
|
5780
5854
|
));
|
|
5781
5855
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5782
|
-
var Label3 =
|
|
5856
|
+
var Label3 = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5783
5857
|
LabelPrimitive__namespace.Root,
|
|
5784
5858
|
{
|
|
5785
5859
|
ref,
|
|
@@ -5791,7 +5865,7 @@ var Label3 = React118__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5791
5865
|
}
|
|
5792
5866
|
));
|
|
5793
5867
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5794
|
-
var Switch =
|
|
5868
|
+
var Switch = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5795
5869
|
SwitchPrimitives__namespace.Root,
|
|
5796
5870
|
{
|
|
5797
5871
|
className: cn(
|
|
@@ -5804,7 +5878,7 @@ var Switch = React118__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5804
5878
|
}
|
|
5805
5879
|
));
|
|
5806
5880
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5807
|
-
var RadioGroup2 =
|
|
5881
|
+
var RadioGroup2 = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5808
5882
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5809
5883
|
RadioGroupPrimitive__namespace.Root,
|
|
5810
5884
|
{
|
|
@@ -5815,7 +5889,7 @@ var RadioGroup2 = React118__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5815
5889
|
);
|
|
5816
5890
|
});
|
|
5817
5891
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5818
|
-
var RadioGroupItem =
|
|
5892
|
+
var RadioGroupItem = React121__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5819
5893
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5820
5894
|
RadioGroupPrimitive__namespace.Item,
|
|
5821
5895
|
{
|
|
@@ -5830,7 +5904,7 @@ var RadioGroupItem = React118__namespace.forwardRef(({ className, ...props }, re
|
|
|
5830
5904
|
);
|
|
5831
5905
|
});
|
|
5832
5906
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5833
|
-
var Checkbox =
|
|
5907
|
+
var Checkbox = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5834
5908
|
CheckboxPrimitive__namespace.Root,
|
|
5835
5909
|
{
|
|
5836
5910
|
ref,
|
|
@@ -5843,7 +5917,7 @@ var Checkbox = React118__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5843
5917
|
}
|
|
5844
5918
|
));
|
|
5845
5919
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5846
|
-
var MultiSelect =
|
|
5920
|
+
var MultiSelect = React121__namespace.forwardRef(
|
|
5847
5921
|
({
|
|
5848
5922
|
options,
|
|
5849
5923
|
value = [],
|
|
@@ -5856,8 +5930,8 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5856
5930
|
maxDisplayItems = 3,
|
|
5857
5931
|
...props
|
|
5858
5932
|
}, ref) => {
|
|
5859
|
-
const [open, setOpen] =
|
|
5860
|
-
const handleSelectAll =
|
|
5933
|
+
const [open, setOpen] = React121__namespace.useState(false);
|
|
5934
|
+
const handleSelectAll = React121__namespace.useCallback(() => {
|
|
5861
5935
|
if (!onValueChange) return;
|
|
5862
5936
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5863
5937
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5870,7 +5944,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5870
5944
|
onValueChange(allValues);
|
|
5871
5945
|
}
|
|
5872
5946
|
}, [options, value, onValueChange]);
|
|
5873
|
-
const handleItemToggle =
|
|
5947
|
+
const handleItemToggle = React121__namespace.useCallback(
|
|
5874
5948
|
(itemValue) => {
|
|
5875
5949
|
if (!onValueChange) return;
|
|
5876
5950
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5878,7 +5952,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5878
5952
|
},
|
|
5879
5953
|
[value, onValueChange]
|
|
5880
5954
|
);
|
|
5881
|
-
const displayValue =
|
|
5955
|
+
const displayValue = React121__namespace.useMemo(() => {
|
|
5882
5956
|
if (value.length === 0) {
|
|
5883
5957
|
return placeholder;
|
|
5884
5958
|
}
|
|
@@ -5999,7 +6073,7 @@ var MultiSelect = React118__namespace.forwardRef(
|
|
|
5999
6073
|
}
|
|
6000
6074
|
);
|
|
6001
6075
|
MultiSelect.displayName = "MultiSelect";
|
|
6002
|
-
var Slider =
|
|
6076
|
+
var Slider = React121__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
6003
6077
|
SliderPrimitive__namespace.Root,
|
|
6004
6078
|
{
|
|
6005
6079
|
ref,
|
|
@@ -6049,8 +6123,8 @@ function CalendarDayButton({
|
|
|
6049
6123
|
...props
|
|
6050
6124
|
}) {
|
|
6051
6125
|
const defaultClassNames = reactDayPicker.getDefaultClassNames();
|
|
6052
|
-
const ref =
|
|
6053
|
-
|
|
6126
|
+
const ref = React121__namespace.useRef(null);
|
|
6127
|
+
React121__namespace.useEffect(() => {
|
|
6054
6128
|
if (modifiers.focused) ref.current?.focus();
|
|
6055
6129
|
}, [modifiers.focused]);
|
|
6056
6130
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -6181,7 +6255,7 @@ function Calendar({
|
|
|
6181
6255
|
Calendar.displayName = "Calendar";
|
|
6182
6256
|
var Popover = PopoverPrimitive__namespace.Root;
|
|
6183
6257
|
var PopoverTrigger = PopoverPrimitive__namespace.Trigger;
|
|
6184
|
-
var PopoverContent =
|
|
6258
|
+
var PopoverContent = React121__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6185
6259
|
PopoverPrimitive__namespace.Content,
|
|
6186
6260
|
{
|
|
6187
6261
|
ref,
|
|
@@ -6292,7 +6366,6 @@ var luaniverseSafelist = [
|
|
|
6292
6366
|
"lua:md:table",
|
|
6293
6367
|
"lua:md:table-header-group",
|
|
6294
6368
|
"lua:md:table-cell",
|
|
6295
|
-
"lua:py-2",
|
|
6296
6369
|
"lua:[&_tr]:border-none",
|
|
6297
6370
|
"lua:hidden",
|
|
6298
6371
|
"lua:shadow-sm",
|
|
@@ -6432,7 +6505,6 @@ var luaniverseSafelist = [
|
|
|
6432
6505
|
"lua:text-gray-600",
|
|
6433
6506
|
"lua:cursor-not-allowed",
|
|
6434
6507
|
"lua:mb-2",
|
|
6435
|
-
"lua:text-gray-900",
|
|
6436
6508
|
"lua:left-3",
|
|
6437
6509
|
"lua:top-1/2",
|
|
6438
6510
|
"lua:-translate-y-1/2",
|
|
@@ -6443,10 +6515,7 @@ var luaniverseSafelist = [
|
|
|
6443
6515
|
"lua:rounded-md",
|
|
6444
6516
|
"lua:bg-transparent",
|
|
6445
6517
|
"lua:px-3",
|
|
6446
|
-
"lua:py-2",
|
|
6447
6518
|
"lua:text-base",
|
|
6448
|
-
"lua:transition-all",
|
|
6449
|
-
"lua:duration-200",
|
|
6450
6519
|
"file:lua:border-0",
|
|
6451
6520
|
"file:lua:bg-transparent",
|
|
6452
6521
|
"file:lua:text-sm",
|
|
@@ -6470,7 +6539,9 @@ var luaniverseSafelist = [
|
|
|
6470
6539
|
"lua:right-3",
|
|
6471
6540
|
"lua:mt-2",
|
|
6472
6541
|
"lua:text-red-600",
|
|
6473
|
-
"lua:text-green-600"
|
|
6542
|
+
"lua:text-green-600",
|
|
6543
|
+
// Tooltip
|
|
6544
|
+
"lua:rounded-lg"
|
|
6474
6545
|
];
|
|
6475
6546
|
|
|
6476
6547
|
// src/tailwind.preset.js
|
|
@@ -6687,6 +6758,7 @@ exports.ExeIcon = exe_exports;
|
|
|
6687
6758
|
exports.FacebookLogo = FacebookLogo;
|
|
6688
6759
|
exports.Fig = Fig;
|
|
6689
6760
|
exports.FigIcon = fig_exports;
|
|
6761
|
+
exports.FloppyDiskIcon = FloppyDiskIcon;
|
|
6690
6762
|
exports.FolderIcon = FolderIcon;
|
|
6691
6763
|
exports.FolderSimpleLockIcon = FolderSimpleLockIcon;
|
|
6692
6764
|
exports.GIF = GIF;
|
|
@@ -6795,6 +6867,8 @@ exports.SheetFooter = SheetFooter;
|
|
|
6795
6867
|
exports.SheetHeader = SheetHeader;
|
|
6796
6868
|
exports.SheetTitle = SheetTitle;
|
|
6797
6869
|
exports.SheetTrigger = SheetTrigger;
|
|
6870
|
+
exports.ShieldTickIcon = ShieldTickIcon;
|
|
6871
|
+
exports.ShoppingBagOpenIcon = ShoppingBagOpenIcon;
|
|
6798
6872
|
exports.ShoppingCartIcon = ShoppingCartIcon;
|
|
6799
6873
|
exports.SidebarSimple = SidebarSimple;
|
|
6800
6874
|
exports.SignOut = SignOut;
|