@modul/mbui 1.4.2-beta-pv-54814-a96c597e → 1.5.0-beta-pv-54379-8fec3b9a
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/BankLogosRounded/index.js +1 -1
- package/dist/BottomNavigation/index.js +1 -1
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/Select/SelectDrawer/index.d.ts +3 -0
- package/dist/Select/SelectDrawer/index.js +98 -20
- package/dist/Select/components/OptionAccount.d.ts +4 -0
- package/dist/Select/components/OptionBank.d.ts +4 -0
- package/dist/Select/components/SelectAccountValue.d.ts +2 -1
- package/dist/Select/components/SelectBankValue.d.ts +3 -0
- package/dist/Select/index.d.ts +1 -1
- package/dist/Select/index.js +64 -55
- package/dist/Select/types/types.d.ts +41 -26
- package/dist/assets/css/global.css +1 -1
- package/dist/assets/images/icons/banks/sprite.svg +1 -1
- package/dist/assets/images/src/assets/images/icons/banks/sprite.svg +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +64 -55
- package/package.json +1 -1
- package/dist/assets/images/icons/banks/unknown.svg +0 -1
- package/dist/assets/images/src/assets/images/icons/banks/unknown.svg +0 -1
package/dist/index.d.ts
CHANGED
@@ -32,11 +32,11 @@ 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,
|
35
|
+
import { Carousel, CarouselContent, CarouselItem, CarouselApi } from './Carousel';
|
36
36
|
import { BankCardImage } from './BankCardImage';
|
37
37
|
import { RadioGroup, RadioGroupItem } from './Radio';
|
38
38
|
import { Loading } from './Loading';
|
39
|
-
import { SelectDrawer, type ISelectValue, type ISelectOption, Option, SelectAccountValue } from './Select';
|
39
|
+
import { SelectDrawer, type ISelectValue, type ISelectOption, Option, OptionBank, SelectBankValue, SelectAccountValue, OptionAccount } from './Select';
|
40
40
|
import { BankLogosRounded } from './BankLogosRounded';
|
41
41
|
import { BankCardIcon } from './BankCardIcon';
|
42
42
|
import { CurrencyFlag } from './CurrencyFlag';
|
@@ -46,4 +46,4 @@ import { Counter } from './Counter';
|
|
46
46
|
import { PDFViewer } from './PDFViewer';
|
47
47
|
import { IconFile } from './IconFile';
|
48
48
|
import { Stepper } from './Stepper';
|
49
|
-
export { Autocomplete, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, InputNumericFormat, InputMaskWidget, InputSearch, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, DrawerDescription, 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,
|
49
|
+
export { Autocomplete, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, InputNumericFormat, InputMaskWidget, InputSearch, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, DrawerDescription, 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, BankCardImage, RadioGroup, RadioGroupItem, Loading, SelectDrawer, type ISelectValue, type ISelectOption, Option, OptionBank, SelectBankValue, SelectAccountValue, OptionAccount, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, PDFViewer, IconFile, Stepper, };
|