luaniverse 4.0.41 → 4.0.42
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 +387 -203
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +380 -204
- 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 React113 = 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');
|
|
@@ -40,7 +40,7 @@ function _interopNamespace(e) {
|
|
|
40
40
|
return Object.freeze(n);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
var
|
|
43
|
+
var React113__namespace = /*#__PURE__*/_interopNamespace(React113);
|
|
44
44
|
var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
|
|
45
45
|
var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
|
|
46
46
|
var useEmblaCarousel__default = /*#__PURE__*/_interopDefault(useEmblaCarousel);
|
|
@@ -236,7 +236,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
236
236
|
}
|
|
237
237
|
);
|
|
238
238
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
239
|
-
var Button =
|
|
239
|
+
var Button = React113__namespace.forwardRef(
|
|
240
240
|
({
|
|
241
241
|
className,
|
|
242
242
|
variant,
|
|
@@ -254,7 +254,7 @@ var Button = React105__namespace.forwardRef(
|
|
|
254
254
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
255
255
|
const hasStartAdornment = !!startAdornment;
|
|
256
256
|
const hasEndAdornment = !!endAdornment;
|
|
257
|
-
const hasTextContent =
|
|
257
|
+
const hasTextContent = React113__namespace.Children.toArray(children).some(
|
|
258
258
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
259
259
|
);
|
|
260
260
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -309,7 +309,7 @@ var iconButtonVariants = {
|
|
|
309
309
|
large: "lua:p-3 lua:size-12"
|
|
310
310
|
}
|
|
311
311
|
};
|
|
312
|
-
var IconButton =
|
|
312
|
+
var IconButton = React113__namespace.forwardRef(
|
|
313
313
|
({
|
|
314
314
|
className,
|
|
315
315
|
variant,
|
|
@@ -350,7 +350,7 @@ var IconButton = React105__namespace.forwardRef(
|
|
|
350
350
|
className: "lua:text-current",
|
|
351
351
|
"aria-hidden": "true"
|
|
352
352
|
}
|
|
353
|
-
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children:
|
|
353
|
+
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: React113__namespace.cloneElement(children, {
|
|
354
354
|
"aria-hidden": "true"
|
|
355
355
|
}) })
|
|
356
356
|
}
|
|
@@ -358,7 +358,7 @@ var IconButton = React105__namespace.forwardRef(
|
|
|
358
358
|
}
|
|
359
359
|
);
|
|
360
360
|
IconButton.displayName = "IconButton";
|
|
361
|
-
var Input =
|
|
361
|
+
var Input = React113__namespace.forwardRef(
|
|
362
362
|
({
|
|
363
363
|
className,
|
|
364
364
|
type = "text",
|
|
@@ -374,7 +374,7 @@ var Input = React105__namespace.forwardRef(
|
|
|
374
374
|
disabled,
|
|
375
375
|
...props
|
|
376
376
|
}, ref) => {
|
|
377
|
-
const generatedId =
|
|
377
|
+
const generatedId = React113__namespace.useId();
|
|
378
378
|
const inputId = id || generatedId;
|
|
379
379
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
380
380
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -521,7 +521,7 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
521
521
|
}
|
|
522
522
|
}
|
|
523
523
|
);
|
|
524
|
-
var Badge =
|
|
524
|
+
var Badge = React113__namespace.forwardRef(
|
|
525
525
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
526
526
|
const Comp = asChild ? reactSlot.Slot : "span";
|
|
527
527
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -536,7 +536,7 @@ var Badge = React105__namespace.forwardRef(
|
|
|
536
536
|
}
|
|
537
537
|
);
|
|
538
538
|
Badge.displayName = "Badge";
|
|
539
|
-
var Textarea =
|
|
539
|
+
var Textarea = React113__namespace.forwardRef(
|
|
540
540
|
({
|
|
541
541
|
className,
|
|
542
542
|
description,
|
|
@@ -549,7 +549,7 @@ var Textarea = React105__namespace.forwardRef(
|
|
|
549
549
|
disabled,
|
|
550
550
|
...props
|
|
551
551
|
}, ref) => {
|
|
552
|
-
const generatedId =
|
|
552
|
+
const generatedId = React113__namespace.useId();
|
|
553
553
|
const textareaId = id || generatedId;
|
|
554
554
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
555
555
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -644,7 +644,7 @@ var Tabs = TabsPrimitive__namespace.Root;
|
|
|
644
644
|
var tabsListVariants = classVarianceAuthority.cva([
|
|
645
645
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
646
646
|
].join(" "));
|
|
647
|
-
var TabsList =
|
|
647
|
+
var TabsList = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
648
648
|
TabsPrimitive__namespace.List,
|
|
649
649
|
{
|
|
650
650
|
ref,
|
|
@@ -660,7 +660,7 @@ var tabsTriggerVariants = classVarianceAuthority.cva([
|
|
|
660
660
|
"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",
|
|
661
661
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
662
662
|
].join(" "));
|
|
663
|
-
var TabsTrigger =
|
|
663
|
+
var TabsTrigger = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
664
664
|
TabsPrimitive__namespace.Trigger,
|
|
665
665
|
{
|
|
666
666
|
ref,
|
|
@@ -673,7 +673,7 @@ var tabsContentVariants = classVarianceAuthority.cva([
|
|
|
673
673
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
674
674
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
675
675
|
].join(" "));
|
|
676
|
-
var TabsContent =
|
|
676
|
+
var TabsContent = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
677
677
|
TabsPrimitive__namespace.Content,
|
|
678
678
|
{
|
|
679
679
|
ref,
|
|
@@ -682,7 +682,7 @@ var TabsContent = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
682
682
|
}
|
|
683
683
|
));
|
|
684
684
|
TabsContent.displayName = TabsPrimitive__namespace.Content.displayName;
|
|
685
|
-
var InputOTP =
|
|
685
|
+
var InputOTP = React113__namespace.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
686
686
|
inputOtp.OTPInput,
|
|
687
687
|
{
|
|
688
688
|
ref,
|
|
@@ -695,10 +695,10 @@ var InputOTP = React105__namespace.forwardRef(({ className, containerClassName,
|
|
|
695
695
|
}
|
|
696
696
|
));
|
|
697
697
|
InputOTP.displayName = "InputOTP";
|
|
698
|
-
var InputOTPGroup =
|
|
698
|
+
var InputOTPGroup = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
699
699
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
700
|
-
var InputOTPSlot =
|
|
701
|
-
const inputOTPContext =
|
|
700
|
+
var InputOTPSlot = React113__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
701
|
+
const inputOTPContext = React113__namespace.useContext(inputOtp.OTPInputContext);
|
|
702
702
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
703
703
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
704
704
|
"div",
|
|
@@ -718,7 +718,7 @@ var InputOTPSlot = React105__namespace.forwardRef(({ index, className, ...props
|
|
|
718
718
|
);
|
|
719
719
|
});
|
|
720
720
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
721
|
-
var InputOTPSeparator =
|
|
721
|
+
var InputOTPSeparator = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
722
722
|
"div",
|
|
723
723
|
{
|
|
724
724
|
ref,
|
|
@@ -732,7 +732,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
732
732
|
var TooltipProvider = TooltipPrimitive__namespace.Provider;
|
|
733
733
|
var Tooltip = TooltipPrimitive__namespace.Root;
|
|
734
734
|
var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
|
|
735
|
-
var TooltipArrow =
|
|
735
|
+
var TooltipArrow = React113__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
736
736
|
TooltipPrimitive__namespace.Arrow,
|
|
737
737
|
{
|
|
738
738
|
ref,
|
|
@@ -749,7 +749,7 @@ var TooltipArrow = React105__namespace.forwardRef(({ className, style, ...props
|
|
|
749
749
|
}
|
|
750
750
|
));
|
|
751
751
|
TooltipArrow.displayName = TooltipPrimitive__namespace.Arrow.displayName;
|
|
752
|
-
var TooltipContent =
|
|
752
|
+
var TooltipContent = React113__namespace.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
753
753
|
TooltipPrimitive__namespace.Content,
|
|
754
754
|
{
|
|
755
755
|
ref,
|
|
@@ -773,7 +773,7 @@ var TooltipContent = React105__namespace.forwardRef(({ className, sideOffset = 4
|
|
|
773
773
|
}
|
|
774
774
|
) }));
|
|
775
775
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
776
|
-
var Card =
|
|
776
|
+
var Card = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
777
777
|
"div",
|
|
778
778
|
{
|
|
779
779
|
ref,
|
|
@@ -785,7 +785,7 @@ var Card = React105__namespace.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
785
785
|
}
|
|
786
786
|
));
|
|
787
787
|
Card.displayName = "Card";
|
|
788
|
-
var CardHeader =
|
|
788
|
+
var CardHeader = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
789
789
|
"div",
|
|
790
790
|
{
|
|
791
791
|
ref,
|
|
@@ -794,7 +794,7 @@ var CardHeader = React105__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
794
794
|
}
|
|
795
795
|
));
|
|
796
796
|
CardHeader.displayName = "CardHeader";
|
|
797
|
-
var CardTitle =
|
|
797
|
+
var CardTitle = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
798
798
|
"div",
|
|
799
799
|
{
|
|
800
800
|
ref,
|
|
@@ -803,7 +803,7 @@ var CardTitle = React105__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
803
803
|
}
|
|
804
804
|
));
|
|
805
805
|
CardTitle.displayName = "CardTitle";
|
|
806
|
-
var CardDescription =
|
|
806
|
+
var CardDescription = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
807
807
|
"div",
|
|
808
808
|
{
|
|
809
809
|
ref,
|
|
@@ -812,9 +812,9 @@ var CardDescription = React105__namespace.forwardRef(({ className, ...props }, r
|
|
|
812
812
|
}
|
|
813
813
|
));
|
|
814
814
|
CardDescription.displayName = "CardDescription";
|
|
815
|
-
var CardContent =
|
|
815
|
+
var CardContent = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
816
816
|
CardContent.displayName = "CardContent";
|
|
817
|
-
var CardFooter =
|
|
817
|
+
var CardFooter = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
818
818
|
"div",
|
|
819
819
|
{
|
|
820
820
|
ref,
|
|
@@ -887,7 +887,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
887
887
|
restProps
|
|
888
888
|
};
|
|
889
889
|
}
|
|
890
|
-
var ArrowLeft =
|
|
890
|
+
var ArrowLeft = React113__namespace.forwardRef(
|
|
891
891
|
({ size = 20, ...props }, ref) => {
|
|
892
892
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
893
893
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -916,7 +916,7 @@ var ArrowLeft = React105__namespace.forwardRef(
|
|
|
916
916
|
}
|
|
917
917
|
);
|
|
918
918
|
ArrowLeft.displayName = "ArrowLeft";
|
|
919
|
-
var ArrowRight =
|
|
919
|
+
var ArrowRight = React113__namespace.forwardRef(
|
|
920
920
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
921
921
|
"svg",
|
|
922
922
|
{
|
|
@@ -938,7 +938,29 @@ var ArrowRight = React105__namespace.forwardRef(
|
|
|
938
938
|
)
|
|
939
939
|
);
|
|
940
940
|
ArrowRight.displayName = "ArrowRight";
|
|
941
|
-
var
|
|
941
|
+
var ArrowsClockwiseIcon = React113__namespace.forwardRef(
|
|
942
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
943
|
+
"svg",
|
|
944
|
+
{
|
|
945
|
+
ref,
|
|
946
|
+
width: size,
|
|
947
|
+
height: size,
|
|
948
|
+
viewBox: "0 0 24 24",
|
|
949
|
+
fill: "none",
|
|
950
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
951
|
+
...props,
|
|
952
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
953
|
+
"path",
|
|
954
|
+
{
|
|
955
|
+
d: "M21 4.50001V9.00001C21 9.19892 20.921 9.38969 20.7803 9.53034C20.6397 9.67099 20.4489 9.75001 20.25 9.75001H15.75C15.5511 9.75001 15.3603 9.67099 15.2197 9.53034C15.079 9.38969 15 9.19892 15 9.00001C15 8.8011 15.079 8.61033 15.2197 8.46968C15.3603 8.32903 15.5511 8.25001 15.75 8.25001H18.4397L17.0681 6.87845C15.6742 5.4782 13.7817 4.68821 11.8059 4.68188H11.7638C9.80454 4.67729 7.92227 5.44414 6.52406 6.81657C6.38083 6.95028 6.19096 7.02262 5.99507 7.01813C5.79918 7.01364 5.61283 6.93266 5.47588 6.79253C5.33893 6.65239 5.26226 6.46423 5.26227 6.26829C5.26228 6.07235 5.33897 5.88419 5.47594 5.74407C7.1705 4.08788 9.44983 3.16677 11.8193 3.18064C14.1887 3.1945 16.4571 4.14222 18.1322 5.81813L19.5 7.1897V4.50001C19.5 4.3011 19.579 4.11033 19.7197 3.96968C19.8603 3.82903 20.0511 3.75001 20.25 3.75001C20.4489 3.75001 20.6397 3.82903 20.7803 3.96968C20.921 4.11033 21 4.3011 21 4.50001ZM17.4759 17.1834C16.0639 18.5627 14.1651 19.3298 12.1912 19.3182C10.2173 19.3066 8.32762 18.5173 6.93188 17.1216L5.56031 15.75H8.25C8.44891 15.75 8.63968 15.671 8.78033 15.5303C8.92098 15.3897 9 15.1989 9 15C9 14.8011 8.92098 14.6103 8.78033 14.4697C8.63968 14.329 8.44891 14.25 8.25 14.25H3.75C3.55109 14.25 3.36032 14.329 3.21967 14.4697C3.07902 14.6103 3 14.8011 3 15V19.5C3 19.6989 3.07902 19.8897 3.21967 20.0303C3.36032 20.171 3.55109 20.25 3.75 20.25C3.94891 20.25 4.13968 20.171 4.28033 20.0303C4.42098 19.8897 4.5 19.6989 4.5 19.5V16.8103L5.87156 18.1819C7.54426 19.863 9.816 20.8112 12.1875 20.8181H12.2372C14.5885 20.8242 16.8476 19.9037 18.525 18.2559C18.662 18.1158 18.7387 17.9277 18.7387 17.7317C18.7387 17.5358 18.662 17.3476 18.5251 17.2075C18.3881 17.0674 18.2018 16.9864 18.0059 16.9819C17.81 16.9774 17.6201 17.0497 17.4769 17.1834H17.4759Z",
|
|
956
|
+
fill: props.color || "currentColor"
|
|
957
|
+
}
|
|
958
|
+
)
|
|
959
|
+
}
|
|
960
|
+
)
|
|
961
|
+
);
|
|
962
|
+
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
963
|
+
var ArrowSquareOut = React113__namespace.forwardRef(
|
|
942
964
|
({ size = 20, ...props }, ref) => {
|
|
943
965
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
944
966
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -967,7 +989,7 @@ var ArrowSquareOut = React105__namespace.forwardRef(
|
|
|
967
989
|
}
|
|
968
990
|
);
|
|
969
991
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
970
|
-
var ArrowUp =
|
|
992
|
+
var ArrowUp = React113__namespace.forwardRef(
|
|
971
993
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
972
994
|
"svg",
|
|
973
995
|
{
|
|
@@ -989,7 +1011,29 @@ var ArrowUp = React105__namespace.forwardRef(
|
|
|
989
1011
|
)
|
|
990
1012
|
);
|
|
991
1013
|
ArrowUp.displayName = "ArrowUp";
|
|
992
|
-
var
|
|
1014
|
+
var BooksIcon = React113__namespace.forwardRef(
|
|
1015
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1016
|
+
"svg",
|
|
1017
|
+
{
|
|
1018
|
+
ref,
|
|
1019
|
+
width: size,
|
|
1020
|
+
height: size,
|
|
1021
|
+
viewBox: "0 0 24 24",
|
|
1022
|
+
fill: "none",
|
|
1023
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1024
|
+
...props,
|
|
1025
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1026
|
+
"path",
|
|
1027
|
+
{
|
|
1028
|
+
d: "M21.7172 18.2391L18.6056 3.44537C18.5654 3.25191 18.4873 3.06831 18.3759 2.90511C18.2645 2.74191 18.1219 2.60233 17.9564 2.4944C17.7909 2.38646 17.6057 2.3123 17.4114 2.27616C17.2171 2.24002 17.0176 2.24262 16.8244 2.28381L12.4359 3.22693C12.0478 3.31193 11.7089 3.54675 11.4929 3.88032C11.277 4.21389 11.2015 4.61923 11.2828 5.00818L14.3944 19.8019C14.4637 20.1395 14.6471 20.4428 14.9138 20.661C15.1805 20.8792 15.5142 20.9989 15.8588 21.0001C15.9653 20.9999 16.0715 20.9886 16.1756 20.9663L20.5641 20.0232C20.9527 19.938 21.292 19.7027 21.5079 19.3686C21.7239 19.0344 21.7991 18.6285 21.7172 18.2391ZM12.75 4.70162C12.75 4.696 12.75 4.69318 12.75 4.69318L17.1375 3.75568L17.4497 5.24349L13.0622 6.18756L12.75 4.70162ZM13.3706 7.65193L17.76 6.70974L18.0731 8.20037L13.6875 9.14349L13.3706 7.65193ZM13.9931 10.6116L18.3825 9.66849L19.6294 15.5972L15.24 16.5404L13.9931 10.6116ZM20.25 18.5569L15.8625 19.4944L15.5503 18.0066L19.9378 17.0626L20.25 18.5485C20.25 18.5541 20.25 18.5569 20.25 18.5569ZM9.75 3.00006H5.25C4.85218 3.00006 4.47064 3.15809 4.18934 3.4394C3.90804 3.7207 3.75 4.10223 3.75 4.50006V19.5001C3.75 19.8979 3.90804 20.2794 4.18934 20.5607C4.47064 20.842 4.85218 21.0001 5.25 21.0001H9.75C10.1478 21.0001 10.5294 20.842 10.8107 20.5607C11.092 20.2794 11.25 19.8979 11.25 19.5001V4.50006C11.25 4.10223 11.092 3.7207 10.8107 3.4394C10.5294 3.15809 10.1478 3.00006 9.75 3.00006ZM5.25 4.50006H9.75V6.00006H5.25V4.50006ZM5.25 7.50006H9.75V16.5001H5.25V7.50006ZM9.75 19.5001H5.25V18.0001H9.75V19.5001Z",
|
|
1029
|
+
fill: props.color || "currentColor"
|
|
1030
|
+
}
|
|
1031
|
+
)
|
|
1032
|
+
}
|
|
1033
|
+
)
|
|
1034
|
+
);
|
|
1035
|
+
BooksIcon.displayName = "BooksIcon";
|
|
1036
|
+
var Camera = React113__namespace.forwardRef(
|
|
993
1037
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
994
1038
|
"svg",
|
|
995
1039
|
{
|
|
@@ -1011,7 +1055,7 @@ var Camera = React105__namespace.forwardRef(
|
|
|
1011
1055
|
)
|
|
1012
1056
|
);
|
|
1013
1057
|
Camera.displayName = "Camera";
|
|
1014
|
-
var CaretDown =
|
|
1058
|
+
var CaretDown = React113__namespace.forwardRef(
|
|
1015
1059
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1016
1060
|
"svg",
|
|
1017
1061
|
{
|
|
@@ -1033,7 +1077,7 @@ var CaretDown = React105__namespace.forwardRef(
|
|
|
1033
1077
|
)
|
|
1034
1078
|
);
|
|
1035
1079
|
CaretDown.displayName = "CaretDown";
|
|
1036
|
-
var CaretRight =
|
|
1080
|
+
var CaretRight = React113__namespace.forwardRef(
|
|
1037
1081
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1038
1082
|
"svg",
|
|
1039
1083
|
{
|
|
@@ -1055,7 +1099,7 @@ var CaretRight = React105__namespace.forwardRef(
|
|
|
1055
1099
|
)
|
|
1056
1100
|
);
|
|
1057
1101
|
CaretRight.displayName = "CaretRight";
|
|
1058
|
-
var ChartBar =
|
|
1102
|
+
var ChartBar = React113__namespace.forwardRef(
|
|
1059
1103
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1060
1104
|
"svg",
|
|
1061
1105
|
{
|
|
@@ -1077,7 +1121,7 @@ var ChartBar = React105__namespace.forwardRef(
|
|
|
1077
1121
|
)
|
|
1078
1122
|
);
|
|
1079
1123
|
ChartBar.displayName = "ChartBar";
|
|
1080
|
-
var Chat =
|
|
1124
|
+
var Chat = React113__namespace.forwardRef(
|
|
1081
1125
|
({ size = 20, ...props }, ref) => {
|
|
1082
1126
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1083
1127
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1106,7 +1150,7 @@ var Chat = React105__namespace.forwardRef(
|
|
|
1106
1150
|
}
|
|
1107
1151
|
);
|
|
1108
1152
|
Chat.displayName = "Chat";
|
|
1109
|
-
var ChatsCircle =
|
|
1153
|
+
var ChatsCircle = React113__namespace.forwardRef(
|
|
1110
1154
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1111
1155
|
"svg",
|
|
1112
1156
|
{
|
|
@@ -1128,7 +1172,7 @@ var ChatsCircle = React105__namespace.forwardRef(
|
|
|
1128
1172
|
)
|
|
1129
1173
|
);
|
|
1130
1174
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1131
|
-
var Check =
|
|
1175
|
+
var Check = React113__namespace.forwardRef(
|
|
1132
1176
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1133
1177
|
"svg",
|
|
1134
1178
|
{
|
|
@@ -1150,7 +1194,29 @@ var Check = React105__namespace.forwardRef(
|
|
|
1150
1194
|
)
|
|
1151
1195
|
);
|
|
1152
1196
|
Check.displayName = "Check";
|
|
1153
|
-
var
|
|
1197
|
+
var CheckSquareIcon = React113__namespace.forwardRef(
|
|
1198
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1199
|
+
"svg",
|
|
1200
|
+
{
|
|
1201
|
+
ref,
|
|
1202
|
+
width: size,
|
|
1203
|
+
height: size,
|
|
1204
|
+
viewBox: "0 0 24 24",
|
|
1205
|
+
fill: "none",
|
|
1206
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1207
|
+
...props,
|
|
1208
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1209
|
+
"path",
|
|
1210
|
+
{
|
|
1211
|
+
d: "M16.2806 9.21937C16.3504 9.28903 16.4057 9.37175 16.4434 9.46279C16.4812 9.55384 16.5006 9.65144 16.5006 9.75C16.5006 9.84856 16.4812 9.94616 16.4434 10.0372C16.4057 10.1283 16.3504 10.211 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.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.289 9.14964 15.3717 9.09432 15.4628 9.05658C15.5538 9.01884 15.6514 8.99941 15.75 8.99941C15.8486 8.99941 15.9462 9.01884 16.0372 9.05658C16.1283 9.09432 16.211 9.14964 16.2806 9.21937ZM21 4.5V19.5C21 19.8978 20.842 20.2794 20.5607 20.5607C20.2794 20.842 19.8978 21 19.5 21H4.5C4.10218 21 3.72064 20.842 3.43934 20.5607C3.15804 20.2794 3 19.8978 3 19.5V4.5C3 4.10218 3.15804 3.72064 3.43934 3.43934C3.72064 3.15804 4.10218 3 4.5 3H19.5C19.8978 3 20.2794 3.15804 20.5607 3.43934C20.842 3.72064 21 4.10218 21 4.5ZM19.5 19.5V4.5H4.5V19.5H19.5Z",
|
|
1212
|
+
fill: props.color || "currentColor"
|
|
1213
|
+
}
|
|
1214
|
+
)
|
|
1215
|
+
}
|
|
1216
|
+
)
|
|
1217
|
+
);
|
|
1218
|
+
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1219
|
+
var Circle = React113__namespace.forwardRef(
|
|
1154
1220
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1155
1221
|
"svg",
|
|
1156
1222
|
{
|
|
@@ -1172,7 +1238,29 @@ var Circle = React105__namespace.forwardRef(
|
|
|
1172
1238
|
)
|
|
1173
1239
|
);
|
|
1174
1240
|
Circle.displayName = "Circle";
|
|
1175
|
-
var
|
|
1241
|
+
var ClipboardTextIcon = React113__namespace.forwardRef(
|
|
1242
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1243
|
+
"svg",
|
|
1244
|
+
{
|
|
1245
|
+
ref,
|
|
1246
|
+
width: size,
|
|
1247
|
+
height: size,
|
|
1248
|
+
viewBox: "0 0 24 24",
|
|
1249
|
+
fill: "none",
|
|
1250
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1251
|
+
...props,
|
|
1252
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1253
|
+
"path",
|
|
1254
|
+
{
|
|
1255
|
+
d: "M15.75 14.25C15.75 14.4489 15.671 14.6397 15.5303 14.7803C15.3897 14.921 15.1989 15 15 15H9C8.80109 15 8.61032 14.921 8.46967 14.7803C8.32902 14.6397 8.25 14.4489 8.25 14.25C8.25 14.0511 8.32902 13.8603 8.46967 13.7197C8.61032 13.579 8.80109 13.5 9 13.5H15C15.1989 13.5 15.3897 13.579 15.5303 13.7197C15.671 13.8603 15.75 14.0511 15.75 14.25ZM15 10.5H9C8.80109 10.5 8.61032 10.579 8.46967 10.7197C8.32902 10.8603 8.25 11.0511 8.25 11.25C8.25 11.4489 8.32902 11.6397 8.46967 11.7803C8.61032 11.921 8.80109 12 9 12H15C15.1989 12 15.3897 11.921 15.5303 11.7803C15.671 11.6397 15.75 11.4489 15.75 11.25C15.75 11.0511 15.671 10.8603 15.5303 10.7197C15.3897 10.579 15.1989 10.5 15 10.5ZM20.25 4.49999V20.25C20.25 20.6478 20.092 21.0293 19.8107 21.3106C19.5294 21.592 19.1478 21.75 18.75 21.75H5.25C4.85218 21.75 4.47064 21.592 4.18934 21.3106C3.90804 21.0293 3.75 20.6478 3.75 20.25V4.49999C3.75 4.10216 3.90804 3.72063 4.18934 3.43933C4.47064 3.15802 4.85218 2.99999 5.25 2.99999H8.64937C9.07079 2.52817 9.58709 2.15066 10.1645 1.8922C10.7419 1.63373 11.3674 1.50012 12 1.50012C12.6326 1.50012 13.2581 1.63373 13.8355 1.8922C14.4129 2.15066 14.9292 2.52817 15.3506 2.99999H18.75C19.1478 2.99999 19.5294 3.15802 19.8107 3.43933C20.092 3.72063 20.25 4.10216 20.25 4.49999ZM9 5.99999H15C15 5.20434 14.6839 4.44127 14.1213 3.87867C13.5587 3.31606 12.7956 2.99999 12 2.99999C11.2044 2.99999 10.4413 3.31606 9.87868 3.87867C9.31607 4.44127 9 5.20434 9 5.99999ZM18.75 4.49999H16.2422C16.4128 4.98169 16.5 5.48896 16.5 5.99999V6.74999C16.5 6.9489 16.421 7.13966 16.2803 7.28032C16.1397 7.42097 15.9489 7.49999 15.75 7.49999H8.25C8.05109 7.49999 7.86032 7.42097 7.71967 7.28032C7.57902 7.13966 7.5 6.9489 7.5 6.74999V5.99999C7.50002 5.48896 7.58721 4.98169 7.75781 4.49999H5.25V20.25H18.75V4.49999Z",
|
|
1256
|
+
fill: props.color || "currentColor"
|
|
1257
|
+
}
|
|
1258
|
+
)
|
|
1259
|
+
}
|
|
1260
|
+
)
|
|
1261
|
+
);
|
|
1262
|
+
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1263
|
+
var Clock = React113__namespace.forwardRef(
|
|
1176
1264
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1177
1265
|
"svg",
|
|
1178
1266
|
{
|
|
@@ -1194,7 +1282,7 @@ var Clock = React105__namespace.forwardRef(
|
|
|
1194
1282
|
)
|
|
1195
1283
|
);
|
|
1196
1284
|
Clock.displayName = "Clock";
|
|
1197
|
-
var CopySimpleIcon =
|
|
1285
|
+
var CopySimpleIcon = React113__namespace.forwardRef(
|
|
1198
1286
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1199
1287
|
"svg",
|
|
1200
1288
|
{
|
|
@@ -1216,7 +1304,7 @@ var CopySimpleIcon = React105__namespace.forwardRef(
|
|
|
1216
1304
|
)
|
|
1217
1305
|
);
|
|
1218
1306
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1219
|
-
var CreditCard =
|
|
1307
|
+
var CreditCard = React113__namespace.forwardRef(
|
|
1220
1308
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1221
1309
|
"svg",
|
|
1222
1310
|
{
|
|
@@ -1238,7 +1326,7 @@ var CreditCard = React105__namespace.forwardRef(
|
|
|
1238
1326
|
)
|
|
1239
1327
|
);
|
|
1240
1328
|
CreditCard.displayName = "CreditCard";
|
|
1241
|
-
var CurrencyCircleDollar =
|
|
1329
|
+
var CurrencyCircleDollar = React113__namespace.default.forwardRef(
|
|
1242
1330
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1243
1331
|
"svg",
|
|
1244
1332
|
{
|
|
@@ -1260,7 +1348,7 @@ var CurrencyCircleDollar = React105__namespace.default.forwardRef(
|
|
|
1260
1348
|
)
|
|
1261
1349
|
);
|
|
1262
1350
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1263
|
-
var DotsSixVerticalIcon =
|
|
1351
|
+
var DotsSixVerticalIcon = React113__namespace.forwardRef(
|
|
1264
1352
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1265
1353
|
"svg",
|
|
1266
1354
|
{
|
|
@@ -1282,7 +1370,7 @@ var DotsSixVerticalIcon = React105__namespace.forwardRef(
|
|
|
1282
1370
|
)
|
|
1283
1371
|
);
|
|
1284
1372
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1285
|
-
var DotsThree =
|
|
1373
|
+
var DotsThree = React113__namespace.forwardRef(
|
|
1286
1374
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1287
1375
|
"svg",
|
|
1288
1376
|
{
|
|
@@ -1304,7 +1392,7 @@ var DotsThree = React105__namespace.forwardRef(
|
|
|
1304
1392
|
)
|
|
1305
1393
|
);
|
|
1306
1394
|
DotsThree.displayName = "DotsThree";
|
|
1307
|
-
var DotsThreeVertical =
|
|
1395
|
+
var DotsThreeVertical = React113__namespace.forwardRef(
|
|
1308
1396
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1309
1397
|
"svg",
|
|
1310
1398
|
{
|
|
@@ -1326,7 +1414,7 @@ var DotsThreeVertical = React105__namespace.forwardRef(
|
|
|
1326
1414
|
)
|
|
1327
1415
|
);
|
|
1328
1416
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1329
|
-
var FacebookLogo =
|
|
1417
|
+
var FacebookLogo = React113__namespace.forwardRef(
|
|
1330
1418
|
({ size = 20, ...props }, ref) => {
|
|
1331
1419
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1332
1420
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1355,7 +1443,29 @@ var FacebookLogo = React105__namespace.forwardRef(
|
|
|
1355
1443
|
}
|
|
1356
1444
|
);
|
|
1357
1445
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1358
|
-
var
|
|
1446
|
+
var FolderIcon = React113__namespace.forwardRef(
|
|
1447
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1448
|
+
"svg",
|
|
1449
|
+
{
|
|
1450
|
+
ref,
|
|
1451
|
+
width: size,
|
|
1452
|
+
height: size,
|
|
1453
|
+
viewBox: "0 0 24 24",
|
|
1454
|
+
fill: "none",
|
|
1455
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1456
|
+
...props,
|
|
1457
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1458
|
+
"path",
|
|
1459
|
+
{
|
|
1460
|
+
d: "M20.25 6.75001H12.3103L9.75 4.18969C9.61122 4.0498 9.44601 3.93889 9.26398 3.86341C9.08196 3.78792 8.88674 3.74938 8.68969 3.75001H3.75C3.35218 3.75001 2.97064 3.90804 2.68934 4.18935C2.40804 4.47065 2.25 4.85218 2.25 5.25001V18.8081C2.2505 19.1904 2.40257 19.5568 2.67286 19.8271C2.94316 20.0974 3.30962 20.2495 3.69188 20.25H20.3334C20.709 20.2495 21.069 20.1001 21.3346 19.8346C21.6001 19.569 21.7495 19.209 21.75 18.8334V8.25001C21.75 7.85218 21.592 7.47065 21.3107 7.18935C21.0294 6.90804 20.6478 6.75001 20.25 6.75001ZM3.75 5.25001H8.68969L10.1897 6.75001H3.75V5.25001ZM20.25 18.75H3.75V8.25001H20.25V18.75Z",
|
|
1461
|
+
fill: props.color || "currentColor"
|
|
1462
|
+
}
|
|
1463
|
+
)
|
|
1464
|
+
}
|
|
1465
|
+
)
|
|
1466
|
+
);
|
|
1467
|
+
FolderIcon.displayName = "FolderIcon";
|
|
1468
|
+
var Gear = React113__namespace.forwardRef(
|
|
1359
1469
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1360
1470
|
"svg",
|
|
1361
1471
|
{
|
|
@@ -1377,7 +1487,7 @@ var Gear = React105__namespace.forwardRef(
|
|
|
1377
1487
|
)
|
|
1378
1488
|
);
|
|
1379
1489
|
Gear.displayName = "Gear";
|
|
1380
|
-
var GearSix =
|
|
1490
|
+
var GearSix = React113__namespace.forwardRef(
|
|
1381
1491
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1382
1492
|
"svg",
|
|
1383
1493
|
{
|
|
@@ -1399,7 +1509,7 @@ var GearSix = React105__namespace.forwardRef(
|
|
|
1399
1509
|
)
|
|
1400
1510
|
);
|
|
1401
1511
|
GearSix.displayName = "GearSix";
|
|
1402
|
-
var GitCommit =
|
|
1512
|
+
var GitCommit = React113__namespace.forwardRef(
|
|
1403
1513
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1404
1514
|
"svg",
|
|
1405
1515
|
{
|
|
@@ -1421,7 +1531,7 @@ var GitCommit = React105__namespace.forwardRef(
|
|
|
1421
1531
|
)
|
|
1422
1532
|
);
|
|
1423
1533
|
GitCommit.displayName = "GitCommit";
|
|
1424
|
-
var Headset =
|
|
1534
|
+
var Headset = React113__namespace.forwardRef(
|
|
1425
1535
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1426
1536
|
"svg",
|
|
1427
1537
|
{
|
|
@@ -1443,7 +1553,7 @@ var Headset = React105__namespace.forwardRef(
|
|
|
1443
1553
|
)
|
|
1444
1554
|
);
|
|
1445
1555
|
Headset.displayName = "Headset";
|
|
1446
|
-
var ImageIcon =
|
|
1556
|
+
var ImageIcon = React113__namespace.forwardRef(
|
|
1447
1557
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1448
1558
|
"svg",
|
|
1449
1559
|
{
|
|
@@ -1465,7 +1575,7 @@ var ImageIcon = React105__namespace.forwardRef(
|
|
|
1465
1575
|
)
|
|
1466
1576
|
);
|
|
1467
1577
|
ImageIcon.displayName = "ImageIcon";
|
|
1468
|
-
var InstagramLogo =
|
|
1578
|
+
var InstagramLogo = React113__namespace.forwardRef(
|
|
1469
1579
|
({ size = 20, ...props }, ref) => {
|
|
1470
1580
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1471
1581
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1494,7 +1604,7 @@ var InstagramLogo = React105__namespace.forwardRef(
|
|
|
1494
1604
|
}
|
|
1495
1605
|
);
|
|
1496
1606
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1497
|
-
var KeyIcon =
|
|
1607
|
+
var KeyIcon = React113__namespace.forwardRef(
|
|
1498
1608
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1499
1609
|
"svg",
|
|
1500
1610
|
{
|
|
@@ -1516,7 +1626,7 @@ var KeyIcon = React105__namespace.forwardRef(
|
|
|
1516
1626
|
)
|
|
1517
1627
|
);
|
|
1518
1628
|
KeyIcon.displayName = "KeyIcon";
|
|
1519
|
-
var LinkIcon =
|
|
1629
|
+
var LinkIcon = React113__namespace.forwardRef(
|
|
1520
1630
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1521
1631
|
"svg",
|
|
1522
1632
|
{
|
|
@@ -1538,7 +1648,7 @@ var LinkIcon = React105__namespace.forwardRef(
|
|
|
1538
1648
|
)
|
|
1539
1649
|
);
|
|
1540
1650
|
LinkIcon.displayName = "LinkIcon";
|
|
1541
|
-
var LinkSimple =
|
|
1651
|
+
var LinkSimple = React113__namespace.forwardRef(
|
|
1542
1652
|
({ size = 20, ...props }, ref) => {
|
|
1543
1653
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1544
1654
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1567,7 +1677,7 @@ var LinkSimple = React105__namespace.forwardRef(
|
|
|
1567
1677
|
}
|
|
1568
1678
|
);
|
|
1569
1679
|
LinkSimple.displayName = "LinkSimple";
|
|
1570
|
-
var LockSimple =
|
|
1680
|
+
var LockSimple = React113__namespace.default.forwardRef(
|
|
1571
1681
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1572
1682
|
"svg",
|
|
1573
1683
|
{
|
|
@@ -1589,7 +1699,7 @@ var LockSimple = React105__namespace.default.forwardRef(
|
|
|
1589
1699
|
)
|
|
1590
1700
|
);
|
|
1591
1701
|
LockSimple.displayName = "LockSimple";
|
|
1592
|
-
var Logo =
|
|
1702
|
+
var Logo = React113__namespace.forwardRef(
|
|
1593
1703
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1594
1704
|
"svg",
|
|
1595
1705
|
{
|
|
@@ -2063,7 +2173,7 @@ var Logo = React105__namespace.forwardRef(
|
|
|
2063
2173
|
)
|
|
2064
2174
|
);
|
|
2065
2175
|
Logo.displayName = "Logo";
|
|
2066
|
-
var MagnifyingGlass =
|
|
2176
|
+
var MagnifyingGlass = React113__namespace.forwardRef(
|
|
2067
2177
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2068
2178
|
"svg",
|
|
2069
2179
|
{
|
|
@@ -2085,7 +2195,7 @@ var MagnifyingGlass = React105__namespace.forwardRef(
|
|
|
2085
2195
|
)
|
|
2086
2196
|
);
|
|
2087
2197
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2088
|
-
var MapPin =
|
|
2198
|
+
var MapPin = React113__namespace.forwardRef(
|
|
2089
2199
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2090
2200
|
"svg",
|
|
2091
2201
|
{
|
|
@@ -2107,7 +2217,7 @@ var MapPin = React105__namespace.forwardRef(
|
|
|
2107
2217
|
)
|
|
2108
2218
|
);
|
|
2109
2219
|
MapPin.displayName = "MapPin";
|
|
2110
|
-
var Microphone =
|
|
2220
|
+
var Microphone = React113__namespace.forwardRef(
|
|
2111
2221
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2112
2222
|
"svg",
|
|
2113
2223
|
{
|
|
@@ -2129,7 +2239,7 @@ var Microphone = React105__namespace.forwardRef(
|
|
|
2129
2239
|
)
|
|
2130
2240
|
);
|
|
2131
2241
|
Microphone.displayName = "Microphone";
|
|
2132
|
-
var Minus =
|
|
2242
|
+
var Minus = React113__namespace.forwardRef(
|
|
2133
2243
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2134
2244
|
"svg",
|
|
2135
2245
|
{
|
|
@@ -2151,7 +2261,7 @@ var Minus = React105__namespace.forwardRef(
|
|
|
2151
2261
|
)
|
|
2152
2262
|
);
|
|
2153
2263
|
Minus.displayName = "Minus";
|
|
2154
|
-
var MinusCircleIcon =
|
|
2264
|
+
var MinusCircleIcon = React113__namespace.forwardRef(
|
|
2155
2265
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2156
2266
|
"svg",
|
|
2157
2267
|
{
|
|
@@ -2173,7 +2283,29 @@ var MinusCircleIcon = React105__namespace.forwardRef(
|
|
|
2173
2283
|
)
|
|
2174
2284
|
);
|
|
2175
2285
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2176
|
-
var
|
|
2286
|
+
var PackageIcon = React113__namespace.forwardRef(
|
|
2287
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2288
|
+
"svg",
|
|
2289
|
+
{
|
|
2290
|
+
ref,
|
|
2291
|
+
width: size,
|
|
2292
|
+
height: size,
|
|
2293
|
+
viewBox: "0 0 24 24",
|
|
2294
|
+
fill: "none",
|
|
2295
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2296
|
+
...props,
|
|
2297
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2298
|
+
"path",
|
|
2299
|
+
{
|
|
2300
|
+
d: "M20.97 6.20146L12.72 1.68739C12.4996 1.5656 12.2518 1.50171 12 1.50171C11.7482 1.50171 11.5004 1.5656 11.28 1.68739L3.03 6.20333C2.7944 6.33224 2.59772 6.52205 2.46052 6.75292C2.32331 6.98379 2.25061 7.24727 2.25 7.51583V16.4821C2.25061 16.7506 2.32331 17.0141 2.46052 17.245C2.59772 17.4759 2.7944 17.6657 3.03 17.7946L11.28 22.3105C11.5004 22.4323 11.7482 22.4962 12 22.4962C12.2518 22.4962 12.4996 22.4323 12.72 22.3105L20.97 17.7946C21.2056 17.6657 21.4023 17.4759 21.5395 17.245C21.6767 17.0141 21.7494 16.7506 21.75 16.4821V7.51677C21.7499 7.24773 21.6774 6.98366 21.5402 6.75225C21.403 6.52084 21.206 6.3306 20.97 6.20146ZM12 2.99989L19.5319 7.12489L16.7409 8.65302L9.20813 4.52802L12 2.99989ZM12 11.2499L4.46812 7.12489L7.64625 5.38489L15.1781 9.5099L12 11.2499ZM3.75 8.4374L11.25 12.5418V20.5846L3.75 16.483V8.4374ZM20.25 16.4793L12.75 20.5846V12.5455L15.75 10.904V14.2499C15.75 14.4488 15.829 14.6396 15.9697 14.7802C16.1103 14.9209 16.3011 14.9999 16.5 14.9999C16.6989 14.9999 16.8897 14.9209 17.0303 14.7802C17.171 14.6396 17.25 14.4488 17.25 14.2499V10.0827L20.25 8.4374V16.4783V16.4793Z",
|
|
2301
|
+
fill: props.color || "currentColor"
|
|
2302
|
+
}
|
|
2303
|
+
)
|
|
2304
|
+
}
|
|
2305
|
+
)
|
|
2306
|
+
);
|
|
2307
|
+
PackageIcon.displayName = "PackageIcon";
|
|
2308
|
+
var Paperclip = React113__namespace.forwardRef(
|
|
2177
2309
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2178
2310
|
"svg",
|
|
2179
2311
|
{
|
|
@@ -2195,7 +2327,7 @@ var Paperclip = React105__namespace.forwardRef(
|
|
|
2195
2327
|
)
|
|
2196
2328
|
);
|
|
2197
2329
|
Paperclip.displayName = "Paperclip";
|
|
2198
|
-
var PaperPlane =
|
|
2330
|
+
var PaperPlane = React113__namespace.forwardRef(
|
|
2199
2331
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2200
2332
|
"svg",
|
|
2201
2333
|
{
|
|
@@ -2217,7 +2349,7 @@ var PaperPlane = React105__namespace.forwardRef(
|
|
|
2217
2349
|
)
|
|
2218
2350
|
);
|
|
2219
2351
|
PaperPlane.displayName = "PaperPlane";
|
|
2220
|
-
var PaperPlaneTilt =
|
|
2352
|
+
var PaperPlaneTilt = React113__namespace.forwardRef(
|
|
2221
2353
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2222
2354
|
"svg",
|
|
2223
2355
|
{
|
|
@@ -2239,7 +2371,7 @@ var PaperPlaneTilt = React105__namespace.forwardRef(
|
|
|
2239
2371
|
)
|
|
2240
2372
|
);
|
|
2241
2373
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2242
|
-
var PencilSimple =
|
|
2374
|
+
var PencilSimple = React113__namespace.forwardRef(
|
|
2243
2375
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2244
2376
|
"svg",
|
|
2245
2377
|
{
|
|
@@ -2261,7 +2393,7 @@ var PencilSimple = React105__namespace.forwardRef(
|
|
|
2261
2393
|
)
|
|
2262
2394
|
);
|
|
2263
2395
|
PencilSimple.displayName = "PencilSimple";
|
|
2264
|
-
var PlugsRegular =
|
|
2396
|
+
var PlugsRegular = React113__namespace.forwardRef(
|
|
2265
2397
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2266
2398
|
"svg",
|
|
2267
2399
|
{
|
|
@@ -2283,7 +2415,29 @@ var PlugsRegular = React105__namespace.forwardRef(
|
|
|
2283
2415
|
)
|
|
2284
2416
|
);
|
|
2285
2417
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2286
|
-
var
|
|
2418
|
+
var ShoppingCartIcon = React113__namespace.forwardRef(
|
|
2419
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2420
|
+
"svg",
|
|
2421
|
+
{
|
|
2422
|
+
ref,
|
|
2423
|
+
width: size,
|
|
2424
|
+
height: size,
|
|
2425
|
+
viewBox: "0 0 24 24",
|
|
2426
|
+
fill: "none",
|
|
2427
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2428
|
+
...props,
|
|
2429
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2430
|
+
"path",
|
|
2431
|
+
{
|
|
2432
|
+
d: "M21.5756 5.51906C21.5052 5.43481 21.4172 5.36705 21.3177 5.32056C21.2183 5.27407 21.1098 5.24998 21 5.25H5.87625L5.30625 2.11594C5.27485 1.94313 5.1838 1.78681 5.04897 1.67425C4.91414 1.56169 4.74408 1.50003 4.56844 1.5H2.25C2.05109 1.5 1.86032 1.57902 1.71967 1.71967C1.57902 1.86032 1.5 2.05109 1.5 2.25C1.5 2.44891 1.57902 2.63968 1.71967 2.78033C1.86032 2.92098 2.05109 3 2.25 3H3.9375L6.33375 16.1522C6.40434 16.5422 6.57671 16.9067 6.83344 17.2087C6.47911 17.5397 6.22336 17.9623 6.09455 18.4298C5.96575 18.8972 5.96892 19.3912 6.10371 19.8569C6.23851 20.3226 6.49966 20.7419 6.85821 21.0683C7.21676 21.3947 7.6587 21.6154 8.13502 21.7059C8.61134 21.7965 9.10344 21.7533 9.55673 21.5813C10.01 21.4092 10.4068 21.115 10.7031 20.7312C10.9994 20.3474 11.1836 19.889 11.2353 19.407C11.287 18.9249 11.2041 18.4379 10.9959 18H15.2541C15.0863 18.3513 14.9995 18.7357 15 19.125C15 19.6442 15.154 20.1517 15.4424 20.5834C15.7308 21.0151 16.1408 21.3515 16.6205 21.5502C17.1001 21.7489 17.6279 21.8008 18.1371 21.6996C18.6463 21.5983 19.114 21.3483 19.4812 20.9812C19.8483 20.614 20.0983 20.1463 20.1996 19.6371C20.3008 19.1279 20.2489 18.6001 20.0502 18.1205C19.8515 17.6408 19.5151 17.2308 19.0834 16.9424C18.6517 16.654 18.1442 16.5 17.625 16.5H8.54719C8.37155 16.5 8.20149 16.4383 8.06665 16.3257C7.93182 16.2132 7.84077 16.0569 7.80938 15.8841L7.51219 14.25H18.3872C18.9141 14.2499 19.4243 14.0649 19.8288 13.7272C20.2333 13.3896 20.5064 12.9206 20.6006 12.4022L21.7406 6.13406C21.7599 6.02572 21.7551 5.91447 21.7266 5.80818C21.6981 5.7019 21.6466 5.60319 21.5756 5.51906ZM9.75 19.125C9.75 19.3475 9.68402 19.565 9.5604 19.75C9.43679 19.935 9.26109 20.0792 9.05552 20.1644C8.84995 20.2495 8.62375 20.2718 8.40552 20.2284C8.18729 20.185 7.98684 20.0778 7.8295 19.9205C7.67217 19.7632 7.56502 19.5627 7.52162 19.3445C7.47821 19.1262 7.50049 18.9 7.58564 18.6945C7.67078 18.4889 7.81498 18.3132 7.99998 18.1896C8.18499 18.066 8.4025 18 8.625 18C8.92337 18 9.20952 18.1185 9.4205 18.3295C9.63147 18.5405 9.75 18.8266 9.75 19.125ZM18.75 19.125C18.75 19.3475 18.684 19.565 18.5604 19.75C18.4368 19.935 18.2611 20.0792 18.0555 20.1644C17.85 20.2495 17.6238 20.2718 17.4055 20.2284C17.1873 20.185 16.9868 20.0778 16.8295 19.9205C16.6722 19.7632 16.565 19.5627 16.5216 19.3445C16.4782 19.1262 16.5005 18.9 16.5856 18.6945C16.6708 18.4889 16.815 18.3132 17 18.1896C17.185 18.066 17.4025 18 17.625 18C17.9234 18 18.2095 18.1185 18.4205 18.3295C18.6315 18.5405 18.75 18.8266 18.75 19.125ZM19.125 12.1341C19.0935 12.3074 19.0021 12.464 18.8666 12.5766C18.7312 12.6893 18.5605 12.7506 18.3844 12.75H7.23938L6.14906 6.75H20.1009L19.125 12.1341Z",
|
|
2433
|
+
fill: props.color || "currentColor"
|
|
2434
|
+
}
|
|
2435
|
+
)
|
|
2436
|
+
}
|
|
2437
|
+
)
|
|
2438
|
+
);
|
|
2439
|
+
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2440
|
+
var Plus = React113__namespace.forwardRef(
|
|
2287
2441
|
({ size = 20, ...props }, ref) => {
|
|
2288
2442
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2289
2443
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2312,7 +2466,7 @@ var Plus = React105__namespace.forwardRef(
|
|
|
2312
2466
|
}
|
|
2313
2467
|
);
|
|
2314
2468
|
Plus.displayName = "Plus";
|
|
2315
|
-
var RecordIcon =
|
|
2469
|
+
var RecordIcon = React113__namespace.forwardRef(
|
|
2316
2470
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2317
2471
|
"svg",
|
|
2318
2472
|
{
|
|
@@ -2334,7 +2488,7 @@ var RecordIcon = React105__namespace.forwardRef(
|
|
|
2334
2488
|
)
|
|
2335
2489
|
);
|
|
2336
2490
|
RecordIcon.displayName = "RecordIcon";
|
|
2337
|
-
var SidebarSimple =
|
|
2491
|
+
var SidebarSimple = React113__namespace.forwardRef(
|
|
2338
2492
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2339
2493
|
"svg",
|
|
2340
2494
|
{
|
|
@@ -2356,7 +2510,7 @@ var SidebarSimple = React105__namespace.forwardRef(
|
|
|
2356
2510
|
)
|
|
2357
2511
|
);
|
|
2358
2512
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2359
|
-
var SignOut =
|
|
2513
|
+
var SignOut = React113__namespace.forwardRef(
|
|
2360
2514
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2361
2515
|
"svg",
|
|
2362
2516
|
{
|
|
@@ -2378,7 +2532,7 @@ var SignOut = React105__namespace.forwardRef(
|
|
|
2378
2532
|
)
|
|
2379
2533
|
);
|
|
2380
2534
|
SignOut.displayName = "SignOut";
|
|
2381
|
-
var Storefront =
|
|
2535
|
+
var Storefront = React113__namespace.forwardRef(
|
|
2382
2536
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2383
2537
|
"svg",
|
|
2384
2538
|
{
|
|
@@ -2400,7 +2554,7 @@ var Storefront = React105__namespace.forwardRef(
|
|
|
2400
2554
|
)
|
|
2401
2555
|
);
|
|
2402
2556
|
Storefront.displayName = "Storefront";
|
|
2403
|
-
var Tag =
|
|
2557
|
+
var Tag = React113__namespace.forwardRef(
|
|
2404
2558
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2405
2559
|
"svg",
|
|
2406
2560
|
{
|
|
@@ -2422,7 +2576,7 @@ var Tag = React105__namespace.forwardRef(
|
|
|
2422
2576
|
)
|
|
2423
2577
|
);
|
|
2424
2578
|
Tag.displayName = "Tag";
|
|
2425
|
-
var Ticket =
|
|
2579
|
+
var Ticket = React113__namespace.forwardRef(
|
|
2426
2580
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2427
2581
|
"svg",
|
|
2428
2582
|
{
|
|
@@ -2444,7 +2598,7 @@ var Ticket = React105__namespace.forwardRef(
|
|
|
2444
2598
|
)
|
|
2445
2599
|
);
|
|
2446
2600
|
Ticket.displayName = "Ticket";
|
|
2447
|
-
var Trash =
|
|
2601
|
+
var Trash = React113__namespace.forwardRef(
|
|
2448
2602
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2449
2603
|
"svg",
|
|
2450
2604
|
{
|
|
@@ -2466,7 +2620,7 @@ var Trash = React105__namespace.forwardRef(
|
|
|
2466
2620
|
)
|
|
2467
2621
|
);
|
|
2468
2622
|
Trash.displayName = "Trash";
|
|
2469
|
-
var UserCircle =
|
|
2623
|
+
var UserCircle = React113__namespace.forwardRef(
|
|
2470
2624
|
({ size = 24, ...props }, ref) => {
|
|
2471
2625
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2472
2626
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2495,7 +2649,7 @@ var UserCircle = React105__namespace.forwardRef(
|
|
|
2495
2649
|
}
|
|
2496
2650
|
);
|
|
2497
2651
|
UserCircle.displayName = "UserCircle";
|
|
2498
|
-
var UserIcon =
|
|
2652
|
+
var UserIcon = React113__namespace.forwardRef(
|
|
2499
2653
|
({ size = 24, ...props }, ref) => {
|
|
2500
2654
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2501
2655
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2524,7 +2678,7 @@ var UserIcon = React105__namespace.forwardRef(
|
|
|
2524
2678
|
}
|
|
2525
2679
|
);
|
|
2526
2680
|
UserIcon.displayName = "UserIcon";
|
|
2527
|
-
var Users =
|
|
2681
|
+
var Users = React113__namespace.forwardRef(
|
|
2528
2682
|
({ size = 20, ...props }, ref) => {
|
|
2529
2683
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2530
2684
|
props,
|
|
@@ -2553,7 +2707,7 @@ var Users = React105__namespace.forwardRef(
|
|
|
2553
2707
|
}
|
|
2554
2708
|
);
|
|
2555
2709
|
Users.displayName = "Users";
|
|
2556
|
-
var VideoCamera =
|
|
2710
|
+
var VideoCamera = React113__namespace.forwardRef(
|
|
2557
2711
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2558
2712
|
"svg",
|
|
2559
2713
|
{
|
|
@@ -2575,7 +2729,7 @@ var VideoCamera = React105__namespace.forwardRef(
|
|
|
2575
2729
|
)
|
|
2576
2730
|
);
|
|
2577
2731
|
VideoCamera.displayName = "VideoCamera";
|
|
2578
|
-
var WhatsAppLogo =
|
|
2732
|
+
var WhatsAppLogo = React113__namespace.forwardRef(
|
|
2579
2733
|
({ size = 20, ...props }, ref) => {
|
|
2580
2734
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2581
2735
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2604,7 +2758,7 @@ var WhatsAppLogo = React105__namespace.forwardRef(
|
|
|
2604
2758
|
}
|
|
2605
2759
|
);
|
|
2606
2760
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2607
|
-
var WarningOctagon =
|
|
2761
|
+
var WarningOctagon = React113__namespace.forwardRef(
|
|
2608
2762
|
({ size = 20, ...props }, ref) => {
|
|
2609
2763
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2610
2764
|
props,
|
|
@@ -2625,7 +2779,7 @@ var WarningOctagon = React105__namespace.forwardRef(
|
|
|
2625
2779
|
"path",
|
|
2626
2780
|
{
|
|
2627
2781
|
d: "M11.25 12.75V7.50001C11.25 7.3011 11.329 7.11033 11.4697 6.96968C11.6103 6.82903 11.8011 6.75001 12 6.75001C12.1989 6.75001 12.3897 6.82903 12.5303 6.96968C12.671 7.11033 12.75 7.3011 12.75 7.50001V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75ZM21.75 8.58282V15.4172C21.7506 15.6142 21.7121 15.8095 21.6366 15.9915C21.5611 16.1735 21.4502 16.3387 21.3103 16.4775L16.4775 21.3103C16.3387 21.4502 16.1735 21.5611 15.9915 21.6366C15.8095 21.7121 15.6142 21.7506 15.4172 21.75H8.58281C8.38576 21.7506 8.19054 21.7121 8.00852 21.6366C7.82649 21.5611 7.66128 21.4502 7.5225 21.3103L2.68969 16.4775C2.54979 16.3387 2.43888 16.1735 2.3634 15.9915C2.28792 15.8095 2.24937 15.6142 2.25 15.4172V8.58282C2.24937 8.38577 2.28792 8.19055 2.3634 8.00852C2.43888 7.8265 2.54979 7.66129 2.68969 7.52251L7.5225 2.6897C7.66128 2.5498 7.82649 2.43889 8.00852 2.36341C8.19054 2.28792 8.38576 2.24938 8.58281 2.25001H15.4172C15.6142 2.24938 15.8095 2.28792 15.9915 2.36341C16.1735 2.43889 16.3387 2.5498 16.4775 2.6897L21.3103 7.52251C21.4502 7.66129 21.5611 7.8265 21.6366 8.00852C21.7121 8.19055 21.7506 8.38577 21.75 8.58282ZM20.25 8.58282L15.4172 3.75001H8.58281L3.75 8.58282V15.4172L8.58281 20.25H15.4172L20.25 15.4172V8.58282ZM12 15C11.7775 15 11.56 15.066 11.375 15.1896C11.19 15.3132 11.0458 15.4889 10.9606 15.6945C10.8755 15.9001 10.8532 16.1263 10.8966 16.3445C10.94 16.5627 11.0472 16.7632 11.2045 16.9205C11.3618 17.0778 11.5623 17.185 11.7805 17.2284C11.9988 17.2718 12.225 17.2495 12.4305 17.1644C12.6361 17.0792 12.8118 16.935 12.9354 16.75C13.059 16.565 13.125 16.3475 13.125 16.125C13.125 15.8266 13.0065 15.5405 12.7955 15.3295C12.5845 15.1185 12.2984 15 12 15Z",
|
|
2628
|
-
fill: "
|
|
2782
|
+
fill: props.color || "currentColor"
|
|
2629
2783
|
}
|
|
2630
2784
|
)
|
|
2631
2785
|
}
|
|
@@ -2633,7 +2787,7 @@ var WarningOctagon = React105__namespace.forwardRef(
|
|
|
2633
2787
|
}
|
|
2634
2788
|
);
|
|
2635
2789
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2636
|
-
var WarningTriangle =
|
|
2790
|
+
var WarningTriangle = React113__namespace.forwardRef(
|
|
2637
2791
|
({ size = 20, ...props }, ref) => {
|
|
2638
2792
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2639
2793
|
props,
|
|
@@ -2654,7 +2808,7 @@ var WarningTriangle = React105__namespace.forwardRef(
|
|
|
2654
2808
|
"path",
|
|
2655
2809
|
{
|
|
2656
2810
|
d: "M22.2 17.6335L14.0016 3.39569C13.7967 3.04687 13.5042 2.75764 13.1531 2.55668C12.802 2.35572 12.4045 2.25 12 2.25C11.5955 2.25 11.198 2.35572 10.8469 2.55668C10.4958 2.75764 10.2033 3.04687 9.99844 3.39569L1.8 17.6335C1.60288 17.9709 1.49899 18.3546 1.49899 18.7454C1.49899 19.1361 1.60288 19.5199 1.8 19.8572C2.00225 20.2082 2.29422 20.499 2.64596 20.6998C2.9977 20.9006 3.39655 21.0043 3.80156 21.0001H20.1984C20.6031 21.0039 21.0016 20.9001 21.353 20.6993C21.7044 20.4985 21.996 20.2079 22.1981 19.8572C22.3955 19.52 22.4997 19.1364 22.5001 18.7456C22.5004 18.3549 22.3968 17.9711 22.2 17.6335ZM20.8997 19.1063C20.8282 19.2282 20.7256 19.3289 20.6024 19.3981C20.4792 19.4673 20.3397 19.5025 20.1984 19.5001H3.80156C3.66026 19.5025 3.52085 19.4673 3.39762 19.3981C3.27439 19.3289 3.17178 19.2282 3.10031 19.1063C3.03557 18.9967 3.00142 18.8717 3.00142 18.7444C3.00142 18.6171 3.03557 18.4922 3.10031 18.3826L11.2987 4.14475C11.3717 4.02341 11.4747 3.92301 11.5979 3.8533C11.7212 3.7836 11.8603 3.74696 12.0019 3.74696C12.1434 3.74696 12.2826 3.7836 12.4058 3.8533C12.529 3.92301 12.6321 4.02341 12.705 4.14475L20.9034 18.3826C20.9676 18.4925 21.0011 18.6176 21.0005 18.7449C20.9998 18.8722 20.965 18.997 20.8997 19.1063ZM11.25 13.5001V9.75006C11.25 9.55115 11.329 9.36038 11.4697 9.21973C11.6103 9.07908 11.8011 9.00006 12 9.00006C12.1989 9.00006 12.3897 9.07908 12.5303 9.21973C12.671 9.36038 12.75 9.55115 12.75 9.75006V13.5001C12.75 13.699 12.671 13.8897 12.5303 14.0304C12.3897 14.171 12.1989 14.2501 12 14.2501C11.8011 14.2501 11.6103 14.171 11.4697 14.0304C11.329 13.8897 11.25 13.699 11.25 13.5001ZM13.125 16.8751C13.125 17.0976 13.059 17.3151 12.9354 17.5001C12.8118 17.6851 12.6361 17.8293 12.4305 17.9144C12.2249 17.9996 11.9988 18.0219 11.7805 17.9784C11.5623 17.935 11.3618 17.8279 11.2045 17.6706C11.0472 17.5132 10.94 17.3128 10.8966 17.0945C10.8532 16.8763 10.8755 16.6501 10.9606 16.4445C11.0458 16.239 11.19 16.0633 11.375 15.9397C11.56 15.816 11.7775 15.7501 12 15.7501C12.2984 15.7501 12.5845 15.8686 12.7955 16.0796C13.0065 16.2905 13.125 16.5767 13.125 16.8751Z",
|
|
2657
|
-
fill: "
|
|
2811
|
+
fill: props.color || "currentColor"
|
|
2658
2812
|
}
|
|
2659
2813
|
)
|
|
2660
2814
|
}
|
|
@@ -2662,7 +2816,7 @@ var WarningTriangle = React105__namespace.forwardRef(
|
|
|
2662
2816
|
}
|
|
2663
2817
|
);
|
|
2664
2818
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2665
|
-
var Waveform =
|
|
2819
|
+
var Waveform = React113__namespace.forwardRef(
|
|
2666
2820
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2667
2821
|
"svg",
|
|
2668
2822
|
{
|
|
@@ -2684,7 +2838,29 @@ var Waveform = React105__namespace.forwardRef(
|
|
|
2684
2838
|
)
|
|
2685
2839
|
);
|
|
2686
2840
|
Waveform.displayName = "Waveform";
|
|
2687
|
-
var
|
|
2841
|
+
var WrenchIcon = React113__namespace.forwardRef(
|
|
2842
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2843
|
+
"svg",
|
|
2844
|
+
{
|
|
2845
|
+
ref,
|
|
2846
|
+
width: size,
|
|
2847
|
+
height: size,
|
|
2848
|
+
viewBox: "0 0 24 24",
|
|
2849
|
+
fill: "none",
|
|
2850
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2851
|
+
...props,
|
|
2852
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2853
|
+
"path",
|
|
2854
|
+
{
|
|
2855
|
+
d: "M21.2587 6.46862C21.2133 6.35617 21.1412 6.25644 21.0487 6.17797C20.9562 6.09951 20.846 6.04465 20.7276 6.0181C20.6093 5.99155 20.4863 5.99411 20.3691 6.02555C20.2519 6.05699 20.1442 6.11638 20.055 6.19862L16.2769 9.68518L14.6616 9.33831L14.3147 7.72299L17.8012 3.94487C17.8835 3.85571 17.9429 3.74793 17.9743 3.63077C18.0058 3.51362 18.0083 3.39058 17.9818 3.27222C17.9552 3.15386 17.9004 3.04371 17.8219 2.95121C17.7434 2.8587 17.6437 2.78661 17.5312 2.74112C16.5065 2.32659 15.3956 2.17007 14.2962 2.28532C13.1968 2.40058 12.1426 2.78407 11.2261 3.4021C10.3096 4.02014 9.55889 4.85381 9.03997 5.82985C8.52105 6.8059 8.24978 7.89445 8.25 8.99987C8.24879 9.93332 8.44028 10.857 8.8125 11.713L3.16781 16.5936C3.15375 16.6049 3.14062 16.618 3.1275 16.6302C2.56482 17.1929 2.24872 17.956 2.24872 18.7517C2.24872 19.1458 2.32632 19.5359 2.47711 19.8999C2.62789 20.2639 2.84889 20.5947 3.1275 20.8733C3.40611 21.1519 3.73686 21.3729 4.10088 21.5237C4.4649 21.6745 4.85505 21.7521 5.24906 21.7521C6.0448 21.7521 6.80795 21.436 7.37062 20.8733C7.38281 20.8611 7.39594 20.8471 7.40719 20.8339L12.2869 15.1874C13.3148 15.6386 14.439 15.8263 15.5577 15.7336C16.6765 15.6408 17.7544 15.2705 18.694 14.6562C19.6335 14.0418 20.405 13.2029 20.9386 12.2152C21.4723 11.2276 21.7511 10.1224 21.75 8.99987C21.7515 8.13229 21.5846 7.27267 21.2587 6.46862ZM15 14.2499C14.1123 14.2487 13.2392 14.0229 12.4622 13.5936C12.3116 13.5105 12.1371 13.4816 11.9678 13.5118C11.7985 13.542 11.6447 13.6295 11.5322 13.7596L6.29156 19.8289C6.00797 20.0984 5.63034 20.2463 5.2392 20.2413C4.84806 20.2363 4.47435 20.0787 4.19774 19.8021C3.92114 19.5255 3.76353 19.1518 3.75853 18.7607C3.75352 18.3695 3.90151 17.9919 4.17094 17.7083L10.2356 12.4686C10.3659 12.3561 10.4536 12.2021 10.4838 12.0326C10.514 11.8631 10.485 11.6883 10.4016 11.5377C9.92346 10.673 9.69909 9.69089 9.75425 8.70435C9.8094 7.71781 10.1418 6.76686 10.7133 5.96082C11.2848 5.15479 12.0722 4.5264 12.9849 4.14788C13.8976 3.76937 14.8986 3.65611 15.8728 3.82112L12.9478 6.99081C12.8664 7.07909 12.8074 7.18563 12.7758 7.30146C12.7441 7.41729 12.7408 7.53903 12.7659 7.65643L13.2966 10.1249C13.3269 10.266 13.3974 10.3955 13.4995 10.4976C13.6016 10.5997 13.731 10.6701 13.8722 10.7005L16.3425 11.2311C16.4599 11.2563 16.5816 11.2529 16.6975 11.2213C16.8133 11.1896 16.9198 11.1306 17.0081 11.0492L20.1778 8.12424C20.3042 8.87706 20.265 9.64838 20.0631 10.3845C19.8612 11.1207 19.5013 11.804 19.0085 12.387C18.5157 12.97 17.9019 13.4386 17.2096 13.7603C16.5174 14.0821 15.7633 14.2491 15 14.2499Z",
|
|
2856
|
+
fill: props.color || "currentColor"
|
|
2857
|
+
}
|
|
2858
|
+
)
|
|
2859
|
+
}
|
|
2860
|
+
)
|
|
2861
|
+
);
|
|
2862
|
+
WrenchIcon.displayName = "WrenchIcon";
|
|
2863
|
+
var XIcon = React113__namespace.forwardRef(
|
|
2688
2864
|
({ size = 24, ...props }, ref) => {
|
|
2689
2865
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2690
2866
|
props,
|
|
@@ -2721,7 +2897,7 @@ var aep_exports = {};
|
|
|
2721
2897
|
__export(aep_exports, {
|
|
2722
2898
|
AEP: () => AEP
|
|
2723
2899
|
});
|
|
2724
|
-
var AEP =
|
|
2900
|
+
var AEP = React113__namespace.forwardRef(
|
|
2725
2901
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2726
2902
|
"svg",
|
|
2727
2903
|
{
|
|
@@ -2769,7 +2945,7 @@ var ai_exports = {};
|
|
|
2769
2945
|
__export(ai_exports, {
|
|
2770
2946
|
AI: () => AI
|
|
2771
2947
|
});
|
|
2772
|
-
var AI =
|
|
2948
|
+
var AI = React113__namespace.forwardRef(
|
|
2773
2949
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2774
2950
|
"svg",
|
|
2775
2951
|
{
|
|
@@ -2817,7 +2993,7 @@ var avi_exports = {};
|
|
|
2817
2993
|
__export(avi_exports, {
|
|
2818
2994
|
AVI: () => AVI
|
|
2819
2995
|
});
|
|
2820
|
-
var AVI =
|
|
2996
|
+
var AVI = React113__namespace.forwardRef(
|
|
2821
2997
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2822
2998
|
"svg",
|
|
2823
2999
|
{
|
|
@@ -2865,7 +3041,7 @@ var blend_exports = {};
|
|
|
2865
3041
|
__export(blend_exports, {
|
|
2866
3042
|
Blend: () => Blend
|
|
2867
3043
|
});
|
|
2868
|
-
var Blend =
|
|
3044
|
+
var Blend = React113__namespace.forwardRef(
|
|
2869
3045
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2870
3046
|
"svg",
|
|
2871
3047
|
{
|
|
@@ -2913,7 +3089,7 @@ var c4d_exports = {};
|
|
|
2913
3089
|
__export(c4d_exports, {
|
|
2914
3090
|
C4D: () => C4D
|
|
2915
3091
|
});
|
|
2916
|
-
var C4D =
|
|
3092
|
+
var C4D = React113__namespace.forwardRef(
|
|
2917
3093
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2918
3094
|
"svg",
|
|
2919
3095
|
{
|
|
@@ -2961,7 +3137,7 @@ var cdr_exports = {};
|
|
|
2961
3137
|
__export(cdr_exports, {
|
|
2962
3138
|
CDR: () => CDR
|
|
2963
3139
|
});
|
|
2964
|
-
var CDR =
|
|
3140
|
+
var CDR = React113__namespace.forwardRef(
|
|
2965
3141
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2966
3142
|
"svg",
|
|
2967
3143
|
{
|
|
@@ -3009,7 +3185,7 @@ var css_exports = {};
|
|
|
3009
3185
|
__export(css_exports, {
|
|
3010
3186
|
CSS: () => CSS
|
|
3011
3187
|
});
|
|
3012
|
-
var CSS =
|
|
3188
|
+
var CSS = React113__namespace.forwardRef(
|
|
3013
3189
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3014
3190
|
"svg",
|
|
3015
3191
|
{
|
|
@@ -3057,7 +3233,7 @@ var csv_exports = {};
|
|
|
3057
3233
|
__export(csv_exports, {
|
|
3058
3234
|
CSV: () => CSV
|
|
3059
3235
|
});
|
|
3060
|
-
var CSV =
|
|
3236
|
+
var CSV = React113__namespace.forwardRef(
|
|
3061
3237
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3062
3238
|
"svg",
|
|
3063
3239
|
{
|
|
@@ -3105,7 +3281,7 @@ var dmg_exports = {};
|
|
|
3105
3281
|
__export(dmg_exports, {
|
|
3106
3282
|
DMG: () => DMG
|
|
3107
3283
|
});
|
|
3108
|
-
var DMG =
|
|
3284
|
+
var DMG = React113__namespace.forwardRef(
|
|
3109
3285
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3110
3286
|
"svg",
|
|
3111
3287
|
{
|
|
@@ -3153,7 +3329,7 @@ var doc_exports = {};
|
|
|
3153
3329
|
__export(doc_exports, {
|
|
3154
3330
|
DOC: () => DOC
|
|
3155
3331
|
});
|
|
3156
|
-
var DOC =
|
|
3332
|
+
var DOC = React113__namespace.forwardRef(
|
|
3157
3333
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3158
3334
|
"svg",
|
|
3159
3335
|
{
|
|
@@ -3201,7 +3377,7 @@ var exe_exports = {};
|
|
|
3201
3377
|
__export(exe_exports, {
|
|
3202
3378
|
EXE: () => EXE
|
|
3203
3379
|
});
|
|
3204
|
-
var EXE =
|
|
3380
|
+
var EXE = React113__namespace.forwardRef(
|
|
3205
3381
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3206
3382
|
"svg",
|
|
3207
3383
|
{
|
|
@@ -3249,7 +3425,7 @@ var fig_exports = {};
|
|
|
3249
3425
|
__export(fig_exports, {
|
|
3250
3426
|
Fig: () => Fig
|
|
3251
3427
|
});
|
|
3252
|
-
var Fig =
|
|
3428
|
+
var Fig = React113__namespace.forwardRef(
|
|
3253
3429
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3254
3430
|
"svg",
|
|
3255
3431
|
{
|
|
@@ -3297,7 +3473,7 @@ var gif_exports = {};
|
|
|
3297
3473
|
__export(gif_exports, {
|
|
3298
3474
|
GIF: () => GIF
|
|
3299
3475
|
});
|
|
3300
|
-
var GIF =
|
|
3476
|
+
var GIF = React113__namespace.forwardRef(
|
|
3301
3477
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3302
3478
|
"svg",
|
|
3303
3479
|
{
|
|
@@ -3345,7 +3521,7 @@ var html_exports = {};
|
|
|
3345
3521
|
__export(html_exports, {
|
|
3346
3522
|
HTML: () => HTML
|
|
3347
3523
|
});
|
|
3348
|
-
var HTML =
|
|
3524
|
+
var HTML = React113__namespace.forwardRef(
|
|
3349
3525
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3350
3526
|
"svg",
|
|
3351
3527
|
{
|
|
@@ -3393,7 +3569,7 @@ var ico_exports = {};
|
|
|
3393
3569
|
__export(ico_exports, {
|
|
3394
3570
|
ICO: () => ICO
|
|
3395
3571
|
});
|
|
3396
|
-
var ICO =
|
|
3572
|
+
var ICO = React113__namespace.forwardRef(
|
|
3397
3573
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3398
3574
|
"svg",
|
|
3399
3575
|
{
|
|
@@ -3441,7 +3617,7 @@ var java_exports = {};
|
|
|
3441
3617
|
__export(java_exports, {
|
|
3442
3618
|
Java: () => Java
|
|
3443
3619
|
});
|
|
3444
|
-
var Java =
|
|
3620
|
+
var Java = React113__namespace.forwardRef(
|
|
3445
3621
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3446
3622
|
"svg",
|
|
3447
3623
|
{
|
|
@@ -3489,7 +3665,7 @@ var jpeg_exports = {};
|
|
|
3489
3665
|
__export(jpeg_exports, {
|
|
3490
3666
|
JPEG: () => JPEG
|
|
3491
3667
|
});
|
|
3492
|
-
var JPEG =
|
|
3668
|
+
var JPEG = React113__namespace.forwardRef(
|
|
3493
3669
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3494
3670
|
"svg",
|
|
3495
3671
|
{
|
|
@@ -3537,7 +3713,7 @@ var jpg_exports = {};
|
|
|
3537
3713
|
__export(jpg_exports, {
|
|
3538
3714
|
JPG: () => JPG
|
|
3539
3715
|
});
|
|
3540
|
-
var JPG =
|
|
3716
|
+
var JPG = React113__namespace.forwardRef(
|
|
3541
3717
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3542
3718
|
"svg",
|
|
3543
3719
|
{
|
|
@@ -3585,7 +3761,7 @@ var js_exports = {};
|
|
|
3585
3761
|
__export(js_exports, {
|
|
3586
3762
|
JS: () => JS
|
|
3587
3763
|
});
|
|
3588
|
-
var JS =
|
|
3764
|
+
var JS = React113__namespace.forwardRef(
|
|
3589
3765
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3590
3766
|
"svg",
|
|
3591
3767
|
{
|
|
@@ -3633,7 +3809,7 @@ var json_exports = {};
|
|
|
3633
3809
|
__export(json_exports, {
|
|
3634
3810
|
JSON: () => JSON
|
|
3635
3811
|
});
|
|
3636
|
-
var JSON =
|
|
3812
|
+
var JSON = React113__namespace.forwardRef(
|
|
3637
3813
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3638
3814
|
"svg",
|
|
3639
3815
|
{
|
|
@@ -3681,7 +3857,7 @@ var mov_exports = {};
|
|
|
3681
3857
|
__export(mov_exports, {
|
|
3682
3858
|
MOV: () => MOV
|
|
3683
3859
|
});
|
|
3684
|
-
var MOV =
|
|
3860
|
+
var MOV = React113__namespace.forwardRef(
|
|
3685
3861
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3686
3862
|
"svg",
|
|
3687
3863
|
{
|
|
@@ -3729,7 +3905,7 @@ var mp3_exports = {};
|
|
|
3729
3905
|
__export(mp3_exports, {
|
|
3730
3906
|
MP3: () => MP3
|
|
3731
3907
|
});
|
|
3732
|
-
var MP3 =
|
|
3908
|
+
var MP3 = React113__namespace.forwardRef(
|
|
3733
3909
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3734
3910
|
"svg",
|
|
3735
3911
|
{
|
|
@@ -3777,7 +3953,7 @@ var mp4_exports = {};
|
|
|
3777
3953
|
__export(mp4_exports, {
|
|
3778
3954
|
MP4: () => MP4
|
|
3779
3955
|
});
|
|
3780
|
-
var MP4 =
|
|
3956
|
+
var MP4 = React113__namespace.forwardRef(
|
|
3781
3957
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3782
3958
|
"svg",
|
|
3783
3959
|
{
|
|
@@ -3825,7 +4001,7 @@ var mpg_exports = {};
|
|
|
3825
4001
|
__export(mpg_exports, {
|
|
3826
4002
|
MPG: () => MPG
|
|
3827
4003
|
});
|
|
3828
|
-
var MPG =
|
|
4004
|
+
var MPG = React113__namespace.forwardRef(
|
|
3829
4005
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3830
4006
|
"svg",
|
|
3831
4007
|
{
|
|
@@ -3873,7 +4049,7 @@ var pdf_exports = {};
|
|
|
3873
4049
|
__export(pdf_exports, {
|
|
3874
4050
|
PDF: () => PDF
|
|
3875
4051
|
});
|
|
3876
|
-
var PDF =
|
|
4052
|
+
var PDF = React113__namespace.forwardRef(
|
|
3877
4053
|
({ ...props }, ref) => {
|
|
3878
4054
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
3879
4055
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -3926,7 +4102,7 @@ var png_exports = {};
|
|
|
3926
4102
|
__export(png_exports, {
|
|
3927
4103
|
PNG: () => PNG
|
|
3928
4104
|
});
|
|
3929
|
-
var PNG =
|
|
4105
|
+
var PNG = React113__namespace.forwardRef(
|
|
3930
4106
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3931
4107
|
"svg",
|
|
3932
4108
|
{
|
|
@@ -3974,7 +4150,7 @@ var ppt_exports = {};
|
|
|
3974
4150
|
__export(ppt_exports, {
|
|
3975
4151
|
PPT: () => PPT
|
|
3976
4152
|
});
|
|
3977
|
-
var PPT =
|
|
4153
|
+
var PPT = React113__namespace.forwardRef(
|
|
3978
4154
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3979
4155
|
"svg",
|
|
3980
4156
|
{
|
|
@@ -4022,7 +4198,7 @@ var psd_exports = {};
|
|
|
4022
4198
|
__export(psd_exports, {
|
|
4023
4199
|
PSD: () => PSD
|
|
4024
4200
|
});
|
|
4025
|
-
var PSD =
|
|
4201
|
+
var PSD = React113__namespace.forwardRef(
|
|
4026
4202
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4027
4203
|
"svg",
|
|
4028
4204
|
{
|
|
@@ -4070,7 +4246,7 @@ var rar_exports = {};
|
|
|
4070
4246
|
__export(rar_exports, {
|
|
4071
4247
|
Rar: () => Rar
|
|
4072
4248
|
});
|
|
4073
|
-
var Rar =
|
|
4249
|
+
var Rar = React113__namespace.forwardRef(
|
|
4074
4250
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4075
4251
|
"svg",
|
|
4076
4252
|
{
|
|
@@ -4118,7 +4294,7 @@ var sketch_exports = {};
|
|
|
4118
4294
|
__export(sketch_exports, {
|
|
4119
4295
|
Sketch: () => Sketch
|
|
4120
4296
|
});
|
|
4121
|
-
var Sketch =
|
|
4297
|
+
var Sketch = React113__namespace.forwardRef(
|
|
4122
4298
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4123
4299
|
"svg",
|
|
4124
4300
|
{
|
|
@@ -4166,7 +4342,7 @@ var svg_exports = {};
|
|
|
4166
4342
|
__export(svg_exports, {
|
|
4167
4343
|
SVG: () => SVG
|
|
4168
4344
|
});
|
|
4169
|
-
var SVG =
|
|
4345
|
+
var SVG = React113__namespace.forwardRef(
|
|
4170
4346
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4171
4347
|
"svg",
|
|
4172
4348
|
{
|
|
@@ -4214,7 +4390,7 @@ var tiff_exports = {};
|
|
|
4214
4390
|
__export(tiff_exports, {
|
|
4215
4391
|
TIFF: () => TIFF
|
|
4216
4392
|
});
|
|
4217
|
-
var TIFF =
|
|
4393
|
+
var TIFF = React113__namespace.forwardRef(
|
|
4218
4394
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4219
4395
|
"svg",
|
|
4220
4396
|
{
|
|
@@ -4262,7 +4438,7 @@ var txt_exports = {};
|
|
|
4262
4438
|
__export(txt_exports, {
|
|
4263
4439
|
TXT: () => TXT
|
|
4264
4440
|
});
|
|
4265
|
-
var TXT =
|
|
4441
|
+
var TXT = React113__namespace.forwardRef(
|
|
4266
4442
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4267
4443
|
"svg",
|
|
4268
4444
|
{
|
|
@@ -4310,7 +4486,7 @@ var wav_exports = {};
|
|
|
4310
4486
|
__export(wav_exports, {
|
|
4311
4487
|
WAV: () => WAV
|
|
4312
4488
|
});
|
|
4313
|
-
var WAV =
|
|
4489
|
+
var WAV = React113__namespace.forwardRef(
|
|
4314
4490
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4315
4491
|
"svg",
|
|
4316
4492
|
{
|
|
@@ -4358,7 +4534,7 @@ var webp_exports = {};
|
|
|
4358
4534
|
__export(webp_exports, {
|
|
4359
4535
|
WEBP: () => WEBP
|
|
4360
4536
|
});
|
|
4361
|
-
var WEBP =
|
|
4537
|
+
var WEBP = React113__namespace.forwardRef(
|
|
4362
4538
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4363
4539
|
"svg",
|
|
4364
4540
|
{
|
|
@@ -4406,7 +4582,7 @@ var xls_exports = {};
|
|
|
4406
4582
|
__export(xls_exports, {
|
|
4407
4583
|
XLS: () => XLS
|
|
4408
4584
|
});
|
|
4409
|
-
var XLS =
|
|
4585
|
+
var XLS = React113__namespace.forwardRef(
|
|
4410
4586
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4411
4587
|
"svg",
|
|
4412
4588
|
{
|
|
@@ -4454,7 +4630,7 @@ var zip_exports = {};
|
|
|
4454
4630
|
__export(zip_exports, {
|
|
4455
4631
|
Zip: () => Zip
|
|
4456
4632
|
});
|
|
4457
|
-
var Zip =
|
|
4633
|
+
var Zip = React113__namespace.forwardRef(
|
|
4458
4634
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4459
4635
|
"svg",
|
|
4460
4636
|
{
|
|
@@ -4496,15 +4672,15 @@ var Zip = React105__namespace.forwardRef(
|
|
|
4496
4672
|
)
|
|
4497
4673
|
);
|
|
4498
4674
|
Zip.displayName = "Zip";
|
|
4499
|
-
var CarouselContext =
|
|
4675
|
+
var CarouselContext = React113__namespace.createContext(null);
|
|
4500
4676
|
function useCarousel() {
|
|
4501
|
-
const context =
|
|
4677
|
+
const context = React113__namespace.useContext(CarouselContext);
|
|
4502
4678
|
if (!context) {
|
|
4503
4679
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4504
4680
|
}
|
|
4505
4681
|
return context;
|
|
4506
4682
|
}
|
|
4507
|
-
var Carousel =
|
|
4683
|
+
var Carousel = React113__namespace.forwardRef(
|
|
4508
4684
|
({
|
|
4509
4685
|
orientation = "horizontal",
|
|
4510
4686
|
opts,
|
|
@@ -4521,10 +4697,10 @@ var Carousel = React105__namespace.forwardRef(
|
|
|
4521
4697
|
},
|
|
4522
4698
|
plugins
|
|
4523
4699
|
);
|
|
4524
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4525
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4526
|
-
const [slideCount, setSlideCount] =
|
|
4527
|
-
const onSelect =
|
|
4700
|
+
const [canScrollPrev, setCanScrollPrev] = React113__namespace.useState(false);
|
|
4701
|
+
const [canScrollNext, setCanScrollNext] = React113__namespace.useState(false);
|
|
4702
|
+
const [slideCount, setSlideCount] = React113__namespace.useState(0);
|
|
4703
|
+
const onSelect = React113__namespace.useCallback((api2) => {
|
|
4528
4704
|
if (!api2) {
|
|
4529
4705
|
return;
|
|
4530
4706
|
}
|
|
@@ -4532,13 +4708,13 @@ var Carousel = React105__namespace.forwardRef(
|
|
|
4532
4708
|
setCanScrollNext(api2.canScrollNext());
|
|
4533
4709
|
setSlideCount(api2.scrollSnapList().length);
|
|
4534
4710
|
}, []);
|
|
4535
|
-
const scrollPrev =
|
|
4711
|
+
const scrollPrev = React113__namespace.useCallback(() => {
|
|
4536
4712
|
api?.scrollPrev();
|
|
4537
4713
|
}, [api]);
|
|
4538
|
-
const scrollNext =
|
|
4714
|
+
const scrollNext = React113__namespace.useCallback(() => {
|
|
4539
4715
|
api?.scrollNext();
|
|
4540
4716
|
}, [api]);
|
|
4541
|
-
const handleKeyDown =
|
|
4717
|
+
const handleKeyDown = React113__namespace.useCallback(
|
|
4542
4718
|
(event) => {
|
|
4543
4719
|
if (event.key === "ArrowLeft") {
|
|
4544
4720
|
event.preventDefault();
|
|
@@ -4550,13 +4726,13 @@ var Carousel = React105__namespace.forwardRef(
|
|
|
4550
4726
|
},
|
|
4551
4727
|
[scrollPrev, scrollNext]
|
|
4552
4728
|
);
|
|
4553
|
-
|
|
4729
|
+
React113__namespace.useEffect(() => {
|
|
4554
4730
|
if (!api || !setApi) {
|
|
4555
4731
|
return;
|
|
4556
4732
|
}
|
|
4557
4733
|
setApi(api);
|
|
4558
4734
|
}, [api, setApi]);
|
|
4559
|
-
|
|
4735
|
+
React113__namespace.useEffect(() => {
|
|
4560
4736
|
if (!api) {
|
|
4561
4737
|
return;
|
|
4562
4738
|
}
|
|
@@ -4601,7 +4777,7 @@ var Carousel = React105__namespace.forwardRef(
|
|
|
4601
4777
|
}
|
|
4602
4778
|
);
|
|
4603
4779
|
Carousel.displayName = "Carousel";
|
|
4604
|
-
var CarouselContent =
|
|
4780
|
+
var CarouselContent = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4605
4781
|
const { carouselRef, orientation } = useCarousel();
|
|
4606
4782
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4607
4783
|
"div",
|
|
@@ -4617,7 +4793,7 @@ var CarouselContent = React105__namespace.forwardRef(({ className, ...props }, r
|
|
|
4617
4793
|
) });
|
|
4618
4794
|
});
|
|
4619
4795
|
CarouselContent.displayName = "CarouselContent";
|
|
4620
|
-
var CarouselItem =
|
|
4796
|
+
var CarouselItem = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4621
4797
|
const { orientation } = useCarousel();
|
|
4622
4798
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4623
4799
|
"div",
|
|
@@ -4635,7 +4811,7 @@ var CarouselItem = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4635
4811
|
);
|
|
4636
4812
|
});
|
|
4637
4813
|
CarouselItem.displayName = "CarouselItem";
|
|
4638
|
-
var CarouselPrevious =
|
|
4814
|
+
var CarouselPrevious = React113__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4639
4815
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4640
4816
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4641
4817
|
Button,
|
|
@@ -4657,7 +4833,7 @@ var CarouselPrevious = React105__namespace.forwardRef(({ className, variant = "o
|
|
|
4657
4833
|
);
|
|
4658
4834
|
});
|
|
4659
4835
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4660
|
-
var CarouselNext =
|
|
4836
|
+
var CarouselNext = React113__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4661
4837
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4662
4838
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4663
4839
|
Button,
|
|
@@ -4683,7 +4859,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4683
4859
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4684
4860
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4685
4861
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4686
|
-
var DialogOverlay =
|
|
4862
|
+
var DialogOverlay = React113__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4687
4863
|
DialogPrimitive__namespace.Overlay,
|
|
4688
4864
|
{
|
|
4689
4865
|
ref,
|
|
@@ -4700,7 +4876,7 @@ var DialogOverlay = React105__namespace.forwardRef(({ className, style, ...props
|
|
|
4700
4876
|
}
|
|
4701
4877
|
));
|
|
4702
4878
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4703
|
-
var DialogContent =
|
|
4879
|
+
var DialogContent = React113__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4704
4880
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4705
4881
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4706
4882
|
DialogPrimitive__namespace.Content,
|
|
@@ -4752,7 +4928,7 @@ var DialogFooter = ({
|
|
|
4752
4928
|
}
|
|
4753
4929
|
);
|
|
4754
4930
|
DialogFooter.displayName = "DialogFooter";
|
|
4755
|
-
var DialogTitle =
|
|
4931
|
+
var DialogTitle = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4756
4932
|
DialogPrimitive__namespace.Title,
|
|
4757
4933
|
{
|
|
4758
4934
|
ref,
|
|
@@ -4764,7 +4940,7 @@ var DialogTitle = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4764
4940
|
}
|
|
4765
4941
|
));
|
|
4766
4942
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
4767
|
-
var DialogDescription =
|
|
4943
|
+
var DialogDescription = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4768
4944
|
DialogPrimitive__namespace.Description,
|
|
4769
4945
|
{
|
|
4770
4946
|
ref,
|
|
@@ -4777,7 +4953,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
4777
4953
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
4778
4954
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
4779
4955
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
4780
|
-
var SheetOverlay =
|
|
4956
|
+
var SheetOverlay = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4781
4957
|
DialogPrimitive__namespace.Overlay,
|
|
4782
4958
|
{
|
|
4783
4959
|
className: cn(
|
|
@@ -4805,7 +4981,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
4805
4981
|
}
|
|
4806
4982
|
}
|
|
4807
4983
|
);
|
|
4808
|
-
var SheetContent =
|
|
4984
|
+
var SheetContent = React113__namespace.forwardRef(
|
|
4809
4985
|
({
|
|
4810
4986
|
side = "right",
|
|
4811
4987
|
className,
|
|
@@ -4861,7 +5037,7 @@ var SheetFooter = ({
|
|
|
4861
5037
|
}
|
|
4862
5038
|
);
|
|
4863
5039
|
SheetFooter.displayName = "SheetFooter";
|
|
4864
|
-
var SheetTitle =
|
|
5040
|
+
var SheetTitle = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4865
5041
|
DialogPrimitive__namespace.Title,
|
|
4866
5042
|
{
|
|
4867
5043
|
ref,
|
|
@@ -4873,7 +5049,7 @@ var SheetTitle = React105__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
4873
5049
|
}
|
|
4874
5050
|
));
|
|
4875
5051
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
4876
|
-
var SheetDescription =
|
|
5052
|
+
var SheetDescription = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4877
5053
|
DialogPrimitive__namespace.Description,
|
|
4878
5054
|
{
|
|
4879
5055
|
ref,
|
|
@@ -4910,10 +5086,10 @@ var defaultElements = {
|
|
|
4910
5086
|
"caption": "span",
|
|
4911
5087
|
"overline": "span"
|
|
4912
5088
|
};
|
|
4913
|
-
var Typography =
|
|
5089
|
+
var Typography = React113__namespace.default.forwardRef(
|
|
4914
5090
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
4915
5091
|
const Component = as || defaultElements[variant];
|
|
4916
|
-
return
|
|
5092
|
+
return React113__namespace.default.createElement(
|
|
4917
5093
|
Component,
|
|
4918
5094
|
{
|
|
4919
5095
|
ref,
|
|
@@ -4925,46 +5101,46 @@ var Typography = React105__namespace.default.forwardRef(
|
|
|
4925
5101
|
}
|
|
4926
5102
|
);
|
|
4927
5103
|
Typography.displayName = "Typography";
|
|
4928
|
-
var Heading1 =
|
|
5104
|
+
var Heading1 = React113__namespace.default.forwardRef(
|
|
4929
5105
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
4930
5106
|
);
|
|
4931
5107
|
Heading1.displayName = "Heading1";
|
|
4932
|
-
var Heading2 =
|
|
5108
|
+
var Heading2 = React113__namespace.default.forwardRef(
|
|
4933
5109
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
4934
5110
|
);
|
|
4935
5111
|
Heading2.displayName = "Heading2";
|
|
4936
|
-
var Heading3 =
|
|
5112
|
+
var Heading3 = React113__namespace.default.forwardRef(
|
|
4937
5113
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
4938
5114
|
);
|
|
4939
5115
|
Heading3.displayName = "Heading3";
|
|
4940
|
-
var Heading4 =
|
|
5116
|
+
var Heading4 = React113__namespace.default.forwardRef(
|
|
4941
5117
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
4942
5118
|
);
|
|
4943
5119
|
Heading4.displayName = "Heading4";
|
|
4944
|
-
var Heading5 =
|
|
5120
|
+
var Heading5 = React113__namespace.default.forwardRef(
|
|
4945
5121
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
4946
5122
|
);
|
|
4947
5123
|
Heading5.displayName = "Heading5";
|
|
4948
|
-
var Heading6 =
|
|
5124
|
+
var Heading6 = React113__namespace.default.forwardRef(
|
|
4949
5125
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
4950
5126
|
);
|
|
4951
5127
|
Heading6.displayName = "Heading6";
|
|
4952
|
-
var Text =
|
|
5128
|
+
var Text = React113__namespace.default.forwardRef(
|
|
4953
5129
|
({ size = "default", ...props }, ref) => {
|
|
4954
5130
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
4955
5131
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
4956
5132
|
}
|
|
4957
5133
|
);
|
|
4958
5134
|
Text.displayName = "Text";
|
|
4959
|
-
var Caption =
|
|
5135
|
+
var Caption = React113__namespace.default.forwardRef(
|
|
4960
5136
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
4961
5137
|
);
|
|
4962
5138
|
Caption.displayName = "Caption";
|
|
4963
|
-
var Overline =
|
|
5139
|
+
var Overline = React113__namespace.default.forwardRef(
|
|
4964
5140
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
4965
5141
|
);
|
|
4966
5142
|
Overline.displayName = "Overline";
|
|
4967
|
-
var Link =
|
|
5143
|
+
var Link = React113__namespace.default.forwardRef(
|
|
4968
5144
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
4969
5145
|
const variantClass = `link-${variant}`;
|
|
4970
5146
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -4979,11 +5155,11 @@ var Link = React105__namespace.default.forwardRef(
|
|
|
4979
5155
|
}
|
|
4980
5156
|
);
|
|
4981
5157
|
Link.displayName = "Link";
|
|
4982
|
-
var PaginationContext =
|
|
5158
|
+
var PaginationContext = React113__namespace.createContext({
|
|
4983
5159
|
size: "default"
|
|
4984
5160
|
});
|
|
4985
5161
|
var usePaginationContext = () => {
|
|
4986
|
-
const context =
|
|
5162
|
+
const context = React113__namespace.useContext(PaginationContext);
|
|
4987
5163
|
return context;
|
|
4988
5164
|
};
|
|
4989
5165
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5000,7 +5176,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5000
5176
|
}
|
|
5001
5177
|
}
|
|
5002
5178
|
);
|
|
5003
|
-
var Pagination =
|
|
5179
|
+
var Pagination = React113__namespace.forwardRef(
|
|
5004
5180
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5005
5181
|
"nav",
|
|
5006
5182
|
{
|
|
@@ -5013,7 +5189,7 @@ var Pagination = React105__namespace.forwardRef(
|
|
|
5013
5189
|
) })
|
|
5014
5190
|
);
|
|
5015
5191
|
Pagination.displayName = "Pagination";
|
|
5016
|
-
var PaginationContent =
|
|
5192
|
+
var PaginationContent = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5017
5193
|
"ul",
|
|
5018
5194
|
{
|
|
5019
5195
|
ref,
|
|
@@ -5022,7 +5198,7 @@ var PaginationContent = React105__namespace.forwardRef(({ className, ...props },
|
|
|
5022
5198
|
}
|
|
5023
5199
|
));
|
|
5024
5200
|
PaginationContent.displayName = "PaginationContent";
|
|
5025
|
-
var PaginationItem =
|
|
5201
|
+
var PaginationItem = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5026
5202
|
PaginationItem.displayName = "PaginationItem";
|
|
5027
5203
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5028
5204
|
[
|
|
@@ -5044,7 +5220,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5044
5220
|
}
|
|
5045
5221
|
}
|
|
5046
5222
|
);
|
|
5047
|
-
var PaginationLink =
|
|
5223
|
+
var PaginationLink = React113__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5048
5224
|
const { size } = usePaginationContext();
|
|
5049
5225
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5050
5226
|
"a",
|
|
@@ -5061,7 +5237,7 @@ var PaginationLink = React105__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5061
5237
|
);
|
|
5062
5238
|
});
|
|
5063
5239
|
PaginationLink.displayName = "PaginationLink";
|
|
5064
|
-
var PaginationPrevious =
|
|
5240
|
+
var PaginationPrevious = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5065
5241
|
const { size } = usePaginationContext();
|
|
5066
5242
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5067
5243
|
PaginationLink,
|
|
@@ -5082,7 +5258,7 @@ var PaginationPrevious = React105__namespace.forwardRef(({ className, ...props }
|
|
|
5082
5258
|
);
|
|
5083
5259
|
});
|
|
5084
5260
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5085
|
-
var PaginationNext =
|
|
5261
|
+
var PaginationNext = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5086
5262
|
const { size } = usePaginationContext();
|
|
5087
5263
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5088
5264
|
PaginationLink,
|
|
@@ -5103,7 +5279,7 @@ var PaginationNext = React105__namespace.forwardRef(({ className, ...props }, re
|
|
|
5103
5279
|
);
|
|
5104
5280
|
});
|
|
5105
5281
|
PaginationNext.displayName = "PaginationNext";
|
|
5106
|
-
var PaginationEllipsis =
|
|
5282
|
+
var PaginationEllipsis = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5107
5283
|
const { size } = usePaginationContext();
|
|
5108
5284
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5109
5285
|
"span",
|
|
@@ -5127,7 +5303,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5127
5303
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5128
5304
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5129
5305
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5130
|
-
var DropdownMenuSubTrigger =
|
|
5306
|
+
var DropdownMenuSubTrigger = React113__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5131
5307
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5132
5308
|
{
|
|
5133
5309
|
ref,
|
|
@@ -5144,7 +5320,7 @@ var DropdownMenuSubTrigger = React105__namespace.forwardRef(({ className, inset,
|
|
|
5144
5320
|
}
|
|
5145
5321
|
));
|
|
5146
5322
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5147
|
-
var DropdownMenuSubContent =
|
|
5323
|
+
var DropdownMenuSubContent = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5148
5324
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5149
5325
|
{
|
|
5150
5326
|
ref,
|
|
@@ -5156,7 +5332,7 @@ var DropdownMenuSubContent = React105__namespace.forwardRef(({ className, ...pro
|
|
|
5156
5332
|
}
|
|
5157
5333
|
));
|
|
5158
5334
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5159
|
-
var DropdownMenuContent =
|
|
5335
|
+
var DropdownMenuContent = React113__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5160
5336
|
DropdownMenuPrimitive__namespace.Content,
|
|
5161
5337
|
{
|
|
5162
5338
|
ref,
|
|
@@ -5170,7 +5346,7 @@ var DropdownMenuContent = React105__namespace.forwardRef(({ className, sideOffse
|
|
|
5170
5346
|
}
|
|
5171
5347
|
) }));
|
|
5172
5348
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5173
|
-
var DropdownMenuItem =
|
|
5349
|
+
var DropdownMenuItem = React113__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5174
5350
|
DropdownMenuPrimitive__namespace.Item,
|
|
5175
5351
|
{
|
|
5176
5352
|
ref,
|
|
@@ -5183,7 +5359,7 @@ var DropdownMenuItem = React105__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5183
5359
|
}
|
|
5184
5360
|
));
|
|
5185
5361
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5186
|
-
var DropdownMenuCheckboxItem =
|
|
5362
|
+
var DropdownMenuCheckboxItem = React113__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5187
5363
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5188
5364
|
{
|
|
5189
5365
|
ref,
|
|
@@ -5200,7 +5376,7 @@ var DropdownMenuCheckboxItem = React105__namespace.forwardRef(({ className, chil
|
|
|
5200
5376
|
}
|
|
5201
5377
|
));
|
|
5202
5378
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5203
|
-
var DropdownMenuRadioItem =
|
|
5379
|
+
var DropdownMenuRadioItem = React113__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5204
5380
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5205
5381
|
{
|
|
5206
5382
|
ref,
|
|
@@ -5216,7 +5392,7 @@ var DropdownMenuRadioItem = React105__namespace.forwardRef(({ className, childre
|
|
|
5216
5392
|
}
|
|
5217
5393
|
));
|
|
5218
5394
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5219
|
-
var DropdownMenuLabel =
|
|
5395
|
+
var DropdownMenuLabel = React113__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5220
5396
|
DropdownMenuPrimitive__namespace.Label,
|
|
5221
5397
|
{
|
|
5222
5398
|
ref,
|
|
@@ -5229,7 +5405,7 @@ var DropdownMenuLabel = React105__namespace.forwardRef(({ className, inset, ...p
|
|
|
5229
5405
|
}
|
|
5230
5406
|
));
|
|
5231
5407
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5232
|
-
var DropdownMenuSeparator =
|
|
5408
|
+
var DropdownMenuSeparator = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5233
5409
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5234
5410
|
{
|
|
5235
5411
|
ref,
|
|
@@ -5251,7 +5427,7 @@ var DropdownMenuShortcut = ({
|
|
|
5251
5427
|
);
|
|
5252
5428
|
};
|
|
5253
5429
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5254
|
-
var TableWrapper =
|
|
5430
|
+
var TableWrapper = React113__namespace.forwardRef(
|
|
5255
5431
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5256
5432
|
"div",
|
|
5257
5433
|
{
|
|
@@ -5266,7 +5442,7 @@ var TableWrapper = React105__namespace.forwardRef(
|
|
|
5266
5442
|
)
|
|
5267
5443
|
);
|
|
5268
5444
|
TableWrapper.displayName = "TableWrapper";
|
|
5269
|
-
var Table =
|
|
5445
|
+
var Table = React113__namespace.forwardRef(
|
|
5270
5446
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5271
5447
|
"div",
|
|
5272
5448
|
{
|
|
@@ -5288,7 +5464,7 @@ var Table = React105__namespace.forwardRef(
|
|
|
5288
5464
|
)
|
|
5289
5465
|
);
|
|
5290
5466
|
Table.displayName = "Table";
|
|
5291
|
-
var TableHeader =
|
|
5467
|
+
var TableHeader = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5292
5468
|
"thead",
|
|
5293
5469
|
{
|
|
5294
5470
|
ref,
|
|
@@ -5301,7 +5477,7 @@ var TableHeader = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5301
5477
|
}
|
|
5302
5478
|
));
|
|
5303
5479
|
TableHeader.displayName = "TableHeader";
|
|
5304
|
-
var TableBody =
|
|
5480
|
+
var TableBody = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5305
5481
|
"tbody",
|
|
5306
5482
|
{
|
|
5307
5483
|
ref,
|
|
@@ -5314,7 +5490,7 @@ var TableBody = React105__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5314
5490
|
}
|
|
5315
5491
|
));
|
|
5316
5492
|
TableBody.displayName = "TableBody";
|
|
5317
|
-
var TableFooter =
|
|
5493
|
+
var TableFooter = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5318
5494
|
"tfoot",
|
|
5319
5495
|
{
|
|
5320
5496
|
ref,
|
|
@@ -5327,7 +5503,7 @@ var TableFooter = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5327
5503
|
}
|
|
5328
5504
|
));
|
|
5329
5505
|
TableFooter.displayName = "TableFooter";
|
|
5330
|
-
var TableRow =
|
|
5506
|
+
var TableRow = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5331
5507
|
"tr",
|
|
5332
5508
|
{
|
|
5333
5509
|
ref,
|
|
@@ -5345,7 +5521,7 @@ var TableRow = React105__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5345
5521
|
}
|
|
5346
5522
|
));
|
|
5347
5523
|
TableRow.displayName = "TableRow";
|
|
5348
|
-
var TableHead =
|
|
5524
|
+
var TableHead = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5349
5525
|
"th",
|
|
5350
5526
|
{
|
|
5351
5527
|
ref,
|
|
@@ -5358,7 +5534,7 @@ var TableHead = React105__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5358
5534
|
}
|
|
5359
5535
|
));
|
|
5360
5536
|
TableHead.displayName = "TableHead";
|
|
5361
|
-
var TableCell =
|
|
5537
|
+
var TableCell = React113__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5362
5538
|
"td",
|
|
5363
5539
|
{
|
|
5364
5540
|
ref,
|
|
@@ -5378,7 +5554,7 @@ var TableCell = React105__namespace.forwardRef(({ className, label, ...props },
|
|
|
5378
5554
|
}
|
|
5379
5555
|
));
|
|
5380
5556
|
TableCell.displayName = "TableCell";
|
|
5381
|
-
var TableCaption =
|
|
5557
|
+
var TableCaption = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5382
5558
|
"caption",
|
|
5383
5559
|
{
|
|
5384
5560
|
ref,
|
|
@@ -5391,7 +5567,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5391
5567
|
var Select = SelectPrimitive__namespace.Root;
|
|
5392
5568
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5393
5569
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5394
|
-
var SelectTrigger =
|
|
5570
|
+
var SelectTrigger = React113__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5395
5571
|
SelectPrimitive__namespace.Trigger,
|
|
5396
5572
|
{
|
|
5397
5573
|
ref,
|
|
@@ -5407,7 +5583,7 @@ var SelectTrigger = React105__namespace.forwardRef(({ className, children, ...pr
|
|
|
5407
5583
|
}
|
|
5408
5584
|
));
|
|
5409
5585
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5410
|
-
var SelectScrollUpButton =
|
|
5586
|
+
var SelectScrollUpButton = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5411
5587
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5412
5588
|
{
|
|
5413
5589
|
ref,
|
|
@@ -5420,7 +5596,7 @@ var SelectScrollUpButton = React105__namespace.forwardRef(({ className, ...props
|
|
|
5420
5596
|
}
|
|
5421
5597
|
));
|
|
5422
5598
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5423
|
-
var SelectScrollDownButton =
|
|
5599
|
+
var SelectScrollDownButton = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5424
5600
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5425
5601
|
{
|
|
5426
5602
|
ref,
|
|
@@ -5433,7 +5609,7 @@ var SelectScrollDownButton = React105__namespace.forwardRef(({ className, ...pro
|
|
|
5433
5609
|
}
|
|
5434
5610
|
));
|
|
5435
5611
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5436
|
-
var SelectContent =
|
|
5612
|
+
var SelectContent = React113__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5437
5613
|
SelectPrimitive__namespace.Content,
|
|
5438
5614
|
{
|
|
5439
5615
|
ref,
|
|
@@ -5460,7 +5636,7 @@ var SelectContent = React105__namespace.forwardRef(({ className, children, posit
|
|
|
5460
5636
|
}
|
|
5461
5637
|
) }));
|
|
5462
5638
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5463
|
-
var SelectLabel =
|
|
5639
|
+
var SelectLabel = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5464
5640
|
SelectPrimitive__namespace.Label,
|
|
5465
5641
|
{
|
|
5466
5642
|
ref,
|
|
@@ -5469,7 +5645,7 @@ var SelectLabel = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5469
5645
|
}
|
|
5470
5646
|
));
|
|
5471
5647
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5472
|
-
var SelectItem =
|
|
5648
|
+
var SelectItem = React113__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5473
5649
|
SelectPrimitive__namespace.Item,
|
|
5474
5650
|
{
|
|
5475
5651
|
ref,
|
|
@@ -5485,7 +5661,7 @@ var SelectItem = React105__namespace.forwardRef(({ className, children, ...props
|
|
|
5485
5661
|
}
|
|
5486
5662
|
));
|
|
5487
5663
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5488
|
-
var SelectSeparator =
|
|
5664
|
+
var SelectSeparator = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5489
5665
|
SelectPrimitive__namespace.Separator,
|
|
5490
5666
|
{
|
|
5491
5667
|
ref,
|
|
@@ -5494,7 +5670,7 @@ var SelectSeparator = React105__namespace.forwardRef(({ className, ...props }, r
|
|
|
5494
5670
|
}
|
|
5495
5671
|
));
|
|
5496
5672
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5497
|
-
var Label3 =
|
|
5673
|
+
var Label3 = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5498
5674
|
LabelPrimitive__namespace.Root,
|
|
5499
5675
|
{
|
|
5500
5676
|
ref,
|
|
@@ -5506,7 +5682,7 @@ var Label3 = React105__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5506
5682
|
}
|
|
5507
5683
|
));
|
|
5508
5684
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5509
|
-
var Switch =
|
|
5685
|
+
var Switch = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5510
5686
|
SwitchPrimitives__namespace.Root,
|
|
5511
5687
|
{
|
|
5512
5688
|
className: cn(
|
|
@@ -5519,7 +5695,7 @@ var Switch = React105__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5519
5695
|
}
|
|
5520
5696
|
));
|
|
5521
5697
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5522
|
-
var RadioGroup2 =
|
|
5698
|
+
var RadioGroup2 = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5523
5699
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5524
5700
|
RadioGroupPrimitive__namespace.Root,
|
|
5525
5701
|
{
|
|
@@ -5530,7 +5706,7 @@ var RadioGroup2 = React105__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5530
5706
|
);
|
|
5531
5707
|
});
|
|
5532
5708
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5533
|
-
var RadioGroupItem =
|
|
5709
|
+
var RadioGroupItem = React113__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5534
5710
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5535
5711
|
RadioGroupPrimitive__namespace.Item,
|
|
5536
5712
|
{
|
|
@@ -5545,7 +5721,7 @@ var RadioGroupItem = React105__namespace.forwardRef(({ className, ...props }, re
|
|
|
5545
5721
|
);
|
|
5546
5722
|
});
|
|
5547
5723
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5548
|
-
var Checkbox =
|
|
5724
|
+
var Checkbox = React113__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5549
5725
|
CheckboxPrimitive__namespace.Root,
|
|
5550
5726
|
{
|
|
5551
5727
|
ref,
|
|
@@ -5558,7 +5734,7 @@ var Checkbox = React105__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5558
5734
|
}
|
|
5559
5735
|
));
|
|
5560
5736
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5561
|
-
var MultiSelect =
|
|
5737
|
+
var MultiSelect = React113__namespace.forwardRef(
|
|
5562
5738
|
({
|
|
5563
5739
|
options,
|
|
5564
5740
|
value = [],
|
|
@@ -5571,8 +5747,8 @@ var MultiSelect = React105__namespace.forwardRef(
|
|
|
5571
5747
|
maxDisplayItems = 3,
|
|
5572
5748
|
...props
|
|
5573
5749
|
}, ref) => {
|
|
5574
|
-
const [open, setOpen] =
|
|
5575
|
-
const handleSelectAll =
|
|
5750
|
+
const [open, setOpen] = React113__namespace.useState(false);
|
|
5751
|
+
const handleSelectAll = React113__namespace.useCallback(() => {
|
|
5576
5752
|
if (!onValueChange) return;
|
|
5577
5753
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5578
5754
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5585,7 +5761,7 @@ var MultiSelect = React105__namespace.forwardRef(
|
|
|
5585
5761
|
onValueChange(allValues);
|
|
5586
5762
|
}
|
|
5587
5763
|
}, [options, value, onValueChange]);
|
|
5588
|
-
const handleItemToggle =
|
|
5764
|
+
const handleItemToggle = React113__namespace.useCallback(
|
|
5589
5765
|
(itemValue) => {
|
|
5590
5766
|
if (!onValueChange) return;
|
|
5591
5767
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5593,7 +5769,7 @@ var MultiSelect = React105__namespace.forwardRef(
|
|
|
5593
5769
|
},
|
|
5594
5770
|
[value, onValueChange]
|
|
5595
5771
|
);
|
|
5596
|
-
const displayValue =
|
|
5772
|
+
const displayValue = React113__namespace.useMemo(() => {
|
|
5597
5773
|
if (value.length === 0) {
|
|
5598
5774
|
return placeholder;
|
|
5599
5775
|
}
|
|
@@ -6062,10 +6238,12 @@ exports.ArrowLeft = ArrowLeft;
|
|
|
6062
6238
|
exports.ArrowRight = ArrowRight;
|
|
6063
6239
|
exports.ArrowSquareOut = ArrowSquareOut;
|
|
6064
6240
|
exports.ArrowUp = ArrowUp;
|
|
6241
|
+
exports.ArrowsClockwiseIcon = ArrowsClockwiseIcon;
|
|
6065
6242
|
exports.AviIcon = avi_exports;
|
|
6066
6243
|
exports.Badge = Badge;
|
|
6067
6244
|
exports.Blend = Blend;
|
|
6068
6245
|
exports.BlendIcon = blend_exports;
|
|
6246
|
+
exports.BooksIcon = BooksIcon;
|
|
6069
6247
|
exports.Button = Button;
|
|
6070
6248
|
exports.C4D = C4D;
|
|
6071
6249
|
exports.C4dIcon = c4d_exports;
|
|
@@ -6092,8 +6270,10 @@ exports.ChartBar = ChartBar;
|
|
|
6092
6270
|
exports.Chat = Chat;
|
|
6093
6271
|
exports.ChatsCircle = ChatsCircle;
|
|
6094
6272
|
exports.Check = Check;
|
|
6273
|
+
exports.CheckSquareIcon = CheckSquareIcon;
|
|
6095
6274
|
exports.Checkbox = Checkbox;
|
|
6096
6275
|
exports.Circle = Circle;
|
|
6276
|
+
exports.ClipboardTextIcon = ClipboardTextIcon;
|
|
6097
6277
|
exports.Clock = Clock;
|
|
6098
6278
|
exports.CopySimpleIcon = CopySimpleIcon;
|
|
6099
6279
|
exports.CreditCard = CreditCard;
|
|
@@ -6137,6 +6317,7 @@ exports.ExeIcon = exe_exports;
|
|
|
6137
6317
|
exports.FacebookLogo = FacebookLogo;
|
|
6138
6318
|
exports.Fig = Fig;
|
|
6139
6319
|
exports.FigIcon = fig_exports;
|
|
6320
|
+
exports.FolderIcon = FolderIcon;
|
|
6140
6321
|
exports.GIF = GIF;
|
|
6141
6322
|
exports.Gear = Gear;
|
|
6142
6323
|
exports.GearSix = GearSix;
|
|
@@ -6198,6 +6379,7 @@ exports.PDF = PDF;
|
|
|
6198
6379
|
exports.PNG = PNG;
|
|
6199
6380
|
exports.PPT = PPT;
|
|
6200
6381
|
exports.PSD = PSD;
|
|
6382
|
+
exports.PackageIcon = PackageIcon;
|
|
6201
6383
|
exports.Pagination = Pagination;
|
|
6202
6384
|
exports.PaginationContent = PaginationContent;
|
|
6203
6385
|
exports.PaginationEllipsis = PaginationEllipsis;
|
|
@@ -6239,6 +6421,7 @@ exports.SheetFooter = SheetFooter;
|
|
|
6239
6421
|
exports.SheetHeader = SheetHeader;
|
|
6240
6422
|
exports.SheetTitle = SheetTitle;
|
|
6241
6423
|
exports.SheetTrigger = SheetTrigger;
|
|
6424
|
+
exports.ShoppingCartIcon = ShoppingCartIcon;
|
|
6242
6425
|
exports.SidebarSimple = SidebarSimple;
|
|
6243
6426
|
exports.SignOut = SignOut;
|
|
6244
6427
|
exports.Sketch = Sketch;
|
|
@@ -6286,6 +6469,7 @@ exports.WavIcon = wav_exports;
|
|
|
6286
6469
|
exports.Waveform = Waveform;
|
|
6287
6470
|
exports.WebpIcon = webp_exports;
|
|
6288
6471
|
exports.WhatsAppLogo = WhatsAppLogo;
|
|
6472
|
+
exports.WrenchIcon = WrenchIcon;
|
|
6289
6473
|
exports.XIcon = XIcon;
|
|
6290
6474
|
exports.XLS = XLS;
|
|
6291
6475
|
exports.XlsIcon = xls_exports;
|