@a2v2ai/uikit 0.0.11 → 0.0.12
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/Carousel/Carousel.d.ts +37 -0
- package/Carousel/Carousel.js +179 -0
- package/index.d.ts +1 -0
- package/index.js +14 -4
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import useEmblaCarousel, { type UseEmblaCarouselType } from "embla-carousel-react";
|
|
3
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
4
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
5
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
6
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
7
|
+
type CarouselOrientation = "horizontal" | "vertical";
|
|
8
|
+
type CarouselContextProps = {
|
|
9
|
+
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
|
|
10
|
+
api: ReturnType<typeof useEmblaCarousel>[1];
|
|
11
|
+
scrollPrev: () => void;
|
|
12
|
+
scrollNext: () => void;
|
|
13
|
+
canScrollPrev: boolean;
|
|
14
|
+
canScrollNext: boolean;
|
|
15
|
+
} & CarouselProps;
|
|
16
|
+
declare function useCarousel(): CarouselContextProps;
|
|
17
|
+
declare const carouselVariants: (props?: ({
|
|
18
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
19
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
|
20
|
+
declare const carouselContentVariants: (props?: ({
|
|
21
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
22
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
|
23
|
+
declare const carouselItemVariants: (props?: ({
|
|
24
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
25
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
|
26
|
+
interface CarouselProps {
|
|
27
|
+
opts?: CarouselOptions;
|
|
28
|
+
plugins?: CarouselPlugin;
|
|
29
|
+
orientation?: CarouselOrientation;
|
|
30
|
+
setApi?: (api: CarouselApi) => void;
|
|
31
|
+
}
|
|
32
|
+
declare const Carousel: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & CarouselProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
declare const CarouselContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
declare const CarouselItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
declare const CarouselPrevious: React.ForwardRefExoticComponent<Omit<import("../Button/Button").ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
36
|
+
declare const CarouselNext: React.ForwardRefExoticComponent<Omit<import("../Button/Button").ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
37
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, carouselVariants, carouselContentVariants, carouselItemVariants, useCarousel, type CarouselApi, type CarouselProps, type CarouselOptions, type CarouselPlugin, type CarouselOrientation, };
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.carouselItemVariants = exports.carouselContentVariants = exports.carouselVariants = exports.CarouselNext = exports.CarouselPrevious = exports.CarouselItem = exports.CarouselContent = exports.Carousel = void 0;
|
|
40
|
+
exports.useCarousel = useCarousel;
|
|
41
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
const React = __importStar(require("react"));
|
|
43
|
+
const embla_carousel_react_1 = __importDefault(require("embla-carousel-react"));
|
|
44
|
+
const class_variance_authority_1 = require("class-variance-authority");
|
|
45
|
+
const lucide_react_1 = require("lucide-react");
|
|
46
|
+
const utils_1 = require("../lib/utils");
|
|
47
|
+
const Button_1 = require("../Button/Button");
|
|
48
|
+
const CarouselContext = React.createContext(null);
|
|
49
|
+
function useCarousel() {
|
|
50
|
+
const context = React.useContext(CarouselContext);
|
|
51
|
+
if (!context) {
|
|
52
|
+
throw new Error("useCarousel must be used within a <Carousel />");
|
|
53
|
+
}
|
|
54
|
+
return context;
|
|
55
|
+
}
|
|
56
|
+
const carouselVariants = (0, class_variance_authority_1.cva)("relative", {
|
|
57
|
+
variants: {
|
|
58
|
+
orientation: {
|
|
59
|
+
horizontal: "",
|
|
60
|
+
vertical: "",
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
defaultVariants: {
|
|
64
|
+
orientation: "horizontal",
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
exports.carouselVariants = carouselVariants;
|
|
68
|
+
const carouselContentVariants = (0, class_variance_authority_1.cva)("flex", {
|
|
69
|
+
variants: {
|
|
70
|
+
orientation: {
|
|
71
|
+
horizontal: "-ml-4",
|
|
72
|
+
vertical: "-mt-4 flex-col",
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
defaultVariants: {
|
|
76
|
+
orientation: "horizontal",
|
|
77
|
+
},
|
|
78
|
+
});
|
|
79
|
+
exports.carouselContentVariants = carouselContentVariants;
|
|
80
|
+
const carouselItemVariants = (0, class_variance_authority_1.cva)("min-w-0 shrink-0 grow-0 basis-full", {
|
|
81
|
+
variants: {
|
|
82
|
+
orientation: {
|
|
83
|
+
horizontal: "pl-4",
|
|
84
|
+
vertical: "pt-4",
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
defaultVariants: {
|
|
88
|
+
orientation: "horizontal",
|
|
89
|
+
},
|
|
90
|
+
});
|
|
91
|
+
exports.carouselItemVariants = carouselItemVariants;
|
|
92
|
+
const Carousel = React.forwardRef(({ orientation = "horizontal", opts, setApi, plugins, className, children, ...props }, ref) => {
|
|
93
|
+
const [carouselRef, api] = (0, embla_carousel_react_1.default)({
|
|
94
|
+
...opts,
|
|
95
|
+
axis: orientation === "horizontal" ? "x" : "y",
|
|
96
|
+
}, plugins);
|
|
97
|
+
const [canScrollPrev, setCanScrollPrev] = React.useState(false);
|
|
98
|
+
const [canScrollNext, setCanScrollNext] = React.useState(false);
|
|
99
|
+
const onSelect = React.useCallback((api) => {
|
|
100
|
+
if (!api) {
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
setCanScrollPrev(api.canScrollPrev());
|
|
104
|
+
setCanScrollNext(api.canScrollNext());
|
|
105
|
+
}, []);
|
|
106
|
+
const scrollPrev = React.useCallback(() => {
|
|
107
|
+
api?.scrollPrev();
|
|
108
|
+
}, [api]);
|
|
109
|
+
const scrollNext = React.useCallback(() => {
|
|
110
|
+
api?.scrollNext();
|
|
111
|
+
}, [api]);
|
|
112
|
+
const handleKeyDown = React.useCallback((event) => {
|
|
113
|
+
if (event.key === "ArrowLeft") {
|
|
114
|
+
event.preventDefault();
|
|
115
|
+
scrollPrev();
|
|
116
|
+
}
|
|
117
|
+
else if (event.key === "ArrowRight") {
|
|
118
|
+
event.preventDefault();
|
|
119
|
+
scrollNext();
|
|
120
|
+
}
|
|
121
|
+
}, [scrollPrev, scrollNext]);
|
|
122
|
+
React.useEffect(() => {
|
|
123
|
+
if (!api || !setApi) {
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
setApi(api);
|
|
127
|
+
}, [api, setApi]);
|
|
128
|
+
React.useEffect(() => {
|
|
129
|
+
if (!api) {
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
132
|
+
onSelect(api);
|
|
133
|
+
api.on("reInit", onSelect);
|
|
134
|
+
api.on("select", onSelect);
|
|
135
|
+
return () => {
|
|
136
|
+
api?.off("select", onSelect);
|
|
137
|
+
};
|
|
138
|
+
}, [api, onSelect]);
|
|
139
|
+
return ((0, jsx_runtime_1.jsx)(CarouselContext.Provider, { value: {
|
|
140
|
+
carouselRef,
|
|
141
|
+
api: api,
|
|
142
|
+
opts,
|
|
143
|
+
orientation: orientation || (opts?.axis === "y" ? "vertical" : "horizontal"),
|
|
144
|
+
scrollPrev,
|
|
145
|
+
scrollNext,
|
|
146
|
+
canScrollPrev,
|
|
147
|
+
canScrollNext,
|
|
148
|
+
}, children: (0, jsx_runtime_1.jsx)("div", { ref: ref, onKeyDownCapture: handleKeyDown, className: (0, utils_1.cn)(carouselVariants({ orientation }), className), role: "region", "aria-roledescription": "carousel", ...props, children: children }) }));
|
|
149
|
+
});
|
|
150
|
+
exports.Carousel = Carousel;
|
|
151
|
+
Carousel.displayName = "Carousel";
|
|
152
|
+
const CarouselContent = React.forwardRef(({ className, ...props }, ref) => {
|
|
153
|
+
const { carouselRef, orientation } = useCarousel();
|
|
154
|
+
return ((0, jsx_runtime_1.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: (0, jsx_runtime_1.jsx)("div", { ref: ref, className: (0, utils_1.cn)(carouselContentVariants({ orientation }), className), ...props }) }));
|
|
155
|
+
});
|
|
156
|
+
exports.CarouselContent = CarouselContent;
|
|
157
|
+
CarouselContent.displayName = "CarouselContent";
|
|
158
|
+
const CarouselItem = React.forwardRef(({ className, ...props }, ref) => {
|
|
159
|
+
const { orientation } = useCarousel();
|
|
160
|
+
return ((0, jsx_runtime_1.jsx)("div", { ref: ref, role: "group", "aria-roledescription": "slide", className: (0, utils_1.cn)(carouselItemVariants({ orientation }), className), ...props }));
|
|
161
|
+
});
|
|
162
|
+
exports.CarouselItem = CarouselItem;
|
|
163
|
+
CarouselItem.displayName = "CarouselItem";
|
|
164
|
+
const CarouselPrevious = React.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
165
|
+
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
166
|
+
return ((0, jsx_runtime_1.jsxs)(Button_1.Button, { ref: ref, variant: variant, size: size, roundness: "round", className: (0, utils_1.cn)("absolute h-8 w-8 p-0", orientation === "horizontal"
|
|
167
|
+
? "-left-12 top-1/2 -translate-y-1/2"
|
|
168
|
+
: "-top-12 left-1/2 -translate-x-1/2 rotate-90", className), disabled: !canScrollPrev, onClick: scrollPrev, ...props, children: [(0, jsx_runtime_1.jsx)(lucide_react_1.ArrowLeft, { className: "h-4 w-4" }), (0, jsx_runtime_1.jsx)("span", { className: "sr-only", children: "Previous slide" })] }));
|
|
169
|
+
});
|
|
170
|
+
exports.CarouselPrevious = CarouselPrevious;
|
|
171
|
+
CarouselPrevious.displayName = "CarouselPrevious";
|
|
172
|
+
const CarouselNext = React.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
173
|
+
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
174
|
+
return ((0, jsx_runtime_1.jsxs)(Button_1.Button, { ref: ref, variant: variant, size: size, roundness: "round", className: (0, utils_1.cn)("absolute h-8 w-8 p-0", orientation === "horizontal"
|
|
175
|
+
? "-right-12 top-1/2 -translate-y-1/2"
|
|
176
|
+
: "-bottom-12 left-1/2 -translate-x-1/2 rotate-90", className), disabled: !canScrollNext, onClick: scrollNext, ...props, children: [(0, jsx_runtime_1.jsx)(lucide_react_1.ArrowRight, { className: "h-4 w-4" }), (0, jsx_runtime_1.jsx)("span", { className: "sr-only", children: "Next slide" })] }));
|
|
177
|
+
});
|
|
178
|
+
exports.CarouselNext = CarouselNext;
|
|
179
|
+
CarouselNext.displayName = "CarouselNext";
|
package/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbP
|
|
|
6
6
|
export { Button, buttonVariants, type ButtonProps, type ButtonVariant, type ButtonSize, type ButtonRoundness } from "./Button/Button";
|
|
7
7
|
export { Calendar, CalendarDayButton, type CalendarProps } from "./Calendar/Calendar";
|
|
8
8
|
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent, cardVariants, type CardProps, type CardVariant } from "./Card/Card";
|
|
9
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, carouselVariants, carouselContentVariants, carouselItemVariants, useCarousel, type CarouselApi, type CarouselProps, type CarouselOptions, type CarouselPlugin, type CarouselOrientation, } from "./Carousel/Carousel";
|
|
9
10
|
export { ChatBubble, chatBubbleVariants, bubbleContentVariants, type ChatBubbleProps, type ChatBubbleSide, type ChatBubbleColor, type ChatBubbleTheme, type ChatBubbleSize } from "./ChatBubble/ChatBubble";
|
|
10
11
|
export { Checkbox, checkboxVariants, type CheckboxProps, type CheckboxSize } from "./Checkbox/Checkbox";
|
|
11
12
|
export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogBody, AlertDialogAction, AlertDialogCancel, alertDialogContentVariants, alertDialogHeaderVariants, alertDialogFooterVariants, type AlertDialogContentProps, type AlertDialogHeaderProps, type AlertDialogFooterProps, type AlertDialogContentType, type AlertDialogHeaderType, type AlertDialogFooterType, type AlertDialogCloseButtonVariant, } from "./AlertDialog/AlertDialog";
|
package/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.copyToClipboard = exports.cn = exports.typographyVariants = exports.Typography = exports.tooltipContentVariants = exports.TooltipProvider = void 0;
|
|
3
|
+
exports.AlertDialogTitle = exports.AlertDialogFooter = exports.AlertDialogHeader = exports.AlertDialogContent = exports.AlertDialogTrigger = exports.AlertDialogOverlay = exports.AlertDialogPortal = exports.AlertDialog = exports.checkboxVariants = exports.Checkbox = exports.bubbleContentVariants = exports.chatBubbleVariants = exports.ChatBubble = exports.useCarousel = exports.carouselItemVariants = exports.carouselContentVariants = exports.carouselVariants = exports.CarouselNext = exports.CarouselPrevious = exports.CarouselItem = exports.CarouselContent = exports.Carousel = exports.cardVariants = exports.CardContent = exports.CardDescription = exports.CardTitle = exports.CardFooter = exports.CardHeader = exports.Card = exports.CalendarDayButton = exports.Calendar = exports.buttonVariants = exports.Button = exports.BreadcrumbEllipsis = exports.BreadcrumbSeparator = exports.BreadcrumbPage = exports.BreadcrumbLink = exports.BreadcrumbItem = exports.BreadcrumbList = exports.Breadcrumb = exports.badgeVariants = exports.Badge = exports.avatarVariants = exports.AvatarFallback = exports.AvatarImage = exports.Avatar = exports.alertVariants = exports.AlertDescription = exports.AlertTitle = exports.Alert = void 0;
|
|
4
|
+
exports.labelVariants = exports.Label = exports.inputOTPSlotVariants = exports.inputOTPVariants = exports.InputOTPSeparator = exports.InputOTPSlot = exports.InputOTPGroup = exports.InputOTP = exports.inputVariants = exports.Input = exports.iconButtonVariants = exports.IconButton = exports.flexVariants = exports.Flex = exports.ErrorMessage = exports.DropdownMenuRadioGroup = exports.DropdownMenuSubTrigger = exports.DropdownMenuSubContent = exports.DropdownMenuSub = exports.DropdownMenuPortal = exports.DropdownMenuGroup = exports.DropdownMenuShortcut = exports.DropdownMenuSeparator = exports.DropdownMenuLabel = exports.DropdownMenuRadioItem = exports.DropdownMenuCheckboxItem = exports.DropdownMenuItem = exports.DropdownMenuContent = exports.DropdownMenuTrigger = exports.DropdownMenu = exports.drawerOverlayVariants = exports.drawerContentVariants = exports.DrawerDescription = exports.DrawerTitle = exports.DrawerBody = exports.DrawerFooter = exports.DrawerHeader = exports.DrawerContent = exports.DrawerClose = exports.DrawerTrigger = exports.DrawerOverlay = exports.DrawerPortal = exports.Drawer = exports.alertDialogFooterVariants = exports.alertDialogHeaderVariants = exports.alertDialogContentVariants = exports.AlertDialogCancel = exports.AlertDialogAction = exports.AlertDialogBody = exports.AlertDialogDescription = void 0;
|
|
5
|
+
exports.TabsTrigger = exports.TabsList = exports.Tabs = exports.switchVariants = exports.Switch = exports.spinnerVariants = exports.Spinner = exports.Skeleton = exports.Separator = exports.selectTriggerVariants = exports.SelectScrollDownButton = exports.SelectScrollUpButton = exports.SelectSeparator = exports.SelectItem = exports.SelectLabel = exports.SelectContent = exports.SelectTrigger = exports.SelectValue = exports.SelectGroup = exports.Select = exports.ScrollBar = exports.ScrollArea = exports.radioGroupItemVariants = exports.RadioGroupItem = exports.RadioGroup = exports.progressIndicatorVariants = exports.progressVariants = exports.Progress = exports.PopoverAnchor = exports.PopoverContent = exports.PopoverTrigger = exports.Popover = exports.MenubarSubContent = exports.MenubarSubTrigger = exports.MenubarSub = exports.MenubarRadioItem = exports.MenubarRadioGroup = exports.MenubarCheckboxItem = exports.MenubarShortcut = exports.MenubarItem = exports.MenubarLabel = exports.MenubarSeparator = exports.MenubarGroup = exports.MenubarContent = exports.MenubarTrigger = exports.MenubarMenu = exports.MenubarPortal = exports.Menubar = exports.loaderVariants = exports.Loader = void 0;
|
|
6
|
+
exports.copyToClipboard = exports.cn = exports.typographyVariants = exports.Typography = exports.tooltipContentVariants = exports.TooltipProvider = exports.TooltipContent = exports.TooltipTrigger = exports.Tooltip = exports.toast = exports.Toaster = exports.textareaVariants = exports.Textarea = exports.tabsListVariants = exports.TabsContent = void 0;
|
|
7
7
|
// Styles
|
|
8
8
|
require("./index.css");
|
|
9
9
|
// Components
|
|
@@ -42,6 +42,16 @@ Object.defineProperty(exports, "CardTitle", { enumerable: true, get: function ()
|
|
|
42
42
|
Object.defineProperty(exports, "CardDescription", { enumerable: true, get: function () { return Card_1.CardDescription; } });
|
|
43
43
|
Object.defineProperty(exports, "CardContent", { enumerable: true, get: function () { return Card_1.CardContent; } });
|
|
44
44
|
Object.defineProperty(exports, "cardVariants", { enumerable: true, get: function () { return Card_1.cardVariants; } });
|
|
45
|
+
var Carousel_1 = require("./Carousel/Carousel");
|
|
46
|
+
Object.defineProperty(exports, "Carousel", { enumerable: true, get: function () { return Carousel_1.Carousel; } });
|
|
47
|
+
Object.defineProperty(exports, "CarouselContent", { enumerable: true, get: function () { return Carousel_1.CarouselContent; } });
|
|
48
|
+
Object.defineProperty(exports, "CarouselItem", { enumerable: true, get: function () { return Carousel_1.CarouselItem; } });
|
|
49
|
+
Object.defineProperty(exports, "CarouselPrevious", { enumerable: true, get: function () { return Carousel_1.CarouselPrevious; } });
|
|
50
|
+
Object.defineProperty(exports, "CarouselNext", { enumerable: true, get: function () { return Carousel_1.CarouselNext; } });
|
|
51
|
+
Object.defineProperty(exports, "carouselVariants", { enumerable: true, get: function () { return Carousel_1.carouselVariants; } });
|
|
52
|
+
Object.defineProperty(exports, "carouselContentVariants", { enumerable: true, get: function () { return Carousel_1.carouselContentVariants; } });
|
|
53
|
+
Object.defineProperty(exports, "carouselItemVariants", { enumerable: true, get: function () { return Carousel_1.carouselItemVariants; } });
|
|
54
|
+
Object.defineProperty(exports, "useCarousel", { enumerable: true, get: function () { return Carousel_1.useCarousel; } });
|
|
45
55
|
var ChatBubble_1 = require("./ChatBubble/ChatBubble");
|
|
46
56
|
Object.defineProperty(exports, "ChatBubble", { enumerable: true, get: function () { return ChatBubble_1.ChatBubble; } });
|
|
47
57
|
Object.defineProperty(exports, "chatBubbleVariants", { enumerable: true, get: function () { return ChatBubble_1.chatBubbleVariants; } });
|