luaniverse 4.0.43 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +323 -213
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +320 -214
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +54 -0
- package/dist/safelist.txt +52 -2
- package/package.json +2 -1
package/dist/index.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');
|
|
@@ -19,6 +19,7 @@ var LabelPrimitive = require('@radix-ui/react-label');
|
|
|
19
19
|
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
|
+
var SliderPrimitive = require('@radix-ui/react-slider');
|
|
22
23
|
|
|
23
24
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
24
25
|
|
|
@@ -40,7 +41,7 @@ function _interopNamespace(e) {
|
|
|
40
41
|
return Object.freeze(n);
|
|
41
42
|
}
|
|
42
43
|
|
|
43
|
-
var
|
|
44
|
+
var React118__namespace = /*#__PURE__*/_interopNamespace(React118);
|
|
44
45
|
var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
|
|
45
46
|
var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
|
|
46
47
|
var useEmblaCarousel__default = /*#__PURE__*/_interopDefault(useEmblaCarousel);
|
|
@@ -51,6 +52,7 @@ var LabelPrimitive__namespace = /*#__PURE__*/_interopNamespace(LabelPrimitive);
|
|
|
51
52
|
var SwitchPrimitives__namespace = /*#__PURE__*/_interopNamespace(SwitchPrimitives);
|
|
52
53
|
var RadioGroupPrimitive__namespace = /*#__PURE__*/_interopNamespace(RadioGroupPrimitive);
|
|
53
54
|
var CheckboxPrimitive__namespace = /*#__PURE__*/_interopNamespace(CheckboxPrimitive);
|
|
55
|
+
var SliderPrimitive__namespace = /*#__PURE__*/_interopNamespace(SliderPrimitive);
|
|
54
56
|
|
|
55
57
|
var __defProp = Object.defineProperty;
|
|
56
58
|
var __export = (target, all) => {
|
|
@@ -236,7 +238,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
236
238
|
}
|
|
237
239
|
);
|
|
238
240
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
239
|
-
var Button =
|
|
241
|
+
var Button = React118__namespace.forwardRef(
|
|
240
242
|
({
|
|
241
243
|
className,
|
|
242
244
|
variant,
|
|
@@ -254,7 +256,7 @@ var Button = React116__namespace.forwardRef(
|
|
|
254
256
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
255
257
|
const hasStartAdornment = !!startAdornment;
|
|
256
258
|
const hasEndAdornment = !!endAdornment;
|
|
257
|
-
const hasTextContent =
|
|
259
|
+
const hasTextContent = React118__namespace.Children.toArray(children).some(
|
|
258
260
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
259
261
|
);
|
|
260
262
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -309,7 +311,7 @@ var iconButtonVariants = {
|
|
|
309
311
|
large: "lua:p-3 lua:size-12"
|
|
310
312
|
}
|
|
311
313
|
};
|
|
312
|
-
var IconButton =
|
|
314
|
+
var IconButton = React118__namespace.forwardRef(
|
|
313
315
|
({
|
|
314
316
|
className,
|
|
315
317
|
variant,
|
|
@@ -350,7 +352,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
350
352
|
className: "lua:text-current",
|
|
351
353
|
"aria-hidden": "true"
|
|
352
354
|
}
|
|
353
|
-
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children:
|
|
355
|
+
) }) : /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: React118__namespace.cloneElement(children, {
|
|
354
356
|
"aria-hidden": "true"
|
|
355
357
|
}) })
|
|
356
358
|
}
|
|
@@ -358,7 +360,7 @@ var IconButton = React116__namespace.forwardRef(
|
|
|
358
360
|
}
|
|
359
361
|
);
|
|
360
362
|
IconButton.displayName = "IconButton";
|
|
361
|
-
var Input =
|
|
363
|
+
var Input = React118__namespace.forwardRef(
|
|
362
364
|
({
|
|
363
365
|
className,
|
|
364
366
|
type = "text",
|
|
@@ -374,7 +376,7 @@ var Input = React116__namespace.forwardRef(
|
|
|
374
376
|
disabled,
|
|
375
377
|
...props
|
|
376
378
|
}, ref) => {
|
|
377
|
-
const generatedId =
|
|
379
|
+
const generatedId = React118__namespace.useId();
|
|
378
380
|
const inputId = id || generatedId;
|
|
379
381
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
380
382
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -521,7 +523,7 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
521
523
|
}
|
|
522
524
|
}
|
|
523
525
|
);
|
|
524
|
-
var Badge =
|
|
526
|
+
var Badge = React118__namespace.forwardRef(
|
|
525
527
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
526
528
|
const Comp = asChild ? reactSlot.Slot : "span";
|
|
527
529
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -536,7 +538,7 @@ var Badge = React116__namespace.forwardRef(
|
|
|
536
538
|
}
|
|
537
539
|
);
|
|
538
540
|
Badge.displayName = "Badge";
|
|
539
|
-
var Textarea =
|
|
541
|
+
var Textarea = React118__namespace.forwardRef(
|
|
540
542
|
({
|
|
541
543
|
className,
|
|
542
544
|
description,
|
|
@@ -549,7 +551,7 @@ var Textarea = React116__namespace.forwardRef(
|
|
|
549
551
|
disabled,
|
|
550
552
|
...props
|
|
551
553
|
}, ref) => {
|
|
552
|
-
const generatedId =
|
|
554
|
+
const generatedId = React118__namespace.useId();
|
|
553
555
|
const textareaId = id || generatedId;
|
|
554
556
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
555
557
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -644,7 +646,7 @@ var Tabs = TabsPrimitive__namespace.Root;
|
|
|
644
646
|
var tabsListVariants = classVarianceAuthority.cva([
|
|
645
647
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
646
648
|
].join(" "));
|
|
647
|
-
var TabsList =
|
|
649
|
+
var TabsList = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
648
650
|
TabsPrimitive__namespace.List,
|
|
649
651
|
{
|
|
650
652
|
ref,
|
|
@@ -660,7 +662,7 @@ var tabsTriggerVariants = classVarianceAuthority.cva([
|
|
|
660
662
|
"lua:data-[state=active]:text-blue-600 lua:data-[state=active]:border-b-2 lua:data-[state=active]:border-blue-600 lua:data-[state=active]:-mb-px",
|
|
661
663
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
662
664
|
].join(" "));
|
|
663
|
-
var TabsTrigger =
|
|
665
|
+
var TabsTrigger = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
664
666
|
TabsPrimitive__namespace.Trigger,
|
|
665
667
|
{
|
|
666
668
|
ref,
|
|
@@ -673,7 +675,7 @@ var tabsContentVariants = classVarianceAuthority.cva([
|
|
|
673
675
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
674
676
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
675
677
|
].join(" "));
|
|
676
|
-
var TabsContent =
|
|
678
|
+
var TabsContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
677
679
|
TabsPrimitive__namespace.Content,
|
|
678
680
|
{
|
|
679
681
|
ref,
|
|
@@ -682,7 +684,7 @@ var TabsContent = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
682
684
|
}
|
|
683
685
|
));
|
|
684
686
|
TabsContent.displayName = TabsPrimitive__namespace.Content.displayName;
|
|
685
|
-
var InputOTP =
|
|
687
|
+
var InputOTP = React118__namespace.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
686
688
|
inputOtp.OTPInput,
|
|
687
689
|
{
|
|
688
690
|
ref,
|
|
@@ -695,10 +697,10 @@ var InputOTP = React116__namespace.forwardRef(({ className, containerClassName,
|
|
|
695
697
|
}
|
|
696
698
|
));
|
|
697
699
|
InputOTP.displayName = "InputOTP";
|
|
698
|
-
var InputOTPGroup =
|
|
700
|
+
var InputOTPGroup = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
699
701
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
700
|
-
var InputOTPSlot =
|
|
701
|
-
const inputOTPContext =
|
|
702
|
+
var InputOTPSlot = React118__namespace.forwardRef(({ index, className, ...props }, ref) => {
|
|
703
|
+
const inputOTPContext = React118__namespace.useContext(inputOtp.OTPInputContext);
|
|
702
704
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
703
705
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
704
706
|
"div",
|
|
@@ -718,7 +720,7 @@ var InputOTPSlot = React116__namespace.forwardRef(({ index, className, ...props
|
|
|
718
720
|
);
|
|
719
721
|
});
|
|
720
722
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
721
|
-
var InputOTPSeparator =
|
|
723
|
+
var InputOTPSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
722
724
|
"div",
|
|
723
725
|
{
|
|
724
726
|
ref,
|
|
@@ -732,7 +734,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
732
734
|
var TooltipProvider = TooltipPrimitive__namespace.Provider;
|
|
733
735
|
var Tooltip = TooltipPrimitive__namespace.Root;
|
|
734
736
|
var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
|
|
735
|
-
var TooltipArrow =
|
|
737
|
+
var TooltipArrow = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
736
738
|
TooltipPrimitive__namespace.Arrow,
|
|
737
739
|
{
|
|
738
740
|
ref,
|
|
@@ -749,7 +751,7 @@ var TooltipArrow = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
749
751
|
}
|
|
750
752
|
));
|
|
751
753
|
TooltipArrow.displayName = TooltipPrimitive__namespace.Arrow.displayName;
|
|
752
|
-
var TooltipContent =
|
|
754
|
+
var TooltipContent = React118__namespace.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
753
755
|
TooltipPrimitive__namespace.Content,
|
|
754
756
|
{
|
|
755
757
|
ref,
|
|
@@ -773,7 +775,7 @@ var TooltipContent = React116__namespace.forwardRef(({ className, sideOffset = 4
|
|
|
773
775
|
}
|
|
774
776
|
) }));
|
|
775
777
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
776
|
-
var Card =
|
|
778
|
+
var Card = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
777
779
|
"div",
|
|
778
780
|
{
|
|
779
781
|
ref,
|
|
@@ -785,7 +787,7 @@ var Card = React116__namespace.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
785
787
|
}
|
|
786
788
|
));
|
|
787
789
|
Card.displayName = "Card";
|
|
788
|
-
var CardHeader =
|
|
790
|
+
var CardHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
789
791
|
"div",
|
|
790
792
|
{
|
|
791
793
|
ref,
|
|
@@ -794,7 +796,7 @@ var CardHeader = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
794
796
|
}
|
|
795
797
|
));
|
|
796
798
|
CardHeader.displayName = "CardHeader";
|
|
797
|
-
var CardTitle =
|
|
799
|
+
var CardTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
798
800
|
"div",
|
|
799
801
|
{
|
|
800
802
|
ref,
|
|
@@ -803,7 +805,7 @@ var CardTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
803
805
|
}
|
|
804
806
|
));
|
|
805
807
|
CardTitle.displayName = "CardTitle";
|
|
806
|
-
var CardDescription =
|
|
808
|
+
var CardDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
807
809
|
"div",
|
|
808
810
|
{
|
|
809
811
|
ref,
|
|
@@ -812,9 +814,9 @@ var CardDescription = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
812
814
|
}
|
|
813
815
|
));
|
|
814
816
|
CardDescription.displayName = "CardDescription";
|
|
815
|
-
var CardContent =
|
|
817
|
+
var CardContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
816
818
|
CardContent.displayName = "CardContent";
|
|
817
|
-
var CardFooter =
|
|
819
|
+
var CardFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
818
820
|
"div",
|
|
819
821
|
{
|
|
820
822
|
ref,
|
|
@@ -887,7 +889,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
887
889
|
restProps
|
|
888
890
|
};
|
|
889
891
|
}
|
|
890
|
-
var ArrowLeft =
|
|
892
|
+
var ArrowLeft = React118__namespace.forwardRef(
|
|
891
893
|
({ size = 20, ...props }, ref) => {
|
|
892
894
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
893
895
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -916,7 +918,7 @@ var ArrowLeft = React116__namespace.forwardRef(
|
|
|
916
918
|
}
|
|
917
919
|
);
|
|
918
920
|
ArrowLeft.displayName = "ArrowLeft";
|
|
919
|
-
var ArrowRight =
|
|
921
|
+
var ArrowRight = React118__namespace.forwardRef(
|
|
920
922
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
921
923
|
"svg",
|
|
922
924
|
{
|
|
@@ -938,7 +940,7 @@ var ArrowRight = React116__namespace.forwardRef(
|
|
|
938
940
|
)
|
|
939
941
|
);
|
|
940
942
|
ArrowRight.displayName = "ArrowRight";
|
|
941
|
-
var ArrowClockwiseIcon =
|
|
943
|
+
var ArrowClockwiseIcon = React118__namespace.forwardRef(
|
|
942
944
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
943
945
|
"svg",
|
|
944
946
|
{
|
|
@@ -960,7 +962,7 @@ var ArrowClockwiseIcon = React116__namespace.forwardRef(
|
|
|
960
962
|
)
|
|
961
963
|
);
|
|
962
964
|
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
963
|
-
var ArrowsClockwiseIcon =
|
|
965
|
+
var ArrowsClockwiseIcon = React118__namespace.forwardRef(
|
|
964
966
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
965
967
|
"svg",
|
|
966
968
|
{
|
|
@@ -982,7 +984,7 @@ var ArrowsClockwiseIcon = React116__namespace.forwardRef(
|
|
|
982
984
|
)
|
|
983
985
|
);
|
|
984
986
|
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
985
|
-
var ArrowSquareOut =
|
|
987
|
+
var ArrowSquareOut = React118__namespace.forwardRef(
|
|
986
988
|
({ size = 20, ...props }, ref) => {
|
|
987
989
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
988
990
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1011,7 +1013,7 @@ var ArrowSquareOut = React116__namespace.forwardRef(
|
|
|
1011
1013
|
}
|
|
1012
1014
|
);
|
|
1013
1015
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
1014
|
-
var ArrowUp =
|
|
1016
|
+
var ArrowUp = React118__namespace.forwardRef(
|
|
1015
1017
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1016
1018
|
"svg",
|
|
1017
1019
|
{
|
|
@@ -1033,7 +1035,7 @@ var ArrowUp = React116__namespace.forwardRef(
|
|
|
1033
1035
|
)
|
|
1034
1036
|
);
|
|
1035
1037
|
ArrowUp.displayName = "ArrowUp";
|
|
1036
|
-
var BooksIcon =
|
|
1038
|
+
var BooksIcon = React118__namespace.forwardRef(
|
|
1037
1039
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1038
1040
|
"svg",
|
|
1039
1041
|
{
|
|
@@ -1055,7 +1057,7 @@ var BooksIcon = React116__namespace.forwardRef(
|
|
|
1055
1057
|
)
|
|
1056
1058
|
);
|
|
1057
1059
|
BooksIcon.displayName = "BooksIcon";
|
|
1058
|
-
var Camera =
|
|
1060
|
+
var Camera = React118__namespace.forwardRef(
|
|
1059
1061
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1060
1062
|
"svg",
|
|
1061
1063
|
{
|
|
@@ -1077,7 +1079,7 @@ var Camera = React116__namespace.forwardRef(
|
|
|
1077
1079
|
)
|
|
1078
1080
|
);
|
|
1079
1081
|
Camera.displayName = "Camera";
|
|
1080
|
-
var CaretDown =
|
|
1082
|
+
var CaretDown = React118__namespace.forwardRef(
|
|
1081
1083
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1082
1084
|
"svg",
|
|
1083
1085
|
{
|
|
@@ -1099,7 +1101,7 @@ var CaretDown = React116__namespace.forwardRef(
|
|
|
1099
1101
|
)
|
|
1100
1102
|
);
|
|
1101
1103
|
CaretDown.displayName = "CaretDown";
|
|
1102
|
-
var CaretRight =
|
|
1104
|
+
var CaretRight = React118__namespace.forwardRef(
|
|
1103
1105
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1104
1106
|
"svg",
|
|
1105
1107
|
{
|
|
@@ -1121,7 +1123,7 @@ var CaretRight = React116__namespace.forwardRef(
|
|
|
1121
1123
|
)
|
|
1122
1124
|
);
|
|
1123
1125
|
CaretRight.displayName = "CaretRight";
|
|
1124
|
-
var CaretUpIcon =
|
|
1126
|
+
var CaretUpIcon = React118__namespace.forwardRef(
|
|
1125
1127
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1126
1128
|
"svg",
|
|
1127
1129
|
{
|
|
@@ -1143,7 +1145,7 @@ var CaretUpIcon = React116__namespace.forwardRef(
|
|
|
1143
1145
|
)
|
|
1144
1146
|
);
|
|
1145
1147
|
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1146
|
-
var ChartBar =
|
|
1148
|
+
var ChartBar = React118__namespace.forwardRef(
|
|
1147
1149
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1148
1150
|
"svg",
|
|
1149
1151
|
{
|
|
@@ -1165,7 +1167,7 @@ var ChartBar = React116__namespace.forwardRef(
|
|
|
1165
1167
|
)
|
|
1166
1168
|
);
|
|
1167
1169
|
ChartBar.displayName = "ChartBar";
|
|
1168
|
-
var Chat =
|
|
1170
|
+
var Chat = React118__namespace.forwardRef(
|
|
1169
1171
|
({ size = 20, ...props }, ref) => {
|
|
1170
1172
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1171
1173
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1194,7 +1196,7 @@ var Chat = React116__namespace.forwardRef(
|
|
|
1194
1196
|
}
|
|
1195
1197
|
);
|
|
1196
1198
|
Chat.displayName = "Chat";
|
|
1197
|
-
var ChatsCircle =
|
|
1199
|
+
var ChatsCircle = React118__namespace.forwardRef(
|
|
1198
1200
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1199
1201
|
"svg",
|
|
1200
1202
|
{
|
|
@@ -1216,7 +1218,7 @@ var ChatsCircle = React116__namespace.forwardRef(
|
|
|
1216
1218
|
)
|
|
1217
1219
|
);
|
|
1218
1220
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1219
|
-
var Check =
|
|
1221
|
+
var Check = React118__namespace.forwardRef(
|
|
1220
1222
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1221
1223
|
"svg",
|
|
1222
1224
|
{
|
|
@@ -1238,7 +1240,7 @@ var Check = React116__namespace.forwardRef(
|
|
|
1238
1240
|
)
|
|
1239
1241
|
);
|
|
1240
1242
|
Check.displayName = "Check";
|
|
1241
|
-
var CheckSquareIcon =
|
|
1243
|
+
var CheckSquareIcon = React118__namespace.forwardRef(
|
|
1242
1244
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1243
1245
|
"svg",
|
|
1244
1246
|
{
|
|
@@ -1260,7 +1262,7 @@ var CheckSquareIcon = React116__namespace.forwardRef(
|
|
|
1260
1262
|
)
|
|
1261
1263
|
);
|
|
1262
1264
|
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1263
|
-
var Circle =
|
|
1265
|
+
var Circle = React118__namespace.forwardRef(
|
|
1264
1266
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1265
1267
|
"svg",
|
|
1266
1268
|
{
|
|
@@ -1282,7 +1284,7 @@ var Circle = React116__namespace.forwardRef(
|
|
|
1282
1284
|
)
|
|
1283
1285
|
);
|
|
1284
1286
|
Circle.displayName = "Circle";
|
|
1285
|
-
var ClipboardTextIcon =
|
|
1287
|
+
var ClipboardTextIcon = React118__namespace.forwardRef(
|
|
1286
1288
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1287
1289
|
"svg",
|
|
1288
1290
|
{
|
|
@@ -1304,7 +1306,7 @@ var ClipboardTextIcon = React116__namespace.forwardRef(
|
|
|
1304
1306
|
)
|
|
1305
1307
|
);
|
|
1306
1308
|
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1307
|
-
var Clock =
|
|
1309
|
+
var Clock = React118__namespace.forwardRef(
|
|
1308
1310
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1309
1311
|
"svg",
|
|
1310
1312
|
{
|
|
@@ -1326,7 +1328,7 @@ var Clock = React116__namespace.forwardRef(
|
|
|
1326
1328
|
)
|
|
1327
1329
|
);
|
|
1328
1330
|
Clock.displayName = "Clock";
|
|
1329
|
-
var CopySimpleIcon =
|
|
1331
|
+
var CopySimpleIcon = React118__namespace.forwardRef(
|
|
1330
1332
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1331
1333
|
"svg",
|
|
1332
1334
|
{
|
|
@@ -1348,7 +1350,7 @@ var CopySimpleIcon = React116__namespace.forwardRef(
|
|
|
1348
1350
|
)
|
|
1349
1351
|
);
|
|
1350
1352
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1351
|
-
var CreditCard =
|
|
1353
|
+
var CreditCard = React118__namespace.forwardRef(
|
|
1352
1354
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1353
1355
|
"svg",
|
|
1354
1356
|
{
|
|
@@ -1370,7 +1372,7 @@ var CreditCard = React116__namespace.forwardRef(
|
|
|
1370
1372
|
)
|
|
1371
1373
|
);
|
|
1372
1374
|
CreditCard.displayName = "CreditCard";
|
|
1373
|
-
var CurrencyCircleDollar =
|
|
1375
|
+
var CurrencyCircleDollar = React118__namespace.default.forwardRef(
|
|
1374
1376
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1375
1377
|
"svg",
|
|
1376
1378
|
{
|
|
@@ -1392,7 +1394,7 @@ var CurrencyCircleDollar = React116__namespace.default.forwardRef(
|
|
|
1392
1394
|
)
|
|
1393
1395
|
);
|
|
1394
1396
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1395
|
-
var DotsSixVerticalIcon =
|
|
1397
|
+
var DotsSixVerticalIcon = React118__namespace.forwardRef(
|
|
1396
1398
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1397
1399
|
"svg",
|
|
1398
1400
|
{
|
|
@@ -1414,7 +1416,7 @@ var DotsSixVerticalIcon = React116__namespace.forwardRef(
|
|
|
1414
1416
|
)
|
|
1415
1417
|
);
|
|
1416
1418
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1417
|
-
var DotsThree =
|
|
1419
|
+
var DotsThree = React118__namespace.forwardRef(
|
|
1418
1420
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1419
1421
|
"svg",
|
|
1420
1422
|
{
|
|
@@ -1436,7 +1438,7 @@ var DotsThree = React116__namespace.forwardRef(
|
|
|
1436
1438
|
)
|
|
1437
1439
|
);
|
|
1438
1440
|
DotsThree.displayName = "DotsThree";
|
|
1439
|
-
var DotsThreeVertical =
|
|
1441
|
+
var DotsThreeVertical = React118__namespace.forwardRef(
|
|
1440
1442
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1441
1443
|
"svg",
|
|
1442
1444
|
{
|
|
@@ -1458,7 +1460,7 @@ var DotsThreeVertical = React116__namespace.forwardRef(
|
|
|
1458
1460
|
)
|
|
1459
1461
|
);
|
|
1460
1462
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1461
|
-
var FacebookLogo =
|
|
1463
|
+
var FacebookLogo = React118__namespace.forwardRef(
|
|
1462
1464
|
({ size = 20, ...props }, ref) => {
|
|
1463
1465
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1464
1466
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1487,7 +1489,7 @@ var FacebookLogo = React116__namespace.forwardRef(
|
|
|
1487
1489
|
}
|
|
1488
1490
|
);
|
|
1489
1491
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1490
|
-
var FolderIcon =
|
|
1492
|
+
var FolderIcon = React118__namespace.forwardRef(
|
|
1491
1493
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1492
1494
|
"svg",
|
|
1493
1495
|
{
|
|
@@ -1509,7 +1511,7 @@ var FolderIcon = React116__namespace.forwardRef(
|
|
|
1509
1511
|
)
|
|
1510
1512
|
);
|
|
1511
1513
|
FolderIcon.displayName = "FolderIcon";
|
|
1512
|
-
var FolderSimpleLockIcon =
|
|
1514
|
+
var FolderSimpleLockIcon = React118__namespace.forwardRef(
|
|
1513
1515
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1514
1516
|
"svg",
|
|
1515
1517
|
{
|
|
@@ -1531,7 +1533,7 @@ var FolderSimpleLockIcon = React116__namespace.forwardRef(
|
|
|
1531
1533
|
)
|
|
1532
1534
|
);
|
|
1533
1535
|
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1534
|
-
var Gear =
|
|
1536
|
+
var Gear = React118__namespace.forwardRef(
|
|
1535
1537
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1536
1538
|
"svg",
|
|
1537
1539
|
{
|
|
@@ -1553,7 +1555,7 @@ var Gear = React116__namespace.forwardRef(
|
|
|
1553
1555
|
)
|
|
1554
1556
|
);
|
|
1555
1557
|
Gear.displayName = "Gear";
|
|
1556
|
-
var GearSix =
|
|
1558
|
+
var GearSix = React118__namespace.forwardRef(
|
|
1557
1559
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1558
1560
|
"svg",
|
|
1559
1561
|
{
|
|
@@ -1575,7 +1577,7 @@ var GearSix = React116__namespace.forwardRef(
|
|
|
1575
1577
|
)
|
|
1576
1578
|
);
|
|
1577
1579
|
GearSix.displayName = "GearSix";
|
|
1578
|
-
var GitCommit =
|
|
1580
|
+
var GitCommit = React118__namespace.forwardRef(
|
|
1579
1581
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1580
1582
|
"svg",
|
|
1581
1583
|
{
|
|
@@ -1597,7 +1599,7 @@ var GitCommit = React116__namespace.forwardRef(
|
|
|
1597
1599
|
)
|
|
1598
1600
|
);
|
|
1599
1601
|
GitCommit.displayName = "GitCommit";
|
|
1600
|
-
var Headset =
|
|
1602
|
+
var Headset = React118__namespace.forwardRef(
|
|
1601
1603
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1602
1604
|
"svg",
|
|
1603
1605
|
{
|
|
@@ -1619,7 +1621,7 @@ var Headset = React116__namespace.forwardRef(
|
|
|
1619
1621
|
)
|
|
1620
1622
|
);
|
|
1621
1623
|
Headset.displayName = "Headset";
|
|
1622
|
-
var ImageIcon =
|
|
1624
|
+
var ImageIcon = React118__namespace.forwardRef(
|
|
1623
1625
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1624
1626
|
"svg",
|
|
1625
1627
|
{
|
|
@@ -1641,7 +1643,7 @@ var ImageIcon = React116__namespace.forwardRef(
|
|
|
1641
1643
|
)
|
|
1642
1644
|
);
|
|
1643
1645
|
ImageIcon.displayName = "ImageIcon";
|
|
1644
|
-
var InstagramLogo =
|
|
1646
|
+
var InstagramLogo = React118__namespace.forwardRef(
|
|
1645
1647
|
({ size = 20, ...props }, ref) => {
|
|
1646
1648
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1647
1649
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1670,7 +1672,7 @@ var InstagramLogo = React116__namespace.forwardRef(
|
|
|
1670
1672
|
}
|
|
1671
1673
|
);
|
|
1672
1674
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1673
|
-
var KeyIcon =
|
|
1675
|
+
var KeyIcon = React118__namespace.forwardRef(
|
|
1674
1676
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1675
1677
|
"svg",
|
|
1676
1678
|
{
|
|
@@ -1692,7 +1694,7 @@ var KeyIcon = React116__namespace.forwardRef(
|
|
|
1692
1694
|
)
|
|
1693
1695
|
);
|
|
1694
1696
|
KeyIcon.displayName = "KeyIcon";
|
|
1695
|
-
var LinkIcon =
|
|
1697
|
+
var LinkIcon = React118__namespace.forwardRef(
|
|
1696
1698
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1697
1699
|
"svg",
|
|
1698
1700
|
{
|
|
@@ -1714,7 +1716,7 @@ var LinkIcon = React116__namespace.forwardRef(
|
|
|
1714
1716
|
)
|
|
1715
1717
|
);
|
|
1716
1718
|
LinkIcon.displayName = "LinkIcon";
|
|
1717
|
-
var LinkSimple =
|
|
1719
|
+
var LinkSimple = React118__namespace.forwardRef(
|
|
1718
1720
|
({ size = 20, ...props }, ref) => {
|
|
1719
1721
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1720
1722
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1743,7 +1745,7 @@ var LinkSimple = React116__namespace.forwardRef(
|
|
|
1743
1745
|
}
|
|
1744
1746
|
);
|
|
1745
1747
|
LinkSimple.displayName = "LinkSimple";
|
|
1746
|
-
var LockSimple =
|
|
1748
|
+
var LockSimple = React118__namespace.default.forwardRef(
|
|
1747
1749
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1748
1750
|
"svg",
|
|
1749
1751
|
{
|
|
@@ -1765,7 +1767,7 @@ var LockSimple = React116__namespace.default.forwardRef(
|
|
|
1765
1767
|
)
|
|
1766
1768
|
);
|
|
1767
1769
|
LockSimple.displayName = "LockSimple";
|
|
1768
|
-
var Logo =
|
|
1770
|
+
var Logo = React118__namespace.forwardRef(
|
|
1769
1771
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1770
1772
|
"svg",
|
|
1771
1773
|
{
|
|
@@ -2239,7 +2241,7 @@ var Logo = React116__namespace.forwardRef(
|
|
|
2239
2241
|
)
|
|
2240
2242
|
);
|
|
2241
2243
|
Logo.displayName = "Logo";
|
|
2242
|
-
var MagnifyingGlass =
|
|
2244
|
+
var MagnifyingGlass = React118__namespace.forwardRef(
|
|
2243
2245
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2244
2246
|
"svg",
|
|
2245
2247
|
{
|
|
@@ -2261,7 +2263,7 @@ var MagnifyingGlass = React116__namespace.forwardRef(
|
|
|
2261
2263
|
)
|
|
2262
2264
|
);
|
|
2263
2265
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2264
|
-
var MapPin =
|
|
2266
|
+
var MapPin = React118__namespace.forwardRef(
|
|
2265
2267
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2266
2268
|
"svg",
|
|
2267
2269
|
{
|
|
@@ -2283,7 +2285,7 @@ var MapPin = React116__namespace.forwardRef(
|
|
|
2283
2285
|
)
|
|
2284
2286
|
);
|
|
2285
2287
|
MapPin.displayName = "MapPin";
|
|
2286
|
-
var Microphone =
|
|
2288
|
+
var Microphone = React118__namespace.forwardRef(
|
|
2287
2289
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2288
2290
|
"svg",
|
|
2289
2291
|
{
|
|
@@ -2305,7 +2307,7 @@ var Microphone = React116__namespace.forwardRef(
|
|
|
2305
2307
|
)
|
|
2306
2308
|
);
|
|
2307
2309
|
Microphone.displayName = "Microphone";
|
|
2308
|
-
var Minus =
|
|
2310
|
+
var Minus = React118__namespace.forwardRef(
|
|
2309
2311
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2310
2312
|
"svg",
|
|
2311
2313
|
{
|
|
@@ -2327,7 +2329,7 @@ var Minus = React116__namespace.forwardRef(
|
|
|
2327
2329
|
)
|
|
2328
2330
|
);
|
|
2329
2331
|
Minus.displayName = "Minus";
|
|
2330
|
-
var MinusCircleIcon =
|
|
2332
|
+
var MinusCircleIcon = React118__namespace.forwardRef(
|
|
2331
2333
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2332
2334
|
"svg",
|
|
2333
2335
|
{
|
|
@@ -2349,7 +2351,7 @@ var MinusCircleIcon = React116__namespace.forwardRef(
|
|
|
2349
2351
|
)
|
|
2350
2352
|
);
|
|
2351
2353
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2352
|
-
var PackageIcon =
|
|
2354
|
+
var PackageIcon = React118__namespace.forwardRef(
|
|
2353
2355
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2354
2356
|
"svg",
|
|
2355
2357
|
{
|
|
@@ -2371,7 +2373,7 @@ var PackageIcon = React116__namespace.forwardRef(
|
|
|
2371
2373
|
)
|
|
2372
2374
|
);
|
|
2373
2375
|
PackageIcon.displayName = "PackageIcon";
|
|
2374
|
-
var Paperclip =
|
|
2376
|
+
var Paperclip = React118__namespace.forwardRef(
|
|
2375
2377
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2376
2378
|
"svg",
|
|
2377
2379
|
{
|
|
@@ -2393,7 +2395,7 @@ var Paperclip = React116__namespace.forwardRef(
|
|
|
2393
2395
|
)
|
|
2394
2396
|
);
|
|
2395
2397
|
Paperclip.displayName = "Paperclip";
|
|
2396
|
-
var PaperPlane =
|
|
2398
|
+
var PaperPlane = React118__namespace.forwardRef(
|
|
2397
2399
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2398
2400
|
"svg",
|
|
2399
2401
|
{
|
|
@@ -2415,7 +2417,7 @@ var PaperPlane = React116__namespace.forwardRef(
|
|
|
2415
2417
|
)
|
|
2416
2418
|
);
|
|
2417
2419
|
PaperPlane.displayName = "PaperPlane";
|
|
2418
|
-
var PaperPlaneTilt =
|
|
2420
|
+
var PaperPlaneTilt = React118__namespace.forwardRef(
|
|
2419
2421
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2420
2422
|
"svg",
|
|
2421
2423
|
{
|
|
@@ -2437,7 +2439,7 @@ var PaperPlaneTilt = React116__namespace.forwardRef(
|
|
|
2437
2439
|
)
|
|
2438
2440
|
);
|
|
2439
2441
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2440
|
-
var PencilSimple =
|
|
2442
|
+
var PencilSimple = React118__namespace.forwardRef(
|
|
2441
2443
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2442
2444
|
"svg",
|
|
2443
2445
|
{
|
|
@@ -2459,7 +2461,7 @@ var PencilSimple = React116__namespace.forwardRef(
|
|
|
2459
2461
|
)
|
|
2460
2462
|
);
|
|
2461
2463
|
PencilSimple.displayName = "PencilSimple";
|
|
2462
|
-
var PlugsRegular =
|
|
2464
|
+
var PlugsRegular = React118__namespace.forwardRef(
|
|
2463
2465
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2464
2466
|
"svg",
|
|
2465
2467
|
{
|
|
@@ -2481,7 +2483,7 @@ var PlugsRegular = React116__namespace.forwardRef(
|
|
|
2481
2483
|
)
|
|
2482
2484
|
);
|
|
2483
2485
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2484
|
-
var ShoppingCartIcon =
|
|
2486
|
+
var ShoppingCartIcon = React118__namespace.forwardRef(
|
|
2485
2487
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2486
2488
|
"svg",
|
|
2487
2489
|
{
|
|
@@ -2503,7 +2505,7 @@ var ShoppingCartIcon = React116__namespace.forwardRef(
|
|
|
2503
2505
|
)
|
|
2504
2506
|
);
|
|
2505
2507
|
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2506
|
-
var Plus =
|
|
2508
|
+
var Plus = React118__namespace.forwardRef(
|
|
2507
2509
|
({ size = 20, ...props }, ref) => {
|
|
2508
2510
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2509
2511
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2532,7 +2534,7 @@ var Plus = React116__namespace.forwardRef(
|
|
|
2532
2534
|
}
|
|
2533
2535
|
);
|
|
2534
2536
|
Plus.displayName = "Plus";
|
|
2535
|
-
var RecordIcon =
|
|
2537
|
+
var RecordIcon = React118__namespace.forwardRef(
|
|
2536
2538
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2537
2539
|
"svg",
|
|
2538
2540
|
{
|
|
@@ -2554,7 +2556,7 @@ var RecordIcon = React116__namespace.forwardRef(
|
|
|
2554
2556
|
)
|
|
2555
2557
|
);
|
|
2556
2558
|
RecordIcon.displayName = "RecordIcon";
|
|
2557
|
-
var SidebarSimple =
|
|
2559
|
+
var SidebarSimple = React118__namespace.forwardRef(
|
|
2558
2560
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2559
2561
|
"svg",
|
|
2560
2562
|
{
|
|
@@ -2576,7 +2578,7 @@ var SidebarSimple = React116__namespace.forwardRef(
|
|
|
2576
2578
|
)
|
|
2577
2579
|
);
|
|
2578
2580
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2579
|
-
var SignOut =
|
|
2581
|
+
var SignOut = React118__namespace.forwardRef(
|
|
2580
2582
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2581
2583
|
"svg",
|
|
2582
2584
|
{
|
|
@@ -2598,7 +2600,7 @@ var SignOut = React116__namespace.forwardRef(
|
|
|
2598
2600
|
)
|
|
2599
2601
|
);
|
|
2600
2602
|
SignOut.displayName = "SignOut";
|
|
2601
|
-
var Storefront =
|
|
2603
|
+
var Storefront = React118__namespace.forwardRef(
|
|
2602
2604
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2603
2605
|
"svg",
|
|
2604
2606
|
{
|
|
@@ -2620,7 +2622,7 @@ var Storefront = React116__namespace.forwardRef(
|
|
|
2620
2622
|
)
|
|
2621
2623
|
);
|
|
2622
2624
|
Storefront.displayName = "Storefront";
|
|
2623
|
-
var Tag =
|
|
2625
|
+
var Tag = React118__namespace.forwardRef(
|
|
2624
2626
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2625
2627
|
"svg",
|
|
2626
2628
|
{
|
|
@@ -2642,7 +2644,7 @@ var Tag = React116__namespace.forwardRef(
|
|
|
2642
2644
|
)
|
|
2643
2645
|
);
|
|
2644
2646
|
Tag.displayName = "Tag";
|
|
2645
|
-
var Ticket =
|
|
2647
|
+
var Ticket = React118__namespace.forwardRef(
|
|
2646
2648
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2647
2649
|
"svg",
|
|
2648
2650
|
{
|
|
@@ -2664,7 +2666,7 @@ var Ticket = React116__namespace.forwardRef(
|
|
|
2664
2666
|
)
|
|
2665
2667
|
);
|
|
2666
2668
|
Ticket.displayName = "Ticket";
|
|
2667
|
-
var Trash =
|
|
2669
|
+
var Trash = React118__namespace.forwardRef(
|
|
2668
2670
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2669
2671
|
"svg",
|
|
2670
2672
|
{
|
|
@@ -2686,7 +2688,7 @@ var Trash = React116__namespace.forwardRef(
|
|
|
2686
2688
|
)
|
|
2687
2689
|
);
|
|
2688
2690
|
Trash.displayName = "Trash";
|
|
2689
|
-
var UserCircle =
|
|
2691
|
+
var UserCircle = React118__namespace.forwardRef(
|
|
2690
2692
|
({ size = 24, ...props }, ref) => {
|
|
2691
2693
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2692
2694
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2715,7 +2717,7 @@ var UserCircle = React116__namespace.forwardRef(
|
|
|
2715
2717
|
}
|
|
2716
2718
|
);
|
|
2717
2719
|
UserCircle.displayName = "UserCircle";
|
|
2718
|
-
var UserIcon =
|
|
2720
|
+
var UserIcon = React118__namespace.forwardRef(
|
|
2719
2721
|
({ size = 24, ...props }, ref) => {
|
|
2720
2722
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2721
2723
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2744,7 +2746,7 @@ var UserIcon = React116__namespace.forwardRef(
|
|
|
2744
2746
|
}
|
|
2745
2747
|
);
|
|
2746
2748
|
UserIcon.displayName = "UserIcon";
|
|
2747
|
-
var Users =
|
|
2749
|
+
var Users = React118__namespace.forwardRef(
|
|
2748
2750
|
({ size = 20, ...props }, ref) => {
|
|
2749
2751
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2750
2752
|
props,
|
|
@@ -2773,7 +2775,7 @@ var Users = React116__namespace.forwardRef(
|
|
|
2773
2775
|
}
|
|
2774
2776
|
);
|
|
2775
2777
|
Users.displayName = "Users";
|
|
2776
|
-
var VideoCamera =
|
|
2778
|
+
var VideoCamera = React118__namespace.forwardRef(
|
|
2777
2779
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2778
2780
|
"svg",
|
|
2779
2781
|
{
|
|
@@ -2795,7 +2797,7 @@ var VideoCamera = React116__namespace.forwardRef(
|
|
|
2795
2797
|
)
|
|
2796
2798
|
);
|
|
2797
2799
|
VideoCamera.displayName = "VideoCamera";
|
|
2798
|
-
var WhatsAppLogo =
|
|
2800
|
+
var WhatsAppLogo = React118__namespace.forwardRef(
|
|
2799
2801
|
({ size = 20, ...props }, ref) => {
|
|
2800
2802
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2801
2803
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2824,7 +2826,7 @@ var WhatsAppLogo = React116__namespace.forwardRef(
|
|
|
2824
2826
|
}
|
|
2825
2827
|
);
|
|
2826
2828
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2827
|
-
var WarningOctagon =
|
|
2829
|
+
var WarningOctagon = React118__namespace.forwardRef(
|
|
2828
2830
|
({ size = 20, ...props }, ref) => {
|
|
2829
2831
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2830
2832
|
props,
|
|
@@ -2853,7 +2855,7 @@ var WarningOctagon = React116__namespace.forwardRef(
|
|
|
2853
2855
|
}
|
|
2854
2856
|
);
|
|
2855
2857
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2856
|
-
var WarningTriangle =
|
|
2858
|
+
var WarningTriangle = React118__namespace.forwardRef(
|
|
2857
2859
|
({ size = 20, ...props }, ref) => {
|
|
2858
2860
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2859
2861
|
props,
|
|
@@ -2882,7 +2884,7 @@ var WarningTriangle = React116__namespace.forwardRef(
|
|
|
2882
2884
|
}
|
|
2883
2885
|
);
|
|
2884
2886
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2885
|
-
var Waveform =
|
|
2887
|
+
var Waveform = React118__namespace.forwardRef(
|
|
2886
2888
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2887
2889
|
"svg",
|
|
2888
2890
|
{
|
|
@@ -2904,7 +2906,7 @@ var Waveform = React116__namespace.forwardRef(
|
|
|
2904
2906
|
)
|
|
2905
2907
|
);
|
|
2906
2908
|
Waveform.displayName = "Waveform";
|
|
2907
|
-
var WrenchIcon =
|
|
2909
|
+
var WrenchIcon = React118__namespace.forwardRef(
|
|
2908
2910
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2909
2911
|
"svg",
|
|
2910
2912
|
{
|
|
@@ -2926,7 +2928,7 @@ var WrenchIcon = React116__namespace.forwardRef(
|
|
|
2926
2928
|
)
|
|
2927
2929
|
);
|
|
2928
2930
|
WrenchIcon.displayName = "WrenchIcon";
|
|
2929
|
-
var XIcon =
|
|
2931
|
+
var XIcon = React118__namespace.forwardRef(
|
|
2930
2932
|
({ size = 24, ...props }, ref) => {
|
|
2931
2933
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2932
2934
|
props,
|
|
@@ -2957,13 +2959,50 @@ var XIcon = React116__namespace.forwardRef(
|
|
|
2957
2959
|
}
|
|
2958
2960
|
);
|
|
2959
2961
|
XIcon.displayName = "XIcon";
|
|
2962
|
+
var DownloadIcon = React118__namespace.forwardRef(
|
|
2963
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2964
|
+
"svg",
|
|
2965
|
+
{
|
|
2966
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2967
|
+
ref,
|
|
2968
|
+
width: size,
|
|
2969
|
+
height: size,
|
|
2970
|
+
fill: "none",
|
|
2971
|
+
viewBox: "0 0 24 24",
|
|
2972
|
+
children: [
|
|
2973
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Download" }),
|
|
2974
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M21 13.5v6a.75.75 0 0 1-.75.75H3.75A.75.75 0 0 1 3 19.5v-6a.75.75 0 1 1 1.5 0v5.25h15V13.5a.75.75 0 1 1 1.5 0M8.78 7.282l2.47-2.47v8.69a.75.75 0 1 0 1.5 0V4.81l2.47 2.47a.75.75 0 1 0 1.06-1.061l-3.75-3.75a.75.75 0 0 0-1.06 0L7.72 6.22a.75.75 0 0 0 1.06 1.061" })
|
|
2975
|
+
]
|
|
2976
|
+
}
|
|
2977
|
+
)
|
|
2978
|
+
);
|
|
2979
|
+
DownloadIcon.displayName = "DownloadIcon";
|
|
2980
|
+
var TextIcon = React118__namespace.forwardRef(
|
|
2981
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2982
|
+
"svg",
|
|
2983
|
+
{
|
|
2984
|
+
ref,
|
|
2985
|
+
width: size,
|
|
2986
|
+
height: size,
|
|
2987
|
+
...props,
|
|
2988
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2989
|
+
fill: "none",
|
|
2990
|
+
viewBox: "0 0 24 24",
|
|
2991
|
+
children: [
|
|
2992
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: "Text" }),
|
|
2993
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: props.color || "currentColor", fillOpacity: ".6", d: "M19.5 5.25v3a.75.75 0 1 1-1.5 0V6h-5.25v12H15a.75.75 0 1 1 0 1.5H9A.75.75 0 1 1 9 18h2.25V6H6v2.25a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 .75.75" })
|
|
2994
|
+
]
|
|
2995
|
+
}
|
|
2996
|
+
)
|
|
2997
|
+
);
|
|
2998
|
+
TextIcon.displayName = "TextIcon";
|
|
2960
2999
|
|
|
2961
3000
|
// src/icons/file-icons/aep.tsx
|
|
2962
3001
|
var aep_exports = {};
|
|
2963
3002
|
__export(aep_exports, {
|
|
2964
3003
|
AEP: () => AEP
|
|
2965
3004
|
});
|
|
2966
|
-
var AEP =
|
|
3005
|
+
var AEP = React118__namespace.forwardRef(
|
|
2967
3006
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2968
3007
|
"svg",
|
|
2969
3008
|
{
|
|
@@ -3011,7 +3050,7 @@ var ai_exports = {};
|
|
|
3011
3050
|
__export(ai_exports, {
|
|
3012
3051
|
AI: () => AI
|
|
3013
3052
|
});
|
|
3014
|
-
var AI =
|
|
3053
|
+
var AI = React118__namespace.forwardRef(
|
|
3015
3054
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3016
3055
|
"svg",
|
|
3017
3056
|
{
|
|
@@ -3059,7 +3098,7 @@ var avi_exports = {};
|
|
|
3059
3098
|
__export(avi_exports, {
|
|
3060
3099
|
AVI: () => AVI
|
|
3061
3100
|
});
|
|
3062
|
-
var AVI =
|
|
3101
|
+
var AVI = React118__namespace.forwardRef(
|
|
3063
3102
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3064
3103
|
"svg",
|
|
3065
3104
|
{
|
|
@@ -3107,7 +3146,7 @@ var blend_exports = {};
|
|
|
3107
3146
|
__export(blend_exports, {
|
|
3108
3147
|
Blend: () => Blend
|
|
3109
3148
|
});
|
|
3110
|
-
var Blend =
|
|
3149
|
+
var Blend = React118__namespace.forwardRef(
|
|
3111
3150
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3112
3151
|
"svg",
|
|
3113
3152
|
{
|
|
@@ -3155,7 +3194,7 @@ var c4d_exports = {};
|
|
|
3155
3194
|
__export(c4d_exports, {
|
|
3156
3195
|
C4D: () => C4D
|
|
3157
3196
|
});
|
|
3158
|
-
var C4D =
|
|
3197
|
+
var C4D = React118__namespace.forwardRef(
|
|
3159
3198
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3160
3199
|
"svg",
|
|
3161
3200
|
{
|
|
@@ -3203,7 +3242,7 @@ var cdr_exports = {};
|
|
|
3203
3242
|
__export(cdr_exports, {
|
|
3204
3243
|
CDR: () => CDR
|
|
3205
3244
|
});
|
|
3206
|
-
var CDR =
|
|
3245
|
+
var CDR = React118__namespace.forwardRef(
|
|
3207
3246
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3208
3247
|
"svg",
|
|
3209
3248
|
{
|
|
@@ -3251,7 +3290,7 @@ var css_exports = {};
|
|
|
3251
3290
|
__export(css_exports, {
|
|
3252
3291
|
CSS: () => CSS
|
|
3253
3292
|
});
|
|
3254
|
-
var CSS =
|
|
3293
|
+
var CSS = React118__namespace.forwardRef(
|
|
3255
3294
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3256
3295
|
"svg",
|
|
3257
3296
|
{
|
|
@@ -3299,7 +3338,7 @@ var csv_exports = {};
|
|
|
3299
3338
|
__export(csv_exports, {
|
|
3300
3339
|
CSV: () => CSV
|
|
3301
3340
|
});
|
|
3302
|
-
var CSV =
|
|
3341
|
+
var CSV = React118__namespace.forwardRef(
|
|
3303
3342
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3304
3343
|
"svg",
|
|
3305
3344
|
{
|
|
@@ -3347,7 +3386,7 @@ var dmg_exports = {};
|
|
|
3347
3386
|
__export(dmg_exports, {
|
|
3348
3387
|
DMG: () => DMG
|
|
3349
3388
|
});
|
|
3350
|
-
var DMG =
|
|
3389
|
+
var DMG = React118__namespace.forwardRef(
|
|
3351
3390
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3352
3391
|
"svg",
|
|
3353
3392
|
{
|
|
@@ -3395,7 +3434,7 @@ var doc_exports = {};
|
|
|
3395
3434
|
__export(doc_exports, {
|
|
3396
3435
|
DOC: () => DOC
|
|
3397
3436
|
});
|
|
3398
|
-
var DOC =
|
|
3437
|
+
var DOC = React118__namespace.forwardRef(
|
|
3399
3438
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3400
3439
|
"svg",
|
|
3401
3440
|
{
|
|
@@ -3443,7 +3482,7 @@ var exe_exports = {};
|
|
|
3443
3482
|
__export(exe_exports, {
|
|
3444
3483
|
EXE: () => EXE
|
|
3445
3484
|
});
|
|
3446
|
-
var EXE =
|
|
3485
|
+
var EXE = React118__namespace.forwardRef(
|
|
3447
3486
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3448
3487
|
"svg",
|
|
3449
3488
|
{
|
|
@@ -3491,7 +3530,7 @@ var fig_exports = {};
|
|
|
3491
3530
|
__export(fig_exports, {
|
|
3492
3531
|
Fig: () => Fig
|
|
3493
3532
|
});
|
|
3494
|
-
var Fig =
|
|
3533
|
+
var Fig = React118__namespace.forwardRef(
|
|
3495
3534
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3496
3535
|
"svg",
|
|
3497
3536
|
{
|
|
@@ -3539,7 +3578,7 @@ var gif_exports = {};
|
|
|
3539
3578
|
__export(gif_exports, {
|
|
3540
3579
|
GIF: () => GIF
|
|
3541
3580
|
});
|
|
3542
|
-
var GIF =
|
|
3581
|
+
var GIF = React118__namespace.forwardRef(
|
|
3543
3582
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3544
3583
|
"svg",
|
|
3545
3584
|
{
|
|
@@ -3587,7 +3626,7 @@ var html_exports = {};
|
|
|
3587
3626
|
__export(html_exports, {
|
|
3588
3627
|
HTML: () => HTML
|
|
3589
3628
|
});
|
|
3590
|
-
var HTML =
|
|
3629
|
+
var HTML = React118__namespace.forwardRef(
|
|
3591
3630
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3592
3631
|
"svg",
|
|
3593
3632
|
{
|
|
@@ -3635,7 +3674,7 @@ var ico_exports = {};
|
|
|
3635
3674
|
__export(ico_exports, {
|
|
3636
3675
|
ICO: () => ICO
|
|
3637
3676
|
});
|
|
3638
|
-
var ICO =
|
|
3677
|
+
var ICO = React118__namespace.forwardRef(
|
|
3639
3678
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3640
3679
|
"svg",
|
|
3641
3680
|
{
|
|
@@ -3683,7 +3722,7 @@ var java_exports = {};
|
|
|
3683
3722
|
__export(java_exports, {
|
|
3684
3723
|
Java: () => Java
|
|
3685
3724
|
});
|
|
3686
|
-
var Java =
|
|
3725
|
+
var Java = React118__namespace.forwardRef(
|
|
3687
3726
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3688
3727
|
"svg",
|
|
3689
3728
|
{
|
|
@@ -3731,7 +3770,7 @@ var jpeg_exports = {};
|
|
|
3731
3770
|
__export(jpeg_exports, {
|
|
3732
3771
|
JPEG: () => JPEG
|
|
3733
3772
|
});
|
|
3734
|
-
var JPEG =
|
|
3773
|
+
var JPEG = React118__namespace.forwardRef(
|
|
3735
3774
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3736
3775
|
"svg",
|
|
3737
3776
|
{
|
|
@@ -3779,7 +3818,7 @@ var jpg_exports = {};
|
|
|
3779
3818
|
__export(jpg_exports, {
|
|
3780
3819
|
JPG: () => JPG
|
|
3781
3820
|
});
|
|
3782
|
-
var JPG =
|
|
3821
|
+
var JPG = React118__namespace.forwardRef(
|
|
3783
3822
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3784
3823
|
"svg",
|
|
3785
3824
|
{
|
|
@@ -3827,7 +3866,7 @@ var js_exports = {};
|
|
|
3827
3866
|
__export(js_exports, {
|
|
3828
3867
|
JS: () => JS
|
|
3829
3868
|
});
|
|
3830
|
-
var JS =
|
|
3869
|
+
var JS = React118__namespace.forwardRef(
|
|
3831
3870
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3832
3871
|
"svg",
|
|
3833
3872
|
{
|
|
@@ -3875,7 +3914,7 @@ var json_exports = {};
|
|
|
3875
3914
|
__export(json_exports, {
|
|
3876
3915
|
JSON: () => JSON
|
|
3877
3916
|
});
|
|
3878
|
-
var JSON =
|
|
3917
|
+
var JSON = React118__namespace.forwardRef(
|
|
3879
3918
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3880
3919
|
"svg",
|
|
3881
3920
|
{
|
|
@@ -3923,7 +3962,7 @@ var mov_exports = {};
|
|
|
3923
3962
|
__export(mov_exports, {
|
|
3924
3963
|
MOV: () => MOV
|
|
3925
3964
|
});
|
|
3926
|
-
var MOV =
|
|
3965
|
+
var MOV = React118__namespace.forwardRef(
|
|
3927
3966
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3928
3967
|
"svg",
|
|
3929
3968
|
{
|
|
@@ -3971,7 +4010,7 @@ var mp3_exports = {};
|
|
|
3971
4010
|
__export(mp3_exports, {
|
|
3972
4011
|
MP3: () => MP3
|
|
3973
4012
|
});
|
|
3974
|
-
var MP3 =
|
|
4013
|
+
var MP3 = React118__namespace.forwardRef(
|
|
3975
4014
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3976
4015
|
"svg",
|
|
3977
4016
|
{
|
|
@@ -4019,7 +4058,7 @@ var mp4_exports = {};
|
|
|
4019
4058
|
__export(mp4_exports, {
|
|
4020
4059
|
MP4: () => MP4
|
|
4021
4060
|
});
|
|
4022
|
-
var MP4 =
|
|
4061
|
+
var MP4 = React118__namespace.forwardRef(
|
|
4023
4062
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4024
4063
|
"svg",
|
|
4025
4064
|
{
|
|
@@ -4067,7 +4106,7 @@ var mpg_exports = {};
|
|
|
4067
4106
|
__export(mpg_exports, {
|
|
4068
4107
|
MPG: () => MPG
|
|
4069
4108
|
});
|
|
4070
|
-
var MPG =
|
|
4109
|
+
var MPG = React118__namespace.forwardRef(
|
|
4071
4110
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4072
4111
|
"svg",
|
|
4073
4112
|
{
|
|
@@ -4115,7 +4154,7 @@ var pdf_exports = {};
|
|
|
4115
4154
|
__export(pdf_exports, {
|
|
4116
4155
|
PDF: () => PDF
|
|
4117
4156
|
});
|
|
4118
|
-
var PDF =
|
|
4157
|
+
var PDF = React118__namespace.forwardRef(
|
|
4119
4158
|
({ ...props }, ref) => {
|
|
4120
4159
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
4121
4160
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -4168,7 +4207,7 @@ var png_exports = {};
|
|
|
4168
4207
|
__export(png_exports, {
|
|
4169
4208
|
PNG: () => PNG
|
|
4170
4209
|
});
|
|
4171
|
-
var PNG =
|
|
4210
|
+
var PNG = React118__namespace.forwardRef(
|
|
4172
4211
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4173
4212
|
"svg",
|
|
4174
4213
|
{
|
|
@@ -4216,7 +4255,7 @@ var ppt_exports = {};
|
|
|
4216
4255
|
__export(ppt_exports, {
|
|
4217
4256
|
PPT: () => PPT
|
|
4218
4257
|
});
|
|
4219
|
-
var PPT =
|
|
4258
|
+
var PPT = React118__namespace.forwardRef(
|
|
4220
4259
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4221
4260
|
"svg",
|
|
4222
4261
|
{
|
|
@@ -4264,7 +4303,7 @@ var psd_exports = {};
|
|
|
4264
4303
|
__export(psd_exports, {
|
|
4265
4304
|
PSD: () => PSD
|
|
4266
4305
|
});
|
|
4267
|
-
var PSD =
|
|
4306
|
+
var PSD = React118__namespace.forwardRef(
|
|
4268
4307
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4269
4308
|
"svg",
|
|
4270
4309
|
{
|
|
@@ -4312,7 +4351,7 @@ var rar_exports = {};
|
|
|
4312
4351
|
__export(rar_exports, {
|
|
4313
4352
|
Rar: () => Rar
|
|
4314
4353
|
});
|
|
4315
|
-
var Rar =
|
|
4354
|
+
var Rar = React118__namespace.forwardRef(
|
|
4316
4355
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4317
4356
|
"svg",
|
|
4318
4357
|
{
|
|
@@ -4360,7 +4399,7 @@ var sketch_exports = {};
|
|
|
4360
4399
|
__export(sketch_exports, {
|
|
4361
4400
|
Sketch: () => Sketch
|
|
4362
4401
|
});
|
|
4363
|
-
var Sketch =
|
|
4402
|
+
var Sketch = React118__namespace.forwardRef(
|
|
4364
4403
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4365
4404
|
"svg",
|
|
4366
4405
|
{
|
|
@@ -4408,7 +4447,7 @@ var svg_exports = {};
|
|
|
4408
4447
|
__export(svg_exports, {
|
|
4409
4448
|
SVG: () => SVG
|
|
4410
4449
|
});
|
|
4411
|
-
var SVG =
|
|
4450
|
+
var SVG = React118__namespace.forwardRef(
|
|
4412
4451
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4413
4452
|
"svg",
|
|
4414
4453
|
{
|
|
@@ -4456,7 +4495,7 @@ var tiff_exports = {};
|
|
|
4456
4495
|
__export(tiff_exports, {
|
|
4457
4496
|
TIFF: () => TIFF
|
|
4458
4497
|
});
|
|
4459
|
-
var TIFF =
|
|
4498
|
+
var TIFF = React118__namespace.forwardRef(
|
|
4460
4499
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4461
4500
|
"svg",
|
|
4462
4501
|
{
|
|
@@ -4504,7 +4543,7 @@ var txt_exports = {};
|
|
|
4504
4543
|
__export(txt_exports, {
|
|
4505
4544
|
TXT: () => TXT
|
|
4506
4545
|
});
|
|
4507
|
-
var TXT =
|
|
4546
|
+
var TXT = React118__namespace.forwardRef(
|
|
4508
4547
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4509
4548
|
"svg",
|
|
4510
4549
|
{
|
|
@@ -4552,7 +4591,7 @@ var wav_exports = {};
|
|
|
4552
4591
|
__export(wav_exports, {
|
|
4553
4592
|
WAV: () => WAV
|
|
4554
4593
|
});
|
|
4555
|
-
var WAV =
|
|
4594
|
+
var WAV = React118__namespace.forwardRef(
|
|
4556
4595
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4557
4596
|
"svg",
|
|
4558
4597
|
{
|
|
@@ -4600,7 +4639,7 @@ var webp_exports = {};
|
|
|
4600
4639
|
__export(webp_exports, {
|
|
4601
4640
|
WEBP: () => WEBP
|
|
4602
4641
|
});
|
|
4603
|
-
var WEBP =
|
|
4642
|
+
var WEBP = React118__namespace.forwardRef(
|
|
4604
4643
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4605
4644
|
"svg",
|
|
4606
4645
|
{
|
|
@@ -4648,7 +4687,7 @@ var xls_exports = {};
|
|
|
4648
4687
|
__export(xls_exports, {
|
|
4649
4688
|
XLS: () => XLS
|
|
4650
4689
|
});
|
|
4651
|
-
var XLS =
|
|
4690
|
+
var XLS = React118__namespace.forwardRef(
|
|
4652
4691
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4653
4692
|
"svg",
|
|
4654
4693
|
{
|
|
@@ -4696,7 +4735,7 @@ var zip_exports = {};
|
|
|
4696
4735
|
__export(zip_exports, {
|
|
4697
4736
|
Zip: () => Zip
|
|
4698
4737
|
});
|
|
4699
|
-
var Zip =
|
|
4738
|
+
var Zip = React118__namespace.forwardRef(
|
|
4700
4739
|
({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4701
4740
|
"svg",
|
|
4702
4741
|
{
|
|
@@ -4738,15 +4777,15 @@ var Zip = React116__namespace.forwardRef(
|
|
|
4738
4777
|
)
|
|
4739
4778
|
);
|
|
4740
4779
|
Zip.displayName = "Zip";
|
|
4741
|
-
var CarouselContext =
|
|
4780
|
+
var CarouselContext = React118__namespace.createContext(null);
|
|
4742
4781
|
function useCarousel() {
|
|
4743
|
-
const context =
|
|
4782
|
+
const context = React118__namespace.useContext(CarouselContext);
|
|
4744
4783
|
if (!context) {
|
|
4745
4784
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4746
4785
|
}
|
|
4747
4786
|
return context;
|
|
4748
4787
|
}
|
|
4749
|
-
var Carousel =
|
|
4788
|
+
var Carousel = React118__namespace.forwardRef(
|
|
4750
4789
|
({
|
|
4751
4790
|
orientation = "horizontal",
|
|
4752
4791
|
opts,
|
|
@@ -4763,10 +4802,10 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4763
4802
|
},
|
|
4764
4803
|
plugins
|
|
4765
4804
|
);
|
|
4766
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4767
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4768
|
-
const [slideCount, setSlideCount] =
|
|
4769
|
-
const onSelect =
|
|
4805
|
+
const [canScrollPrev, setCanScrollPrev] = React118__namespace.useState(false);
|
|
4806
|
+
const [canScrollNext, setCanScrollNext] = React118__namespace.useState(false);
|
|
4807
|
+
const [slideCount, setSlideCount] = React118__namespace.useState(0);
|
|
4808
|
+
const onSelect = React118__namespace.useCallback((api2) => {
|
|
4770
4809
|
if (!api2) {
|
|
4771
4810
|
return;
|
|
4772
4811
|
}
|
|
@@ -4774,13 +4813,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4774
4813
|
setCanScrollNext(api2.canScrollNext());
|
|
4775
4814
|
setSlideCount(api2.scrollSnapList().length);
|
|
4776
4815
|
}, []);
|
|
4777
|
-
const scrollPrev =
|
|
4816
|
+
const scrollPrev = React118__namespace.useCallback(() => {
|
|
4778
4817
|
api?.scrollPrev();
|
|
4779
4818
|
}, [api]);
|
|
4780
|
-
const scrollNext =
|
|
4819
|
+
const scrollNext = React118__namespace.useCallback(() => {
|
|
4781
4820
|
api?.scrollNext();
|
|
4782
4821
|
}, [api]);
|
|
4783
|
-
const handleKeyDown =
|
|
4822
|
+
const handleKeyDown = React118__namespace.useCallback(
|
|
4784
4823
|
(event) => {
|
|
4785
4824
|
if (event.key === "ArrowLeft") {
|
|
4786
4825
|
event.preventDefault();
|
|
@@ -4792,13 +4831,13 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4792
4831
|
},
|
|
4793
4832
|
[scrollPrev, scrollNext]
|
|
4794
4833
|
);
|
|
4795
|
-
|
|
4834
|
+
React118__namespace.useEffect(() => {
|
|
4796
4835
|
if (!api || !setApi) {
|
|
4797
4836
|
return;
|
|
4798
4837
|
}
|
|
4799
4838
|
setApi(api);
|
|
4800
4839
|
}, [api, setApi]);
|
|
4801
|
-
|
|
4840
|
+
React118__namespace.useEffect(() => {
|
|
4802
4841
|
if (!api) {
|
|
4803
4842
|
return;
|
|
4804
4843
|
}
|
|
@@ -4843,7 +4882,7 @@ var Carousel = React116__namespace.forwardRef(
|
|
|
4843
4882
|
}
|
|
4844
4883
|
);
|
|
4845
4884
|
Carousel.displayName = "Carousel";
|
|
4846
|
-
var CarouselContent =
|
|
4885
|
+
var CarouselContent = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4847
4886
|
const { carouselRef, orientation } = useCarousel();
|
|
4848
4887
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4849
4888
|
"div",
|
|
@@ -4859,7 +4898,7 @@ var CarouselContent = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
4859
4898
|
) });
|
|
4860
4899
|
});
|
|
4861
4900
|
CarouselContent.displayName = "CarouselContent";
|
|
4862
|
-
var CarouselItem =
|
|
4901
|
+
var CarouselItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
4863
4902
|
const { orientation } = useCarousel();
|
|
4864
4903
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4865
4904
|
"div",
|
|
@@ -4877,7 +4916,7 @@ var CarouselItem = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
4877
4916
|
);
|
|
4878
4917
|
});
|
|
4879
4918
|
CarouselItem.displayName = "CarouselItem";
|
|
4880
|
-
var CarouselPrevious =
|
|
4919
|
+
var CarouselPrevious = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4881
4920
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4882
4921
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4883
4922
|
Button,
|
|
@@ -4899,7 +4938,7 @@ var CarouselPrevious = React116__namespace.forwardRef(({ className, variant = "o
|
|
|
4899
4938
|
);
|
|
4900
4939
|
});
|
|
4901
4940
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4902
|
-
var CarouselNext =
|
|
4941
|
+
var CarouselNext = React118__namespace.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4903
4942
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4904
4943
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4905
4944
|
Button,
|
|
@@ -4925,7 +4964,7 @@ var Dialog = DialogPrimitive__namespace.Root;
|
|
|
4925
4964
|
var DialogTrigger = DialogPrimitive__namespace.Trigger;
|
|
4926
4965
|
var DialogPortal = DialogPrimitive__namespace.Portal;
|
|
4927
4966
|
var DialogClose = DialogPrimitive__namespace.Close;
|
|
4928
|
-
var DialogOverlay =
|
|
4967
|
+
var DialogOverlay = React118__namespace.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4929
4968
|
DialogPrimitive__namespace.Overlay,
|
|
4930
4969
|
{
|
|
4931
4970
|
ref,
|
|
@@ -4942,7 +4981,7 @@ var DialogOverlay = React116__namespace.forwardRef(({ className, style, ...props
|
|
|
4942
4981
|
}
|
|
4943
4982
|
));
|
|
4944
4983
|
DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
|
|
4945
|
-
var DialogContent =
|
|
4984
|
+
var DialogContent = React118__namespace.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
|
|
4946
4985
|
/* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
|
|
4947
4986
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4948
4987
|
DialogPrimitive__namespace.Content,
|
|
@@ -4994,7 +5033,7 @@ var DialogFooter = ({
|
|
|
4994
5033
|
}
|
|
4995
5034
|
);
|
|
4996
5035
|
DialogFooter.displayName = "DialogFooter";
|
|
4997
|
-
var DialogTitle =
|
|
5036
|
+
var DialogTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4998
5037
|
DialogPrimitive__namespace.Title,
|
|
4999
5038
|
{
|
|
5000
5039
|
ref,
|
|
@@ -5006,7 +5045,7 @@ var DialogTitle = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5006
5045
|
}
|
|
5007
5046
|
));
|
|
5008
5047
|
DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5009
|
-
var DialogDescription =
|
|
5048
|
+
var DialogDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5010
5049
|
DialogPrimitive__namespace.Description,
|
|
5011
5050
|
{
|
|
5012
5051
|
ref,
|
|
@@ -5019,7 +5058,7 @@ var Sheet = DialogPrimitive__namespace.Root;
|
|
|
5019
5058
|
var SheetTrigger = DialogPrimitive__namespace.Trigger;
|
|
5020
5059
|
var SheetClose = DialogPrimitive__namespace.Close;
|
|
5021
5060
|
var SheetPortal = DialogPrimitive__namespace.Portal;
|
|
5022
|
-
var SheetOverlay =
|
|
5061
|
+
var SheetOverlay = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5023
5062
|
DialogPrimitive__namespace.Overlay,
|
|
5024
5063
|
{
|
|
5025
5064
|
className: cn(
|
|
@@ -5047,7 +5086,7 @@ var sheetVariants = classVarianceAuthority.cva(
|
|
|
5047
5086
|
}
|
|
5048
5087
|
}
|
|
5049
5088
|
);
|
|
5050
|
-
var SheetContent =
|
|
5089
|
+
var SheetContent = React118__namespace.forwardRef(
|
|
5051
5090
|
({
|
|
5052
5091
|
side = "right",
|
|
5053
5092
|
className,
|
|
@@ -5103,7 +5142,7 @@ var SheetFooter = ({
|
|
|
5103
5142
|
}
|
|
5104
5143
|
);
|
|
5105
5144
|
SheetFooter.displayName = "SheetFooter";
|
|
5106
|
-
var SheetTitle =
|
|
5145
|
+
var SheetTitle = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5107
5146
|
DialogPrimitive__namespace.Title,
|
|
5108
5147
|
{
|
|
5109
5148
|
ref,
|
|
@@ -5115,7 +5154,7 @@ var SheetTitle = React116__namespace.forwardRef(({ className, ...props }, ref) =
|
|
|
5115
5154
|
}
|
|
5116
5155
|
));
|
|
5117
5156
|
SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
|
|
5118
|
-
var SheetDescription =
|
|
5157
|
+
var SheetDescription = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5119
5158
|
DialogPrimitive__namespace.Description,
|
|
5120
5159
|
{
|
|
5121
5160
|
ref,
|
|
@@ -5152,10 +5191,10 @@ var defaultElements = {
|
|
|
5152
5191
|
"caption": "span",
|
|
5153
5192
|
"overline": "span"
|
|
5154
5193
|
};
|
|
5155
|
-
var Typography =
|
|
5194
|
+
var Typography = React118__namespace.default.forwardRef(
|
|
5156
5195
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
5157
5196
|
const Component = as || defaultElements[variant];
|
|
5158
|
-
return
|
|
5197
|
+
return React118__namespace.default.createElement(
|
|
5159
5198
|
Component,
|
|
5160
5199
|
{
|
|
5161
5200
|
ref,
|
|
@@ -5167,46 +5206,46 @@ var Typography = React116__namespace.default.forwardRef(
|
|
|
5167
5206
|
}
|
|
5168
5207
|
);
|
|
5169
5208
|
Typography.displayName = "Typography";
|
|
5170
|
-
var Heading1 =
|
|
5209
|
+
var Heading1 = React118__namespace.default.forwardRef(
|
|
5171
5210
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h1", ...props })
|
|
5172
5211
|
);
|
|
5173
5212
|
Heading1.displayName = "Heading1";
|
|
5174
|
-
var Heading2 =
|
|
5213
|
+
var Heading2 = React118__namespace.default.forwardRef(
|
|
5175
5214
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h2", ...props })
|
|
5176
5215
|
);
|
|
5177
5216
|
Heading2.displayName = "Heading2";
|
|
5178
|
-
var Heading3 =
|
|
5217
|
+
var Heading3 = React118__namespace.default.forwardRef(
|
|
5179
5218
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h3", ...props })
|
|
5180
5219
|
);
|
|
5181
5220
|
Heading3.displayName = "Heading3";
|
|
5182
|
-
var Heading4 =
|
|
5221
|
+
var Heading4 = React118__namespace.default.forwardRef(
|
|
5183
5222
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h4", ...props })
|
|
5184
5223
|
);
|
|
5185
5224
|
Heading4.displayName = "Heading4";
|
|
5186
|
-
var Heading5 =
|
|
5225
|
+
var Heading5 = React118__namespace.default.forwardRef(
|
|
5187
5226
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h5", ...props })
|
|
5188
5227
|
);
|
|
5189
5228
|
Heading5.displayName = "Heading5";
|
|
5190
|
-
var Heading6 =
|
|
5229
|
+
var Heading6 = React118__namespace.default.forwardRef(
|
|
5191
5230
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "h6", ...props })
|
|
5192
5231
|
);
|
|
5193
5232
|
Heading6.displayName = "Heading6";
|
|
5194
|
-
var Text =
|
|
5233
|
+
var Text = React118__namespace.default.forwardRef(
|
|
5195
5234
|
({ size = "default", ...props }, ref) => {
|
|
5196
5235
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
5197
5236
|
return /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant, ...props });
|
|
5198
5237
|
}
|
|
5199
5238
|
);
|
|
5200
5239
|
Text.displayName = "Text";
|
|
5201
|
-
var Caption =
|
|
5240
|
+
var Caption = React118__namespace.default.forwardRef(
|
|
5202
5241
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "caption", ...props })
|
|
5203
5242
|
);
|
|
5204
5243
|
Caption.displayName = "Caption";
|
|
5205
|
-
var Overline =
|
|
5244
|
+
var Overline = React118__namespace.default.forwardRef(
|
|
5206
5245
|
(props, ref) => /* @__PURE__ */ jsxRuntime.jsx(Typography, { ref, variant: "overline", ...props })
|
|
5207
5246
|
);
|
|
5208
5247
|
Overline.displayName = "Overline";
|
|
5209
|
-
var Link =
|
|
5248
|
+
var Link = React118__namespace.default.forwardRef(
|
|
5210
5249
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
5211
5250
|
const variantClass = `link-${variant}`;
|
|
5212
5251
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5221,11 +5260,11 @@ var Link = React116__namespace.default.forwardRef(
|
|
|
5221
5260
|
}
|
|
5222
5261
|
);
|
|
5223
5262
|
Link.displayName = "Link";
|
|
5224
|
-
var PaginationContext =
|
|
5263
|
+
var PaginationContext = React118__namespace.createContext({
|
|
5225
5264
|
size: "default"
|
|
5226
5265
|
});
|
|
5227
5266
|
var usePaginationContext = () => {
|
|
5228
|
-
const context =
|
|
5267
|
+
const context = React118__namespace.useContext(PaginationContext);
|
|
5229
5268
|
return context;
|
|
5230
5269
|
};
|
|
5231
5270
|
var paginationVariants = classVarianceAuthority.cva(
|
|
@@ -5242,7 +5281,7 @@ var paginationVariants = classVarianceAuthority.cva(
|
|
|
5242
5281
|
}
|
|
5243
5282
|
}
|
|
5244
5283
|
);
|
|
5245
|
-
var Pagination =
|
|
5284
|
+
var Pagination = React118__namespace.forwardRef(
|
|
5246
5285
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5247
5286
|
"nav",
|
|
5248
5287
|
{
|
|
@@ -5255,7 +5294,7 @@ var Pagination = React116__namespace.forwardRef(
|
|
|
5255
5294
|
) })
|
|
5256
5295
|
);
|
|
5257
5296
|
Pagination.displayName = "Pagination";
|
|
5258
|
-
var PaginationContent =
|
|
5297
|
+
var PaginationContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5259
5298
|
"ul",
|
|
5260
5299
|
{
|
|
5261
5300
|
ref,
|
|
@@ -5264,7 +5303,7 @@ var PaginationContent = React116__namespace.forwardRef(({ className, ...props },
|
|
|
5264
5303
|
}
|
|
5265
5304
|
));
|
|
5266
5305
|
PaginationContent.displayName = "PaginationContent";
|
|
5267
|
-
var PaginationItem =
|
|
5306
|
+
var PaginationItem = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("", className), ...props }));
|
|
5268
5307
|
PaginationItem.displayName = "PaginationItem";
|
|
5269
5308
|
var paginationLinkVariants = classVarianceAuthority.cva(
|
|
5270
5309
|
[
|
|
@@ -5286,7 +5325,7 @@ var paginationLinkVariants = classVarianceAuthority.cva(
|
|
|
5286
5325
|
}
|
|
5287
5326
|
}
|
|
5288
5327
|
);
|
|
5289
|
-
var PaginationLink =
|
|
5328
|
+
var PaginationLink = React118__namespace.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5290
5329
|
const { size } = usePaginationContext();
|
|
5291
5330
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5292
5331
|
"a",
|
|
@@ -5303,7 +5342,7 @@ var PaginationLink = React116__namespace.forwardRef(({ className, isActive, ...p
|
|
|
5303
5342
|
);
|
|
5304
5343
|
});
|
|
5305
5344
|
PaginationLink.displayName = "PaginationLink";
|
|
5306
|
-
var PaginationPrevious =
|
|
5345
|
+
var PaginationPrevious = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5307
5346
|
const { size } = usePaginationContext();
|
|
5308
5347
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5309
5348
|
PaginationLink,
|
|
@@ -5324,7 +5363,7 @@ var PaginationPrevious = React116__namespace.forwardRef(({ className, ...props }
|
|
|
5324
5363
|
);
|
|
5325
5364
|
});
|
|
5326
5365
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5327
|
-
var PaginationNext =
|
|
5366
|
+
var PaginationNext = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5328
5367
|
const { size } = usePaginationContext();
|
|
5329
5368
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5330
5369
|
PaginationLink,
|
|
@@ -5345,7 +5384,7 @@ var PaginationNext = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5345
5384
|
);
|
|
5346
5385
|
});
|
|
5347
5386
|
PaginationNext.displayName = "PaginationNext";
|
|
5348
|
-
var PaginationEllipsis =
|
|
5387
|
+
var PaginationEllipsis = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5349
5388
|
const { size } = usePaginationContext();
|
|
5350
5389
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5351
5390
|
"span",
|
|
@@ -5369,7 +5408,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
|
|
|
5369
5408
|
var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
|
|
5370
5409
|
var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
|
|
5371
5410
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
|
|
5372
|
-
var DropdownMenuSubTrigger =
|
|
5411
|
+
var DropdownMenuSubTrigger = React118__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5373
5412
|
DropdownMenuPrimitive__namespace.SubTrigger,
|
|
5374
5413
|
{
|
|
5375
5414
|
ref,
|
|
@@ -5386,7 +5425,7 @@ var DropdownMenuSubTrigger = React116__namespace.forwardRef(({ className, inset,
|
|
|
5386
5425
|
}
|
|
5387
5426
|
));
|
|
5388
5427
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
|
5389
|
-
var DropdownMenuSubContent =
|
|
5428
|
+
var DropdownMenuSubContent = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5390
5429
|
DropdownMenuPrimitive__namespace.SubContent,
|
|
5391
5430
|
{
|
|
5392
5431
|
ref,
|
|
@@ -5398,7 +5437,7 @@ var DropdownMenuSubContent = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5398
5437
|
}
|
|
5399
5438
|
));
|
|
5400
5439
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
|
5401
|
-
var DropdownMenuContent =
|
|
5440
|
+
var DropdownMenuContent = React118__namespace.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5402
5441
|
DropdownMenuPrimitive__namespace.Content,
|
|
5403
5442
|
{
|
|
5404
5443
|
ref,
|
|
@@ -5412,7 +5451,7 @@ var DropdownMenuContent = React116__namespace.forwardRef(({ className, sideOffse
|
|
|
5412
5451
|
}
|
|
5413
5452
|
) }));
|
|
5414
5453
|
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
|
5415
|
-
var DropdownMenuItem =
|
|
5454
|
+
var DropdownMenuItem = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5416
5455
|
DropdownMenuPrimitive__namespace.Item,
|
|
5417
5456
|
{
|
|
5418
5457
|
ref,
|
|
@@ -5425,7 +5464,7 @@ var DropdownMenuItem = React116__namespace.forwardRef(({ className, inset, ...pr
|
|
|
5425
5464
|
}
|
|
5426
5465
|
));
|
|
5427
5466
|
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
|
5428
|
-
var DropdownMenuCheckboxItem =
|
|
5467
|
+
var DropdownMenuCheckboxItem = React118__namespace.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5429
5468
|
DropdownMenuPrimitive__namespace.CheckboxItem,
|
|
5430
5469
|
{
|
|
5431
5470
|
ref,
|
|
@@ -5442,7 +5481,7 @@ var DropdownMenuCheckboxItem = React116__namespace.forwardRef(({ className, chil
|
|
|
5442
5481
|
}
|
|
5443
5482
|
));
|
|
5444
5483
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
|
5445
|
-
var DropdownMenuRadioItem =
|
|
5484
|
+
var DropdownMenuRadioItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5446
5485
|
DropdownMenuPrimitive__namespace.RadioItem,
|
|
5447
5486
|
{
|
|
5448
5487
|
ref,
|
|
@@ -5458,7 +5497,7 @@ var DropdownMenuRadioItem = React116__namespace.forwardRef(({ className, childre
|
|
|
5458
5497
|
}
|
|
5459
5498
|
));
|
|
5460
5499
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
|
5461
|
-
var DropdownMenuLabel =
|
|
5500
|
+
var DropdownMenuLabel = React118__namespace.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5462
5501
|
DropdownMenuPrimitive__namespace.Label,
|
|
5463
5502
|
{
|
|
5464
5503
|
ref,
|
|
@@ -5471,7 +5510,7 @@ var DropdownMenuLabel = React116__namespace.forwardRef(({ className, inset, ...p
|
|
|
5471
5510
|
}
|
|
5472
5511
|
));
|
|
5473
5512
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
|
5474
|
-
var DropdownMenuSeparator =
|
|
5513
|
+
var DropdownMenuSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5475
5514
|
DropdownMenuPrimitive__namespace.Separator,
|
|
5476
5515
|
{
|
|
5477
5516
|
ref,
|
|
@@ -5493,7 +5532,7 @@ var DropdownMenuShortcut = ({
|
|
|
5493
5532
|
);
|
|
5494
5533
|
};
|
|
5495
5534
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5496
|
-
var TableWrapper =
|
|
5535
|
+
var TableWrapper = React118__namespace.forwardRef(
|
|
5497
5536
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5498
5537
|
"div",
|
|
5499
5538
|
{
|
|
@@ -5508,7 +5547,7 @@ var TableWrapper = React116__namespace.forwardRef(
|
|
|
5508
5547
|
)
|
|
5509
5548
|
);
|
|
5510
5549
|
TableWrapper.displayName = "TableWrapper";
|
|
5511
|
-
var Table =
|
|
5550
|
+
var Table = React118__namespace.forwardRef(
|
|
5512
5551
|
({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5513
5552
|
"div",
|
|
5514
5553
|
{
|
|
@@ -5530,7 +5569,7 @@ var Table = React116__namespace.forwardRef(
|
|
|
5530
5569
|
)
|
|
5531
5570
|
);
|
|
5532
5571
|
Table.displayName = "Table";
|
|
5533
|
-
var TableHeader =
|
|
5572
|
+
var TableHeader = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5534
5573
|
"thead",
|
|
5535
5574
|
{
|
|
5536
5575
|
ref,
|
|
@@ -5543,7 +5582,7 @@ var TableHeader = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5543
5582
|
}
|
|
5544
5583
|
));
|
|
5545
5584
|
TableHeader.displayName = "TableHeader";
|
|
5546
|
-
var TableBody =
|
|
5585
|
+
var TableBody = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5547
5586
|
"tbody",
|
|
5548
5587
|
{
|
|
5549
5588
|
ref,
|
|
@@ -5556,7 +5595,7 @@ var TableBody = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5556
5595
|
}
|
|
5557
5596
|
));
|
|
5558
5597
|
TableBody.displayName = "TableBody";
|
|
5559
|
-
var TableFooter =
|
|
5598
|
+
var TableFooter = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5560
5599
|
"tfoot",
|
|
5561
5600
|
{
|
|
5562
5601
|
ref,
|
|
@@ -5569,7 +5608,7 @@ var TableFooter = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5569
5608
|
}
|
|
5570
5609
|
));
|
|
5571
5610
|
TableFooter.displayName = "TableFooter";
|
|
5572
|
-
var TableRow =
|
|
5611
|
+
var TableRow = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5573
5612
|
"tr",
|
|
5574
5613
|
{
|
|
5575
5614
|
ref,
|
|
@@ -5587,7 +5626,7 @@ var TableRow = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5587
5626
|
}
|
|
5588
5627
|
));
|
|
5589
5628
|
TableRow.displayName = "TableRow";
|
|
5590
|
-
var TableHead =
|
|
5629
|
+
var TableHead = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5591
5630
|
"th",
|
|
5592
5631
|
{
|
|
5593
5632
|
ref,
|
|
@@ -5600,7 +5639,7 @@ var TableHead = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5600
5639
|
}
|
|
5601
5640
|
));
|
|
5602
5641
|
TableHead.displayName = "TableHead";
|
|
5603
|
-
var TableCell =
|
|
5642
|
+
var TableCell = React118__namespace.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5604
5643
|
"td",
|
|
5605
5644
|
{
|
|
5606
5645
|
ref,
|
|
@@ -5620,7 +5659,7 @@ var TableCell = React116__namespace.forwardRef(({ className, label, ...props },
|
|
|
5620
5659
|
}
|
|
5621
5660
|
));
|
|
5622
5661
|
TableCell.displayName = "TableCell";
|
|
5623
|
-
var TableCaption =
|
|
5662
|
+
var TableCaption = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5624
5663
|
"caption",
|
|
5625
5664
|
{
|
|
5626
5665
|
ref,
|
|
@@ -5633,7 +5672,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5633
5672
|
var Select = SelectPrimitive__namespace.Root;
|
|
5634
5673
|
var SelectGroup = SelectPrimitive__namespace.Group;
|
|
5635
5674
|
var SelectValue = SelectPrimitive__namespace.Value;
|
|
5636
|
-
var SelectTrigger =
|
|
5675
|
+
var SelectTrigger = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5637
5676
|
SelectPrimitive__namespace.Trigger,
|
|
5638
5677
|
{
|
|
5639
5678
|
ref,
|
|
@@ -5649,7 +5688,7 @@ var SelectTrigger = React116__namespace.forwardRef(({ className, children, ...pr
|
|
|
5649
5688
|
}
|
|
5650
5689
|
));
|
|
5651
5690
|
SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
|
|
5652
|
-
var SelectScrollUpButton =
|
|
5691
|
+
var SelectScrollUpButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5653
5692
|
SelectPrimitive__namespace.ScrollUpButton,
|
|
5654
5693
|
{
|
|
5655
5694
|
ref,
|
|
@@ -5662,7 +5701,7 @@ var SelectScrollUpButton = React116__namespace.forwardRef(({ className, ...props
|
|
|
5662
5701
|
}
|
|
5663
5702
|
));
|
|
5664
5703
|
SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
|
|
5665
|
-
var SelectScrollDownButton =
|
|
5704
|
+
var SelectScrollDownButton = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5666
5705
|
SelectPrimitive__namespace.ScrollDownButton,
|
|
5667
5706
|
{
|
|
5668
5707
|
ref,
|
|
@@ -5675,7 +5714,7 @@ var SelectScrollDownButton = React116__namespace.forwardRef(({ className, ...pro
|
|
|
5675
5714
|
}
|
|
5676
5715
|
));
|
|
5677
5716
|
SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
|
|
5678
|
-
var SelectContent =
|
|
5717
|
+
var SelectContent = React118__namespace.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5679
5718
|
SelectPrimitive__namespace.Content,
|
|
5680
5719
|
{
|
|
5681
5720
|
ref,
|
|
@@ -5702,7 +5741,7 @@ var SelectContent = React116__namespace.forwardRef(({ className, children, posit
|
|
|
5702
5741
|
}
|
|
5703
5742
|
) }));
|
|
5704
5743
|
SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
|
|
5705
|
-
var SelectLabel =
|
|
5744
|
+
var SelectLabel = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5706
5745
|
SelectPrimitive__namespace.Label,
|
|
5707
5746
|
{
|
|
5708
5747
|
ref,
|
|
@@ -5711,7 +5750,7 @@ var SelectLabel = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5711
5750
|
}
|
|
5712
5751
|
));
|
|
5713
5752
|
SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
|
|
5714
|
-
var SelectItem =
|
|
5753
|
+
var SelectItem = React118__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5715
5754
|
SelectPrimitive__namespace.Item,
|
|
5716
5755
|
{
|
|
5717
5756
|
ref,
|
|
@@ -5727,7 +5766,7 @@ var SelectItem = React116__namespace.forwardRef(({ className, children, ...props
|
|
|
5727
5766
|
}
|
|
5728
5767
|
));
|
|
5729
5768
|
SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
|
|
5730
|
-
var SelectSeparator =
|
|
5769
|
+
var SelectSeparator = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5731
5770
|
SelectPrimitive__namespace.Separator,
|
|
5732
5771
|
{
|
|
5733
5772
|
ref,
|
|
@@ -5736,7 +5775,7 @@ var SelectSeparator = React116__namespace.forwardRef(({ className, ...props }, r
|
|
|
5736
5775
|
}
|
|
5737
5776
|
));
|
|
5738
5777
|
SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
|
|
5739
|
-
var Label3 =
|
|
5778
|
+
var Label3 = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5740
5779
|
LabelPrimitive__namespace.Root,
|
|
5741
5780
|
{
|
|
5742
5781
|
ref,
|
|
@@ -5748,7 +5787,7 @@ var Label3 = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5748
5787
|
}
|
|
5749
5788
|
));
|
|
5750
5789
|
Label3.displayName = LabelPrimitive__namespace.Root.displayName;
|
|
5751
|
-
var Switch =
|
|
5790
|
+
var Switch = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5752
5791
|
SwitchPrimitives__namespace.Root,
|
|
5753
5792
|
{
|
|
5754
5793
|
className: cn(
|
|
@@ -5761,7 +5800,7 @@ var Switch = React116__namespace.forwardRef(({ className, ...props }, ref) => /*
|
|
|
5761
5800
|
}
|
|
5762
5801
|
));
|
|
5763
5802
|
Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
|
|
5764
|
-
var RadioGroup2 =
|
|
5803
|
+
var RadioGroup2 = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5765
5804
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5766
5805
|
RadioGroupPrimitive__namespace.Root,
|
|
5767
5806
|
{
|
|
@@ -5772,7 +5811,7 @@ var RadioGroup2 = React116__namespace.forwardRef(({ className, ...props }, ref)
|
|
|
5772
5811
|
);
|
|
5773
5812
|
});
|
|
5774
5813
|
RadioGroup2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
5775
|
-
var RadioGroupItem =
|
|
5814
|
+
var RadioGroupItem = React118__namespace.forwardRef(({ className, ...props }, ref) => {
|
|
5776
5815
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5777
5816
|
RadioGroupPrimitive__namespace.Item,
|
|
5778
5817
|
{
|
|
@@ -5787,7 +5826,7 @@ var RadioGroupItem = React116__namespace.forwardRef(({ className, ...props }, re
|
|
|
5787
5826
|
);
|
|
5788
5827
|
});
|
|
5789
5828
|
RadioGroupItem.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
5790
|
-
var Checkbox =
|
|
5829
|
+
var Checkbox = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5791
5830
|
CheckboxPrimitive__namespace.Root,
|
|
5792
5831
|
{
|
|
5793
5832
|
ref,
|
|
@@ -5800,7 +5839,7 @@ var Checkbox = React116__namespace.forwardRef(({ className, ...props }, ref) =>
|
|
|
5800
5839
|
}
|
|
5801
5840
|
));
|
|
5802
5841
|
Checkbox.displayName = CheckboxPrimitive__namespace.Root.displayName;
|
|
5803
|
-
var MultiSelect =
|
|
5842
|
+
var MultiSelect = React118__namespace.forwardRef(
|
|
5804
5843
|
({
|
|
5805
5844
|
options,
|
|
5806
5845
|
value = [],
|
|
@@ -5813,8 +5852,8 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5813
5852
|
maxDisplayItems = 3,
|
|
5814
5853
|
...props
|
|
5815
5854
|
}, ref) => {
|
|
5816
|
-
const [open, setOpen] =
|
|
5817
|
-
const handleSelectAll =
|
|
5855
|
+
const [open, setOpen] = React118__namespace.useState(false);
|
|
5856
|
+
const handleSelectAll = React118__namespace.useCallback(() => {
|
|
5818
5857
|
if (!onValueChange) return;
|
|
5819
5858
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5820
5859
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5827,7 +5866,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5827
5866
|
onValueChange(allValues);
|
|
5828
5867
|
}
|
|
5829
5868
|
}, [options, value, onValueChange]);
|
|
5830
|
-
const handleItemToggle =
|
|
5869
|
+
const handleItemToggle = React118__namespace.useCallback(
|
|
5831
5870
|
(itemValue) => {
|
|
5832
5871
|
if (!onValueChange) return;
|
|
5833
5872
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5835,7 +5874,7 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5835
5874
|
},
|
|
5836
5875
|
[value, onValueChange]
|
|
5837
5876
|
);
|
|
5838
|
-
const displayValue =
|
|
5877
|
+
const displayValue = React118__namespace.useMemo(() => {
|
|
5839
5878
|
if (value.length === 0) {
|
|
5840
5879
|
return placeholder;
|
|
5841
5880
|
}
|
|
@@ -5956,6 +5995,22 @@ var MultiSelect = React116__namespace.forwardRef(
|
|
|
5956
5995
|
}
|
|
5957
5996
|
);
|
|
5958
5997
|
MultiSelect.displayName = "MultiSelect";
|
|
5998
|
+
var Slider = React118__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5999
|
+
SliderPrimitive__namespace.Root,
|
|
6000
|
+
{
|
|
6001
|
+
ref,
|
|
6002
|
+
className: cn(
|
|
6003
|
+
"lua:relative lua:flex lua:w-full lua:touch-none lua:select-none lua:items-center",
|
|
6004
|
+
className
|
|
6005
|
+
),
|
|
6006
|
+
...props,
|
|
6007
|
+
children: [
|
|
6008
|
+
/* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Track, { className: "lua:relative lua:h-2 lua:w-full lua:grow lua:overflow-hidden lua:rounded-full lua:bg-gray-200", children: /* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Range, { className: "lua:absolute lua:h-full lua:bg-gradient-to-r lua:from-blue-600 lua:to-purple-600" }) }),
|
|
6009
|
+
/* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Thumb, { className: "lua:block lua:h-5 lua:w-5 lua:rounded-full lua:border-2 lua:border-white lua:bg-purple-600 lua:shadow-lg lua:ring-offset-white lua:transition-all lua:focus-visible:outline-none lua:focus-visible:ring-2 lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2 lua:hover:shadow-xl lua:hover:scale-105 lua:active:scale-95 lua:disabled:bg-gray-200 lua:disabled:pointer-events-none lua:disabled:opacity-50" })
|
|
6010
|
+
]
|
|
6011
|
+
}
|
|
6012
|
+
));
|
|
6013
|
+
Slider.displayName = SliderPrimitive__namespace.Root.displayName;
|
|
5959
6014
|
|
|
5960
6015
|
// src/safelist.js
|
|
5961
6016
|
var luaniverseSafelist = [
|
|
@@ -6171,7 +6226,59 @@ var luaniverseSafelist = [
|
|
|
6171
6226
|
"lua:text-xs",
|
|
6172
6227
|
// select
|
|
6173
6228
|
"lua:max-h-96",
|
|
6174
|
-
"lua:min-w-32"
|
|
6229
|
+
"lua:min-w-32",
|
|
6230
|
+
// slider
|
|
6231
|
+
"lua:disabled:bg-gray-200",
|
|
6232
|
+
"lua:hover:shadow-xl",
|
|
6233
|
+
"lua:hover:scale-105",
|
|
6234
|
+
"lua:active:scale-95",
|
|
6235
|
+
"lua:bg-gradient-to-r",
|
|
6236
|
+
"lua:from-blue-600",
|
|
6237
|
+
"lua:to-purple-600",
|
|
6238
|
+
"lua:bg-purple-600",
|
|
6239
|
+
// input
|
|
6240
|
+
"lua:text-gray-600",
|
|
6241
|
+
"lua:cursor-not-allowed",
|
|
6242
|
+
"lua:mb-2",
|
|
6243
|
+
"lua:text-gray-900",
|
|
6244
|
+
"lua:left-3",
|
|
6245
|
+
"lua:top-1/2",
|
|
6246
|
+
"lua:-translate-y-1/2",
|
|
6247
|
+
"lua:items-center",
|
|
6248
|
+
"lua:pointer-events-none",
|
|
6249
|
+
"lua:text-gray-500",
|
|
6250
|
+
"lua:h-10",
|
|
6251
|
+
"lua:rounded-md",
|
|
6252
|
+
"lua:bg-transparent",
|
|
6253
|
+
"lua:px-3",
|
|
6254
|
+
"lua:py-2",
|
|
6255
|
+
"lua:text-base",
|
|
6256
|
+
"lua:transition-all",
|
|
6257
|
+
"lua:duration-200",
|
|
6258
|
+
"file:lua:border-0",
|
|
6259
|
+
"file:lua:bg-transparent",
|
|
6260
|
+
"file:lua:text-sm",
|
|
6261
|
+
"file:lua:font-medium",
|
|
6262
|
+
"file:lua:text-gray-900",
|
|
6263
|
+
"placeholder:lua:text-gray-500",
|
|
6264
|
+
"focus-visible:lua:outline-hidden",
|
|
6265
|
+
"focus-visible:lua:ring-2",
|
|
6266
|
+
"focus-visible:lua:ring-offset-2",
|
|
6267
|
+
"focus-visible:lua:ring-offset-white",
|
|
6268
|
+
"lua:border-gray-300",
|
|
6269
|
+
"focus-visible:lua:ring-blue-600",
|
|
6270
|
+
"lua:border-red-600",
|
|
6271
|
+
"focus-visible:lua:ring-red-600",
|
|
6272
|
+
"lua:border-green-500",
|
|
6273
|
+
"focus-visible:lua:ring-green-500",
|
|
6274
|
+
"lua:opacity-50",
|
|
6275
|
+
"placeholder:lua:text-gray-400",
|
|
6276
|
+
"lua:pr-10",
|
|
6277
|
+
"md:lua:text-sm",
|
|
6278
|
+
"lua:right-3",
|
|
6279
|
+
"lua:mt-2",
|
|
6280
|
+
"lua:text-red-600",
|
|
6281
|
+
"lua:text-green-600"
|
|
6175
6282
|
];
|
|
6176
6283
|
|
|
6177
6284
|
// src/tailwind.preset.js
|
|
@@ -6365,6 +6472,7 @@ exports.DocIcon = doc_exports;
|
|
|
6365
6472
|
exports.DotsSixVerticalIcon = DotsSixVerticalIcon;
|
|
6366
6473
|
exports.DotsThree = DotsThree;
|
|
6367
6474
|
exports.DotsThreeVertical = DotsThreeVertical;
|
|
6475
|
+
exports.DownloadIcon = DownloadIcon;
|
|
6368
6476
|
exports.DropdownMenu = DropdownMenu;
|
|
6369
6477
|
exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
|
|
6370
6478
|
exports.DropdownMenuContent = DropdownMenuContent;
|
|
@@ -6495,6 +6603,7 @@ exports.SidebarSimple = SidebarSimple;
|
|
|
6495
6603
|
exports.SignOut = SignOut;
|
|
6496
6604
|
exports.Sketch = Sketch;
|
|
6497
6605
|
exports.SketchIcon = sketch_exports;
|
|
6606
|
+
exports.Slider = Slider;
|
|
6498
6607
|
exports.Storefront = Storefront;
|
|
6499
6608
|
exports.SvgIcon = svg_exports;
|
|
6500
6609
|
exports.Switch = Switch;
|
|
@@ -6515,6 +6624,7 @@ exports.TabsList = TabsList;
|
|
|
6515
6624
|
exports.TabsTrigger = TabsTrigger;
|
|
6516
6625
|
exports.Tag = Tag;
|
|
6517
6626
|
exports.Text = Text;
|
|
6627
|
+
exports.TextIcon = TextIcon;
|
|
6518
6628
|
exports.Textarea = Textarea;
|
|
6519
6629
|
exports.Ticket = Ticket;
|
|
6520
6630
|
exports.TiffIcon = tiff_exports;
|