@modul/mbui 1.3.0-beta-pv-54550-51fb6bbd → 1.3.0-beta-pv-54379-13fc484e
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/Input/index.d.ts +0 -1
- package/dist/Input/index.js +9 -10
- package/dist/Select/SelectDrawer/SearchField.d.ts +1 -1
- package/dist/Select/SelectDrawer/index.d.ts +3 -0
- package/dist/Select/SelectDrawer/index.js +115 -59
- package/dist/Select/components/OptionAccount.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 +110 -54
- 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 +3 -3
- package/dist/index.js +57 -43
- package/package.json +1 -1
- package/dist/Input/InputSearch.d.ts +0 -10
- 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
@@ -13,7 +13,7 @@ import { cn } from './@/lib/utils';
|
|
13
13
|
import { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, DrawerDescription } from './Drawer';
|
14
14
|
import { Page } from './Page';
|
15
15
|
import { Chip } from './Chip';
|
16
|
-
import { InputField, InputLabel, InputMask, InputNumericFormat, InputMaskWidget
|
16
|
+
import { InputField, InputLabel, InputMask, InputNumericFormat, InputMaskWidget } from './Input';
|
17
17
|
import { Alert } from './Alert';
|
18
18
|
import { Switch } from './Switch';
|
19
19
|
import { Label } from './Label';
|
@@ -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, 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,
|
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, OptionAccount, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, PDFViewer, IconFile, Stepper, };
|