@modul/mbui 0.0.39-beta-pv-53878-b7ae44e6 → 0.0.39-beta-pv-53924-8973812e
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/index.js +1 -1
- package/dist/AlertDialog/index.js +4 -4
- package/dist/Audio/index.js +1 -1
- package/dist/Badge/index.js +1 -1
- package/dist/BankCardImage/index.js +1 -1
- package/dist/BankLogosRounded/BankLogosRounded.d.ts +6 -0
- package/dist/BankLogosRounded/index.d.ts +1 -0
- package/dist/BankLogosRounded/index.js +1 -0
- package/dist/BottomNavigation/index.js +1 -1
- package/dist/Button/ButtonWidget.d.ts +0 -1
- package/dist/Button/index.js +1 -1
- package/dist/Calendar/index.js +1 -1
- package/dist/Carousel/index.js +1 -1
- package/dist/Chat/index.js +1 -1
- package/dist/Checkbox/Checkbox.d.ts +2 -2
- package/dist/Checkbox/index.js +1 -1
- package/dist/Chip/Chip.d.ts +1 -1
- package/dist/Chip/index.js +1 -1
- package/dist/Collapsible/index.js +1 -1
- package/dist/DatePicker/index.js +1 -1
- package/dist/DigitKeyPad/index.js +1 -1
- package/dist/Drawer/Drawer.d.ts +2 -1
- package/dist/Drawer/index.d.ts +1 -1
- package/dist/Drawer/index.js +2 -2
- package/dist/Form/index.js +1 -1
- package/dist/Input/index.js +1 -1
- package/dist/Input-OTP/index.js +1 -1
- package/dist/Label/index.js +1 -1
- package/dist/Page/index.js +1 -1
- package/dist/Popover/index.js +1 -1
- package/dist/Progress/index.js +2 -2
- package/dist/Radio/index.js +1 -1
- package/dist/Select/SelectDrawer.d.ts +39 -0
- package/dist/Select/components/SelectBankAccountBalanceOption.d.ts +4 -0
- package/dist/Select/components/SelectPrimaryAccountValue.d.ts +4 -0
- package/dist/Select/components/index.js +1 -1
- package/dist/Select/index.d.ts +3 -0
- package/dist/Select/index.js +5 -1
- package/dist/Skeleton/index.js +1 -1
- package/dist/Slider/index.js +1 -1
- package/dist/Switch/index.js +1 -1
- package/dist/Tabs/index.js +1 -1
- package/dist/Textarea/index.js +1 -1
- package/dist/Toaster/index.js +2 -2
- package/dist/assets/css/global.css +1 -1
- package/dist/assets/images/icons/banks/sprite.svg +1 -0
- package/dist/assets/images/icons/banks/unknown.svg +1 -0
- package/dist/index.d.ts +6 -2
- package/dist/index.js +7 -7
- package/package.json +12 -13
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger
|
|
|
10
10
|
import { Button, buttonVariants, ButtonWidget } from './Button';
|
|
11
11
|
import { Audio } from './Audio';
|
|
12
12
|
import { cn } from './@/lib/utils';
|
|
13
|
-
import { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle } from './Drawer';
|
|
13
|
+
import { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, DrawerDescription } from './Drawer';
|
|
14
14
|
import { Page } from './Page';
|
|
15
15
|
import { Chip } from './Chip';
|
|
16
16
|
import { InputField, InputLabel, InputMask } from './Input';
|
|
@@ -36,5 +36,9 @@ 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 } from './Select';
|
|
40
|
+
import { BankLogosRounded } from './BankLogosRounded';
|
|
39
41
|
import { BankCardIcon } from './BankCardIcon';
|
|
40
|
-
|
|
42
|
+
import { SelectBankAccountBalanceOption } from './Select';
|
|
43
|
+
import { SelectPrimaryAccountValue } from './Select';
|
|
44
|
+
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, 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, BankLogosRounded, BankCardIcon, SelectBankAccountBalanceOption, SelectPrimaryAccountValue, };
|