@ironsource/shared-ui 2.1.0-rc.0 → 2.1.0-rc.2
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/FormField.vue_vue_type_style_index_0_scoped_00052aa6_lang.css +1 -0
- package/_virtual/_commonjsHelpers.js +6 -0
- package/_virtual/index.js +4 -0
- package/components/button/v3/Button.vue.d.ts +6 -6
- package/components/button/v3/index.d.ts +14 -14
- package/components/emptyState/v3/EmptyState.vue.d.ts +3 -3
- package/components/emptyState/v3/index.d.ts +7 -7
- package/components/forms/FormField.vue.d.ts +2 -2
- package/components/forms/index.d.ts +0 -4
- package/components/forms/validation/ValidationStory.vue.d.ts +2 -0
- package/components/forms/validation/examples/dynamicForm/DynamicForm.vue.d.ts +2 -0
- package/components/forms/validation/examples/dynamicForm/FormParts/FormA.vue.d.ts +23 -0
- package/components/forms/validation/examples/dynamicForm/FormParts/FormB.vue.d.ts +25 -0
- package/components/forms/validation/examples/dynamicForm/types.d.ts +26 -0
- package/components/forms/validation/examples/dynamicForm/useFormTestValidation.d.ts +2 -0
- package/components/forms/validation/examples/simpleForm/SimpleForm.vue.d.ts +2 -0
- package/components/forms/validation/examples/simpleForm/types.d.ts +4 -0
- package/components/forms/validation/examples/simpleForm/useSimpleFormValidation.d.ts +2 -0
- package/components/forms/validation/utils/types.d.ts +1 -9
- package/components/icon/v3/icons/Duplicate.vue.d.ts +2 -0
- package/components/icon/v3/icons/index.d.ts +3 -0
- package/components/icon/v3/index.d.ts +3 -0
- package/components/layout/index.d.ts +170 -170
- package/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/components/ThemeWrapper/ThemeWrapper.vue.js +8 -0
- package/src/components/ThemeWrapper/ThemeWrapper.vue2.js +22 -0
- package/src/components/appHeader/AppHeader.vue.js +7 -0
- package/src/components/appHeader/AppHeader.vue2.js +58 -0
- package/src/components/appIcon/AppIcon.vue.js +7 -0
- package/src/components/appIcon/AppIcon.vue2.js +35 -0
- package/src/components/appTrigger/AppTrigger.vue.js +7 -0
- package/src/components/appTrigger/AppTrigger.vue2.js +124 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +120 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue2.js +79 -0
- package/src/components/autocompleteDropdown/GroupOption.vue.js +7 -0
- package/src/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
- package/src/components/banner/Banner.vue.js +7 -0
- package/src/components/banner/Banner.vue2.js +58 -0
- package/src/components/button/v3/Button.vue.js +7 -0
- package/src/components/button/v3/Button.vue2.js +59 -0
- package/src/components/button/v3/ButtonBase.vue.js +7 -0
- package/src/components/button/v3/ButtonBase.vue2.js +54 -0
- package/src/components/button/v3/IconButton.vue.js +7 -0
- package/src/components/button/v3/IconButton.vue2.js +45 -0
- package/src/components/button/v3/LoaderCircleIcon.vue.js +33 -0
- package/src/components/button/v3/LoaderDotsIcon.vue.js +16 -0
- package/src/components/button/v3/ScrollButton.vue.js +7 -0
- package/src/components/button/v3/ScrollButton.vue2.js +45 -0
- package/src/components/button/v4/ButtonV4.vue.js +7 -0
- package/src/components/button/v4/ButtonV4.vue2.js +90 -0
- package/src/components/button/v4/IconButtonV4.vue.js +7 -0
- package/src/components/button/v4/IconButtonV4.vue2.js +35 -0
- package/src/components/checkbox/v3/Checkbox.vue.js +7 -0
- package/src/components/checkbox/v3/Checkbox.vue2.js +99 -0
- package/src/components/checkbox/v3/icons/checked.vue.js +27 -0
- package/src/components/checkbox/v3/icons/indeterminate.vue.js +28 -0
- package/src/components/checkbox/v3/icons/unchecked.vue.js +24 -0
- package/src/components/checkbox/v4/CheckboxV4.vue.js +7 -0
- package/src/components/checkbox/v4/CheckboxV4.vue2.js +107 -0
- package/src/components/checkbox/v4/icons/CheckedDisabledState.vue.js +38 -0
- package/src/components/checkbox/v4/icons/CheckedState.vue.js +38 -0
- package/src/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
- package/src/components/checkbox/v4/icons/IndeterminateState.vue.js +40 -0
- package/src/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +31 -0
- package/src/components/checkbox/v4/icons/UncheckedState.vue.js +31 -0
- package/src/components/chip/v3/Chip.vue.js +7 -0
- package/src/components/chip/v3/Chip.vue2.js +58 -0
- package/src/components/chip/v4/ChipV4.vue.js +7 -0
- package/src/components/chip/v4/ChipV4.vue2.js +67 -0
- package/src/components/cssBaseline/CssBaseline.vue.js +10 -0
- package/src/components/datePicker/DatePicker.vue.js +7 -0
- package/src/components/datePicker/DatePicker.vue2.js +97 -0
- package/src/components/datePicker/DatePickerMonth.vue.js +7 -0
- package/src/components/datePicker/DatePickerMonth.vue2.js +85 -0
- package/src/components/dateRange/CalendarMonth.vue.js +7 -0
- package/src/components/dateRange/CalendarMonth.vue2.js +244 -0
- package/src/components/dateRange/DateRange.vue.js +7 -0
- package/src/components/dateRange/DateRange.vue2.js +417 -0
- package/src/components/dialog/v3/Dialog.vue.js +7 -0
- package/src/components/dialog/v3/Dialog.vue2.js +137 -0
- package/src/components/dialog/v4/DialogV4.vue.js +7 -0
- package/src/components/dialog/v4/DialogV4.vue2.js +150 -0
- package/src/components/dropdown/v3/Dropdown.vue.js +8 -0
- package/src/components/dropdown/v3/Dropdown.vue2.js +394 -0
- package/src/components/dropdown/v3/Label.vue.js +7 -0
- package/src/components/dropdown/v3/Label.vue2.js +36 -0
- package/src/components/dropdown/v3/Option.vue.js +7 -0
- package/src/components/dropdown/v3/Option.vue2.js +94 -0
- package/src/components/dropdown/v3/SearchInput.vue.js +7 -0
- package/src/components/dropdown/v3/SearchInput.vue2.js +82 -0
- package/src/components/dropdown/v4/AppDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/AppDropdownTrigger.vue2.js +142 -0
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue2.js +73 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +114 -0
- package/src/components/dropdown/v4/DropdownV4.vue.js +8 -0
- package/src/components/dropdown/v4/DropdownV4.vue2.js +382 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +19 -0
- package/src/components/dropdown/v4/OptionV4.vue.js +7 -0
- package/src/components/dropdown/v4/OptionV4.vue2.js +112 -0
- package/src/components/emptyState/v3/EmptyState.vue.js +7 -0
- package/src/components/emptyState/v3/EmptyState.vue2.js +91 -0
- package/src/components/emptyState/v3/EmptyStateIcon.vue.js +35 -0
- package/src/components/emptyState/v4/EmptyStateV4.vue.js +7 -0
- package/src/components/emptyState/v4/EmptyStateV4.vue2.js +66 -0
- package/src/components/emptyState/v4/icons/IconError.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconFiles.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoAccess.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoData.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoResults.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconSettings.vue.js +16 -0
- package/src/components/filterDropdown/AddFilterButton.vue.js +7 -0
- package/src/components/filterDropdown/AddFilterButton.vue2.js +50 -0
- package/src/components/filterDropdown/FilterDropdown.vue.js +7 -0
- package/src/components/filterDropdown/FilterDropdown.vue2.js +56 -0
- package/src/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
- package/src/components/filtersPanel/v3/FilterSearchInput.vue2.js +45 -0
- package/src/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
- package/src/components/filtersPanel/v3/FiltersPanel.vue2.js +40 -0
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
- package/src/components/floatingToolbar/FloatingToolbar.vue.js +7 -0
- package/src/components/floatingToolbar/FloatingToolbar.vue2.js +70 -0
- package/src/components/forms/FormField.vue.js +7 -0
- package/src/components/forms/FormField.vue2.js +17 -0
- package/src/components/forms/index.js +8 -0
- package/src/components/forms/validation/utils/scrollToElemets.js +14 -0
- package/src/components/forms/validation/utils/useFormValidation.js +34 -0
- package/src/components/icon/v3/Icon.vue.js +7 -0
- package/src/components/icon/v3/Icon.vue2.js +38 -0
- package/src/components/icon/v3/icons/A.vue.js +24 -0
- package/src/components/icon/v3/icons/A2.vue.js +18 -0
- package/src/components/icon/v3/icons/ABTest.vue.js +20 -0
- package/src/components/icon/v3/icons/ABTest2.vue.js +15 -0
- package/src/components/icon/v3/icons/ACircle.vue.js +20 -0
- package/src/components/icon/v3/icons/AccountBalanceWallet.vue.js +22 -0
- package/src/components/icon/v3/icons/AccountCircle.vue.js +20 -0
- package/src/components/icon/v3/icons/AccountCircleOutline.vue.js +18 -0
- package/src/components/icon/v3/icons/Add.vue.js +18 -0
- package/src/components/icon/v3/icons/Adjust.vue.js +43 -0
- package/src/components/icon/v3/icons/Analytics.vue.js +18 -0
- package/src/components/icon/v3/icons/Android.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleDown.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleLeft.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleRight.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleUp.vue.js +20 -0
- package/src/components/icon/v3/icons/AppStore.vue.js +21 -0
- package/src/components/icon/v3/icons/AreaChart.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowBack.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowDownward.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowForward.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowLeft.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowRight.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowSort-Down.vue.js +20 -0
- package/src/components/icon/v3/icons/ArrowSort-Up.vue.js +20 -0
- package/src/components/icon/v3/icons/ArrowUpward.vue.js +18 -0
- package/src/components/icon/v3/icons/AutoAwesome.vue.js +18 -0
- package/src/components/icon/v3/icons/AutoMode.vue.js +20 -0
- package/src/components/icon/v3/icons/Autorenew.vue.js +18 -0
- package/src/components/icon/v3/icons/B.vue.js +24 -0
- package/src/components/icon/v3/icons/B2.vue.js +18 -0
- package/src/components/icon/v3/icons/BCircle.vue.js +20 -0
- package/src/components/icon/v3/icons/Banner.vue.js +24 -0
- package/src/components/icon/v3/icons/Bidding.vue.js +32 -0
- package/src/components/icon/v3/icons/Bidding2.vue.js +32 -0
- package/src/components/icon/v3/icons/Block.vue.js +18 -0
- package/src/components/icon/v3/icons/BorderColor.vue.js +20 -0
- package/src/components/icon/v3/icons/Bug.vue.js +20 -0
- package/src/components/icon/v3/icons/Bullhorn.vue.js +18 -0
- package/src/components/icon/v3/icons/BullseyeArrow.vue.js +23 -0
- package/src/components/icon/v3/icons/Cached.vue.js +18 -0
- package/src/components/icon/v3/icons/Calendar.vue.js +23 -0
- package/src/components/icon/v3/icons/CalendarToday.vue.js +18 -0
- package/src/components/icon/v3/icons/Cancel.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartBar.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartLine.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartMixed.vue.js +20 -0
- package/src/components/icon/v3/icons/Check.vue.js +18 -0
- package/src/components/icon/v3/icons/Check2.vue.js +21 -0
- package/src/components/icon/v3/icons/CheckBold.vue.js +20 -0
- package/src/components/icon/v3/icons/CheckCircle.vue.js +21 -0
- package/src/components/icon/v3/icons/Close.vue.js +18 -0
- package/src/components/icon/v3/icons/CloseBold.vue.js +18 -0
- package/src/components/icon/v3/icons/ComputerMouse.vue.js +23 -0
- package/src/components/icon/v3/icons/CopyTo-Clipboard.vue.js +20 -0
- package/src/components/icon/v3/icons/CopyToClipboardFilled.vue.js +18 -0
- package/src/components/icon/v3/icons/Create.vue.js +20 -0
- package/src/components/icon/v3/icons/Creative.vue.js +20 -0
- package/src/components/icon/v3/icons/Cross.vue.js +20 -0
- package/src/components/icon/v3/icons/CrownFill.vue.js +18 -0
- package/src/components/icon/v3/icons/Cube.vue.js +21 -0
- package/src/components/icon/v3/icons/CubeBackground.vue.js +27 -0
- package/src/components/icon/v3/icons/Cup.vue.js +18 -0
- package/src/components/icon/v3/icons/CupA.vue.js +15 -0
- package/src/components/icon/v3/icons/CupB.vue.js +15 -0
- package/src/components/icon/v3/icons/Delete.vue.js +20 -0
- package/src/components/icon/v3/icons/Diamond.vue.js +18 -0
- package/src/components/icon/v3/icons/Dots.vue.js +20 -0
- package/src/components/icon/v3/icons/Download.vue.js +20 -0
- package/src/components/icon/v3/icons/Download2.vue.js +23 -0
- package/src/components/icon/v3/icons/DownloadDone.vue.js +20 -0
- package/src/components/icon/v3/icons/DragIndicator.vue.js +18 -0
- package/src/components/icon/v3/icons/Duplicate.vue.js +19 -0
- package/src/components/icon/v3/icons/Ecpi.vue.js +31 -0
- package/src/components/icon/v3/icons/Email.vue.js +20 -0
- package/src/components/icon/v3/icons/EmailEnvelope.vue.js +18 -0
- package/src/components/icon/v3/icons/Error.vue.js +20 -0
- package/src/components/icon/v3/icons/Eye.vue.js +22 -0
- package/src/components/icon/v3/icons/Eye2.vue.js +19 -0
- package/src/components/icon/v3/icons/EyeSlash.vue.js +21 -0
- package/src/components/icon/v3/icons/FavoriteBorder.vue.js +20 -0
- package/src/components/icon/v3/icons/Filter.vue.js +20 -0
- package/src/components/icon/v3/icons/FilterList.vue.js +18 -0
- package/src/components/icon/v3/icons/Frame.vue.js +20 -0
- package/src/components/icon/v3/icons/Fullscreen.vue.js +20 -0
- package/src/components/icon/v3/icons/FullscreenExit.vue.js +20 -0
- package/src/components/icon/v3/icons/Functions.vue.js +18 -0
- package/src/components/icon/v3/icons/GamepadAlt.vue.js +20 -0
- package/src/components/icon/v3/icons/Games.vue.js +20 -0
- package/src/components/icon/v3/icons/Gavel.vue.js +20 -0
- package/src/components/icon/v3/icons/Gift.vue.js +20 -0
- package/src/components/icon/v3/icons/GitHub.vue.js +20 -0
- package/src/components/icon/v3/icons/GlobeStand.vue.js +20 -0
- package/src/components/icon/v3/icons/GooglePlay.vue.js +18 -0
- package/src/components/icon/v3/icons/Group.vue.js +20 -0
- package/src/components/icon/v3/icons/Hammer.vue.js +20 -0
- package/src/components/icon/v3/icons/HandPointer.vue.js +22 -0
- package/src/components/icon/v3/icons/Hands.vue.js +20 -0
- package/src/components/icon/v3/icons/Heartbeat.vue.js +20 -0
- package/src/components/icon/v3/icons/Help.vue.js +20 -0
- package/src/components/icon/v3/icons/HelpOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/History.vue.js +18 -0
- package/src/components/icon/v3/icons/IOS.vue.js +20 -0
- package/src/components/icon/v3/icons/Image.vue.js +18 -0
- package/src/components/icon/v3/icons/ImageNotSupported.vue.js +23 -0
- package/src/components/icon/v3/icons/ImageSlash.vue.js +18 -0
- package/src/components/icon/v3/icons/ImportExport.vue.js +18 -0
- package/src/components/icon/v3/icons/ImportExport2.vue.js +18 -0
- package/src/components/icon/v3/icons/Importent.vue.js +20 -0
- package/src/components/icon/v3/icons/Info.vue.js +20 -0
- package/src/components/icon/v3/icons/Info2.vue.js +21 -0
- package/src/components/icon/v3/icons/InfoOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/Insights.vue.js +20 -0
- package/src/components/icon/v3/icons/Interstitial.vue.js +24 -0
- package/src/components/icon/v3/icons/Ios14.vue.js +20 -0
- package/src/components/icon/v3/icons/Js.vue.js +20 -0
- package/src/components/icon/v3/icons/Landscape.vue.js +18 -0
- package/src/components/icon/v3/icons/Launch.vue.js +18 -0
- package/src/components/icon/v3/icons/Levelplay.vue.js +32 -0
- package/src/components/icon/v3/icons/LimitCircle.vue.js +23 -0
- package/src/components/icon/v3/icons/LimitOctagon.vue.js +23 -0
- package/src/components/icon/v3/icons/Link.vue.js +18 -0
- package/src/components/icon/v3/icons/LoadingClean.vue.js +18 -0
- package/src/components/icon/v3/icons/Lock.vue.js +18 -0
- package/src/components/icon/v3/icons/LockOpen.vue.js +18 -0
- package/src/components/icon/v3/icons/Login.vue.js +18 -0
- package/src/components/icon/v3/icons/Logout.vue.js +18 -0
- package/src/components/icon/v3/icons/Marketing.vue.js +23 -0
- package/src/components/icon/v3/icons/MilitaryTech.vue.js +18 -0
- package/src/components/icon/v3/icons/Mix.vue.js +20 -0
- package/src/components/icon/v3/icons/Mix2.vue.js +24 -0
- package/src/components/icon/v3/icons/MobileLandscape.vue.js +20 -0
- package/src/components/icon/v3/icons/MobilePortrait.vue.js +20 -0
- package/src/components/icon/v3/icons/MoneyCheck.vue.js +22 -0
- package/src/components/icon/v3/icons/MoreHoriz.vue.js +20 -0
- package/src/components/icon/v3/icons/MoreVert.vue.js +20 -0
- package/src/components/icon/v3/icons/Mouse.vue.js +20 -0
- package/src/components/icon/v3/icons/MousePointer.vue.js +20 -0
- package/src/components/icon/v3/icons/MovingUp.vue.js +18 -0
- package/src/components/icon/v3/icons/NativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/NotificationsNone.vue.js +20 -0
- package/src/components/icon/v3/icons/Offerwall.vue.js +24 -0
- package/src/components/icon/v3/icons/Palyable.vue.js +18 -0
- package/src/components/icon/v3/icons/PaperPlane-Off.vue.js +20 -0
- package/src/components/icon/v3/icons/PaperPlane.vue.js +20 -0
- package/src/components/icon/v3/icons/Pause.vue.js +20 -0
- package/src/components/icon/v3/icons/PauseCircleFilled.vue.js +20 -0
- package/src/components/icon/v3/icons/PauseCircleOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/PhoneIphone.vue.js +18 -0
- package/src/components/icon/v3/icons/Photo.vue.js +23 -0
- package/src/components/icon/v3/icons/Photo2.vue.js +20 -0
- package/src/components/icon/v3/icons/PlayArrow.vue.js +18 -0
- package/src/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +20 -0
- package/src/components/icon/v3/icons/PlayCircleOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/Qrcode.vue.js +20 -0
- package/src/components/icon/v3/icons/Question.vue.js +21 -0
- package/src/components/icon/v3/icons/QuickAB.vue.js +15 -0
- package/src/components/icon/v3/icons/QuickAB2.vue.js +15 -0
- package/src/components/icon/v3/icons/React.vue.js +20 -0
- package/src/components/icon/v3/icons/Redo.vue.js +18 -0
- package/src/components/icon/v3/icons/Refresh.vue.js +18 -0
- package/src/components/icon/v3/icons/Remove.vue.js +18 -0
- package/src/components/icon/v3/icons/Replay.vue.js +18 -0
- package/src/components/icon/v3/icons/RewardedVideo.vue.js +24 -0
- package/src/components/icon/v3/icons/RocketLaunch.vue.js +18 -0
- package/src/components/icon/v3/icons/Rotate.vue.js +20 -0
- package/src/components/icon/v3/icons/Route.vue.js +20 -0
- package/src/components/icon/v3/icons/SackDollar.vue.js +23 -0
- package/src/components/icon/v3/icons/Schedule.vue.js +18 -0
- package/src/components/icon/v3/icons/Search.vue.js +18 -0
- package/src/components/icon/v3/icons/SearchBold.vue.js +20 -0
- package/src/components/icon/v3/icons/Share.vue.js +18 -0
- package/src/components/icon/v3/icons/Slack.vue.js +18 -0
- package/src/components/icon/v3/icons/SportsEsports.vue.js +18 -0
- package/src/components/icon/v3/icons/Star.vue.js +20 -0
- package/src/components/icon/v3/icons/StarFill.vue.js +20 -0
- package/src/components/icon/v3/icons/StatusBanner.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusInterstitial.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusNativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/StatusOfferwall.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusRewardedVideo.vue.js +26 -0
- package/src/components/icon/v3/icons/StopCircleFilled.vue.js +18 -0
- package/src/components/icon/v3/icons/StopCircleOutline.vue.js +18 -0
- package/src/components/icon/v3/icons/Style.vue.js +22 -0
- package/src/components/icon/v3/icons/Success.vue.js +20 -0
- package/src/components/icon/v3/icons/SuccessFull.vue.js +20 -0
- package/src/components/icon/v3/icons/Switch.vue.js +20 -0
- package/src/components/icon/v3/icons/TableEdit.vue.js +18 -0
- package/src/components/icon/v3/icons/TabletLandscape.vue.js +20 -0
- package/src/components/icon/v3/icons/TabletMac.vue.js +18 -0
- package/src/components/icon/v3/icons/TabletPortrait.vue.js +20 -0
- package/src/components/icon/v3/icons/Texture.vue.js +20 -0
- package/src/components/icon/v3/icons/ThemeDark.vue.js +18 -0
- package/src/components/icon/v3/icons/ThemeLight.vue.js +18 -0
- package/src/components/icon/v3/icons/Timelapse.vue.js +18 -0
- package/src/components/icon/v3/icons/Timeline.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingDown.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingFlat.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingUp.vue.js +18 -0
- package/src/components/icon/v3/icons/Tune.vue.js +20 -0
- package/src/components/icon/v3/icons/TwoToneBanner.vue.js +28 -0
- package/src/components/icon/v3/icons/TwoToneInterstitial.vue.js +28 -0
- package/src/components/icon/v3/icons/TwoToneNativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/TwoToneOfferwall.vue.js +24 -0
- package/src/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +30 -0
- package/src/components/icon/v3/icons/Undo.vue.js +18 -0
- package/src/components/icon/v3/icons/UnfoldLess.vue.js +20 -0
- package/src/components/icon/v3/icons/UnfoldMore.vue.js +20 -0
- package/src/components/icon/v3/icons/VerticalAlignTop.vue.js +18 -0
- package/src/components/icon/v3/icons/VerticalAlignTop2.vue.js +18 -0
- package/src/components/icon/v3/icons/Vibration.vue.js +20 -0
- package/src/components/icon/v3/icons/VideoRound.vue.js +20 -0
- package/src/components/icon/v3/icons/ViewCarousel.vue.js +18 -0
- package/src/components/icon/v3/icons/Visibility.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityOff.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityOffStrok.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityStrok.vue.js +18 -0
- package/src/components/icon/v3/icons/VolumeOff.vue.js +20 -0
- package/src/components/icon/v3/icons/VolumeUp.vue.js +20 -0
- package/src/components/icon/v3/icons/Warning.vue.js +18 -0
- package/src/components/icon/v3/icons/Warning2.vue.js +20 -0
- package/src/components/icon/v3/icons/Warning3.vue.js +21 -0
- package/src/components/icon/v3/icons/WarningCircle.vue.js +21 -0
- package/src/components/icon/v3/icons/WarningOctagon.vue.js +21 -0
- package/src/components/icon/v3/icons/WebApp.vue.js +18 -0
- package/src/components/icon/v3/icons/Widget.vue.js +22 -0
- package/src/components/icon/v3/icons/Widgets.vue.js +18 -0
- package/src/components/icon/v3/icons/WidgetsFill.vue.js +18 -0
- package/src/components/icon/v3/icons/WidgetsFlatSquares.vue.js +49 -0
- package/src/components/icon/v3/icons/Widgetsz.vue.js +25 -0
- package/src/components/icon/v3/icons/WifiProtectedSetup.vue.js +20 -0
- package/src/components/icon/v3/icons/index.js +698 -0
- package/src/components/icon/v4/IconV4.vue.js +7 -0
- package/src/components/icon/v4/IconV4.vue2.js +64 -0
- package/src/components/includeExclude/IncludeExclude.vue.js +7 -0
- package/src/components/includeExclude/IncludeExclude.vue2.js +431 -0
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue2.js +116 -0
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +109 -0
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue2.js +149 -0
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue2.js +466 -0
- package/src/components/includeExclude/IncludeExcludeOption.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeOption.vue2.js +115 -0
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +106 -0
- package/src/components/inlineCopy/InlineCopy.vue.js +7 -0
- package/src/components/inlineCopy/InlineCopy.vue2.js +60 -0
- package/src/components/input/v3/DollarInput.vue.js +7 -0
- package/src/components/input/v3/DollarInput.vue2.js +32 -0
- package/src/components/input/v3/Input.vue.js +7 -0
- package/src/components/input/v3/Input.vue2.js +211 -0
- package/src/components/input/v3/PasswordInput.vue.js +7 -0
- package/src/components/input/v3/PasswordInput.vue2.js +34 -0
- package/src/components/input/v3/PercentageInput.vue.js +7 -0
- package/src/components/input/v3/PercentageInput.vue2.js +32 -0
- package/src/components/input/v4/TextField.vue.js +7 -0
- package/src/components/input/v4/TextField.vue2.js +218 -0
- package/src/components/layout/CardPanel.vue.js +7 -0
- package/src/components/layout/CardPanel.vue2.js +25 -0
- package/src/components/layout/FoldableSection.vue.js +7 -0
- package/src/components/layout/FoldableSection.vue2.js +57 -0
- package/src/components/layout/FormCard.vue.js +7 -0
- package/src/components/layout/FormCard.vue2.js +74 -0
- package/src/components/layout/FormRow.vue.js +7 -0
- package/src/components/layout/FormRow.vue2.js +43 -0
- package/src/components/loader/v4/Loader.vue.js +7 -0
- package/src/components/loader/v4/Loader.vue2.js +48 -0
- package/src/components/menu/Menu.vue.js +8 -0
- package/src/components/menu/Menu.vue2.js +62 -0
- package/src/components/menuItem/MenuItem.vue.js +7 -0
- package/src/components/menuItem/MenuItem.vue2.js +23 -0
- package/src/components/multibar/MultiBar.vue.js +7 -0
- package/src/components/multibar/MultiBar.vue2.js +96 -0
- package/src/components/multibar/MultiBarMenu.vue.js +7 -0
- package/src/components/multibar/MultiBarMenu.vue2.js +51 -0
- package/src/components/popover/Popover.vue.js +8 -0
- package/src/components/popover/Popover.vue2.js +38 -0
- package/src/components/radioButton/v3/RadioButton.vue.js +7 -0
- package/src/components/radioButton/v3/RadioButton.vue2.js +79 -0
- package/src/components/radioButton/v3/RadioGroup.vue.js +7 -0
- package/src/components/radioButton/v3/RadioGroup.vue2.js +29 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
- package/src/components/search/v3/Search.vue.js +7 -0
- package/src/components/search/v3/Search.vue2.js +62 -0
- package/src/components/search/v4/SearchV4.vue.js +7 -0
- package/src/components/search/v4/SearchV4.vue2.js +58 -0
- package/src/components/shared/FieldHelpText.vue.js +7 -0
- package/src/components/shared/FieldHelpText.vue2.js +43 -0
- package/src/components/shared/FieldLabel.vue.js +7 -0
- package/src/components/shared/FieldLabel.vue2.js +61 -0
- package/src/components/skeleton/v3/Skeleton.vue.js +7 -0
- package/src/components/skeleton/v3/Skeleton.vue2.js +18 -0
- package/src/components/skeleton/v4/SkeletonV4.vue.js +7 -0
- package/src/components/skeleton/v4/SkeletonV4.vue2.js +23 -0
- package/src/components/snackbar/v3/Snackbar.vue.js +7 -0
- package/src/components/snackbar/v3/Snackbar.vue2.js +129 -0
- package/src/components/snackbar/v4/SnackbarV4.vue.js +7 -0
- package/src/components/snackbar/v4/SnackbarV4.vue2.js +138 -0
- package/src/components/switch/v3/Switch.vue.js +7 -0
- package/src/components/switch/v3/Switch.vue2.js +69 -0
- package/src/components/switch/v4/SwitchV4.vue.js +7 -0
- package/src/components/switch/v4/SwitchV4.vue2.js +69 -0
- package/src/components/table/v3/SortOrderIcon.vue.js +21 -0
- package/src/components/table/v3/Table.vue.js +7 -0
- package/src/components/table/v3/Table.vue2.js +248 -0
- package/src/components/table/v3/TableHeaderSorter.vue.js +7 -0
- package/src/components/table/v3/TableHeaderSorter.vue2.js +23 -0
- package/src/components/table/v4/DataGrid.vue.js +7 -0
- package/src/components/table/v4/DataGrid.vue2.js +313 -0
- package/src/components/table/v4/DataGridMenu.vue.js +7 -0
- package/src/components/table/v4/DataGridMenu.vue2.js +61 -0
- package/src/components/table/v4/DataGridRowsCounter.vue.js +7 -0
- package/src/components/table/v4/DataGridRowsCounter.vue2.js +42 -0
- package/src/components/table/v4/ExpandRowToggle.vue.js +7 -0
- package/src/components/table/v4/ExpandRowToggle.vue2.js +24 -0
- package/src/components/table/v4/SortIcon.vue.js +7 -0
- package/src/components/table/v4/SortIcon.vue2.js +24 -0
- package/src/components/table-cells/v3/Editable.vue.js +7 -0
- package/src/components/table-cells/v3/Editable.vue2.js +43 -0
- package/src/components/table-cells/v4/EditableV4.vue.js +7 -0
- package/src/components/table-cells/v4/EditableV4.vue2.js +45 -0
- package/src/components/tabs/v3/Tabs.vue.js +7 -0
- package/src/components/tabs/v3/Tabs.vue2.js +85 -0
- package/src/components/tabs/v4/TabsV4.vue.js +7 -0
- package/src/components/tabs/v4/TabsV4.vue2.js +75 -0
- package/src/components/textArea/TextArea.vue.js +7 -0
- package/src/components/textArea/TextArea.vue2.js +65 -0
- package/src/components/toggle/v3/Toggle.vue.js +7 -0
- package/src/components/toggle/v3/Toggle.vue2.js +95 -0
- package/src/components/toggle/v4/ToggleV4.vue.js +7 -0
- package/src/components/toggle/v4/ToggleV4.vue2.js +95 -0
- package/src/components/tooltip/v3/TextWithTitleContent.vue.js +7 -0
- package/src/components/tooltip/v3/TextWithTitleContent.vue2.js +46 -0
- package/src/components/tooltip/v3/Tooltip.vue.js +8 -0
- package/src/components/tooltip/v3/Tooltip.vue2.js +87 -0
- package/src/components/tooltip/v4/TextWithTitleContent.vue.js +7 -0
- package/src/components/tooltip/v4/TextWithTitleContent.vue2.js +36 -0
- package/src/components/tooltip/v4/TooltipV4.vue.js +8 -0
- package/src/components/tooltip/v4/TooltipV4.vue2.js +67 -0
- package/src/components/typography/Heading.vue.js +7 -0
- package/src/components/typography/Heading.vue2.js +25 -0
- package/src/components/typography/Text.vue.js +7 -0
- package/src/components/typography/Text.vue2.js +23 -0
- package/src/components/typography/v4/Typography.vue.js +7 -0
- package/src/components/typography/v4/Typography.vue2.js +58 -0
- package/src/index.js +195 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +0 -8
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +0 -22
- package/components/appHeader/AppHeader.vue.js +0 -7
- package/components/appHeader/AppHeader.vue2.js +0 -58
- package/components/appIcon/AppIcon.vue.js +0 -7
- package/components/appIcon/AppIcon.vue2.js +0 -35
- package/components/appTrigger/AppTrigger.vue.js +0 -7
- package/components/appTrigger/AppTrigger.vue2.js +0 -124
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +0 -120
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +0 -79
- package/components/autocompleteDropdown/GroupOption.vue.js +0 -7
- package/components/autocompleteDropdown/GroupOption.vue2.js +0 -35
- package/components/banner/Banner.vue.js +0 -7
- package/components/banner/Banner.vue2.js +0 -58
- package/components/button/v3/Button.vue.js +0 -7
- package/components/button/v3/Button.vue2.js +0 -59
- package/components/button/v3/ButtonBase.vue.js +0 -7
- package/components/button/v3/ButtonBase.vue2.js +0 -54
- package/components/button/v3/IconButton.vue.js +0 -7
- package/components/button/v3/IconButton.vue2.js +0 -45
- package/components/button/v3/LoaderCircleIcon.vue.js +0 -33
- package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
- package/components/button/v3/LoaderDotsIcon.vue.js +0 -16
- package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
- package/components/button/v3/ScrollButton.vue.js +0 -7
- package/components/button/v3/ScrollButton.vue2.js +0 -45
- package/components/button/v4/ButtonV4.vue.js +0 -7
- package/components/button/v4/ButtonV4.vue2.js +0 -90
- package/components/button/v4/IconButtonV4.vue.js +0 -7
- package/components/button/v4/IconButtonV4.vue2.js +0 -35
- package/components/checkbox/v3/Checkbox.vue.js +0 -7
- package/components/checkbox/v3/Checkbox.vue2.js +0 -99
- package/components/checkbox/v3/icons/checked.vue.js +0 -27
- package/components/checkbox/v3/icons/indeterminate.vue.js +0 -28
- package/components/checkbox/v3/icons/unchecked.vue.js +0 -24
- package/components/checkbox/v4/CheckboxV4.vue.js +0 -7
- package/components/checkbox/v4/CheckboxV4.vue2.js +0 -107
- package/components/checkbox/v4/icons/CheckedDisabledState.vue.js +0 -38
- package/components/checkbox/v4/icons/CheckedState.vue.js +0 -38
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +0 -40
- package/components/checkbox/v4/icons/IndeterminateState.vue.js +0 -40
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +0 -31
- package/components/checkbox/v4/icons/UncheckedState.vue.js +0 -31
- package/components/chip/v3/Chip.vue.js +0 -7
- package/components/chip/v3/Chip.vue2.js +0 -58
- package/components/chip/v4/ChipV4.vue.js +0 -7
- package/components/chip/v4/ChipV4.vue2.js +0 -67
- package/components/cssBaseline/CssBaseline.vue.js +0 -10
- package/components/cssBaseline/CssBaseline.vue2.js +0 -0
- package/components/datePicker/DatePicker.vue.js +0 -7
- package/components/datePicker/DatePicker.vue2.js +0 -97
- package/components/datePicker/DatePickerMonth.vue.js +0 -7
- package/components/datePicker/DatePickerMonth.vue2.js +0 -85
- package/components/dateRange/CalendarMonth.vue.js +0 -7
- package/components/dateRange/CalendarMonth.vue2.js +0 -244
- package/components/dateRange/DateRange.vue.js +0 -7
- package/components/dateRange/DateRange.vue2.js +0 -417
- package/components/dialog/v3/Dialog.vue.js +0 -7
- package/components/dialog/v3/Dialog.vue2.js +0 -137
- package/components/dialog/v4/DialogV4.vue.js +0 -7
- package/components/dialog/v4/DialogV4.vue2.js +0 -150
- package/components/dropdown/v3/Dropdown.vue.js +0 -8
- package/components/dropdown/v3/Dropdown.vue2.js +0 -394
- package/components/dropdown/v3/Label.vue.js +0 -7
- package/components/dropdown/v3/Label.vue2.js +0 -36
- package/components/dropdown/v3/Option.vue.js +0 -7
- package/components/dropdown/v3/Option.vue2.js +0 -94
- package/components/dropdown/v3/SearchInput.vue.js +0 -7
- package/components/dropdown/v3/SearchInput.vue2.js +0 -82
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +0 -142
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +0 -73
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +0 -114
- package/components/dropdown/v4/DropdownV4.vue.js +0 -8
- package/components/dropdown/v4/DropdownV4.vue2.js +0 -382
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +0 -19
- package/components/dropdown/v4/OptionV4.vue.js +0 -7
- package/components/dropdown/v4/OptionV4.vue2.js +0 -112
- package/components/emptyState/v3/EmptyState.vue.js +0 -7
- package/components/emptyState/v3/EmptyState.vue2.js +0 -91
- package/components/emptyState/v3/EmptyStateIcon.vue.js +0 -35
- package/components/emptyState/v3/EmptyStateIcon.vue2.js +0 -0
- package/components/emptyState/v4/EmptyStateV4.vue.js +0 -7
- package/components/emptyState/v4/EmptyStateV4.vue2.js +0 -66
- package/components/emptyState/v4/icons/IconError.vue.js +0 -16
- package/components/emptyState/v4/icons/IconFiles.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoAccess.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoData.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoResults.vue.js +0 -16
- package/components/emptyState/v4/icons/IconSettings.vue.js +0 -16
- package/components/filterDropdown/AddFilterButton.vue.js +0 -7
- package/components/filterDropdown/AddFilterButton.vue2.js +0 -50
- package/components/filterDropdown/FilterDropdown.vue.js +0 -7
- package/components/filterDropdown/FilterDropdown.vue2.js +0 -56
- package/components/filtersPanel/v3/FilterSearchInput.vue.js +0 -7
- package/components/filtersPanel/v3/FilterSearchInput.vue2.js +0 -45
- package/components/filtersPanel/v3/FiltersPanel.vue.js +0 -7
- package/components/filtersPanel/v3/FiltersPanel.vue2.js +0 -40
- package/components/filtersPanel/v4/FiltersPanelV4.vue.js +0 -7
- package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +0 -23
- package/components/floatingToolbar/FloatingToolbar.vue.js +0 -7
- package/components/floatingToolbar/FloatingToolbar.vue2.js +0 -70
- package/components/forms/FormContainer.vue.d.ts +0 -9
- package/components/forms/validation/utils/useConvertErrorsSchema.d.ts +0 -1
- package/components/icon/v3/Icon.vue.js +0 -7
- package/components/icon/v3/Icon.vue2.js +0 -38
- package/components/icon/v3/icons/A.vue.js +0 -24
- package/components/icon/v3/icons/A2.vue.js +0 -18
- package/components/icon/v3/icons/ABTest.vue.js +0 -20
- package/components/icon/v3/icons/ABTest2.vue.js +0 -15
- package/components/icon/v3/icons/ACircle.vue.js +0 -20
- package/components/icon/v3/icons/AccountBalanceWallet.vue.js +0 -22
- package/components/icon/v3/icons/AccountCircle.vue.js +0 -20
- package/components/icon/v3/icons/AccountCircleOutline.vue.js +0 -18
- package/components/icon/v3/icons/Add.vue.js +0 -18
- package/components/icon/v3/icons/Adjust.vue.js +0 -43
- package/components/icon/v3/icons/Analytics.vue.js +0 -18
- package/components/icon/v3/icons/Android.vue.js +0 -20
- package/components/icon/v3/icons/AngleDown.vue.js +0 -20
- package/components/icon/v3/icons/AngleLeft.vue.js +0 -20
- package/components/icon/v3/icons/AngleRight.vue.js +0 -20
- package/components/icon/v3/icons/AngleUp.vue.js +0 -20
- package/components/icon/v3/icons/AppStore.vue.js +0 -21
- package/components/icon/v3/icons/AreaChart.vue.js +0 -18
- package/components/icon/v3/icons/ArrowBack.vue.js +0 -18
- package/components/icon/v3/icons/ArrowDownward.vue.js +0 -18
- package/components/icon/v3/icons/ArrowForward.vue.js +0 -18
- package/components/icon/v3/icons/ArrowLeft.vue.js +0 -18
- package/components/icon/v3/icons/ArrowRight.vue.js +0 -18
- package/components/icon/v3/icons/ArrowSort-Down.vue.js +0 -20
- package/components/icon/v3/icons/ArrowSort-Up.vue.js +0 -20
- package/components/icon/v3/icons/ArrowUpward.vue.js +0 -18
- package/components/icon/v3/icons/AutoAwesome.vue.js +0 -18
- package/components/icon/v3/icons/AutoMode.vue.js +0 -20
- package/components/icon/v3/icons/Autorenew.vue.js +0 -18
- package/components/icon/v3/icons/B.vue.js +0 -24
- package/components/icon/v3/icons/B2.vue.js +0 -18
- package/components/icon/v3/icons/BCircle.vue.js +0 -20
- package/components/icon/v3/icons/Banner.vue.js +0 -24
- package/components/icon/v3/icons/Bidding.vue.js +0 -32
- package/components/icon/v3/icons/Bidding2.vue.js +0 -32
- package/components/icon/v3/icons/Block.vue.js +0 -18
- package/components/icon/v3/icons/BorderColor.vue.js +0 -20
- package/components/icon/v3/icons/Bug.vue.js +0 -20
- package/components/icon/v3/icons/Bullhorn.vue.js +0 -18
- package/components/icon/v3/icons/BullseyeArrow.vue.js +0 -23
- package/components/icon/v3/icons/Cached.vue.js +0 -18
- package/components/icon/v3/icons/Calendar.vue.js +0 -23
- package/components/icon/v3/icons/CalendarToday.vue.js +0 -18
- package/components/icon/v3/icons/Cancel.vue.js +0 -20
- package/components/icon/v3/icons/ChartBar.vue.js +0 -20
- package/components/icon/v3/icons/ChartLine.vue.js +0 -20
- package/components/icon/v3/icons/ChartMixed.vue.js +0 -20
- package/components/icon/v3/icons/Check.vue.js +0 -18
- package/components/icon/v3/icons/Check2.vue.js +0 -21
- package/components/icon/v3/icons/CheckBold.vue.js +0 -20
- package/components/icon/v3/icons/CheckCircle.vue.js +0 -21
- package/components/icon/v3/icons/Close.vue.js +0 -18
- package/components/icon/v3/icons/CloseBold.vue.js +0 -18
- package/components/icon/v3/icons/ComputerMouse.vue.js +0 -23
- package/components/icon/v3/icons/CopyTo-Clipboard.vue.js +0 -20
- package/components/icon/v3/icons/CopyToClipboardFilled.vue.js +0 -18
- package/components/icon/v3/icons/Create.vue.js +0 -20
- package/components/icon/v3/icons/Creative.vue.js +0 -20
- package/components/icon/v3/icons/Cross.vue.js +0 -20
- package/components/icon/v3/icons/CrownFill.vue.js +0 -18
- package/components/icon/v3/icons/Cube.vue.js +0 -21
- package/components/icon/v3/icons/CubeBackground.vue.js +0 -27
- package/components/icon/v3/icons/Cup.vue.js +0 -18
- package/components/icon/v3/icons/CupA.vue.js +0 -15
- package/components/icon/v3/icons/CupB.vue.js +0 -15
- package/components/icon/v3/icons/Delete.vue.js +0 -20
- package/components/icon/v3/icons/Diamond.vue.js +0 -18
- package/components/icon/v3/icons/Dots.vue.js +0 -20
- package/components/icon/v3/icons/Download.vue.js +0 -20
- package/components/icon/v3/icons/Download2.vue.js +0 -23
- package/components/icon/v3/icons/DownloadDone.vue.js +0 -20
- package/components/icon/v3/icons/DragIndicator.vue.js +0 -18
- package/components/icon/v3/icons/Ecpi.vue.js +0 -31
- package/components/icon/v3/icons/Email.vue.js +0 -20
- package/components/icon/v3/icons/EmailEnvelope.vue.js +0 -18
- package/components/icon/v3/icons/Error.vue.js +0 -20
- package/components/icon/v3/icons/Eye.vue.js +0 -22
- package/components/icon/v3/icons/Eye2.vue.js +0 -19
- package/components/icon/v3/icons/EyeSlash.vue.js +0 -21
- package/components/icon/v3/icons/FavoriteBorder.vue.js +0 -20
- package/components/icon/v3/icons/Filter.vue.js +0 -20
- package/components/icon/v3/icons/FilterList.vue.js +0 -18
- package/components/icon/v3/icons/Frame.vue.js +0 -20
- package/components/icon/v3/icons/Fullscreen.vue.js +0 -20
- package/components/icon/v3/icons/FullscreenExit.vue.js +0 -20
- package/components/icon/v3/icons/Functions.vue.js +0 -18
- package/components/icon/v3/icons/GamepadAlt.vue.js +0 -20
- package/components/icon/v3/icons/Games.vue.js +0 -20
- package/components/icon/v3/icons/Gavel.vue.js +0 -20
- package/components/icon/v3/icons/Gift.vue.js +0 -20
- package/components/icon/v3/icons/GitHub.vue.js +0 -20
- package/components/icon/v3/icons/GlobeStand.vue.js +0 -20
- package/components/icon/v3/icons/GooglePlay.vue.js +0 -18
- package/components/icon/v3/icons/Group.vue.js +0 -20
- package/components/icon/v3/icons/Hammer.vue.js +0 -20
- package/components/icon/v3/icons/HandPointer.vue.js +0 -22
- package/components/icon/v3/icons/Hands.vue.js +0 -20
- package/components/icon/v3/icons/Heartbeat.vue.js +0 -20
- package/components/icon/v3/icons/Help.vue.js +0 -20
- package/components/icon/v3/icons/HelpOutline.vue.js +0 -20
- package/components/icon/v3/icons/History.vue.js +0 -18
- package/components/icon/v3/icons/IOS.vue.js +0 -20
- package/components/icon/v3/icons/Image.vue.js +0 -18
- package/components/icon/v3/icons/ImageNotSupported.vue.js +0 -23
- package/components/icon/v3/icons/ImageSlash.vue.js +0 -18
- package/components/icon/v3/icons/ImportExport.vue.js +0 -18
- package/components/icon/v3/icons/ImportExport2.vue.js +0 -18
- package/components/icon/v3/icons/Importent.vue.js +0 -20
- package/components/icon/v3/icons/Info.vue.js +0 -20
- package/components/icon/v3/icons/Info2.vue.js +0 -21
- package/components/icon/v3/icons/InfoOutline.vue.js +0 -20
- package/components/icon/v3/icons/Insights.vue.js +0 -20
- package/components/icon/v3/icons/Interstitial.vue.js +0 -24
- package/components/icon/v3/icons/Ios14.vue.js +0 -20
- package/components/icon/v3/icons/Js.vue.js +0 -20
- package/components/icon/v3/icons/Landscape.vue.js +0 -18
- package/components/icon/v3/icons/Launch.vue.js +0 -18
- package/components/icon/v3/icons/Levelplay.vue.js +0 -32
- package/components/icon/v3/icons/LimitCircle.vue.js +0 -23
- package/components/icon/v3/icons/LimitOctagon.vue.js +0 -23
- package/components/icon/v3/icons/Link.vue.js +0 -18
- package/components/icon/v3/icons/LoadingClean.vue.js +0 -18
- package/components/icon/v3/icons/Lock.vue.js +0 -18
- package/components/icon/v3/icons/LockOpen.vue.js +0 -18
- package/components/icon/v3/icons/Login.vue.js +0 -18
- package/components/icon/v3/icons/Logout.vue.js +0 -18
- package/components/icon/v3/icons/Marketing.vue.js +0 -23
- package/components/icon/v3/icons/MilitaryTech.vue.js +0 -18
- package/components/icon/v3/icons/Mix.vue.js +0 -20
- package/components/icon/v3/icons/Mix2.vue.js +0 -24
- package/components/icon/v3/icons/MobileLandscape.vue.js +0 -20
- package/components/icon/v3/icons/MobilePortrait.vue.js +0 -20
- package/components/icon/v3/icons/MoneyCheck.vue.js +0 -22
- package/components/icon/v3/icons/MoreHoriz.vue.js +0 -20
- package/components/icon/v3/icons/MoreVert.vue.js +0 -20
- package/components/icon/v3/icons/Mouse.vue.js +0 -20
- package/components/icon/v3/icons/MousePointer.vue.js +0 -20
- package/components/icon/v3/icons/MovingUp.vue.js +0 -18
- package/components/icon/v3/icons/NativeAd.vue.js +0 -15
- package/components/icon/v3/icons/NotificationsNone.vue.js +0 -20
- package/components/icon/v3/icons/Offerwall.vue.js +0 -24
- package/components/icon/v3/icons/Palyable.vue.js +0 -18
- package/components/icon/v3/icons/PaperPlane-Off.vue.js +0 -20
- package/components/icon/v3/icons/PaperPlane.vue.js +0 -20
- package/components/icon/v3/icons/Pause.vue.js +0 -20
- package/components/icon/v3/icons/PauseCircleFilled.vue.js +0 -20
- package/components/icon/v3/icons/PauseCircleOutline.vue.js +0 -20
- package/components/icon/v3/icons/PhoneIphone.vue.js +0 -18
- package/components/icon/v3/icons/Photo.vue.js +0 -23
- package/components/icon/v3/icons/Photo2.vue.js +0 -20
- package/components/icon/v3/icons/PlayArrow.vue.js +0 -18
- package/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +0 -20
- package/components/icon/v3/icons/PlayCircleOutline.vue.js +0 -20
- package/components/icon/v3/icons/Qrcode.vue.js +0 -20
- package/components/icon/v3/icons/Question.vue.js +0 -21
- package/components/icon/v3/icons/QuickAB.vue.js +0 -15
- package/components/icon/v3/icons/QuickAB2.vue.js +0 -15
- package/components/icon/v3/icons/React.vue.js +0 -20
- package/components/icon/v3/icons/Redo.vue.js +0 -18
- package/components/icon/v3/icons/Refresh.vue.js +0 -18
- package/components/icon/v3/icons/Remove.vue.js +0 -18
- package/components/icon/v3/icons/Replay.vue.js +0 -18
- package/components/icon/v3/icons/RewardedVideo.vue.js +0 -24
- package/components/icon/v3/icons/RocketLaunch.vue.js +0 -18
- package/components/icon/v3/icons/Rotate.vue.js +0 -20
- package/components/icon/v3/icons/Route.vue.js +0 -20
- package/components/icon/v3/icons/SackDollar.vue.js +0 -23
- package/components/icon/v3/icons/Schedule.vue.js +0 -18
- package/components/icon/v3/icons/Search.vue.js +0 -18
- package/components/icon/v3/icons/SearchBold.vue.js +0 -20
- package/components/icon/v3/icons/Share.vue.js +0 -18
- package/components/icon/v3/icons/Slack.vue.js +0 -18
- package/components/icon/v3/icons/SportsEsports.vue.js +0 -18
- package/components/icon/v3/icons/Star.vue.js +0 -20
- package/components/icon/v3/icons/StarFill.vue.js +0 -20
- package/components/icon/v3/icons/StatusBanner.vue.js +0 -26
- package/components/icon/v3/icons/StatusInterstitial.vue.js +0 -26
- package/components/icon/v3/icons/StatusNativeAd.vue.js +0 -15
- package/components/icon/v3/icons/StatusOfferwall.vue.js +0 -26
- package/components/icon/v3/icons/StatusRewardedVideo.vue.js +0 -26
- package/components/icon/v3/icons/StopCircleFilled.vue.js +0 -18
- package/components/icon/v3/icons/StopCircleOutline.vue.js +0 -18
- package/components/icon/v3/icons/Style.vue.js +0 -22
- package/components/icon/v3/icons/Success.vue.js +0 -20
- package/components/icon/v3/icons/SuccessFull.vue.js +0 -20
- package/components/icon/v3/icons/Switch.vue.js +0 -20
- package/components/icon/v3/icons/TableEdit.vue.js +0 -18
- package/components/icon/v3/icons/TabletLandscape.vue.js +0 -20
- package/components/icon/v3/icons/TabletMac.vue.js +0 -18
- package/components/icon/v3/icons/TabletPortrait.vue.js +0 -20
- package/components/icon/v3/icons/Texture.vue.js +0 -20
- package/components/icon/v3/icons/ThemeDark.vue.js +0 -18
- package/components/icon/v3/icons/ThemeLight.vue.js +0 -18
- package/components/icon/v3/icons/Timelapse.vue.js +0 -18
- package/components/icon/v3/icons/Timeline.vue.js +0 -18
- package/components/icon/v3/icons/TrendingDown.vue.js +0 -18
- package/components/icon/v3/icons/TrendingFlat.vue.js +0 -18
- package/components/icon/v3/icons/TrendingUp.vue.js +0 -18
- package/components/icon/v3/icons/Tune.vue.js +0 -20
- package/components/icon/v3/icons/TwoToneBanner.vue.js +0 -28
- package/components/icon/v3/icons/TwoToneInterstitial.vue.js +0 -28
- package/components/icon/v3/icons/TwoToneNativeAd.vue.js +0 -15
- package/components/icon/v3/icons/TwoToneOfferwall.vue.js +0 -24
- package/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +0 -30
- package/components/icon/v3/icons/Undo.vue.js +0 -18
- package/components/icon/v3/icons/UnfoldLess.vue.js +0 -20
- package/components/icon/v3/icons/UnfoldMore.vue.js +0 -20
- package/components/icon/v3/icons/VerticalAlignTop.vue.js +0 -18
- package/components/icon/v3/icons/VerticalAlignTop2.vue.js +0 -18
- package/components/icon/v3/icons/Vibration.vue.js +0 -20
- package/components/icon/v3/icons/VideoRound.vue.js +0 -20
- package/components/icon/v3/icons/ViewCarousel.vue.js +0 -18
- package/components/icon/v3/icons/Visibility.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityOff.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityOffStrok.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityStrok.vue.js +0 -18
- package/components/icon/v3/icons/VolumeOff.vue.js +0 -20
- package/components/icon/v3/icons/VolumeUp.vue.js +0 -20
- package/components/icon/v3/icons/Warning.vue.js +0 -18
- package/components/icon/v3/icons/Warning2.vue.js +0 -20
- package/components/icon/v3/icons/Warning3.vue.js +0 -21
- package/components/icon/v3/icons/WarningCircle.vue.js +0 -21
- package/components/icon/v3/icons/WarningOctagon.vue.js +0 -21
- package/components/icon/v3/icons/WebApp.vue.js +0 -18
- package/components/icon/v3/icons/Widget.vue.js +0 -22
- package/components/icon/v3/icons/Widgets.vue.js +0 -18
- package/components/icon/v3/icons/WidgetsFill.vue.js +0 -18
- package/components/icon/v3/icons/WidgetsFlatSquares.vue.js +0 -49
- package/components/icon/v3/icons/Widgetsz.vue.js +0 -25
- package/components/icon/v3/icons/WifiProtectedSetup.vue.js +0 -20
- package/components/icon/v3/icons/index.js +0 -695
- package/components/icon/v4/IconV4.vue.js +0 -7
- package/components/icon/v4/IconV4.vue2.js +0 -64
- package/components/includeExclude/IncludeExclude.vue.js +0 -7
- package/components/includeExclude/IncludeExclude.vue2.js +0 -431
- package/components/includeExclude/IncludeExcludeAppHeader.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +0 -116
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +0 -109
- package/components/includeExclude/IncludeExcludeChipFilter.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +0 -149
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +0 -466
- package/components/includeExclude/IncludeExcludeOption.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeOption.vue2.js +0 -115
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +0 -106
- package/components/inlineCopy/InlineCopy.vue.js +0 -7
- package/components/inlineCopy/InlineCopy.vue2.js +0 -60
- package/components/input/v3/DollarInput.vue.js +0 -7
- package/components/input/v3/DollarInput.vue2.js +0 -32
- package/components/input/v3/Input.vue.js +0 -7
- package/components/input/v3/Input.vue2.js +0 -211
- package/components/input/v3/PasswordInput.vue.js +0 -7
- package/components/input/v3/PasswordInput.vue2.js +0 -34
- package/components/input/v3/PercentageInput.vue.js +0 -7
- package/components/input/v3/PercentageInput.vue2.js +0 -32
- package/components/input/v4/TextField.vue.js +0 -7
- package/components/input/v4/TextField.vue2.js +0 -218
- package/components/layout/CardPanel.vue.js +0 -7
- package/components/layout/CardPanel.vue2.js +0 -25
- package/components/layout/FoldableSection.vue.js +0 -7
- package/components/layout/FoldableSection.vue2.js +0 -57
- package/components/layout/FormCard.vue.js +0 -7
- package/components/layout/FormCard.vue2.js +0 -74
- package/components/layout/FormRow.vue.js +0 -7
- package/components/layout/FormRow.vue2.js +0 -43
- package/components/loader/v4/Loader.vue.js +0 -7
- package/components/loader/v4/Loader.vue2.js +0 -48
- package/components/menu/Menu.vue.js +0 -8
- package/components/menu/Menu.vue2.js +0 -62
- package/components/menuItem/MenuItem.vue.js +0 -7
- package/components/menuItem/MenuItem.vue2.js +0 -23
- package/components/multibar/MultiBar.vue.js +0 -7
- package/components/multibar/MultiBar.vue2.js +0 -96
- package/components/multibar/MultiBarMenu.vue.js +0 -7
- package/components/multibar/MultiBarMenu.vue2.js +0 -51
- package/components/popover/Popover.vue.js +0 -8
- package/components/popover/Popover.vue2.js +0 -38
- package/components/radioButton/v3/RadioButton.vue.js +0 -7
- package/components/radioButton/v3/RadioButton.vue2.js +0 -79
- package/components/radioButton/v3/RadioGroup.vue.js +0 -7
- package/components/radioButton/v3/RadioGroup.vue2.js +0 -29
- package/components/radioButton/v4/RadioButtonV4.vue.js +0 -7
- package/components/radioButton/v4/RadioButtonV4.vue2.js +0 -67
- package/components/radioButton/v4/RadioGroupV4.vue.js +0 -7
- package/components/radioButton/v4/RadioGroupV4.vue2.js +0 -29
- package/components/search/v3/Search.vue.js +0 -7
- package/components/search/v3/Search.vue2.js +0 -62
- package/components/search/v4/SearchV4.vue.js +0 -7
- package/components/search/v4/SearchV4.vue2.js +0 -58
- package/components/shared/FieldHelpText.vue.js +0 -7
- package/components/shared/FieldHelpText.vue2.js +0 -43
- package/components/shared/FieldLabel.vue.js +0 -7
- package/components/shared/FieldLabel.vue2.js +0 -61
- package/components/skeleton/v3/Skeleton.vue.js +0 -7
- package/components/skeleton/v3/Skeleton.vue2.js +0 -18
- package/components/skeleton/v4/SkeletonV4.vue.js +0 -7
- package/components/skeleton/v4/SkeletonV4.vue2.js +0 -23
- package/components/snackbar/v3/Snackbar.vue.js +0 -7
- package/components/snackbar/v3/Snackbar.vue2.js +0 -129
- package/components/snackbar/v4/SnackbarV4.vue.js +0 -7
- package/components/snackbar/v4/SnackbarV4.vue2.js +0 -138
- package/components/switch/v3/Switch.vue.js +0 -7
- package/components/switch/v3/Switch.vue2.js +0 -69
- package/components/switch/v4/SwitchV4.vue.js +0 -7
- package/components/switch/v4/SwitchV4.vue2.js +0 -69
- package/components/table/v3/SortOrderIcon.vue.js +0 -21
- package/components/table/v3/SortOrderIcon.vue2.js +0 -0
- package/components/table/v3/Table.vue.js +0 -7
- package/components/table/v3/Table.vue2.js +0 -248
- package/components/table/v3/TableHeaderSorter.vue.js +0 -7
- package/components/table/v3/TableHeaderSorter.vue2.js +0 -23
- package/components/table/v4/DataGrid.vue.js +0 -7
- package/components/table/v4/DataGrid.vue2.js +0 -313
- package/components/table/v4/DataGridMenu.vue.js +0 -7
- package/components/table/v4/DataGridMenu.vue2.js +0 -61
- package/components/table/v4/DataGridRowsCounter.vue.js +0 -7
- package/components/table/v4/DataGridRowsCounter.vue2.js +0 -42
- package/components/table/v4/ExpandRowToggle.vue.js +0 -7
- package/components/table/v4/ExpandRowToggle.vue2.js +0 -24
- package/components/table/v4/SortIcon.vue.js +0 -7
- package/components/table/v4/SortIcon.vue2.js +0 -24
- package/components/table-cells/v3/Editable.vue.js +0 -7
- package/components/table-cells/v3/Editable.vue2.js +0 -43
- package/components/table-cells/v4/EditableV4.vue.js +0 -7
- package/components/table-cells/v4/EditableV4.vue2.js +0 -45
- package/components/tabs/v3/Tabs.vue.js +0 -7
- package/components/tabs/v3/Tabs.vue2.js +0 -85
- package/components/tabs/v4/TabsV4.vue.js +0 -7
- package/components/tabs/v4/TabsV4.vue2.js +0 -75
- package/components/textArea/TextArea.vue.js +0 -7
- package/components/textArea/TextArea.vue2.js +0 -65
- package/components/toggle/v3/Toggle.vue.js +0 -7
- package/components/toggle/v3/Toggle.vue2.js +0 -95
- package/components/toggle/v4/ToggleV4.vue.js +0 -7
- package/components/toggle/v4/ToggleV4.vue2.js +0 -95
- package/components/tooltip/v3/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v3/TextWithTitleContent.vue2.js +0 -46
- package/components/tooltip/v3/Tooltip.vue.js +0 -8
- package/components/tooltip/v3/Tooltip.vue2.js +0 -87
- package/components/tooltip/v4/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v4/TextWithTitleContent.vue2.js +0 -36
- package/components/tooltip/v4/TooltipV4.vue.js +0 -8
- package/components/tooltip/v4/TooltipV4.vue2.js +0 -67
- package/components/typography/Heading.vue.js +0 -7
- package/components/typography/Heading.vue2.js +0 -25
- package/components/typography/Text.vue.js +0 -7
- package/components/typography/Text.vue2.js +0 -23
- package/components/typography/v4/Typography.vue.js +0 -7
- package/components/typography/v4/Typography.vue2.js +0 -58
- package/index.js +0 -189
- /package/{components → src/components}/ThemeWrapper/ThemeStrore.js +0 -0
- /package/{components → src/components}/ThemeWrapper/index.js +0 -0
- /package/{components → src/components}/appHeader/index.js +0 -0
- /package/{components → src/components}/appIcon/index.js +0 -0
- /package/{components → src/components}/appTrigger/index.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/consts.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/index.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/useKeyboardNavigation.js +0 -0
- /package/{components → src/components}/banner/index.js +0 -0
- /package/{components → src/components}/button/common/consts.js +0 -0
- /package/{components → src/components}/button/v3/index.js +0 -0
- /package/{components → src/components}/button/v4/index.js +0 -0
- /package/{components → src/components}/checkbox/common/Checkbox.common.js +0 -0
- /package/{components → src/components}/checkbox/v3/index.js +0 -0
- /package/{components → src/components}/checkbox/v4/index.js +0 -0
- /package/{components → src/components}/chip/v3/index.js +0 -0
- /package/{components → src/components}/chip/v4/index.js +0 -0
- /package/{components → src/components}/cssBaseline/index.js +0 -0
- /package/{components → src/components}/datePicker/index.js +0 -0
- /package/{components → src/components}/dateRange/DateServices.js +0 -0
- /package/{components → src/components}/dateRange/consts.js +0 -0
- /package/{components → src/components}/dateRange/index.js +0 -0
- /package/{components → src/components}/dialog/common/Dialog.common.js +0 -0
- /package/{components → src/components}/dialog/common/Reason.js +0 -0
- /package/{components → src/components}/dialog/v3/index.js +0 -0
- /package/{components → src/components}/dialog/v4/index.js +0 -0
- /package/{components → src/components}/dropdown/common/Dropdown.common.js +0 -0
- /package/{components → src/components}/dropdown/common/DropdownContext.js +0 -0
- /package/{components → src/components}/dropdown/common/Option.common.js +0 -0
- /package/{components → src/components}/dropdown/v3/index.js +0 -0
- /package/{components → src/components}/dropdown/v4/Dropdown.types.js +0 -0
- /package/{components → src/components}/dropdown/v4/index.js +0 -0
- /package/{components → src/components}/emptyState/v3/index.js +0 -0
- /package/{components → src/components}/emptyState/v4/index.js +0 -0
- /package/{components → src/components}/filterDropdown/index.js +0 -0
- /package/{components → src/components}/filtersPanel/v3/index.js +0 -0
- /package/{components → src/components}/filtersPanel/v3/useHiddenFilter.js +0 -0
- /package/{components → src/components}/filtersPanel/v4/index.js +0 -0
- /package/{components → src/components}/floatingToolbar/index.js +0 -0
- /package/{components → src/components}/icon/v3/index.js +0 -0
- /package/{components → src/components}/icon/v4/index.js +0 -0
- /package/{components → src/components}/includeExclude/IncludeExcludeContext.js +0 -0
- /package/{components → src/components}/includeExclude/index.js +0 -0
- /package/{components → src/components}/inlineCopy/index.js +0 -0
- /package/{components → src/components}/input/common/Input.common.js +0 -0
- /package/{components → src/components}/input/v3/index.js +0 -0
- /package/{components → src/components}/input/v4/index.js +0 -0
- /package/{components → src/components}/layout/index.js +0 -0
- /package/{components → src/components}/menu/index.js +0 -0
- /package/{components → src/components}/menuItem/index.js +0 -0
- /package/{components → src/components}/multibar/index.js +0 -0
- /package/{components → src/components}/popover/index.js +0 -0
- /package/{components → src/components}/radioButton/common/radioGroup.common.js +0 -0
- /package/{components → src/components}/radioButton/common/useRadio.js +0 -0
- /package/{components → src/components}/radioButton/v3/index.js +0 -0
- /package/{components → src/components}/radioButton/v4/index.js +0 -0
- /package/{components → src/components}/search/common/Search.common.js +0 -0
- /package/{components → src/components}/search/v3/index.js +0 -0
- /package/{components → src/components}/search/v4/index.js +0 -0
- /package/{components → src/components}/skeleton/v3/index.js +0 -0
- /package/{components → src/components}/skeleton/v4/index.js +0 -0
- /package/{components → src/components}/snackbar/common/notify.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.common.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.types.js +0 -0
- /package/{components → src/components}/snackbar/v3/index.js +0 -0
- /package/{components → src/components}/snackbar/v4/index.js +0 -0
- /package/{components → src/components}/switch/v3/index.js +0 -0
- /package/{components → src/components}/switch/v4/index.js +0 -0
- /package/{components → src/components}/table/common/Table.common.js +0 -0
- /package/{components → src/components}/table/common/TableContext.js +0 -0
- /package/{components → src/components}/table/v3/index.js +0 -0
- /package/{components → src/components}/table/v4/index.js +0 -0
- /package/{components → src/components}/table-cells/common/Editable.common.js +0 -0
- /package/{components → src/components}/table-cells/common/EditableContext.js +0 -0
- /package/{components → src/components}/table-cells/v3/index.js +0 -0
- /package/{components → src/components}/table-cells/v4/index.js +0 -0
- /package/{components → src/components}/tabs/common/tabsCommon.js +0 -0
- /package/{components → src/components}/tabs/v3/index.js +0 -0
- /package/{components → src/components}/tabs/v4/index.js +0 -0
- /package/{components → src/components}/textArea/index.js +0 -0
- /package/{components → src/components}/toggle/v3/index.js +0 -0
- /package/{components → src/components}/toggle/v4/index.js +0 -0
- /package/{components → src/components}/tooltip/common/Tooltip.common.js +0 -0
- /package/{components → src/components}/tooltip/v3/index.js +0 -0
- /package/{components → src/components}/tooltip/v4/index.js +0 -0
- /package/{components → src/components}/typography/index.js +0 -0
- /package/{components → src/components}/typography/v4/index.js +0 -0
- /package/{composables → src/composables}/useId.js +0 -0
- /package/{composables → src/composables}/useIsFocusVisible.js +0 -0
- /package/{composables → src/composables}/useSearch.js +0 -0
- /package/{composables → src/composables}/useStorage.js +0 -0
- /package/{composables → src/composables}/useToggle.js +0 -0
- /package/{consts → src/consts}/colors.js +0 -0
- /package/{consts → src/consts}/regex.js +0 -0
- /package/{consts → src/consts}/style.js +0 -0
- /package/{testids → src/testids}/index.js +0 -0
- /package/{utils → src/utils}/array.js +0 -0
- /package/{utils → src/utils}/object.js +0 -0
- /package/{utils → src/utils}/string.js +0 -0
- /package/{utils → src/utils}/style.js +0 -0
- /package/{utils → src/utils}/testIds.js +0 -0
|
@@ -6,7 +6,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
6
6
|
title: string;
|
|
7
7
|
size: "sm" | "lg";
|
|
8
8
|
fontSize: string;
|
|
9
|
-
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
9
|
+
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
10
10
|
subtitle: string;
|
|
11
11
|
buttonText: string;
|
|
12
12
|
isHorizontal: boolean;
|
|
@@ -28,7 +28,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
30
|
iconName: {
|
|
31
|
-
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
31
|
+
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
32
32
|
default: any;
|
|
33
33
|
};
|
|
34
34
|
subtitle: {
|
|
@@ -91,7 +91,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
91
91
|
default: string;
|
|
92
92
|
};
|
|
93
93
|
iconName: {
|
|
94
|
-
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
94
|
+
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
95
95
|
default: any;
|
|
96
96
|
};
|
|
97
97
|
subtitle: {
|
|
@@ -132,7 +132,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
132
132
|
title: string;
|
|
133
133
|
size: "sm" | "lg";
|
|
134
134
|
fontSize: string;
|
|
135
|
-
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
135
|
+
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
136
136
|
subtitle: string;
|
|
137
137
|
buttonText: string;
|
|
138
138
|
isHorizontal: boolean;
|
|
@@ -174,7 +174,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
174
174
|
default: string;
|
|
175
175
|
};
|
|
176
176
|
iconName: {
|
|
177
|
-
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
177
|
+
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
178
178
|
default: any;
|
|
179
179
|
};
|
|
180
180
|
subtitle: {
|
|
@@ -227,7 +227,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
227
227
|
default: string;
|
|
228
228
|
};
|
|
229
229
|
iconName: {
|
|
230
|
-
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
230
|
+
type: import("vue").PropType<"filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4">;
|
|
231
231
|
default: any;
|
|
232
232
|
};
|
|
233
233
|
subtitle: {
|
|
@@ -268,7 +268,7 @@ declare const EmptyStateTypes: () => ({
|
|
|
268
268
|
title: string;
|
|
269
269
|
size: "sm" | "lg";
|
|
270
270
|
fontSize: string;
|
|
271
|
-
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
271
|
+
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
|
|
272
272
|
subtitle: string;
|
|
273
273
|
buttonText: string;
|
|
274
274
|
isHorizontal: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
validationPath
|
|
2
|
+
validationPath?: string;
|
|
3
3
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
validationPath
|
|
4
|
+
validationPath?: string;
|
|
5
5
|
}>>>, {}>, {
|
|
6
6
|
default?(_: {
|
|
7
7
|
validationPath: string;
|
|
@@ -8,7 +8,6 @@ declare const FormFieldTypes: () => (({
|
|
|
8
8
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
validationPath: {
|
|
10
10
|
type: import("vue").PropType<string>;
|
|
11
|
-
required: true;
|
|
12
11
|
};
|
|
13
12
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
14
13
|
$attrs: {
|
|
@@ -27,7 +26,6 @@ declare const FormFieldTypes: () => (({
|
|
|
27
26
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
28
27
|
validationPath: {
|
|
29
28
|
type: import("vue").PropType<string>;
|
|
30
|
-
required: true;
|
|
31
29
|
};
|
|
32
30
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
33
31
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -52,7 +50,6 @@ declare const FormFieldTypes: () => (({
|
|
|
52
50
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
53
51
|
validationPath: {
|
|
54
52
|
type: import("vue").PropType<string>;
|
|
55
|
-
required: true;
|
|
56
53
|
};
|
|
57
54
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
58
55
|
__isFragment?: never;
|
|
@@ -61,7 +58,6 @@ declare const FormFieldTypes: () => (({
|
|
|
61
58
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
62
59
|
validationPath: {
|
|
63
60
|
type: import("vue").PropType<string>;
|
|
64
|
-
required: true;
|
|
65
61
|
};
|
|
66
62
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
67
63
|
$slots: {
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { FormTestType } from '../types';
|
|
2
|
+
import { ValidationErrorsType } from '@/components/forms';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
formState: FormTestType;
|
|
5
|
+
validationErrors: ValidationErrorsType<FormTestType>;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:formState": (value: FormTestType) => void;
|
|
8
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
formState: FormTestType;
|
|
10
|
+
validationErrors: ValidationErrorsType<FormTestType>;
|
|
11
|
+
}>>> & {
|
|
12
|
+
"onUpdate:formState"?: (value: FormTestType) => any;
|
|
13
|
+
}, {}>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FormTestType } from '../types';
|
|
2
|
+
import { ValidationErrorsType } from '@/components/forms';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
formState: FormTestType;
|
|
5
|
+
validationErrors: ValidationErrorsType<FormTestType>;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
onSave: () => void;
|
|
8
|
+
"update:formState": (value: FormTestType) => void;
|
|
9
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
formState: FormTestType;
|
|
11
|
+
validationErrors: ValidationErrorsType<FormTestType>;
|
|
12
|
+
}>>> & {
|
|
13
|
+
"onUpdate:formState"?: (value: FormTestType) => any;
|
|
14
|
+
onOnSave?: () => any;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
+
} : {
|
|
22
|
+
type: import('vue').PropType<T[K]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type InstanceType = {
|
|
2
|
+
instanceName: string;
|
|
3
|
+
instanceDescription: string;
|
|
4
|
+
};
|
|
5
|
+
type NetworkType = {
|
|
6
|
+
networkName: string;
|
|
7
|
+
instances?: InstanceType[];
|
|
8
|
+
};
|
|
9
|
+
export type FormTestType = {
|
|
10
|
+
name: string;
|
|
11
|
+
format: string;
|
|
12
|
+
cappingImpressions: string;
|
|
13
|
+
cappingPeriod: string;
|
|
14
|
+
networks?: NetworkType[];
|
|
15
|
+
};
|
|
16
|
+
type InstanceValidationType = {
|
|
17
|
+
[Property in keyof InstanceType]: string;
|
|
18
|
+
};
|
|
19
|
+
type NetworkValidationType = {
|
|
20
|
+
networkName: string;
|
|
21
|
+
instances?: Record<number, InstanceValidationType>;
|
|
22
|
+
};
|
|
23
|
+
export type FormTestValidationType = {
|
|
24
|
+
[Property in keyof FormTestType]: Property extends 'networks' ? Record<number, NetworkValidationType> : string;
|
|
25
|
+
};
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -5,13 +5,6 @@ export type ValidationStateType<T> = {
|
|
|
5
5
|
isValid: boolean;
|
|
6
6
|
errors: ValidationErrorsType<T>;
|
|
7
7
|
};
|
|
8
|
-
export declare enum ScrollToAttributes {
|
|
9
|
-
ID = "id",
|
|
10
|
-
CLASS = "class",
|
|
11
|
-
DATA_TESTID = "data-testid"
|
|
12
|
-
}
|
|
13
|
-
type ScrollToElementsSchemaRecordType = Partial<Record<ScrollToAttributes, string>>;
|
|
14
|
-
export type FormValidationScrollElementsSchemaType<T> = Partial<Record<keyof T, ScrollToElementsSchemaRecordType>>;
|
|
15
8
|
export type FormValidationSchemaYupType<T> = Record<keyof T, yup.AnySchema<any, any, any, any>>;
|
|
16
9
|
export type UseFormValidationType<T> = {
|
|
17
10
|
formState: T;
|
|
@@ -20,6 +13,5 @@ export type UseFormValidationType<T> = {
|
|
|
20
13
|
export type UseFormValidationReponseType<T> = {
|
|
21
14
|
validationErrors: ValidationErrorsType<T>;
|
|
22
15
|
isValid: Ref<boolean>;
|
|
23
|
-
validate: (
|
|
16
|
+
validate: (isReactive?: boolean) => void;
|
|
24
17
|
};
|
|
25
|
-
export {};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|