@modul/mbui 1.2.0-beta-pv-54550-931dcefd → 1.2.0-beta-pv-54379-535762f7
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/Alert/Alert.d.ts +1 -1
- package/dist/AlertDialog/index.js +25 -26
- package/dist/Badge/index.js +1 -13
- package/dist/BankLogosRounded/index.js +1 -1
- package/dist/Button/Button.d.ts +1 -0
- package/dist/Button/ButtonWidget.d.ts +6 -6
- package/dist/Button/index.js +22 -23
- package/dist/Chip/Chip.d.ts +1 -1
- package/dist/Input/index.d.ts +0 -1
- package/dist/Input/index.js +9 -10
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/Select/SelectDrawer/index.d.ts +3 -0
- package/dist/Select/SelectDrawer/index.js +82 -13
- package/dist/Select/components/OptionAccountWithBalance.d.ts +4 -0
- package/dist/Select/components/OptionBank.d.ts +4 -0
- package/dist/Select/components/SelectBankValue.d.ts +3 -0
- package/dist/Select/index.d.ts +1 -1
- package/dist/Select/index.js +86 -17
- package/dist/Select/types/types.d.ts +1 -0
- 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 +2 -2
- package/dist/index.js +62 -76
- package/package.json +1 -1
- package/dist/Input/InputSearch.d.ts +0 -9
- 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
@@ -36,7 +36,7 @@ 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, OptionAccountWithBalance } 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, 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, SelectAccountValue, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, PDFViewer, IconFile, 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, 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, OptionAccountWithBalance, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, PDFViewer, IconFile, Stepper, };
|