luaniverse 4.0.42 → 4.0.44
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 +350 -210
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +346 -211
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +54 -0
- package/dist/safelist.txt +52 -2
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as React116 from 'react';
|
|
2
|
+
import React116__default from 'react';
|
|
3
3
|
import { Slot } from '@radix-ui/react-slot';
|
|
4
4
|
import { cva } from 'class-variance-authority';
|
|
5
5
|
import { clsx } from 'clsx';
|
|
@@ -16,6 +16,7 @@ import * as LabelPrimitive from '@radix-ui/react-label';
|
|
|
16
16
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
17
17
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
18
18
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
19
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
19
20
|
|
|
20
21
|
var __defProp = Object.defineProperty;
|
|
21
22
|
var __export = (target, all) => {
|
|
@@ -201,7 +202,7 @@ var buttonVariants = cva(
|
|
|
201
202
|
}
|
|
202
203
|
);
|
|
203
204
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
204
|
-
var Button =
|
|
205
|
+
var Button = React116.forwardRef(
|
|
205
206
|
({
|
|
206
207
|
className,
|
|
207
208
|
variant,
|
|
@@ -219,7 +220,7 @@ var Button = React113.forwardRef(
|
|
|
219
220
|
const Comp = asChild ? Slot : "button";
|
|
220
221
|
const hasStartAdornment = !!startAdornment;
|
|
221
222
|
const hasEndAdornment = !!endAdornment;
|
|
222
|
-
const hasTextContent =
|
|
223
|
+
const hasTextContent = React116.Children.toArray(children).some(
|
|
223
224
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
224
225
|
);
|
|
225
226
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -274,7 +275,7 @@ var iconButtonVariants = {
|
|
|
274
275
|
large: "lua:p-3 lua:size-12"
|
|
275
276
|
}
|
|
276
277
|
};
|
|
277
|
-
var IconButton =
|
|
278
|
+
var IconButton = React116.forwardRef(
|
|
278
279
|
({
|
|
279
280
|
className,
|
|
280
281
|
variant,
|
|
@@ -315,7 +316,7 @@ var IconButton = React113.forwardRef(
|
|
|
315
316
|
className: "lua:text-current",
|
|
316
317
|
"aria-hidden": "true"
|
|
317
318
|
}
|
|
318
|
-
) }) : /* @__PURE__ */ jsx(Fragment, { children:
|
|
319
|
+
) }) : /* @__PURE__ */ jsx(Fragment, { children: React116.cloneElement(children, {
|
|
319
320
|
"aria-hidden": "true"
|
|
320
321
|
}) })
|
|
321
322
|
}
|
|
@@ -323,7 +324,7 @@ var IconButton = React113.forwardRef(
|
|
|
323
324
|
}
|
|
324
325
|
);
|
|
325
326
|
IconButton.displayName = "IconButton";
|
|
326
|
-
var Input =
|
|
327
|
+
var Input = React116.forwardRef(
|
|
327
328
|
({
|
|
328
329
|
className,
|
|
329
330
|
type = "text",
|
|
@@ -339,7 +340,7 @@ var Input = React113.forwardRef(
|
|
|
339
340
|
disabled,
|
|
340
341
|
...props
|
|
341
342
|
}, ref) => {
|
|
342
|
-
const generatedId =
|
|
343
|
+
const generatedId = React116.useId();
|
|
343
344
|
const inputId = id || generatedId;
|
|
344
345
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
345
346
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -486,7 +487,7 @@ var badgeVariants = cva(
|
|
|
486
487
|
}
|
|
487
488
|
}
|
|
488
489
|
);
|
|
489
|
-
var Badge =
|
|
490
|
+
var Badge = React116.forwardRef(
|
|
490
491
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
491
492
|
const Comp = asChild ? Slot : "span";
|
|
492
493
|
return /* @__PURE__ */ jsx(
|
|
@@ -501,7 +502,7 @@ var Badge = React113.forwardRef(
|
|
|
501
502
|
}
|
|
502
503
|
);
|
|
503
504
|
Badge.displayName = "Badge";
|
|
504
|
-
var Textarea =
|
|
505
|
+
var Textarea = React116.forwardRef(
|
|
505
506
|
({
|
|
506
507
|
className,
|
|
507
508
|
description,
|
|
@@ -514,7 +515,7 @@ var Textarea = React113.forwardRef(
|
|
|
514
515
|
disabled,
|
|
515
516
|
...props
|
|
516
517
|
}, ref) => {
|
|
517
|
-
const generatedId =
|
|
518
|
+
const generatedId = React116.useId();
|
|
518
519
|
const textareaId = id || generatedId;
|
|
519
520
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
520
521
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -609,7 +610,7 @@ var Tabs = TabsPrimitive.Root;
|
|
|
609
610
|
var tabsListVariants = cva([
|
|
610
611
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
611
612
|
].join(" "));
|
|
612
|
-
var TabsList =
|
|
613
|
+
var TabsList = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
613
614
|
TabsPrimitive.List,
|
|
614
615
|
{
|
|
615
616
|
ref,
|
|
@@ -625,7 +626,7 @@ var tabsTriggerVariants = cva([
|
|
|
625
626
|
"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",
|
|
626
627
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
627
628
|
].join(" "));
|
|
628
|
-
var TabsTrigger =
|
|
629
|
+
var TabsTrigger = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
629
630
|
TabsPrimitive.Trigger,
|
|
630
631
|
{
|
|
631
632
|
ref,
|
|
@@ -638,7 +639,7 @@ var tabsContentVariants = cva([
|
|
|
638
639
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
639
640
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
640
641
|
].join(" "));
|
|
641
|
-
var TabsContent =
|
|
642
|
+
var TabsContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
642
643
|
TabsPrimitive.Content,
|
|
643
644
|
{
|
|
644
645
|
ref,
|
|
@@ -647,7 +648,7 @@ var TabsContent = React113.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
647
648
|
}
|
|
648
649
|
));
|
|
649
650
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
650
|
-
var InputOTP =
|
|
651
|
+
var InputOTP = React116.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
651
652
|
OTPInput,
|
|
652
653
|
{
|
|
653
654
|
ref,
|
|
@@ -660,10 +661,10 @@ var InputOTP = React113.forwardRef(({ className, containerClassName, ...props },
|
|
|
660
661
|
}
|
|
661
662
|
));
|
|
662
663
|
InputOTP.displayName = "InputOTP";
|
|
663
|
-
var InputOTPGroup =
|
|
664
|
+
var InputOTPGroup = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
664
665
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
665
|
-
var InputOTPSlot =
|
|
666
|
-
const inputOTPContext =
|
|
666
|
+
var InputOTPSlot = React116.forwardRef(({ index, className, ...props }, ref) => {
|
|
667
|
+
const inputOTPContext = React116.useContext(OTPInputContext);
|
|
667
668
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
668
669
|
return /* @__PURE__ */ jsxs(
|
|
669
670
|
"div",
|
|
@@ -683,7 +684,7 @@ var InputOTPSlot = React113.forwardRef(({ index, className, ...props }, ref) =>
|
|
|
683
684
|
);
|
|
684
685
|
});
|
|
685
686
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
686
|
-
var InputOTPSeparator =
|
|
687
|
+
var InputOTPSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
687
688
|
"div",
|
|
688
689
|
{
|
|
689
690
|
ref,
|
|
@@ -697,7 +698,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
697
698
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
698
699
|
var Tooltip = TooltipPrimitive.Root;
|
|
699
700
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
700
|
-
var TooltipArrow =
|
|
701
|
+
var TooltipArrow = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
701
702
|
TooltipPrimitive.Arrow,
|
|
702
703
|
{
|
|
703
704
|
ref,
|
|
@@ -714,7 +715,7 @@ var TooltipArrow = React113.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
714
715
|
}
|
|
715
716
|
));
|
|
716
717
|
TooltipArrow.displayName = TooltipPrimitive.Arrow.displayName;
|
|
717
|
-
var TooltipContent =
|
|
718
|
+
var TooltipContent = React116.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
718
719
|
TooltipPrimitive.Content,
|
|
719
720
|
{
|
|
720
721
|
ref,
|
|
@@ -738,7 +739,7 @@ var TooltipContent = React113.forwardRef(({ className, sideOffset = 4, style, ..
|
|
|
738
739
|
}
|
|
739
740
|
) }));
|
|
740
741
|
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
741
|
-
var Card =
|
|
742
|
+
var Card = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
742
743
|
"div",
|
|
743
744
|
{
|
|
744
745
|
ref,
|
|
@@ -750,7 +751,7 @@ var Card = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
|
750
751
|
}
|
|
751
752
|
));
|
|
752
753
|
Card.displayName = "Card";
|
|
753
|
-
var CardHeader =
|
|
754
|
+
var CardHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
754
755
|
"div",
|
|
755
756
|
{
|
|
756
757
|
ref,
|
|
@@ -759,7 +760,7 @@ var CardHeader = React113.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
759
760
|
}
|
|
760
761
|
));
|
|
761
762
|
CardHeader.displayName = "CardHeader";
|
|
762
|
-
var CardTitle =
|
|
763
|
+
var CardTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
763
764
|
"div",
|
|
764
765
|
{
|
|
765
766
|
ref,
|
|
@@ -768,7 +769,7 @@ var CardTitle = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
768
769
|
}
|
|
769
770
|
));
|
|
770
771
|
CardTitle.displayName = "CardTitle";
|
|
771
|
-
var CardDescription =
|
|
772
|
+
var CardDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
772
773
|
"div",
|
|
773
774
|
{
|
|
774
775
|
ref,
|
|
@@ -777,9 +778,9 @@ var CardDescription = React113.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
777
778
|
}
|
|
778
779
|
));
|
|
779
780
|
CardDescription.displayName = "CardDescription";
|
|
780
|
-
var CardContent =
|
|
781
|
+
var CardContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
781
782
|
CardContent.displayName = "CardContent";
|
|
782
|
-
var CardFooter =
|
|
783
|
+
var CardFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
783
784
|
"div",
|
|
784
785
|
{
|
|
785
786
|
ref,
|
|
@@ -852,7 +853,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
852
853
|
restProps
|
|
853
854
|
};
|
|
854
855
|
}
|
|
855
|
-
var ArrowLeft =
|
|
856
|
+
var ArrowLeft = React116.forwardRef(
|
|
856
857
|
({ size = 20, ...props }, ref) => {
|
|
857
858
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
858
859
|
return /* @__PURE__ */ jsxs(
|
|
@@ -881,7 +882,7 @@ var ArrowLeft = React113.forwardRef(
|
|
|
881
882
|
}
|
|
882
883
|
);
|
|
883
884
|
ArrowLeft.displayName = "ArrowLeft";
|
|
884
|
-
var ArrowRight =
|
|
885
|
+
var ArrowRight = React116.forwardRef(
|
|
885
886
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
886
887
|
"svg",
|
|
887
888
|
{
|
|
@@ -903,7 +904,29 @@ var ArrowRight = React113.forwardRef(
|
|
|
903
904
|
)
|
|
904
905
|
);
|
|
905
906
|
ArrowRight.displayName = "ArrowRight";
|
|
906
|
-
var
|
|
907
|
+
var ArrowClockwiseIcon = React116.forwardRef(
|
|
908
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
909
|
+
"svg",
|
|
910
|
+
{
|
|
911
|
+
ref,
|
|
912
|
+
width: size,
|
|
913
|
+
height: size,
|
|
914
|
+
viewBox: "0 0 24 24",
|
|
915
|
+
fill: "none",
|
|
916
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
917
|
+
...props,
|
|
918
|
+
children: /* @__PURE__ */ jsx(
|
|
919
|
+
"path",
|
|
920
|
+
{
|
|
921
|
+
d: "M22.5 5.25001V9.75001C22.5 9.94892 22.421 10.1397 22.2803 10.2803C22.1397 10.421 21.9489 10.5 21.75 10.5H17.25C17.0511 10.5 16.8603 10.421 16.7197 10.2803C16.579 10.1397 16.5 9.94892 16.5 9.75001C16.5 9.5511 16.579 9.36033 16.7197 9.21968C16.8603 9.07903 17.0511 9.00001 17.25 9.00001H19.8188L17.3259 6.71626L17.3025 6.69376C16.2601 5.65172 14.9337 4.93994 13.4891 4.64734C12.0445 4.35473 10.5457 4.49428 9.17991 5.04854C7.81414 5.60281 6.64197 6.54721 5.80982 7.76379C4.97768 8.98036 4.52245 10.4152 4.501 11.889C4.47956 13.3627 4.89286 14.8102 5.68926 16.0505C6.48566 17.2907 7.62986 18.2688 8.97892 18.8626C10.328 19.4564 11.8221 19.6395 13.2746 19.389C14.7271 19.1386 16.0736 18.4657 17.1459 17.4544C17.2905 17.3176 17.4835 17.2439 17.6825 17.2495C17.8814 17.255 18.07 17.3393 18.2067 17.4839C18.3435 17.6285 18.4172 17.8215 18.4117 18.0204C18.4061 18.2194 18.3218 18.4079 18.1772 18.5447C16.5098 20.126 14.298 21.0052 12 21H11.8763C10.4023 20.9798 8.95579 20.5979 7.66398 19.8878C6.37216 19.1776 5.27455 18.161 4.46762 16.9274C3.6607 15.6937 3.16915 14.2807 3.0362 12.8126C2.90324 11.3445 3.13294 9.86616 3.70511 8.5076C4.27728 7.14903 5.1744 5.95181 6.31762 5.02116C7.46085 4.09051 8.81517 3.45492 10.2616 3.17026C11.7079 2.88559 13.2021 2.96057 14.6127 3.38859C16.0234 3.81662 17.3073 4.58459 18.3516 5.62501L21 8.04376V5.25001C21 5.0511 21.079 4.86033 21.2197 4.71968C21.3603 4.57903 21.5511 4.50001 21.75 4.50001C21.9489 4.50001 22.1397 4.57903 22.2803 4.71968C22.421 4.86033 22.5 5.0511 22.5 5.25001Z",
|
|
922
|
+
fill: props.color || "currentColor"
|
|
923
|
+
}
|
|
924
|
+
)
|
|
925
|
+
}
|
|
926
|
+
)
|
|
927
|
+
);
|
|
928
|
+
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
929
|
+
var ArrowsClockwiseIcon = React116.forwardRef(
|
|
907
930
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
908
931
|
"svg",
|
|
909
932
|
{
|
|
@@ -925,7 +948,7 @@ var ArrowsClockwiseIcon = React113.forwardRef(
|
|
|
925
948
|
)
|
|
926
949
|
);
|
|
927
950
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
928
|
-
var ArrowSquareOut =
|
|
951
|
+
var ArrowSquareOut = React116.forwardRef(
|
|
929
952
|
({ size = 20, ...props }, ref) => {
|
|
930
953
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
931
954
|
return /* @__PURE__ */ jsxs(
|
|
@@ -954,7 +977,7 @@ var ArrowSquareOut = React113.forwardRef(
|
|
|
954
977
|
}
|
|
955
978
|
);
|
|
956
979
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
957
|
-
var ArrowUp =
|
|
980
|
+
var ArrowUp = React116.forwardRef(
|
|
958
981
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
959
982
|
"svg",
|
|
960
983
|
{
|
|
@@ -976,7 +999,7 @@ var ArrowUp = React113.forwardRef(
|
|
|
976
999
|
)
|
|
977
1000
|
);
|
|
978
1001
|
ArrowUp.displayName = "ArrowUp";
|
|
979
|
-
var BooksIcon =
|
|
1002
|
+
var BooksIcon = React116.forwardRef(
|
|
980
1003
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
981
1004
|
"svg",
|
|
982
1005
|
{
|
|
@@ -998,7 +1021,7 @@ var BooksIcon = React113.forwardRef(
|
|
|
998
1021
|
)
|
|
999
1022
|
);
|
|
1000
1023
|
BooksIcon.displayName = "BooksIcon";
|
|
1001
|
-
var Camera =
|
|
1024
|
+
var Camera = React116.forwardRef(
|
|
1002
1025
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1003
1026
|
"svg",
|
|
1004
1027
|
{
|
|
@@ -1020,7 +1043,7 @@ var Camera = React113.forwardRef(
|
|
|
1020
1043
|
)
|
|
1021
1044
|
);
|
|
1022
1045
|
Camera.displayName = "Camera";
|
|
1023
|
-
var CaretDown =
|
|
1046
|
+
var CaretDown = React116.forwardRef(
|
|
1024
1047
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1025
1048
|
"svg",
|
|
1026
1049
|
{
|
|
@@ -1042,7 +1065,7 @@ var CaretDown = React113.forwardRef(
|
|
|
1042
1065
|
)
|
|
1043
1066
|
);
|
|
1044
1067
|
CaretDown.displayName = "CaretDown";
|
|
1045
|
-
var CaretRight =
|
|
1068
|
+
var CaretRight = React116.forwardRef(
|
|
1046
1069
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1047
1070
|
"svg",
|
|
1048
1071
|
{
|
|
@@ -1064,7 +1087,29 @@ var CaretRight = React113.forwardRef(
|
|
|
1064
1087
|
)
|
|
1065
1088
|
);
|
|
1066
1089
|
CaretRight.displayName = "CaretRight";
|
|
1067
|
-
var
|
|
1090
|
+
var CaretUpIcon = React116.forwardRef(
|
|
1091
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1092
|
+
"svg",
|
|
1093
|
+
{
|
|
1094
|
+
ref,
|
|
1095
|
+
width: size,
|
|
1096
|
+
height: size,
|
|
1097
|
+
viewBox: "0 0 24 24",
|
|
1098
|
+
fill: "none",
|
|
1099
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1100
|
+
...props,
|
|
1101
|
+
children: /* @__PURE__ */ jsx(
|
|
1102
|
+
"path",
|
|
1103
|
+
{
|
|
1104
|
+
d: "M20.0306 15.5306C19.961 15.6003 19.8782 15.6557 19.7872 15.6934C19.6961 15.7311 19.5986 15.7506 19.5 15.7506C19.4014 15.7506 19.3038 15.7311 19.2128 15.6934C19.1217 15.6557 19.039 15.6003 18.9694 15.5306L12 8.56029L5.03061 15.5306C4.88988 15.6713 4.69901 15.7504 4.49999 15.7504C4.30097 15.7504 4.1101 15.6713 3.96936 15.5306C3.82863 15.3899 3.74957 15.199 3.74957 15C3.74957 14.801 3.82863 14.6101 3.96936 14.4694L11.4694 6.96935C11.539 6.89962 11.6217 6.8443 11.7128 6.80656C11.8038 6.76882 11.9014 6.74939 12 6.74939C12.0986 6.74939 12.1961 6.76882 12.2872 6.80656C12.3782 6.8443 12.461 6.89962 12.5306 6.96935L20.0306 14.4694C20.1003 14.539 20.1557 14.6217 20.1934 14.7128C20.2312 14.8038 20.2506 14.9014 20.2506 15C20.2506 15.0985 20.2312 15.1961 20.1934 15.2872C20.1557 15.3782 20.1003 15.4609 20.0306 15.5306Z",
|
|
1105
|
+
fill: props.color || "currentColor"
|
|
1106
|
+
}
|
|
1107
|
+
)
|
|
1108
|
+
}
|
|
1109
|
+
)
|
|
1110
|
+
);
|
|
1111
|
+
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1112
|
+
var ChartBar = React116.forwardRef(
|
|
1068
1113
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1069
1114
|
"svg",
|
|
1070
1115
|
{
|
|
@@ -1086,7 +1131,7 @@ var ChartBar = React113.forwardRef(
|
|
|
1086
1131
|
)
|
|
1087
1132
|
);
|
|
1088
1133
|
ChartBar.displayName = "ChartBar";
|
|
1089
|
-
var Chat =
|
|
1134
|
+
var Chat = React116.forwardRef(
|
|
1090
1135
|
({ size = 20, ...props }, ref) => {
|
|
1091
1136
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1092
1137
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1115,7 +1160,7 @@ var Chat = React113.forwardRef(
|
|
|
1115
1160
|
}
|
|
1116
1161
|
);
|
|
1117
1162
|
Chat.displayName = "Chat";
|
|
1118
|
-
var ChatsCircle =
|
|
1163
|
+
var ChatsCircle = React116.forwardRef(
|
|
1119
1164
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1120
1165
|
"svg",
|
|
1121
1166
|
{
|
|
@@ -1137,7 +1182,7 @@ var ChatsCircle = React113.forwardRef(
|
|
|
1137
1182
|
)
|
|
1138
1183
|
);
|
|
1139
1184
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1140
|
-
var Check =
|
|
1185
|
+
var Check = React116.forwardRef(
|
|
1141
1186
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1142
1187
|
"svg",
|
|
1143
1188
|
{
|
|
@@ -1159,7 +1204,7 @@ var Check = React113.forwardRef(
|
|
|
1159
1204
|
)
|
|
1160
1205
|
);
|
|
1161
1206
|
Check.displayName = "Check";
|
|
1162
|
-
var CheckSquareIcon =
|
|
1207
|
+
var CheckSquareIcon = React116.forwardRef(
|
|
1163
1208
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1164
1209
|
"svg",
|
|
1165
1210
|
{
|
|
@@ -1181,7 +1226,7 @@ var CheckSquareIcon = React113.forwardRef(
|
|
|
1181
1226
|
)
|
|
1182
1227
|
);
|
|
1183
1228
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1184
|
-
var Circle =
|
|
1229
|
+
var Circle = React116.forwardRef(
|
|
1185
1230
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1186
1231
|
"svg",
|
|
1187
1232
|
{
|
|
@@ -1203,7 +1248,7 @@ var Circle = React113.forwardRef(
|
|
|
1203
1248
|
)
|
|
1204
1249
|
);
|
|
1205
1250
|
Circle.displayName = "Circle";
|
|
1206
|
-
var ClipboardTextIcon =
|
|
1251
|
+
var ClipboardTextIcon = React116.forwardRef(
|
|
1207
1252
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1208
1253
|
"svg",
|
|
1209
1254
|
{
|
|
@@ -1225,7 +1270,7 @@ var ClipboardTextIcon = React113.forwardRef(
|
|
|
1225
1270
|
)
|
|
1226
1271
|
);
|
|
1227
1272
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1228
|
-
var Clock =
|
|
1273
|
+
var Clock = React116.forwardRef(
|
|
1229
1274
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1230
1275
|
"svg",
|
|
1231
1276
|
{
|
|
@@ -1247,7 +1292,7 @@ var Clock = React113.forwardRef(
|
|
|
1247
1292
|
)
|
|
1248
1293
|
);
|
|
1249
1294
|
Clock.displayName = "Clock";
|
|
1250
|
-
var CopySimpleIcon =
|
|
1295
|
+
var CopySimpleIcon = React116.forwardRef(
|
|
1251
1296
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1252
1297
|
"svg",
|
|
1253
1298
|
{
|
|
@@ -1269,7 +1314,7 @@ var CopySimpleIcon = React113.forwardRef(
|
|
|
1269
1314
|
)
|
|
1270
1315
|
);
|
|
1271
1316
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1272
|
-
var CreditCard =
|
|
1317
|
+
var CreditCard = React116.forwardRef(
|
|
1273
1318
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1274
1319
|
"svg",
|
|
1275
1320
|
{
|
|
@@ -1291,7 +1336,7 @@ var CreditCard = React113.forwardRef(
|
|
|
1291
1336
|
)
|
|
1292
1337
|
);
|
|
1293
1338
|
CreditCard.displayName = "CreditCard";
|
|
1294
|
-
var CurrencyCircleDollar =
|
|
1339
|
+
var CurrencyCircleDollar = React116__default.forwardRef(
|
|
1295
1340
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1296
1341
|
"svg",
|
|
1297
1342
|
{
|
|
@@ -1313,7 +1358,7 @@ var CurrencyCircleDollar = React113__default.forwardRef(
|
|
|
1313
1358
|
)
|
|
1314
1359
|
);
|
|
1315
1360
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1316
|
-
var DotsSixVerticalIcon =
|
|
1361
|
+
var DotsSixVerticalIcon = React116.forwardRef(
|
|
1317
1362
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1318
1363
|
"svg",
|
|
1319
1364
|
{
|
|
@@ -1335,7 +1380,7 @@ var DotsSixVerticalIcon = React113.forwardRef(
|
|
|
1335
1380
|
)
|
|
1336
1381
|
);
|
|
1337
1382
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1338
|
-
var DotsThree =
|
|
1383
|
+
var DotsThree = React116.forwardRef(
|
|
1339
1384
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1340
1385
|
"svg",
|
|
1341
1386
|
{
|
|
@@ -1357,7 +1402,7 @@ var DotsThree = React113.forwardRef(
|
|
|
1357
1402
|
)
|
|
1358
1403
|
);
|
|
1359
1404
|
DotsThree.displayName = "DotsThree";
|
|
1360
|
-
var DotsThreeVertical =
|
|
1405
|
+
var DotsThreeVertical = React116.forwardRef(
|
|
1361
1406
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1362
1407
|
"svg",
|
|
1363
1408
|
{
|
|
@@ -1379,7 +1424,7 @@ var DotsThreeVertical = React113.forwardRef(
|
|
|
1379
1424
|
)
|
|
1380
1425
|
);
|
|
1381
1426
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1382
|
-
var FacebookLogo =
|
|
1427
|
+
var FacebookLogo = React116.forwardRef(
|
|
1383
1428
|
({ size = 20, ...props }, ref) => {
|
|
1384
1429
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1385
1430
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1408,7 +1453,7 @@ var FacebookLogo = React113.forwardRef(
|
|
|
1408
1453
|
}
|
|
1409
1454
|
);
|
|
1410
1455
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1411
|
-
var FolderIcon =
|
|
1456
|
+
var FolderIcon = React116.forwardRef(
|
|
1412
1457
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1413
1458
|
"svg",
|
|
1414
1459
|
{
|
|
@@ -1430,7 +1475,29 @@ var FolderIcon = React113.forwardRef(
|
|
|
1430
1475
|
)
|
|
1431
1476
|
);
|
|
1432
1477
|
FolderIcon.displayName = "FolderIcon";
|
|
1433
|
-
var
|
|
1478
|
+
var FolderSimpleLockIcon = React116.forwardRef(
|
|
1479
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1480
|
+
"svg",
|
|
1481
|
+
{
|
|
1482
|
+
ref,
|
|
1483
|
+
width: size,
|
|
1484
|
+
height: size,
|
|
1485
|
+
viewBox: "0 0 24 24",
|
|
1486
|
+
fill: "none",
|
|
1487
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1488
|
+
...props,
|
|
1489
|
+
children: /* @__PURE__ */ jsx(
|
|
1490
|
+
"path",
|
|
1491
|
+
{
|
|
1492
|
+
d: "M21.75 8.25V9.75C21.75 9.94891 21.671 10.1397 21.5303 10.2803C21.3897 10.421 21.1989 10.5 21 10.5C20.8011 10.5 20.6103 10.421 20.4697 10.2803C20.329 10.1397 20.25 9.94891 20.25 9.75V8.25H12.2503C11.9259 8.2492 11.6103 8.14401 11.3503 7.95L8.74969 6H3.75V18.75H10.5C10.6989 18.75 10.8897 18.829 11.0303 18.9697C11.171 19.1103 11.25 19.3011 11.25 19.5C11.25 19.6989 11.171 19.8897 11.0303 20.0303C10.8897 20.171 10.6989 20.25 10.5 20.25H3.75C3.35218 20.25 2.97064 20.092 2.68934 19.8107C2.40804 19.5294 2.25 19.1478 2.25 18.75V6C2.25 5.60218 2.40804 5.22064 2.68934 4.93934C2.97064 4.65804 3.35218 4.5 3.75 4.5H8.74969C9.07411 4.5008 9.38967 4.60599 9.64969 4.8L12.2503 6.75H20.25C20.6478 6.75 21.0294 6.90804 21.3107 7.18934C21.592 7.47064 21.75 7.85218 21.75 8.25ZM21.75 15.75V19.5C21.75 19.6989 21.671 19.8897 21.5303 20.0303C21.3897 20.171 21.1989 20.25 21 20.25H14.25C14.0511 20.25 13.8603 20.171 13.7197 20.0303C13.579 19.8897 13.5 19.6989 13.5 19.5V15.75C13.5 15.5511 13.579 15.3603 13.7197 15.2197C13.8603 15.079 14.0511 15 14.25 15H15V14.625C15 13.9288 15.2766 13.2611 15.7688 12.7688C16.2611 12.2766 16.9288 12 17.625 12C18.3212 12 18.9889 12.2766 19.4812 12.7688C19.9734 13.2611 20.25 13.9288 20.25 14.625V15H21C21.1989 15 21.3897 15.079 21.5303 15.2197C21.671 15.3603 21.75 15.5511 21.75 15.75ZM16.5 15H18.75V14.625C18.75 14.3266 18.6315 14.0405 18.4205 13.8295C18.2095 13.6185 17.9234 13.5 17.625 13.5C17.3266 13.5 17.0405 13.6185 16.8295 13.8295C16.6185 14.0405 16.5 14.3266 16.5 14.625V15ZM20.25 16.5H15V18.75H20.25V16.5Z",
|
|
1493
|
+
fill: props.color || "currentColor"
|
|
1494
|
+
}
|
|
1495
|
+
)
|
|
1496
|
+
}
|
|
1497
|
+
)
|
|
1498
|
+
);
|
|
1499
|
+
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1500
|
+
var Gear = React116.forwardRef(
|
|
1434
1501
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1435
1502
|
"svg",
|
|
1436
1503
|
{
|
|
@@ -1452,7 +1519,7 @@ var Gear = React113.forwardRef(
|
|
|
1452
1519
|
)
|
|
1453
1520
|
);
|
|
1454
1521
|
Gear.displayName = "Gear";
|
|
1455
|
-
var GearSix =
|
|
1522
|
+
var GearSix = React116.forwardRef(
|
|
1456
1523
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1457
1524
|
"svg",
|
|
1458
1525
|
{
|
|
@@ -1474,7 +1541,7 @@ var GearSix = React113.forwardRef(
|
|
|
1474
1541
|
)
|
|
1475
1542
|
);
|
|
1476
1543
|
GearSix.displayName = "GearSix";
|
|
1477
|
-
var GitCommit =
|
|
1544
|
+
var GitCommit = React116.forwardRef(
|
|
1478
1545
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1479
1546
|
"svg",
|
|
1480
1547
|
{
|
|
@@ -1496,7 +1563,7 @@ var GitCommit = React113.forwardRef(
|
|
|
1496
1563
|
)
|
|
1497
1564
|
);
|
|
1498
1565
|
GitCommit.displayName = "GitCommit";
|
|
1499
|
-
var Headset =
|
|
1566
|
+
var Headset = React116.forwardRef(
|
|
1500
1567
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1501
1568
|
"svg",
|
|
1502
1569
|
{
|
|
@@ -1518,7 +1585,7 @@ var Headset = React113.forwardRef(
|
|
|
1518
1585
|
)
|
|
1519
1586
|
);
|
|
1520
1587
|
Headset.displayName = "Headset";
|
|
1521
|
-
var ImageIcon =
|
|
1588
|
+
var ImageIcon = React116.forwardRef(
|
|
1522
1589
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1523
1590
|
"svg",
|
|
1524
1591
|
{
|
|
@@ -1540,7 +1607,7 @@ var ImageIcon = React113.forwardRef(
|
|
|
1540
1607
|
)
|
|
1541
1608
|
);
|
|
1542
1609
|
ImageIcon.displayName = "ImageIcon";
|
|
1543
|
-
var InstagramLogo =
|
|
1610
|
+
var InstagramLogo = React116.forwardRef(
|
|
1544
1611
|
({ size = 20, ...props }, ref) => {
|
|
1545
1612
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1546
1613
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1569,7 +1636,7 @@ var InstagramLogo = React113.forwardRef(
|
|
|
1569
1636
|
}
|
|
1570
1637
|
);
|
|
1571
1638
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1572
|
-
var KeyIcon =
|
|
1639
|
+
var KeyIcon = React116.forwardRef(
|
|
1573
1640
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1574
1641
|
"svg",
|
|
1575
1642
|
{
|
|
@@ -1591,7 +1658,7 @@ var KeyIcon = React113.forwardRef(
|
|
|
1591
1658
|
)
|
|
1592
1659
|
);
|
|
1593
1660
|
KeyIcon.displayName = "KeyIcon";
|
|
1594
|
-
var LinkIcon =
|
|
1661
|
+
var LinkIcon = React116.forwardRef(
|
|
1595
1662
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1596
1663
|
"svg",
|
|
1597
1664
|
{
|
|
@@ -1613,7 +1680,7 @@ var LinkIcon = React113.forwardRef(
|
|
|
1613
1680
|
)
|
|
1614
1681
|
);
|
|
1615
1682
|
LinkIcon.displayName = "LinkIcon";
|
|
1616
|
-
var LinkSimple =
|
|
1683
|
+
var LinkSimple = React116.forwardRef(
|
|
1617
1684
|
({ size = 20, ...props }, ref) => {
|
|
1618
1685
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1619
1686
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1642,7 +1709,7 @@ var LinkSimple = React113.forwardRef(
|
|
|
1642
1709
|
}
|
|
1643
1710
|
);
|
|
1644
1711
|
LinkSimple.displayName = "LinkSimple";
|
|
1645
|
-
var LockSimple =
|
|
1712
|
+
var LockSimple = React116__default.forwardRef(
|
|
1646
1713
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1647
1714
|
"svg",
|
|
1648
1715
|
{
|
|
@@ -1664,7 +1731,7 @@ var LockSimple = React113__default.forwardRef(
|
|
|
1664
1731
|
)
|
|
1665
1732
|
);
|
|
1666
1733
|
LockSimple.displayName = "LockSimple";
|
|
1667
|
-
var Logo =
|
|
1734
|
+
var Logo = React116.forwardRef(
|
|
1668
1735
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
1669
1736
|
"svg",
|
|
1670
1737
|
{
|
|
@@ -2138,7 +2205,7 @@ var Logo = React113.forwardRef(
|
|
|
2138
2205
|
)
|
|
2139
2206
|
);
|
|
2140
2207
|
Logo.displayName = "Logo";
|
|
2141
|
-
var MagnifyingGlass =
|
|
2208
|
+
var MagnifyingGlass = React116.forwardRef(
|
|
2142
2209
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2143
2210
|
"svg",
|
|
2144
2211
|
{
|
|
@@ -2160,7 +2227,7 @@ var MagnifyingGlass = React113.forwardRef(
|
|
|
2160
2227
|
)
|
|
2161
2228
|
);
|
|
2162
2229
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2163
|
-
var MapPin =
|
|
2230
|
+
var MapPin = React116.forwardRef(
|
|
2164
2231
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2165
2232
|
"svg",
|
|
2166
2233
|
{
|
|
@@ -2182,7 +2249,7 @@ var MapPin = React113.forwardRef(
|
|
|
2182
2249
|
)
|
|
2183
2250
|
);
|
|
2184
2251
|
MapPin.displayName = "MapPin";
|
|
2185
|
-
var Microphone =
|
|
2252
|
+
var Microphone = React116.forwardRef(
|
|
2186
2253
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2187
2254
|
"svg",
|
|
2188
2255
|
{
|
|
@@ -2204,7 +2271,7 @@ var Microphone = React113.forwardRef(
|
|
|
2204
2271
|
)
|
|
2205
2272
|
);
|
|
2206
2273
|
Microphone.displayName = "Microphone";
|
|
2207
|
-
var Minus =
|
|
2274
|
+
var Minus = React116.forwardRef(
|
|
2208
2275
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2209
2276
|
"svg",
|
|
2210
2277
|
{
|
|
@@ -2226,7 +2293,7 @@ var Minus = React113.forwardRef(
|
|
|
2226
2293
|
)
|
|
2227
2294
|
);
|
|
2228
2295
|
Minus.displayName = "Minus";
|
|
2229
|
-
var MinusCircleIcon =
|
|
2296
|
+
var MinusCircleIcon = React116.forwardRef(
|
|
2230
2297
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2231
2298
|
"svg",
|
|
2232
2299
|
{
|
|
@@ -2248,7 +2315,7 @@ var MinusCircleIcon = React113.forwardRef(
|
|
|
2248
2315
|
)
|
|
2249
2316
|
);
|
|
2250
2317
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2251
|
-
var PackageIcon =
|
|
2318
|
+
var PackageIcon = React116.forwardRef(
|
|
2252
2319
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2253
2320
|
"svg",
|
|
2254
2321
|
{
|
|
@@ -2270,7 +2337,7 @@ var PackageIcon = React113.forwardRef(
|
|
|
2270
2337
|
)
|
|
2271
2338
|
);
|
|
2272
2339
|
PackageIcon.displayName = "PackageIcon";
|
|
2273
|
-
var Paperclip =
|
|
2340
|
+
var Paperclip = React116.forwardRef(
|
|
2274
2341
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2275
2342
|
"svg",
|
|
2276
2343
|
{
|
|
@@ -2292,7 +2359,7 @@ var Paperclip = React113.forwardRef(
|
|
|
2292
2359
|
)
|
|
2293
2360
|
);
|
|
2294
2361
|
Paperclip.displayName = "Paperclip";
|
|
2295
|
-
var PaperPlane =
|
|
2362
|
+
var PaperPlane = React116.forwardRef(
|
|
2296
2363
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2297
2364
|
"svg",
|
|
2298
2365
|
{
|
|
@@ -2314,7 +2381,7 @@ var PaperPlane = React113.forwardRef(
|
|
|
2314
2381
|
)
|
|
2315
2382
|
);
|
|
2316
2383
|
PaperPlane.displayName = "PaperPlane";
|
|
2317
|
-
var PaperPlaneTilt =
|
|
2384
|
+
var PaperPlaneTilt = React116.forwardRef(
|
|
2318
2385
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2319
2386
|
"svg",
|
|
2320
2387
|
{
|
|
@@ -2336,7 +2403,7 @@ var PaperPlaneTilt = React113.forwardRef(
|
|
|
2336
2403
|
)
|
|
2337
2404
|
);
|
|
2338
2405
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2339
|
-
var PencilSimple =
|
|
2406
|
+
var PencilSimple = React116.forwardRef(
|
|
2340
2407
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2341
2408
|
"svg",
|
|
2342
2409
|
{
|
|
@@ -2358,7 +2425,7 @@ var PencilSimple = React113.forwardRef(
|
|
|
2358
2425
|
)
|
|
2359
2426
|
);
|
|
2360
2427
|
PencilSimple.displayName = "PencilSimple";
|
|
2361
|
-
var PlugsRegular =
|
|
2428
|
+
var PlugsRegular = React116.forwardRef(
|
|
2362
2429
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2363
2430
|
"svg",
|
|
2364
2431
|
{
|
|
@@ -2380,7 +2447,7 @@ var PlugsRegular = React113.forwardRef(
|
|
|
2380
2447
|
)
|
|
2381
2448
|
);
|
|
2382
2449
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2383
|
-
var ShoppingCartIcon =
|
|
2450
|
+
var ShoppingCartIcon = React116.forwardRef(
|
|
2384
2451
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2385
2452
|
"svg",
|
|
2386
2453
|
{
|
|
@@ -2402,7 +2469,7 @@ var ShoppingCartIcon = React113.forwardRef(
|
|
|
2402
2469
|
)
|
|
2403
2470
|
);
|
|
2404
2471
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2405
|
-
var Plus =
|
|
2472
|
+
var Plus = React116.forwardRef(
|
|
2406
2473
|
({ size = 20, ...props }, ref) => {
|
|
2407
2474
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2408
2475
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2431,7 +2498,7 @@ var Plus = React113.forwardRef(
|
|
|
2431
2498
|
}
|
|
2432
2499
|
);
|
|
2433
2500
|
Plus.displayName = "Plus";
|
|
2434
|
-
var RecordIcon =
|
|
2501
|
+
var RecordIcon = React116.forwardRef(
|
|
2435
2502
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2436
2503
|
"svg",
|
|
2437
2504
|
{
|
|
@@ -2453,7 +2520,7 @@ var RecordIcon = React113.forwardRef(
|
|
|
2453
2520
|
)
|
|
2454
2521
|
);
|
|
2455
2522
|
RecordIcon.displayName = "RecordIcon";
|
|
2456
|
-
var SidebarSimple =
|
|
2523
|
+
var SidebarSimple = React116.forwardRef(
|
|
2457
2524
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2458
2525
|
"svg",
|
|
2459
2526
|
{
|
|
@@ -2475,7 +2542,7 @@ var SidebarSimple = React113.forwardRef(
|
|
|
2475
2542
|
)
|
|
2476
2543
|
);
|
|
2477
2544
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2478
|
-
var SignOut =
|
|
2545
|
+
var SignOut = React116.forwardRef(
|
|
2479
2546
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2480
2547
|
"svg",
|
|
2481
2548
|
{
|
|
@@ -2497,7 +2564,7 @@ var SignOut = React113.forwardRef(
|
|
|
2497
2564
|
)
|
|
2498
2565
|
);
|
|
2499
2566
|
SignOut.displayName = "SignOut";
|
|
2500
|
-
var Storefront =
|
|
2567
|
+
var Storefront = React116.forwardRef(
|
|
2501
2568
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2502
2569
|
"svg",
|
|
2503
2570
|
{
|
|
@@ -2519,7 +2586,7 @@ var Storefront = React113.forwardRef(
|
|
|
2519
2586
|
)
|
|
2520
2587
|
);
|
|
2521
2588
|
Storefront.displayName = "Storefront";
|
|
2522
|
-
var Tag =
|
|
2589
|
+
var Tag = React116.forwardRef(
|
|
2523
2590
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2524
2591
|
"svg",
|
|
2525
2592
|
{
|
|
@@ -2541,7 +2608,7 @@ var Tag = React113.forwardRef(
|
|
|
2541
2608
|
)
|
|
2542
2609
|
);
|
|
2543
2610
|
Tag.displayName = "Tag";
|
|
2544
|
-
var Ticket =
|
|
2611
|
+
var Ticket = React116.forwardRef(
|
|
2545
2612
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2546
2613
|
"svg",
|
|
2547
2614
|
{
|
|
@@ -2563,7 +2630,7 @@ var Ticket = React113.forwardRef(
|
|
|
2563
2630
|
)
|
|
2564
2631
|
);
|
|
2565
2632
|
Ticket.displayName = "Ticket";
|
|
2566
|
-
var Trash =
|
|
2633
|
+
var Trash = React116.forwardRef(
|
|
2567
2634
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2568
2635
|
"svg",
|
|
2569
2636
|
{
|
|
@@ -2585,7 +2652,7 @@ var Trash = React113.forwardRef(
|
|
|
2585
2652
|
)
|
|
2586
2653
|
);
|
|
2587
2654
|
Trash.displayName = "Trash";
|
|
2588
|
-
var UserCircle =
|
|
2655
|
+
var UserCircle = React116.forwardRef(
|
|
2589
2656
|
({ size = 24, ...props }, ref) => {
|
|
2590
2657
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2591
2658
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2614,7 +2681,7 @@ var UserCircle = React113.forwardRef(
|
|
|
2614
2681
|
}
|
|
2615
2682
|
);
|
|
2616
2683
|
UserCircle.displayName = "UserCircle";
|
|
2617
|
-
var UserIcon =
|
|
2684
|
+
var UserIcon = React116.forwardRef(
|
|
2618
2685
|
({ size = 24, ...props }, ref) => {
|
|
2619
2686
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2620
2687
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2643,7 +2710,7 @@ var UserIcon = React113.forwardRef(
|
|
|
2643
2710
|
}
|
|
2644
2711
|
);
|
|
2645
2712
|
UserIcon.displayName = "UserIcon";
|
|
2646
|
-
var Users =
|
|
2713
|
+
var Users = React116.forwardRef(
|
|
2647
2714
|
({ size = 20, ...props }, ref) => {
|
|
2648
2715
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2649
2716
|
props,
|
|
@@ -2672,7 +2739,7 @@ var Users = React113.forwardRef(
|
|
|
2672
2739
|
}
|
|
2673
2740
|
);
|
|
2674
2741
|
Users.displayName = "Users";
|
|
2675
|
-
var VideoCamera =
|
|
2742
|
+
var VideoCamera = React116.forwardRef(
|
|
2676
2743
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2677
2744
|
"svg",
|
|
2678
2745
|
{
|
|
@@ -2694,7 +2761,7 @@ var VideoCamera = React113.forwardRef(
|
|
|
2694
2761
|
)
|
|
2695
2762
|
);
|
|
2696
2763
|
VideoCamera.displayName = "VideoCamera";
|
|
2697
|
-
var WhatsAppLogo =
|
|
2764
|
+
var WhatsAppLogo = React116.forwardRef(
|
|
2698
2765
|
({ size = 20, ...props }, ref) => {
|
|
2699
2766
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2700
2767
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2723,7 +2790,7 @@ var WhatsAppLogo = React113.forwardRef(
|
|
|
2723
2790
|
}
|
|
2724
2791
|
);
|
|
2725
2792
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2726
|
-
var WarningOctagon =
|
|
2793
|
+
var WarningOctagon = React116.forwardRef(
|
|
2727
2794
|
({ size = 20, ...props }, ref) => {
|
|
2728
2795
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2729
2796
|
props,
|
|
@@ -2752,7 +2819,7 @@ var WarningOctagon = React113.forwardRef(
|
|
|
2752
2819
|
}
|
|
2753
2820
|
);
|
|
2754
2821
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2755
|
-
var WarningTriangle =
|
|
2822
|
+
var WarningTriangle = React116.forwardRef(
|
|
2756
2823
|
({ size = 20, ...props }, ref) => {
|
|
2757
2824
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2758
2825
|
props,
|
|
@@ -2781,7 +2848,7 @@ var WarningTriangle = React113.forwardRef(
|
|
|
2781
2848
|
}
|
|
2782
2849
|
);
|
|
2783
2850
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2784
|
-
var Waveform =
|
|
2851
|
+
var Waveform = React116.forwardRef(
|
|
2785
2852
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2786
2853
|
"svg",
|
|
2787
2854
|
{
|
|
@@ -2803,7 +2870,7 @@ var Waveform = React113.forwardRef(
|
|
|
2803
2870
|
)
|
|
2804
2871
|
);
|
|
2805
2872
|
Waveform.displayName = "Waveform";
|
|
2806
|
-
var WrenchIcon =
|
|
2873
|
+
var WrenchIcon = React116.forwardRef(
|
|
2807
2874
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2808
2875
|
"svg",
|
|
2809
2876
|
{
|
|
@@ -2825,7 +2892,7 @@ var WrenchIcon = React113.forwardRef(
|
|
|
2825
2892
|
)
|
|
2826
2893
|
);
|
|
2827
2894
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2828
|
-
var XIcon =
|
|
2895
|
+
var XIcon = React116.forwardRef(
|
|
2829
2896
|
({ size = 24, ...props }, ref) => {
|
|
2830
2897
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2831
2898
|
props,
|
|
@@ -2862,7 +2929,7 @@ var aep_exports = {};
|
|
|
2862
2929
|
__export(aep_exports, {
|
|
2863
2930
|
AEP: () => AEP
|
|
2864
2931
|
});
|
|
2865
|
-
var AEP =
|
|
2932
|
+
var AEP = React116.forwardRef(
|
|
2866
2933
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2867
2934
|
"svg",
|
|
2868
2935
|
{
|
|
@@ -2910,7 +2977,7 @@ var ai_exports = {};
|
|
|
2910
2977
|
__export(ai_exports, {
|
|
2911
2978
|
AI: () => AI
|
|
2912
2979
|
});
|
|
2913
|
-
var AI =
|
|
2980
|
+
var AI = React116.forwardRef(
|
|
2914
2981
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2915
2982
|
"svg",
|
|
2916
2983
|
{
|
|
@@ -2958,7 +3025,7 @@ var avi_exports = {};
|
|
|
2958
3025
|
__export(avi_exports, {
|
|
2959
3026
|
AVI: () => AVI
|
|
2960
3027
|
});
|
|
2961
|
-
var AVI =
|
|
3028
|
+
var AVI = React116.forwardRef(
|
|
2962
3029
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2963
3030
|
"svg",
|
|
2964
3031
|
{
|
|
@@ -3006,7 +3073,7 @@ var blend_exports = {};
|
|
|
3006
3073
|
__export(blend_exports, {
|
|
3007
3074
|
Blend: () => Blend
|
|
3008
3075
|
});
|
|
3009
|
-
var Blend =
|
|
3076
|
+
var Blend = React116.forwardRef(
|
|
3010
3077
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3011
3078
|
"svg",
|
|
3012
3079
|
{
|
|
@@ -3054,7 +3121,7 @@ var c4d_exports = {};
|
|
|
3054
3121
|
__export(c4d_exports, {
|
|
3055
3122
|
C4D: () => C4D
|
|
3056
3123
|
});
|
|
3057
|
-
var C4D =
|
|
3124
|
+
var C4D = React116.forwardRef(
|
|
3058
3125
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3059
3126
|
"svg",
|
|
3060
3127
|
{
|
|
@@ -3102,7 +3169,7 @@ var cdr_exports = {};
|
|
|
3102
3169
|
__export(cdr_exports, {
|
|
3103
3170
|
CDR: () => CDR
|
|
3104
3171
|
});
|
|
3105
|
-
var CDR =
|
|
3172
|
+
var CDR = React116.forwardRef(
|
|
3106
3173
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3107
3174
|
"svg",
|
|
3108
3175
|
{
|
|
@@ -3150,7 +3217,7 @@ var css_exports = {};
|
|
|
3150
3217
|
__export(css_exports, {
|
|
3151
3218
|
CSS: () => CSS
|
|
3152
3219
|
});
|
|
3153
|
-
var CSS =
|
|
3220
|
+
var CSS = React116.forwardRef(
|
|
3154
3221
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3155
3222
|
"svg",
|
|
3156
3223
|
{
|
|
@@ -3198,7 +3265,7 @@ var csv_exports = {};
|
|
|
3198
3265
|
__export(csv_exports, {
|
|
3199
3266
|
CSV: () => CSV
|
|
3200
3267
|
});
|
|
3201
|
-
var CSV =
|
|
3268
|
+
var CSV = React116.forwardRef(
|
|
3202
3269
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3203
3270
|
"svg",
|
|
3204
3271
|
{
|
|
@@ -3246,7 +3313,7 @@ var dmg_exports = {};
|
|
|
3246
3313
|
__export(dmg_exports, {
|
|
3247
3314
|
DMG: () => DMG
|
|
3248
3315
|
});
|
|
3249
|
-
var DMG =
|
|
3316
|
+
var DMG = React116.forwardRef(
|
|
3250
3317
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3251
3318
|
"svg",
|
|
3252
3319
|
{
|
|
@@ -3294,7 +3361,7 @@ var doc_exports = {};
|
|
|
3294
3361
|
__export(doc_exports, {
|
|
3295
3362
|
DOC: () => DOC
|
|
3296
3363
|
});
|
|
3297
|
-
var DOC =
|
|
3364
|
+
var DOC = React116.forwardRef(
|
|
3298
3365
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3299
3366
|
"svg",
|
|
3300
3367
|
{
|
|
@@ -3342,7 +3409,7 @@ var exe_exports = {};
|
|
|
3342
3409
|
__export(exe_exports, {
|
|
3343
3410
|
EXE: () => EXE
|
|
3344
3411
|
});
|
|
3345
|
-
var EXE =
|
|
3412
|
+
var EXE = React116.forwardRef(
|
|
3346
3413
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3347
3414
|
"svg",
|
|
3348
3415
|
{
|
|
@@ -3390,7 +3457,7 @@ var fig_exports = {};
|
|
|
3390
3457
|
__export(fig_exports, {
|
|
3391
3458
|
Fig: () => Fig
|
|
3392
3459
|
});
|
|
3393
|
-
var Fig =
|
|
3460
|
+
var Fig = React116.forwardRef(
|
|
3394
3461
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3395
3462
|
"svg",
|
|
3396
3463
|
{
|
|
@@ -3438,7 +3505,7 @@ var gif_exports = {};
|
|
|
3438
3505
|
__export(gif_exports, {
|
|
3439
3506
|
GIF: () => GIF
|
|
3440
3507
|
});
|
|
3441
|
-
var GIF =
|
|
3508
|
+
var GIF = React116.forwardRef(
|
|
3442
3509
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3443
3510
|
"svg",
|
|
3444
3511
|
{
|
|
@@ -3486,7 +3553,7 @@ var html_exports = {};
|
|
|
3486
3553
|
__export(html_exports, {
|
|
3487
3554
|
HTML: () => HTML
|
|
3488
3555
|
});
|
|
3489
|
-
var HTML =
|
|
3556
|
+
var HTML = React116.forwardRef(
|
|
3490
3557
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3491
3558
|
"svg",
|
|
3492
3559
|
{
|
|
@@ -3534,7 +3601,7 @@ var ico_exports = {};
|
|
|
3534
3601
|
__export(ico_exports, {
|
|
3535
3602
|
ICO: () => ICO
|
|
3536
3603
|
});
|
|
3537
|
-
var ICO =
|
|
3604
|
+
var ICO = React116.forwardRef(
|
|
3538
3605
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3539
3606
|
"svg",
|
|
3540
3607
|
{
|
|
@@ -3582,7 +3649,7 @@ var java_exports = {};
|
|
|
3582
3649
|
__export(java_exports, {
|
|
3583
3650
|
Java: () => Java
|
|
3584
3651
|
});
|
|
3585
|
-
var Java =
|
|
3652
|
+
var Java = React116.forwardRef(
|
|
3586
3653
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3587
3654
|
"svg",
|
|
3588
3655
|
{
|
|
@@ -3630,7 +3697,7 @@ var jpeg_exports = {};
|
|
|
3630
3697
|
__export(jpeg_exports, {
|
|
3631
3698
|
JPEG: () => JPEG
|
|
3632
3699
|
});
|
|
3633
|
-
var JPEG =
|
|
3700
|
+
var JPEG = React116.forwardRef(
|
|
3634
3701
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3635
3702
|
"svg",
|
|
3636
3703
|
{
|
|
@@ -3678,7 +3745,7 @@ var jpg_exports = {};
|
|
|
3678
3745
|
__export(jpg_exports, {
|
|
3679
3746
|
JPG: () => JPG
|
|
3680
3747
|
});
|
|
3681
|
-
var JPG =
|
|
3748
|
+
var JPG = React116.forwardRef(
|
|
3682
3749
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3683
3750
|
"svg",
|
|
3684
3751
|
{
|
|
@@ -3726,7 +3793,7 @@ var js_exports = {};
|
|
|
3726
3793
|
__export(js_exports, {
|
|
3727
3794
|
JS: () => JS
|
|
3728
3795
|
});
|
|
3729
|
-
var JS =
|
|
3796
|
+
var JS = React116.forwardRef(
|
|
3730
3797
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3731
3798
|
"svg",
|
|
3732
3799
|
{
|
|
@@ -3774,7 +3841,7 @@ var json_exports = {};
|
|
|
3774
3841
|
__export(json_exports, {
|
|
3775
3842
|
JSON: () => JSON
|
|
3776
3843
|
});
|
|
3777
|
-
var JSON =
|
|
3844
|
+
var JSON = React116.forwardRef(
|
|
3778
3845
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3779
3846
|
"svg",
|
|
3780
3847
|
{
|
|
@@ -3822,7 +3889,7 @@ var mov_exports = {};
|
|
|
3822
3889
|
__export(mov_exports, {
|
|
3823
3890
|
MOV: () => MOV
|
|
3824
3891
|
});
|
|
3825
|
-
var MOV =
|
|
3892
|
+
var MOV = React116.forwardRef(
|
|
3826
3893
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3827
3894
|
"svg",
|
|
3828
3895
|
{
|
|
@@ -3870,7 +3937,7 @@ var mp3_exports = {};
|
|
|
3870
3937
|
__export(mp3_exports, {
|
|
3871
3938
|
MP3: () => MP3
|
|
3872
3939
|
});
|
|
3873
|
-
var MP3 =
|
|
3940
|
+
var MP3 = React116.forwardRef(
|
|
3874
3941
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3875
3942
|
"svg",
|
|
3876
3943
|
{
|
|
@@ -3918,7 +3985,7 @@ var mp4_exports = {};
|
|
|
3918
3985
|
__export(mp4_exports, {
|
|
3919
3986
|
MP4: () => MP4
|
|
3920
3987
|
});
|
|
3921
|
-
var MP4 =
|
|
3988
|
+
var MP4 = React116.forwardRef(
|
|
3922
3989
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3923
3990
|
"svg",
|
|
3924
3991
|
{
|
|
@@ -3966,7 +4033,7 @@ var mpg_exports = {};
|
|
|
3966
4033
|
__export(mpg_exports, {
|
|
3967
4034
|
MPG: () => MPG
|
|
3968
4035
|
});
|
|
3969
|
-
var MPG =
|
|
4036
|
+
var MPG = React116.forwardRef(
|
|
3970
4037
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3971
4038
|
"svg",
|
|
3972
4039
|
{
|
|
@@ -4014,7 +4081,7 @@ var pdf_exports = {};
|
|
|
4014
4081
|
__export(pdf_exports, {
|
|
4015
4082
|
PDF: () => PDF
|
|
4016
4083
|
});
|
|
4017
|
-
var PDF =
|
|
4084
|
+
var PDF = React116.forwardRef(
|
|
4018
4085
|
({ ...props }, ref) => {
|
|
4019
4086
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4020
4087
|
return /* @__PURE__ */ jsxs(
|
|
@@ -4067,7 +4134,7 @@ var png_exports = {};
|
|
|
4067
4134
|
__export(png_exports, {
|
|
4068
4135
|
PNG: () => PNG
|
|
4069
4136
|
});
|
|
4070
|
-
var PNG =
|
|
4137
|
+
var PNG = React116.forwardRef(
|
|
4071
4138
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4072
4139
|
"svg",
|
|
4073
4140
|
{
|
|
@@ -4115,7 +4182,7 @@ var ppt_exports = {};
|
|
|
4115
4182
|
__export(ppt_exports, {
|
|
4116
4183
|
PPT: () => PPT
|
|
4117
4184
|
});
|
|
4118
|
-
var PPT =
|
|
4185
|
+
var PPT = React116.forwardRef(
|
|
4119
4186
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4120
4187
|
"svg",
|
|
4121
4188
|
{
|
|
@@ -4163,7 +4230,7 @@ var psd_exports = {};
|
|
|
4163
4230
|
__export(psd_exports, {
|
|
4164
4231
|
PSD: () => PSD
|
|
4165
4232
|
});
|
|
4166
|
-
var PSD =
|
|
4233
|
+
var PSD = React116.forwardRef(
|
|
4167
4234
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4168
4235
|
"svg",
|
|
4169
4236
|
{
|
|
@@ -4211,7 +4278,7 @@ var rar_exports = {};
|
|
|
4211
4278
|
__export(rar_exports, {
|
|
4212
4279
|
Rar: () => Rar
|
|
4213
4280
|
});
|
|
4214
|
-
var Rar =
|
|
4281
|
+
var Rar = React116.forwardRef(
|
|
4215
4282
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4216
4283
|
"svg",
|
|
4217
4284
|
{
|
|
@@ -4259,7 +4326,7 @@ var sketch_exports = {};
|
|
|
4259
4326
|
__export(sketch_exports, {
|
|
4260
4327
|
Sketch: () => Sketch
|
|
4261
4328
|
});
|
|
4262
|
-
var Sketch =
|
|
4329
|
+
var Sketch = React116.forwardRef(
|
|
4263
4330
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4264
4331
|
"svg",
|
|
4265
4332
|
{
|
|
@@ -4307,7 +4374,7 @@ var svg_exports = {};
|
|
|
4307
4374
|
__export(svg_exports, {
|
|
4308
4375
|
SVG: () => SVG
|
|
4309
4376
|
});
|
|
4310
|
-
var SVG =
|
|
4377
|
+
var SVG = React116.forwardRef(
|
|
4311
4378
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4312
4379
|
"svg",
|
|
4313
4380
|
{
|
|
@@ -4355,7 +4422,7 @@ var tiff_exports = {};
|
|
|
4355
4422
|
__export(tiff_exports, {
|
|
4356
4423
|
TIFF: () => TIFF
|
|
4357
4424
|
});
|
|
4358
|
-
var TIFF =
|
|
4425
|
+
var TIFF = React116.forwardRef(
|
|
4359
4426
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4360
4427
|
"svg",
|
|
4361
4428
|
{
|
|
@@ -4403,7 +4470,7 @@ var txt_exports = {};
|
|
|
4403
4470
|
__export(txt_exports, {
|
|
4404
4471
|
TXT: () => TXT
|
|
4405
4472
|
});
|
|
4406
|
-
var TXT =
|
|
4473
|
+
var TXT = React116.forwardRef(
|
|
4407
4474
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4408
4475
|
"svg",
|
|
4409
4476
|
{
|
|
@@ -4451,7 +4518,7 @@ var wav_exports = {};
|
|
|
4451
4518
|
__export(wav_exports, {
|
|
4452
4519
|
WAV: () => WAV
|
|
4453
4520
|
});
|
|
4454
|
-
var WAV =
|
|
4521
|
+
var WAV = React116.forwardRef(
|
|
4455
4522
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4456
4523
|
"svg",
|
|
4457
4524
|
{
|
|
@@ -4499,7 +4566,7 @@ var webp_exports = {};
|
|
|
4499
4566
|
__export(webp_exports, {
|
|
4500
4567
|
WEBP: () => WEBP
|
|
4501
4568
|
});
|
|
4502
|
-
var WEBP =
|
|
4569
|
+
var WEBP = React116.forwardRef(
|
|
4503
4570
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4504
4571
|
"svg",
|
|
4505
4572
|
{
|
|
@@ -4547,7 +4614,7 @@ var xls_exports = {};
|
|
|
4547
4614
|
__export(xls_exports, {
|
|
4548
4615
|
XLS: () => XLS
|
|
4549
4616
|
});
|
|
4550
|
-
var XLS =
|
|
4617
|
+
var XLS = React116.forwardRef(
|
|
4551
4618
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4552
4619
|
"svg",
|
|
4553
4620
|
{
|
|
@@ -4595,7 +4662,7 @@ var zip_exports = {};
|
|
|
4595
4662
|
__export(zip_exports, {
|
|
4596
4663
|
Zip: () => Zip
|
|
4597
4664
|
});
|
|
4598
|
-
var Zip =
|
|
4665
|
+
var Zip = React116.forwardRef(
|
|
4599
4666
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4600
4667
|
"svg",
|
|
4601
4668
|
{
|
|
@@ -4637,15 +4704,15 @@ var Zip = React113.forwardRef(
|
|
|
4637
4704
|
)
|
|
4638
4705
|
);
|
|
4639
4706
|
Zip.displayName = "Zip";
|
|
4640
|
-
var CarouselContext =
|
|
4707
|
+
var CarouselContext = React116.createContext(null);
|
|
4641
4708
|
function useCarousel() {
|
|
4642
|
-
const context =
|
|
4709
|
+
const context = React116.useContext(CarouselContext);
|
|
4643
4710
|
if (!context) {
|
|
4644
4711
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4645
4712
|
}
|
|
4646
4713
|
return context;
|
|
4647
4714
|
}
|
|
4648
|
-
var Carousel =
|
|
4715
|
+
var Carousel = React116.forwardRef(
|
|
4649
4716
|
({
|
|
4650
4717
|
orientation = "horizontal",
|
|
4651
4718
|
opts,
|
|
@@ -4662,10 +4729,10 @@ var Carousel = React113.forwardRef(
|
|
|
4662
4729
|
},
|
|
4663
4730
|
plugins
|
|
4664
4731
|
);
|
|
4665
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4666
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4667
|
-
const [slideCount, setSlideCount] =
|
|
4668
|
-
const onSelect =
|
|
4732
|
+
const [canScrollPrev, setCanScrollPrev] = React116.useState(false);
|
|
4733
|
+
const [canScrollNext, setCanScrollNext] = React116.useState(false);
|
|
4734
|
+
const [slideCount, setSlideCount] = React116.useState(0);
|
|
4735
|
+
const onSelect = React116.useCallback((api2) => {
|
|
4669
4736
|
if (!api2) {
|
|
4670
4737
|
return;
|
|
4671
4738
|
}
|
|
@@ -4673,13 +4740,13 @@ var Carousel = React113.forwardRef(
|
|
|
4673
4740
|
setCanScrollNext(api2.canScrollNext());
|
|
4674
4741
|
setSlideCount(api2.scrollSnapList().length);
|
|
4675
4742
|
}, []);
|
|
4676
|
-
const scrollPrev =
|
|
4743
|
+
const scrollPrev = React116.useCallback(() => {
|
|
4677
4744
|
api?.scrollPrev();
|
|
4678
4745
|
}, [api]);
|
|
4679
|
-
const scrollNext =
|
|
4746
|
+
const scrollNext = React116.useCallback(() => {
|
|
4680
4747
|
api?.scrollNext();
|
|
4681
4748
|
}, [api]);
|
|
4682
|
-
const handleKeyDown =
|
|
4749
|
+
const handleKeyDown = React116.useCallback(
|
|
4683
4750
|
(event) => {
|
|
4684
4751
|
if (event.key === "ArrowLeft") {
|
|
4685
4752
|
event.preventDefault();
|
|
@@ -4691,13 +4758,13 @@ var Carousel = React113.forwardRef(
|
|
|
4691
4758
|
},
|
|
4692
4759
|
[scrollPrev, scrollNext]
|
|
4693
4760
|
);
|
|
4694
|
-
|
|
4761
|
+
React116.useEffect(() => {
|
|
4695
4762
|
if (!api || !setApi) {
|
|
4696
4763
|
return;
|
|
4697
4764
|
}
|
|
4698
4765
|
setApi(api);
|
|
4699
4766
|
}, [api, setApi]);
|
|
4700
|
-
|
|
4767
|
+
React116.useEffect(() => {
|
|
4701
4768
|
if (!api) {
|
|
4702
4769
|
return;
|
|
4703
4770
|
}
|
|
@@ -4742,7 +4809,7 @@ var Carousel = React113.forwardRef(
|
|
|
4742
4809
|
}
|
|
4743
4810
|
);
|
|
4744
4811
|
Carousel.displayName = "Carousel";
|
|
4745
|
-
var CarouselContent =
|
|
4812
|
+
var CarouselContent = React116.forwardRef(({ className, ...props }, ref) => {
|
|
4746
4813
|
const { carouselRef, orientation } = useCarousel();
|
|
4747
4814
|
return /* @__PURE__ */ jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
4748
4815
|
"div",
|
|
@@ -4758,7 +4825,7 @@ var CarouselContent = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
4758
4825
|
) });
|
|
4759
4826
|
});
|
|
4760
4827
|
CarouselContent.displayName = "CarouselContent";
|
|
4761
|
-
var CarouselItem =
|
|
4828
|
+
var CarouselItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
4762
4829
|
const { orientation } = useCarousel();
|
|
4763
4830
|
return /* @__PURE__ */ jsx(
|
|
4764
4831
|
"div",
|
|
@@ -4776,7 +4843,7 @@ var CarouselItem = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
4776
4843
|
);
|
|
4777
4844
|
});
|
|
4778
4845
|
CarouselItem.displayName = "CarouselItem";
|
|
4779
|
-
var CarouselPrevious =
|
|
4846
|
+
var CarouselPrevious = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4780
4847
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4781
4848
|
return /* @__PURE__ */ jsx(
|
|
4782
4849
|
Button,
|
|
@@ -4798,7 +4865,7 @@ var CarouselPrevious = React113.forwardRef(({ className, variant = "outline", si
|
|
|
4798
4865
|
);
|
|
4799
4866
|
});
|
|
4800
4867
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4801
|
-
var CarouselNext =
|
|
4868
|
+
var CarouselNext = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4802
4869
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4803
4870
|
return /* @__PURE__ */ jsx(
|
|
4804
4871
|
Button,
|
|
@@ -4824,7 +4891,7 @@ var Dialog = DialogPrimitive.Root;
|
|
|
4824
4891
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4825
4892
|
var DialogPortal = DialogPrimitive.Portal;
|
|
4826
4893
|
var DialogClose = DialogPrimitive.Close;
|
|
4827
|
-
var DialogOverlay =
|
|
4894
|
+
var DialogOverlay = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4828
4895
|
DialogPrimitive.Overlay,
|
|
4829
4896
|
{
|
|
4830
4897
|
ref,
|
|
@@ -4841,7 +4908,7 @@ var DialogOverlay = React113.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
4841
4908
|
}
|
|
4842
4909
|
));
|
|
4843
4910
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4844
|
-
var DialogContent =
|
|
4911
|
+
var DialogContent = React116.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
|
|
4845
4912
|
/* @__PURE__ */ jsx(DialogOverlay, {}),
|
|
4846
4913
|
/* @__PURE__ */ jsxs(
|
|
4847
4914
|
DialogPrimitive.Content,
|
|
@@ -4893,7 +4960,7 @@ var DialogFooter = ({
|
|
|
4893
4960
|
}
|
|
4894
4961
|
);
|
|
4895
4962
|
DialogFooter.displayName = "DialogFooter";
|
|
4896
|
-
var DialogTitle =
|
|
4963
|
+
var DialogTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4897
4964
|
DialogPrimitive.Title,
|
|
4898
4965
|
{
|
|
4899
4966
|
ref,
|
|
@@ -4905,7 +4972,7 @@ var DialogTitle = React113.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
4905
4972
|
}
|
|
4906
4973
|
));
|
|
4907
4974
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4908
|
-
var DialogDescription =
|
|
4975
|
+
var DialogDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4909
4976
|
DialogPrimitive.Description,
|
|
4910
4977
|
{
|
|
4911
4978
|
ref,
|
|
@@ -4918,7 +4985,7 @@ var Sheet = DialogPrimitive.Root;
|
|
|
4918
4985
|
var SheetTrigger = DialogPrimitive.Trigger;
|
|
4919
4986
|
var SheetClose = DialogPrimitive.Close;
|
|
4920
4987
|
var SheetPortal = DialogPrimitive.Portal;
|
|
4921
|
-
var SheetOverlay =
|
|
4988
|
+
var SheetOverlay = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4922
4989
|
DialogPrimitive.Overlay,
|
|
4923
4990
|
{
|
|
4924
4991
|
className: cn(
|
|
@@ -4946,7 +5013,7 @@ var sheetVariants = cva(
|
|
|
4946
5013
|
}
|
|
4947
5014
|
}
|
|
4948
5015
|
);
|
|
4949
|
-
var SheetContent =
|
|
5016
|
+
var SheetContent = React116.forwardRef(
|
|
4950
5017
|
({
|
|
4951
5018
|
side = "right",
|
|
4952
5019
|
className,
|
|
@@ -5002,7 +5069,7 @@ var SheetFooter = ({
|
|
|
5002
5069
|
}
|
|
5003
5070
|
);
|
|
5004
5071
|
SheetFooter.displayName = "SheetFooter";
|
|
5005
|
-
var SheetTitle =
|
|
5072
|
+
var SheetTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5006
5073
|
DialogPrimitive.Title,
|
|
5007
5074
|
{
|
|
5008
5075
|
ref,
|
|
@@ -5014,7 +5081,7 @@ var SheetTitle = React113.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
5014
5081
|
}
|
|
5015
5082
|
));
|
|
5016
5083
|
SheetTitle.displayName = DialogPrimitive.Title.displayName;
|
|
5017
|
-
var SheetDescription =
|
|
5084
|
+
var SheetDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5018
5085
|
DialogPrimitive.Description,
|
|
5019
5086
|
{
|
|
5020
5087
|
ref,
|
|
@@ -5051,10 +5118,10 @@ var defaultElements = {
|
|
|
5051
5118
|
"caption": "span",
|
|
5052
5119
|
"overline": "span"
|
|
5053
5120
|
};
|
|
5054
|
-
var Typography =
|
|
5121
|
+
var Typography = React116__default.forwardRef(
|
|
5055
5122
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5056
5123
|
const Component = as || defaultElements[variant];
|
|
5057
|
-
return
|
|
5124
|
+
return React116__default.createElement(
|
|
5058
5125
|
Component,
|
|
5059
5126
|
{
|
|
5060
5127
|
ref,
|
|
@@ -5066,46 +5133,46 @@ var Typography = React113__default.forwardRef(
|
|
|
5066
5133
|
}
|
|
5067
5134
|
);
|
|
5068
5135
|
Typography.displayName = "Typography";
|
|
5069
|
-
var Heading1 =
|
|
5136
|
+
var Heading1 = React116__default.forwardRef(
|
|
5070
5137
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h1", ...props })
|
|
5071
5138
|
);
|
|
5072
5139
|
Heading1.displayName = "Heading1";
|
|
5073
|
-
var Heading2 =
|
|
5140
|
+
var Heading2 = React116__default.forwardRef(
|
|
5074
5141
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h2", ...props })
|
|
5075
5142
|
);
|
|
5076
5143
|
Heading2.displayName = "Heading2";
|
|
5077
|
-
var Heading3 =
|
|
5144
|
+
var Heading3 = React116__default.forwardRef(
|
|
5078
5145
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h3", ...props })
|
|
5079
5146
|
);
|
|
5080
5147
|
Heading3.displayName = "Heading3";
|
|
5081
|
-
var Heading4 =
|
|
5148
|
+
var Heading4 = React116__default.forwardRef(
|
|
5082
5149
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h4", ...props })
|
|
5083
5150
|
);
|
|
5084
5151
|
Heading4.displayName = "Heading4";
|
|
5085
|
-
var Heading5 =
|
|
5152
|
+
var Heading5 = React116__default.forwardRef(
|
|
5086
5153
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h5", ...props })
|
|
5087
5154
|
);
|
|
5088
5155
|
Heading5.displayName = "Heading5";
|
|
5089
|
-
var Heading6 =
|
|
5156
|
+
var Heading6 = React116__default.forwardRef(
|
|
5090
5157
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h6", ...props })
|
|
5091
5158
|
);
|
|
5092
5159
|
Heading6.displayName = "Heading6";
|
|
5093
|
-
var Text =
|
|
5160
|
+
var Text = React116__default.forwardRef(
|
|
5094
5161
|
({ size = "default", ...props }, ref) => {
|
|
5095
5162
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5096
5163
|
return /* @__PURE__ */ jsx(Typography, { ref, variant, ...props });
|
|
5097
5164
|
}
|
|
5098
5165
|
);
|
|
5099
5166
|
Text.displayName = "Text";
|
|
5100
|
-
var Caption =
|
|
5167
|
+
var Caption = React116__default.forwardRef(
|
|
5101
5168
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "caption", ...props })
|
|
5102
5169
|
);
|
|
5103
5170
|
Caption.displayName = "Caption";
|
|
5104
|
-
var Overline =
|
|
5171
|
+
var Overline = React116__default.forwardRef(
|
|
5105
5172
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "overline", ...props })
|
|
5106
5173
|
);
|
|
5107
5174
|
Overline.displayName = "Overline";
|
|
5108
|
-
var Link =
|
|
5175
|
+
var Link = React116__default.forwardRef(
|
|
5109
5176
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5110
5177
|
const variantClass = `link-${variant}`;
|
|
5111
5178
|
return /* @__PURE__ */ jsx(
|
|
@@ -5120,11 +5187,11 @@ var Link = React113__default.forwardRef(
|
|
|
5120
5187
|
}
|
|
5121
5188
|
);
|
|
5122
5189
|
Link.displayName = "Link";
|
|
5123
|
-
var PaginationContext =
|
|
5190
|
+
var PaginationContext = React116.createContext({
|
|
5124
5191
|
size: "default"
|
|
5125
5192
|
});
|
|
5126
5193
|
var usePaginationContext = () => {
|
|
5127
|
-
const context =
|
|
5194
|
+
const context = React116.useContext(PaginationContext);
|
|
5128
5195
|
return context;
|
|
5129
5196
|
};
|
|
5130
5197
|
var paginationVariants = cva(
|
|
@@ -5141,7 +5208,7 @@ var paginationVariants = cva(
|
|
|
5141
5208
|
}
|
|
5142
5209
|
}
|
|
5143
5210
|
);
|
|
5144
|
-
var Pagination =
|
|
5211
|
+
var Pagination = React116.forwardRef(
|
|
5145
5212
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsx(
|
|
5146
5213
|
"nav",
|
|
5147
5214
|
{
|
|
@@ -5154,7 +5221,7 @@ var Pagination = React113.forwardRef(
|
|
|
5154
5221
|
) })
|
|
5155
5222
|
);
|
|
5156
5223
|
Pagination.displayName = "Pagination";
|
|
5157
|
-
var PaginationContent =
|
|
5224
|
+
var PaginationContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5158
5225
|
"ul",
|
|
5159
5226
|
{
|
|
5160
5227
|
ref,
|
|
@@ -5163,7 +5230,7 @@ var PaginationContent = React113.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5163
5230
|
}
|
|
5164
5231
|
));
|
|
5165
5232
|
PaginationContent.displayName = "PaginationContent";
|
|
5166
|
-
var PaginationItem =
|
|
5233
|
+
var PaginationItem = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cn("", className), ...props }));
|
|
5167
5234
|
PaginationItem.displayName = "PaginationItem";
|
|
5168
5235
|
var paginationLinkVariants = cva(
|
|
5169
5236
|
[
|
|
@@ -5185,7 +5252,7 @@ var paginationLinkVariants = cva(
|
|
|
5185
5252
|
}
|
|
5186
5253
|
}
|
|
5187
5254
|
);
|
|
5188
|
-
var PaginationLink =
|
|
5255
|
+
var PaginationLink = React116.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5189
5256
|
const { size } = usePaginationContext();
|
|
5190
5257
|
return /* @__PURE__ */ jsx(
|
|
5191
5258
|
"a",
|
|
@@ -5202,7 +5269,7 @@ var PaginationLink = React113.forwardRef(({ className, isActive, ...props }, ref
|
|
|
5202
5269
|
);
|
|
5203
5270
|
});
|
|
5204
5271
|
PaginationLink.displayName = "PaginationLink";
|
|
5205
|
-
var PaginationPrevious =
|
|
5272
|
+
var PaginationPrevious = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5206
5273
|
const { size } = usePaginationContext();
|
|
5207
5274
|
return /* @__PURE__ */ jsxs(
|
|
5208
5275
|
PaginationLink,
|
|
@@ -5223,7 +5290,7 @@ var PaginationPrevious = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
5223
5290
|
);
|
|
5224
5291
|
});
|
|
5225
5292
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5226
|
-
var PaginationNext =
|
|
5293
|
+
var PaginationNext = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5227
5294
|
const { size } = usePaginationContext();
|
|
5228
5295
|
return /* @__PURE__ */ jsxs(
|
|
5229
5296
|
PaginationLink,
|
|
@@ -5244,7 +5311,7 @@ var PaginationNext = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
5244
5311
|
);
|
|
5245
5312
|
});
|
|
5246
5313
|
PaginationNext.displayName = "PaginationNext";
|
|
5247
|
-
var PaginationEllipsis =
|
|
5314
|
+
var PaginationEllipsis = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5248
5315
|
const { size } = usePaginationContext();
|
|
5249
5316
|
return /* @__PURE__ */ jsx(
|
|
5250
5317
|
"span",
|
|
@@ -5268,7 +5335,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
|
5268
5335
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
5269
5336
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
5270
5337
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
5271
|
-
var DropdownMenuSubTrigger =
|
|
5338
|
+
var DropdownMenuSubTrigger = React116.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5272
5339
|
DropdownMenuPrimitive.SubTrigger,
|
|
5273
5340
|
{
|
|
5274
5341
|
ref,
|
|
@@ -5285,7 +5352,7 @@ var DropdownMenuSubTrigger = React113.forwardRef(({ className, inset, children,
|
|
|
5285
5352
|
}
|
|
5286
5353
|
));
|
|
5287
5354
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
5288
|
-
var DropdownMenuSubContent =
|
|
5355
|
+
var DropdownMenuSubContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5289
5356
|
DropdownMenuPrimitive.SubContent,
|
|
5290
5357
|
{
|
|
5291
5358
|
ref,
|
|
@@ -5297,7 +5364,7 @@ var DropdownMenuSubContent = React113.forwardRef(({ className, ...props }, ref)
|
|
|
5297
5364
|
}
|
|
5298
5365
|
));
|
|
5299
5366
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
5300
|
-
var DropdownMenuContent =
|
|
5367
|
+
var DropdownMenuContent = React116.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
5301
5368
|
DropdownMenuPrimitive.Content,
|
|
5302
5369
|
{
|
|
5303
5370
|
ref,
|
|
@@ -5311,7 +5378,7 @@ var DropdownMenuContent = React113.forwardRef(({ className, sideOffset = 4, ...p
|
|
|
5311
5378
|
}
|
|
5312
5379
|
) }));
|
|
5313
5380
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
5314
|
-
var DropdownMenuItem =
|
|
5381
|
+
var DropdownMenuItem = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5315
5382
|
DropdownMenuPrimitive.Item,
|
|
5316
5383
|
{
|
|
5317
5384
|
ref,
|
|
@@ -5324,7 +5391,7 @@ var DropdownMenuItem = React113.forwardRef(({ className, inset, ...props }, ref)
|
|
|
5324
5391
|
}
|
|
5325
5392
|
));
|
|
5326
5393
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
5327
|
-
var DropdownMenuCheckboxItem =
|
|
5394
|
+
var DropdownMenuCheckboxItem = React116.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5328
5395
|
DropdownMenuPrimitive.CheckboxItem,
|
|
5329
5396
|
{
|
|
5330
5397
|
ref,
|
|
@@ -5341,7 +5408,7 @@ var DropdownMenuCheckboxItem = React113.forwardRef(({ className, children, check
|
|
|
5341
5408
|
}
|
|
5342
5409
|
));
|
|
5343
5410
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
5344
|
-
var DropdownMenuRadioItem =
|
|
5411
|
+
var DropdownMenuRadioItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5345
5412
|
DropdownMenuPrimitive.RadioItem,
|
|
5346
5413
|
{
|
|
5347
5414
|
ref,
|
|
@@ -5357,7 +5424,7 @@ var DropdownMenuRadioItem = React113.forwardRef(({ className, children, ...props
|
|
|
5357
5424
|
}
|
|
5358
5425
|
));
|
|
5359
5426
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
5360
|
-
var DropdownMenuLabel =
|
|
5427
|
+
var DropdownMenuLabel = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5361
5428
|
DropdownMenuPrimitive.Label,
|
|
5362
5429
|
{
|
|
5363
5430
|
ref,
|
|
@@ -5370,7 +5437,7 @@ var DropdownMenuLabel = React113.forwardRef(({ className, inset, ...props }, ref
|
|
|
5370
5437
|
}
|
|
5371
5438
|
));
|
|
5372
5439
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
5373
|
-
var DropdownMenuSeparator =
|
|
5440
|
+
var DropdownMenuSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5374
5441
|
DropdownMenuPrimitive.Separator,
|
|
5375
5442
|
{
|
|
5376
5443
|
ref,
|
|
@@ -5392,7 +5459,7 @@ var DropdownMenuShortcut = ({
|
|
|
5392
5459
|
);
|
|
5393
5460
|
};
|
|
5394
5461
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5395
|
-
var TableWrapper =
|
|
5462
|
+
var TableWrapper = React116.forwardRef(
|
|
5396
5463
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5397
5464
|
"div",
|
|
5398
5465
|
{
|
|
@@ -5407,7 +5474,7 @@ var TableWrapper = React113.forwardRef(
|
|
|
5407
5474
|
)
|
|
5408
5475
|
);
|
|
5409
5476
|
TableWrapper.displayName = "TableWrapper";
|
|
5410
|
-
var Table =
|
|
5477
|
+
var Table = React116.forwardRef(
|
|
5411
5478
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5412
5479
|
"div",
|
|
5413
5480
|
{
|
|
@@ -5429,7 +5496,7 @@ var Table = React113.forwardRef(
|
|
|
5429
5496
|
)
|
|
5430
5497
|
);
|
|
5431
5498
|
Table.displayName = "Table";
|
|
5432
|
-
var TableHeader =
|
|
5499
|
+
var TableHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5433
5500
|
"thead",
|
|
5434
5501
|
{
|
|
5435
5502
|
ref,
|
|
@@ -5442,7 +5509,7 @@ var TableHeader = React113.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5442
5509
|
}
|
|
5443
5510
|
));
|
|
5444
5511
|
TableHeader.displayName = "TableHeader";
|
|
5445
|
-
var TableBody =
|
|
5512
|
+
var TableBody = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5446
5513
|
"tbody",
|
|
5447
5514
|
{
|
|
5448
5515
|
ref,
|
|
@@ -5455,7 +5522,7 @@ var TableBody = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5455
5522
|
}
|
|
5456
5523
|
));
|
|
5457
5524
|
TableBody.displayName = "TableBody";
|
|
5458
|
-
var TableFooter =
|
|
5525
|
+
var TableFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5459
5526
|
"tfoot",
|
|
5460
5527
|
{
|
|
5461
5528
|
ref,
|
|
@@ -5468,7 +5535,7 @@ var TableFooter = React113.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5468
5535
|
}
|
|
5469
5536
|
));
|
|
5470
5537
|
TableFooter.displayName = "TableFooter";
|
|
5471
|
-
var TableRow =
|
|
5538
|
+
var TableRow = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5472
5539
|
"tr",
|
|
5473
5540
|
{
|
|
5474
5541
|
ref,
|
|
@@ -5486,7 +5553,7 @@ var TableRow = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5486
5553
|
}
|
|
5487
5554
|
));
|
|
5488
5555
|
TableRow.displayName = "TableRow";
|
|
5489
|
-
var TableHead =
|
|
5556
|
+
var TableHead = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5490
5557
|
"th",
|
|
5491
5558
|
{
|
|
5492
5559
|
ref,
|
|
@@ -5499,7 +5566,7 @@ var TableHead = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5499
5566
|
}
|
|
5500
5567
|
));
|
|
5501
5568
|
TableHead.displayName = "TableHead";
|
|
5502
|
-
var TableCell =
|
|
5569
|
+
var TableCell = React116.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5503
5570
|
"td",
|
|
5504
5571
|
{
|
|
5505
5572
|
ref,
|
|
@@ -5519,7 +5586,7 @@ var TableCell = React113.forwardRef(({ className, label, ...props }, ref) => /*
|
|
|
5519
5586
|
}
|
|
5520
5587
|
));
|
|
5521
5588
|
TableCell.displayName = "TableCell";
|
|
5522
|
-
var TableCaption =
|
|
5589
|
+
var TableCaption = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5523
5590
|
"caption",
|
|
5524
5591
|
{
|
|
5525
5592
|
ref,
|
|
@@ -5532,7 +5599,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5532
5599
|
var Select = SelectPrimitive.Root;
|
|
5533
5600
|
var SelectGroup = SelectPrimitive.Group;
|
|
5534
5601
|
var SelectValue = SelectPrimitive.Value;
|
|
5535
|
-
var SelectTrigger =
|
|
5602
|
+
var SelectTrigger = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5536
5603
|
SelectPrimitive.Trigger,
|
|
5537
5604
|
{
|
|
5538
5605
|
ref,
|
|
@@ -5548,7 +5615,7 @@ var SelectTrigger = React113.forwardRef(({ className, children, ...props }, ref)
|
|
|
5548
5615
|
}
|
|
5549
5616
|
));
|
|
5550
5617
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
5551
|
-
var SelectScrollUpButton =
|
|
5618
|
+
var SelectScrollUpButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5552
5619
|
SelectPrimitive.ScrollUpButton,
|
|
5553
5620
|
{
|
|
5554
5621
|
ref,
|
|
@@ -5561,7 +5628,7 @@ var SelectScrollUpButton = React113.forwardRef(({ className, ...props }, ref) =>
|
|
|
5561
5628
|
}
|
|
5562
5629
|
));
|
|
5563
5630
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
|
|
5564
|
-
var SelectScrollDownButton =
|
|
5631
|
+
var SelectScrollDownButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5565
5632
|
SelectPrimitive.ScrollDownButton,
|
|
5566
5633
|
{
|
|
5567
5634
|
ref,
|
|
@@ -5574,7 +5641,7 @@ var SelectScrollDownButton = React113.forwardRef(({ className, ...props }, ref)
|
|
|
5574
5641
|
}
|
|
5575
5642
|
));
|
|
5576
5643
|
SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
|
|
5577
|
-
var SelectContent =
|
|
5644
|
+
var SelectContent = React116.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
|
|
5578
5645
|
SelectPrimitive.Content,
|
|
5579
5646
|
{
|
|
5580
5647
|
ref,
|
|
@@ -5601,7 +5668,7 @@ var SelectContent = React113.forwardRef(({ className, children, position = "popp
|
|
|
5601
5668
|
}
|
|
5602
5669
|
) }));
|
|
5603
5670
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
5604
|
-
var SelectLabel =
|
|
5671
|
+
var SelectLabel = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5605
5672
|
SelectPrimitive.Label,
|
|
5606
5673
|
{
|
|
5607
5674
|
ref,
|
|
@@ -5610,7 +5677,7 @@ var SelectLabel = React113.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5610
5677
|
}
|
|
5611
5678
|
));
|
|
5612
5679
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
5613
|
-
var SelectItem =
|
|
5680
|
+
var SelectItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5614
5681
|
SelectPrimitive.Item,
|
|
5615
5682
|
{
|
|
5616
5683
|
ref,
|
|
@@ -5626,7 +5693,7 @@ var SelectItem = React113.forwardRef(({ className, children, ...props }, ref) =>
|
|
|
5626
5693
|
}
|
|
5627
5694
|
));
|
|
5628
5695
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
5629
|
-
var SelectSeparator =
|
|
5696
|
+
var SelectSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5630
5697
|
SelectPrimitive.Separator,
|
|
5631
5698
|
{
|
|
5632
5699
|
ref,
|
|
@@ -5635,7 +5702,7 @@ var SelectSeparator = React113.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
5635
5702
|
}
|
|
5636
5703
|
));
|
|
5637
5704
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
5638
|
-
var Label3 =
|
|
5705
|
+
var Label3 = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5639
5706
|
LabelPrimitive.Root,
|
|
5640
5707
|
{
|
|
5641
5708
|
ref,
|
|
@@ -5647,7 +5714,7 @@ var Label3 = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5647
5714
|
}
|
|
5648
5715
|
));
|
|
5649
5716
|
Label3.displayName = LabelPrimitive.Root.displayName;
|
|
5650
|
-
var Switch =
|
|
5717
|
+
var Switch = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5651
5718
|
SwitchPrimitives.Root,
|
|
5652
5719
|
{
|
|
5653
5720
|
className: cn(
|
|
@@ -5660,7 +5727,7 @@ var Switch = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5660
5727
|
}
|
|
5661
5728
|
));
|
|
5662
5729
|
Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
5663
|
-
var RadioGroup2 =
|
|
5730
|
+
var RadioGroup2 = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5664
5731
|
return /* @__PURE__ */ jsx(
|
|
5665
5732
|
RadioGroupPrimitive.Root,
|
|
5666
5733
|
{
|
|
@@ -5671,7 +5738,7 @@ var RadioGroup2 = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
5671
5738
|
);
|
|
5672
5739
|
});
|
|
5673
5740
|
RadioGroup2.displayName = RadioGroupPrimitive.Root.displayName;
|
|
5674
|
-
var RadioGroupItem =
|
|
5741
|
+
var RadioGroupItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5675
5742
|
return /* @__PURE__ */ jsx(
|
|
5676
5743
|
RadioGroupPrimitive.Item,
|
|
5677
5744
|
{
|
|
@@ -5686,7 +5753,7 @@ var RadioGroupItem = React113.forwardRef(({ className, ...props }, ref) => {
|
|
|
5686
5753
|
);
|
|
5687
5754
|
});
|
|
5688
5755
|
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
5689
|
-
var Checkbox =
|
|
5756
|
+
var Checkbox = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5690
5757
|
CheckboxPrimitive.Root,
|
|
5691
5758
|
{
|
|
5692
5759
|
ref,
|
|
@@ -5699,7 +5766,7 @@ var Checkbox = React113.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5699
5766
|
}
|
|
5700
5767
|
));
|
|
5701
5768
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
5702
|
-
var MultiSelect =
|
|
5769
|
+
var MultiSelect = React116.forwardRef(
|
|
5703
5770
|
({
|
|
5704
5771
|
options,
|
|
5705
5772
|
value = [],
|
|
@@ -5712,8 +5779,8 @@ var MultiSelect = React113.forwardRef(
|
|
|
5712
5779
|
maxDisplayItems = 3,
|
|
5713
5780
|
...props
|
|
5714
5781
|
}, ref) => {
|
|
5715
|
-
const [open, setOpen] =
|
|
5716
|
-
const handleSelectAll =
|
|
5782
|
+
const [open, setOpen] = React116.useState(false);
|
|
5783
|
+
const handleSelectAll = React116.useCallback(() => {
|
|
5717
5784
|
if (!onValueChange) return;
|
|
5718
5785
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5719
5786
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5726,7 +5793,7 @@ var MultiSelect = React113.forwardRef(
|
|
|
5726
5793
|
onValueChange(allValues);
|
|
5727
5794
|
}
|
|
5728
5795
|
}, [options, value, onValueChange]);
|
|
5729
|
-
const handleItemToggle =
|
|
5796
|
+
const handleItemToggle = React116.useCallback(
|
|
5730
5797
|
(itemValue) => {
|
|
5731
5798
|
if (!onValueChange) return;
|
|
5732
5799
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5734,7 +5801,7 @@ var MultiSelect = React113.forwardRef(
|
|
|
5734
5801
|
},
|
|
5735
5802
|
[value, onValueChange]
|
|
5736
5803
|
);
|
|
5737
|
-
const displayValue =
|
|
5804
|
+
const displayValue = React116.useMemo(() => {
|
|
5738
5805
|
if (value.length === 0) {
|
|
5739
5806
|
return placeholder;
|
|
5740
5807
|
}
|
|
@@ -5855,6 +5922,22 @@ var MultiSelect = React113.forwardRef(
|
|
|
5855
5922
|
}
|
|
5856
5923
|
);
|
|
5857
5924
|
MultiSelect.displayName = "MultiSelect";
|
|
5925
|
+
var Slider = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5926
|
+
SliderPrimitive.Root,
|
|
5927
|
+
{
|
|
5928
|
+
ref,
|
|
5929
|
+
className: cn(
|
|
5930
|
+
"lua:relative lua:flex lua:w-full lua:touch-none lua:select-none lua:items-center",
|
|
5931
|
+
className
|
|
5932
|
+
),
|
|
5933
|
+
...props,
|
|
5934
|
+
children: [
|
|
5935
|
+
/* @__PURE__ */ jsx(SliderPrimitive.Track, { className: "lua:relative lua:h-2 lua:w-full lua:grow lua:overflow-hidden lua:rounded-full lua:bg-gray-200", children: /* @__PURE__ */ jsx(SliderPrimitive.Range, { className: "lua:absolute lua:h-full lua:bg-gradient-to-r lua:from-blue-600 lua:to-purple-600" }) }),
|
|
5936
|
+
/* @__PURE__ */ jsx(SliderPrimitive.Thumb, { className: "lua:block lua:h-5 lua:w-5 lua:rounded-full lua:border-2 lua:border-white lua:bg-purple-600 lua:shadow-lg lua:ring-offset-white lua:transition-all lua:focus-visible:outline-none lua:focus-visible:ring-2 lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2 lua:hover:shadow-xl lua:hover:scale-105 lua:active:scale-95 lua:disabled:bg-gray-200 lua:disabled:pointer-events-none lua:disabled:opacity-50" })
|
|
5937
|
+
]
|
|
5938
|
+
}
|
|
5939
|
+
));
|
|
5940
|
+
Slider.displayName = SliderPrimitive.Root.displayName;
|
|
5858
5941
|
|
|
5859
5942
|
// src/safelist.js
|
|
5860
5943
|
var luaniverseSafelist = [
|
|
@@ -6070,7 +6153,59 @@ var luaniverseSafelist = [
|
|
|
6070
6153
|
"lua:text-xs",
|
|
6071
6154
|
// select
|
|
6072
6155
|
"lua:max-h-96",
|
|
6073
|
-
"lua:min-w-32"
|
|
6156
|
+
"lua:min-w-32",
|
|
6157
|
+
// slider
|
|
6158
|
+
"lua:disabled:bg-gray-200",
|
|
6159
|
+
"lua:hover:shadow-xl",
|
|
6160
|
+
"lua:hover:scale-105",
|
|
6161
|
+
"lua:active:scale-95",
|
|
6162
|
+
"lua:bg-gradient-to-r",
|
|
6163
|
+
"lua:from-blue-600",
|
|
6164
|
+
"lua:to-purple-600",
|
|
6165
|
+
"lua:bg-purple-600",
|
|
6166
|
+
// input
|
|
6167
|
+
"lua:text-gray-600",
|
|
6168
|
+
"lua:cursor-not-allowed",
|
|
6169
|
+
"lua:mb-2",
|
|
6170
|
+
"lua:text-gray-900",
|
|
6171
|
+
"lua:left-3",
|
|
6172
|
+
"lua:top-1/2",
|
|
6173
|
+
"lua:-translate-y-1/2",
|
|
6174
|
+
"lua:items-center",
|
|
6175
|
+
"lua:pointer-events-none",
|
|
6176
|
+
"lua:text-gray-500",
|
|
6177
|
+
"lua:h-10",
|
|
6178
|
+
"lua:rounded-md",
|
|
6179
|
+
"lua:bg-transparent",
|
|
6180
|
+
"lua:px-3",
|
|
6181
|
+
"lua:py-2",
|
|
6182
|
+
"lua:text-base",
|
|
6183
|
+
"lua:transition-all",
|
|
6184
|
+
"lua:duration-200",
|
|
6185
|
+
"file:lua:border-0",
|
|
6186
|
+
"file:lua:bg-transparent",
|
|
6187
|
+
"file:lua:text-sm",
|
|
6188
|
+
"file:lua:font-medium",
|
|
6189
|
+
"file:lua:text-gray-900",
|
|
6190
|
+
"placeholder:lua:text-gray-500",
|
|
6191
|
+
"focus-visible:lua:outline-hidden",
|
|
6192
|
+
"focus-visible:lua:ring-2",
|
|
6193
|
+
"focus-visible:lua:ring-offset-2",
|
|
6194
|
+
"focus-visible:lua:ring-offset-white",
|
|
6195
|
+
"lua:border-gray-300",
|
|
6196
|
+
"focus-visible:lua:ring-blue-600",
|
|
6197
|
+
"lua:border-red-600",
|
|
6198
|
+
"focus-visible:lua:ring-red-600",
|
|
6199
|
+
"lua:border-green-500",
|
|
6200
|
+
"focus-visible:lua:ring-green-500",
|
|
6201
|
+
"lua:opacity-50",
|
|
6202
|
+
"placeholder:lua:text-gray-400",
|
|
6203
|
+
"lua:pr-10",
|
|
6204
|
+
"md:lua:text-sm",
|
|
6205
|
+
"lua:right-3",
|
|
6206
|
+
"lua:mt-2",
|
|
6207
|
+
"lua:text-red-600",
|
|
6208
|
+
"lua:text-green-600"
|
|
6074
6209
|
];
|
|
6075
6210
|
|
|
6076
6211
|
// src/tailwind.preset.js
|
|
@@ -6194,6 +6329,6 @@ var luaniversePreset = {
|
|
|
6194
6329
|
}
|
|
6195
6330
|
};
|
|
6196
6331
|
|
|
6197
|
-
export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, BooksIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, FolderIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
6332
|
+
export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, BooksIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Slider, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
6198
6333
|
//# sourceMappingURL=index.js.map
|
|
6199
6334
|
//# sourceMappingURL=index.js.map
|