@modul/mbui 0.0.1 → 0.0.2-beta-pv-52768-9b2131f6
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/package.json +38 -3
- package/src/@/config/button.ts +89 -0
- package/src/@/config/index.ts +99 -0
- package/src/@/lib/utils.ts +7 -0
- package/src/Audio/Audio.styl +115 -0
- package/src/Audio/Audio.tsx +359 -0
- package/src/Audio/index.ts +4 -0
- package/src/Audio/types.ts +40 -0
- package/src/Base/Buttons/Button.tsx +66 -41
- package/src/Base/Buttons/index.ts +2 -1
- package/src/Base/Input/Base.tsx +35 -0
- package/src/Base/Input/Input.tsx +31 -11
- package/src/Base/Input/types.ts +3 -2
- package/src/Collapse/Collapse.tsx +88 -0
- package/src/Collapse/ant-collapse.styl +93 -0
- package/src/Collapse/index.ts +5 -0
- package/src/Input-OTP/Input.tsx +71 -0
- package/src/Input-OTP/index.ts +3 -0
- package/src/Logo/Logo.tsx +16 -0
- package/src/Logo/index.ts +3 -0
- package/src/Popover/Popover.tsx +42 -0
- package/src/Popover/index.ts +5 -0
- package/src/Slider/Slider.tsx +21 -0
- package/src/Slider/index.ts +4 -0
- package/src/Slider/slider.styl +62 -0
- package/src/Tabs/Tabs.tsx +63 -0
- package/src/Tabs/ant-tabs.styl +91 -0
- package/src/Tabs/index.ts +5 -0
- package/src/Tooltip/Tooltip.tsx +47 -0
- package/src/Tooltip/index.ts +5 -0
- package/src/assets/css/global.css +125 -0
- package/src/assets/fonts/Roboto-Italic.ttf +0 -0
- package/src/assets/fonts/Roboto-Italic.woff2 +0 -0
- package/src/assets/fonts/Roboto.ttf +0 -0
- package/src/assets/fonts/Roboto.woff2 +0 -0
- package/src/assets/images/logo/bank/emblem-white.svg +1 -0
- package/src/assets/images/logo/bank/emblem.svg +1 -0
- package/src/assets/images/logo/bank/logo-white.svg +1 -0
- package/src/assets/images/logo/bank/logo.svg +1 -0
- package/src/assets/images/logo/garant/emblem-white.svg +1 -0
- package/src/assets/images/logo/garant/emblem.svg +1 -0
- package/src/assets/images/logo/garant/logo-white.svg +1 -0
- package/src/assets/images/logo/garant/logo.svg +1 -0
- package/src/assets/images/logo/kassa/emblem-white.svg +1 -0
- package/src/assets/images/logo/kassa/emblem.svg +1 -0
- package/src/assets/images/logo/kassa/logo-white.svg +1 -0
- package/src/assets/images/logo/kassa/logo.svg +1 -0
- package/src/components/BottonNavigation/BottonNavigation.tsx +55 -0
- package/src/components/BottonNavigation/index.ts +6 -0
- package/src/components/SvgIcon/SvgIcon.tsx +32 -0
- package/src/components/SvgIcon/icons/AddList.tsx +18 -0
- package/src/components/SvgIcon/icons/AlertCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/AlertCircleSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/AlertDiamond.tsx +18 -0
- package/src/components/SvgIcon/icons/AlertDiamondSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/AlertShield.tsx +18 -0
- package/src/components/SvgIcon/icons/Android.tsx +18 -0
- package/src/components/SvgIcon/icons/Apple.tsx +18 -0
- package/src/components/SvgIcon/icons/Archive.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowDown.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowLeft.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowRight.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowUp.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowUpCorner.tsx +18 -0
- package/src/components/SvgIcon/icons/ArrowsChange.tsx +18 -0
- package/src/components/SvgIcon/icons/Atm.tsx +18 -0
- package/src/components/SvgIcon/icons/Attach.tsx +18 -0
- package/src/components/SvgIcon/icons/Bank.tsx +18 -0
- package/src/components/SvgIcon/icons/Bold.tsx +18 -0
- package/src/components/SvgIcon/icons/Bonus.tsx +18 -0
- package/src/components/SvgIcon/icons/Building.tsx +18 -0
- package/src/components/SvgIcon/icons/Calendar.tsx +18 -0
- package/src/components/SvgIcon/icons/CalendarCancel.tsx +18 -0
- package/src/components/SvgIcon/icons/Call.tsx +18 -0
- package/src/components/SvgIcon/icons/CallEnd.tsx +18 -0
- package/src/components/SvgIcon/icons/CallMissed.tsx +18 -0
- package/src/components/SvgIcon/icons/Callback.tsx +18 -0
- package/src/components/SvgIcon/icons/Camera.tsx +18 -0
- package/src/components/SvgIcon/icons/Cancel.tsx +18 -0
- package/src/components/SvgIcon/icons/CancelSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Card.tsx +18 -0
- package/src/components/SvgIcon/icons/CardLock.tsx +18 -0
- package/src/components/SvgIcon/icons/CardRefill.tsx +18 -0
- package/src/components/SvgIcon/icons/CardReissue.tsx +18 -0
- package/src/components/SvgIcon/icons/CardScan.tsx +18 -0
- package/src/components/SvgIcon/icons/CardToCard.tsx +18 -0
- package/src/components/SvgIcon/icons/CardUnlock.tsx +18 -0
- package/src/components/SvgIcon/icons/Change.tsx +18 -0
- package/src/components/SvgIcon/icons/Chart.tsx +18 -0
- package/src/components/SvgIcon/icons/Chat.tsx +18 -0
- package/src/components/SvgIcon/icons/ChatSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Check.tsx +18 -0
- package/src/components/SvgIcon/icons/CheckCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/CheckCircleSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/CheckShield.tsx +20 -0
- package/src/components/SvgIcon/icons/CheckSmall.tsx +18 -0
- package/src/components/SvgIcon/icons/Checklist.tsx +18 -0
- package/src/components/SvgIcon/icons/Circle.tsx +18 -0
- package/src/components/SvgIcon/icons/Clock.tsx +18 -0
- package/src/components/SvgIcon/icons/Close.tsx +18 -0
- package/src/components/SvgIcon/icons/Coins.tsx +18 -0
- package/src/components/SvgIcon/icons/Collapse.tsx +18 -0
- package/src/components/SvgIcon/icons/Copy.tsx +18 -0
- package/src/components/SvgIcon/icons/Cup.tsx +18 -0
- package/src/components/SvgIcon/icons/CurrencyChange.tsx +18 -0
- package/src/components/SvgIcon/icons/CurrencyTransfer.tsx +18 -0
- package/src/components/SvgIcon/icons/Deposit.tsx +18 -0
- package/src/components/SvgIcon/icons/Diamond.tsx +18 -0
- package/src/components/SvgIcon/icons/Dislike.tsx +18 -0
- package/src/components/SvgIcon/icons/DislikeSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Doc.tsx +18 -0
- package/src/components/SvgIcon/icons/DocCancel.tsx +18 -0
- package/src/components/SvgIcon/icons/Dollar.tsx +18 -0
- package/src/components/SvgIcon/icons/DoubleArrow.tsx +18 -0
- package/src/components/SvgIcon/icons/DoubleTick.tsx +18 -0
- package/src/components/SvgIcon/icons/Download.tsx +18 -0
- package/src/components/SvgIcon/icons/Dropdown.tsx +18 -0
- package/src/components/SvgIcon/icons/DropdownSmallOld.tsx +20 -0
- package/src/components/SvgIcon/icons/Dropup.tsx +18 -0
- package/src/components/SvgIcon/icons/Edit.tsx +18 -0
- package/src/components/SvgIcon/icons/Email.tsx +18 -0
- package/src/components/SvgIcon/icons/Excel.tsx +18 -0
- package/src/components/SvgIcon/icons/Expand.tsx +18 -0
- package/src/components/SvgIcon/icons/Eye.tsx +18 -0
- package/src/components/SvgIcon/icons/EyeOff.tsx +18 -0
- package/src/components/SvgIcon/icons/Favorite.tsx +18 -0
- package/src/components/SvgIcon/icons/FavoriteSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Fb.tsx +18 -0
- package/src/components/SvgIcon/icons/FbCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/File.tsx +18 -0
- package/src/components/SvgIcon/icons/FileAdd.tsx +18 -0
- package/src/components/SvgIcon/icons/Files.tsx +18 -0
- package/src/components/SvgIcon/icons/Filter.tsx +18 -0
- package/src/components/SvgIcon/icons/Folder.tsx +18 -0
- package/src/components/SvgIcon/icons/Geolocation.tsx +18 -0
- package/src/components/SvgIcon/icons/Gift.tsx +18 -0
- package/src/components/SvgIcon/icons/Globe.tsx +18 -0
- package/src/components/SvgIcon/icons/Heart.tsx +18 -0
- package/src/components/SvgIcon/icons/HeartSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Help.tsx +18 -0
- package/src/components/SvgIcon/icons/Home.tsx +18 -0
- package/src/components/SvgIcon/icons/Housing.tsx +18 -0
- package/src/components/SvgIcon/icons/Ig.tsx +18 -0
- package/src/components/SvgIcon/icons/IgCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Info.tsx +18 -0
- package/src/components/SvgIcon/icons/InfoBook.tsx +18 -0
- package/src/components/SvgIcon/icons/InfoSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Italic.tsx +18 -0
- package/src/components/SvgIcon/icons/Key.tsx +18 -0
- package/src/components/SvgIcon/icons/Left.tsx +18 -0
- package/src/components/SvgIcon/icons/Lightbulb.tsx +18 -0
- package/src/components/SvgIcon/icons/Like.tsx +18 -0
- package/src/components/SvgIcon/icons/LikeSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Link.tsx +18 -0
- package/src/components/SvgIcon/icons/Lock.tsx +18 -0
- package/src/components/SvgIcon/icons/Logout.tsx +18 -0
- package/src/components/SvgIcon/icons/MagicWand.tsx +18 -0
- package/src/components/SvgIcon/icons/Mail.tsx +18 -0
- package/src/components/SvgIcon/icons/MailSend.tsx +18 -0
- package/src/components/SvgIcon/icons/Map.tsx +18 -0
- package/src/components/SvgIcon/icons/MapPin.tsx +18 -0
- package/src/components/SvgIcon/icons/Menu.tsx +18 -0
- package/src/components/SvgIcon/icons/Mic.tsx +18 -0
- package/src/components/SvgIcon/icons/MicOff.tsx +18 -0
- package/src/components/SvgIcon/icons/Minus.tsx +18 -0
- package/src/components/SvgIcon/icons/MinusCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/MinusShort.tsx +18 -0
- package/src/components/SvgIcon/icons/Moneybox.tsx +18 -0
- package/src/components/SvgIcon/icons/More.tsx +18 -0
- package/src/components/SvgIcon/icons/Move.tsx +18 -0
- package/src/components/SvgIcon/icons/Newbie.tsx +20 -0
- package/src/components/SvgIcon/icons/News.tsx +18 -0
- package/src/components/SvgIcon/icons/Notes.tsx +18 -0
- package/src/components/SvgIcon/icons/Notification.tsx +18 -0
- package/src/components/SvgIcon/icons/Ok.tsx +18 -0
- package/src/components/SvgIcon/icons/OkCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Order.tsx +18 -0
- package/src/components/SvgIcon/icons/OrderLoad.tsx +18 -0
- package/src/components/SvgIcon/icons/OrderSend.tsx +18 -0
- package/src/components/SvgIcon/icons/Pause.tsx +18 -0
- package/src/components/SvgIcon/icons/PauseCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Payment.tsx +18 -0
- package/src/components/SvgIcon/icons/PhoneShake.tsx +18 -0
- package/src/components/SvgIcon/icons/Play.tsx +18 -0
- package/src/components/SvgIcon/icons/PlaySolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Plus.tsx +18 -0
- package/src/components/SvgIcon/icons/PlusCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Pos.tsx +18 -0
- package/src/components/SvgIcon/icons/Print.tsx +18 -0
- package/src/components/SvgIcon/icons/QrPay.tsx +18 -0
- package/src/components/SvgIcon/icons/Redirect.tsx +18 -0
- package/src/components/SvgIcon/icons/Refill.tsx +18 -0
- package/src/components/SvgIcon/icons/Refund.tsx +18 -0
- package/src/components/SvgIcon/icons/Reload.tsx +18 -0
- package/src/components/SvgIcon/icons/Reply.tsx +18 -0
- package/src/components/SvgIcon/icons/ReplyShape.tsx +18 -0
- package/src/components/SvgIcon/icons/ReplyShapeSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Request.tsx +18 -0
- package/src/components/SvgIcon/icons/Right.tsx +18 -0
- package/src/components/SvgIcon/icons/Route.tsx +18 -0
- package/src/components/SvgIcon/icons/Ruble.tsx +18 -0
- package/src/components/SvgIcon/icons/Sbp.tsx +18 -0
- package/src/components/SvgIcon/icons/Search.tsx +18 -0
- package/src/components/SvgIcon/icons/Send.tsx +18 -0
- package/src/components/SvgIcon/icons/Services.tsx +18 -0
- package/src/components/SvgIcon/icons/Settings.tsx +18 -0
- package/src/components/SvgIcon/icons/Share.tsx +18 -0
- package/src/components/SvgIcon/icons/ShoppingCart.tsx +18 -0
- package/src/components/SvgIcon/icons/Sign.tsx +18 -0
- package/src/components/SvgIcon/icons/SlotMachine.tsx +18 -0
- package/src/components/SvgIcon/icons/SortDown.tsx +18 -0
- package/src/components/SvgIcon/icons/SortDownSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/SortUp.tsx +18 -0
- package/src/components/SvgIcon/icons/SortUpSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Stop.tsx +18 -0
- package/src/components/SvgIcon/icons/Support.tsx +18 -0
- package/src/components/SvgIcon/icons/Sync.tsx +18 -0
- package/src/components/SvgIcon/icons/Table.tsx +18 -0
- package/src/components/SvgIcon/icons/Tariffs.tsx +18 -0
- package/src/components/SvgIcon/icons/Tg.tsx +18 -0
- package/src/components/SvgIcon/icons/TgCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Timeout.tsx +18 -0
- package/src/components/SvgIcon/icons/Timer.tsx +18 -0
- package/src/components/SvgIcon/icons/Trash.tsx +18 -0
- package/src/components/SvgIcon/icons/TurnOff.tsx +18 -0
- package/src/components/SvgIcon/icons/Twitter.tsx +18 -0
- package/src/components/SvgIcon/icons/TwitterCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Underline.tsx +18 -0
- package/src/components/SvgIcon/icons/Unlink.tsx +18 -0
- package/src/components/SvgIcon/icons/Unsorted.tsx +18 -0
- package/src/components/SvgIcon/icons/UnsortedSolid.tsx +18 -0
- package/src/components/SvgIcon/icons/Upload.tsx +18 -0
- package/src/components/SvgIcon/icons/User.tsx +18 -0
- package/src/components/SvgIcon/icons/UserAdd.tsx +18 -0
- package/src/components/SvgIcon/icons/UserCard.tsx +18 -0
- package/src/components/SvgIcon/icons/UserEdit.tsx +18 -0
- package/src/components/SvgIcon/icons/UserQueue.tsx +18 -0
- package/src/components/SvgIcon/icons/Viber.tsx +18 -0
- package/src/components/SvgIcon/icons/ViberCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/ViewGrid.tsx +18 -0
- package/src/components/SvgIcon/icons/ViewHorizontal.tsx +18 -0
- package/src/components/SvgIcon/icons/ViewList.tsx +18 -0
- package/src/components/SvgIcon/icons/ViewRows.tsx +18 -0
- package/src/components/SvgIcon/icons/ViewVertical.tsx +18 -0
- package/src/components/SvgIcon/icons/Vk.tsx +18 -0
- package/src/components/SvgIcon/icons/VkCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Wallet.tsx +18 -0
- package/src/components/SvgIcon/icons/Warning.tsx +18 -0
- package/src/components/SvgIcon/icons/WarningClean.tsx +18 -0
- package/src/components/SvgIcon/icons/Whatsapp.tsx +18 -0
- package/src/components/SvgIcon/icons/WhatsappCircle.tsx +18 -0
- package/src/components/SvgIcon/icons/Wheelchair.tsx +18 -0
- package/src/components/SvgIcon/icons/index.ts +203 -0
- package/src/components/SvgIcon/index.ts +1 -0
- package/src/DatePicker/index.tsx +0 -4
- package/src/DatePicker/test.ts +0 -0
- package/src/index.ts +0 -6