@modul/mbui 0.0.28-beta-pv-53383-faa5a6de → 0.0.28-beta-pv-53383-45fd0f43
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/Carousel/Carousel.d.ts +1 -1
- package/dist/Carousel/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/Carousel/Carousel.tsx +1 -1
- package/src/Carousel/index.ts +1 -1
- package/src/index.ts +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import useEmblaCarousel, { type UseEmblaCarouselType } from "embla-carousel-react";
|
|
3
|
-
declare type CarouselApi = UseEmblaCarouselType[1];
|
|
3
|
+
export declare type CarouselApi = UseEmblaCarouselType[1];
|
|
4
4
|
declare type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
5
5
|
declare type CarouselOptions = UseCarouselParameters[0];
|
|
6
6
|
declare type CarouselPlugin = UseCarouselParameters[1];
|
package/dist/Carousel/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Carousel, CarouselContent, CarouselItem, type
|
|
1
|
+
export { Carousel, CarouselContent, CarouselItem, type CarouselApi, } from "./Carousel";
|
package/dist/index.d.ts
CHANGED
|
@@ -32,5 +32,5 @@ import { Toaster, toast } from './Toaster';
|
|
|
32
32
|
import { Checkbox } from './Checkbox';
|
|
33
33
|
import { Swipe2Show } from './Swipe2Show';
|
|
34
34
|
import { Skeleton } from './Skeleton';
|
|
35
|
-
import { Carousel, CarouselContent, CarouselItem,
|
|
36
|
-
export { Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, BottomNavigation, BottomNavigationList, BottomNavigationListItem, BottomNavigationLink, Page, Chip, Progress, Alert, Switch, Label, Textarea, SelectAccountCard, SelectAccount, SelectAsync, Select, Form, FormLabel, FormField, FormItem, FormControl, FormDescription, FormMessage, Calendar, DatePicker, InputMask, AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, MessageTyping, FavoritePaymentsList, FavoritePaymentsItem, FarvoritePaymentDescription, farvoriteLinkClasses, Badge, badgeVariants, DigitKeyPad, ButtonWidget, Toaster, toast, Checkbox, Swipe2Show, Skeleton, Carousel, CarouselContent, CarouselItem, type
|
|
35
|
+
import { Carousel, CarouselContent, CarouselItem, CarouselApi } from './Carousel';
|
|
36
|
+
export { Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, BottomNavigation, BottomNavigationList, BottomNavigationListItem, BottomNavigationLink, Page, Chip, Progress, Alert, Switch, Label, Textarea, SelectAccountCard, SelectAccount, SelectAsync, Select, Form, FormLabel, FormField, FormItem, FormControl, FormDescription, FormMessage, Calendar, DatePicker, InputMask, AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, MessageTyping, FavoritePaymentsList, FavoritePaymentsItem, FarvoritePaymentDescription, farvoriteLinkClasses, Badge, badgeVariants, DigitKeyPad, ButtonWidget, Toaster, toast, Checkbox, Swipe2Show, Skeleton, Carousel, CarouselContent, CarouselItem, type CarouselApi, };
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import useEmblaCarousel, {
|
|
|
5
5
|
|
|
6
6
|
import { cn } from '../@/lib/utils'
|
|
7
7
|
|
|
8
|
-
type CarouselApi = UseEmblaCarouselType[1]
|
|
8
|
+
export type CarouselApi = UseEmblaCarouselType[1]
|
|
9
9
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>
|
|
10
10
|
type CarouselOptions = UseCarouselParameters[0]
|
|
11
11
|
type CarouselPlugin = UseCarouselParameters[1]
|
package/src/Carousel/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
Carousel,
|
|
58
58
|
CarouselContent,
|
|
59
59
|
CarouselItem,
|
|
60
|
-
|
|
60
|
+
CarouselApi,
|
|
61
61
|
} from './Carousel'
|
|
62
62
|
|
|
63
63
|
export {
|
|
@@ -140,5 +140,5 @@ export {
|
|
|
140
140
|
Carousel,
|
|
141
141
|
CarouselContent,
|
|
142
142
|
CarouselItem,
|
|
143
|
-
type
|
|
143
|
+
type CarouselApi,
|
|
144
144
|
}
|