luaniverse 4.0.44 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +456 -213
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +449 -214
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
package/dist/index.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var React118 = require('react');
|
|
6
6
|
var reactSlot = require('@radix-ui/react-slot');
|
|
7
7
|
var classVarianceAuthority = require('class-variance-authority');
|
|
8
8
|
var clsx = require('clsx');
|
|
@@ -20,6 +20,9 @@ var SwitchPrimitives = require('@radix-ui/react-switch');
|
|
|
20
20
|
var RadioGroupPrimitive = require('@radix-ui/react-radio-group');
|
|
21
21
|
var CheckboxPrimitive = require('@radix-ui/react-checkbox');
|
|
22
22
|
var SliderPrimitive = require('@radix-ui/react-slider');
|
|
23
|
+
var lucideReact = require('lucide-react');
|
|
24
|
+
var reactDayPicker = require('react-day-picker');
|
|
25
|
+
var PopoverPrimitive = require('@radix-ui/react-popover');
|
|
23
26
|
|
|
24
27
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
25
28
|
|
|
@@ -41,7 +44,7 @@ function _interopNamespace(e) {
|
|
|
41
44
|
return Object.freeze(n);
|
|
42
45
|
}
|
|
43
46
|
|
|
44
|
-
var
|
|
47
|
+
var React118__namespace = /*#__PURE__*/_interopNamespace(React118);
|
|
45
48
|
var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
|
|
46
49
|
var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
|
|
47
50
|
var useEmblaCarousel__default = /*#__PURE__*/_interopDefault(useEmblaCarousel);
|
|
@@ -53,6 +56,7 @@ var SwitchPrimitives__namespace = /*#__PURE__*/_interopNamespace(SwitchPrimitive
|
|
|
53
56
|
var RadioGroupPrimitive__namespace = /*#__PURE__*/_interopNamespace(RadioGroupPrimitive);
|
|
54
57
|
var CheckboxPrimitive__namespace = /*#__PURE__*/_interopNamespace(CheckboxPrimitive);
|
|
55
58
|
var SliderPrimitive__namespace = /*#__PURE__*/_interopNamespace(SliderPrimitive);
|
|
59
|
+
var PopoverPrimitive__namespace = /*#__PURE__*/_interopNamespace(PopoverPrimitive);
|
|
56
60
|
|
|
57
61
|
var __defProp = Object.defineProperty;
|
|
58
62
|
var __export = (target, all) => {
|
|
@@ -238,7 +242,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
238
242
|
}
|
|
239
243
|
);
|
|
240
244
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
241
|
-
var Button =
|
|
245
|
+
var Button = React118__namespace.forwardRef(
|
|
242
246
|
({
|
|
243
247
|
className,
|
|
244
248
|
variant,
|
|
@@ -256,7 +260,7 @@ var Button = React116__namespace.forwardRef(
|
|
|
256
260
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
257
261
|
const hasStartAdornment = !!startAdornment;
|
|
258
262
|
const hasEndAdornment = !!endAdornment;
|
|
259
|
-
const hasTextContent =
|
|
263
|
+
const hasTextContent = React118__namespace.Children.toArray(children).some(
|
|
260
264
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
261
265
|
);
|
|
262
266
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -311,7 +315,7 @@ var iconButtonVariants = {
|
|
|
311
315
|
large: "lua:p-3 lua:size-12"
|
|
312
316
|
}
|
|
313
317
|
};
|
|
314
|
-
var IconButton =
|
|
318
|
+
var IconButton = React118__namespace.forwardRef(
|
|
315
319
|
({
|
|
316
320
|
className,
|
|
317
321
|
variant,
|
|
@@ -352,7 +356,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
352
356
|
className: "lua:text-current",
|
|
353
357
|
"aria-hidden": "true"
|
|
354
358
|
}
|
|
355
|
-
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children:
|
|
359
|
+
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: React118__namespace.cloneElement(children, {
|
|
356
360
|
"aria-hidden": "true"
|
|
357
361
|
}) })
|
|
358
362
|
}
|
|
@@ -360,7 +364,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
360
364
|
}
|
|
361
365
|
);
|
|
362
366
|
IconButton.displayName = "IconButton";
|
|
363
|
-
var Input =
|
|
367
|
+
var Input = React118__namespace.forwardRef(
|
|
364
368
|
({
|
|
365
369
|
className,
|
|
366
370
|
type = "text",
|
|
@@ -376,7 +380,7 @@ var Input = React116__namespace.forwardRef(
|
|
|
376
380
|
disabled,
|
|
377
381
|
...props
|
|
378
382
|
}, ref) => {
|
|
379
|
-
const generatedId =
|
|
383
|
+
const generatedId = React118__namespace.useId();
|
|
380
384
|
const inputId = id || generatedId;
|
|
381
385
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
382
386
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -523,7 +527,7 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
523
527
|
}
|
|
524
528
|
}
|
|
525
529
|
);
|
|
526
|
-
var Badge =
|
|
530
|
+
var Badge = React118__namespace.forwardRef(
|
|
527
531
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
528
532
|
const Comp = asChild ? reactSlot.Slot : "span";
|
|
529
533
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -538,7 +542,7 @@ var Badge = React116__namespace.forwardRef(
|
|
|
538
542
|
}
|
|
539
543
|
);
|
|
540
544
|
Badge.displayName = "Badge";
|
|
541
|
-
var Textarea =
|
|
545
|
+
var Textarea = React118__namespace.forwardRef(
|
|
542
546
|
({
|
|
543
547
|
className,
|
|
544
548
|
description,
|
|
@@ -551,7 +555,7 @@ var Textarea = React116__namespace.forwardRef(
|
|
|
551
555
|
disabled,
|
|
552
556
|
...props
|
|
553
557
|
}, ref) => {
|
|
554
|
-
const generatedId =
|
|
558
|
+
const generatedId = React118__namespace.useId();
|
|
555
559
|
const textareaId = id || generatedId;
|
|
556
560
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
557
561
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -646,7 +650,7 @@ var Tabs = TabsPrimitive__namespace.Root;
|
|
|
646
650
|
var tabsListVariants = classVarianceAuthority.cva([
|
|
647
651
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
648
652
|
].join(" "));
|
|
649
|
-
var TabsList =
|
|
653
|
+
var TabsList = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
650
654
|
TabsPrimitive__namespace.List,
|
|
651
655
|
{
|
|
652
656
|
ref,
|
|
@@ -662,7 +666,7 @@ var tabsTriggerVariants = classVarianceAuthority.cva([
|
|
|
662
666
|
"lua:data-[state=active]:text-blue-600 lua:data-[state=active]:border-b-2 lua:data-[state=active]:border-blue-600 lua:data-[state=active]:-mb-px",
|
|
663
667
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
664
668
|
].join(" "));
|
|
665
|
-
var TabsTrigger =
|
|
669
|
+
var TabsTrigger = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
666
670
|
TabsPrimitive__namespace.Trigger,
|
|
667
671
|
{
|
|
668
672
|
ref,
|
|
@@ -675,7 +679,7 @@ var tabsContentVariants = classVarianceAuthority.cva([
|
|
|
675
679
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
676
680
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
677
681
|
].join(" "));
|
|
678
|
-
var TabsContent =
|
|
682
|
+
var TabsContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
679
683
|
TabsPrimitive__namespace.Content,
|
|
680
684
|
{
|
|
681
685
|
ref,
|
|
@@ -684,7 +688,7 @@ var TabsContent = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
684
688
|
}
|
|
685
689
|
));
|
|
686
690
|
TabsContent.displayName = TabsPrimitive__namespace.Content.displayName;
|
|
687
|
-
var InputOTP =
|
|
691
|
+
var InputOTP = React118__namespace.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
688
692
|
inputOtp.OTPInput,
|
|
689
693
|
{
|
|
690
694
|
ref,
|
|
@@ -697,10 +701,10 @@ var InputOTP = React116__namespace.forwardRef(({ className, containerClassName,
|
|
|
697
701
|
}
|
|
698
702
|
));
|
|
699
703
|
InputOTP.displayName = "InputOTP";
|
|
700
|
-
var InputOTPGroup =
|
|
704
|
+
var InputOTPGroup = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
701
705
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
702
|
-
var InputOTPSlot =
|
|
703
|
-
const inputOTPContext =
|
|
706
|
+
var InputOTPSlot = React118__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
707
|
+
const inputOTPContext = React118__namespace.useContext(inputOtp.OTPInputContext);
|
|
704
708
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
705
709
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
706
710
|
"div",
|
|
@@ -720,7 +724,7 @@ var InputOTPSlot = React116__namespace.forwardRef(({ index, className, ...props
|
|
|
720
724
|
);
|
|
721
725
|
});
|
|
722
726
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
723
|
-
var InputOTPSeparator =
|
|
727
|
+
var InputOTPSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
724
728
|
"div",
|
|
725
729
|
{
|
|
726
730
|
ref,
|
|
@@ -734,7 +738,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
734
738
|
var TooltipProvider = TooltipPrimitive__namespace.Provider;
|
|
735
739
|
var Tooltip = TooltipPrimitive__namespace.Root;
|
|
736
740
|
var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
|
|
737
|
-
var TooltipArrow =
|
|
741
|
+
var TooltipArrow = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
738
742
|
TooltipPrimitive__namespace.Arrow,
|
|
739
743
|
{
|
|
740
744
|
ref,
|
|
@@ -751,7 +755,7 @@ var TooltipArrow = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
751
755
|
}
|
|
752
756
|
));
|
|
753
757
|
TooltipArrow.displayName = TooltipPrimitive__namespace.Arrow.displayName;
|
|
754
|
-
var TooltipContent =
|
|
758
|
+
var TooltipContent = React118__namespace.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
755
759
|
TooltipPrimitive__namespace.Content,
|
|
756
760
|
{
|
|
757
761
|
ref,
|
|
@@ -775,7 +779,7 @@ var TooltipContent = React116__namespace.forwardRef(({ className, sideOffset = 4
|
|
|
775
779
|
}
|
|
776
780
|
) }));
|
|
777
781
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
778
|
-
var Card =
|
|
782
|
+
var Card = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
779
783
|
"div",
|
|
780
784
|
{
|
|
781
785
|
ref,
|
|
@@ -787,7 +791,7 @@ var Card = React116__namespace.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
787
791
|
}
|
|
788
792
|
));
|
|
789
793
|
Card.displayName = "Card";
|
|
790
|
-
var CardHeader =
|
|
794
|
+
var CardHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
791
795
|
"div",
|
|
792
796
|
{
|
|
793
797
|
ref,
|
|
@@ -796,7 +800,7 @@ var CardHeader = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
796
800
|
}
|
|
797
801
|
));
|
|
798
802
|
CardHeader.displayName = "CardHeader";
|
|
799
|
-
var CardTitle =
|
|
803
|
+
var CardTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
800
804
|
"div",
|
|
801
805
|
{
|
|
802
806
|
ref,
|
|
@@ -805,7 +809,7 @@ var CardTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
805
809
|
}
|
|
806
810
|
));
|
|
807
811
|
CardTitle.displayName = "CardTitle";
|
|
808
|
-
var CardDescription =
|
|
812
|
+
var CardDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
809
813
|
"div",
|
|
810
814
|
{
|
|
811
815
|
ref,
|
|
@@ -814,9 +818,9 @@ var CardDescription = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
814
818
|
}
|
|
815
819
|
));
|
|
816
820
|
CardDescription.displayName = "CardDescription";
|
|
817
|
-
var CardContent =
|
|
821
|
+
var CardContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
818
822
|
CardContent.displayName = "CardContent";
|
|
819
|
-
var CardFooter =
|
|
823
|
+
var CardFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
820
824
|
"div",
|
|
821
825
|
{
|
|
822
826
|
ref,
|
|
@@ -889,7 +893,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
889
893
|
restProps
|
|
890
894
|
};
|
|
891
895
|
}
|
|
892
|
-
var ArrowLeft =
|
|
896
|
+
var ArrowLeft = React118__namespace.forwardRef(
|
|
893
897
|
({ size = 20, ...props }, ref) => {
|
|
894
898
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
895
899
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -918,7 +922,7 @@ var ArrowLeft = React116__namespace.forwardRef(
|
|
|
918
922
|
}
|
|
919
923
|
);
|
|
920
924
|
ArrowLeft.displayName = "ArrowLeft";
|
|
921
|
-
var ArrowRight =
|
|
925
|
+
var ArrowRight = React118__namespace.forwardRef(
|
|
922
926
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
923
927
|
"svg",
|
|
924
928
|
{
|
|
@@ -940,7 +944,7 @@ var ArrowRight = React116__namespace.forwardRef(
|
|
|
940
944
|
)
|
|
941
945
|
);
|
|
942
946
|
ArrowRight.displayName = "ArrowRight";
|
|
943
|
-
var ArrowClockwiseIcon =
|
|
947
|
+
var ArrowClockwiseIcon = React118__namespace.forwardRef(
|
|
944
948
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
945
949
|
"svg",
|
|
946
950
|
{
|
|
@@ -962,7 +966,7 @@ var ArrowClockwiseIcon = React116__namespace.forwardRef(
|
|
|
962
966
|
)
|
|
963
967
|
);
|
|
964
968
|
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
965
|
-
var ArrowsClockwiseIcon =
|
|
969
|
+
var ArrowsClockwiseIcon = React118__namespace.forwardRef(
|
|
966
970
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
967
971
|
"svg",
|
|
968
972
|
{
|
|
@@ -984,7 +988,7 @@ var ArrowsClockwiseIcon = React116__namespace.forwardRef(
|
|
|
984
988
|
)
|
|
985
989
|
);
|
|
986
990
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
987
|
-
var ArrowSquareOut =
|
|
991
|
+
var ArrowSquareOut = React118__namespace.forwardRef(
|
|
988
992
|
({ size = 20, ...props }, ref) => {
|
|
989
993
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
990
994
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1013,7 +1017,7 @@ var ArrowSquareOut = React116__namespace.forwardRef(
|
|
|
1013
1017
|
}
|
|
1014
1018
|
);
|
|
1015
1019
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
1016
|
-
var ArrowUp =
|
|
1020
|
+
var ArrowUp = React118__namespace.forwardRef(
|
|
1017
1021
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1018
1022
|
"svg",
|
|
1019
1023
|
{
|
|
@@ -1035,7 +1039,7 @@ var ArrowUp = React116__namespace.forwardRef(
|
|
|
1035
1039
|
)
|
|
1036
1040
|
);
|
|
1037
1041
|
ArrowUp.displayName = "ArrowUp";
|
|
1038
|
-
var BooksIcon =
|
|
1042
|
+
var BooksIcon = React118__namespace.forwardRef(
|
|
1039
1043
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1040
1044
|
"svg",
|
|
1041
1045
|
{
|
|
@@ -1057,7 +1061,7 @@ var BooksIcon = React116__namespace.forwardRef(
|
|
|
1057
1061
|
)
|
|
1058
1062
|
);
|
|
1059
1063
|
BooksIcon.displayName = "BooksIcon";
|
|
1060
|
-
var Camera =
|
|
1064
|
+
var Camera = React118__namespace.forwardRef(
|
|
1061
1065
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1062
1066
|
"svg",
|
|
1063
1067
|
{
|
|
@@ -1079,7 +1083,7 @@ var Camera = React116__namespace.forwardRef(
|
|
|
1079
1083
|
)
|
|
1080
1084
|
);
|
|
1081
1085
|
Camera.displayName = "Camera";
|
|
1082
|
-
var CaretDown =
|
|
1086
|
+
var CaretDown = React118__namespace.forwardRef(
|
|
1083
1087
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1084
1088
|
"svg",
|
|
1085
1089
|
{
|
|
@@ -1101,7 +1105,7 @@ var CaretDown = React116__namespace.forwardRef(
|
|
|
1101
1105
|
)
|
|
1102
1106
|
);
|
|
1103
1107
|
CaretDown.displayName = "CaretDown";
|
|
1104
|
-
var CaretRight =
|
|
1108
|
+
var CaretRight = React118__namespace.forwardRef(
|
|
1105
1109
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1106
1110
|
"svg",
|
|
1107
1111
|
{
|
|
@@ -1123,7 +1127,7 @@ var CaretRight = React116__namespace.forwardRef(
|
|
|
1123
1127
|
)
|
|
1124
1128
|
);
|
|
1125
1129
|
CaretRight.displayName = "CaretRight";
|
|
1126
|
-
var CaretUpIcon =
|
|
1130
|
+
var CaretUpIcon = React118__namespace.forwardRef(
|
|
1127
1131
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1128
1132
|
"svg",
|
|
1129
1133
|
{
|
|
@@ -1145,7 +1149,7 @@ var CaretUpIcon = React116__namespace.forwardRef(
|
|
|
1145
1149
|
)
|
|
1146
1150
|
);
|
|
1147
1151
|
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1148
|
-
var ChartBar =
|
|
1152
|
+
var ChartBar = React118__namespace.forwardRef(
|
|
1149
1153
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1150
1154
|
"svg",
|
|
1151
1155
|
{
|
|
@@ -1167,7 +1171,7 @@ var ChartBar = React116__namespace.forwardRef(
|
|
|
1167
1171
|
)
|
|
1168
1172
|
);
|
|
1169
1173
|
ChartBar.displayName = "ChartBar";
|
|
1170
|
-
var Chat =
|
|
1174
|
+
var Chat = React118__namespace.forwardRef(
|
|
1171
1175
|
({ size = 20, ...props }, ref) => {
|
|
1172
1176
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1173
1177
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1196,7 +1200,7 @@ var Chat = React116__namespace.forwardRef(
|
|
|
1196
1200
|
}
|
|
1197
1201
|
);
|
|
1198
1202
|
Chat.displayName = "Chat";
|
|
1199
|
-
var ChatsCircle =
|
|
1203
|
+
var ChatsCircle = React118__namespace.forwardRef(
|
|
1200
1204
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1201
1205
|
"svg",
|
|
1202
1206
|
{
|
|
@@ -1218,7 +1222,7 @@ var ChatsCircle = React116__namespace.forwardRef(
|
|
|
1218
1222
|
)
|
|
1219
1223
|
);
|
|
1220
1224
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1221
|
-
var Check =
|
|
1225
|
+
var Check = React118__namespace.forwardRef(
|
|
1222
1226
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1223
1227
|
"svg",
|
|
1224
1228
|
{
|
|
@@ -1240,7 +1244,7 @@ var Check = React116__namespace.forwardRef(
|
|
|
1240
1244
|
)
|
|
1241
1245
|
);
|
|
1242
1246
|
Check.displayName = "Check";
|
|
1243
|
-
var CheckSquareIcon =
|
|
1247
|
+
var CheckSquareIcon = React118__namespace.forwardRef(
|
|
1244
1248
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1245
1249
|
"svg",
|
|
1246
1250
|
{
|
|
@@ -1262,7 +1266,7 @@ var CheckSquareIcon = React116__namespace.forwardRef(
|
|
|
1262
1266
|
)
|
|
1263
1267
|
);
|
|
1264
1268
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1265
|
-
var Circle =
|
|
1269
|
+
var Circle = React118__namespace.forwardRef(
|
|
1266
1270
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1267
1271
|
"svg",
|
|
1268
1272
|
{
|
|
@@ -1284,7 +1288,7 @@ var Circle = React116__namespace.forwardRef(
|
|
|
1284
1288
|
)
|
|
1285
1289
|
);
|
|
1286
1290
|
Circle.displayName = "Circle";
|
|
1287
|
-
var ClipboardTextIcon =
|
|
1291
|
+
var ClipboardTextIcon = React118__namespace.forwardRef(
|
|
1288
1292
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1289
1293
|
"svg",
|
|
1290
1294
|
{
|
|
@@ -1306,7 +1310,7 @@ var ClipboardTextIcon = React116__namespace.forwardRef(
|
|
|
1306
1310
|
)
|
|
1307
1311
|
);
|
|
1308
1312
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1309
|
-
var Clock =
|
|
1313
|
+
var Clock = React118__namespace.forwardRef(
|
|
1310
1314
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1311
1315
|
"svg",
|
|
1312
1316
|
{
|
|
@@ -1328,7 +1332,7 @@ var Clock = React116__namespace.forwardRef(
|
|
|
1328
1332
|
)
|
|
1329
1333
|
);
|
|
1330
1334
|
Clock.displayName = "Clock";
|
|
1331
|
-
var CopySimpleIcon =
|
|
1335
|
+
var CopySimpleIcon = React118__namespace.forwardRef(
|
|
1332
1336
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1333
1337
|
"svg",
|
|
1334
1338
|
{
|
|
@@ -1350,7 +1354,7 @@ var CopySimpleIcon = React116__namespace.forwardRef(
|
|
|
1350
1354
|
)
|
|
1351
1355
|
);
|
|
1352
1356
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1353
|
-
var CreditCard =
|
|
1357
|
+
var CreditCard = React118__namespace.forwardRef(
|
|
1354
1358
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1355
1359
|
"svg",
|
|
1356
1360
|
{
|
|
@@ -1372,7 +1376,7 @@ var CreditCard = React116__namespace.forwardRef(
|
|
|
1372
1376
|
)
|
|
1373
1377
|
);
|
|
1374
1378
|
CreditCard.displayName = "CreditCard";
|
|
1375
|
-
var CurrencyCircleDollar =
|
|
1379
|
+
var CurrencyCircleDollar = React118__namespace.default.forwardRef(
|
|
1376
1380
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1377
1381
|
"svg",
|
|
1378
1382
|
{
|
|
@@ -1394,7 +1398,7 @@ var CurrencyCircleDollar = React116__namespace.default.forwardRef(
|
|
|
1394
1398
|
)
|
|
1395
1399
|
);
|
|
1396
1400
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1397
|
-
var DotsSixVerticalIcon =
|
|
1401
|
+
var DotsSixVerticalIcon = React118__namespace.forwardRef(
|
|
1398
1402
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1399
1403
|
"svg",
|
|
1400
1404
|
{
|
|
@@ -1416,7 +1420,7 @@ var DotsSixVerticalIcon = React116__namespace.forwardRef(
|
|
|
1416
1420
|
)
|
|
1417
1421
|
);
|
|
1418
1422
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1419
|
-
var DotsThree =
|
|
1423
|
+
var DotsThree = React118__namespace.forwardRef(
|
|
1420
1424
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1421
1425
|
"svg",
|
|
1422
1426
|
{
|
|
@@ -1438,7 +1442,7 @@ var DotsThree = React116__namespace.forwardRef(
|
|
|
1438
1442
|
)
|
|
1439
1443
|
);
|
|
1440
1444
|
DotsThree.displayName = "DotsThree";
|
|
1441
|
-
var DotsThreeVertical =
|
|
1445
|
+
var DotsThreeVertical = React118__namespace.forwardRef(
|
|
1442
1446
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1443
1447
|
"svg",
|
|
1444
1448
|
{
|
|
@@ -1460,7 +1464,7 @@ var DotsThreeVertical = React116__namespace.forwardRef(
|
|
|
1460
1464
|
)
|
|
1461
1465
|
);
|
|
1462
1466
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1463
|
-
var FacebookLogo =
|
|
1467
|
+
var FacebookLogo = React118__namespace.forwardRef(
|
|
1464
1468
|
({ size = 20, ...props }, ref) => {
|
|
1465
1469
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1466
1470
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1489,7 +1493,7 @@ var FacebookLogo = React116__namespace.forwardRef(
|
|
|
1489
1493
|
}
|
|
1490
1494
|
);
|
|
1491
1495
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1492
|
-
var FolderIcon =
|
|
1496
|
+
var FolderIcon = React118__namespace.forwardRef(
|
|
1493
1497
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1494
1498
|
"svg",
|
|
1495
1499
|
{
|
|
@@ -1511,7 +1515,7 @@ var FolderIcon = React116__namespace.forwardRef(
|
|
|
1511
1515
|
)
|
|
1512
1516
|
);
|
|
1513
1517
|
FolderIcon.displayName = "FolderIcon";
|
|
1514
|
-
var FolderSimpleLockIcon =
|
|
1518
|
+
var FolderSimpleLockIcon = React118__namespace.forwardRef(
|
|
1515
1519
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1516
1520
|
"svg",
|
|
1517
1521
|
{
|
|
@@ -1533,7 +1537,7 @@ var FolderSimpleLockIcon = React116__namespace.forwardRef(
|
|
|
1533
1537
|
)
|
|
1534
1538
|
);
|
|
1535
1539
|
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1536
|
-
var Gear =
|
|
1540
|
+
var Gear = React118__namespace.forwardRef(
|
|
1537
1541
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1538
1542
|
"svg",
|
|
1539
1543
|
{
|
|
@@ -1555,7 +1559,7 @@ var Gear = React116__namespace.forwardRef(
|
|
|
1555
1559
|
)
|
|
1556
1560
|
);
|
|
1557
1561
|
Gear.displayName = "Gear";
|
|
1558
|
-
var GearSix =
|
|
1562
|
+
var GearSix = React118__namespace.forwardRef(
|
|
1559
1563
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1560
1564
|
"svg",
|
|
1561
1565
|
{
|
|
@@ -1577,7 +1581,7 @@ var GearSix = React116__namespace.forwardRef(
|
|
|
1577
1581
|
)
|
|
1578
1582
|
);
|
|
1579
1583
|
GearSix.displayName = "GearSix";
|
|
1580
|
-
var GitCommit =
|
|
1584
|
+
var GitCommit = React118__namespace.forwardRef(
|
|
1581
1585
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1582
1586
|
"svg",
|
|
1583
1587
|
{
|
|
@@ -1599,7 +1603,7 @@ var GitCommit = React116__namespace.forwardRef(
|
|
|
1599
1603
|
)
|
|
1600
1604
|
);
|
|
1601
1605
|
GitCommit.displayName = "GitCommit";
|
|
1602
|
-
var Headset =
|
|
1606
|
+
var Headset = React118__namespace.forwardRef(
|
|
1603
1607
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1604
1608
|
"svg",
|
|
1605
1609
|
{
|
|
@@ -1621,7 +1625,7 @@ var Headset = React116__namespace.forwardRef(
|
|
|
1621
1625
|
)
|
|
1622
1626
|
);
|
|
1623
1627
|
Headset.displayName = "Headset";
|
|
1624
|
-
var ImageIcon =
|
|
1628
|
+
var ImageIcon = React118__namespace.forwardRef(
|
|
1625
1629
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1626
1630
|
"svg",
|
|
1627
1631
|
{
|
|
@@ -1643,7 +1647,7 @@ var ImageIcon = React116__namespace.forwardRef(
|
|
|
1643
1647
|
)
|
|
1644
1648
|
);
|
|
1645
1649
|
ImageIcon.displayName = "ImageIcon";
|
|
1646
|
-
var InstagramLogo =
|
|
1650
|
+
var InstagramLogo = React118__namespace.forwardRef(
|
|
1647
1651
|
({ size = 20, ...props }, ref) => {
|
|
1648
1652
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1649
1653
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1672,7 +1676,7 @@ var InstagramLogo = React116__namespace.forwardRef(
|
|
|
1672
1676
|
}
|
|
1673
1677
|
);
|
|
1674
1678
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1675
|
-
var KeyIcon =
|
|
1679
|
+
var KeyIcon = React118__namespace.forwardRef(
|
|
1676
1680
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1677
1681
|
"svg",
|
|
1678
1682
|
{
|
|
@@ -1694,7 +1698,7 @@ var KeyIcon = React116__namespace.forwardRef(
|
|
|
1694
1698
|
)
|
|
1695
1699
|
);
|
|
1696
1700
|
KeyIcon.displayName = "KeyIcon";
|
|
1697
|
-
var LinkIcon =
|
|
1701
|
+
var LinkIcon = React118__namespace.forwardRef(
|
|
1698
1702
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1699
1703
|
"svg",
|
|
1700
1704
|
{
|
|
@@ -1716,7 +1720,7 @@ var LinkIcon = React116__namespace.forwardRef(
|
|
|
1716
1720
|
)
|
|
1717
1721
|
);
|
|
1718
1722
|
LinkIcon.displayName = "LinkIcon";
|
|
1719
|
-
var LinkSimple =
|
|
1723
|
+
var LinkSimple = React118__namespace.forwardRef(
|
|
1720
1724
|
({ size = 20, ...props }, ref) => {
|
|
1721
1725
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1722
1726
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1745,7 +1749,7 @@ var LinkSimple = React116__namespace.forwardRef(
|
|
|
1745
1749
|
}
|
|
1746
1750
|
);
|
|
1747
1751
|
LinkSimple.displayName = "LinkSimple";
|
|
1748
|
-
var LockSimple =
|
|
1752
|
+
var LockSimple = React118__namespace.default.forwardRef(
|
|
1749
1753
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1750
1754
|
"svg",
|
|
1751
1755
|
{
|
|
@@ -1767,7 +1771,7 @@ var LockSimple = React116__namespace.default.forwardRef(
|
|
|
1767
1771
|
)
|
|
1768
1772
|
);
|
|
1769
1773
|
LockSimple.displayName = "LockSimple";
|
|
1770
|
-
var Logo =
|
|
1774
|
+
var Logo = React118__namespace.forwardRef(
|
|
1771
1775
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1772
1776
|
"svg",
|
|
1773
1777
|
{
|
|
@@ -2241,7 +2245,7 @@ var Logo = React116__namespace.forwardRef(
|
|
|
2241
2245
|
)
|
|
2242
2246
|
);
|
|
2243
2247
|
Logo.displayName = "Logo";
|
|
2244
|
-
var MagnifyingGlass =
|
|
2248
|
+
var MagnifyingGlass = React118__namespace.forwardRef(
|
|
2245
2249
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2246
2250
|
"svg",
|
|
2247
2251
|
{
|
|
@@ -2263,7 +2267,7 @@ var MagnifyingGlass = React116__namespace.forwardRef(
|
|
|
2263
2267
|
)
|
|
2264
2268
|
);
|
|
2265
2269
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2266
|
-
var MapPin =
|
|
2270
|
+
var MapPin = React118__namespace.forwardRef(
|
|
2267
2271
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2268
2272
|
"svg",
|
|
2269
2273
|
{
|
|
@@ -2285,7 +2289,7 @@ var MapPin = React116__namespace.forwardRef(
|
|
|
2285
2289
|
)
|
|
2286
2290
|
);
|
|
2287
2291
|
MapPin.displayName = "MapPin";
|
|
2288
|
-
var Microphone =
|
|
2292
|
+
var Microphone = React118__namespace.forwardRef(
|
|
2289
2293
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2290
2294
|
"svg",
|
|
2291
2295
|
{
|
|
@@ -2307,7 +2311,7 @@ var Microphone = React116__namespace.forwardRef(
|
|
|
2307
2311
|
)
|
|
2308
2312
|
);
|
|
2309
2313
|
Microphone.displayName = "Microphone";
|
|
2310
|
-
var Minus =
|
|
2314
|
+
var Minus = React118__namespace.forwardRef(
|
|
2311
2315
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2312
2316
|
"svg",
|
|
2313
2317
|
{
|
|
@@ -2329,7 +2333,7 @@ var Minus = React116__namespace.forwardRef(
|
|
|
2329
2333
|
)
|
|
2330
2334
|
);
|
|
2331
2335
|
Minus.displayName = "Minus";
|
|
2332
|
-
var MinusCircleIcon =
|
|
2336
|
+
var MinusCircleIcon = React118__namespace.forwardRef(
|
|
2333
2337
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2334
2338
|
"svg",
|
|
2335
2339
|
{
|
|
@@ -2351,7 +2355,7 @@ var MinusCircleIcon = React116__namespace.forwardRef(
|
|
|
2351
2355
|
)
|
|
2352
2356
|
);
|
|
2353
2357
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2354
|
-
var PackageIcon =
|
|
2358
|
+
var PackageIcon = React118__namespace.forwardRef(
|
|
2355
2359
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2356
2360
|
"svg",
|
|
2357
2361
|
{
|
|
@@ -2373,7 +2377,7 @@ var PackageIcon = React116__namespace.forwardRef(
|
|
|
2373
2377
|
)
|
|
2374
2378
|
);
|
|
2375
2379
|
PackageIcon.displayName = "PackageIcon";
|
|
2376
|
-
var Paperclip =
|
|
2380
|
+
var Paperclip = React118__namespace.forwardRef(
|
|
2377
2381
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2378
2382
|
"svg",
|
|
2379
2383
|
{
|
|
@@ -2395,7 +2399,7 @@ var Paperclip = React116__namespace.forwardRef(
|
|
|
2395
2399
|
)
|
|
2396
2400
|
);
|
|
2397
2401
|
Paperclip.displayName = "Paperclip";
|
|
2398
|
-
var PaperPlane =
|
|
2402
|
+
var PaperPlane = React118__namespace.forwardRef(
|
|
2399
2403
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2400
2404
|
"svg",
|
|
2401
2405
|
{
|
|
@@ -2417,7 +2421,7 @@ var PaperPlane = React116__namespace.forwardRef(
|
|
|
2417
2421
|
)
|
|
2418
2422
|
);
|
|
2419
2423
|
PaperPlane.displayName = "PaperPlane";
|
|
2420
|
-
var PaperPlaneTilt =
|
|
2424
|
+
var PaperPlaneTilt = React118__namespace.forwardRef(
|
|
2421
2425
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2422
2426
|
"svg",
|
|
2423
2427
|
{
|
|
@@ -2439,7 +2443,7 @@ var PaperPlaneTilt = React116__namespace.forwardRef(
|
|
|
2439
2443
|
)
|
|
2440
2444
|
);
|
|
2441
2445
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2442
|
-
var PencilSimple =
|
|
2446
|
+
var PencilSimple = React118__namespace.forwardRef(
|
|
2443
2447
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2444
2448
|
"svg",
|
|
2445
2449
|
{
|
|
@@ -2461,7 +2465,7 @@ var PencilSimple = React116__namespace.forwardRef(
|
|
|
2461
2465
|
)
|
|
2462
2466
|
);
|
|
2463
2467
|
PencilSimple.displayName = "PencilSimple";
|
|
2464
|
-
var PlugsRegular =
|
|
2468
|
+
var PlugsRegular = React118__namespace.forwardRef(
|
|
2465
2469
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2466
2470
|
"svg",
|
|
2467
2471
|
{
|
|
@@ -2483,7 +2487,7 @@ var PlugsRegular = React116__namespace.forwardRef(
|
|
|
2483
2487
|
)
|
|
2484
2488
|
);
|
|
2485
2489
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2486
|
-
var ShoppingCartIcon =
|
|
2490
|
+
var ShoppingCartIcon = React118__namespace.forwardRef(
|
|
2487
2491
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2488
2492
|
"svg",
|
|
2489
2493
|
{
|
|
@@ -2505,7 +2509,7 @@ var ShoppingCartIcon = React116__namespace.forwardRef(
|
|
|
2505
2509
|
)
|
|
2506
2510
|
);
|
|
2507
2511
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2508
|
-
var Plus =
|
|
2512
|
+
var Plus = React118__namespace.forwardRef(
|
|
2509
2513
|
({ size = 20, ...props }, ref) => {
|
|
2510
2514
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2511
2515
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2534,7 +2538,7 @@ var Plus = React116__namespace.forwardRef(
|
|
|
2534
2538
|
}
|
|
2535
2539
|
);
|
|
2536
2540
|
Plus.displayName = "Plus";
|
|
2537
|
-
var RecordIcon =
|
|
2541
|
+
var RecordIcon = React118__namespace.forwardRef(
|
|
2538
2542
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2539
2543
|
"svg",
|
|
2540
2544
|
{
|
|
@@ -2556,7 +2560,7 @@ var RecordIcon = React116__namespace.forwardRef(
|
|
|
2556
2560
|
)
|
|
2557
2561
|
);
|
|
2558
2562
|
RecordIcon.displayName = "RecordIcon";
|
|
2559
|
-
var SidebarSimple =
|
|
2563
|
+
var SidebarSimple = React118__namespace.forwardRef(
|
|
2560
2564
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2561
2565
|
"svg",
|
|
2562
2566
|
{
|
|
@@ -2578,7 +2582,7 @@ var SidebarSimple = React116__namespace.forwardRef(
|
|
|
2578
2582
|
)
|
|
2579
2583
|
);
|
|
2580
2584
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2581
|
-
var SignOut =
|
|
2585
|
+
var SignOut = React118__namespace.forwardRef(
|
|
2582
2586
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2583
2587
|
"svg",
|
|
2584
2588
|
{
|
|
@@ -2600,7 +2604,7 @@ var SignOut = React116__namespace.forwardRef(
|
|
|
2600
2604
|
)
|
|
2601
2605
|
);
|
|
2602
2606
|
SignOut.displayName = "SignOut";
|
|
2603
|
-
var Storefront =
|
|
2607
|
+
var Storefront = React118__namespace.forwardRef(
|
|
2604
2608
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2605
2609
|
"svg",
|
|
2606
2610
|
{
|
|
@@ -2622,7 +2626,7 @@ var Storefront = React116__namespace.forwardRef(
|
|
|
2622
2626
|
)
|
|
2623
2627
|
);
|
|
2624
2628
|
Storefront.displayName = "Storefront";
|
|
2625
|
-
var Tag =
|
|
2629
|
+
var Tag = React118__namespace.forwardRef(
|
|
2626
2630
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2627
2631
|
"svg",
|
|
2628
2632
|
{
|
|
@@ -2644,7 +2648,7 @@ var Tag = React116__namespace.forwardRef(
|
|
|
2644
2648
|
)
|
|
2645
2649
|
);
|
|
2646
2650
|
Tag.displayName = "Tag";
|
|
2647
|
-
var Ticket =
|
|
2651
|
+
var Ticket = React118__namespace.forwardRef(
|
|
2648
2652
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2649
2653
|
"svg",
|
|
2650
2654
|
{
|
|
@@ -2666,7 +2670,7 @@ var Ticket = React116__namespace.forwardRef(
|
|
|
2666
2670
|
)
|
|
2667
2671
|
);
|
|
2668
2672
|
Ticket.displayName = "Ticket";
|
|
2669
|
-
var Trash =
|
|
2673
|
+
var Trash = React118__namespace.forwardRef(
|
|
2670
2674
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2671
2675
|
"svg",
|
|
2672
2676
|
{
|
|
@@ -2688,7 +2692,7 @@ var Trash = React116__namespace.forwardRef(
|
|
|
2688
2692
|
)
|
|
2689
2693
|
);
|
|
2690
2694
|
Trash.displayName = "Trash";
|
|
2691
|
-
var UserCircle =
|
|
2695
|
+
var UserCircle = React118__namespace.forwardRef(
|
|
2692
2696
|
({ size = 24, ...props }, ref) => {
|
|
2693
2697
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2694
2698
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2717,7 +2721,7 @@ var UserCircle = React116__namespace.forwardRef(
|
|
|
2717
2721
|
}
|
|
2718
2722
|
);
|
|
2719
2723
|
UserCircle.displayName = "UserCircle";
|
|
2720
|
-
var UserIcon =
|
|
2724
|
+
var UserIcon = React118__namespace.forwardRef(
|
|
2721
2725
|
({ size = 24, ...props }, ref) => {
|
|
2722
2726
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2723
2727
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2746,7 +2750,7 @@ var UserIcon = React116__namespace.forwardRef(
|
|
|
2746
2750
|
}
|
|
2747
2751
|
);
|
|
2748
2752
|
UserIcon.displayName = "UserIcon";
|
|
2749
|
-
var Users =
|
|
2753
|
+
var Users = React118__namespace.forwardRef(
|
|
2750
2754
|
({ size = 20, ...props }, ref) => {
|
|
2751
2755
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2752
2756
|
props,
|
|
@@ -2775,7 +2779,7 @@ var Users = React116__namespace.forwardRef(
|
|
|
2775
2779
|
}
|
|
2776
2780
|
);
|
|
2777
2781
|
Users.displayName = "Users";
|
|
2778
|
-
var VideoCamera =
|
|
2782
|
+
var VideoCamera = React118__namespace.forwardRef(
|
|
2779
2783
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2780
2784
|
"svg",
|
|
2781
2785
|
{
|
|
@@ -2797,7 +2801,7 @@ var VideoCamera = React116__namespace.forwardRef(
|
|
|
2797
2801
|
)
|
|
2798
2802
|
);
|
|
2799
2803
|
VideoCamera.displayName = "VideoCamera";
|
|
2800
|
-
var WhatsAppLogo =
|
|
2804
|
+
var WhatsAppLogo = React118__namespace.forwardRef(
|
|
2801
2805
|
({ size = 20, ...props }, ref) => {
|
|
2802
2806
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2803
2807
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2826,7 +2830,7 @@ var WhatsAppLogo = React116__namespace.forwardRef(
|
|
|
2826
2830
|
}
|
|
2827
2831
|
);
|
|
2828
2832
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2829
|
-
var WarningOctagon =
|
|
2833
|
+
var WarningOctagon = React118__namespace.forwardRef(
|
|
2830
2834
|
({ size = 20, ...props }, ref) => {
|
|
2831
2835
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2832
2836
|
props,
|
|
@@ -2855,7 +2859,7 @@ var WarningOctagon = React116__namespace.forwardRef(
|
|
|
2855
2859
|
}
|
|
2856
2860
|
);
|
|
2857
2861
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2858
|
-
var WarningTriangle =
|
|
2862
|
+
var WarningTriangle = React118__namespace.forwardRef(
|
|
2859
2863
|
({ size = 20, ...props }, ref) => {
|
|
2860
2864
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2861
2865
|
props,
|
|
@@ -2884,7 +2888,7 @@ var WarningTriangle = React116__namespace.forwardRef(
|
|
|
2884
2888
|
}
|
|
2885
2889
|
);
|
|
2886
2890
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2887
|
-
var Waveform =
|
|
2891
|
+
var Waveform = React118__namespace.forwardRef(
|
|
2888
2892
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2889
2893
|
"svg",
|
|
2890
2894
|
{
|
|
@@ -2906,7 +2910,7 @@ var Waveform = React116__namespace.forwardRef(
|
|
|
2906
2910
|
)
|
|
2907
2911
|
);
|
|
2908
2912
|
Waveform.displayName = "Waveform";
|
|
2909
|
-
var WrenchIcon =
|
|
2913
|
+
var WrenchIcon = React118__namespace.forwardRef(
|
|
2910
2914
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2911
2915
|
"svg",
|
|
2912
2916
|
{
|
|
@@ -2928,7 +2932,7 @@ var WrenchIcon = React116__namespace.forwardRef(
|
|
|
2928
2932
|
)
|
|
2929
2933
|
);
|
|
2930
2934
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2931
|
-
var XIcon =
|
|
2935
|
+
var XIcon = React118__namespace.forwardRef(
|
|
2932
2936
|
({ size = 24, ...props }, ref) => {
|
|
2933
2937
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2934
2938
|
props,
|
|
@@ -2959,13 +2963,50 @@ var XIcon = React116__namespace.forwardRef(
|
|
|
2959
2963
|
}
|
|
2960
2964
|
);
|
|
2961
2965
|
XIcon.displayName = "XIcon";
|
|
2966
|
+
var DownloadIcon = React118__namespace.forwardRef(
|
|
2967
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2968
|
+
"svg",
|
|
2969
|
+
{
|
|
2970
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2971
|
+
ref,
|
|
2972
|
+
width: size,
|
|
2973
|
+
height: size,
|
|
2974
|
+
fill: "none",
|
|
2975
|
+
viewBox: "0 0 24 24",
|
|
2976
|
+
children: [
|
|
2977
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Download" }),
|
|
2978
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M21 13.5v6a.75.75 0 0 1-.75.75H3.75A.75.75 0 0 1 3 19.5v-6a.75.75 0 1 1 1.5 0v5.25h15V13.5a.75.75 0 1 1 1.5 0M8.78 7.282l2.47-2.47v8.69a.75.75 0 1 0 1.5 0V4.81l2.47 2.47a.75.75 0 1 0 1.06-1.061l-3.75-3.75a.75.75 0 0 0-1.06 0L7.72 6.22a.75.75 0 0 0 1.06 1.061" })
|
|
2979
|
+
]
|
|
2980
|
+
}
|
|
2981
|
+
)
|
|
2982
|
+
);
|
|
2983
|
+
DownloadIcon.displayName = "DownloadIcon";
|
|
2984
|
+
var TextIcon = React118__namespace.forwardRef(
|
|
2985
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2986
|
+
"svg",
|
|
2987
|
+
{
|
|
2988
|
+
ref,
|
|
2989
|
+
width: size,
|
|
2990
|
+
height: size,
|
|
2991
|
+
...props,
|
|
2992
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2993
|
+
fill: "none",
|
|
2994
|
+
viewBox: "0 0 24 24",
|
|
2995
|
+
children: [
|
|
2996
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Text" }),
|
|
2997
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M19.5 5.25v3a.75.75 0 1 1-1.5 0V6h-5.25v12H15a.75.75 0 1 1 0 1.5H9A.75.75 0 1 1 9 18h2.25V6H6v2.25a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75" })
|
|
2998
|
+
]
|
|
2999
|
+
}
|
|
3000
|
+
)
|
|
3001
|
+
);
|
|
3002
|
+
TextIcon.displayName = "TextIcon";
|
|
2962
3003
|
|
|
2963
3004
|
// src/icons/file-icons/aep.tsx
|
|
2964
3005
|
var aep_exports = {};
|
|
2965
3006
|
__export(aep_exports, {
|
|
2966
3007
|
AEP: () => AEP
|
|
2967
3008
|
});
|
|
2968
|
-
var AEP =
|
|
3009
|
+
var AEP = React118__namespace.forwardRef(
|
|
2969
3010
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2970
3011
|
"svg",
|
|
2971
3012
|
{
|
|
@@ -3013,7 +3054,7 @@ var ai_exports = {};
|
|
|
3013
3054
|
__export(ai_exports, {
|
|
3014
3055
|
AI: () => AI
|
|
3015
3056
|
});
|
|
3016
|
-
var AI =
|
|
3057
|
+
var AI = React118__namespace.forwardRef(
|
|
3017
3058
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3018
3059
|
"svg",
|
|
3019
3060
|
{
|
|
@@ -3061,7 +3102,7 @@ var avi_exports = {};
|
|
|
3061
3102
|
__export(avi_exports, {
|
|
3062
3103
|
AVI: () => AVI
|
|
3063
3104
|
});
|
|
3064
|
-
var AVI =
|
|
3105
|
+
var AVI = React118__namespace.forwardRef(
|
|
3065
3106
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3066
3107
|
"svg",
|
|
3067
3108
|
{
|
|
@@ -3109,7 +3150,7 @@ var blend_exports = {};
|
|
|
3109
3150
|
__export(blend_exports, {
|
|
3110
3151
|
Blend: () => Blend
|
|
3111
3152
|
});
|
|
3112
|
-
var Blend =
|
|
3153
|
+
var Blend = React118__namespace.forwardRef(
|
|
3113
3154
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3114
3155
|
"svg",
|
|
3115
3156
|
{
|
|
@@ -3157,7 +3198,7 @@ var c4d_exports = {};
|
|
|
3157
3198
|
__export(c4d_exports, {
|
|
3158
3199
|
C4D: () => C4D
|
|
3159
3200
|
});
|
|
3160
|
-
var C4D =
|
|
3201
|
+
var C4D = React118__namespace.forwardRef(
|
|
3161
3202
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3162
3203
|
"svg",
|
|
3163
3204
|
{
|
|
@@ -3205,7 +3246,7 @@ var cdr_exports = {};
|
|
|
3205
3246
|
__export(cdr_exports, {
|
|
3206
3247
|
CDR: () => CDR
|
|
3207
3248
|
});
|
|
3208
|
-
var CDR =
|
|
3249
|
+
var CDR = React118__namespace.forwardRef(
|
|
3209
3250
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3210
3251
|
"svg",
|
|
3211
3252
|
{
|
|
@@ -3253,7 +3294,7 @@ var css_exports = {};
|
|
|
3253
3294
|
__export(css_exports, {
|
|
3254
3295
|
CSS: () => CSS
|
|
3255
3296
|
});
|
|
3256
|
-
var CSS =
|
|
3297
|
+
var CSS = React118__namespace.forwardRef(
|
|
3257
3298
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3258
3299
|
"svg",
|
|
3259
3300
|
{
|
|
@@ -3301,7 +3342,7 @@ var csv_exports = {};
|
|
|
3301
3342
|
__export(csv_exports, {
|
|
3302
3343
|
CSV: () => CSV
|
|
3303
3344
|
});
|
|
3304
|
-
var CSV =
|
|
3345
|
+
var CSV = React118__namespace.forwardRef(
|
|
3305
3346
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3306
3347
|
"svg",
|
|
3307
3348
|
{
|
|
@@ -3349,7 +3390,7 @@ var dmg_exports = {};
|
|
|
3349
3390
|
__export(dmg_exports, {
|
|
3350
3391
|
DMG: () => DMG
|
|
3351
3392
|
});
|
|
3352
|
-
var DMG =
|
|
3393
|
+
var DMG = React118__namespace.forwardRef(
|
|
3353
3394
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3354
3395
|
"svg",
|
|
3355
3396
|
{
|
|
@@ -3397,7 +3438,7 @@ var doc_exports = {};
|
|
|
3397
3438
|
__export(doc_exports, {
|
|
3398
3439
|
DOC: () => DOC
|
|
3399
3440
|
});
|
|
3400
|
-
var DOC =
|
|
3441
|
+
var DOC = React118__namespace.forwardRef(
|
|
3401
3442
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3402
3443
|
"svg",
|
|
3403
3444
|
{
|
|
@@ -3445,7 +3486,7 @@ var exe_exports = {};
|
|
|
3445
3486
|
__export(exe_exports, {
|
|
3446
3487
|
EXE: () => EXE
|
|
3447
3488
|
});
|
|
3448
|
-
var EXE =
|
|
3489
|
+
var EXE = React118__namespace.forwardRef(
|
|
3449
3490
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3450
3491
|
"svg",
|
|
3451
3492
|
{
|
|
@@ -3493,7 +3534,7 @@ var fig_exports = {};
|
|
|
3493
3534
|
__export(fig_exports, {
|
|
3494
3535
|
Fig: () => Fig
|
|
3495
3536
|
});
|
|
3496
|
-
var Fig =
|
|
3537
|
+
var Fig = React118__namespace.forwardRef(
|
|
3497
3538
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3498
3539
|
"svg",
|
|
3499
3540
|
{
|
|
@@ -3541,7 +3582,7 @@ var gif_exports = {};
|
|
|
3541
3582
|
__export(gif_exports, {
|
|
3542
3583
|
GIF: () => GIF
|
|
3543
3584
|
});
|
|
3544
|
-
var GIF =
|
|
3585
|
+
var GIF = React118__namespace.forwardRef(
|
|
3545
3586
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3546
3587
|
"svg",
|
|
3547
3588
|
{
|
|
@@ -3589,7 +3630,7 @@ var html_exports = {};
|
|
|
3589
3630
|
__export(html_exports, {
|
|
3590
3631
|
HTML: () => HTML
|
|
3591
3632
|
});
|
|
3592
|
-
var HTML =
|
|
3633
|
+
var HTML = React118__namespace.forwardRef(
|
|
3593
3634
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3594
3635
|
"svg",
|
|
3595
3636
|
{
|
|
@@ -3637,7 +3678,7 @@ var ico_exports = {};
|
|
|
3637
3678
|
__export(ico_exports, {
|
|
3638
3679
|
ICO: () => ICO
|
|
3639
3680
|
});
|
|
3640
|
-
var ICO =
|
|
3681
|
+
var ICO = React118__namespace.forwardRef(
|
|
3641
3682
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3642
3683
|
"svg",
|
|
3643
3684
|
{
|
|
@@ -3685,7 +3726,7 @@ var java_exports = {};
|
|
|
3685
3726
|
__export(java_exports, {
|
|
3686
3727
|
Java: () => Java
|
|
3687
3728
|
});
|
|
3688
|
-
var Java =
|
|
3729
|
+
var Java = React118__namespace.forwardRef(
|
|
3689
3730
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3690
3731
|
"svg",
|
|
3691
3732
|
{
|
|
@@ -3733,7 +3774,7 @@ var jpeg_exports = {};
|
|
|
3733
3774
|
__export(jpeg_exports, {
|
|
3734
3775
|
JPEG: () => JPEG
|
|
3735
3776
|
});
|
|
3736
|
-
var JPEG =
|
|
3777
|
+
var JPEG = React118__namespace.forwardRef(
|
|
3737
3778
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3738
3779
|
"svg",
|
|
3739
3780
|
{
|
|
@@ -3781,7 +3822,7 @@ var jpg_exports = {};
|
|
|
3781
3822
|
__export(jpg_exports, {
|
|
3782
3823
|
JPG: () => JPG
|
|
3783
3824
|
});
|
|
3784
|
-
var JPG =
|
|
3825
|
+
var JPG = React118__namespace.forwardRef(
|
|
3785
3826
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3786
3827
|
"svg",
|
|
3787
3828
|
{
|
|
@@ -3829,7 +3870,7 @@ var js_exports = {};
|
|
|
3829
3870
|
__export(js_exports, {
|
|
3830
3871
|
JS: () => JS
|
|
3831
3872
|
});
|
|
3832
|
-
var JS =
|
|
3873
|
+
var JS = React118__namespace.forwardRef(
|
|
3833
3874
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3834
3875
|
"svg",
|
|
3835
3876
|
{
|
|
@@ -3877,7 +3918,7 @@ var json_exports = {};
|
|
|
3877
3918
|
__export(json_exports, {
|
|
3878
3919
|
JSON: () => JSON
|
|
3879
3920
|
});
|
|
3880
|
-
var JSON =
|
|
3921
|
+
var JSON = React118__namespace.forwardRef(
|
|
3881
3922
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3882
3923
|
"svg",
|
|
3883
3924
|
{
|
|
@@ -3925,7 +3966,7 @@ var mov_exports = {};
|
|
|
3925
3966
|
__export(mov_exports, {
|
|
3926
3967
|
MOV: () => MOV
|
|
3927
3968
|
});
|
|
3928
|
-
var MOV =
|
|
3969
|
+
var MOV = React118__namespace.forwardRef(
|
|
3929
3970
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3930
3971
|
"svg",
|
|
3931
3972
|
{
|
|
@@ -3973,7 +4014,7 @@ var mp3_exports = {};
|
|
|
3973
4014
|
__export(mp3_exports, {
|
|
3974
4015
|
MP3: () => MP3
|
|
3975
4016
|
});
|
|
3976
|
-
var MP3 =
|
|
4017
|
+
var MP3 = React118__namespace.forwardRef(
|
|
3977
4018
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3978
4019
|
"svg",
|
|
3979
4020
|
{
|
|
@@ -4021,7 +4062,7 @@ var mp4_exports = {};
|
|
|
4021
4062
|
__export(mp4_exports, {
|
|
4022
4063
|
MP4: () => MP4
|
|
4023
4064
|
});
|
|
4024
|
-
var MP4 =
|
|
4065
|
+
var MP4 = React118__namespace.forwardRef(
|
|
4025
4066
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4026
4067
|
"svg",
|
|
4027
4068
|
{
|
|
@@ -4069,7 +4110,7 @@ var mpg_exports = {};
|
|
|
4069
4110
|
__export(mpg_exports, {
|
|
4070
4111
|
MPG: () => MPG
|
|
4071
4112
|
});
|
|
4072
|
-
var MPG =
|
|
4113
|
+
var MPG = React118__namespace.forwardRef(
|
|
4073
4114
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4074
4115
|
"svg",
|
|
4075
4116
|
{
|
|
@@ -4117,7 +4158,7 @@ var pdf_exports = {};
|
|
|
4117
4158
|
__export(pdf_exports, {
|
|
4118
4159
|
PDF: () => PDF
|
|
4119
4160
|
});
|
|
4120
|
-
var PDF =
|
|
4161
|
+
var PDF = React118__namespace.forwardRef(
|
|
4121
4162
|
({ ...props }, ref) => {
|
|
4122
4163
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4123
4164
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -4170,7 +4211,7 @@ var png_exports = {};
|
|
|
4170
4211
|
__export(png_exports, {
|
|
4171
4212
|
PNG: () => PNG
|
|
4172
4213
|
});
|
|
4173
|
-
var PNG =
|
|
4214
|
+
var PNG = React118__namespace.forwardRef(
|
|
4174
4215
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4175
4216
|
"svg",
|
|
4176
4217
|
{
|
|
@@ -4218,7 +4259,7 @@ var ppt_exports = {};
|
|
|
4218
4259
|
__export(ppt_exports, {
|
|
4219
4260
|
PPT: () => PPT
|
|
4220
4261
|
});
|
|
4221
|
-
var PPT =
|
|
4262
|
+
var PPT = React118__namespace.forwardRef(
|
|
4222
4263
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4223
4264
|
"svg",
|
|
4224
4265
|
{
|
|
@@ -4266,7 +4307,7 @@ var psd_exports = {};
|
|
|
4266
4307
|
__export(psd_exports, {
|
|
4267
4308
|
PSD: () => PSD
|
|
4268
4309
|
});
|
|
4269
|
-
var PSD =
|
|
4310
|
+
var PSD = React118__namespace.forwardRef(
|
|
4270
4311
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4271
4312
|
"svg",
|
|
4272
4313
|
{
|
|
@@ -4314,7 +4355,7 @@ var rar_exports = {};
|
|
|
4314
4355
|
__export(rar_exports, {
|
|
4315
4356
|
Rar: () => Rar
|
|
4316
4357
|
});
|
|
4317
|
-
var Rar =
|
|
4358
|
+
var Rar = React118__namespace.forwardRef(
|
|
4318
4359
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4319
4360
|
"svg",
|
|
4320
4361
|
{
|
|
@@ -4362,7 +4403,7 @@ var sketch_exports = {};
|
|
|
4362
4403
|
__export(sketch_exports, {
|
|
4363
4404
|
Sketch: () => Sketch
|
|
4364
4405
|
});
|
|
4365
|
-
var Sketch =
|
|
4406
|
+
var Sketch = React118__namespace.forwardRef(
|
|
4366
4407
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4367
4408
|
"svg",
|
|
4368
4409
|
{
|
|
@@ -4410,7 +4451,7 @@ var svg_exports = {};
|
|
|
4410
4451
|
__export(svg_exports, {
|
|
4411
4452
|
SVG: () => SVG
|
|
4412
4453
|
});
|
|
4413
|
-
var SVG =
|
|
4454
|
+
var SVG = React118__namespace.forwardRef(
|
|
4414
4455
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4415
4456
|
"svg",
|
|
4416
4457
|
{
|
|
@@ -4458,7 +4499,7 @@ var tiff_exports = {};
|
|
|
4458
4499
|
__export(tiff_exports, {
|
|
4459
4500
|
TIFF: () => TIFF
|
|
4460
4501
|
});
|
|
4461
|
-
var TIFF =
|
|
4502
|
+
var TIFF = React118__namespace.forwardRef(
|
|
4462
4503
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4463
4504
|
"svg",
|
|
4464
4505
|
{
|
|
@@ -4506,7 +4547,7 @@ var txt_exports = {};
|
|
|
4506
4547
|
__export(txt_exports, {
|
|
4507
4548
|
TXT: () => TXT
|
|
4508
4549
|
});
|
|
4509
|
-
var TXT =
|
|
4550
|
+
var TXT = React118__namespace.forwardRef(
|
|
4510
4551
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4511
4552
|
"svg",
|
|
4512
4553
|
{
|
|
@@ -4554,7 +4595,7 @@ var wav_exports = {};
|
|
|
4554
4595
|
__export(wav_exports, {
|
|
4555
4596
|
WAV: () => WAV
|
|
4556
4597
|
});
|
|
4557
|
-
var WAV =
|
|
4598
|
+
var WAV = React118__namespace.forwardRef(
|
|
4558
4599
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4559
4600
|
"svg",
|
|
4560
4601
|
{
|
|
@@ -4602,7 +4643,7 @@ var webp_exports = {};
|
|
|
4602
4643
|
__export(webp_exports, {
|
|
4603
4644
|
WEBP: () => WEBP
|
|
4604
4645
|
});
|
|
4605
|
-
var WEBP =
|
|
4646
|
+
var WEBP = React118__namespace.forwardRef(
|
|
4606
4647
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4607
4648
|
"svg",
|
|
4608
4649
|
{
|
|
@@ -4650,7 +4691,7 @@ var xls_exports = {};
|
|
|
4650
4691
|
__export(xls_exports, {
|
|
4651
4692
|
XLS: () => XLS
|
|
4652
4693
|
});
|
|
4653
|
-
var XLS =
|
|
4694
|
+
var XLS = React118__namespace.forwardRef(
|
|
4654
4695
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4655
4696
|
"svg",
|
|
4656
4697
|
{
|
|
@@ -4698,7 +4739,7 @@ var zip_exports = {};
|
|
|
4698
4739
|
__export(zip_exports, {
|
|
4699
4740
|
Zip: () => Zip
|
|
4700
4741
|
});
|
|
4701
|
-
var Zip =
|
|
4742
|
+
var Zip = React118__namespace.forwardRef(
|
|
4702
4743
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4703
4744
|
"svg",
|
|
4704
4745
|
{
|
|
@@ -4740,15 +4781,15 @@ var Zip = React116__namespace.forwardRef(
|
|
|
4740
4781
|
)
|
|
4741
4782
|
);
|
|
4742
4783
|
Zip.displayName = "Zip";
|
|
4743
|
-
var CarouselContext =
|
|
4784
|
+
var CarouselContext = React118__namespace.createContext(null);
|
|
4744
4785
|
function useCarousel() {
|
|
4745
|
-
const context =
|
|
4786
|
+
const context = React118__namespace.useContext(CarouselContext);
|
|
4746
4787
|
if (!context) {
|
|
4747
4788
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4748
4789
|
}
|
|
4749
4790
|
return context;
|
|
4750
4791
|
}
|
|
4751
|
-
var Carousel =
|
|
4792
|
+
var Carousel = React118__namespace.forwardRef(
|
|
4752
4793
|
({
|
|
4753
4794
|
orientation = "horizontal",
|
|
4754
4795
|
opts,
|
|
@@ -4765,10 +4806,10 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4765
4806
|
},
|
|
4766
4807
|
plugins
|
|
4767
4808
|
);
|
|
4768
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4769
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4770
|
-
const [slideCount, setSlideCount] =
|
|
4771
|
-
const onSelect =
|
|
4809
|
+
const [canScrollPrev, setCanScrollPrev] = React118__namespace.useState(false);
|
|
4810
|
+
const [canScrollNext, setCanScrollNext] = React118__namespace.useState(false);
|
|
4811
|
+
const [slideCount, setSlideCount] = React118__namespace.useState(0);
|
|
4812
|
+
const onSelect = React118__namespace.useCallback((api2) => {
|
|
4772
4813
|
if (!api2) {
|
|
4773
4814
|
return;
|
|
4774
4815
|
}
|
|
@@ -4776,13 +4817,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4776
4817
|
setCanScrollNext(api2.canScrollNext());
|
|
4777
4818
|
setSlideCount(api2.scrollSnapList().length);
|
|
4778
4819
|
}, []);
|
|
4779
|
-
const scrollPrev =
|
|
4820
|
+
const scrollPrev = React118__namespace.useCallback(() => {
|
|
4780
4821
|
api?.scrollPrev();
|
|
4781
4822
|
}, [api]);
|
|
4782
|
-
const scrollNext =
|
|
4823
|
+
const scrollNext = React118__namespace.useCallback(() => {
|
|
4783
4824
|
api?.scrollNext();
|
|
4784
4825
|
}, [api]);
|
|
4785
|
-
const handleKeyDown =
|
|
4826
|
+
const handleKeyDown = React118__namespace.useCallback(
|
|
4786
4827
|
(event) => {
|
|
4787
4828
|
if (event.key === "ArrowLeft") {
|
|
4788
4829
|
event.preventDefault();
|
|
@@ -4794,13 +4835,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4794
4835
|
},
|
|
4795
4836
|
[scrollPrev, scrollNext]
|
|
4796
4837
|
);
|
|
4797
|
-
|
|
4838
|
+
React118__namespace.useEffect(() => {
|
|
4798
4839
|
if (!api || !setApi) {
|
|
4799
4840
|
return;
|
|
4800
4841
|
}
|
|
4801
4842
|
setApi(api);
|
|
4802
4843
|
}, [api, setApi]);
|
|
4803
|
-
|
|
4844
|
+
React118__namespace.useEffect(() => {
|
|
4804
4845
|
if (!api) {
|
|
4805
4846
|
return;
|
|
4806
4847
|
}
|
|
@@ -4845,7 +4886,7 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4845
4886
|
}
|
|
4846
4887
|
);
|
|
4847
4888
|
Carousel.displayName = "Carousel";
|
|
4848
|
-
var CarouselContent =
|
|
4889
|
+
var CarouselContent = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4849
4890
|
const { carouselRef, orientation } = useCarousel();
|
|
4850
4891
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4851
4892
|
"div",
|
|
@@ -4861,7 +4902,7 @@ var CarouselContent = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
4861
4902
|
) });
|
|
4862
4903
|
});
|
|
4863
4904
|
CarouselContent.displayName = "CarouselContent";
|
|
4864
|
-
var CarouselItem =
|
|
4905
|
+
var CarouselItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4865
4906
|
const { orientation } = useCarousel();
|
|
4866
4907
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4867
4908
|
"div",
|
|
@@ -4879,7 +4920,7 @@ var CarouselItem = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4879
4920
|
);
|
|
4880
4921
|
});
|
|
4881
4922
|
CarouselItem.displayName = "CarouselItem";
|
|
4882
|
-
var CarouselPrevious =
|
|
4923
|
+
var CarouselPrevious = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4883
4924
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4884
4925
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4885
4926
|
Button,
|
|
@@ -4901,7 +4942,7 @@ var CarouselPrevious = React116__namespace.forwardRef(({ className, variant = "o
|
|
|
4901
4942
|
);
|
|
4902
4943
|
});
|
|
4903
4944
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4904
|
-
var CarouselNext =
|
|
4945
|
+
var CarouselNext = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4905
4946
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4906
4947
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4907
4948
|
Button,
|
|
@@ -4927,7 +4968,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4927
4968
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4928
4969
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4929
4970
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4930
|
-
var DialogOverlay =
|
|
4971
|
+
var DialogOverlay = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4931
4972
|
DialogPrimitive__namespace.Overlay,
|
|
4932
4973
|
{
|
|
4933
4974
|
ref,
|
|
@@ -4944,7 +4985,7 @@ var DialogOverlay = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
4944
4985
|
}
|
|
4945
4986
|
));
|
|
4946
4987
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4947
|
-
var DialogContent =
|
|
4988
|
+
var DialogContent = React118__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4948
4989
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4949
4990
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4950
4991
|
DialogPrimitive__namespace.Content,
|
|
@@ -4996,7 +5037,7 @@ var DialogFooter = ({
|
|
|
4996
5037
|
}
|
|
4997
5038
|
);
|
|
4998
5039
|
DialogFooter.displayName = "DialogFooter";
|
|
4999
|
-
var DialogTitle =
|
|
5040
|
+
var DialogTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5000
5041
|
DialogPrimitive__namespace.Title,
|
|
5001
5042
|
{
|
|
5002
5043
|
ref,
|
|
@@ -5008,7 +5049,7 @@ var DialogTitle = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5008
5049
|
}
|
|
5009
5050
|
));
|
|
5010
5051
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5011
|
-
var DialogDescription =
|
|
5052
|
+
var DialogDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5012
5053
|
DialogPrimitive__namespace.Description,
|
|
5013
5054
|
{
|
|
5014
5055
|
ref,
|
|
@@ -5021,7 +5062,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
5021
5062
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
5022
5063
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
5023
5064
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
5024
|
-
var SheetOverlay =
|
|
5065
|
+
var SheetOverlay = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5025
5066
|
DialogPrimitive__namespace.Overlay,
|
|
5026
5067
|
{
|
|
5027
5068
|
className: cn(
|
|
@@ -5049,7 +5090,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
5049
5090
|
}
|
|
5050
5091
|
}
|
|
5051
5092
|
);
|
|
5052
|
-
var SheetContent =
|
|
5093
|
+
var SheetContent = React118__namespace.forwardRef(
|
|
5053
5094
|
({
|
|
5054
5095
|
side = "right",
|
|
5055
5096
|
className,
|
|
@@ -5105,7 +5146,7 @@ var SheetFooter = ({
|
|
|
5105
5146
|
}
|
|
5106
5147
|
);
|
|
5107
5148
|
SheetFooter.displayName = "SheetFooter";
|
|
5108
|
-
var SheetTitle =
|
|
5149
|
+
var SheetTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5109
5150
|
DialogPrimitive__namespace.Title,
|
|
5110
5151
|
{
|
|
5111
5152
|
ref,
|
|
@@ -5117,7 +5158,7 @@ var SheetTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
5117
5158
|
}
|
|
5118
5159
|
));
|
|
5119
5160
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5120
|
-
var SheetDescription =
|
|
5161
|
+
var SheetDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5121
5162
|
DialogPrimitive__namespace.Description,
|
|
5122
5163
|
{
|
|
5123
5164
|
ref,
|
|
@@ -5154,10 +5195,10 @@ var defaultElements = {
|
|
|
5154
5195
|
"caption": "span",
|
|
5155
5196
|
"overline": "span"
|
|
5156
5197
|
};
|
|
5157
|
-
var Typography =
|
|
5198
|
+
var Typography = React118__namespace.default.forwardRef(
|
|
5158
5199
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5159
5200
|
const Component = as || defaultElements[variant];
|
|
5160
|
-
return
|
|
5201
|
+
return React118__namespace.default.createElement(
|
|
5161
5202
|
Component,
|
|
5162
5203
|
{
|
|
5163
5204
|
ref,
|
|
@@ -5169,46 +5210,46 @@ var Typography = React116__namespace.default.forwardRef(
|
|
|
5169
5210
|
}
|
|
5170
5211
|
);
|
|
5171
5212
|
Typography.displayName = "Typography";
|
|
5172
|
-
var Heading1 =
|
|
5213
|
+
var Heading1 = React118__namespace.default.forwardRef(
|
|
5173
5214
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
5174
5215
|
);
|
|
5175
5216
|
Heading1.displayName = "Heading1";
|
|
5176
|
-
var Heading2 =
|
|
5217
|
+
var Heading2 = React118__namespace.default.forwardRef(
|
|
5177
5218
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
5178
5219
|
);
|
|
5179
5220
|
Heading2.displayName = "Heading2";
|
|
5180
|
-
var Heading3 =
|
|
5221
|
+
var Heading3 = React118__namespace.default.forwardRef(
|
|
5181
5222
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
5182
5223
|
);
|
|
5183
5224
|
Heading3.displayName = "Heading3";
|
|
5184
|
-
var Heading4 =
|
|
5225
|
+
var Heading4 = React118__namespace.default.forwardRef(
|
|
5185
5226
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
5186
5227
|
);
|
|
5187
5228
|
Heading4.displayName = "Heading4";
|
|
5188
|
-
var Heading5 =
|
|
5229
|
+
var Heading5 = React118__namespace.default.forwardRef(
|
|
5189
5230
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
5190
5231
|
);
|
|
5191
5232
|
Heading5.displayName = "Heading5";
|
|
5192
|
-
var Heading6 =
|
|
5233
|
+
var Heading6 = React118__namespace.default.forwardRef(
|
|
5193
5234
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
5194
5235
|
);
|
|
5195
5236
|
Heading6.displayName = "Heading6";
|
|
5196
|
-
var Text =
|
|
5237
|
+
var Text = React118__namespace.default.forwardRef(
|
|
5197
5238
|
({ size = "default", ...props }, ref) => {
|
|
5198
5239
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5199
5240
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
5200
5241
|
}
|
|
5201
5242
|
);
|
|
5202
5243
|
Text.displayName = "Text";
|
|
5203
|
-
var Caption =
|
|
5244
|
+
var Caption = React118__namespace.default.forwardRef(
|
|
5204
5245
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
5205
5246
|
);
|
|
5206
5247
|
Caption.displayName = "Caption";
|
|
5207
|
-
var Overline =
|
|
5248
|
+
var Overline = React118__namespace.default.forwardRef(
|
|
5208
5249
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
5209
5250
|
);
|
|
5210
5251
|
Overline.displayName = "Overline";
|
|
5211
|
-
var Link =
|
|
5252
|
+
var Link = React118__namespace.default.forwardRef(
|
|
5212
5253
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5213
5254
|
const variantClass = `link-${variant}`;
|
|
5214
5255
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5223,11 +5264,11 @@ var Link = React116__namespace.default.forwardRef(
|
|
|
5223
5264
|
}
|
|
5224
5265
|
);
|
|
5225
5266
|
Link.displayName = "Link";
|
|
5226
|
-
var PaginationContext =
|
|
5267
|
+
var PaginationContext = React118__namespace.createContext({
|
|
5227
5268
|
size: "default"
|
|
5228
5269
|
});
|
|
5229
5270
|
var usePaginationContext = () => {
|
|
5230
|
-
const context =
|
|
5271
|
+
const context = React118__namespace.useContext(PaginationContext);
|
|
5231
5272
|
return context;
|
|
5232
5273
|
};
|
|
5233
5274
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5244,7 +5285,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5244
5285
|
}
|
|
5245
5286
|
}
|
|
5246
5287
|
);
|
|
5247
|
-
var Pagination =
|
|
5288
|
+
var Pagination = React118__namespace.forwardRef(
|
|
5248
5289
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5249
5290
|
"nav",
|
|
5250
5291
|
{
|
|
@@ -5257,7 +5298,7 @@ var Pagination = React116__namespace.forwardRef(
|
|
|
5257
5298
|
) })
|
|
5258
5299
|
);
|
|
5259
5300
|
Pagination.displayName = "Pagination";
|
|
5260
|
-
var PaginationContent =
|
|
5301
|
+
var PaginationContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5261
5302
|
"ul",
|
|
5262
5303
|
{
|
|
5263
5304
|
ref,
|
|
@@ -5266,7 +5307,7 @@ var PaginationContent = React116__namespace.forwardRef(({ className, ...props },
|
|
|
5266
5307
|
}
|
|
5267
5308
|
));
|
|
5268
5309
|
PaginationContent.displayName = "PaginationContent";
|
|
5269
|
-
var PaginationItem =
|
|
5310
|
+
var PaginationItem = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5270
5311
|
PaginationItem.displayName = "PaginationItem";
|
|
5271
5312
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5272
5313
|
[
|
|
@@ -5288,7 +5329,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5288
5329
|
}
|
|
5289
5330
|
}
|
|
5290
5331
|
);
|
|
5291
|
-
var PaginationLink =
|
|
5332
|
+
var PaginationLink = React118__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5292
5333
|
const { size } = usePaginationContext();
|
|
5293
5334
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5294
5335
|
"a",
|
|
@@ -5305,7 +5346,7 @@ var PaginationLink = React116__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5305
5346
|
);
|
|
5306
5347
|
});
|
|
5307
5348
|
PaginationLink.displayName = "PaginationLink";
|
|
5308
|
-
var PaginationPrevious =
|
|
5349
|
+
var PaginationPrevious = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5309
5350
|
const { size } = usePaginationContext();
|
|
5310
5351
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5311
5352
|
PaginationLink,
|
|
@@ -5326,7 +5367,7 @@ var PaginationPrevious = React116__namespace.forwardRef(({ className, ...props }
|
|
|
5326
5367
|
);
|
|
5327
5368
|
});
|
|
5328
5369
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5329
|
-
var PaginationNext =
|
|
5370
|
+
var PaginationNext = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5330
5371
|
const { size } = usePaginationContext();
|
|
5331
5372
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5332
5373
|
PaginationLink,
|
|
@@ -5347,7 +5388,7 @@ var PaginationNext = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5347
5388
|
);
|
|
5348
5389
|
});
|
|
5349
5390
|
PaginationNext.displayName = "PaginationNext";
|
|
5350
|
-
var PaginationEllipsis =
|
|
5391
|
+
var PaginationEllipsis = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5351
5392
|
const { size } = usePaginationContext();
|
|
5352
5393
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5353
5394
|
"span",
|
|
@@ -5371,7 +5412,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5371
5412
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5372
5413
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5373
5414
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5374
|
-
var DropdownMenuSubTrigger =
|
|
5415
|
+
var DropdownMenuSubTrigger = React118__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5375
5416
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5376
5417
|
{
|
|
5377
5418
|
ref,
|
|
@@ -5388,7 +5429,7 @@ var DropdownMenuSubTrigger = React116__namespace.forwardRef(({ className, inset,
|
|
|
5388
5429
|
}
|
|
5389
5430
|
));
|
|
5390
5431
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5391
|
-
var DropdownMenuSubContent =
|
|
5432
|
+
var DropdownMenuSubContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5392
5433
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5393
5434
|
{
|
|
5394
5435
|
ref,
|
|
@@ -5400,7 +5441,7 @@ var DropdownMenuSubContent = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5400
5441
|
}
|
|
5401
5442
|
));
|
|
5402
5443
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5403
|
-
var DropdownMenuContent =
|
|
5444
|
+
var DropdownMenuContent = React118__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5404
5445
|
DropdownMenuPrimitive__namespace.Content,
|
|
5405
5446
|
{
|
|
5406
5447
|
ref,
|
|
@@ -5414,7 +5455,7 @@ var DropdownMenuContent = React116__namespace.forwardRef(({ className, sideOffse
|
|
|
5414
5455
|
}
|
|
5415
5456
|
) }));
|
|
5416
5457
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5417
|
-
var DropdownMenuItem =
|
|
5458
|
+
var DropdownMenuItem = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5418
5459
|
DropdownMenuPrimitive__namespace.Item,
|
|
5419
5460
|
{
|
|
5420
5461
|
ref,
|
|
@@ -5427,7 +5468,7 @@ var DropdownMenuItem = React116__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5427
5468
|
}
|
|
5428
5469
|
));
|
|
5429
5470
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5430
|
-
var DropdownMenuCheckboxItem =
|
|
5471
|
+
var DropdownMenuCheckboxItem = React118__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5431
5472
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5432
5473
|
{
|
|
5433
5474
|
ref,
|
|
@@ -5444,7 +5485,7 @@ var DropdownMenuCheckboxItem = React116__namespace.forwardRef(({ className, chil
|
|
|
5444
5485
|
}
|
|
5445
5486
|
));
|
|
5446
5487
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5447
|
-
var DropdownMenuRadioItem =
|
|
5488
|
+
var DropdownMenuRadioItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5448
5489
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5449
5490
|
{
|
|
5450
5491
|
ref,
|
|
@@ -5460,7 +5501,7 @@ var DropdownMenuRadioItem = React116__namespace.forwardRef(({ className, childre
|
|
|
5460
5501
|
}
|
|
5461
5502
|
));
|
|
5462
5503
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5463
|
-
var DropdownMenuLabel =
|
|
5504
|
+
var DropdownMenuLabel = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5464
5505
|
DropdownMenuPrimitive__namespace.Label,
|
|
5465
5506
|
{
|
|
5466
5507
|
ref,
|
|
@@ -5473,7 +5514,7 @@ var DropdownMenuLabel = React116__namespace.forwardRef(({ className, inset, ...p
|
|
|
5473
5514
|
}
|
|
5474
5515
|
));
|
|
5475
5516
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5476
|
-
var DropdownMenuSeparator =
|
|
5517
|
+
var DropdownMenuSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5477
5518
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5478
5519
|
{
|
|
5479
5520
|
ref,
|
|
@@ -5495,7 +5536,7 @@ var DropdownMenuShortcut = ({
|
|
|
5495
5536
|
);
|
|
5496
5537
|
};
|
|
5497
5538
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5498
|
-
var TableWrapper =
|
|
5539
|
+
var TableWrapper = React118__namespace.forwardRef(
|
|
5499
5540
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5500
5541
|
"div",
|
|
5501
5542
|
{
|
|
@@ -5510,7 +5551,7 @@ var TableWrapper = React116__namespace.forwardRef(
|
|
|
5510
5551
|
)
|
|
5511
5552
|
);
|
|
5512
5553
|
TableWrapper.displayName = "TableWrapper";
|
|
5513
|
-
var Table =
|
|
5554
|
+
var Table = React118__namespace.forwardRef(
|
|
5514
5555
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5515
5556
|
"div",
|
|
5516
5557
|
{
|
|
@@ -5532,7 +5573,7 @@ var Table = React116__namespace.forwardRef(
|
|
|
5532
5573
|
)
|
|
5533
5574
|
);
|
|
5534
5575
|
Table.displayName = "Table";
|
|
5535
|
-
var TableHeader =
|
|
5576
|
+
var TableHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5536
5577
|
"thead",
|
|
5537
5578
|
{
|
|
5538
5579
|
ref,
|
|
@@ -5545,7 +5586,7 @@ var TableHeader = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5545
5586
|
}
|
|
5546
5587
|
));
|
|
5547
5588
|
TableHeader.displayName = "TableHeader";
|
|
5548
|
-
var TableBody =
|
|
5589
|
+
var TableBody = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5549
5590
|
"tbody",
|
|
5550
5591
|
{
|
|
5551
5592
|
ref,
|
|
@@ -5558,7 +5599,7 @@ var TableBody = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5558
5599
|
}
|
|
5559
5600
|
));
|
|
5560
5601
|
TableBody.displayName = "TableBody";
|
|
5561
|
-
var TableFooter =
|
|
5602
|
+
var TableFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5562
5603
|
"tfoot",
|
|
5563
5604
|
{
|
|
5564
5605
|
ref,
|
|
@@ -5571,7 +5612,7 @@ var TableFooter = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5571
5612
|
}
|
|
5572
5613
|
));
|
|
5573
5614
|
TableFooter.displayName = "TableFooter";
|
|
5574
|
-
var TableRow =
|
|
5615
|
+
var TableRow = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5575
5616
|
"tr",
|
|
5576
5617
|
{
|
|
5577
5618
|
ref,
|
|
@@ -5589,7 +5630,7 @@ var TableRow = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5589
5630
|
}
|
|
5590
5631
|
));
|
|
5591
5632
|
TableRow.displayName = "TableRow";
|
|
5592
|
-
var TableHead =
|
|
5633
|
+
var TableHead = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5593
5634
|
"th",
|
|
5594
5635
|
{
|
|
5595
5636
|
ref,
|
|
@@ -5602,7 +5643,7 @@ var TableHead = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5602
5643
|
}
|
|
5603
5644
|
));
|
|
5604
5645
|
TableHead.displayName = "TableHead";
|
|
5605
|
-
var TableCell =
|
|
5646
|
+
var TableCell = React118__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5606
5647
|
"td",
|
|
5607
5648
|
{
|
|
5608
5649
|
ref,
|
|
@@ -5622,7 +5663,7 @@ var TableCell = React116__namespace.forwardRef(({ className, label, ...props },
|
|
|
5622
5663
|
}
|
|
5623
5664
|
));
|
|
5624
5665
|
TableCell.displayName = "TableCell";
|
|
5625
|
-
var TableCaption =
|
|
5666
|
+
var TableCaption = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5626
5667
|
"caption",
|
|
5627
5668
|
{
|
|
5628
5669
|
ref,
|
|
@@ -5635,7 +5676,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5635
5676
|
var Select = SelectPrimitive__namespace.Root;
|
|
5636
5677
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5637
5678
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5638
|
-
var SelectTrigger =
|
|
5679
|
+
var SelectTrigger = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5639
5680
|
SelectPrimitive__namespace.Trigger,
|
|
5640
5681
|
{
|
|
5641
5682
|
ref,
|
|
@@ -5651,7 +5692,7 @@ var SelectTrigger = React116__namespace.forwardRef(({ className, children, ...pr
|
|
|
5651
5692
|
}
|
|
5652
5693
|
));
|
|
5653
5694
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5654
|
-
var SelectScrollUpButton =
|
|
5695
|
+
var SelectScrollUpButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5655
5696
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5656
5697
|
{
|
|
5657
5698
|
ref,
|
|
@@ -5664,7 +5705,7 @@ var SelectScrollUpButton = React116__namespace.forwardRef(({ className, ...props
|
|
|
5664
5705
|
}
|
|
5665
5706
|
));
|
|
5666
5707
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5667
|
-
var SelectScrollDownButton =
|
|
5708
|
+
var SelectScrollDownButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5668
5709
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5669
5710
|
{
|
|
5670
5711
|
ref,
|
|
@@ -5677,7 +5718,7 @@ var SelectScrollDownButton = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5677
5718
|
}
|
|
5678
5719
|
));
|
|
5679
5720
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5680
|
-
var SelectContent =
|
|
5721
|
+
var SelectContent = React118__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5681
5722
|
SelectPrimitive__namespace.Content,
|
|
5682
5723
|
{
|
|
5683
5724
|
ref,
|
|
@@ -5704,7 +5745,7 @@ var SelectContent = React116__namespace.forwardRef(({ className, children, posit
|
|
|
5704
5745
|
}
|
|
5705
5746
|
) }));
|
|
5706
5747
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5707
|
-
var SelectLabel =
|
|
5748
|
+
var SelectLabel = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5708
5749
|
SelectPrimitive__namespace.Label,
|
|
5709
5750
|
{
|
|
5710
5751
|
ref,
|
|
@@ -5713,7 +5754,7 @@ var SelectLabel = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5713
5754
|
}
|
|
5714
5755
|
));
|
|
5715
5756
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5716
|
-
var SelectItem =
|
|
5757
|
+
var SelectItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5717
5758
|
SelectPrimitive__namespace.Item,
|
|
5718
5759
|
{
|
|
5719
5760
|
ref,
|
|
@@ -5729,7 +5770,7 @@ var SelectItem = React116__namespace.forwardRef(({ className, children, ...props
|
|
|
5729
5770
|
}
|
|
5730
5771
|
));
|
|
5731
5772
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5732
|
-
var SelectSeparator =
|
|
5773
|
+
var SelectSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5733
5774
|
SelectPrimitive__namespace.Separator,
|
|
5734
5775
|
{
|
|
5735
5776
|
ref,
|
|
@@ -5738,7 +5779,7 @@ var SelectSeparator = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
5738
5779
|
}
|
|
5739
5780
|
));
|
|
5740
5781
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5741
|
-
var Label3 =
|
|
5782
|
+
var Label3 = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5742
5783
|
LabelPrimitive__namespace.Root,
|
|
5743
5784
|
{
|
|
5744
5785
|
ref,
|
|
@@ -5750,7 +5791,7 @@ var Label3 = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5750
5791
|
}
|
|
5751
5792
|
));
|
|
5752
5793
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5753
|
-
var Switch =
|
|
5794
|
+
var Switch = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5754
5795
|
SwitchPrimitives__namespace.Root,
|
|
5755
5796
|
{
|
|
5756
5797
|
className: cn(
|
|
@@ -5763,7 +5804,7 @@ var Switch = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5763
5804
|
}
|
|
5764
5805
|
));
|
|
5765
5806
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5766
|
-
var RadioGroup2 =
|
|
5807
|
+
var RadioGroup2 = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5767
5808
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5768
5809
|
RadioGroupPrimitive__namespace.Root,
|
|
5769
5810
|
{
|
|
@@ -5774,7 +5815,7 @@ var RadioGroup2 = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5774
5815
|
);
|
|
5775
5816
|
});
|
|
5776
5817
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5777
|
-
var RadioGroupItem =
|
|
5818
|
+
var RadioGroupItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5778
5819
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5779
5820
|
RadioGroupPrimitive__namespace.Item,
|
|
5780
5821
|
{
|
|
@@ -5789,7 +5830,7 @@ var RadioGroupItem = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5789
5830
|
);
|
|
5790
5831
|
});
|
|
5791
5832
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5792
|
-
var Checkbox =
|
|
5833
|
+
var Checkbox = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5793
5834
|
CheckboxPrimitive__namespace.Root,
|
|
5794
5835
|
{
|
|
5795
5836
|
ref,
|
|
@@ -5802,7 +5843,7 @@ var Checkbox = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5802
5843
|
}
|
|
5803
5844
|
));
|
|
5804
5845
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5805
|
-
var MultiSelect =
|
|
5846
|
+
var MultiSelect = React118__namespace.forwardRef(
|
|
5806
5847
|
({
|
|
5807
5848
|
options,
|
|
5808
5849
|
value = [],
|
|
@@ -5815,8 +5856,8 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5815
5856
|
maxDisplayItems = 3,
|
|
5816
5857
|
...props
|
|
5817
5858
|
}, ref) => {
|
|
5818
|
-
const [open, setOpen] =
|
|
5819
|
-
const handleSelectAll =
|
|
5859
|
+
const [open, setOpen] = React118__namespace.useState(false);
|
|
5860
|
+
const handleSelectAll = React118__namespace.useCallback(() => {
|
|
5820
5861
|
if (!onValueChange) return;
|
|
5821
5862
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5822
5863
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5829,7 +5870,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5829
5870
|
onValueChange(allValues);
|
|
5830
5871
|
}
|
|
5831
5872
|
}, [options, value, onValueChange]);
|
|
5832
|
-
const handleItemToggle =
|
|
5873
|
+
const handleItemToggle = React118__namespace.useCallback(
|
|
5833
5874
|
(itemValue) => {
|
|
5834
5875
|
if (!onValueChange) return;
|
|
5835
5876
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5837,7 +5878,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5837
5878
|
},
|
|
5838
5879
|
[value, onValueChange]
|
|
5839
5880
|
);
|
|
5840
|
-
const displayValue =
|
|
5881
|
+
const displayValue = React118__namespace.useMemo(() => {
|
|
5841
5882
|
if (value.length === 0) {
|
|
5842
5883
|
return placeholder;
|
|
5843
5884
|
}
|
|
@@ -5958,7 +5999,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5958
5999
|
}
|
|
5959
6000
|
);
|
|
5960
6001
|
MultiSelect.displayName = "MultiSelect";
|
|
5961
|
-
var Slider =
|
|
6002
|
+
var Slider = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5962
6003
|
SliderPrimitive__namespace.Root,
|
|
5963
6004
|
{
|
|
5964
6005
|
ref,
|
|
@@ -5974,6 +6015,201 @@ var Slider = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5974
6015
|
}
|
|
5975
6016
|
));
|
|
5976
6017
|
Slider.displayName = SliderPrimitive__namespace.Root.displayName;
|
|
6018
|
+
function CalendarRoot({ className, rootRef, ...props }) {
|
|
6019
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
6020
|
+
"div",
|
|
6021
|
+
{
|
|
6022
|
+
"data-slot": "calendar",
|
|
6023
|
+
ref: rootRef,
|
|
6024
|
+
className: cn(className),
|
|
6025
|
+
...props
|
|
6026
|
+
}
|
|
6027
|
+
);
|
|
6028
|
+
}
|
|
6029
|
+
function CalendarChevron({
|
|
6030
|
+
className,
|
|
6031
|
+
orientation,
|
|
6032
|
+
...props
|
|
6033
|
+
}) {
|
|
6034
|
+
if (orientation === "left") {
|
|
6035
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronLeftIcon, { className: cn("lua:size-3", className), ...props });
|
|
6036
|
+
}
|
|
6037
|
+
if (orientation === "right") {
|
|
6038
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronRightIcon, { className: cn("lua:size-3", className), ...props });
|
|
6039
|
+
}
|
|
6040
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDownIcon, { className: cn("lua:size-3", className), ...props });
|
|
6041
|
+
}
|
|
6042
|
+
function CalendarWeekNumber({ children, ...props }) {
|
|
6043
|
+
return /* @__PURE__ */ jsxRuntime.jsx("td", { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "lua:flex lua:size-[--cell-size] lua:items-center lua:justify-center lua:text-center lua:font-onest", children }) });
|
|
6044
|
+
}
|
|
6045
|
+
function CalendarDayButton({
|
|
6046
|
+
className,
|
|
6047
|
+
day,
|
|
6048
|
+
modifiers,
|
|
6049
|
+
...props
|
|
6050
|
+
}) {
|
|
6051
|
+
const defaultClassNames = reactDayPicker.getDefaultClassNames();
|
|
6052
|
+
const ref = React118__namespace.useRef(null);
|
|
6053
|
+
React118__namespace.useEffect(() => {
|
|
6054
|
+
if (modifiers.focused) ref.current?.focus();
|
|
6055
|
+
}, [modifiers.focused]);
|
|
6056
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
6057
|
+
"button",
|
|
6058
|
+
{
|
|
6059
|
+
ref,
|
|
6060
|
+
type: "button",
|
|
6061
|
+
"data-day": day.date.toLocaleDateString(),
|
|
6062
|
+
"data-selected-single": modifiers.selected && !modifiers.range_start && !modifiers.range_end && !modifiers.range_middle,
|
|
6063
|
+
"data-range-start": modifiers.range_start,
|
|
6064
|
+
"data-range-end": modifiers.range_end,
|
|
6065
|
+
"data-range-middle": modifiers.range_middle,
|
|
6066
|
+
className: cn(defaultClassNames.day, className),
|
|
6067
|
+
...props
|
|
6068
|
+
}
|
|
6069
|
+
);
|
|
6070
|
+
}
|
|
6071
|
+
function Calendar({
|
|
6072
|
+
className,
|
|
6073
|
+
classNames,
|
|
6074
|
+
showOutsideDays = true,
|
|
6075
|
+
captionLayout = "label",
|
|
6076
|
+
formatters,
|
|
6077
|
+
components,
|
|
6078
|
+
...props
|
|
6079
|
+
}) {
|
|
6080
|
+
const defaultClassNames = reactDayPicker.getDefaultClassNames();
|
|
6081
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
6082
|
+
reactDayPicker.DayPicker,
|
|
6083
|
+
{
|
|
6084
|
+
showOutsideDays,
|
|
6085
|
+
className: cn(
|
|
6086
|
+
"lua:group/calendar lua:p-1.5 lua:rounded-md [--cell-size:1.5rem] lua:font-onest",
|
|
6087
|
+
String.raw`rtl:**:[.rdp-button\_next>svg]:lua:rotate-180`,
|
|
6088
|
+
String.raw`rtl:**:[.rdp-button\_previous>svg]:lua:rotate-180`,
|
|
6089
|
+
className
|
|
6090
|
+
),
|
|
6091
|
+
captionLayout,
|
|
6092
|
+
formatters: {
|
|
6093
|
+
formatMonthDropdown: (date) => date.toLocaleString("default", { month: "short" }),
|
|
6094
|
+
...formatters
|
|
6095
|
+
},
|
|
6096
|
+
classNames: {
|
|
6097
|
+
root: cn("lua:w-fit", defaultClassNames.root),
|
|
6098
|
+
months: cn(
|
|
6099
|
+
"lua:relative lua:flex lua:flex-col lua:gap-2 md:lua:flex-row",
|
|
6100
|
+
defaultClassNames.months
|
|
6101
|
+
),
|
|
6102
|
+
month: cn(
|
|
6103
|
+
"lua:flex lua:w-full lua:flex-col lua:gap-2",
|
|
6104
|
+
defaultClassNames.month
|
|
6105
|
+
),
|
|
6106
|
+
nav: cn(
|
|
6107
|
+
"lua:absolute lua:inset-x-0 lua:top-0 lua:flex lua:w-full lua:items-center lua:justify-between lua:gap-1",
|
|
6108
|
+
defaultClassNames.nav
|
|
6109
|
+
),
|
|
6110
|
+
button_previous: cn(defaultClassNames.button_previous),
|
|
6111
|
+
button_next: cn(
|
|
6112
|
+
// Luaniverse button style
|
|
6113
|
+
"lua:inline-flex lua:items-center lua:justify-center lua:rounded-full lua:transition-all lua:duration-200",
|
|
6114
|
+
"lua:text-gray-900 hover:lua:bg-gray-100",
|
|
6115
|
+
"focus-visible:lua:outline-hidden focus-visible:lua:ring-1 focus-visible:lua:ring-gray-900 focus-visible:lua:ring-offset-1 focus-visible:lua:ring-offset-white",
|
|
6116
|
+
"lua:h-[--cell-size] lua:w-[--cell-size] lua:select-none lua:p-0 aria-disabled:lua:opacity-50",
|
|
6117
|
+
defaultClassNames.button_next
|
|
6118
|
+
),
|
|
6119
|
+
month_caption: cn(
|
|
6120
|
+
"lua:flex lua:h-[--cell-size] lua:w-full lua:items-center lua:justify-center lua:px-[--cell-size]",
|
|
6121
|
+
defaultClassNames.month_caption
|
|
6122
|
+
),
|
|
6123
|
+
dropdowns: cn(
|
|
6124
|
+
"lua:flex lua:h-[--cell-size] lua:w-full lua:items-center lua:justify-center lua:gap-1 lua:text-sm lua:font-onest lua:font-semibold lua:text-gray-900",
|
|
6125
|
+
defaultClassNames.dropdowns
|
|
6126
|
+
),
|
|
6127
|
+
dropdown_root: cn(
|
|
6128
|
+
"has-focus:lua:border-gray-300 lua:border-gray-300 has-focus:lua:ring-gray-900/50 has-focus:lua:ring-2 lua:relative lua:rounded-md lua:border",
|
|
6129
|
+
defaultClassNames.dropdown_root
|
|
6130
|
+
),
|
|
6131
|
+
dropdown: cn(
|
|
6132
|
+
"lua:absolute lua:inset-0 lua:opacity-0",
|
|
6133
|
+
defaultClassNames.dropdown
|
|
6134
|
+
),
|
|
6135
|
+
caption_label: cn(
|
|
6136
|
+
"lua:select-none lua:font-onest lua:font-semibold lua:text-gray-900",
|
|
6137
|
+
captionLayout === "label" ? "lua:text-xs" : "[&>svg]:lua:text-gray-600 lua:flex lua:h-6 lua:items-center lua:gap-1 lua:rounded-md lua:pl-2 lua:pr-1 lua:text-xs [&>svg]:lua:size-3",
|
|
6138
|
+
defaultClassNames.caption_label
|
|
6139
|
+
),
|
|
6140
|
+
table: "lua:w-full lua:border-collapse",
|
|
6141
|
+
weekdays: cn("lua:flex", defaultClassNames.weekdays),
|
|
6142
|
+
weekday: cn(
|
|
6143
|
+
"lua:text-gray-600 lua:flex-1 lua:select-none lua:text-xs lua:font-onest lua:font-medium",
|
|
6144
|
+
defaultClassNames.weekday
|
|
6145
|
+
),
|
|
6146
|
+
week: cn("lua:mt-1 lua:flex lua:w-full", defaultClassNames.week),
|
|
6147
|
+
week_number_header: cn(
|
|
6148
|
+
"lua:w-[--cell-size] lua:select-none",
|
|
6149
|
+
defaultClassNames.week_number_header
|
|
6150
|
+
),
|
|
6151
|
+
week_number: cn(
|
|
6152
|
+
"lua:text-gray-600 lua:select-none lua:text-xs lua:font-onest",
|
|
6153
|
+
defaultClassNames.week_number
|
|
6154
|
+
),
|
|
6155
|
+
day: cn(
|
|
6156
|
+
"lua:relative lua:w-full lua:h-full lua:p-0 lua:text-center lua:group/day lua:aspect-square lua:select-none",
|
|
6157
|
+
defaultClassNames.day
|
|
6158
|
+
),
|
|
6159
|
+
range_start: cn("lua:bg-gray-100", defaultClassNames.range_start),
|
|
6160
|
+
range_middle: cn("lua:bg-gray-50", defaultClassNames.range_middle),
|
|
6161
|
+
range_end: cn("lua:bg-gray-100", defaultClassNames.range_end),
|
|
6162
|
+
today: cn(
|
|
6163
|
+
"lua:bg-gray-100 lua:text-gray-900 lua:font-bold",
|
|
6164
|
+
defaultClassNames.today
|
|
6165
|
+
),
|
|
6166
|
+
outside: cn(
|
|
6167
|
+
"lua:text-gray-400 aria-selected:lua:text-gray-400",
|
|
6168
|
+
defaultClassNames.outside
|
|
6169
|
+
),
|
|
6170
|
+
disabled: cn(
|
|
6171
|
+
"lua:text-gray-400 lua:opacity-50",
|
|
6172
|
+
defaultClassNames.disabled
|
|
6173
|
+
),
|
|
6174
|
+
hidden: cn("lua:invisible", defaultClassNames.hidden),
|
|
6175
|
+
...classNames
|
|
6176
|
+
},
|
|
6177
|
+
components: {
|
|
6178
|
+
Root: CalendarRoot,
|
|
6179
|
+
Chevron: CalendarChevron,
|
|
6180
|
+
DayButton: CalendarDayButton,
|
|
6181
|
+
WeekNumber: CalendarWeekNumber,
|
|
6182
|
+
...components
|
|
6183
|
+
},
|
|
6184
|
+
...props
|
|
6185
|
+
}
|
|
6186
|
+
);
|
|
6187
|
+
}
|
|
6188
|
+
Calendar.displayName = "Calendar";
|
|
6189
|
+
var Popover = PopoverPrimitive__namespace.Root;
|
|
6190
|
+
var PopoverTrigger = PopoverPrimitive__namespace.Trigger;
|
|
6191
|
+
var PopoverContent = React118__namespace.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6192
|
+
PopoverPrimitive__namespace.Content,
|
|
6193
|
+
{
|
|
6194
|
+
ref,
|
|
6195
|
+
align,
|
|
6196
|
+
sideOffset,
|
|
6197
|
+
className: cn(
|
|
6198
|
+
// Base styles - Luaniverse design
|
|
6199
|
+
"lua:z-50 lua:rounded-md lua:border lua:border-gray-200 lua:bg-white lua:shadow-lg lua:font-onest",
|
|
6200
|
+
// Animation
|
|
6201
|
+
"lua:transition-all lua:duration-200",
|
|
6202
|
+
"data-[state=open]:lua:animate-in data-[state=open]:lua:fade-in-0 data-[state=open]:lua:zoom-in-95",
|
|
6203
|
+
"data-[state=closed]:lua:animate-out data-[state=closed]:lua:fade-out-0 data-[state=closed]:lua:zoom-out-95",
|
|
6204
|
+
"data-[side=bottom]:lua:slide-in-from-top-2 data-[side=left]:lua:slide-in-from-right-2 data-[side=right]:lua:slide-in-from-left-2 data-[side=top]:lua:slide-in-from-bottom-2",
|
|
6205
|
+
// Focus
|
|
6206
|
+
"focus-visible:lua:outline-none focus-visible:lua:ring-2 focus-visible:lua:ring-gray-900 focus-visible:lua:ring-offset-2",
|
|
6207
|
+
className
|
|
6208
|
+
),
|
|
6209
|
+
...props
|
|
6210
|
+
}
|
|
6211
|
+
) }));
|
|
6212
|
+
PopoverContent.displayName = PopoverPrimitive__namespace.Content.displayName;
|
|
5977
6213
|
|
|
5978
6214
|
// src/safelist.js
|
|
5979
6215
|
var luaniverseSafelist = [
|
|
@@ -6387,6 +6623,8 @@ exports.C4dIcon = c4d_exports;
|
|
|
6387
6623
|
exports.CDR = CDR;
|
|
6388
6624
|
exports.CSS = CSS;
|
|
6389
6625
|
exports.CSV = CSV;
|
|
6626
|
+
exports.Calendar = Calendar;
|
|
6627
|
+
exports.CalendarDayButton = CalendarDayButton;
|
|
6390
6628
|
exports.Camera = Camera;
|
|
6391
6629
|
exports.Caption = Caption;
|
|
6392
6630
|
exports.Card = Card;
|
|
@@ -6435,6 +6673,7 @@ exports.DocIcon = doc_exports;
|
|
|
6435
6673
|
exports.DotsSixVerticalIcon = DotsSixVerticalIcon;
|
|
6436
6674
|
exports.DotsThree = DotsThree;
|
|
6437
6675
|
exports.DotsThreeVertical = DotsThreeVertical;
|
|
6676
|
+
exports.DownloadIcon = DownloadIcon;
|
|
6438
6677
|
exports.DropdownMenu = DropdownMenu;
|
|
6439
6678
|
exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
|
|
6440
6679
|
exports.DropdownMenuContent = DropdownMenuContent;
|
|
@@ -6534,6 +6773,9 @@ exports.PencilSimple = PencilSimple;
|
|
|
6534
6773
|
exports.PlugsRegular = PlugsRegular;
|
|
6535
6774
|
exports.Plus = Plus;
|
|
6536
6775
|
exports.PngIcon = png_exports;
|
|
6776
|
+
exports.Popover = Popover;
|
|
6777
|
+
exports.PopoverContent = PopoverContent;
|
|
6778
|
+
exports.PopoverTrigger = PopoverTrigger;
|
|
6537
6779
|
exports.PptIcon = ppt_exports;
|
|
6538
6780
|
exports.PsdIcon = psd_exports;
|
|
6539
6781
|
exports.RadioGroup = RadioGroup2;
|
|
@@ -6586,6 +6828,7 @@ exports.TabsList = TabsList;
|
|
|
6586
6828
|
exports.TabsTrigger = TabsTrigger;
|
|
6587
6829
|
exports.Tag = Tag;
|
|
6588
6830
|
exports.Text = Text;
|
|
6831
|
+
exports.TextIcon = TextIcon;
|
|
6589
6832
|
exports.Textarea = Textarea;
|
|
6590
6833
|
exports.Ticket = Ticket;
|
|
6591
6834
|
exports.TiffIcon = tiff_exports;
|