luaniverse 4.0.44 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +252 -213
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +251 -214
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var React118 = 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');
|
|
@@ -41,7 +41,7 @@ function _interopNamespace(e) {
|
|
|
41
41
|
return Object.freeze(n);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
var
|
|
44
|
+
var React118__namespace = /*#__PURE__*/_interopNamespace(React118);
|
|
45
45
|
var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
|
|
46
46
|
var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
|
|
47
47
|
var useEmblaCarousel__default = /*#__PURE__*/_interopDefault(useEmblaCarousel);
|
|
@@ -238,7 +238,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
238
238
|
}
|
|
239
239
|
);
|
|
240
240
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
241
|
-
var Button =
|
|
241
|
+
var Button = React118__namespace.forwardRef(
|
|
242
242
|
({
|
|
243
243
|
className,
|
|
244
244
|
variant,
|
|
@@ -256,7 +256,7 @@ var Button = React116__namespace.forwardRef(
|
|
|
256
256
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
257
257
|
const hasStartAdornment = !!startAdornment;
|
|
258
258
|
const hasEndAdornment = !!endAdornment;
|
|
259
|
-
const hasTextContent =
|
|
259
|
+
const hasTextContent = React118__namespace.Children.toArray(children).some(
|
|
260
260
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
261
261
|
);
|
|
262
262
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -311,7 +311,7 @@ var iconButtonVariants = {
|
|
|
311
311
|
large: "lua:p-3 lua:size-12"
|
|
312
312
|
}
|
|
313
313
|
};
|
|
314
|
-
var IconButton =
|
|
314
|
+
var IconButton = React118__namespace.forwardRef(
|
|
315
315
|
({
|
|
316
316
|
className,
|
|
317
317
|
variant,
|
|
@@ -352,7 +352,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
352
352
|
className: "lua:text-current",
|
|
353
353
|
"aria-hidden": "true"
|
|
354
354
|
}
|
|
355
|
-
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children:
|
|
355
|
+
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: React118__namespace.cloneElement(children, {
|
|
356
356
|
"aria-hidden": "true"
|
|
357
357
|
}) })
|
|
358
358
|
}
|
|
@@ -360,7 +360,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
360
360
|
}
|
|
361
361
|
);
|
|
362
362
|
IconButton.displayName = "IconButton";
|
|
363
|
-
var Input =
|
|
363
|
+
var Input = React118__namespace.forwardRef(
|
|
364
364
|
({
|
|
365
365
|
className,
|
|
366
366
|
type = "text",
|
|
@@ -376,7 +376,7 @@ var Input = React116__namespace.forwardRef(
|
|
|
376
376
|
disabled,
|
|
377
377
|
...props
|
|
378
378
|
}, ref) => {
|
|
379
|
-
const generatedId =
|
|
379
|
+
const generatedId = React118__namespace.useId();
|
|
380
380
|
const inputId = id || generatedId;
|
|
381
381
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
382
382
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -523,7 +523,7 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
523
523
|
}
|
|
524
524
|
}
|
|
525
525
|
);
|
|
526
|
-
var Badge =
|
|
526
|
+
var Badge = React118__namespace.forwardRef(
|
|
527
527
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
528
528
|
const Comp = asChild ? reactSlot.Slot : "span";
|
|
529
529
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -538,7 +538,7 @@ var Badge = React116__namespace.forwardRef(
|
|
|
538
538
|
}
|
|
539
539
|
);
|
|
540
540
|
Badge.displayName = "Badge";
|
|
541
|
-
var Textarea =
|
|
541
|
+
var Textarea = React118__namespace.forwardRef(
|
|
542
542
|
({
|
|
543
543
|
className,
|
|
544
544
|
description,
|
|
@@ -551,7 +551,7 @@ var Textarea = React116__namespace.forwardRef(
|
|
|
551
551
|
disabled,
|
|
552
552
|
...props
|
|
553
553
|
}, ref) => {
|
|
554
|
-
const generatedId =
|
|
554
|
+
const generatedId = React118__namespace.useId();
|
|
555
555
|
const textareaId = id || generatedId;
|
|
556
556
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
557
557
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -646,7 +646,7 @@ var Tabs = TabsPrimitive__namespace.Root;
|
|
|
646
646
|
var tabsListVariants = classVarianceAuthority.cva([
|
|
647
647
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
648
648
|
].join(" "));
|
|
649
|
-
var TabsList =
|
|
649
|
+
var TabsList = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
650
650
|
TabsPrimitive__namespace.List,
|
|
651
651
|
{
|
|
652
652
|
ref,
|
|
@@ -662,7 +662,7 @@ var tabsTriggerVariants = classVarianceAuthority.cva([
|
|
|
662
662
|
"lua:data-[state=active]:text-blue-600 lua:data-[state=active]:border-b-2 lua:data-[state=active]:border-blue-600 lua:data-[state=active]:-mb-px",
|
|
663
663
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
664
664
|
].join(" "));
|
|
665
|
-
var TabsTrigger =
|
|
665
|
+
var TabsTrigger = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
666
666
|
TabsPrimitive__namespace.Trigger,
|
|
667
667
|
{
|
|
668
668
|
ref,
|
|
@@ -675,7 +675,7 @@ var tabsContentVariants = classVarianceAuthority.cva([
|
|
|
675
675
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
676
676
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
677
677
|
].join(" "));
|
|
678
|
-
var TabsContent =
|
|
678
|
+
var TabsContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
679
679
|
TabsPrimitive__namespace.Content,
|
|
680
680
|
{
|
|
681
681
|
ref,
|
|
@@ -684,7 +684,7 @@ var TabsContent = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
684
684
|
}
|
|
685
685
|
));
|
|
686
686
|
TabsContent.displayName = TabsPrimitive__namespace.Content.displayName;
|
|
687
|
-
var InputOTP =
|
|
687
|
+
var InputOTP = React118__namespace.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
688
688
|
inputOtp.OTPInput,
|
|
689
689
|
{
|
|
690
690
|
ref,
|
|
@@ -697,10 +697,10 @@ var InputOTP = React116__namespace.forwardRef(({ className, containerClassName,
|
|
|
697
697
|
}
|
|
698
698
|
));
|
|
699
699
|
InputOTP.displayName = "InputOTP";
|
|
700
|
-
var InputOTPGroup =
|
|
700
|
+
var InputOTPGroup = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
701
701
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
702
|
-
var InputOTPSlot =
|
|
703
|
-
const inputOTPContext =
|
|
702
|
+
var InputOTPSlot = React118__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
703
|
+
const inputOTPContext = React118__namespace.useContext(inputOtp.OTPInputContext);
|
|
704
704
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
705
705
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
706
706
|
"div",
|
|
@@ -720,7 +720,7 @@ var InputOTPSlot = React116__namespace.forwardRef(({ index, className, ...props
|
|
|
720
720
|
);
|
|
721
721
|
});
|
|
722
722
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
723
|
-
var InputOTPSeparator =
|
|
723
|
+
var InputOTPSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
724
724
|
"div",
|
|
725
725
|
{
|
|
726
726
|
ref,
|
|
@@ -734,7 +734,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
734
734
|
var TooltipProvider = TooltipPrimitive__namespace.Provider;
|
|
735
735
|
var Tooltip = TooltipPrimitive__namespace.Root;
|
|
736
736
|
var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
|
|
737
|
-
var TooltipArrow =
|
|
737
|
+
var TooltipArrow = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
738
738
|
TooltipPrimitive__namespace.Arrow,
|
|
739
739
|
{
|
|
740
740
|
ref,
|
|
@@ -751,7 +751,7 @@ var TooltipArrow = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
751
751
|
}
|
|
752
752
|
));
|
|
753
753
|
TooltipArrow.displayName = TooltipPrimitive__namespace.Arrow.displayName;
|
|
754
|
-
var TooltipContent =
|
|
754
|
+
var TooltipContent = React118__namespace.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
755
755
|
TooltipPrimitive__namespace.Content,
|
|
756
756
|
{
|
|
757
757
|
ref,
|
|
@@ -775,7 +775,7 @@ var TooltipContent = React116__namespace.forwardRef(({ className, sideOffset = 4
|
|
|
775
775
|
}
|
|
776
776
|
) }));
|
|
777
777
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
778
|
-
var Card =
|
|
778
|
+
var Card = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
779
779
|
"div",
|
|
780
780
|
{
|
|
781
781
|
ref,
|
|
@@ -787,7 +787,7 @@ var Card = React116__namespace.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
787
787
|
}
|
|
788
788
|
));
|
|
789
789
|
Card.displayName = "Card";
|
|
790
|
-
var CardHeader =
|
|
790
|
+
var CardHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
791
791
|
"div",
|
|
792
792
|
{
|
|
793
793
|
ref,
|
|
@@ -796,7 +796,7 @@ var CardHeader = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
796
796
|
}
|
|
797
797
|
));
|
|
798
798
|
CardHeader.displayName = "CardHeader";
|
|
799
|
-
var CardTitle =
|
|
799
|
+
var CardTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
800
800
|
"div",
|
|
801
801
|
{
|
|
802
802
|
ref,
|
|
@@ -805,7 +805,7 @@ var CardTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
805
805
|
}
|
|
806
806
|
));
|
|
807
807
|
CardTitle.displayName = "CardTitle";
|
|
808
|
-
var CardDescription =
|
|
808
|
+
var CardDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
809
809
|
"div",
|
|
810
810
|
{
|
|
811
811
|
ref,
|
|
@@ -814,9 +814,9 @@ var CardDescription = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
814
814
|
}
|
|
815
815
|
));
|
|
816
816
|
CardDescription.displayName = "CardDescription";
|
|
817
|
-
var CardContent =
|
|
817
|
+
var CardContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
818
818
|
CardContent.displayName = "CardContent";
|
|
819
|
-
var CardFooter =
|
|
819
|
+
var CardFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
820
820
|
"div",
|
|
821
821
|
{
|
|
822
822
|
ref,
|
|
@@ -889,7 +889,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
889
889
|
restProps
|
|
890
890
|
};
|
|
891
891
|
}
|
|
892
|
-
var ArrowLeft =
|
|
892
|
+
var ArrowLeft = React118__namespace.forwardRef(
|
|
893
893
|
({ size = 20, ...props }, ref) => {
|
|
894
894
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
895
895
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -918,7 +918,7 @@ var ArrowLeft = React116__namespace.forwardRef(
|
|
|
918
918
|
}
|
|
919
919
|
);
|
|
920
920
|
ArrowLeft.displayName = "ArrowLeft";
|
|
921
|
-
var ArrowRight =
|
|
921
|
+
var ArrowRight = React118__namespace.forwardRef(
|
|
922
922
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
923
923
|
"svg",
|
|
924
924
|
{
|
|
@@ -940,7 +940,7 @@ var ArrowRight = React116__namespace.forwardRef(
|
|
|
940
940
|
)
|
|
941
941
|
);
|
|
942
942
|
ArrowRight.displayName = "ArrowRight";
|
|
943
|
-
var ArrowClockwiseIcon =
|
|
943
|
+
var ArrowClockwiseIcon = React118__namespace.forwardRef(
|
|
944
944
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
945
945
|
"svg",
|
|
946
946
|
{
|
|
@@ -962,7 +962,7 @@ var ArrowClockwiseIcon = React116__namespace.forwardRef(
|
|
|
962
962
|
)
|
|
963
963
|
);
|
|
964
964
|
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
965
|
-
var ArrowsClockwiseIcon =
|
|
965
|
+
var ArrowsClockwiseIcon = React118__namespace.forwardRef(
|
|
966
966
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
967
967
|
"svg",
|
|
968
968
|
{
|
|
@@ -984,7 +984,7 @@ var ArrowsClockwiseIcon = React116__namespace.forwardRef(
|
|
|
984
984
|
)
|
|
985
985
|
);
|
|
986
986
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
987
|
-
var ArrowSquareOut =
|
|
987
|
+
var ArrowSquareOut = React118__namespace.forwardRef(
|
|
988
988
|
({ size = 20, ...props }, ref) => {
|
|
989
989
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
990
990
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1013,7 +1013,7 @@ var ArrowSquareOut = React116__namespace.forwardRef(
|
|
|
1013
1013
|
}
|
|
1014
1014
|
);
|
|
1015
1015
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
1016
|
-
var ArrowUp =
|
|
1016
|
+
var ArrowUp = React118__namespace.forwardRef(
|
|
1017
1017
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1018
1018
|
"svg",
|
|
1019
1019
|
{
|
|
@@ -1035,7 +1035,7 @@ var ArrowUp = React116__namespace.forwardRef(
|
|
|
1035
1035
|
)
|
|
1036
1036
|
);
|
|
1037
1037
|
ArrowUp.displayName = "ArrowUp";
|
|
1038
|
-
var BooksIcon =
|
|
1038
|
+
var BooksIcon = React118__namespace.forwardRef(
|
|
1039
1039
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1040
1040
|
"svg",
|
|
1041
1041
|
{
|
|
@@ -1057,7 +1057,7 @@ var BooksIcon = React116__namespace.forwardRef(
|
|
|
1057
1057
|
)
|
|
1058
1058
|
);
|
|
1059
1059
|
BooksIcon.displayName = "BooksIcon";
|
|
1060
|
-
var Camera =
|
|
1060
|
+
var Camera = React118__namespace.forwardRef(
|
|
1061
1061
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1062
1062
|
"svg",
|
|
1063
1063
|
{
|
|
@@ -1079,7 +1079,7 @@ var Camera = React116__namespace.forwardRef(
|
|
|
1079
1079
|
)
|
|
1080
1080
|
);
|
|
1081
1081
|
Camera.displayName = "Camera";
|
|
1082
|
-
var CaretDown =
|
|
1082
|
+
var CaretDown = React118__namespace.forwardRef(
|
|
1083
1083
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1084
1084
|
"svg",
|
|
1085
1085
|
{
|
|
@@ -1101,7 +1101,7 @@ var CaretDown = React116__namespace.forwardRef(
|
|
|
1101
1101
|
)
|
|
1102
1102
|
);
|
|
1103
1103
|
CaretDown.displayName = "CaretDown";
|
|
1104
|
-
var CaretRight =
|
|
1104
|
+
var CaretRight = React118__namespace.forwardRef(
|
|
1105
1105
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1106
1106
|
"svg",
|
|
1107
1107
|
{
|
|
@@ -1123,7 +1123,7 @@ var CaretRight = React116__namespace.forwardRef(
|
|
|
1123
1123
|
)
|
|
1124
1124
|
);
|
|
1125
1125
|
CaretRight.displayName = "CaretRight";
|
|
1126
|
-
var CaretUpIcon =
|
|
1126
|
+
var CaretUpIcon = React118__namespace.forwardRef(
|
|
1127
1127
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1128
1128
|
"svg",
|
|
1129
1129
|
{
|
|
@@ -1145,7 +1145,7 @@ var CaretUpIcon = React116__namespace.forwardRef(
|
|
|
1145
1145
|
)
|
|
1146
1146
|
);
|
|
1147
1147
|
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1148
|
-
var ChartBar =
|
|
1148
|
+
var ChartBar = React118__namespace.forwardRef(
|
|
1149
1149
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1150
1150
|
"svg",
|
|
1151
1151
|
{
|
|
@@ -1167,7 +1167,7 @@ var ChartBar = React116__namespace.forwardRef(
|
|
|
1167
1167
|
)
|
|
1168
1168
|
);
|
|
1169
1169
|
ChartBar.displayName = "ChartBar";
|
|
1170
|
-
var Chat =
|
|
1170
|
+
var Chat = React118__namespace.forwardRef(
|
|
1171
1171
|
({ size = 20, ...props }, ref) => {
|
|
1172
1172
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1173
1173
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1196,7 +1196,7 @@ var Chat = React116__namespace.forwardRef(
|
|
|
1196
1196
|
}
|
|
1197
1197
|
);
|
|
1198
1198
|
Chat.displayName = "Chat";
|
|
1199
|
-
var ChatsCircle =
|
|
1199
|
+
var ChatsCircle = React118__namespace.forwardRef(
|
|
1200
1200
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1201
1201
|
"svg",
|
|
1202
1202
|
{
|
|
@@ -1218,7 +1218,7 @@ var ChatsCircle = React116__namespace.forwardRef(
|
|
|
1218
1218
|
)
|
|
1219
1219
|
);
|
|
1220
1220
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1221
|
-
var Check =
|
|
1221
|
+
var Check = React118__namespace.forwardRef(
|
|
1222
1222
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1223
1223
|
"svg",
|
|
1224
1224
|
{
|
|
@@ -1240,7 +1240,7 @@ var Check = React116__namespace.forwardRef(
|
|
|
1240
1240
|
)
|
|
1241
1241
|
);
|
|
1242
1242
|
Check.displayName = "Check";
|
|
1243
|
-
var CheckSquareIcon =
|
|
1243
|
+
var CheckSquareIcon = React118__namespace.forwardRef(
|
|
1244
1244
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1245
1245
|
"svg",
|
|
1246
1246
|
{
|
|
@@ -1262,7 +1262,7 @@ var CheckSquareIcon = React116__namespace.forwardRef(
|
|
|
1262
1262
|
)
|
|
1263
1263
|
);
|
|
1264
1264
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1265
|
-
var Circle =
|
|
1265
|
+
var Circle = React118__namespace.forwardRef(
|
|
1266
1266
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1267
1267
|
"svg",
|
|
1268
1268
|
{
|
|
@@ -1284,7 +1284,7 @@ var Circle = React116__namespace.forwardRef(
|
|
|
1284
1284
|
)
|
|
1285
1285
|
);
|
|
1286
1286
|
Circle.displayName = "Circle";
|
|
1287
|
-
var ClipboardTextIcon =
|
|
1287
|
+
var ClipboardTextIcon = React118__namespace.forwardRef(
|
|
1288
1288
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1289
1289
|
"svg",
|
|
1290
1290
|
{
|
|
@@ -1306,7 +1306,7 @@ var ClipboardTextIcon = React116__namespace.forwardRef(
|
|
|
1306
1306
|
)
|
|
1307
1307
|
);
|
|
1308
1308
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1309
|
-
var Clock =
|
|
1309
|
+
var Clock = React118__namespace.forwardRef(
|
|
1310
1310
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1311
1311
|
"svg",
|
|
1312
1312
|
{
|
|
@@ -1328,7 +1328,7 @@ var Clock = React116__namespace.forwardRef(
|
|
|
1328
1328
|
)
|
|
1329
1329
|
);
|
|
1330
1330
|
Clock.displayName = "Clock";
|
|
1331
|
-
var CopySimpleIcon =
|
|
1331
|
+
var CopySimpleIcon = React118__namespace.forwardRef(
|
|
1332
1332
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1333
1333
|
"svg",
|
|
1334
1334
|
{
|
|
@@ -1350,7 +1350,7 @@ var CopySimpleIcon = React116__namespace.forwardRef(
|
|
|
1350
1350
|
)
|
|
1351
1351
|
);
|
|
1352
1352
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1353
|
-
var CreditCard =
|
|
1353
|
+
var CreditCard = React118__namespace.forwardRef(
|
|
1354
1354
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1355
1355
|
"svg",
|
|
1356
1356
|
{
|
|
@@ -1372,7 +1372,7 @@ var CreditCard = React116__namespace.forwardRef(
|
|
|
1372
1372
|
)
|
|
1373
1373
|
);
|
|
1374
1374
|
CreditCard.displayName = "CreditCard";
|
|
1375
|
-
var CurrencyCircleDollar =
|
|
1375
|
+
var CurrencyCircleDollar = React118__namespace.default.forwardRef(
|
|
1376
1376
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1377
1377
|
"svg",
|
|
1378
1378
|
{
|
|
@@ -1394,7 +1394,7 @@ var CurrencyCircleDollar = React116__namespace.default.forwardRef(
|
|
|
1394
1394
|
)
|
|
1395
1395
|
);
|
|
1396
1396
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1397
|
-
var DotsSixVerticalIcon =
|
|
1397
|
+
var DotsSixVerticalIcon = React118__namespace.forwardRef(
|
|
1398
1398
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1399
1399
|
"svg",
|
|
1400
1400
|
{
|
|
@@ -1416,7 +1416,7 @@ var DotsSixVerticalIcon = React116__namespace.forwardRef(
|
|
|
1416
1416
|
)
|
|
1417
1417
|
);
|
|
1418
1418
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1419
|
-
var DotsThree =
|
|
1419
|
+
var DotsThree = React118__namespace.forwardRef(
|
|
1420
1420
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1421
1421
|
"svg",
|
|
1422
1422
|
{
|
|
@@ -1438,7 +1438,7 @@ var DotsThree = React116__namespace.forwardRef(
|
|
|
1438
1438
|
)
|
|
1439
1439
|
);
|
|
1440
1440
|
DotsThree.displayName = "DotsThree";
|
|
1441
|
-
var DotsThreeVertical =
|
|
1441
|
+
var DotsThreeVertical = React118__namespace.forwardRef(
|
|
1442
1442
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1443
1443
|
"svg",
|
|
1444
1444
|
{
|
|
@@ -1460,7 +1460,7 @@ var DotsThreeVertical = React116__namespace.forwardRef(
|
|
|
1460
1460
|
)
|
|
1461
1461
|
);
|
|
1462
1462
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1463
|
-
var FacebookLogo =
|
|
1463
|
+
var FacebookLogo = React118__namespace.forwardRef(
|
|
1464
1464
|
({ size = 20, ...props }, ref) => {
|
|
1465
1465
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1466
1466
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1489,7 +1489,7 @@ var FacebookLogo = React116__namespace.forwardRef(
|
|
|
1489
1489
|
}
|
|
1490
1490
|
);
|
|
1491
1491
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1492
|
-
var FolderIcon =
|
|
1492
|
+
var FolderIcon = React118__namespace.forwardRef(
|
|
1493
1493
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1494
1494
|
"svg",
|
|
1495
1495
|
{
|
|
@@ -1511,7 +1511,7 @@ var FolderIcon = React116__namespace.forwardRef(
|
|
|
1511
1511
|
)
|
|
1512
1512
|
);
|
|
1513
1513
|
FolderIcon.displayName = "FolderIcon";
|
|
1514
|
-
var FolderSimpleLockIcon =
|
|
1514
|
+
var FolderSimpleLockIcon = React118__namespace.forwardRef(
|
|
1515
1515
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1516
1516
|
"svg",
|
|
1517
1517
|
{
|
|
@@ -1533,7 +1533,7 @@ var FolderSimpleLockIcon = React116__namespace.forwardRef(
|
|
|
1533
1533
|
)
|
|
1534
1534
|
);
|
|
1535
1535
|
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1536
|
-
var Gear =
|
|
1536
|
+
var Gear = React118__namespace.forwardRef(
|
|
1537
1537
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1538
1538
|
"svg",
|
|
1539
1539
|
{
|
|
@@ -1555,7 +1555,7 @@ var Gear = React116__namespace.forwardRef(
|
|
|
1555
1555
|
)
|
|
1556
1556
|
);
|
|
1557
1557
|
Gear.displayName = "Gear";
|
|
1558
|
-
var GearSix =
|
|
1558
|
+
var GearSix = React118__namespace.forwardRef(
|
|
1559
1559
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1560
1560
|
"svg",
|
|
1561
1561
|
{
|
|
@@ -1577,7 +1577,7 @@ var GearSix = React116__namespace.forwardRef(
|
|
|
1577
1577
|
)
|
|
1578
1578
|
);
|
|
1579
1579
|
GearSix.displayName = "GearSix";
|
|
1580
|
-
var GitCommit =
|
|
1580
|
+
var GitCommit = React118__namespace.forwardRef(
|
|
1581
1581
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1582
1582
|
"svg",
|
|
1583
1583
|
{
|
|
@@ -1599,7 +1599,7 @@ var GitCommit = React116__namespace.forwardRef(
|
|
|
1599
1599
|
)
|
|
1600
1600
|
);
|
|
1601
1601
|
GitCommit.displayName = "GitCommit";
|
|
1602
|
-
var Headset =
|
|
1602
|
+
var Headset = React118__namespace.forwardRef(
|
|
1603
1603
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1604
1604
|
"svg",
|
|
1605
1605
|
{
|
|
@@ -1621,7 +1621,7 @@ var Headset = React116__namespace.forwardRef(
|
|
|
1621
1621
|
)
|
|
1622
1622
|
);
|
|
1623
1623
|
Headset.displayName = "Headset";
|
|
1624
|
-
var ImageIcon =
|
|
1624
|
+
var ImageIcon = React118__namespace.forwardRef(
|
|
1625
1625
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1626
1626
|
"svg",
|
|
1627
1627
|
{
|
|
@@ -1643,7 +1643,7 @@ var ImageIcon = React116__namespace.forwardRef(
|
|
|
1643
1643
|
)
|
|
1644
1644
|
);
|
|
1645
1645
|
ImageIcon.displayName = "ImageIcon";
|
|
1646
|
-
var InstagramLogo =
|
|
1646
|
+
var InstagramLogo = React118__namespace.forwardRef(
|
|
1647
1647
|
({ size = 20, ...props }, ref) => {
|
|
1648
1648
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1649
1649
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1672,7 +1672,7 @@ var InstagramLogo = React116__namespace.forwardRef(
|
|
|
1672
1672
|
}
|
|
1673
1673
|
);
|
|
1674
1674
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1675
|
-
var KeyIcon =
|
|
1675
|
+
var KeyIcon = React118__namespace.forwardRef(
|
|
1676
1676
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1677
1677
|
"svg",
|
|
1678
1678
|
{
|
|
@@ -1694,7 +1694,7 @@ var KeyIcon = React116__namespace.forwardRef(
|
|
|
1694
1694
|
)
|
|
1695
1695
|
);
|
|
1696
1696
|
KeyIcon.displayName = "KeyIcon";
|
|
1697
|
-
var LinkIcon =
|
|
1697
|
+
var LinkIcon = React118__namespace.forwardRef(
|
|
1698
1698
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1699
1699
|
"svg",
|
|
1700
1700
|
{
|
|
@@ -1716,7 +1716,7 @@ var LinkIcon = React116__namespace.forwardRef(
|
|
|
1716
1716
|
)
|
|
1717
1717
|
);
|
|
1718
1718
|
LinkIcon.displayName = "LinkIcon";
|
|
1719
|
-
var LinkSimple =
|
|
1719
|
+
var LinkSimple = React118__namespace.forwardRef(
|
|
1720
1720
|
({ size = 20, ...props }, ref) => {
|
|
1721
1721
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1722
1722
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1745,7 +1745,7 @@ var LinkSimple = React116__namespace.forwardRef(
|
|
|
1745
1745
|
}
|
|
1746
1746
|
);
|
|
1747
1747
|
LinkSimple.displayName = "LinkSimple";
|
|
1748
|
-
var LockSimple =
|
|
1748
|
+
var LockSimple = React118__namespace.default.forwardRef(
|
|
1749
1749
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1750
1750
|
"svg",
|
|
1751
1751
|
{
|
|
@@ -1767,7 +1767,7 @@ var LockSimple = React116__namespace.default.forwardRef(
|
|
|
1767
1767
|
)
|
|
1768
1768
|
);
|
|
1769
1769
|
LockSimple.displayName = "LockSimple";
|
|
1770
|
-
var Logo =
|
|
1770
|
+
var Logo = React118__namespace.forwardRef(
|
|
1771
1771
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1772
1772
|
"svg",
|
|
1773
1773
|
{
|
|
@@ -2241,7 +2241,7 @@ var Logo = React116__namespace.forwardRef(
|
|
|
2241
2241
|
)
|
|
2242
2242
|
);
|
|
2243
2243
|
Logo.displayName = "Logo";
|
|
2244
|
-
var MagnifyingGlass =
|
|
2244
|
+
var MagnifyingGlass = React118__namespace.forwardRef(
|
|
2245
2245
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2246
2246
|
"svg",
|
|
2247
2247
|
{
|
|
@@ -2263,7 +2263,7 @@ var MagnifyingGlass = React116__namespace.forwardRef(
|
|
|
2263
2263
|
)
|
|
2264
2264
|
);
|
|
2265
2265
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2266
|
-
var MapPin =
|
|
2266
|
+
var MapPin = React118__namespace.forwardRef(
|
|
2267
2267
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2268
2268
|
"svg",
|
|
2269
2269
|
{
|
|
@@ -2285,7 +2285,7 @@ var MapPin = React116__namespace.forwardRef(
|
|
|
2285
2285
|
)
|
|
2286
2286
|
);
|
|
2287
2287
|
MapPin.displayName = "MapPin";
|
|
2288
|
-
var Microphone =
|
|
2288
|
+
var Microphone = React118__namespace.forwardRef(
|
|
2289
2289
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2290
2290
|
"svg",
|
|
2291
2291
|
{
|
|
@@ -2307,7 +2307,7 @@ var Microphone = React116__namespace.forwardRef(
|
|
|
2307
2307
|
)
|
|
2308
2308
|
);
|
|
2309
2309
|
Microphone.displayName = "Microphone";
|
|
2310
|
-
var Minus =
|
|
2310
|
+
var Minus = React118__namespace.forwardRef(
|
|
2311
2311
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2312
2312
|
"svg",
|
|
2313
2313
|
{
|
|
@@ -2329,7 +2329,7 @@ var Minus = React116__namespace.forwardRef(
|
|
|
2329
2329
|
)
|
|
2330
2330
|
);
|
|
2331
2331
|
Minus.displayName = "Minus";
|
|
2332
|
-
var MinusCircleIcon =
|
|
2332
|
+
var MinusCircleIcon = React118__namespace.forwardRef(
|
|
2333
2333
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2334
2334
|
"svg",
|
|
2335
2335
|
{
|
|
@@ -2351,7 +2351,7 @@ var MinusCircleIcon = React116__namespace.forwardRef(
|
|
|
2351
2351
|
)
|
|
2352
2352
|
);
|
|
2353
2353
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2354
|
-
var PackageIcon =
|
|
2354
|
+
var PackageIcon = React118__namespace.forwardRef(
|
|
2355
2355
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2356
2356
|
"svg",
|
|
2357
2357
|
{
|
|
@@ -2373,7 +2373,7 @@ var PackageIcon = React116__namespace.forwardRef(
|
|
|
2373
2373
|
)
|
|
2374
2374
|
);
|
|
2375
2375
|
PackageIcon.displayName = "PackageIcon";
|
|
2376
|
-
var Paperclip =
|
|
2376
|
+
var Paperclip = React118__namespace.forwardRef(
|
|
2377
2377
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2378
2378
|
"svg",
|
|
2379
2379
|
{
|
|
@@ -2395,7 +2395,7 @@ var Paperclip = React116__namespace.forwardRef(
|
|
|
2395
2395
|
)
|
|
2396
2396
|
);
|
|
2397
2397
|
Paperclip.displayName = "Paperclip";
|
|
2398
|
-
var PaperPlane =
|
|
2398
|
+
var PaperPlane = React118__namespace.forwardRef(
|
|
2399
2399
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2400
2400
|
"svg",
|
|
2401
2401
|
{
|
|
@@ -2417,7 +2417,7 @@ var PaperPlane = React116__namespace.forwardRef(
|
|
|
2417
2417
|
)
|
|
2418
2418
|
);
|
|
2419
2419
|
PaperPlane.displayName = "PaperPlane";
|
|
2420
|
-
var PaperPlaneTilt =
|
|
2420
|
+
var PaperPlaneTilt = React118__namespace.forwardRef(
|
|
2421
2421
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2422
2422
|
"svg",
|
|
2423
2423
|
{
|
|
@@ -2439,7 +2439,7 @@ var PaperPlaneTilt = React116__namespace.forwardRef(
|
|
|
2439
2439
|
)
|
|
2440
2440
|
);
|
|
2441
2441
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2442
|
-
var PencilSimple =
|
|
2442
|
+
var PencilSimple = React118__namespace.forwardRef(
|
|
2443
2443
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2444
2444
|
"svg",
|
|
2445
2445
|
{
|
|
@@ -2461,7 +2461,7 @@ var PencilSimple = React116__namespace.forwardRef(
|
|
|
2461
2461
|
)
|
|
2462
2462
|
);
|
|
2463
2463
|
PencilSimple.displayName = "PencilSimple";
|
|
2464
|
-
var PlugsRegular =
|
|
2464
|
+
var PlugsRegular = React118__namespace.forwardRef(
|
|
2465
2465
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2466
2466
|
"svg",
|
|
2467
2467
|
{
|
|
@@ -2483,7 +2483,7 @@ var PlugsRegular = React116__namespace.forwardRef(
|
|
|
2483
2483
|
)
|
|
2484
2484
|
);
|
|
2485
2485
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2486
|
-
var ShoppingCartIcon =
|
|
2486
|
+
var ShoppingCartIcon = React118__namespace.forwardRef(
|
|
2487
2487
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2488
2488
|
"svg",
|
|
2489
2489
|
{
|
|
@@ -2505,7 +2505,7 @@ var ShoppingCartIcon = React116__namespace.forwardRef(
|
|
|
2505
2505
|
)
|
|
2506
2506
|
);
|
|
2507
2507
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2508
|
-
var Plus =
|
|
2508
|
+
var Plus = React118__namespace.forwardRef(
|
|
2509
2509
|
({ size = 20, ...props }, ref) => {
|
|
2510
2510
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2511
2511
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2534,7 +2534,7 @@ var Plus = React116__namespace.forwardRef(
|
|
|
2534
2534
|
}
|
|
2535
2535
|
);
|
|
2536
2536
|
Plus.displayName = "Plus";
|
|
2537
|
-
var RecordIcon =
|
|
2537
|
+
var RecordIcon = React118__namespace.forwardRef(
|
|
2538
2538
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2539
2539
|
"svg",
|
|
2540
2540
|
{
|
|
@@ -2556,7 +2556,7 @@ var RecordIcon = React116__namespace.forwardRef(
|
|
|
2556
2556
|
)
|
|
2557
2557
|
);
|
|
2558
2558
|
RecordIcon.displayName = "RecordIcon";
|
|
2559
|
-
var SidebarSimple =
|
|
2559
|
+
var SidebarSimple = React118__namespace.forwardRef(
|
|
2560
2560
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2561
2561
|
"svg",
|
|
2562
2562
|
{
|
|
@@ -2578,7 +2578,7 @@ var SidebarSimple = React116__namespace.forwardRef(
|
|
|
2578
2578
|
)
|
|
2579
2579
|
);
|
|
2580
2580
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2581
|
-
var SignOut =
|
|
2581
|
+
var SignOut = React118__namespace.forwardRef(
|
|
2582
2582
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2583
2583
|
"svg",
|
|
2584
2584
|
{
|
|
@@ -2600,7 +2600,7 @@ var SignOut = React116__namespace.forwardRef(
|
|
|
2600
2600
|
)
|
|
2601
2601
|
);
|
|
2602
2602
|
SignOut.displayName = "SignOut";
|
|
2603
|
-
var Storefront =
|
|
2603
|
+
var Storefront = React118__namespace.forwardRef(
|
|
2604
2604
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2605
2605
|
"svg",
|
|
2606
2606
|
{
|
|
@@ -2622,7 +2622,7 @@ var Storefront = React116__namespace.forwardRef(
|
|
|
2622
2622
|
)
|
|
2623
2623
|
);
|
|
2624
2624
|
Storefront.displayName = "Storefront";
|
|
2625
|
-
var Tag =
|
|
2625
|
+
var Tag = React118__namespace.forwardRef(
|
|
2626
2626
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2627
2627
|
"svg",
|
|
2628
2628
|
{
|
|
@@ -2644,7 +2644,7 @@ var Tag = React116__namespace.forwardRef(
|
|
|
2644
2644
|
)
|
|
2645
2645
|
);
|
|
2646
2646
|
Tag.displayName = "Tag";
|
|
2647
|
-
var Ticket =
|
|
2647
|
+
var Ticket = React118__namespace.forwardRef(
|
|
2648
2648
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2649
2649
|
"svg",
|
|
2650
2650
|
{
|
|
@@ -2666,7 +2666,7 @@ var Ticket = React116__namespace.forwardRef(
|
|
|
2666
2666
|
)
|
|
2667
2667
|
);
|
|
2668
2668
|
Ticket.displayName = "Ticket";
|
|
2669
|
-
var Trash =
|
|
2669
|
+
var Trash = React118__namespace.forwardRef(
|
|
2670
2670
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2671
2671
|
"svg",
|
|
2672
2672
|
{
|
|
@@ -2688,7 +2688,7 @@ var Trash = React116__namespace.forwardRef(
|
|
|
2688
2688
|
)
|
|
2689
2689
|
);
|
|
2690
2690
|
Trash.displayName = "Trash";
|
|
2691
|
-
var UserCircle =
|
|
2691
|
+
var UserCircle = React118__namespace.forwardRef(
|
|
2692
2692
|
({ size = 24, ...props }, ref) => {
|
|
2693
2693
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2694
2694
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2717,7 +2717,7 @@ var UserCircle = React116__namespace.forwardRef(
|
|
|
2717
2717
|
}
|
|
2718
2718
|
);
|
|
2719
2719
|
UserCircle.displayName = "UserCircle";
|
|
2720
|
-
var UserIcon =
|
|
2720
|
+
var UserIcon = React118__namespace.forwardRef(
|
|
2721
2721
|
({ size = 24, ...props }, ref) => {
|
|
2722
2722
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2723
2723
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2746,7 +2746,7 @@ var UserIcon = React116__namespace.forwardRef(
|
|
|
2746
2746
|
}
|
|
2747
2747
|
);
|
|
2748
2748
|
UserIcon.displayName = "UserIcon";
|
|
2749
|
-
var Users =
|
|
2749
|
+
var Users = React118__namespace.forwardRef(
|
|
2750
2750
|
({ size = 20, ...props }, ref) => {
|
|
2751
2751
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2752
2752
|
props,
|
|
@@ -2775,7 +2775,7 @@ var Users = React116__namespace.forwardRef(
|
|
|
2775
2775
|
}
|
|
2776
2776
|
);
|
|
2777
2777
|
Users.displayName = "Users";
|
|
2778
|
-
var VideoCamera =
|
|
2778
|
+
var VideoCamera = React118__namespace.forwardRef(
|
|
2779
2779
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2780
2780
|
"svg",
|
|
2781
2781
|
{
|
|
@@ -2797,7 +2797,7 @@ var VideoCamera = React116__namespace.forwardRef(
|
|
|
2797
2797
|
)
|
|
2798
2798
|
);
|
|
2799
2799
|
VideoCamera.displayName = "VideoCamera";
|
|
2800
|
-
var WhatsAppLogo =
|
|
2800
|
+
var WhatsAppLogo = React118__namespace.forwardRef(
|
|
2801
2801
|
({ size = 20, ...props }, ref) => {
|
|
2802
2802
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2803
2803
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2826,7 +2826,7 @@ var WhatsAppLogo = React116__namespace.forwardRef(
|
|
|
2826
2826
|
}
|
|
2827
2827
|
);
|
|
2828
2828
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2829
|
-
var WarningOctagon =
|
|
2829
|
+
var WarningOctagon = React118__namespace.forwardRef(
|
|
2830
2830
|
({ size = 20, ...props }, ref) => {
|
|
2831
2831
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2832
2832
|
props,
|
|
@@ -2855,7 +2855,7 @@ var WarningOctagon = React116__namespace.forwardRef(
|
|
|
2855
2855
|
}
|
|
2856
2856
|
);
|
|
2857
2857
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2858
|
-
var WarningTriangle =
|
|
2858
|
+
var WarningTriangle = React118__namespace.forwardRef(
|
|
2859
2859
|
({ size = 20, ...props }, ref) => {
|
|
2860
2860
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2861
2861
|
props,
|
|
@@ -2884,7 +2884,7 @@ var WarningTriangle = React116__namespace.forwardRef(
|
|
|
2884
2884
|
}
|
|
2885
2885
|
);
|
|
2886
2886
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2887
|
-
var Waveform =
|
|
2887
|
+
var Waveform = React118__namespace.forwardRef(
|
|
2888
2888
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2889
2889
|
"svg",
|
|
2890
2890
|
{
|
|
@@ -2906,7 +2906,7 @@ var Waveform = React116__namespace.forwardRef(
|
|
|
2906
2906
|
)
|
|
2907
2907
|
);
|
|
2908
2908
|
Waveform.displayName = "Waveform";
|
|
2909
|
-
var WrenchIcon =
|
|
2909
|
+
var WrenchIcon = React118__namespace.forwardRef(
|
|
2910
2910
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2911
2911
|
"svg",
|
|
2912
2912
|
{
|
|
@@ -2928,7 +2928,7 @@ var WrenchIcon = React116__namespace.forwardRef(
|
|
|
2928
2928
|
)
|
|
2929
2929
|
);
|
|
2930
2930
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2931
|
-
var XIcon =
|
|
2931
|
+
var XIcon = React118__namespace.forwardRef(
|
|
2932
2932
|
({ size = 24, ...props }, ref) => {
|
|
2933
2933
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2934
2934
|
props,
|
|
@@ -2959,13 +2959,50 @@ var XIcon = React116__namespace.forwardRef(
|
|
|
2959
2959
|
}
|
|
2960
2960
|
);
|
|
2961
2961
|
XIcon.displayName = "XIcon";
|
|
2962
|
+
var DownloadIcon = React118__namespace.forwardRef(
|
|
2963
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2964
|
+
"svg",
|
|
2965
|
+
{
|
|
2966
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2967
|
+
ref,
|
|
2968
|
+
width: size,
|
|
2969
|
+
height: size,
|
|
2970
|
+
fill: "none",
|
|
2971
|
+
viewBox: "0 0 24 24",
|
|
2972
|
+
children: [
|
|
2973
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Download" }),
|
|
2974
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M21 13.5v6a.75.75 0 0 1-.75.75H3.75A.75.75 0 0 1 3 19.5v-6a.75.75 0 1 1 1.5 0v5.25h15V13.5a.75.75 0 1 1 1.5 0M8.78 7.282l2.47-2.47v8.69a.75.75 0 1 0 1.5 0V4.81l2.47 2.47a.75.75 0 1 0 1.06-1.061l-3.75-3.75a.75.75 0 0 0-1.06 0L7.72 6.22a.75.75 0 0 0 1.06 1.061" })
|
|
2975
|
+
]
|
|
2976
|
+
}
|
|
2977
|
+
)
|
|
2978
|
+
);
|
|
2979
|
+
DownloadIcon.displayName = "DownloadIcon";
|
|
2980
|
+
var TextIcon = React118__namespace.forwardRef(
|
|
2981
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2982
|
+
"svg",
|
|
2983
|
+
{
|
|
2984
|
+
ref,
|
|
2985
|
+
width: size,
|
|
2986
|
+
height: size,
|
|
2987
|
+
...props,
|
|
2988
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2989
|
+
fill: "none",
|
|
2990
|
+
viewBox: "0 0 24 24",
|
|
2991
|
+
children: [
|
|
2992
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Text" }),
|
|
2993
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M19.5 5.25v3a.75.75 0 1 1-1.5 0V6h-5.25v12H15a.75.75 0 1 1 0 1.5H9A.75.75 0 1 1 9 18h2.25V6H6v2.25a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75" })
|
|
2994
|
+
]
|
|
2995
|
+
}
|
|
2996
|
+
)
|
|
2997
|
+
);
|
|
2998
|
+
TextIcon.displayName = "TextIcon";
|
|
2962
2999
|
|
|
2963
3000
|
// src/icons/file-icons/aep.tsx
|
|
2964
3001
|
var aep_exports = {};
|
|
2965
3002
|
__export(aep_exports, {
|
|
2966
3003
|
AEP: () => AEP
|
|
2967
3004
|
});
|
|
2968
|
-
var AEP =
|
|
3005
|
+
var AEP = React118__namespace.forwardRef(
|
|
2969
3006
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2970
3007
|
"svg",
|
|
2971
3008
|
{
|
|
@@ -3013,7 +3050,7 @@ var ai_exports = {};
|
|
|
3013
3050
|
__export(ai_exports, {
|
|
3014
3051
|
AI: () => AI
|
|
3015
3052
|
});
|
|
3016
|
-
var AI =
|
|
3053
|
+
var AI = React118__namespace.forwardRef(
|
|
3017
3054
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3018
3055
|
"svg",
|
|
3019
3056
|
{
|
|
@@ -3061,7 +3098,7 @@ var avi_exports = {};
|
|
|
3061
3098
|
__export(avi_exports, {
|
|
3062
3099
|
AVI: () => AVI
|
|
3063
3100
|
});
|
|
3064
|
-
var AVI =
|
|
3101
|
+
var AVI = React118__namespace.forwardRef(
|
|
3065
3102
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3066
3103
|
"svg",
|
|
3067
3104
|
{
|
|
@@ -3109,7 +3146,7 @@ var blend_exports = {};
|
|
|
3109
3146
|
__export(blend_exports, {
|
|
3110
3147
|
Blend: () => Blend
|
|
3111
3148
|
});
|
|
3112
|
-
var Blend =
|
|
3149
|
+
var Blend = React118__namespace.forwardRef(
|
|
3113
3150
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3114
3151
|
"svg",
|
|
3115
3152
|
{
|
|
@@ -3157,7 +3194,7 @@ var c4d_exports = {};
|
|
|
3157
3194
|
__export(c4d_exports, {
|
|
3158
3195
|
C4D: () => C4D
|
|
3159
3196
|
});
|
|
3160
|
-
var C4D =
|
|
3197
|
+
var C4D = React118__namespace.forwardRef(
|
|
3161
3198
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3162
3199
|
"svg",
|
|
3163
3200
|
{
|
|
@@ -3205,7 +3242,7 @@ var cdr_exports = {};
|
|
|
3205
3242
|
__export(cdr_exports, {
|
|
3206
3243
|
CDR: () => CDR
|
|
3207
3244
|
});
|
|
3208
|
-
var CDR =
|
|
3245
|
+
var CDR = React118__namespace.forwardRef(
|
|
3209
3246
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3210
3247
|
"svg",
|
|
3211
3248
|
{
|
|
@@ -3253,7 +3290,7 @@ var css_exports = {};
|
|
|
3253
3290
|
__export(css_exports, {
|
|
3254
3291
|
CSS: () => CSS
|
|
3255
3292
|
});
|
|
3256
|
-
var CSS =
|
|
3293
|
+
var CSS = React118__namespace.forwardRef(
|
|
3257
3294
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3258
3295
|
"svg",
|
|
3259
3296
|
{
|
|
@@ -3301,7 +3338,7 @@ var csv_exports = {};
|
|
|
3301
3338
|
__export(csv_exports, {
|
|
3302
3339
|
CSV: () => CSV
|
|
3303
3340
|
});
|
|
3304
|
-
var CSV =
|
|
3341
|
+
var CSV = React118__namespace.forwardRef(
|
|
3305
3342
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3306
3343
|
"svg",
|
|
3307
3344
|
{
|
|
@@ -3349,7 +3386,7 @@ var dmg_exports = {};
|
|
|
3349
3386
|
__export(dmg_exports, {
|
|
3350
3387
|
DMG: () => DMG
|
|
3351
3388
|
});
|
|
3352
|
-
var DMG =
|
|
3389
|
+
var DMG = React118__namespace.forwardRef(
|
|
3353
3390
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3354
3391
|
"svg",
|
|
3355
3392
|
{
|
|
@@ -3397,7 +3434,7 @@ var doc_exports = {};
|
|
|
3397
3434
|
__export(doc_exports, {
|
|
3398
3435
|
DOC: () => DOC
|
|
3399
3436
|
});
|
|
3400
|
-
var DOC =
|
|
3437
|
+
var DOC = React118__namespace.forwardRef(
|
|
3401
3438
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3402
3439
|
"svg",
|
|
3403
3440
|
{
|
|
@@ -3445,7 +3482,7 @@ var exe_exports = {};
|
|
|
3445
3482
|
__export(exe_exports, {
|
|
3446
3483
|
EXE: () => EXE
|
|
3447
3484
|
});
|
|
3448
|
-
var EXE =
|
|
3485
|
+
var EXE = React118__namespace.forwardRef(
|
|
3449
3486
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3450
3487
|
"svg",
|
|
3451
3488
|
{
|
|
@@ -3493,7 +3530,7 @@ var fig_exports = {};
|
|
|
3493
3530
|
__export(fig_exports, {
|
|
3494
3531
|
Fig: () => Fig
|
|
3495
3532
|
});
|
|
3496
|
-
var Fig =
|
|
3533
|
+
var Fig = React118__namespace.forwardRef(
|
|
3497
3534
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3498
3535
|
"svg",
|
|
3499
3536
|
{
|
|
@@ -3541,7 +3578,7 @@ var gif_exports = {};
|
|
|
3541
3578
|
__export(gif_exports, {
|
|
3542
3579
|
GIF: () => GIF
|
|
3543
3580
|
});
|
|
3544
|
-
var GIF =
|
|
3581
|
+
var GIF = React118__namespace.forwardRef(
|
|
3545
3582
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3546
3583
|
"svg",
|
|
3547
3584
|
{
|
|
@@ -3589,7 +3626,7 @@ var html_exports = {};
|
|
|
3589
3626
|
__export(html_exports, {
|
|
3590
3627
|
HTML: () => HTML
|
|
3591
3628
|
});
|
|
3592
|
-
var HTML =
|
|
3629
|
+
var HTML = React118__namespace.forwardRef(
|
|
3593
3630
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3594
3631
|
"svg",
|
|
3595
3632
|
{
|
|
@@ -3637,7 +3674,7 @@ var ico_exports = {};
|
|
|
3637
3674
|
__export(ico_exports, {
|
|
3638
3675
|
ICO: () => ICO
|
|
3639
3676
|
});
|
|
3640
|
-
var ICO =
|
|
3677
|
+
var ICO = React118__namespace.forwardRef(
|
|
3641
3678
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3642
3679
|
"svg",
|
|
3643
3680
|
{
|
|
@@ -3685,7 +3722,7 @@ var java_exports = {};
|
|
|
3685
3722
|
__export(java_exports, {
|
|
3686
3723
|
Java: () => Java
|
|
3687
3724
|
});
|
|
3688
|
-
var Java =
|
|
3725
|
+
var Java = React118__namespace.forwardRef(
|
|
3689
3726
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3690
3727
|
"svg",
|
|
3691
3728
|
{
|
|
@@ -3733,7 +3770,7 @@ var jpeg_exports = {};
|
|
|
3733
3770
|
__export(jpeg_exports, {
|
|
3734
3771
|
JPEG: () => JPEG
|
|
3735
3772
|
});
|
|
3736
|
-
var JPEG =
|
|
3773
|
+
var JPEG = React118__namespace.forwardRef(
|
|
3737
3774
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3738
3775
|
"svg",
|
|
3739
3776
|
{
|
|
@@ -3781,7 +3818,7 @@ var jpg_exports = {};
|
|
|
3781
3818
|
__export(jpg_exports, {
|
|
3782
3819
|
JPG: () => JPG
|
|
3783
3820
|
});
|
|
3784
|
-
var JPG =
|
|
3821
|
+
var JPG = React118__namespace.forwardRef(
|
|
3785
3822
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3786
3823
|
"svg",
|
|
3787
3824
|
{
|
|
@@ -3829,7 +3866,7 @@ var js_exports = {};
|
|
|
3829
3866
|
__export(js_exports, {
|
|
3830
3867
|
JS: () => JS
|
|
3831
3868
|
});
|
|
3832
|
-
var JS =
|
|
3869
|
+
var JS = React118__namespace.forwardRef(
|
|
3833
3870
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3834
3871
|
"svg",
|
|
3835
3872
|
{
|
|
@@ -3877,7 +3914,7 @@ var json_exports = {};
|
|
|
3877
3914
|
__export(json_exports, {
|
|
3878
3915
|
JSON: () => JSON
|
|
3879
3916
|
});
|
|
3880
|
-
var JSON =
|
|
3917
|
+
var JSON = React118__namespace.forwardRef(
|
|
3881
3918
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3882
3919
|
"svg",
|
|
3883
3920
|
{
|
|
@@ -3925,7 +3962,7 @@ var mov_exports = {};
|
|
|
3925
3962
|
__export(mov_exports, {
|
|
3926
3963
|
MOV: () => MOV
|
|
3927
3964
|
});
|
|
3928
|
-
var MOV =
|
|
3965
|
+
var MOV = React118__namespace.forwardRef(
|
|
3929
3966
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3930
3967
|
"svg",
|
|
3931
3968
|
{
|
|
@@ -3973,7 +4010,7 @@ var mp3_exports = {};
|
|
|
3973
4010
|
__export(mp3_exports, {
|
|
3974
4011
|
MP3: () => MP3
|
|
3975
4012
|
});
|
|
3976
|
-
var MP3 =
|
|
4013
|
+
var MP3 = React118__namespace.forwardRef(
|
|
3977
4014
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3978
4015
|
"svg",
|
|
3979
4016
|
{
|
|
@@ -4021,7 +4058,7 @@ var mp4_exports = {};
|
|
|
4021
4058
|
__export(mp4_exports, {
|
|
4022
4059
|
MP4: () => MP4
|
|
4023
4060
|
});
|
|
4024
|
-
var MP4 =
|
|
4061
|
+
var MP4 = React118__namespace.forwardRef(
|
|
4025
4062
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4026
4063
|
"svg",
|
|
4027
4064
|
{
|
|
@@ -4069,7 +4106,7 @@ var mpg_exports = {};
|
|
|
4069
4106
|
__export(mpg_exports, {
|
|
4070
4107
|
MPG: () => MPG
|
|
4071
4108
|
});
|
|
4072
|
-
var MPG =
|
|
4109
|
+
var MPG = React118__namespace.forwardRef(
|
|
4073
4110
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4074
4111
|
"svg",
|
|
4075
4112
|
{
|
|
@@ -4117,7 +4154,7 @@ var pdf_exports = {};
|
|
|
4117
4154
|
__export(pdf_exports, {
|
|
4118
4155
|
PDF: () => PDF
|
|
4119
4156
|
});
|
|
4120
|
-
var PDF =
|
|
4157
|
+
var PDF = React118__namespace.forwardRef(
|
|
4121
4158
|
({ ...props }, ref) => {
|
|
4122
4159
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4123
4160
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -4170,7 +4207,7 @@ var png_exports = {};
|
|
|
4170
4207
|
__export(png_exports, {
|
|
4171
4208
|
PNG: () => PNG
|
|
4172
4209
|
});
|
|
4173
|
-
var PNG =
|
|
4210
|
+
var PNG = React118__namespace.forwardRef(
|
|
4174
4211
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4175
4212
|
"svg",
|
|
4176
4213
|
{
|
|
@@ -4218,7 +4255,7 @@ var ppt_exports = {};
|
|
|
4218
4255
|
__export(ppt_exports, {
|
|
4219
4256
|
PPT: () => PPT
|
|
4220
4257
|
});
|
|
4221
|
-
var PPT =
|
|
4258
|
+
var PPT = React118__namespace.forwardRef(
|
|
4222
4259
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4223
4260
|
"svg",
|
|
4224
4261
|
{
|
|
@@ -4266,7 +4303,7 @@ var psd_exports = {};
|
|
|
4266
4303
|
__export(psd_exports, {
|
|
4267
4304
|
PSD: () => PSD
|
|
4268
4305
|
});
|
|
4269
|
-
var PSD =
|
|
4306
|
+
var PSD = React118__namespace.forwardRef(
|
|
4270
4307
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4271
4308
|
"svg",
|
|
4272
4309
|
{
|
|
@@ -4314,7 +4351,7 @@ var rar_exports = {};
|
|
|
4314
4351
|
__export(rar_exports, {
|
|
4315
4352
|
Rar: () => Rar
|
|
4316
4353
|
});
|
|
4317
|
-
var Rar =
|
|
4354
|
+
var Rar = React118__namespace.forwardRef(
|
|
4318
4355
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4319
4356
|
"svg",
|
|
4320
4357
|
{
|
|
@@ -4362,7 +4399,7 @@ var sketch_exports = {};
|
|
|
4362
4399
|
__export(sketch_exports, {
|
|
4363
4400
|
Sketch: () => Sketch
|
|
4364
4401
|
});
|
|
4365
|
-
var Sketch =
|
|
4402
|
+
var Sketch = React118__namespace.forwardRef(
|
|
4366
4403
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4367
4404
|
"svg",
|
|
4368
4405
|
{
|
|
@@ -4410,7 +4447,7 @@ var svg_exports = {};
|
|
|
4410
4447
|
__export(svg_exports, {
|
|
4411
4448
|
SVG: () => SVG
|
|
4412
4449
|
});
|
|
4413
|
-
var SVG =
|
|
4450
|
+
var SVG = React118__namespace.forwardRef(
|
|
4414
4451
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4415
4452
|
"svg",
|
|
4416
4453
|
{
|
|
@@ -4458,7 +4495,7 @@ var tiff_exports = {};
|
|
|
4458
4495
|
__export(tiff_exports, {
|
|
4459
4496
|
TIFF: () => TIFF
|
|
4460
4497
|
});
|
|
4461
|
-
var TIFF =
|
|
4498
|
+
var TIFF = React118__namespace.forwardRef(
|
|
4462
4499
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4463
4500
|
"svg",
|
|
4464
4501
|
{
|
|
@@ -4506,7 +4543,7 @@ var txt_exports = {};
|
|
|
4506
4543
|
__export(txt_exports, {
|
|
4507
4544
|
TXT: () => TXT
|
|
4508
4545
|
});
|
|
4509
|
-
var TXT =
|
|
4546
|
+
var TXT = React118__namespace.forwardRef(
|
|
4510
4547
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4511
4548
|
"svg",
|
|
4512
4549
|
{
|
|
@@ -4554,7 +4591,7 @@ var wav_exports = {};
|
|
|
4554
4591
|
__export(wav_exports, {
|
|
4555
4592
|
WAV: () => WAV
|
|
4556
4593
|
});
|
|
4557
|
-
var WAV =
|
|
4594
|
+
var WAV = React118__namespace.forwardRef(
|
|
4558
4595
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4559
4596
|
"svg",
|
|
4560
4597
|
{
|
|
@@ -4602,7 +4639,7 @@ var webp_exports = {};
|
|
|
4602
4639
|
__export(webp_exports, {
|
|
4603
4640
|
WEBP: () => WEBP
|
|
4604
4641
|
});
|
|
4605
|
-
var WEBP =
|
|
4642
|
+
var WEBP = React118__namespace.forwardRef(
|
|
4606
4643
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4607
4644
|
"svg",
|
|
4608
4645
|
{
|
|
@@ -4650,7 +4687,7 @@ var xls_exports = {};
|
|
|
4650
4687
|
__export(xls_exports, {
|
|
4651
4688
|
XLS: () => XLS
|
|
4652
4689
|
});
|
|
4653
|
-
var XLS =
|
|
4690
|
+
var XLS = React118__namespace.forwardRef(
|
|
4654
4691
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4655
4692
|
"svg",
|
|
4656
4693
|
{
|
|
@@ -4698,7 +4735,7 @@ var zip_exports = {};
|
|
|
4698
4735
|
__export(zip_exports, {
|
|
4699
4736
|
Zip: () => Zip
|
|
4700
4737
|
});
|
|
4701
|
-
var Zip =
|
|
4738
|
+
var Zip = React118__namespace.forwardRef(
|
|
4702
4739
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4703
4740
|
"svg",
|
|
4704
4741
|
{
|
|
@@ -4740,15 +4777,15 @@ var Zip = React116__namespace.forwardRef(
|
|
|
4740
4777
|
)
|
|
4741
4778
|
);
|
|
4742
4779
|
Zip.displayName = "Zip";
|
|
4743
|
-
var CarouselContext =
|
|
4780
|
+
var CarouselContext = React118__namespace.createContext(null);
|
|
4744
4781
|
function useCarousel() {
|
|
4745
|
-
const context =
|
|
4782
|
+
const context = React118__namespace.useContext(CarouselContext);
|
|
4746
4783
|
if (!context) {
|
|
4747
4784
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4748
4785
|
}
|
|
4749
4786
|
return context;
|
|
4750
4787
|
}
|
|
4751
|
-
var Carousel =
|
|
4788
|
+
var Carousel = React118__namespace.forwardRef(
|
|
4752
4789
|
({
|
|
4753
4790
|
orientation = "horizontal",
|
|
4754
4791
|
opts,
|
|
@@ -4765,10 +4802,10 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4765
4802
|
},
|
|
4766
4803
|
plugins
|
|
4767
4804
|
);
|
|
4768
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4769
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4770
|
-
const [slideCount, setSlideCount] =
|
|
4771
|
-
const onSelect =
|
|
4805
|
+
const [canScrollPrev, setCanScrollPrev] = React118__namespace.useState(false);
|
|
4806
|
+
const [canScrollNext, setCanScrollNext] = React118__namespace.useState(false);
|
|
4807
|
+
const [slideCount, setSlideCount] = React118__namespace.useState(0);
|
|
4808
|
+
const onSelect = React118__namespace.useCallback((api2) => {
|
|
4772
4809
|
if (!api2) {
|
|
4773
4810
|
return;
|
|
4774
4811
|
}
|
|
@@ -4776,13 +4813,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4776
4813
|
setCanScrollNext(api2.canScrollNext());
|
|
4777
4814
|
setSlideCount(api2.scrollSnapList().length);
|
|
4778
4815
|
}, []);
|
|
4779
|
-
const scrollPrev =
|
|
4816
|
+
const scrollPrev = React118__namespace.useCallback(() => {
|
|
4780
4817
|
api?.scrollPrev();
|
|
4781
4818
|
}, [api]);
|
|
4782
|
-
const scrollNext =
|
|
4819
|
+
const scrollNext = React118__namespace.useCallback(() => {
|
|
4783
4820
|
api?.scrollNext();
|
|
4784
4821
|
}, [api]);
|
|
4785
|
-
const handleKeyDown =
|
|
4822
|
+
const handleKeyDown = React118__namespace.useCallback(
|
|
4786
4823
|
(event) => {
|
|
4787
4824
|
if (event.key === "ArrowLeft") {
|
|
4788
4825
|
event.preventDefault();
|
|
@@ -4794,13 +4831,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4794
4831
|
},
|
|
4795
4832
|
[scrollPrev, scrollNext]
|
|
4796
4833
|
);
|
|
4797
|
-
|
|
4834
|
+
React118__namespace.useEffect(() => {
|
|
4798
4835
|
if (!api || !setApi) {
|
|
4799
4836
|
return;
|
|
4800
4837
|
}
|
|
4801
4838
|
setApi(api);
|
|
4802
4839
|
}, [api, setApi]);
|
|
4803
|
-
|
|
4840
|
+
React118__namespace.useEffect(() => {
|
|
4804
4841
|
if (!api) {
|
|
4805
4842
|
return;
|
|
4806
4843
|
}
|
|
@@ -4845,7 +4882,7 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4845
4882
|
}
|
|
4846
4883
|
);
|
|
4847
4884
|
Carousel.displayName = "Carousel";
|
|
4848
|
-
var CarouselContent =
|
|
4885
|
+
var CarouselContent = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4849
4886
|
const { carouselRef, orientation } = useCarousel();
|
|
4850
4887
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4851
4888
|
"div",
|
|
@@ -4861,7 +4898,7 @@ var CarouselContent = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
4861
4898
|
) });
|
|
4862
4899
|
});
|
|
4863
4900
|
CarouselContent.displayName = "CarouselContent";
|
|
4864
|
-
var CarouselItem =
|
|
4901
|
+
var CarouselItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4865
4902
|
const { orientation } = useCarousel();
|
|
4866
4903
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4867
4904
|
"div",
|
|
@@ -4879,7 +4916,7 @@ var CarouselItem = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4879
4916
|
);
|
|
4880
4917
|
});
|
|
4881
4918
|
CarouselItem.displayName = "CarouselItem";
|
|
4882
|
-
var CarouselPrevious =
|
|
4919
|
+
var CarouselPrevious = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4883
4920
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4884
4921
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4885
4922
|
Button,
|
|
@@ -4901,7 +4938,7 @@ var CarouselPrevious = React116__namespace.forwardRef(({ className, variant = "o
|
|
|
4901
4938
|
);
|
|
4902
4939
|
});
|
|
4903
4940
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4904
|
-
var CarouselNext =
|
|
4941
|
+
var CarouselNext = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4905
4942
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4906
4943
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4907
4944
|
Button,
|
|
@@ -4927,7 +4964,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4927
4964
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4928
4965
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4929
4966
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4930
|
-
var DialogOverlay =
|
|
4967
|
+
var DialogOverlay = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4931
4968
|
DialogPrimitive__namespace.Overlay,
|
|
4932
4969
|
{
|
|
4933
4970
|
ref,
|
|
@@ -4944,7 +4981,7 @@ var DialogOverlay = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
4944
4981
|
}
|
|
4945
4982
|
));
|
|
4946
4983
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4947
|
-
var DialogContent =
|
|
4984
|
+
var DialogContent = React118__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4948
4985
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4949
4986
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4950
4987
|
DialogPrimitive__namespace.Content,
|
|
@@ -4996,7 +5033,7 @@ var DialogFooter = ({
|
|
|
4996
5033
|
}
|
|
4997
5034
|
);
|
|
4998
5035
|
DialogFooter.displayName = "DialogFooter";
|
|
4999
|
-
var DialogTitle =
|
|
5036
|
+
var DialogTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5000
5037
|
DialogPrimitive__namespace.Title,
|
|
5001
5038
|
{
|
|
5002
5039
|
ref,
|
|
@@ -5008,7 +5045,7 @@ var DialogTitle = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5008
5045
|
}
|
|
5009
5046
|
));
|
|
5010
5047
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5011
|
-
var DialogDescription =
|
|
5048
|
+
var DialogDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5012
5049
|
DialogPrimitive__namespace.Description,
|
|
5013
5050
|
{
|
|
5014
5051
|
ref,
|
|
@@ -5021,7 +5058,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
5021
5058
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
5022
5059
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
5023
5060
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
5024
|
-
var SheetOverlay =
|
|
5061
|
+
var SheetOverlay = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5025
5062
|
DialogPrimitive__namespace.Overlay,
|
|
5026
5063
|
{
|
|
5027
5064
|
className: cn(
|
|
@@ -5049,7 +5086,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
5049
5086
|
}
|
|
5050
5087
|
}
|
|
5051
5088
|
);
|
|
5052
|
-
var SheetContent =
|
|
5089
|
+
var SheetContent = React118__namespace.forwardRef(
|
|
5053
5090
|
({
|
|
5054
5091
|
side = "right",
|
|
5055
5092
|
className,
|
|
@@ -5105,7 +5142,7 @@ var SheetFooter = ({
|
|
|
5105
5142
|
}
|
|
5106
5143
|
);
|
|
5107
5144
|
SheetFooter.displayName = "SheetFooter";
|
|
5108
|
-
var SheetTitle =
|
|
5145
|
+
var SheetTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5109
5146
|
DialogPrimitive__namespace.Title,
|
|
5110
5147
|
{
|
|
5111
5148
|
ref,
|
|
@@ -5117,7 +5154,7 @@ var SheetTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
5117
5154
|
}
|
|
5118
5155
|
));
|
|
5119
5156
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5120
|
-
var SheetDescription =
|
|
5157
|
+
var SheetDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5121
5158
|
DialogPrimitive__namespace.Description,
|
|
5122
5159
|
{
|
|
5123
5160
|
ref,
|
|
@@ -5154,10 +5191,10 @@ var defaultElements = {
|
|
|
5154
5191
|
"caption": "span",
|
|
5155
5192
|
"overline": "span"
|
|
5156
5193
|
};
|
|
5157
|
-
var Typography =
|
|
5194
|
+
var Typography = React118__namespace.default.forwardRef(
|
|
5158
5195
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5159
5196
|
const Component = as || defaultElements[variant];
|
|
5160
|
-
return
|
|
5197
|
+
return React118__namespace.default.createElement(
|
|
5161
5198
|
Component,
|
|
5162
5199
|
{
|
|
5163
5200
|
ref,
|
|
@@ -5169,46 +5206,46 @@ var Typography = React116__namespace.default.forwardRef(
|
|
|
5169
5206
|
}
|
|
5170
5207
|
);
|
|
5171
5208
|
Typography.displayName = "Typography";
|
|
5172
|
-
var Heading1 =
|
|
5209
|
+
var Heading1 = React118__namespace.default.forwardRef(
|
|
5173
5210
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
5174
5211
|
);
|
|
5175
5212
|
Heading1.displayName = "Heading1";
|
|
5176
|
-
var Heading2 =
|
|
5213
|
+
var Heading2 = React118__namespace.default.forwardRef(
|
|
5177
5214
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
5178
5215
|
);
|
|
5179
5216
|
Heading2.displayName = "Heading2";
|
|
5180
|
-
var Heading3 =
|
|
5217
|
+
var Heading3 = React118__namespace.default.forwardRef(
|
|
5181
5218
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
5182
5219
|
);
|
|
5183
5220
|
Heading3.displayName = "Heading3";
|
|
5184
|
-
var Heading4 =
|
|
5221
|
+
var Heading4 = React118__namespace.default.forwardRef(
|
|
5185
5222
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
5186
5223
|
);
|
|
5187
5224
|
Heading4.displayName = "Heading4";
|
|
5188
|
-
var Heading5 =
|
|
5225
|
+
var Heading5 = React118__namespace.default.forwardRef(
|
|
5189
5226
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
5190
5227
|
);
|
|
5191
5228
|
Heading5.displayName = "Heading5";
|
|
5192
|
-
var Heading6 =
|
|
5229
|
+
var Heading6 = React118__namespace.default.forwardRef(
|
|
5193
5230
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
5194
5231
|
);
|
|
5195
5232
|
Heading6.displayName = "Heading6";
|
|
5196
|
-
var Text =
|
|
5233
|
+
var Text = React118__namespace.default.forwardRef(
|
|
5197
5234
|
({ size = "default", ...props }, ref) => {
|
|
5198
5235
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5199
5236
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
5200
5237
|
}
|
|
5201
5238
|
);
|
|
5202
5239
|
Text.displayName = "Text";
|
|
5203
|
-
var Caption =
|
|
5240
|
+
var Caption = React118__namespace.default.forwardRef(
|
|
5204
5241
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
5205
5242
|
);
|
|
5206
5243
|
Caption.displayName = "Caption";
|
|
5207
|
-
var Overline =
|
|
5244
|
+
var Overline = React118__namespace.default.forwardRef(
|
|
5208
5245
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
5209
5246
|
);
|
|
5210
5247
|
Overline.displayName = "Overline";
|
|
5211
|
-
var Link =
|
|
5248
|
+
var Link = React118__namespace.default.forwardRef(
|
|
5212
5249
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5213
5250
|
const variantClass = `link-${variant}`;
|
|
5214
5251
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5223,11 +5260,11 @@ var Link = React116__namespace.default.forwardRef(
|
|
|
5223
5260
|
}
|
|
5224
5261
|
);
|
|
5225
5262
|
Link.displayName = "Link";
|
|
5226
|
-
var PaginationContext =
|
|
5263
|
+
var PaginationContext = React118__namespace.createContext({
|
|
5227
5264
|
size: "default"
|
|
5228
5265
|
});
|
|
5229
5266
|
var usePaginationContext = () => {
|
|
5230
|
-
const context =
|
|
5267
|
+
const context = React118__namespace.useContext(PaginationContext);
|
|
5231
5268
|
return context;
|
|
5232
5269
|
};
|
|
5233
5270
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5244,7 +5281,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5244
5281
|
}
|
|
5245
5282
|
}
|
|
5246
5283
|
);
|
|
5247
|
-
var Pagination =
|
|
5284
|
+
var Pagination = React118__namespace.forwardRef(
|
|
5248
5285
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5249
5286
|
"nav",
|
|
5250
5287
|
{
|
|
@@ -5257,7 +5294,7 @@ var Pagination = React116__namespace.forwardRef(
|
|
|
5257
5294
|
) })
|
|
5258
5295
|
);
|
|
5259
5296
|
Pagination.displayName = "Pagination";
|
|
5260
|
-
var PaginationContent =
|
|
5297
|
+
var PaginationContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5261
5298
|
"ul",
|
|
5262
5299
|
{
|
|
5263
5300
|
ref,
|
|
@@ -5266,7 +5303,7 @@ var PaginationContent = React116__namespace.forwardRef(({ className, ...props },
|
|
|
5266
5303
|
}
|
|
5267
5304
|
));
|
|
5268
5305
|
PaginationContent.displayName = "PaginationContent";
|
|
5269
|
-
var PaginationItem =
|
|
5306
|
+
var PaginationItem = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5270
5307
|
PaginationItem.displayName = "PaginationItem";
|
|
5271
5308
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5272
5309
|
[
|
|
@@ -5288,7 +5325,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5288
5325
|
}
|
|
5289
5326
|
}
|
|
5290
5327
|
);
|
|
5291
|
-
var PaginationLink =
|
|
5328
|
+
var PaginationLink = React118__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5292
5329
|
const { size } = usePaginationContext();
|
|
5293
5330
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5294
5331
|
"a",
|
|
@@ -5305,7 +5342,7 @@ var PaginationLink = React116__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5305
5342
|
);
|
|
5306
5343
|
});
|
|
5307
5344
|
PaginationLink.displayName = "PaginationLink";
|
|
5308
|
-
var PaginationPrevious =
|
|
5345
|
+
var PaginationPrevious = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5309
5346
|
const { size } = usePaginationContext();
|
|
5310
5347
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5311
5348
|
PaginationLink,
|
|
@@ -5326,7 +5363,7 @@ var PaginationPrevious = React116__namespace.forwardRef(({ className, ...props }
|
|
|
5326
5363
|
);
|
|
5327
5364
|
});
|
|
5328
5365
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5329
|
-
var PaginationNext =
|
|
5366
|
+
var PaginationNext = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5330
5367
|
const { size } = usePaginationContext();
|
|
5331
5368
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5332
5369
|
PaginationLink,
|
|
@@ -5347,7 +5384,7 @@ var PaginationNext = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5347
5384
|
);
|
|
5348
5385
|
});
|
|
5349
5386
|
PaginationNext.displayName = "PaginationNext";
|
|
5350
|
-
var PaginationEllipsis =
|
|
5387
|
+
var PaginationEllipsis = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5351
5388
|
const { size } = usePaginationContext();
|
|
5352
5389
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5353
5390
|
"span",
|
|
@@ -5371,7 +5408,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5371
5408
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5372
5409
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5373
5410
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5374
|
-
var DropdownMenuSubTrigger =
|
|
5411
|
+
var DropdownMenuSubTrigger = React118__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5375
5412
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5376
5413
|
{
|
|
5377
5414
|
ref,
|
|
@@ -5388,7 +5425,7 @@ var DropdownMenuSubTrigger = React116__namespace.forwardRef(({ className, inset,
|
|
|
5388
5425
|
}
|
|
5389
5426
|
));
|
|
5390
5427
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5391
|
-
var DropdownMenuSubContent =
|
|
5428
|
+
var DropdownMenuSubContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5392
5429
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5393
5430
|
{
|
|
5394
5431
|
ref,
|
|
@@ -5400,7 +5437,7 @@ var DropdownMenuSubContent = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5400
5437
|
}
|
|
5401
5438
|
));
|
|
5402
5439
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5403
|
-
var DropdownMenuContent =
|
|
5440
|
+
var DropdownMenuContent = React118__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5404
5441
|
DropdownMenuPrimitive__namespace.Content,
|
|
5405
5442
|
{
|
|
5406
5443
|
ref,
|
|
@@ -5414,7 +5451,7 @@ var DropdownMenuContent = React116__namespace.forwardRef(({ className, sideOffse
|
|
|
5414
5451
|
}
|
|
5415
5452
|
) }));
|
|
5416
5453
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5417
|
-
var DropdownMenuItem =
|
|
5454
|
+
var DropdownMenuItem = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5418
5455
|
DropdownMenuPrimitive__namespace.Item,
|
|
5419
5456
|
{
|
|
5420
5457
|
ref,
|
|
@@ -5427,7 +5464,7 @@ var DropdownMenuItem = React116__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5427
5464
|
}
|
|
5428
5465
|
));
|
|
5429
5466
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5430
|
-
var DropdownMenuCheckboxItem =
|
|
5467
|
+
var DropdownMenuCheckboxItem = React118__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5431
5468
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5432
5469
|
{
|
|
5433
5470
|
ref,
|
|
@@ -5444,7 +5481,7 @@ var DropdownMenuCheckboxItem = React116__namespace.forwardRef(({ className, chil
|
|
|
5444
5481
|
}
|
|
5445
5482
|
));
|
|
5446
5483
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5447
|
-
var DropdownMenuRadioItem =
|
|
5484
|
+
var DropdownMenuRadioItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5448
5485
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5449
5486
|
{
|
|
5450
5487
|
ref,
|
|
@@ -5460,7 +5497,7 @@ var DropdownMenuRadioItem = React116__namespace.forwardRef(({ className, childre
|
|
|
5460
5497
|
}
|
|
5461
5498
|
));
|
|
5462
5499
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5463
|
-
var DropdownMenuLabel =
|
|
5500
|
+
var DropdownMenuLabel = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5464
5501
|
DropdownMenuPrimitive__namespace.Label,
|
|
5465
5502
|
{
|
|
5466
5503
|
ref,
|
|
@@ -5473,7 +5510,7 @@ var DropdownMenuLabel = React116__namespace.forwardRef(({ className, inset, ...p
|
|
|
5473
5510
|
}
|
|
5474
5511
|
));
|
|
5475
5512
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5476
|
-
var DropdownMenuSeparator =
|
|
5513
|
+
var DropdownMenuSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5477
5514
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5478
5515
|
{
|
|
5479
5516
|
ref,
|
|
@@ -5495,7 +5532,7 @@ var DropdownMenuShortcut = ({
|
|
|
5495
5532
|
);
|
|
5496
5533
|
};
|
|
5497
5534
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5498
|
-
var TableWrapper =
|
|
5535
|
+
var TableWrapper = React118__namespace.forwardRef(
|
|
5499
5536
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5500
5537
|
"div",
|
|
5501
5538
|
{
|
|
@@ -5510,7 +5547,7 @@ var TableWrapper = React116__namespace.forwardRef(
|
|
|
5510
5547
|
)
|
|
5511
5548
|
);
|
|
5512
5549
|
TableWrapper.displayName = "TableWrapper";
|
|
5513
|
-
var Table =
|
|
5550
|
+
var Table = React118__namespace.forwardRef(
|
|
5514
5551
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5515
5552
|
"div",
|
|
5516
5553
|
{
|
|
@@ -5532,7 +5569,7 @@ var Table = React116__namespace.forwardRef(
|
|
|
5532
5569
|
)
|
|
5533
5570
|
);
|
|
5534
5571
|
Table.displayName = "Table";
|
|
5535
|
-
var TableHeader =
|
|
5572
|
+
var TableHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5536
5573
|
"thead",
|
|
5537
5574
|
{
|
|
5538
5575
|
ref,
|
|
@@ -5545,7 +5582,7 @@ var TableHeader = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5545
5582
|
}
|
|
5546
5583
|
));
|
|
5547
5584
|
TableHeader.displayName = "TableHeader";
|
|
5548
|
-
var TableBody =
|
|
5585
|
+
var TableBody = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5549
5586
|
"tbody",
|
|
5550
5587
|
{
|
|
5551
5588
|
ref,
|
|
@@ -5558,7 +5595,7 @@ var TableBody = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5558
5595
|
}
|
|
5559
5596
|
));
|
|
5560
5597
|
TableBody.displayName = "TableBody";
|
|
5561
|
-
var TableFooter =
|
|
5598
|
+
var TableFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5562
5599
|
"tfoot",
|
|
5563
5600
|
{
|
|
5564
5601
|
ref,
|
|
@@ -5571,7 +5608,7 @@ var TableFooter = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5571
5608
|
}
|
|
5572
5609
|
));
|
|
5573
5610
|
TableFooter.displayName = "TableFooter";
|
|
5574
|
-
var TableRow =
|
|
5611
|
+
var TableRow = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5575
5612
|
"tr",
|
|
5576
5613
|
{
|
|
5577
5614
|
ref,
|
|
@@ -5589,7 +5626,7 @@ var TableRow = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5589
5626
|
}
|
|
5590
5627
|
));
|
|
5591
5628
|
TableRow.displayName = "TableRow";
|
|
5592
|
-
var TableHead =
|
|
5629
|
+
var TableHead = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5593
5630
|
"th",
|
|
5594
5631
|
{
|
|
5595
5632
|
ref,
|
|
@@ -5602,7 +5639,7 @@ var TableHead = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5602
5639
|
}
|
|
5603
5640
|
));
|
|
5604
5641
|
TableHead.displayName = "TableHead";
|
|
5605
|
-
var TableCell =
|
|
5642
|
+
var TableCell = React118__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5606
5643
|
"td",
|
|
5607
5644
|
{
|
|
5608
5645
|
ref,
|
|
@@ -5622,7 +5659,7 @@ var TableCell = React116__namespace.forwardRef(({ className, label, ...props },
|
|
|
5622
5659
|
}
|
|
5623
5660
|
));
|
|
5624
5661
|
TableCell.displayName = "TableCell";
|
|
5625
|
-
var TableCaption =
|
|
5662
|
+
var TableCaption = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5626
5663
|
"caption",
|
|
5627
5664
|
{
|
|
5628
5665
|
ref,
|
|
@@ -5635,7 +5672,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5635
5672
|
var Select = SelectPrimitive__namespace.Root;
|
|
5636
5673
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5637
5674
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5638
|
-
var SelectTrigger =
|
|
5675
|
+
var SelectTrigger = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5639
5676
|
SelectPrimitive__namespace.Trigger,
|
|
5640
5677
|
{
|
|
5641
5678
|
ref,
|
|
@@ -5651,7 +5688,7 @@ var SelectTrigger = React116__namespace.forwardRef(({ className, children, ...pr
|
|
|
5651
5688
|
}
|
|
5652
5689
|
));
|
|
5653
5690
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5654
|
-
var SelectScrollUpButton =
|
|
5691
|
+
var SelectScrollUpButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5655
5692
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5656
5693
|
{
|
|
5657
5694
|
ref,
|
|
@@ -5664,7 +5701,7 @@ var SelectScrollUpButton = React116__namespace.forwardRef(({ className, ...props
|
|
|
5664
5701
|
}
|
|
5665
5702
|
));
|
|
5666
5703
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5667
|
-
var SelectScrollDownButton =
|
|
5704
|
+
var SelectScrollDownButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5668
5705
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5669
5706
|
{
|
|
5670
5707
|
ref,
|
|
@@ -5677,7 +5714,7 @@ var SelectScrollDownButton = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5677
5714
|
}
|
|
5678
5715
|
));
|
|
5679
5716
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5680
|
-
var SelectContent =
|
|
5717
|
+
var SelectContent = React118__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5681
5718
|
SelectPrimitive__namespace.Content,
|
|
5682
5719
|
{
|
|
5683
5720
|
ref,
|
|
@@ -5704,7 +5741,7 @@ var SelectContent = React116__namespace.forwardRef(({ className, children, posit
|
|
|
5704
5741
|
}
|
|
5705
5742
|
) }));
|
|
5706
5743
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5707
|
-
var SelectLabel =
|
|
5744
|
+
var SelectLabel = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5708
5745
|
SelectPrimitive__namespace.Label,
|
|
5709
5746
|
{
|
|
5710
5747
|
ref,
|
|
@@ -5713,7 +5750,7 @@ var SelectLabel = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5713
5750
|
}
|
|
5714
5751
|
));
|
|
5715
5752
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5716
|
-
var SelectItem =
|
|
5753
|
+
var SelectItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5717
5754
|
SelectPrimitive__namespace.Item,
|
|
5718
5755
|
{
|
|
5719
5756
|
ref,
|
|
@@ -5729,7 +5766,7 @@ var SelectItem = React116__namespace.forwardRef(({ className, children, ...props
|
|
|
5729
5766
|
}
|
|
5730
5767
|
));
|
|
5731
5768
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5732
|
-
var SelectSeparator =
|
|
5769
|
+
var SelectSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5733
5770
|
SelectPrimitive__namespace.Separator,
|
|
5734
5771
|
{
|
|
5735
5772
|
ref,
|
|
@@ -5738,7 +5775,7 @@ var SelectSeparator = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
5738
5775
|
}
|
|
5739
5776
|
));
|
|
5740
5777
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5741
|
-
var Label3 =
|
|
5778
|
+
var Label3 = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5742
5779
|
LabelPrimitive__namespace.Root,
|
|
5743
5780
|
{
|
|
5744
5781
|
ref,
|
|
@@ -5750,7 +5787,7 @@ var Label3 = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5750
5787
|
}
|
|
5751
5788
|
));
|
|
5752
5789
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5753
|
-
var Switch =
|
|
5790
|
+
var Switch = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5754
5791
|
SwitchPrimitives__namespace.Root,
|
|
5755
5792
|
{
|
|
5756
5793
|
className: cn(
|
|
@@ -5763,7 +5800,7 @@ var Switch = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5763
5800
|
}
|
|
5764
5801
|
));
|
|
5765
5802
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5766
|
-
var RadioGroup2 =
|
|
5803
|
+
var RadioGroup2 = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5767
5804
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5768
5805
|
RadioGroupPrimitive__namespace.Root,
|
|
5769
5806
|
{
|
|
@@ -5774,7 +5811,7 @@ var RadioGroup2 = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5774
5811
|
);
|
|
5775
5812
|
});
|
|
5776
5813
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5777
|
-
var RadioGroupItem =
|
|
5814
|
+
var RadioGroupItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5778
5815
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5779
5816
|
RadioGroupPrimitive__namespace.Item,
|
|
5780
5817
|
{
|
|
@@ -5789,7 +5826,7 @@ var RadioGroupItem = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5789
5826
|
);
|
|
5790
5827
|
});
|
|
5791
5828
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5792
|
-
var Checkbox =
|
|
5829
|
+
var Checkbox = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5793
5830
|
CheckboxPrimitive__namespace.Root,
|
|
5794
5831
|
{
|
|
5795
5832
|
ref,
|
|
@@ -5802,7 +5839,7 @@ var Checkbox = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5802
5839
|
}
|
|
5803
5840
|
));
|
|
5804
5841
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5805
|
-
var MultiSelect =
|
|
5842
|
+
var MultiSelect = React118__namespace.forwardRef(
|
|
5806
5843
|
({
|
|
5807
5844
|
options,
|
|
5808
5845
|
value = [],
|
|
@@ -5815,8 +5852,8 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5815
5852
|
maxDisplayItems = 3,
|
|
5816
5853
|
...props
|
|
5817
5854
|
}, ref) => {
|
|
5818
|
-
const [open, setOpen] =
|
|
5819
|
-
const handleSelectAll =
|
|
5855
|
+
const [open, setOpen] = React118__namespace.useState(false);
|
|
5856
|
+
const handleSelectAll = React118__namespace.useCallback(() => {
|
|
5820
5857
|
if (!onValueChange) return;
|
|
5821
5858
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5822
5859
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5829,7 +5866,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5829
5866
|
onValueChange(allValues);
|
|
5830
5867
|
}
|
|
5831
5868
|
}, [options, value, onValueChange]);
|
|
5832
|
-
const handleItemToggle =
|
|
5869
|
+
const handleItemToggle = React118__namespace.useCallback(
|
|
5833
5870
|
(itemValue) => {
|
|
5834
5871
|
if (!onValueChange) return;
|
|
5835
5872
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5837,7 +5874,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5837
5874
|
},
|
|
5838
5875
|
[value, onValueChange]
|
|
5839
5876
|
);
|
|
5840
|
-
const displayValue =
|
|
5877
|
+
const displayValue = React118__namespace.useMemo(() => {
|
|
5841
5878
|
if (value.length === 0) {
|
|
5842
5879
|
return placeholder;
|
|
5843
5880
|
}
|
|
@@ -5958,7 +5995,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5958
5995
|
}
|
|
5959
5996
|
);
|
|
5960
5997
|
MultiSelect.displayName = "MultiSelect";
|
|
5961
|
-
var Slider =
|
|
5998
|
+
var Slider = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5962
5999
|
SliderPrimitive__namespace.Root,
|
|
5963
6000
|
{
|
|
5964
6001
|
ref,
|
|
@@ -6435,6 +6472,7 @@ exports.DocIcon = doc_exports;
|
|
|
6435
6472
|
exports.DotsSixVerticalIcon = DotsSixVerticalIcon;
|
|
6436
6473
|
exports.DotsThree = DotsThree;
|
|
6437
6474
|
exports.DotsThreeVertical = DotsThreeVertical;
|
|
6475
|
+
exports.DownloadIcon = DownloadIcon;
|
|
6438
6476
|
exports.DropdownMenu = DropdownMenu;
|
|
6439
6477
|
exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
|
|
6440
6478
|
exports.DropdownMenuContent = DropdownMenuContent;
|
|
@@ -6586,6 +6624,7 @@ exports.TabsList = TabsList;
|
|
|
6586
6624
|
exports.TabsTrigger = TabsTrigger;
|
|
6587
6625
|
exports.Tag = Tag;
|
|
6588
6626
|
exports.Text = Text;
|
|
6627
|
+
exports.TextIcon = TextIcon;
|
|
6589
6628
|
exports.Textarea = Textarea;
|
|
6590
6629
|
exports.Ticket = Ticket;
|
|
6591
6630
|
exports.TiffIcon = tiff_exports;
|