@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.
@@ -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];
@@ -1 +1 @@
1
- export { Carousel, CarouselContent, CarouselItem, type CarouselProps, } from "./Carousel";
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, CarouselProps } 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 CarouselProps, };
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "0.0.28-beta-pv-53383-faa5a6de",
3
+ "version": "0.0.28-beta-pv-53383-45fd0f43",
4
4
  "packageManager": "yarn@3.5.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -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]
@@ -2,7 +2,7 @@ export {
2
2
  Carousel,
3
3
  CarouselContent,
4
4
  CarouselItem,
5
- type CarouselProps,
5
+ type CarouselApi,
6
6
  // CarouselPrevious,
7
7
  // CarouselNext,
8
8
  } from "./Carousel"
package/src/index.ts CHANGED
@@ -57,7 +57,7 @@ import {
57
57
  Carousel,
58
58
  CarouselContent,
59
59
  CarouselItem,
60
- CarouselProps,
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 CarouselProps,
143
+ type CarouselApi,
144
144
  }