@ironsource/shared-ui 2.1.7-rc.0 → 2.1.7-rc.10
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/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_938772ee_lang.css +1 -0
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_1bdca43d_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_b6a06f00_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_1cff50cb_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +8 -0
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +22 -0
- package/components/alert/Alert.vue.js +7 -0
- package/components/alert/Alert.vue2.js +109 -0
- package/components/appHeader/AppHeader.vue.js +7 -0
- package/components/appHeader/AppHeader.vue2.js +86 -0
- package/components/appIcon/AppIcon.vue.js +7 -0
- package/components/appIcon/AppIcon.vue2.js +35 -0
- package/components/appTrigger/AppTrigger.vue.js +7 -0
- package/components/appTrigger/AppTrigger.vue2.js +124 -0
- package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
- package/components/autocomplete/Autocomplete.vue.js +7 -0
- package/components/autocomplete/Autocomplete.vue2.js +134 -0
- package/components/autocomplete/index.d.ts +20 -1
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -0
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +120 -0
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -0
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +79 -0
- package/components/autocompleteDropdown/GroupOption.vue.js +7 -0
- package/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
- package/components/banner/Banner.vue.js +7 -0
- package/components/banner/Banner.vue2.js +58 -0
- package/components/button/v3/Button.vue.js +7 -0
- package/components/button/v3/Button.vue2.js +59 -0
- package/components/button/v3/ButtonBase.vue.js +7 -0
- package/components/button/v3/ButtonBase.vue2.js +54 -0
- package/components/button/v3/IconButton.vue.js +7 -0
- package/components/button/v3/IconButton.vue2.js +45 -0
- package/components/button/v3/LoaderCircleIcon.vue.js +33 -0
- package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
- package/components/button/v3/LoaderDotsIcon.vue.js +16 -0
- package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
- package/components/button/v3/ScrollButton.vue.js +7 -0
- package/components/button/v3/ScrollButton.vue2.js +45 -0
- package/components/button/v4/ButtonV4.vue.d.ts +6 -6
- package/components/button/v4/ButtonV4.vue.js +7 -0
- package/components/button/v4/ButtonV4.vue2.js +91 -0
- package/components/button/v4/IconButtonV4.vue.d.ts +3 -3
- package/components/button/v4/IconButtonV4.vue.js +7 -0
- package/components/button/v4/IconButtonV4.vue2.js +46 -0
- package/components/button/v4/index.d.ts +21 -21
- package/components/chart/Chart.vue.js +7 -0
- package/components/chart/Chart.vue2.js +281 -0
- package/components/chart/ChartHeader.vue.js +7 -0
- package/components/chart/ChartHeader.vue2.js +51 -0
- package/components/chart/ChartLegend.vue.js +7 -0
- package/components/chart/ChartLegend.vue2.js +65 -0
- package/components/chart/ChartLoader.vue.js +25 -0
- package/components/chart/ChartLoader.vue2.js +0 -0
- package/components/chart/ChartTooltip.vue.js +7 -0
- package/components/chart/ChartTooltip.vue2.js +81 -0
- package/components/checkbox/v3/Checkbox.vue.js +7 -0
- package/components/checkbox/v3/Checkbox.vue2.js +99 -0
- package/components/checkbox/v3/icons/checked.vue.js +27 -0
- package/components/checkbox/v3/icons/indeterminate.vue.js +28 -0
- package/components/checkbox/v3/icons/unchecked.vue.js +24 -0
- package/components/checkbox/v4/CheckboxV4.vue.js +7 -0
- package/components/checkbox/v4/CheckboxV4.vue2.js +111 -0
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +30 -0
- package/components/checkbox/v4/icons/UncheckedState.vue.js +32 -0
- package/components/chip/v3/Chip.vue.js +7 -0
- package/components/chip/v3/Chip.vue2.js +58 -0
- package/components/chip/v4/ChipV4.vue.js +7 -0
- package/components/chip/v4/ChipV4.vue2.js +36 -0
- package/components/cssBaseline/CssBaseline.vue.js +10 -0
- package/components/cssBaseline/CssBaseline.vue2.js +0 -0
- package/components/datePicker/v3/DatePicker.vue.js +7 -0
- package/components/datePicker/v3/DatePicker.vue2.js +69 -0
- package/components/datePicker/v3/DatePickerMonth.vue.js +7 -0
- package/components/datePicker/v3/DatePickerMonth.vue2.js +40 -0
- package/components/datePicker/v4/DatePickerMonthV4.vue.js +7 -0
- package/components/datePicker/v4/DatePickerMonthV4.vue2.js +40 -0
- package/components/datePicker/v4/DatePickerV4.vue.js +7 -0
- package/components/datePicker/v4/DatePickerV4.vue2.js +74 -0
- package/components/dateRange/v3/CalendarMonth.vue.js +7 -0
- package/components/dateRange/v3/CalendarMonth.vue2.js +147 -0
- package/components/dateRange/v3/DateRange.vue.js +7 -0
- package/components/dateRange/v3/DateRange.vue2.js +226 -0
- package/components/dateRange/v4/CalendarMonthV4.vue.js +7 -0
- package/components/dateRange/v4/CalendarMonthV4.vue2.js +132 -0
- package/components/dateRange/v4/DateRangeV4.vue.js +7 -0
- package/components/dateRange/v4/DateRangeV4.vue2.js +263 -0
- package/components/dialog/v3/Dialog.vue.js +7 -0
- package/components/dialog/v3/Dialog.vue2.js +137 -0
- package/components/dialog/v4/DialogV4.vue.js +7 -0
- package/components/dialog/v4/DialogV4.vue2.js +155 -0
- package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
- package/components/dropdown/v3/Dropdown.vue.js +8 -0
- package/components/dropdown/v3/Dropdown.vue2.js +394 -0
- package/components/dropdown/v3/Label.vue.js +7 -0
- package/components/dropdown/v3/Label.vue2.js +36 -0
- package/components/dropdown/v3/Option.vue.js +7 -0
- package/components/dropdown/v3/Option.vue2.js +94 -0
- package/components/dropdown/v3/SearchInput.vue.js +7 -0
- package/components/dropdown/v3/SearchInput.vue2.js +82 -0
- package/components/dropdown/v3/index.d.ts +20 -20
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +6 -6
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +185 -0
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +36 -0
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +51 -0
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +74 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +3 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +117 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +17 -7
- package/components/dropdown/v4/DropdownV4.vue.js +8 -0
- package/components/dropdown/v4/DropdownV4.vue2.js +425 -0
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +7 -0
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +19 -0
- package/components/dropdown/v4/OptionV4.vue.d.ts +16 -6
- package/components/dropdown/v4/OptionV4.vue.js +7 -0
- package/components/dropdown/v4/OptionV4.vue2.js +165 -0
- package/components/dropdown/v4/TreeDropdown.vue.js +7 -0
- package/components/dropdown/v4/TreeDropdown.vue2.js +122 -0
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +15 -1
- package/components/dropdown/v4/index.d.ts +155 -79
- package/components/emptyState/v3/EmptyState.vue.js +7 -0
- package/components/emptyState/v3/EmptyState.vue2.js +91 -0
- package/components/emptyState/v3/EmptyStateIcon.vue.js +35 -0
- package/components/emptyState/v3/EmptyStateIcon.vue2.js +0 -0
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/EmptyStateV4.vue.js +7 -0
- package/components/emptyState/v4/EmptyStateV4.vue2.js +81 -0
- package/components/emptyState/v4/icons/IconError.vue.js +16 -0
- package/components/emptyState/v4/icons/IconFiles.vue.js +16 -0
- package/components/emptyState/v4/icons/IconNoAccess.vue.js +16 -0
- package/components/emptyState/v4/icons/IconNoData.vue.js +16 -0
- package/components/emptyState/v4/icons/IconNoResults.vue.js +16 -0
- package/components/emptyState/v4/icons/IconSettings.vue.js +16 -0
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/filterDropdown/AddFilterButton.vue.js +7 -0
- package/components/filterDropdown/AddFilterButton.vue2.js +50 -0
- package/components/filterDropdown/FilterDropdown.vue.js +7 -0
- package/components/filterDropdown/FilterDropdown.vue2.js +56 -0
- package/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
- package/components/filtersPanel/v3/FilterSearchInput.vue2.js +45 -0
- package/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
- package/components/filtersPanel/v3/FiltersPanel.vue2.js +40 -0
- package/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
- package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
- package/components/floatingToolbar/FloatingToolbar.vue.js +7 -0
- package/components/floatingToolbar/FloatingToolbar.vue2.js +70 -0
- package/components/forms/CardPanel.vue.js +7 -0
- package/components/forms/CardPanel.vue2.js +37 -0
- package/components/forms/FormCard.vue.js +7 -0
- package/components/forms/FormCard.vue2.js +101 -0
- package/components/forms/FormField.vue.js +7 -0
- package/components/forms/FormField.vue2.js +17 -0
- package/components/forms/FormRow.vue.js +7 -0
- package/components/forms/FormRow.vue2.js +34 -0
- package/components/icon/v3/Icon.vue.js +7 -0
- package/components/icon/v3/Icon.vue2.js +38 -0
- package/components/icon/v3/icons/A.vue.js +24 -0
- package/components/icon/v3/icons/A2.vue.js +18 -0
- package/components/icon/v3/icons/ABTest.vue.js +20 -0
- package/components/icon/v3/icons/ABTest2.vue.js +15 -0
- package/components/icon/v3/icons/ACircle.vue.js +20 -0
- package/components/icon/v3/icons/AccountBalanceWallet.vue.js +22 -0
- package/components/icon/v3/icons/AccountCircle.vue.js +20 -0
- package/components/icon/v3/icons/AccountCircleOutline.vue.js +18 -0
- package/components/icon/v3/icons/Add.vue.js +18 -0
- package/components/icon/v3/icons/Adjust.vue.js +43 -0
- package/components/icon/v3/icons/Analytics.vue.js +18 -0
- package/components/icon/v3/icons/Android.vue.js +20 -0
- package/components/icon/v3/icons/AngleDown.vue.js +20 -0
- package/components/icon/v3/icons/AngleLeft.vue.js +20 -0
- package/components/icon/v3/icons/AngleRight.vue.js +20 -0
- package/components/icon/v3/icons/AngleUp.vue.js +20 -0
- package/components/icon/v3/icons/AppStore.vue.js +21 -0
- package/components/icon/v3/icons/AreaChart.vue.js +18 -0
- package/components/icon/v3/icons/ArrowBack.vue.js +18 -0
- package/components/icon/v3/icons/ArrowDownward.vue.js +18 -0
- package/components/icon/v3/icons/ArrowForward.vue.js +18 -0
- package/components/icon/v3/icons/ArrowLeft.vue.js +18 -0
- package/components/icon/v3/icons/ArrowRight.vue.js +18 -0
- package/components/icon/v3/icons/ArrowSort-Down.vue.js +20 -0
- package/components/icon/v3/icons/ArrowSort-Up.vue.js +20 -0
- package/components/icon/v3/icons/ArrowUpward.vue.js +18 -0
- package/components/icon/v3/icons/AutoAwesome.vue.js +18 -0
- package/components/icon/v3/icons/AutoMode.vue.js +20 -0
- package/components/icon/v3/icons/Autorenew.vue.js +18 -0
- package/components/icon/v3/icons/B.vue.js +24 -0
- package/components/icon/v3/icons/B2.vue.js +18 -0
- package/components/icon/v3/icons/BCircle.vue.js +20 -0
- package/components/icon/v3/icons/Banner.vue.js +24 -0
- package/components/icon/v3/icons/Bidding.vue.js +32 -0
- package/components/icon/v3/icons/Bidding2.vue.js +32 -0
- package/components/icon/v3/icons/Block.vue.js +18 -0
- package/components/icon/v3/icons/BorderColor.vue.js +20 -0
- package/components/icon/v3/icons/Bug.vue.js +20 -0
- package/components/icon/v3/icons/Bullhorn.vue.js +18 -0
- package/components/icon/v3/icons/BullseyeArrow.vue.js +23 -0
- package/components/icon/v3/icons/Cached.vue.js +18 -0
- package/components/icon/v3/icons/Calendar.vue.js +23 -0
- package/components/icon/v3/icons/CalendarToday.vue.js +18 -0
- package/components/icon/v3/icons/Cancel.vue.js +20 -0
- package/components/icon/v3/icons/ChartBar.vue.js +20 -0
- package/components/icon/v3/icons/ChartLine.vue.js +20 -0
- package/components/icon/v3/icons/ChartMixed.vue.js +20 -0
- package/components/icon/v3/icons/Check.vue.js +18 -0
- package/components/icon/v3/icons/Check2.vue.js +21 -0
- package/components/icon/v3/icons/CheckBold.vue.js +20 -0
- package/components/icon/v3/icons/CheckCircle.vue.js +21 -0
- package/components/icon/v3/icons/Close.vue.js +18 -0
- package/components/icon/v3/icons/CloseBold.vue.js +18 -0
- package/components/icon/v3/icons/ComputerMouse.vue.js +23 -0
- package/components/icon/v3/icons/CopyTo-Clipboard.vue.js +20 -0
- package/components/icon/v3/icons/CopyToClipboardFilled.vue.js +18 -0
- package/components/icon/v3/icons/Create.vue.js +20 -0
- package/components/icon/v3/icons/Creative.vue.js +20 -0
- package/components/icon/v3/icons/Cross.vue.js +20 -0
- package/components/icon/v3/icons/CrownFill.vue.js +18 -0
- package/components/icon/v3/icons/Cube.vue.js +21 -0
- package/components/icon/v3/icons/CubeBackground.vue.js +27 -0
- package/components/icon/v3/icons/Cup.vue.js +18 -0
- package/components/icon/v3/icons/CupA.vue.js +15 -0
- package/components/icon/v3/icons/CupB.vue.js +15 -0
- package/components/icon/v3/icons/Delete.vue.js +20 -0
- package/components/icon/v3/icons/Diamond.vue.js +18 -0
- package/components/icon/v3/icons/Dots.vue.js +20 -0
- package/components/icon/v3/icons/Download.vue.js +20 -0
- package/components/icon/v3/icons/Download2.vue.js +23 -0
- package/components/icon/v3/icons/DownloadDone.vue.js +20 -0
- package/components/icon/v3/icons/DragIndicator.vue.js +18 -0
- package/components/icon/v3/icons/Duplicate.vue.js +19 -0
- package/components/icon/v3/icons/Ecpi.vue.js +31 -0
- package/components/icon/v3/icons/Email.vue.js +20 -0
- package/components/icon/v3/icons/EmailEnvelope.vue.js +18 -0
- package/components/icon/v3/icons/Error.vue.js +20 -0
- package/components/icon/v3/icons/Eye.vue.js +22 -0
- package/components/icon/v3/icons/Eye2.vue.js +19 -0
- package/components/icon/v3/icons/EyeSlash.vue.js +21 -0
- package/components/icon/v3/icons/FavoriteBorder.vue.js +20 -0
- package/components/icon/v3/icons/Filter.vue.js +20 -0
- package/components/icon/v3/icons/FilterList.vue.js +18 -0
- package/components/icon/v3/icons/FiltersSearch.vue.js +41 -0
- package/components/icon/v3/icons/Frame.vue.js +20 -0
- package/components/icon/v3/icons/Fullscreen.vue.js +20 -0
- package/components/icon/v3/icons/FullscreenExit.vue.js +20 -0
- package/components/icon/v3/icons/Functions.vue.js +18 -0
- package/components/icon/v3/icons/GamepadAlt.vue.js +20 -0
- package/components/icon/v3/icons/Games.vue.js +20 -0
- package/components/icon/v3/icons/Gavel.vue.js +20 -0
- package/components/icon/v3/icons/Gift.vue.js +20 -0
- package/components/icon/v3/icons/GitHub.vue.js +20 -0
- package/components/icon/v3/icons/GlobeStand.vue.js +20 -0
- package/components/icon/v3/icons/GooglePlay.vue.js +18 -0
- package/components/icon/v3/icons/Group.vue.js +20 -0
- package/components/icon/v3/icons/Hammer.vue.js +20 -0
- package/components/icon/v3/icons/HandPointer.vue.js +22 -0
- package/components/icon/v3/icons/Hands.vue.js +20 -0
- package/components/icon/v3/icons/Heartbeat.vue.js +20 -0
- package/components/icon/v3/icons/Help.vue.js +20 -0
- package/components/icon/v3/icons/HelpOutline.vue.js +20 -0
- package/components/icon/v3/icons/History.vue.js +18 -0
- package/components/icon/v3/icons/IOS.vue.js +20 -0
- package/components/icon/v3/icons/Image.vue.js +18 -0
- package/components/icon/v3/icons/ImageNotSupported.vue.js +23 -0
- package/components/icon/v3/icons/ImageSlash.vue.js +18 -0
- package/components/icon/v3/icons/ImportExport.vue.js +18 -0
- package/components/icon/v3/icons/ImportExport2.vue.js +18 -0
- package/components/icon/v3/icons/Importent.vue.js +20 -0
- package/components/icon/v3/icons/Info.vue.js +20 -0
- package/components/icon/v3/icons/Info2.vue.js +21 -0
- package/components/icon/v3/icons/InfoOutline.vue.js +20 -0
- package/components/icon/v3/icons/Insights.vue.js +20 -0
- package/components/icon/v3/icons/Interstitial.vue.js +24 -0
- package/components/icon/v3/icons/Ios14.vue.js +20 -0
- package/components/icon/v3/icons/Js.vue.js +20 -0
- package/components/icon/v3/icons/Landscape.vue.js +18 -0
- package/components/icon/v3/icons/Launch.vue.js +18 -0
- package/components/icon/v3/icons/Levelplay.vue.js +32 -0
- package/components/icon/v3/icons/LimitCircle.vue.js +23 -0
- package/components/icon/v3/icons/LimitOctagon.vue.js +23 -0
- package/components/icon/v3/icons/Link.vue.js +18 -0
- package/components/icon/v3/icons/LoadingClean.vue.js +18 -0
- package/components/icon/v3/icons/Lock.vue.js +18 -0
- package/components/icon/v3/icons/LockOpen.vue.js +18 -0
- package/components/icon/v3/icons/Login.vue.js +18 -0
- package/components/icon/v3/icons/Logout.vue.js +18 -0
- package/components/icon/v3/icons/Marketing.vue.js +23 -0
- package/components/icon/v3/icons/MilitaryTech.vue.js +18 -0
- package/components/icon/v3/icons/Mix.vue.js +20 -0
- package/components/icon/v3/icons/Mix2.vue.js +24 -0
- package/components/icon/v3/icons/MobileLandscape.vue.js +20 -0
- package/components/icon/v3/icons/MobilePortrait.vue.js +20 -0
- package/components/icon/v3/icons/MoneyCheck.vue.js +22 -0
- package/components/icon/v3/icons/MoreHoriz.vue.js +20 -0
- package/components/icon/v3/icons/MoreVert.vue.js +20 -0
- package/components/icon/v3/icons/Mouse.vue.js +20 -0
- package/components/icon/v3/icons/MousePointer.vue.js +20 -0
- package/components/icon/v3/icons/MovingUp.vue.js +18 -0
- package/components/icon/v3/icons/NativeAd.vue.js +15 -0
- package/components/icon/v3/icons/NotificationsNone.vue.js +20 -0
- package/components/icon/v3/icons/Offerwall.vue.js +24 -0
- package/components/icon/v3/icons/Palyable.vue.js +18 -0
- package/components/icon/v3/icons/PaperPlane-Off.vue.js +20 -0
- package/components/icon/v3/icons/PaperPlane.vue.js +20 -0
- package/components/icon/v3/icons/Pause.vue.js +20 -0
- package/components/icon/v3/icons/PauseCircleFilled.vue.js +20 -0
- package/components/icon/v3/icons/PauseCircleOutline.vue.js +20 -0
- package/components/icon/v3/icons/PhoneIphone.vue.js +18 -0
- package/components/icon/v3/icons/Photo.vue.js +23 -0
- package/components/icon/v3/icons/Photo2.vue.js +20 -0
- package/components/icon/v3/icons/PlayArrow.vue.js +18 -0
- package/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +20 -0
- package/components/icon/v3/icons/PlayCircleOutline.vue.js +20 -0
- package/components/icon/v3/icons/Qrcode.vue.js +20 -0
- package/components/icon/v3/icons/Question.vue.js +21 -0
- package/components/icon/v3/icons/QuickAB.vue.js +15 -0
- package/components/icon/v3/icons/QuickAB2.vue.js +15 -0
- package/components/icon/v3/icons/React.vue.js +20 -0
- package/components/icon/v3/icons/Redo.vue.js +18 -0
- package/components/icon/v3/icons/Refresh.vue.js +18 -0
- package/components/icon/v3/icons/Remove.vue.js +18 -0
- package/components/icon/v3/icons/Replay.vue.js +18 -0
- package/components/icon/v3/icons/RewardedVideo.vue.js +24 -0
- package/components/icon/v3/icons/RocketLaunch.vue.js +18 -0
- package/components/icon/v3/icons/Rotate.vue.js +20 -0
- package/components/icon/v3/icons/Route.vue.js +20 -0
- package/components/icon/v3/icons/SackDollar.vue.js +23 -0
- package/components/icon/v3/icons/Schedule.vue.js +18 -0
- package/components/icon/v3/icons/Search.vue.js +18 -0
- package/components/icon/v3/icons/SearchBold.vue.js +20 -0
- package/components/icon/v3/icons/Share.vue.js +18 -0
- package/components/icon/v3/icons/Slack.vue.js +18 -0
- package/components/icon/v3/icons/SportsEsports.vue.js +18 -0
- package/components/icon/v3/icons/Star.vue.js +20 -0
- package/components/icon/v3/icons/StarFill.vue.js +20 -0
- package/components/icon/v3/icons/StatusBanner.vue.js +26 -0
- package/components/icon/v3/icons/StatusInterstitial.vue.js +26 -0
- package/components/icon/v3/icons/StatusNativeAd.vue.js +15 -0
- package/components/icon/v3/icons/StatusOfferwall.vue.js +26 -0
- package/components/icon/v3/icons/StatusRewardedVideo.vue.js +26 -0
- package/components/icon/v3/icons/StopCircleFilled.vue.js +18 -0
- package/components/icon/v3/icons/StopCircleOutline.vue.js +18 -0
- package/components/icon/v3/icons/Style.vue.js +22 -0
- package/components/icon/v3/icons/Success.vue.js +20 -0
- package/components/icon/v3/icons/SuccessFull.vue.js +20 -0
- package/components/icon/v3/icons/Switch.vue.js +20 -0
- package/components/icon/v3/icons/TableEdit.vue.js +18 -0
- package/components/icon/v3/icons/TabletLandscape.vue.js +20 -0
- package/components/icon/v3/icons/TabletMac.vue.js +18 -0
- package/components/icon/v3/icons/TabletPortrait.vue.js +20 -0
- package/components/icon/v3/icons/Texture.vue.js +20 -0
- package/components/icon/v3/icons/ThemeDark.vue.js +18 -0
- package/components/icon/v3/icons/ThemeLight.vue.js +18 -0
- package/components/icon/v3/icons/Timelapse.vue.js +18 -0
- package/components/icon/v3/icons/Timeline.vue.js +18 -0
- package/components/icon/v3/icons/TrendingDown.vue.js +18 -0
- package/components/icon/v3/icons/TrendingFlat.vue.js +18 -0
- package/components/icon/v3/icons/TrendingUp.vue.js +18 -0
- package/components/icon/v3/icons/Tune.vue.js +20 -0
- package/components/icon/v3/icons/TwoToneBanner.vue.js +28 -0
- package/components/icon/v3/icons/TwoToneInterstitial.vue.js +28 -0
- package/components/icon/v3/icons/TwoToneNativeAd.vue.js +15 -0
- package/components/icon/v3/icons/TwoToneOfferwall.vue.js +24 -0
- package/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +30 -0
- package/components/icon/v3/icons/Undo.vue.js +18 -0
- package/components/icon/v3/icons/UnfoldLess.vue.js +20 -0
- package/components/icon/v3/icons/UnfoldMore.vue.js +20 -0
- package/components/icon/v3/icons/VerticalAlignTop.vue.js +18 -0
- package/components/icon/v3/icons/VerticalAlignTop2.vue.js +18 -0
- package/components/icon/v3/icons/Vibration.vue.js +20 -0
- package/components/icon/v3/icons/VideoRound.vue.js +20 -0
- package/components/icon/v3/icons/ViewCarousel.vue.js +18 -0
- package/components/icon/v3/icons/Visibility.vue.js +18 -0
- package/components/icon/v3/icons/VisibilityOff.vue.js +18 -0
- package/components/icon/v3/icons/VisibilityOffStrok.vue.js +18 -0
- package/components/icon/v3/icons/VisibilityStrok.vue.js +18 -0
- package/components/icon/v3/icons/VolumeOff.vue.js +20 -0
- package/components/icon/v3/icons/VolumeUp.vue.js +20 -0
- package/components/icon/v3/icons/Warning.vue.js +18 -0
- package/components/icon/v3/icons/Warning2.vue.js +20 -0
- package/components/icon/v3/icons/Warning3.vue.js +21 -0
- package/components/icon/v3/icons/WarningCircle.vue.js +21 -0
- package/components/icon/v3/icons/WarningOctagon.vue.js +21 -0
- package/components/icon/v3/icons/WebApp.vue.js +18 -0
- package/components/icon/v3/icons/Widget.vue.js +22 -0
- package/components/icon/v3/icons/Widgets.vue.js +18 -0
- package/components/icon/v3/icons/WidgetsFill.vue.js +18 -0
- package/components/icon/v3/icons/WidgetsFlatSquares.vue.js +49 -0
- package/components/icon/v3/icons/Widgetsz.vue.js +25 -0
- package/components/icon/v3/icons/WifiProtectedSetup.vue.js +20 -0
- package/components/icon/v4/Icon.types.d.ts +1 -1
- package/components/icon/v4/IconFlag.vue.js +7 -0
- package/components/icon/v4/IconFlag.vue2.js +32 -0
- package/components/icon/v4/IconV4.vue.d.ts +3 -3
- package/components/icon/v4/IconV4.vue.js +7 -0
- package/components/icon/v4/IconV4.vue2.js +68 -0
- package/components/icon/v4/index.d.ts +7 -7
- package/components/includeExclude/IncludeExclude.vue.js +7 -0
- package/components/includeExclude/IncludeExclude.vue2.js +431 -0
- package/components/includeExclude/IncludeExcludeAppHeader.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +116 -0
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +109 -0
- package/components/includeExclude/IncludeExcludeChipFilter.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +149 -0
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +466 -0
- package/components/includeExclude/IncludeExcludeOption.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeOption.vue2.js +115 -0
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +7 -0
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +106 -0
- package/components/inlineCopy/InlineCopy.vue.js +7 -0
- package/components/inlineCopy/InlineCopy.vue2.js +72 -0
- package/components/input/v3/DollarInput.vue.js +7 -0
- package/components/input/v3/DollarInput.vue2.js +32 -0
- package/components/input/v3/Input.vue.js +7 -0
- package/components/input/v3/Input.vue2.js +211 -0
- package/components/input/v3/PasswordInput.vue.js +7 -0
- package/components/input/v3/PasswordInput.vue2.js +34 -0
- package/components/input/v3/PercentageInput.vue.js +7 -0
- package/components/input/v3/PercentageInput.vue2.js +32 -0
- package/components/input/v4/TextField.vue.d.ts +6 -1
- package/components/input/v4/TextField.vue.js +7 -0
- package/components/input/v4/TextField.vue2.js +221 -0
- package/components/input/v4/index.d.ts +20 -1
- package/components/layout/FoldableSection.vue.js +7 -0
- package/components/layout/FoldableSection.vue2.js +61 -0
- package/components/loader/v4/Loader.vue.js +7 -0
- package/components/loader/v4/Loader.vue2.js +48 -0
- package/components/menu/Menu.vue.d.ts +1 -1
- package/components/menu/Menu.vue.js +8 -0
- package/components/menu/Menu.vue2.js +62 -0
- package/components/menu/index.d.ts +16 -16
- package/components/menuItem/MenuItem.vue.js +7 -0
- package/components/menuItem/MenuItem.vue2.js +23 -0
- package/components/multibar/MultiBar.vue.js +7 -0
- package/components/multibar/MultiBar.vue2.js +103 -0
- package/components/multibar/MultiBarMenu.vue.js +7 -0
- package/components/multibar/MultiBarMenu.vue2.js +60 -0
- package/components/popover/common/Popover.common.d.ts +6 -0
- package/components/popover/common/Popover.common.js +17 -0
- package/components/popover/v3/Popover.vue.js +8 -0
- package/components/popover/v3/Popover.vue2.js +38 -0
- package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
- package/components/popover/v4/PopoverV4.vue.js +7 -0
- package/components/popover/v4/PopoverV4.vue2.js +54 -0
- package/components/popover/v4/index.d.ts +209 -0
- package/components/popover/v4/index.js +6 -0
- package/components/radioButton/v3/RadioButton.vue.js +7 -0
- package/components/radioButton/v3/RadioButton.vue2.js +79 -0
- package/components/radioButton/v3/RadioGroup.vue.js +7 -0
- package/components/radioButton/v3/RadioGroup.vue2.js +29 -0
- package/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
- package/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
- package/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
- package/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
- package/components/search/v3/Search.vue.js +7 -0
- package/components/search/v3/Search.vue2.js +62 -0
- package/components/search/v4/SearchV4.vue.js +7 -0
- package/components/search/v4/SearchV4.vue2.js +59 -0
- package/components/shared/FieldHelpText.vue.js +7 -0
- package/components/shared/FieldHelpText.vue2.js +43 -0
- package/components/shared/FieldLabel.vue.js +7 -0
- package/components/shared/FieldLabel.vue2.js +79 -0
- package/components/shared/FieldMaxLength.vue.js +7 -0
- package/components/shared/FieldMaxLength.vue2.js +24 -0
- package/components/shared/commonTypes.d.ts +2 -0
- package/components/skeleton/v3/Skeleton.vue.js +7 -0
- package/components/skeleton/v3/Skeleton.vue2.js +18 -0
- package/components/skeleton/v4/SkeletonV4.vue.js +7 -0
- package/components/skeleton/v4/SkeletonV4.vue2.js +23 -0
- package/components/snackbar/v3/Snackbar.vue.js +7 -0
- package/components/snackbar/v3/Snackbar.vue2.js +129 -0
- package/components/snackbar/v4/SnackbarV4.vue.d.ts +8 -8
- package/components/snackbar/v4/SnackbarV4.vue.js +7 -0
- package/components/snackbar/v4/SnackbarV4.vue2.js +139 -0
- package/components/sortableList/SortableItem.vue.js +7 -0
- package/components/sortableList/SortableItem.vue2.js +140 -0
- package/components/sortableList/SortableItemLabel.vue.js +7 -0
- package/components/sortableList/SortableItemLabel.vue2.js +60 -0
- package/components/sortableList/SortableList.vue.js +7 -0
- package/components/sortableList/SortableList.vue2.js +120 -0
- package/components/statusDot/StatusDot.vue.js +7 -0
- package/components/statusDot/StatusDot.vue2.js +15 -0
- package/components/switch/v3/Switch.vue.js +7 -0
- package/components/switch/v3/Switch.vue2.js +69 -0
- package/components/switch/v4/SwitchV4.vue.js +7 -0
- package/components/switch/v4/SwitchV4.vue2.js +42 -0
- package/components/table/v3/SortOrderIcon.vue.js +21 -0
- package/components/table/v3/SortOrderIcon.vue2.js +0 -0
- package/components/table/v3/Table.vue.js +7 -0
- package/components/table/v3/Table.vue2.js +248 -0
- package/components/table/v3/TableHeaderSorter.vue.js +7 -0
- package/components/table/v3/TableHeaderSorter.vue2.js +23 -0
- package/components/table/v4/DataGrid.vue.js +7 -0
- package/components/table/v4/DataGrid.vue2.js +337 -0
- package/components/table/v4/DataGridMenu.vue.js +7 -0
- package/components/table/v4/DataGridMenu.vue2.js +65 -0
- package/components/table/v4/DataGridRowsCounter.vue.d.ts +5 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +7 -0
- package/components/table/v4/DataGridRowsCounter.vue2.js +52 -0
- package/components/table/v4/ExpandRowToggle.vue.js +7 -0
- package/components/table/v4/ExpandRowToggle.vue2.js +24 -0
- package/components/table/v4/HelpIcon.vue.js +7 -0
- package/components/table/v4/HelpIcon.vue2.js +33 -0
- package/components/table/v4/MultipleDataGrid.vue.js +7 -0
- package/components/table/v4/MultipleDataGrid.vue2.js +128 -0
- package/components/table/v4/SortIcon.vue.js +7 -0
- package/components/table/v4/SortIcon.vue2.js +25 -0
- package/components/table/v4/index.d.ts +9 -0
- package/components/table-cells/v3/Editable.vue.js +7 -0
- package/components/table-cells/v3/Editable.vue2.js +43 -0
- package/components/table-cells/v4/EditableV4.vue.js +7 -0
- package/components/table-cells/v4/EditableV4.vue2.js +55 -0
- package/components/tabs/v3/Tabs.vue.js +7 -0
- package/components/tabs/v3/Tabs.vue2.js +85 -0
- package/components/tabs/v4/TabsV4.vue.js +7 -0
- package/components/tabs/v4/TabsV4.vue2.js +75 -0
- package/components/textArea/v3/TextArea.vue.js +7 -0
- package/components/textArea/v3/TextArea.vue2.js +65 -0
- package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
- package/components/textArea/v4/TextAreaV4.vue.js +7 -0
- package/components/textArea/v4/TextAreaV4.vue2.js +80 -0
- package/components/textArea/v4/index.d.ts +9 -0
- package/components/toggle/v3/Toggle.vue.js +7 -0
- package/components/toggle/v3/Toggle.vue2.js +95 -0
- package/components/toggle/v4/ToggleV4.vue.js +7 -0
- package/components/toggle/v4/ToggleV4.vue2.js +96 -0
- package/components/tooltip/v3/TextWithTitleContent.vue.js +7 -0
- package/components/tooltip/v3/TextWithTitleContent.vue2.js +46 -0
- package/components/tooltip/v3/Tooltip.vue.js +8 -0
- package/components/tooltip/v3/Tooltip.vue2.js +87 -0
- package/components/tooltip/v4/TextWithTitleContent.vue.js +7 -0
- package/components/tooltip/v4/TextWithTitleContent.vue2.js +36 -0
- package/components/tooltip/v4/TooltipV4.vue.d.ts +1 -1
- package/components/tooltip/v4/TooltipV4.vue.js +8 -0
- package/components/tooltip/v4/TooltipV4.vue2.js +70 -0
- package/components/tooltip/v4/index.d.ts +20 -20
- package/components/typography/Heading.vue.js +7 -0
- package/components/typography/Heading.vue2.js +25 -0
- package/components/typography/Text.vue.js +7 -0
- package/components/typography/Text.vue2.js +23 -0
- package/components/typography/v4/Typography.vue.js +7 -0
- package/components/typography/v4/Typography.vue2.js +58 -0
- package/design-foundation.stories/icons/iconsData.d.ts +5 -1
- package/index.d.ts +913 -274
- package/index.js +215 -0
- package/package.json +7 -3
- package/testids/index.d.ts +5 -0
- package/testids/index.js +36 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_b62ee695_lang.css +0 -1
- package/src/components/ThemeWrapper/ThemeWrapper.vue.js +0 -8
- package/src/components/ThemeWrapper/ThemeWrapper.vue2.js +0 -22
- package/src/components/alert/Alert.vue.js +0 -7
- package/src/components/alert/Alert.vue2.js +0 -109
- package/src/components/appHeader/AppHeader.vue.js +0 -7
- package/src/components/appHeader/AppHeader.vue2.js +0 -86
- package/src/components/appIcon/AppIcon.vue.js +0 -7
- package/src/components/appIcon/AppIcon.vue2.js +0 -35
- package/src/components/appTrigger/AppTrigger.vue.js +0 -7
- package/src/components/appTrigger/AppTrigger.vue2.js +0 -124
- package/src/components/autocomplete/Autocomplete.vue.js +0 -7
- package/src/components/autocomplete/Autocomplete.vue2.js +0 -122
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue.js +0 -7
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +0 -120
- package/src/components/autocompleteDropdown/AutocompleteInput.vue.js +0 -7
- package/src/components/autocompleteDropdown/AutocompleteInput.vue2.js +0 -79
- package/src/components/autocompleteDropdown/GroupOption.vue.js +0 -7
- package/src/components/autocompleteDropdown/GroupOption.vue2.js +0 -35
- package/src/components/banner/Banner.vue.js +0 -7
- package/src/components/banner/Banner.vue2.js +0 -58
- package/src/components/button/v3/Button.vue.js +0 -7
- package/src/components/button/v3/Button.vue2.js +0 -59
- package/src/components/button/v3/ButtonBase.vue.js +0 -7
- package/src/components/button/v3/ButtonBase.vue2.js +0 -54
- package/src/components/button/v3/IconButton.vue.js +0 -7
- package/src/components/button/v3/IconButton.vue2.js +0 -45
- package/src/components/button/v3/LoaderCircleIcon.vue.js +0 -33
- package/src/components/button/v3/LoaderDotsIcon.vue.js +0 -16
- package/src/components/button/v3/ScrollButton.vue.js +0 -7
- package/src/components/button/v3/ScrollButton.vue2.js +0 -45
- package/src/components/button/v4/ButtonV4.vue.js +0 -7
- package/src/components/button/v4/ButtonV4.vue2.js +0 -91
- package/src/components/button/v4/IconButtonV4.vue.js +0 -7
- package/src/components/button/v4/IconButtonV4.vue2.js +0 -46
- package/src/components/chart/Chart.vue.js +0 -7
- package/src/components/chart/Chart.vue2.js +0 -281
- package/src/components/chart/ChartHeader.vue.js +0 -7
- package/src/components/chart/ChartHeader.vue2.js +0 -51
- package/src/components/chart/ChartLegend.vue.js +0 -7
- package/src/components/chart/ChartLegend.vue2.js +0 -65
- package/src/components/chart/ChartLoader.vue.js +0 -25
- package/src/components/chart/ChartTooltip.vue.js +0 -7
- package/src/components/chart/ChartTooltip.vue2.js +0 -81
- package/src/components/checkbox/v3/Checkbox.vue.js +0 -7
- package/src/components/checkbox/v3/Checkbox.vue2.js +0 -99
- package/src/components/checkbox/v3/icons/checked.vue.js +0 -27
- package/src/components/checkbox/v3/icons/indeterminate.vue.js +0 -28
- package/src/components/checkbox/v3/icons/unchecked.vue.js +0 -24
- package/src/components/checkbox/v4/CheckboxV4.vue.js +0 -7
- package/src/components/checkbox/v4/CheckboxV4.vue2.js +0 -111
- package/src/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +0 -40
- package/src/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +0 -30
- package/src/components/checkbox/v4/icons/UncheckedState.vue.js +0 -32
- package/src/components/chip/v3/Chip.vue.js +0 -7
- package/src/components/chip/v3/Chip.vue2.js +0 -58
- package/src/components/chip/v4/ChipV4.vue.js +0 -7
- package/src/components/chip/v4/ChipV4.vue2.js +0 -36
- package/src/components/cssBaseline/CssBaseline.vue.js +0 -10
- package/src/components/datePicker/v3/DatePicker.vue.js +0 -7
- package/src/components/datePicker/v3/DatePicker.vue2.js +0 -69
- package/src/components/datePicker/v3/DatePickerMonth.vue.js +0 -7
- package/src/components/datePicker/v3/DatePickerMonth.vue2.js +0 -40
- package/src/components/datePicker/v4/DatePickerMonthV4.vue.js +0 -7
- package/src/components/datePicker/v4/DatePickerMonthV4.vue2.js +0 -40
- package/src/components/datePicker/v4/DatePickerV4.vue.js +0 -7
- package/src/components/datePicker/v4/DatePickerV4.vue2.js +0 -74
- package/src/components/dateRange/v3/CalendarMonth.vue.js +0 -7
- package/src/components/dateRange/v3/CalendarMonth.vue2.js +0 -147
- package/src/components/dateRange/v3/DateRange.vue.js +0 -7
- package/src/components/dateRange/v3/DateRange.vue2.js +0 -226
- package/src/components/dateRange/v4/CalendarMonthV4.vue.js +0 -7
- package/src/components/dateRange/v4/CalendarMonthV4.vue2.js +0 -132
- package/src/components/dateRange/v4/DateRangeV4.vue.js +0 -7
- package/src/components/dateRange/v4/DateRangeV4.vue2.js +0 -263
- package/src/components/dialog/v3/Dialog.vue.js +0 -7
- package/src/components/dialog/v3/Dialog.vue2.js +0 -137
- package/src/components/dialog/v4/DialogV4.vue.js +0 -7
- package/src/components/dialog/v4/DialogV4.vue2.js +0 -155
- package/src/components/dropdown/v3/Dropdown.vue.js +0 -8
- package/src/components/dropdown/v3/Dropdown.vue2.js +0 -394
- package/src/components/dropdown/v3/Label.vue.js +0 -7
- package/src/components/dropdown/v3/Label.vue2.js +0 -36
- package/src/components/dropdown/v3/Option.vue.js +0 -7
- package/src/components/dropdown/v3/Option.vue2.js +0 -94
- package/src/components/dropdown/v3/SearchInput.vue.js +0 -7
- package/src/components/dropdown/v3/SearchInput.vue2.js +0 -82
- package/src/components/dropdown/v4/AppDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/AppDropdownTrigger.vue2.js +0 -185
- package/src/components/dropdown/v4/ButtonDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +0 -36
- package/src/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +0 -51
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue2.js +0 -74
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +0 -117
- package/src/components/dropdown/v4/DropdownV4.vue.js +0 -8
- package/src/components/dropdown/v4/DropdownV4.vue2.js +0 -421
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +0 -7
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +0 -19
- package/src/components/dropdown/v4/OptionV4.vue.js +0 -7
- package/src/components/dropdown/v4/OptionV4.vue2.js +0 -148
- package/src/components/dropdown/v4/TreeDropdown.vue.js +0 -7
- package/src/components/dropdown/v4/TreeDropdown.vue2.js +0 -122
- package/src/components/emptyState/v3/EmptyState.vue.js +0 -7
- package/src/components/emptyState/v3/EmptyState.vue2.js +0 -91
- package/src/components/emptyState/v3/EmptyStateIcon.vue.js +0 -35
- package/src/components/emptyState/v4/EmptyStateV4.vue.js +0 -7
- package/src/components/emptyState/v4/EmptyStateV4.vue2.js +0 -81
- package/src/components/emptyState/v4/icons/IconError.vue.js +0 -16
- package/src/components/emptyState/v4/icons/IconFiles.vue.js +0 -16
- package/src/components/emptyState/v4/icons/IconNoAccess.vue.js +0 -16
- package/src/components/emptyState/v4/icons/IconNoData.vue.js +0 -16
- package/src/components/emptyState/v4/icons/IconNoResults.vue.js +0 -16
- package/src/components/emptyState/v4/icons/IconSettings.vue.js +0 -16
- package/src/components/filterDropdown/AddFilterButton.vue.js +0 -7
- package/src/components/filterDropdown/AddFilterButton.vue2.js +0 -50
- package/src/components/filterDropdown/FilterDropdown.vue.js +0 -7
- package/src/components/filterDropdown/FilterDropdown.vue2.js +0 -56
- package/src/components/filtersPanel/v3/FilterSearchInput.vue.js +0 -7
- package/src/components/filtersPanel/v3/FilterSearchInput.vue2.js +0 -45
- package/src/components/filtersPanel/v3/FiltersPanel.vue.js +0 -7
- package/src/components/filtersPanel/v3/FiltersPanel.vue2.js +0 -40
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue.js +0 -7
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue2.js +0 -23
- package/src/components/floatingToolbar/FloatingToolbar.vue.js +0 -7
- package/src/components/floatingToolbar/FloatingToolbar.vue2.js +0 -70
- package/src/components/forms/CardPanel.vue.js +0 -7
- package/src/components/forms/CardPanel.vue2.js +0 -37
- package/src/components/forms/FormCard.vue.js +0 -7
- package/src/components/forms/FormCard.vue2.js +0 -101
- package/src/components/forms/FormField.vue.js +0 -7
- package/src/components/forms/FormField.vue2.js +0 -17
- package/src/components/forms/FormRow.vue.js +0 -7
- package/src/components/forms/FormRow.vue2.js +0 -34
- package/src/components/icon/v3/Icon.vue.js +0 -7
- package/src/components/icon/v3/Icon.vue2.js +0 -38
- package/src/components/icon/v3/icons/A.vue.js +0 -24
- package/src/components/icon/v3/icons/A2.vue.js +0 -18
- package/src/components/icon/v3/icons/ABTest.vue.js +0 -20
- package/src/components/icon/v3/icons/ABTest2.vue.js +0 -15
- package/src/components/icon/v3/icons/ACircle.vue.js +0 -20
- package/src/components/icon/v3/icons/AccountBalanceWallet.vue.js +0 -22
- package/src/components/icon/v3/icons/AccountCircle.vue.js +0 -20
- package/src/components/icon/v3/icons/AccountCircleOutline.vue.js +0 -18
- package/src/components/icon/v3/icons/Add.vue.js +0 -18
- package/src/components/icon/v3/icons/Adjust.vue.js +0 -43
- package/src/components/icon/v3/icons/Analytics.vue.js +0 -18
- package/src/components/icon/v3/icons/Android.vue.js +0 -20
- package/src/components/icon/v3/icons/AngleDown.vue.js +0 -20
- package/src/components/icon/v3/icons/AngleLeft.vue.js +0 -20
- package/src/components/icon/v3/icons/AngleRight.vue.js +0 -20
- package/src/components/icon/v3/icons/AngleUp.vue.js +0 -20
- package/src/components/icon/v3/icons/AppStore.vue.js +0 -21
- package/src/components/icon/v3/icons/AreaChart.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowBack.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowDownward.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowForward.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowLeft.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowRight.vue.js +0 -18
- package/src/components/icon/v3/icons/ArrowSort-Down.vue.js +0 -20
- package/src/components/icon/v3/icons/ArrowSort-Up.vue.js +0 -20
- package/src/components/icon/v3/icons/ArrowUpward.vue.js +0 -18
- package/src/components/icon/v3/icons/AutoAwesome.vue.js +0 -18
- package/src/components/icon/v3/icons/AutoMode.vue.js +0 -20
- package/src/components/icon/v3/icons/Autorenew.vue.js +0 -18
- package/src/components/icon/v3/icons/B.vue.js +0 -24
- package/src/components/icon/v3/icons/B2.vue.js +0 -18
- package/src/components/icon/v3/icons/BCircle.vue.js +0 -20
- package/src/components/icon/v3/icons/Banner.vue.js +0 -24
- package/src/components/icon/v3/icons/Bidding.vue.js +0 -32
- package/src/components/icon/v3/icons/Bidding2.vue.js +0 -32
- package/src/components/icon/v3/icons/Block.vue.js +0 -18
- package/src/components/icon/v3/icons/BorderColor.vue.js +0 -20
- package/src/components/icon/v3/icons/Bug.vue.js +0 -20
- package/src/components/icon/v3/icons/Bullhorn.vue.js +0 -18
- package/src/components/icon/v3/icons/BullseyeArrow.vue.js +0 -23
- package/src/components/icon/v3/icons/Cached.vue.js +0 -18
- package/src/components/icon/v3/icons/Calendar.vue.js +0 -23
- package/src/components/icon/v3/icons/CalendarToday.vue.js +0 -18
- package/src/components/icon/v3/icons/Cancel.vue.js +0 -20
- package/src/components/icon/v3/icons/ChartBar.vue.js +0 -20
- package/src/components/icon/v3/icons/ChartLine.vue.js +0 -20
- package/src/components/icon/v3/icons/ChartMixed.vue.js +0 -20
- package/src/components/icon/v3/icons/Check.vue.js +0 -18
- package/src/components/icon/v3/icons/Check2.vue.js +0 -21
- package/src/components/icon/v3/icons/CheckBold.vue.js +0 -20
- package/src/components/icon/v3/icons/CheckCircle.vue.js +0 -21
- package/src/components/icon/v3/icons/Close.vue.js +0 -18
- package/src/components/icon/v3/icons/CloseBold.vue.js +0 -18
- package/src/components/icon/v3/icons/ComputerMouse.vue.js +0 -23
- package/src/components/icon/v3/icons/CopyTo-Clipboard.vue.js +0 -20
- package/src/components/icon/v3/icons/CopyToClipboardFilled.vue.js +0 -18
- package/src/components/icon/v3/icons/Create.vue.js +0 -20
- package/src/components/icon/v3/icons/Creative.vue.js +0 -20
- package/src/components/icon/v3/icons/Cross.vue.js +0 -20
- package/src/components/icon/v3/icons/CrownFill.vue.js +0 -18
- package/src/components/icon/v3/icons/Cube.vue.js +0 -21
- package/src/components/icon/v3/icons/CubeBackground.vue.js +0 -27
- package/src/components/icon/v3/icons/Cup.vue.js +0 -18
- package/src/components/icon/v3/icons/CupA.vue.js +0 -15
- package/src/components/icon/v3/icons/CupB.vue.js +0 -15
- package/src/components/icon/v3/icons/Delete.vue.js +0 -20
- package/src/components/icon/v3/icons/Diamond.vue.js +0 -18
- package/src/components/icon/v3/icons/Dots.vue.js +0 -20
- package/src/components/icon/v3/icons/Download.vue.js +0 -20
- package/src/components/icon/v3/icons/Download2.vue.js +0 -23
- package/src/components/icon/v3/icons/DownloadDone.vue.js +0 -20
- package/src/components/icon/v3/icons/DragIndicator.vue.js +0 -18
- package/src/components/icon/v3/icons/Duplicate.vue.js +0 -19
- package/src/components/icon/v3/icons/Ecpi.vue.js +0 -31
- package/src/components/icon/v3/icons/Email.vue.js +0 -20
- package/src/components/icon/v3/icons/EmailEnvelope.vue.js +0 -18
- package/src/components/icon/v3/icons/Error.vue.js +0 -20
- package/src/components/icon/v3/icons/Eye.vue.js +0 -22
- package/src/components/icon/v3/icons/Eye2.vue.js +0 -19
- package/src/components/icon/v3/icons/EyeSlash.vue.js +0 -21
- package/src/components/icon/v3/icons/FavoriteBorder.vue.js +0 -20
- package/src/components/icon/v3/icons/Filter.vue.js +0 -20
- package/src/components/icon/v3/icons/FilterList.vue.js +0 -18
- package/src/components/icon/v3/icons/FiltersSearch.vue.js +0 -41
- package/src/components/icon/v3/icons/Frame.vue.js +0 -20
- package/src/components/icon/v3/icons/Fullscreen.vue.js +0 -20
- package/src/components/icon/v3/icons/FullscreenExit.vue.js +0 -20
- package/src/components/icon/v3/icons/Functions.vue.js +0 -18
- package/src/components/icon/v3/icons/GamepadAlt.vue.js +0 -20
- package/src/components/icon/v3/icons/Games.vue.js +0 -20
- package/src/components/icon/v3/icons/Gavel.vue.js +0 -20
- package/src/components/icon/v3/icons/Gift.vue.js +0 -20
- package/src/components/icon/v3/icons/GitHub.vue.js +0 -20
- package/src/components/icon/v3/icons/GlobeStand.vue.js +0 -20
- package/src/components/icon/v3/icons/GooglePlay.vue.js +0 -18
- package/src/components/icon/v3/icons/Group.vue.js +0 -20
- package/src/components/icon/v3/icons/Hammer.vue.js +0 -20
- package/src/components/icon/v3/icons/HandPointer.vue.js +0 -22
- package/src/components/icon/v3/icons/Hands.vue.js +0 -20
- package/src/components/icon/v3/icons/Heartbeat.vue.js +0 -20
- package/src/components/icon/v3/icons/Help.vue.js +0 -20
- package/src/components/icon/v3/icons/HelpOutline.vue.js +0 -20
- package/src/components/icon/v3/icons/History.vue.js +0 -18
- package/src/components/icon/v3/icons/IOS.vue.js +0 -20
- package/src/components/icon/v3/icons/Image.vue.js +0 -18
- package/src/components/icon/v3/icons/ImageNotSupported.vue.js +0 -23
- package/src/components/icon/v3/icons/ImageSlash.vue.js +0 -18
- package/src/components/icon/v3/icons/ImportExport.vue.js +0 -18
- package/src/components/icon/v3/icons/ImportExport2.vue.js +0 -18
- package/src/components/icon/v3/icons/Importent.vue.js +0 -20
- package/src/components/icon/v3/icons/Info.vue.js +0 -20
- package/src/components/icon/v3/icons/Info2.vue.js +0 -21
- package/src/components/icon/v3/icons/InfoOutline.vue.js +0 -20
- package/src/components/icon/v3/icons/Insights.vue.js +0 -20
- package/src/components/icon/v3/icons/Interstitial.vue.js +0 -24
- package/src/components/icon/v3/icons/Ios14.vue.js +0 -20
- package/src/components/icon/v3/icons/Js.vue.js +0 -20
- package/src/components/icon/v3/icons/Landscape.vue.js +0 -18
- package/src/components/icon/v3/icons/Launch.vue.js +0 -18
- package/src/components/icon/v3/icons/Levelplay.vue.js +0 -32
- package/src/components/icon/v3/icons/LimitCircle.vue.js +0 -23
- package/src/components/icon/v3/icons/LimitOctagon.vue.js +0 -23
- package/src/components/icon/v3/icons/Link.vue.js +0 -18
- package/src/components/icon/v3/icons/LoadingClean.vue.js +0 -18
- package/src/components/icon/v3/icons/Lock.vue.js +0 -18
- package/src/components/icon/v3/icons/LockOpen.vue.js +0 -18
- package/src/components/icon/v3/icons/Login.vue.js +0 -18
- package/src/components/icon/v3/icons/Logout.vue.js +0 -18
- package/src/components/icon/v3/icons/Marketing.vue.js +0 -23
- package/src/components/icon/v3/icons/MilitaryTech.vue.js +0 -18
- package/src/components/icon/v3/icons/Mix.vue.js +0 -20
- package/src/components/icon/v3/icons/Mix2.vue.js +0 -24
- package/src/components/icon/v3/icons/MobileLandscape.vue.js +0 -20
- package/src/components/icon/v3/icons/MobilePortrait.vue.js +0 -20
- package/src/components/icon/v3/icons/MoneyCheck.vue.js +0 -22
- package/src/components/icon/v3/icons/MoreHoriz.vue.js +0 -20
- package/src/components/icon/v3/icons/MoreVert.vue.js +0 -20
- package/src/components/icon/v3/icons/Mouse.vue.js +0 -20
- package/src/components/icon/v3/icons/MousePointer.vue.js +0 -20
- package/src/components/icon/v3/icons/MovingUp.vue.js +0 -18
- package/src/components/icon/v3/icons/NativeAd.vue.js +0 -15
- package/src/components/icon/v3/icons/NotificationsNone.vue.js +0 -20
- package/src/components/icon/v3/icons/Offerwall.vue.js +0 -24
- package/src/components/icon/v3/icons/Palyable.vue.js +0 -18
- package/src/components/icon/v3/icons/PaperPlane-Off.vue.js +0 -20
- package/src/components/icon/v3/icons/PaperPlane.vue.js +0 -20
- package/src/components/icon/v3/icons/Pause.vue.js +0 -20
- package/src/components/icon/v3/icons/PauseCircleFilled.vue.js +0 -20
- package/src/components/icon/v3/icons/PauseCircleOutline.vue.js +0 -20
- package/src/components/icon/v3/icons/PhoneIphone.vue.js +0 -18
- package/src/components/icon/v3/icons/Photo.vue.js +0 -23
- package/src/components/icon/v3/icons/Photo2.vue.js +0 -20
- package/src/components/icon/v3/icons/PlayArrow.vue.js +0 -18
- package/src/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +0 -20
- package/src/components/icon/v3/icons/PlayCircleOutline.vue.js +0 -20
- package/src/components/icon/v3/icons/Qrcode.vue.js +0 -20
- package/src/components/icon/v3/icons/Question.vue.js +0 -21
- package/src/components/icon/v3/icons/QuickAB.vue.js +0 -15
- package/src/components/icon/v3/icons/QuickAB2.vue.js +0 -15
- package/src/components/icon/v3/icons/React.vue.js +0 -20
- package/src/components/icon/v3/icons/Redo.vue.js +0 -18
- package/src/components/icon/v3/icons/Refresh.vue.js +0 -18
- package/src/components/icon/v3/icons/Remove.vue.js +0 -18
- package/src/components/icon/v3/icons/Replay.vue.js +0 -18
- package/src/components/icon/v3/icons/RewardedVideo.vue.js +0 -24
- package/src/components/icon/v3/icons/RocketLaunch.vue.js +0 -18
- package/src/components/icon/v3/icons/Rotate.vue.js +0 -20
- package/src/components/icon/v3/icons/Route.vue.js +0 -20
- package/src/components/icon/v3/icons/SackDollar.vue.js +0 -23
- package/src/components/icon/v3/icons/Schedule.vue.js +0 -18
- package/src/components/icon/v3/icons/Search.vue.js +0 -18
- package/src/components/icon/v3/icons/SearchBold.vue.js +0 -20
- package/src/components/icon/v3/icons/Share.vue.js +0 -18
- package/src/components/icon/v3/icons/Slack.vue.js +0 -18
- package/src/components/icon/v3/icons/SportsEsports.vue.js +0 -18
- package/src/components/icon/v3/icons/Star.vue.js +0 -20
- package/src/components/icon/v3/icons/StarFill.vue.js +0 -20
- package/src/components/icon/v3/icons/StatusBanner.vue.js +0 -26
- package/src/components/icon/v3/icons/StatusInterstitial.vue.js +0 -26
- package/src/components/icon/v3/icons/StatusNativeAd.vue.js +0 -15
- package/src/components/icon/v3/icons/StatusOfferwall.vue.js +0 -26
- package/src/components/icon/v3/icons/StatusRewardedVideo.vue.js +0 -26
- package/src/components/icon/v3/icons/StopCircleFilled.vue.js +0 -18
- package/src/components/icon/v3/icons/StopCircleOutline.vue.js +0 -18
- package/src/components/icon/v3/icons/Style.vue.js +0 -22
- package/src/components/icon/v3/icons/Success.vue.js +0 -20
- package/src/components/icon/v3/icons/SuccessFull.vue.js +0 -20
- package/src/components/icon/v3/icons/Switch.vue.js +0 -20
- package/src/components/icon/v3/icons/TableEdit.vue.js +0 -18
- package/src/components/icon/v3/icons/TabletLandscape.vue.js +0 -20
- package/src/components/icon/v3/icons/TabletMac.vue.js +0 -18
- package/src/components/icon/v3/icons/TabletPortrait.vue.js +0 -20
- package/src/components/icon/v3/icons/Texture.vue.js +0 -20
- package/src/components/icon/v3/icons/ThemeDark.vue.js +0 -18
- package/src/components/icon/v3/icons/ThemeLight.vue.js +0 -18
- package/src/components/icon/v3/icons/Timelapse.vue.js +0 -18
- package/src/components/icon/v3/icons/Timeline.vue.js +0 -18
- package/src/components/icon/v3/icons/TrendingDown.vue.js +0 -18
- package/src/components/icon/v3/icons/TrendingFlat.vue.js +0 -18
- package/src/components/icon/v3/icons/TrendingUp.vue.js +0 -18
- package/src/components/icon/v3/icons/Tune.vue.js +0 -20
- package/src/components/icon/v3/icons/TwoToneBanner.vue.js +0 -28
- package/src/components/icon/v3/icons/TwoToneInterstitial.vue.js +0 -28
- package/src/components/icon/v3/icons/TwoToneNativeAd.vue.js +0 -15
- package/src/components/icon/v3/icons/TwoToneOfferwall.vue.js +0 -24
- package/src/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +0 -30
- package/src/components/icon/v3/icons/Undo.vue.js +0 -18
- package/src/components/icon/v3/icons/UnfoldLess.vue.js +0 -20
- package/src/components/icon/v3/icons/UnfoldMore.vue.js +0 -20
- package/src/components/icon/v3/icons/VerticalAlignTop.vue.js +0 -18
- package/src/components/icon/v3/icons/VerticalAlignTop2.vue.js +0 -18
- package/src/components/icon/v3/icons/Vibration.vue.js +0 -20
- package/src/components/icon/v3/icons/VideoRound.vue.js +0 -20
- package/src/components/icon/v3/icons/ViewCarousel.vue.js +0 -18
- package/src/components/icon/v3/icons/Visibility.vue.js +0 -18
- package/src/components/icon/v3/icons/VisibilityOff.vue.js +0 -18
- package/src/components/icon/v3/icons/VisibilityOffStrok.vue.js +0 -18
- package/src/components/icon/v3/icons/VisibilityStrok.vue.js +0 -18
- package/src/components/icon/v3/icons/VolumeOff.vue.js +0 -20
- package/src/components/icon/v3/icons/VolumeUp.vue.js +0 -20
- package/src/components/icon/v3/icons/Warning.vue.js +0 -18
- package/src/components/icon/v3/icons/Warning2.vue.js +0 -20
- package/src/components/icon/v3/icons/Warning3.vue.js +0 -21
- package/src/components/icon/v3/icons/WarningCircle.vue.js +0 -21
- package/src/components/icon/v3/icons/WarningOctagon.vue.js +0 -21
- package/src/components/icon/v3/icons/WebApp.vue.js +0 -18
- package/src/components/icon/v3/icons/Widget.vue.js +0 -22
- package/src/components/icon/v3/icons/Widgets.vue.js +0 -18
- package/src/components/icon/v3/icons/WidgetsFill.vue.js +0 -18
- package/src/components/icon/v3/icons/WidgetsFlatSquares.vue.js +0 -49
- package/src/components/icon/v3/icons/Widgetsz.vue.js +0 -25
- package/src/components/icon/v3/icons/WifiProtectedSetup.vue.js +0 -20
- package/src/components/icon/v4/IconFlag.vue.js +0 -7
- package/src/components/icon/v4/IconFlag.vue2.js +0 -32
- package/src/components/icon/v4/IconV4.vue.js +0 -7
- package/src/components/icon/v4/IconV4.vue2.js +0 -68
- package/src/components/includeExclude/IncludeExclude.vue.js +0 -7
- package/src/components/includeExclude/IncludeExclude.vue2.js +0 -431
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue2.js +0 -116
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +0 -109
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue2.js +0 -149
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue2.js +0 -466
- package/src/components/includeExclude/IncludeExcludeOption.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeOption.vue2.js +0 -115
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -7
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +0 -106
- package/src/components/inlineCopy/InlineCopy.vue.js +0 -7
- package/src/components/inlineCopy/InlineCopy.vue2.js +0 -72
- package/src/components/input/v3/DollarInput.vue.js +0 -7
- package/src/components/input/v3/DollarInput.vue2.js +0 -32
- package/src/components/input/v3/Input.vue.js +0 -7
- package/src/components/input/v3/Input.vue2.js +0 -211
- package/src/components/input/v3/PasswordInput.vue.js +0 -7
- package/src/components/input/v3/PasswordInput.vue2.js +0 -34
- package/src/components/input/v3/PercentageInput.vue.js +0 -7
- package/src/components/input/v3/PercentageInput.vue2.js +0 -32
- package/src/components/input/v4/TextField.vue.js +0 -7
- package/src/components/input/v4/TextField.vue2.js +0 -216
- package/src/components/layout/FoldableSection.vue.js +0 -7
- package/src/components/layout/FoldableSection.vue2.js +0 -61
- package/src/components/loader/v4/Loader.vue.js +0 -7
- package/src/components/loader/v4/Loader.vue2.js +0 -48
- package/src/components/menu/Menu.vue.js +0 -8
- package/src/components/menu/Menu.vue2.js +0 -62
- package/src/components/menuItem/MenuItem.vue.js +0 -7
- package/src/components/menuItem/MenuItem.vue2.js +0 -23
- package/src/components/multibar/MultiBar.vue.js +0 -7
- package/src/components/multibar/MultiBar.vue2.js +0 -103
- package/src/components/multibar/MultiBarMenu.vue.js +0 -7
- package/src/components/multibar/MultiBarMenu.vue2.js +0 -60
- package/src/components/popover/Popover.vue.js +0 -8
- package/src/components/popover/Popover.vue2.js +0 -38
- package/src/components/radioButton/v3/RadioButton.vue.js +0 -7
- package/src/components/radioButton/v3/RadioButton.vue2.js +0 -79
- package/src/components/radioButton/v3/RadioGroup.vue.js +0 -7
- package/src/components/radioButton/v3/RadioGroup.vue2.js +0 -29
- package/src/components/radioButton/v4/RadioButtonV4.vue.js +0 -7
- package/src/components/radioButton/v4/RadioButtonV4.vue2.js +0 -67
- package/src/components/radioButton/v4/RadioGroupV4.vue.js +0 -7
- package/src/components/radioButton/v4/RadioGroupV4.vue2.js +0 -29
- package/src/components/search/v3/Search.vue.js +0 -7
- package/src/components/search/v3/Search.vue2.js +0 -62
- package/src/components/search/v4/SearchV4.vue.js +0 -7
- package/src/components/search/v4/SearchV4.vue2.js +0 -59
- package/src/components/shared/FieldHelpText.vue.js +0 -7
- package/src/components/shared/FieldHelpText.vue2.js +0 -43
- package/src/components/shared/FieldLabel.vue.js +0 -7
- package/src/components/shared/FieldLabel.vue2.js +0 -79
- package/src/components/shared/FieldMaxLength.vue.js +0 -7
- package/src/components/shared/FieldMaxLength.vue2.js +0 -24
- package/src/components/skeleton/v3/Skeleton.vue.js +0 -7
- package/src/components/skeleton/v3/Skeleton.vue2.js +0 -18
- package/src/components/skeleton/v4/SkeletonV4.vue.js +0 -7
- package/src/components/skeleton/v4/SkeletonV4.vue2.js +0 -23
- package/src/components/snackbar/v3/Snackbar.vue.js +0 -7
- package/src/components/snackbar/v3/Snackbar.vue2.js +0 -129
- package/src/components/snackbar/v4/SnackbarV4.vue.js +0 -7
- package/src/components/snackbar/v4/SnackbarV4.vue2.js +0 -139
- package/src/components/sortableList/SortableItem.vue.js +0 -7
- package/src/components/sortableList/SortableItem.vue2.js +0 -140
- package/src/components/sortableList/SortableItemLabel.vue.js +0 -7
- package/src/components/sortableList/SortableItemLabel.vue2.js +0 -60
- package/src/components/sortableList/SortableList.vue.js +0 -7
- package/src/components/sortableList/SortableList.vue2.js +0 -120
- package/src/components/statusDot/StatusDot.vue.js +0 -7
- package/src/components/statusDot/StatusDot.vue2.js +0 -15
- package/src/components/switch/v3/Switch.vue.js +0 -7
- package/src/components/switch/v3/Switch.vue2.js +0 -69
- package/src/components/switch/v4/SwitchV4.vue.js +0 -7
- package/src/components/switch/v4/SwitchV4.vue2.js +0 -42
- package/src/components/table/v3/SortOrderIcon.vue.js +0 -21
- package/src/components/table/v3/Table.vue.js +0 -7
- package/src/components/table/v3/Table.vue2.js +0 -248
- package/src/components/table/v3/TableHeaderSorter.vue.js +0 -7
- package/src/components/table/v3/TableHeaderSorter.vue2.js +0 -23
- package/src/components/table/v4/DataGrid.vue.js +0 -7
- package/src/components/table/v4/DataGrid.vue2.js +0 -337
- package/src/components/table/v4/DataGridMenu.vue.js +0 -7
- package/src/components/table/v4/DataGridMenu.vue2.js +0 -65
- package/src/components/table/v4/DataGridRowsCounter.vue.js +0 -7
- package/src/components/table/v4/DataGridRowsCounter.vue2.js +0 -45
- package/src/components/table/v4/ExpandRowToggle.vue.js +0 -7
- package/src/components/table/v4/ExpandRowToggle.vue2.js +0 -24
- package/src/components/table/v4/HelpIcon.vue.js +0 -7
- package/src/components/table/v4/HelpIcon.vue2.js +0 -33
- package/src/components/table/v4/MultipleDataGrid.vue.js +0 -7
- package/src/components/table/v4/MultipleDataGrid.vue2.js +0 -123
- package/src/components/table/v4/SortIcon.vue.js +0 -7
- package/src/components/table/v4/SortIcon.vue2.js +0 -25
- package/src/components/table-cells/v3/Editable.vue.js +0 -7
- package/src/components/table-cells/v3/Editable.vue2.js +0 -43
- package/src/components/table-cells/v4/EditableV4.vue.js +0 -7
- package/src/components/table-cells/v4/EditableV4.vue2.js +0 -55
- package/src/components/tabs/v3/Tabs.vue.js +0 -7
- package/src/components/tabs/v3/Tabs.vue2.js +0 -85
- package/src/components/tabs/v4/TabsV4.vue.js +0 -7
- package/src/components/tabs/v4/TabsV4.vue2.js +0 -75
- package/src/components/textArea/v3/TextArea.vue.js +0 -7
- package/src/components/textArea/v3/TextArea.vue2.js +0 -65
- package/src/components/textArea/v4/TextAreaV4.vue.js +0 -7
- package/src/components/textArea/v4/TextAreaV4.vue2.js +0 -74
- package/src/components/toggle/v3/Toggle.vue.js +0 -7
- package/src/components/toggle/v3/Toggle.vue2.js +0 -95
- package/src/components/toggle/v4/ToggleV4.vue.js +0 -7
- package/src/components/toggle/v4/ToggleV4.vue2.js +0 -96
- package/src/components/tooltip/v3/TextWithTitleContent.vue.js +0 -7
- package/src/components/tooltip/v3/TextWithTitleContent.vue2.js +0 -46
- package/src/components/tooltip/v3/Tooltip.vue.js +0 -8
- package/src/components/tooltip/v3/Tooltip.vue2.js +0 -87
- package/src/components/tooltip/v4/TextWithTitleContent.vue.js +0 -7
- package/src/components/tooltip/v4/TextWithTitleContent.vue2.js +0 -36
- package/src/components/tooltip/v4/TooltipV4.vue.js +0 -8
- package/src/components/tooltip/v4/TooltipV4.vue2.js +0 -70
- package/src/components/typography/Heading.vue.js +0 -7
- package/src/components/typography/Heading.vue2.js +0 -25
- package/src/components/typography/Text.vue.js +0 -7
- package/src/components/typography/Text.vue2.js +0 -23
- package/src/components/typography/v4/Typography.vue.js +0 -7
- package/src/components/typography/v4/Typography.vue2.js +0 -58
- package/src/index.js +0 -215
- package/src/testids/index.js +0 -35
- /package/{src/components → components}/ThemeWrapper/ThemeStrore.js +0 -0
- /package/{src/components → components}/ThemeWrapper/index.js +0 -0
- /package/{src/components → components}/alert/index.js +0 -0
- /package/{src/components → components}/appHeader/index.js +0 -0
- /package/{src/components → components}/appIcon/index.js +0 -0
- /package/{src/components → components}/appTrigger/index.js +0 -0
- /package/{src/components → components}/autocomplete/index.js +0 -0
- /package/{src/components → components}/autocompleteDropdown/consts.js +0 -0
- /package/{src/components → components}/autocompleteDropdown/index.js +0 -0
- /package/{src/components → components}/autocompleteDropdown/useKeyboardNavigation.js +0 -0
- /package/{src/components → components}/banner/index.js +0 -0
- /package/{src/components → components}/button/common/consts.js +0 -0
- /package/{src/components → components}/button/v3/index.js +0 -0
- /package/{src/components → components}/button/v4/index.js +0 -0
- /package/{src/components → components}/chart/composables/useChartValues.js +0 -0
- /package/{src/components → components}/chart/composables/useTooltipPosition.js +0 -0
- /package/{src/components → components}/chart/consts.js +0 -0
- /package/{src/components → components}/chart/index.js +0 -0
- /package/{src/components → components}/chart/plugins/HoverVerticalLine.js +0 -0
- /package/{src/components → components}/chart/types.js +0 -0
- /package/{src/components → components}/chart/utils/formatNumber.js +0 -0
- /package/{src/components → components}/chart/utils/utils.js +0 -0
- /package/{src/components → components}/checkbox/common/Checkbox.common.js +0 -0
- /package/{src/components → components}/checkbox/v3/index.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/CheckedDisabledState.vue.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/CheckedDisabledState.vue2.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/CheckedState.vue.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/CheckedState.vue2.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/IndeterminateState.vue.js +0 -0
- /package/{src/components → components}/checkbox/v4/icons/IndeterminateState.vue2.js +0 -0
- /package/{src/components → components}/checkbox/v4/index.js +0 -0
- /package/{src/components → components}/chip/v3/index.js +0 -0
- /package/{src/components → components}/chip/v4/index.js +0 -0
- /package/{src/components → components}/cssBaseline/index.js +0 -0
- /package/{src/components → components}/datePicker/common/DatePicker.common.js +0 -0
- /package/{src/components → components}/datePicker/common/DatePickerMonth.common.js +0 -0
- /package/{src/components → components}/datePicker/v3/index.js +0 -0
- /package/{src/components → components}/datePicker/v4/index.js +0 -0
- /package/{src/components → components}/dateRange/common/CalendarMonth.common.js +0 -0
- /package/{src/components → components}/dateRange/common/DateRange.common.js +0 -0
- /package/{src/components → components}/dateRange/common/DateServices.common.js +0 -0
- /package/{src/components → components}/dateRange/common/consts.common.js +0 -0
- /package/{src/components → components}/dateRange/v3/index.js +0 -0
- /package/{src/components → components}/dateRange/v4/index.js +0 -0
- /package/{src/components → components}/dialog/common/Dialog.common.js +0 -0
- /package/{src/components → components}/dialog/common/Reason.js +0 -0
- /package/{src/components → components}/dialog/v3/index.js +0 -0
- /package/{src/components → components}/dialog/v4/index.js +0 -0
- /package/{src/components → components}/dropdown/common/Dropdown.common.js +0 -0
- /package/{src/components → components}/dropdown/common/DropdownContext.js +0 -0
- /package/{src/components → components}/dropdown/common/Option.common.js +0 -0
- /package/{src/components → components}/dropdown/composables/useChildOptions.js +0 -0
- /package/{src/components → components}/dropdown/v3/index.js +0 -0
- /package/{src/components → components}/dropdown/v4/Dropdown.types.js +0 -0
- /package/{src/components → components}/dropdown/v4/index.js +0 -0
- /package/{src/components → components}/emptyState/v3/index.js +0 -0
- /package/{src/components → components}/emptyState/v4/index.js +0 -0
- /package/{src/components → components}/filterDropdown/index.js +0 -0
- /package/{src/components → components}/filtersPanel/v3/index.js +0 -0
- /package/{src/components → components}/filtersPanel/v3/useHiddenFilter.js +0 -0
- /package/{src/components → components}/filtersPanel/v4/index.js +0 -0
- /package/{src/components → components}/floatingToolbar/index.js +0 -0
- /package/{src/components → components}/forms/index.js +0 -0
- /package/{src/components → components}/icon/v3/icons/index.js +0 -0
- /package/{src/components → components}/icon/v3/index.js +0 -0
- /package/{src/components → components}/icon/v4/consts.js +0 -0
- /package/{src/components → components}/icon/v4/index.js +0 -0
- /package/{src/components → components}/includeExclude/IncludeExcludeContext.js +0 -0
- /package/{src/components → components}/includeExclude/index.js +0 -0
- /package/{src/components → components}/inlineCopy/index.js +0 -0
- /package/{src/components → components}/input/common/Input.common.js +0 -0
- /package/{src/components → components}/input/v3/index.js +0 -0
- /package/{src/components → components}/input/v4/index.js +0 -0
- /package/{src/components → components}/layout/index.js +0 -0
- /package/{src/components → components}/menu/index.js +0 -0
- /package/{src/components → components}/menuItem/index.js +0 -0
- /package/{src/components → components}/multibar/index.js +0 -0
- /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
- /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
- /package/{src/components/popover → components/popover/v3}/index.js +0 -0
- /package/{src/components → components}/radioButton/common/radioGroup.common.js +0 -0
- /package/{src/components → components}/radioButton/common/useRadio.js +0 -0
- /package/{src/components → components}/radioButton/v3/index.js +0 -0
- /package/{src/components → components}/radioButton/v4/index.js +0 -0
- /package/{src/components → components}/search/common/Search.common.js +0 -0
- /package/{src/components → components}/search/v3/index.js +0 -0
- /package/{src/components → components}/search/v4/index.js +0 -0
- /package/{src/components → components}/skeleton/v3/index.js +0 -0
- /package/{src/components → components}/skeleton/v4/index.js +0 -0
- /package/{src/components → components}/snackbar/common/notify.js +0 -0
- /package/{src/components → components}/snackbar/common/snackbar.common.js +0 -0
- /package/{src/components → components}/snackbar/common/snackbar.types.js +0 -0
- /package/{src/components → components}/snackbar/v3/index.js +0 -0
- /package/{src/components → components}/snackbar/v4/index.js +0 -0
- /package/{src/components → components}/sortableList/composables/useHoverEffect.js +0 -0
- /package/{src/components → components}/sortableList/consts.js +0 -0
- /package/{src/components → components}/sortableList/index.js +0 -0
- /package/{src/components → components}/statusDot/index.js +0 -0
- /package/{src/components → components}/switch/v3/index.js +0 -0
- /package/{src/components → components}/switch/v4/index.js +0 -0
- /package/{src/components → components}/table/common/Table.common.js +0 -0
- /package/{src/components → components}/table/common/TableContext.js +0 -0
- /package/{src/components → components}/table/v3/index.js +0 -0
- /package/{src/components → components}/table/v4/index.js +0 -0
- /package/{src/components → components}/table-cells/common/Editable.common.js +0 -0
- /package/{src/components → components}/table-cells/common/EditableContext.js +0 -0
- /package/{src/components → components}/table-cells/v3/index.js +0 -0
- /package/{src/components → components}/table-cells/v4/index.js +0 -0
- /package/{src/components → components}/tabs/common/tabsCommon.js +0 -0
- /package/{src/components → components}/tabs/v3/index.js +0 -0
- /package/{src/components → components}/tabs/v4/index.js +0 -0
- /package/{src/components → components}/textArea/v3/index.js +0 -0
- /package/{src/components → components}/textArea/v4/index.js +0 -0
- /package/{src/components → components}/toggle/v3/index.js +0 -0
- /package/{src/components → components}/toggle/v4/index.js +0 -0
- /package/{src/components → components}/tooltip/common/Tooltip.common.js +0 -0
- /package/{src/components → components}/tooltip/v3/index.js +0 -0
- /package/{src/components → components}/tooltip/v4/index.js +0 -0
- /package/{src/components → components}/typography/index.js +0 -0
- /package/{src/components → components}/typography/v4/index.js +0 -0
- /package/{src/composables → composables}/useFormValidation.js +0 -0
- /package/{src/composables → composables}/useId.js +0 -0
- /package/{src/composables → composables}/useIsFocusVisible.js +0 -0
- /package/{src/composables → composables}/useSearch.js +0 -0
- /package/{src/composables → composables}/useStorage.js +0 -0
- /package/{src/composables → composables}/useToggle.js +0 -0
- /package/{src/consts → consts}/colors.js +0 -0
- /package/{src/consts → consts}/regex.js +0 -0
- /package/{src/consts → consts}/style.js +0 -0
- /package/{src/utils → utils}/array.js +0 -0
- /package/{src/utils → utils}/color.js +0 -0
- /package/{src/utils → utils}/object.js +0 -0
- /package/{src/utils → utils}/search.js +0 -0
- /package/{src/utils → utils}/string.js +0 -0
- /package/{src/utils → utils}/style.js +0 -0
- /package/{src/utils → utils}/testIds.js +0 -0
- /package/{src/utils → utils}/text.js +0 -0
package/index.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export * from '@/composables/useId';
|
|
|
10
10
|
export * from '@/components/filterDropdown';
|
|
11
11
|
export * from '@/components/typography';
|
|
12
12
|
export * from '@/components/typography/v4';
|
|
13
|
-
export * from '@/components/popover';
|
|
14
13
|
export * from '@/components/multibar';
|
|
15
14
|
export * from '@/components/layout';
|
|
16
15
|
export * from '@/components/forms';
|
|
@@ -21,6 +20,420 @@ import * as tableV4 from '@/components/table/v4';
|
|
|
21
20
|
import * as tableCellsV3 from '@/components/table-cells/v3';
|
|
22
21
|
import * as snackbarV3 from '@/components/snackbar/v3';
|
|
23
22
|
declare const _default: {
|
|
23
|
+
Popover: {
|
|
24
|
+
new (...args: any[]): {
|
|
25
|
+
$: import("vue").ComponentInternalInstance;
|
|
26
|
+
$data: {};
|
|
27
|
+
$props: Partial<{
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
testId: string;
|
|
30
|
+
placement: import("floating-vue").Placement;
|
|
31
|
+
distance: number;
|
|
32
|
+
popperClass: string;
|
|
33
|
+
autoHide: boolean;
|
|
34
|
+
skidding: number;
|
|
35
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
36
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
disabled: {
|
|
38
|
+
type: import("vue").PropType<boolean>;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
testId: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
placement: {
|
|
46
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
distance: {
|
|
50
|
+
type: import("vue").PropType<number>;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
popperClass: {
|
|
54
|
+
type: import("vue").PropType<string>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
autoHide: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
skidding: {
|
|
62
|
+
type: import("vue").PropType<number>;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
trigger: {
|
|
66
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
|
|
70
|
+
$attrs: {
|
|
71
|
+
[x: string]: unknown;
|
|
72
|
+
};
|
|
73
|
+
$refs: {
|
|
74
|
+
[x: string]: unknown;
|
|
75
|
+
};
|
|
76
|
+
$slots: Readonly<{
|
|
77
|
+
[name: string]: import("vue").Slot;
|
|
78
|
+
}>;
|
|
79
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
80
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
81
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
82
|
+
$el: any;
|
|
83
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
disabled: {
|
|
85
|
+
type: import("vue").PropType<boolean>;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
testId: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
placement: {
|
|
93
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
distance: {
|
|
97
|
+
type: import("vue").PropType<number>;
|
|
98
|
+
default: number;
|
|
99
|
+
};
|
|
100
|
+
popperClass: {
|
|
101
|
+
type: import("vue").PropType<string>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
autoHide: {
|
|
105
|
+
type: import("vue").PropType<boolean>;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
skidding: {
|
|
109
|
+
type: import("vue").PropType<number>;
|
|
110
|
+
default: number;
|
|
111
|
+
};
|
|
112
|
+
trigger: {
|
|
113
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
117
|
+
disabled: boolean;
|
|
118
|
+
testId: string;
|
|
119
|
+
placement: import("floating-vue").Placement;
|
|
120
|
+
distance: number;
|
|
121
|
+
popperClass: string;
|
|
122
|
+
autoHide: boolean;
|
|
123
|
+
skidding: number;
|
|
124
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
125
|
+
}, {}, string> & {
|
|
126
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
127
|
+
created?: (() => void) | (() => void)[];
|
|
128
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
129
|
+
mounted?: (() => void) | (() => void)[];
|
|
130
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
131
|
+
updated?: (() => void) | (() => void)[];
|
|
132
|
+
activated?: (() => void) | (() => void)[];
|
|
133
|
+
deactivated?: (() => void) | (() => void)[];
|
|
134
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
135
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
136
|
+
destroyed?: (() => void) | (() => void)[];
|
|
137
|
+
unmounted?: (() => void) | (() => void)[];
|
|
138
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
139
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
140
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
141
|
+
};
|
|
142
|
+
$forceUpdate: () => void;
|
|
143
|
+
$nextTick: typeof import("vue").nextTick;
|
|
144
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
145
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
146
|
+
disabled: {
|
|
147
|
+
type: import("vue").PropType<boolean>;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
testId: {
|
|
151
|
+
type: import("vue").PropType<string>;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
placement: {
|
|
155
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
156
|
+
default: string;
|
|
157
|
+
};
|
|
158
|
+
distance: {
|
|
159
|
+
type: import("vue").PropType<number>;
|
|
160
|
+
default: number;
|
|
161
|
+
};
|
|
162
|
+
popperClass: {
|
|
163
|
+
type: import("vue").PropType<string>;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
autoHide: {
|
|
167
|
+
type: import("vue").PropType<boolean>;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
170
|
+
skidding: {
|
|
171
|
+
type: import("vue").PropType<number>;
|
|
172
|
+
default: number;
|
|
173
|
+
};
|
|
174
|
+
trigger: {
|
|
175
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
176
|
+
default: string;
|
|
177
|
+
};
|
|
178
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
179
|
+
__isFragment?: never;
|
|
180
|
+
__isTeleport?: never;
|
|
181
|
+
__isSuspense?: never;
|
|
182
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
183
|
+
disabled: {
|
|
184
|
+
type: import("vue").PropType<boolean>;
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
187
|
+
testId: {
|
|
188
|
+
type: import("vue").PropType<string>;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
placement: {
|
|
192
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
distance: {
|
|
196
|
+
type: import("vue").PropType<number>;
|
|
197
|
+
default: number;
|
|
198
|
+
};
|
|
199
|
+
popperClass: {
|
|
200
|
+
type: import("vue").PropType<string>;
|
|
201
|
+
default: string;
|
|
202
|
+
};
|
|
203
|
+
autoHide: {
|
|
204
|
+
type: import("vue").PropType<boolean>;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
207
|
+
skidding: {
|
|
208
|
+
type: import("vue").PropType<number>;
|
|
209
|
+
default: number;
|
|
210
|
+
};
|
|
211
|
+
trigger: {
|
|
212
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
213
|
+
default: string;
|
|
214
|
+
};
|
|
215
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
216
|
+
disabled: boolean;
|
|
217
|
+
testId: string;
|
|
218
|
+
placement: import("floating-vue").Placement;
|
|
219
|
+
distance: number;
|
|
220
|
+
popperClass: string;
|
|
221
|
+
autoHide: boolean;
|
|
222
|
+
skidding: number;
|
|
223
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
224
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
225
|
+
$slots: {
|
|
226
|
+
trigger?(_: {}): any;
|
|
227
|
+
content?(_: {}): any;
|
|
228
|
+
};
|
|
229
|
+
});
|
|
230
|
+
PopoverTypes: () => ({
|
|
231
|
+
new (...args: any[]): {
|
|
232
|
+
$: import("vue").ComponentInternalInstance;
|
|
233
|
+
$data: {};
|
|
234
|
+
$props: Partial<{
|
|
235
|
+
disabled: boolean;
|
|
236
|
+
testId: string;
|
|
237
|
+
placement: import("floating-vue").Placement;
|
|
238
|
+
distance: number;
|
|
239
|
+
popperClass: string;
|
|
240
|
+
autoHide: boolean;
|
|
241
|
+
skidding: number;
|
|
242
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
243
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
244
|
+
disabled: {
|
|
245
|
+
type: import("vue").PropType<boolean>;
|
|
246
|
+
default: boolean;
|
|
247
|
+
};
|
|
248
|
+
testId: {
|
|
249
|
+
type: import("vue").PropType<string>;
|
|
250
|
+
default: string;
|
|
251
|
+
};
|
|
252
|
+
placement: {
|
|
253
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
254
|
+
default: string;
|
|
255
|
+
};
|
|
256
|
+
distance: {
|
|
257
|
+
type: import("vue").PropType<number>;
|
|
258
|
+
default: number;
|
|
259
|
+
};
|
|
260
|
+
popperClass: {
|
|
261
|
+
type: import("vue").PropType<string>;
|
|
262
|
+
default: string;
|
|
263
|
+
};
|
|
264
|
+
autoHide: {
|
|
265
|
+
type: import("vue").PropType<boolean>;
|
|
266
|
+
default: boolean;
|
|
267
|
+
};
|
|
268
|
+
skidding: {
|
|
269
|
+
type: import("vue").PropType<number>;
|
|
270
|
+
default: number;
|
|
271
|
+
};
|
|
272
|
+
trigger: {
|
|
273
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
274
|
+
default: string;
|
|
275
|
+
};
|
|
276
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
|
|
277
|
+
$attrs: {
|
|
278
|
+
[x: string]: unknown;
|
|
279
|
+
};
|
|
280
|
+
$refs: {
|
|
281
|
+
[x: string]: unknown;
|
|
282
|
+
};
|
|
283
|
+
$slots: Readonly<{
|
|
284
|
+
[name: string]: import("vue").Slot;
|
|
285
|
+
}>;
|
|
286
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
287
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
288
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
289
|
+
$el: any;
|
|
290
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
291
|
+
disabled: {
|
|
292
|
+
type: import("vue").PropType<boolean>;
|
|
293
|
+
default: boolean;
|
|
294
|
+
};
|
|
295
|
+
testId: {
|
|
296
|
+
type: import("vue").PropType<string>;
|
|
297
|
+
default: string;
|
|
298
|
+
};
|
|
299
|
+
placement: {
|
|
300
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
301
|
+
default: string;
|
|
302
|
+
};
|
|
303
|
+
distance: {
|
|
304
|
+
type: import("vue").PropType<number>;
|
|
305
|
+
default: number;
|
|
306
|
+
};
|
|
307
|
+
popperClass: {
|
|
308
|
+
type: import("vue").PropType<string>;
|
|
309
|
+
default: string;
|
|
310
|
+
};
|
|
311
|
+
autoHide: {
|
|
312
|
+
type: import("vue").PropType<boolean>;
|
|
313
|
+
default: boolean;
|
|
314
|
+
};
|
|
315
|
+
skidding: {
|
|
316
|
+
type: import("vue").PropType<number>;
|
|
317
|
+
default: number;
|
|
318
|
+
};
|
|
319
|
+
trigger: {
|
|
320
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
321
|
+
default: string;
|
|
322
|
+
};
|
|
323
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
324
|
+
disabled: boolean;
|
|
325
|
+
testId: string;
|
|
326
|
+
placement: import("floating-vue").Placement;
|
|
327
|
+
distance: number;
|
|
328
|
+
popperClass: string;
|
|
329
|
+
autoHide: boolean;
|
|
330
|
+
skidding: number;
|
|
331
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
332
|
+
}, {}, string> & {
|
|
333
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
334
|
+
created?: (() => void) | (() => void)[];
|
|
335
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
336
|
+
mounted?: (() => void) | (() => void)[];
|
|
337
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
338
|
+
updated?: (() => void) | (() => void)[];
|
|
339
|
+
activated?: (() => void) | (() => void)[];
|
|
340
|
+
deactivated?: (() => void) | (() => void)[];
|
|
341
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
342
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
343
|
+
destroyed?: (() => void) | (() => void)[];
|
|
344
|
+
unmounted?: (() => void) | (() => void)[];
|
|
345
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
346
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
347
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
348
|
+
};
|
|
349
|
+
$forceUpdate: () => void;
|
|
350
|
+
$nextTick: typeof import("vue").nextTick;
|
|
351
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
352
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
353
|
+
disabled: {
|
|
354
|
+
type: import("vue").PropType<boolean>;
|
|
355
|
+
default: boolean;
|
|
356
|
+
};
|
|
357
|
+
testId: {
|
|
358
|
+
type: import("vue").PropType<string>;
|
|
359
|
+
default: string;
|
|
360
|
+
};
|
|
361
|
+
placement: {
|
|
362
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
363
|
+
default: string;
|
|
364
|
+
};
|
|
365
|
+
distance: {
|
|
366
|
+
type: import("vue").PropType<number>;
|
|
367
|
+
default: number;
|
|
368
|
+
};
|
|
369
|
+
popperClass: {
|
|
370
|
+
type: import("vue").PropType<string>;
|
|
371
|
+
default: string;
|
|
372
|
+
};
|
|
373
|
+
autoHide: {
|
|
374
|
+
type: import("vue").PropType<boolean>;
|
|
375
|
+
default: boolean;
|
|
376
|
+
};
|
|
377
|
+
skidding: {
|
|
378
|
+
type: import("vue").PropType<number>;
|
|
379
|
+
default: number;
|
|
380
|
+
};
|
|
381
|
+
trigger: {
|
|
382
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
383
|
+
default: string;
|
|
384
|
+
};
|
|
385
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
386
|
+
__isFragment?: never;
|
|
387
|
+
__isTeleport?: never;
|
|
388
|
+
__isSuspense?: never;
|
|
389
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
390
|
+
disabled: {
|
|
391
|
+
type: import("vue").PropType<boolean>;
|
|
392
|
+
default: boolean;
|
|
393
|
+
};
|
|
394
|
+
testId: {
|
|
395
|
+
type: import("vue").PropType<string>;
|
|
396
|
+
default: string;
|
|
397
|
+
};
|
|
398
|
+
placement: {
|
|
399
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
400
|
+
default: string;
|
|
401
|
+
};
|
|
402
|
+
distance: {
|
|
403
|
+
type: import("vue").PropType<number>;
|
|
404
|
+
default: number;
|
|
405
|
+
};
|
|
406
|
+
popperClass: {
|
|
407
|
+
type: import("vue").PropType<string>;
|
|
408
|
+
default: string;
|
|
409
|
+
};
|
|
410
|
+
autoHide: {
|
|
411
|
+
type: import("vue").PropType<boolean>;
|
|
412
|
+
default: boolean;
|
|
413
|
+
};
|
|
414
|
+
skidding: {
|
|
415
|
+
type: import("vue").PropType<number>;
|
|
416
|
+
default: number;
|
|
417
|
+
};
|
|
418
|
+
trigger: {
|
|
419
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
420
|
+
default: string;
|
|
421
|
+
};
|
|
422
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
423
|
+
disabled: boolean;
|
|
424
|
+
testId: string;
|
|
425
|
+
placement: import("floating-vue").Placement;
|
|
426
|
+
distance: number;
|
|
427
|
+
popperClass: string;
|
|
428
|
+
autoHide: boolean;
|
|
429
|
+
skidding: number;
|
|
430
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
431
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
432
|
+
$slots: {
|
|
433
|
+
trigger?(_: {}): any;
|
|
434
|
+
content?(_: {}): any;
|
|
435
|
+
};
|
|
436
|
+
}))[];
|
|
24
437
|
DateRange: {
|
|
25
438
|
new (...args: any[]): {
|
|
26
439
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -3011,6 +3424,10 @@ declare const _default: {
|
|
|
3011
3424
|
type: import("vue").PropType<string>;
|
|
3012
3425
|
default: string;
|
|
3013
3426
|
};
|
|
3427
|
+
maxLengthCounterPosition: {
|
|
3428
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3429
|
+
default: string;
|
|
3430
|
+
};
|
|
3014
3431
|
feedbackText: {
|
|
3015
3432
|
type: import("vue").PropType<string>;
|
|
3016
3433
|
default: string;
|
|
@@ -3070,6 +3487,10 @@ declare const _default: {
|
|
|
3070
3487
|
type: import("vue").PropType<string>;
|
|
3071
3488
|
default: string;
|
|
3072
3489
|
};
|
|
3490
|
+
maxLengthCounterPosition: {
|
|
3491
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3492
|
+
default: string;
|
|
3493
|
+
};
|
|
3073
3494
|
feedbackText: {
|
|
3074
3495
|
type: import("vue").PropType<string>;
|
|
3075
3496
|
default: string;
|
|
@@ -3096,6 +3517,7 @@ declare const _default: {
|
|
|
3096
3517
|
maxLength: number;
|
|
3097
3518
|
modelValue: string;
|
|
3098
3519
|
placeholder: string;
|
|
3520
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
3099
3521
|
feedbackText: string;
|
|
3100
3522
|
feedbackVariant: "success" | "warning" | "error";
|
|
3101
3523
|
showFeedbackTextIcon: boolean;
|
|
@@ -3145,6 +3567,10 @@ declare const _default: {
|
|
|
3145
3567
|
type: import("vue").PropType<string>;
|
|
3146
3568
|
default: string;
|
|
3147
3569
|
};
|
|
3570
|
+
maxLengthCounterPosition: {
|
|
3571
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3572
|
+
default: string;
|
|
3573
|
+
};
|
|
3148
3574
|
feedbackText: {
|
|
3149
3575
|
type: import("vue").PropType<string>;
|
|
3150
3576
|
default: string;
|
|
@@ -3204,6 +3630,10 @@ declare const _default: {
|
|
|
3204
3630
|
type: import("vue").PropType<string>;
|
|
3205
3631
|
default: string;
|
|
3206
3632
|
};
|
|
3633
|
+
maxLengthCounterPosition: {
|
|
3634
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3635
|
+
default: string;
|
|
3636
|
+
};
|
|
3207
3637
|
feedbackText: {
|
|
3208
3638
|
type: import("vue").PropType<string>;
|
|
3209
3639
|
default: string;
|
|
@@ -3230,6 +3660,7 @@ declare const _default: {
|
|
|
3230
3660
|
maxLength: number;
|
|
3231
3661
|
modelValue: string;
|
|
3232
3662
|
placeholder: string;
|
|
3663
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
3233
3664
|
feedbackText: string;
|
|
3234
3665
|
feedbackVariant: "success" | "warning" | "error";
|
|
3235
3666
|
showFeedbackTextIcon: boolean;
|
|
@@ -3773,7 +4204,7 @@ declare const _default: {
|
|
|
3773
4204
|
iconName: string;
|
|
3774
4205
|
iconSize: string;
|
|
3775
4206
|
subtitle: string;
|
|
3776
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4207
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3777
4208
|
buttonText: string;
|
|
3778
4209
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3779
4210
|
title: {
|
|
@@ -3797,7 +4228,7 @@ declare const _default: {
|
|
|
3797
4228
|
default: any;
|
|
3798
4229
|
};
|
|
3799
4230
|
iconType: {
|
|
3800
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4231
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3801
4232
|
default: string;
|
|
3802
4233
|
};
|
|
3803
4234
|
buttonText: {
|
|
@@ -3842,7 +4273,7 @@ declare const _default: {
|
|
|
3842
4273
|
default: any;
|
|
3843
4274
|
};
|
|
3844
4275
|
iconType: {
|
|
3845
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4276
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3846
4277
|
default: string;
|
|
3847
4278
|
};
|
|
3848
4279
|
buttonText: {
|
|
@@ -3859,7 +4290,7 @@ declare const _default: {
|
|
|
3859
4290
|
iconName: string;
|
|
3860
4291
|
iconSize: string;
|
|
3861
4292
|
subtitle: string;
|
|
3862
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4293
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3863
4294
|
buttonText: string;
|
|
3864
4295
|
}, {}, string> & {
|
|
3865
4296
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -3903,7 +4334,7 @@ declare const _default: {
|
|
|
3903
4334
|
default: any;
|
|
3904
4335
|
};
|
|
3905
4336
|
iconType: {
|
|
3906
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4337
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3907
4338
|
default: string;
|
|
3908
4339
|
};
|
|
3909
4340
|
buttonText: {
|
|
@@ -3938,7 +4369,7 @@ declare const _default: {
|
|
|
3938
4369
|
default: any;
|
|
3939
4370
|
};
|
|
3940
4371
|
iconType: {
|
|
3941
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4372
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3942
4373
|
default: string;
|
|
3943
4374
|
};
|
|
3944
4375
|
buttonText: {
|
|
@@ -3955,7 +4386,7 @@ declare const _default: {
|
|
|
3955
4386
|
iconName: string;
|
|
3956
4387
|
iconSize: string;
|
|
3957
4388
|
subtitle: string;
|
|
3958
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4389
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3959
4390
|
buttonText: string;
|
|
3960
4391
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3961
4392
|
$slots: {
|
|
@@ -3973,7 +4404,7 @@ declare const _default: {
|
|
|
3973
4404
|
iconName: string;
|
|
3974
4405
|
iconSize: string;
|
|
3975
4406
|
subtitle: string;
|
|
3976
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4407
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3977
4408
|
buttonText: string;
|
|
3978
4409
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3979
4410
|
title: {
|
|
@@ -3997,7 +4428,7 @@ declare const _default: {
|
|
|
3997
4428
|
default: any;
|
|
3998
4429
|
};
|
|
3999
4430
|
iconType: {
|
|
4000
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4431
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
4001
4432
|
default: string;
|
|
4002
4433
|
};
|
|
4003
4434
|
buttonText: {
|
|
@@ -4042,7 +4473,7 @@ declare const _default: {
|
|
|
4042
4473
|
default: any;
|
|
4043
4474
|
};
|
|
4044
4475
|
iconType: {
|
|
4045
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4476
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
4046
4477
|
default: string;
|
|
4047
4478
|
};
|
|
4048
4479
|
buttonText: {
|
|
@@ -4059,7 +4490,7 @@ declare const _default: {
|
|
|
4059
4490
|
iconName: string;
|
|
4060
4491
|
iconSize: string;
|
|
4061
4492
|
subtitle: string;
|
|
4062
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4493
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
4063
4494
|
buttonText: string;
|
|
4064
4495
|
}, {}, string> & {
|
|
4065
4496
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -4103,7 +4534,7 @@ declare const _default: {
|
|
|
4103
4534
|
default: any;
|
|
4104
4535
|
};
|
|
4105
4536
|
iconType: {
|
|
4106
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4537
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
4107
4538
|
default: string;
|
|
4108
4539
|
};
|
|
4109
4540
|
buttonText: {
|
|
@@ -4138,7 +4569,7 @@ declare const _default: {
|
|
|
4138
4569
|
default: any;
|
|
4139
4570
|
};
|
|
4140
4571
|
iconType: {
|
|
4141
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
4572
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
4142
4573
|
default: string;
|
|
4143
4574
|
};
|
|
4144
4575
|
buttonText: {
|
|
@@ -4155,7 +4586,7 @@ declare const _default: {
|
|
|
4155
4586
|
iconName: string;
|
|
4156
4587
|
iconSize: string;
|
|
4157
4588
|
subtitle: string;
|
|
4158
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
4589
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
4159
4590
|
buttonText: string;
|
|
4160
4591
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4161
4592
|
$slots: {
|
|
@@ -5223,6 +5654,10 @@ declare const _default: {
|
|
|
5223
5654
|
menuItems: tableV4.MenuItem[];
|
|
5224
5655
|
}>;
|
|
5225
5656
|
DataGridRowsCounter: import("vue").DefineComponent<{
|
|
5657
|
+
testId: {
|
|
5658
|
+
type: import("vue").PropType<string>;
|
|
5659
|
+
default: string;
|
|
5660
|
+
};
|
|
5226
5661
|
count: {
|
|
5227
5662
|
type: import("vue").PropType<number>;
|
|
5228
5663
|
default: number;
|
|
@@ -5244,6 +5679,10 @@ declare const _default: {
|
|
|
5244
5679
|
default: string;
|
|
5245
5680
|
};
|
|
5246
5681
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5682
|
+
testId: {
|
|
5683
|
+
type: import("vue").PropType<string>;
|
|
5684
|
+
default: string;
|
|
5685
|
+
};
|
|
5247
5686
|
count: {
|
|
5248
5687
|
type: import("vue").PropType<number>;
|
|
5249
5688
|
default: number;
|
|
@@ -5265,6 +5704,7 @@ declare const _default: {
|
|
|
5265
5704
|
default: string;
|
|
5266
5705
|
};
|
|
5267
5706
|
}>>, {
|
|
5707
|
+
testId: string;
|
|
5268
5708
|
count: number;
|
|
5269
5709
|
totalCount: number;
|
|
5270
5710
|
displayingText: string;
|
|
@@ -5955,6 +6395,10 @@ declare const _default: {
|
|
|
5955
6395
|
rowIndex: number;
|
|
5956
6396
|
menuItems: tableV4.MenuItem[];
|
|
5957
6397
|
}> | import("vue").DefineComponent<{
|
|
6398
|
+
testId: {
|
|
6399
|
+
type: import("vue").PropType<string>;
|
|
6400
|
+
default: string;
|
|
6401
|
+
};
|
|
5958
6402
|
count: {
|
|
5959
6403
|
type: import("vue").PropType<number>;
|
|
5960
6404
|
default: number;
|
|
@@ -5976,6 +6420,10 @@ declare const _default: {
|
|
|
5976
6420
|
default: string;
|
|
5977
6421
|
};
|
|
5978
6422
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6423
|
+
testId: {
|
|
6424
|
+
type: import("vue").PropType<string>;
|
|
6425
|
+
default: string;
|
|
6426
|
+
};
|
|
5979
6427
|
count: {
|
|
5980
6428
|
type: import("vue").PropType<number>;
|
|
5981
6429
|
default: number;
|
|
@@ -5997,6 +6445,7 @@ declare const _default: {
|
|
|
5997
6445
|
default: string;
|
|
5998
6446
|
};
|
|
5999
6447
|
}>>, {
|
|
6448
|
+
testId: string;
|
|
6000
6449
|
count: number;
|
|
6001
6450
|
totalCount: number;
|
|
6002
6451
|
displayingText: string;
|
|
@@ -8359,18 +8808,22 @@ declare const _default: {
|
|
|
8359
8808
|
$: import("vue").ComponentInternalInstance;
|
|
8360
8809
|
$data: {};
|
|
8361
8810
|
$props: Partial<{
|
|
8811
|
+
container: string;
|
|
8362
8812
|
header: string;
|
|
8363
8813
|
text: string;
|
|
8364
8814
|
theme: string;
|
|
8365
8815
|
disabled: boolean;
|
|
8366
8816
|
testId: string;
|
|
8367
|
-
container: string;
|
|
8368
8817
|
delay: number;
|
|
8369
8818
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8370
8819
|
forceShowWithTruncate: boolean;
|
|
8371
8820
|
placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8372
8821
|
distance: string | number;
|
|
8373
8822
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8823
|
+
container: {
|
|
8824
|
+
type: import("vue").PropType<string>;
|
|
8825
|
+
default: string;
|
|
8826
|
+
};
|
|
8374
8827
|
header: {
|
|
8375
8828
|
type: import("vue").PropType<string>;
|
|
8376
8829
|
default: any;
|
|
@@ -8391,10 +8844,6 @@ declare const _default: {
|
|
|
8391
8844
|
type: import("vue").PropType<string>;
|
|
8392
8845
|
default: string;
|
|
8393
8846
|
};
|
|
8394
|
-
container: {
|
|
8395
|
-
type: import("vue").PropType<string>;
|
|
8396
|
-
default: string;
|
|
8397
|
-
};
|
|
8398
8847
|
delay: {
|
|
8399
8848
|
type: import("vue").PropType<number>;
|
|
8400
8849
|
default: number;
|
|
@@ -8417,7 +8866,7 @@ declare const _default: {
|
|
|
8417
8866
|
};
|
|
8418
8867
|
}>> & {
|
|
8419
8868
|
onShow?: () => any;
|
|
8420
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "
|
|
8869
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
8421
8870
|
$attrs: {
|
|
8422
8871
|
[x: string]: unknown;
|
|
8423
8872
|
};
|
|
@@ -8432,6 +8881,10 @@ declare const _default: {
|
|
|
8432
8881
|
$emit: (event: "show") => void;
|
|
8433
8882
|
$el: any;
|
|
8434
8883
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8884
|
+
container: {
|
|
8885
|
+
type: import("vue").PropType<string>;
|
|
8886
|
+
default: string;
|
|
8887
|
+
};
|
|
8435
8888
|
header: {
|
|
8436
8889
|
type: import("vue").PropType<string>;
|
|
8437
8890
|
default: any;
|
|
@@ -8452,10 +8905,6 @@ declare const _default: {
|
|
|
8452
8905
|
type: import("vue").PropType<string>;
|
|
8453
8906
|
default: string;
|
|
8454
8907
|
};
|
|
8455
|
-
container: {
|
|
8456
|
-
type: import("vue").PropType<string>;
|
|
8457
|
-
default: string;
|
|
8458
|
-
};
|
|
8459
8908
|
delay: {
|
|
8460
8909
|
type: import("vue").PropType<number>;
|
|
8461
8910
|
default: number;
|
|
@@ -8481,12 +8930,12 @@ declare const _default: {
|
|
|
8481
8930
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8482
8931
|
show: () => void;
|
|
8483
8932
|
}, string, {
|
|
8933
|
+
container: string;
|
|
8484
8934
|
header: string;
|
|
8485
8935
|
text: string;
|
|
8486
8936
|
theme: string;
|
|
8487
8937
|
disabled: boolean;
|
|
8488
8938
|
testId: string;
|
|
8489
|
-
container: string;
|
|
8490
8939
|
delay: number;
|
|
8491
8940
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8492
8941
|
forceShowWithTruncate: boolean;
|
|
@@ -8513,6 +8962,10 @@ declare const _default: {
|
|
|
8513
8962
|
$nextTick: typeof import("vue").nextTick;
|
|
8514
8963
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8515
8964
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8965
|
+
container: {
|
|
8966
|
+
type: import("vue").PropType<string>;
|
|
8967
|
+
default: string;
|
|
8968
|
+
};
|
|
8516
8969
|
header: {
|
|
8517
8970
|
type: import("vue").PropType<string>;
|
|
8518
8971
|
default: any;
|
|
@@ -8533,10 +8986,6 @@ declare const _default: {
|
|
|
8533
8986
|
type: import("vue").PropType<string>;
|
|
8534
8987
|
default: string;
|
|
8535
8988
|
};
|
|
8536
|
-
container: {
|
|
8537
|
-
type: import("vue").PropType<string>;
|
|
8538
|
-
default: string;
|
|
8539
|
-
};
|
|
8540
8989
|
delay: {
|
|
8541
8990
|
type: import("vue").PropType<number>;
|
|
8542
8991
|
default: number;
|
|
@@ -8564,6 +9013,10 @@ declare const _default: {
|
|
|
8564
9013
|
__isTeleport?: never;
|
|
8565
9014
|
__isSuspense?: never;
|
|
8566
9015
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9016
|
+
container: {
|
|
9017
|
+
type: import("vue").PropType<string>;
|
|
9018
|
+
default: string;
|
|
9019
|
+
};
|
|
8567
9020
|
header: {
|
|
8568
9021
|
type: import("vue").PropType<string>;
|
|
8569
9022
|
default: any;
|
|
@@ -8584,10 +9037,6 @@ declare const _default: {
|
|
|
8584
9037
|
type: import("vue").PropType<string>;
|
|
8585
9038
|
default: string;
|
|
8586
9039
|
};
|
|
8587
|
-
container: {
|
|
8588
|
-
type: import("vue").PropType<string>;
|
|
8589
|
-
default: string;
|
|
8590
|
-
};
|
|
8591
9040
|
delay: {
|
|
8592
9041
|
type: import("vue").PropType<number>;
|
|
8593
9042
|
default: number;
|
|
@@ -8613,12 +9062,12 @@ declare const _default: {
|
|
|
8613
9062
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8614
9063
|
show: () => void;
|
|
8615
9064
|
}, string, {
|
|
9065
|
+
container: string;
|
|
8616
9066
|
header: string;
|
|
8617
9067
|
text: string;
|
|
8618
9068
|
theme: string;
|
|
8619
9069
|
disabled: boolean;
|
|
8620
9070
|
testId: string;
|
|
8621
|
-
container: string;
|
|
8622
9071
|
delay: number;
|
|
8623
9072
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8624
9073
|
forceShowWithTruncate: boolean;
|
|
@@ -8637,18 +9086,22 @@ declare const _default: {
|
|
|
8637
9086
|
$: import("vue").ComponentInternalInstance;
|
|
8638
9087
|
$data: {};
|
|
8639
9088
|
$props: Partial<{
|
|
9089
|
+
container: string;
|
|
8640
9090
|
header: string;
|
|
8641
9091
|
text: string;
|
|
8642
9092
|
theme: string;
|
|
8643
9093
|
disabled: boolean;
|
|
8644
9094
|
testId: string;
|
|
8645
|
-
container: string;
|
|
8646
9095
|
delay: number;
|
|
8647
9096
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8648
9097
|
forceShowWithTruncate: boolean;
|
|
8649
9098
|
placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8650
9099
|
distance: string | number;
|
|
8651
9100
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
9101
|
+
container: {
|
|
9102
|
+
type: import("vue").PropType<string>;
|
|
9103
|
+
default: string;
|
|
9104
|
+
};
|
|
8652
9105
|
header: {
|
|
8653
9106
|
type: import("vue").PropType<string>;
|
|
8654
9107
|
default: any;
|
|
@@ -8669,10 +9122,6 @@ declare const _default: {
|
|
|
8669
9122
|
type: import("vue").PropType<string>;
|
|
8670
9123
|
default: string;
|
|
8671
9124
|
};
|
|
8672
|
-
container: {
|
|
8673
|
-
type: import("vue").PropType<string>;
|
|
8674
|
-
default: string;
|
|
8675
|
-
};
|
|
8676
9125
|
delay: {
|
|
8677
9126
|
type: import("vue").PropType<number>;
|
|
8678
9127
|
default: number;
|
|
@@ -8695,7 +9144,7 @@ declare const _default: {
|
|
|
8695
9144
|
};
|
|
8696
9145
|
}>> & {
|
|
8697
9146
|
onShow?: () => any;
|
|
8698
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "
|
|
9147
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
8699
9148
|
$attrs: {
|
|
8700
9149
|
[x: string]: unknown;
|
|
8701
9150
|
};
|
|
@@ -8710,6 +9159,10 @@ declare const _default: {
|
|
|
8710
9159
|
$emit: (event: "show") => void;
|
|
8711
9160
|
$el: any;
|
|
8712
9161
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9162
|
+
container: {
|
|
9163
|
+
type: import("vue").PropType<string>;
|
|
9164
|
+
default: string;
|
|
9165
|
+
};
|
|
8713
9166
|
header: {
|
|
8714
9167
|
type: import("vue").PropType<string>;
|
|
8715
9168
|
default: any;
|
|
@@ -8730,10 +9183,6 @@ declare const _default: {
|
|
|
8730
9183
|
type: import("vue").PropType<string>;
|
|
8731
9184
|
default: string;
|
|
8732
9185
|
};
|
|
8733
|
-
container: {
|
|
8734
|
-
type: import("vue").PropType<string>;
|
|
8735
|
-
default: string;
|
|
8736
|
-
};
|
|
8737
9186
|
delay: {
|
|
8738
9187
|
type: import("vue").PropType<number>;
|
|
8739
9188
|
default: number;
|
|
@@ -8759,12 +9208,12 @@ declare const _default: {
|
|
|
8759
9208
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8760
9209
|
show: () => void;
|
|
8761
9210
|
}, string, {
|
|
9211
|
+
container: string;
|
|
8762
9212
|
header: string;
|
|
8763
9213
|
text: string;
|
|
8764
9214
|
theme: string;
|
|
8765
9215
|
disabled: boolean;
|
|
8766
9216
|
testId: string;
|
|
8767
|
-
container: string;
|
|
8768
9217
|
delay: number;
|
|
8769
9218
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8770
9219
|
forceShowWithTruncate: boolean;
|
|
@@ -8791,6 +9240,10 @@ declare const _default: {
|
|
|
8791
9240
|
$nextTick: typeof import("vue").nextTick;
|
|
8792
9241
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8793
9242
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
9243
|
+
container: {
|
|
9244
|
+
type: import("vue").PropType<string>;
|
|
9245
|
+
default: string;
|
|
9246
|
+
};
|
|
8794
9247
|
header: {
|
|
8795
9248
|
type: import("vue").PropType<string>;
|
|
8796
9249
|
default: any;
|
|
@@ -8811,10 +9264,6 @@ declare const _default: {
|
|
|
8811
9264
|
type: import("vue").PropType<string>;
|
|
8812
9265
|
default: string;
|
|
8813
9266
|
};
|
|
8814
|
-
container: {
|
|
8815
|
-
type: import("vue").PropType<string>;
|
|
8816
|
-
default: string;
|
|
8817
|
-
};
|
|
8818
9267
|
delay: {
|
|
8819
9268
|
type: import("vue").PropType<number>;
|
|
8820
9269
|
default: number;
|
|
@@ -8842,6 +9291,10 @@ declare const _default: {
|
|
|
8842
9291
|
__isTeleport?: never;
|
|
8843
9292
|
__isSuspense?: never;
|
|
8844
9293
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9294
|
+
container: {
|
|
9295
|
+
type: import("vue").PropType<string>;
|
|
9296
|
+
default: string;
|
|
9297
|
+
};
|
|
8845
9298
|
header: {
|
|
8846
9299
|
type: import("vue").PropType<string>;
|
|
8847
9300
|
default: any;
|
|
@@ -8862,10 +9315,6 @@ declare const _default: {
|
|
|
8862
9315
|
type: import("vue").PropType<string>;
|
|
8863
9316
|
default: string;
|
|
8864
9317
|
};
|
|
8865
|
-
container: {
|
|
8866
|
-
type: import("vue").PropType<string>;
|
|
8867
|
-
default: string;
|
|
8868
|
-
};
|
|
8869
9318
|
delay: {
|
|
8870
9319
|
type: import("vue").PropType<number>;
|
|
8871
9320
|
default: number;
|
|
@@ -8891,12 +9340,12 @@ declare const _default: {
|
|
|
8891
9340
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8892
9341
|
show: () => void;
|
|
8893
9342
|
}, string, {
|
|
9343
|
+
container: string;
|
|
8894
9344
|
header: string;
|
|
8895
9345
|
text: string;
|
|
8896
9346
|
theme: string;
|
|
8897
9347
|
disabled: boolean;
|
|
8898
9348
|
testId: string;
|
|
8899
|
-
container: string;
|
|
8900
9349
|
delay: number;
|
|
8901
9350
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8902
9351
|
forceShowWithTruncate: boolean;
|
|
@@ -10147,7 +10596,7 @@ declare const _default: {
|
|
|
10147
10596
|
$data: {};
|
|
10148
10597
|
$props: Partial<{
|
|
10149
10598
|
name: string;
|
|
10150
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10599
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10151
10600
|
color: string;
|
|
10152
10601
|
size: string;
|
|
10153
10602
|
height: string;
|
|
@@ -10158,7 +10607,7 @@ declare const _default: {
|
|
|
10158
10607
|
default: any;
|
|
10159
10608
|
};
|
|
10160
10609
|
type: {
|
|
10161
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10610
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10162
10611
|
default: string;
|
|
10163
10612
|
};
|
|
10164
10613
|
color: {
|
|
@@ -10197,7 +10646,7 @@ declare const _default: {
|
|
|
10197
10646
|
default: any;
|
|
10198
10647
|
};
|
|
10199
10648
|
type: {
|
|
10200
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10649
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10201
10650
|
default: string;
|
|
10202
10651
|
};
|
|
10203
10652
|
color: {
|
|
@@ -10218,7 +10667,7 @@ declare const _default: {
|
|
|
10218
10667
|
};
|
|
10219
10668
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10220
10669
|
name: string;
|
|
10221
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10670
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10222
10671
|
color: string;
|
|
10223
10672
|
size: string;
|
|
10224
10673
|
height: string;
|
|
@@ -10249,7 +10698,7 @@ declare const _default: {
|
|
|
10249
10698
|
default: any;
|
|
10250
10699
|
};
|
|
10251
10700
|
type: {
|
|
10252
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10701
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10253
10702
|
default: string;
|
|
10254
10703
|
};
|
|
10255
10704
|
color: {
|
|
@@ -10278,7 +10727,7 @@ declare const _default: {
|
|
|
10278
10727
|
default: any;
|
|
10279
10728
|
};
|
|
10280
10729
|
type: {
|
|
10281
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10730
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10282
10731
|
default: string;
|
|
10283
10732
|
};
|
|
10284
10733
|
color: {
|
|
@@ -10299,7 +10748,7 @@ declare const _default: {
|
|
|
10299
10748
|
};
|
|
10300
10749
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10301
10750
|
name: string;
|
|
10302
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10751
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10303
10752
|
color: string;
|
|
10304
10753
|
size: string;
|
|
10305
10754
|
height: string;
|
|
@@ -10315,7 +10764,7 @@ declare const _default: {
|
|
|
10315
10764
|
$data: {};
|
|
10316
10765
|
$props: Partial<{
|
|
10317
10766
|
name: string;
|
|
10318
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10767
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10319
10768
|
color: string;
|
|
10320
10769
|
size: string;
|
|
10321
10770
|
height: string;
|
|
@@ -10326,7 +10775,7 @@ declare const _default: {
|
|
|
10326
10775
|
default: any;
|
|
10327
10776
|
};
|
|
10328
10777
|
type: {
|
|
10329
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10778
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10330
10779
|
default: string;
|
|
10331
10780
|
};
|
|
10332
10781
|
color: {
|
|
@@ -10365,7 +10814,7 @@ declare const _default: {
|
|
|
10365
10814
|
default: any;
|
|
10366
10815
|
};
|
|
10367
10816
|
type: {
|
|
10368
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10817
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10369
10818
|
default: string;
|
|
10370
10819
|
};
|
|
10371
10820
|
color: {
|
|
@@ -10386,7 +10835,7 @@ declare const _default: {
|
|
|
10386
10835
|
};
|
|
10387
10836
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10388
10837
|
name: string;
|
|
10389
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10838
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10390
10839
|
color: string;
|
|
10391
10840
|
size: string;
|
|
10392
10841
|
height: string;
|
|
@@ -10417,7 +10866,7 @@ declare const _default: {
|
|
|
10417
10866
|
default: any;
|
|
10418
10867
|
};
|
|
10419
10868
|
type: {
|
|
10420
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10869
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10421
10870
|
default: string;
|
|
10422
10871
|
};
|
|
10423
10872
|
color: {
|
|
@@ -10446,7 +10895,7 @@ declare const _default: {
|
|
|
10446
10895
|
default: any;
|
|
10447
10896
|
};
|
|
10448
10897
|
type: {
|
|
10449
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
10898
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
10450
10899
|
default: string;
|
|
10451
10900
|
};
|
|
10452
10901
|
color: {
|
|
@@ -10467,7 +10916,7 @@ declare const _default: {
|
|
|
10467
10916
|
};
|
|
10468
10917
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10469
10918
|
name: string;
|
|
10470
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
10919
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
10471
10920
|
color: string;
|
|
10472
10921
|
size: string;
|
|
10473
10922
|
height: string;
|
|
@@ -11226,6 +11675,7 @@ declare const _default: {
|
|
|
11226
11675
|
onlyDigits: boolean;
|
|
11227
11676
|
prefix: string;
|
|
11228
11677
|
suffix: string;
|
|
11678
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11229
11679
|
showApply: boolean;
|
|
11230
11680
|
inlineError: boolean;
|
|
11231
11681
|
inlineErrorText: string;
|
|
@@ -11311,6 +11761,10 @@ declare const _default: {
|
|
|
11311
11761
|
type: import("vue").PropType<string>;
|
|
11312
11762
|
default: string;
|
|
11313
11763
|
};
|
|
11764
|
+
maxLengthCounterPosition: {
|
|
11765
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
11766
|
+
default: string;
|
|
11767
|
+
};
|
|
11314
11768
|
showApply: {
|
|
11315
11769
|
type: import("vue").PropType<boolean>;
|
|
11316
11770
|
default: boolean;
|
|
@@ -11346,7 +11800,7 @@ declare const _default: {
|
|
|
11346
11800
|
}>> & {
|
|
11347
11801
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
11348
11802
|
onApply?: () => any;
|
|
11349
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
11803
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
11350
11804
|
$attrs: {
|
|
11351
11805
|
[x: string]: unknown;
|
|
11352
11806
|
};
|
|
@@ -11437,6 +11891,10 @@ declare const _default: {
|
|
|
11437
11891
|
type: import("vue").PropType<string>;
|
|
11438
11892
|
default: string;
|
|
11439
11893
|
};
|
|
11894
|
+
maxLengthCounterPosition: {
|
|
11895
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
11896
|
+
default: string;
|
|
11897
|
+
};
|
|
11440
11898
|
showApply: {
|
|
11441
11899
|
type: import("vue").PropType<boolean>;
|
|
11442
11900
|
default: boolean;
|
|
@@ -11497,6 +11955,7 @@ declare const _default: {
|
|
|
11497
11955
|
onlyDigits: boolean;
|
|
11498
11956
|
prefix: string;
|
|
11499
11957
|
suffix: string;
|
|
11958
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11500
11959
|
showApply: boolean;
|
|
11501
11960
|
inlineError: boolean;
|
|
11502
11961
|
inlineErrorText: string;
|
|
@@ -11602,6 +12061,10 @@ declare const _default: {
|
|
|
11602
12061
|
type: import("vue").PropType<string>;
|
|
11603
12062
|
default: string;
|
|
11604
12063
|
};
|
|
12064
|
+
maxLengthCounterPosition: {
|
|
12065
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12066
|
+
default: string;
|
|
12067
|
+
};
|
|
11605
12068
|
showApply: {
|
|
11606
12069
|
type: import("vue").PropType<boolean>;
|
|
11607
12070
|
default: boolean;
|
|
@@ -11720,6 +12183,10 @@ declare const _default: {
|
|
|
11720
12183
|
type: import("vue").PropType<string>;
|
|
11721
12184
|
default: string;
|
|
11722
12185
|
};
|
|
12186
|
+
maxLengthCounterPosition: {
|
|
12187
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12188
|
+
default: string;
|
|
12189
|
+
};
|
|
11723
12190
|
showApply: {
|
|
11724
12191
|
type: import("vue").PropType<boolean>;
|
|
11725
12192
|
default: boolean;
|
|
@@ -11780,6 +12247,7 @@ declare const _default: {
|
|
|
11780
12247
|
onlyDigits: boolean;
|
|
11781
12248
|
prefix: string;
|
|
11782
12249
|
suffix: string;
|
|
12250
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11783
12251
|
showApply: boolean;
|
|
11784
12252
|
inlineError: boolean;
|
|
11785
12253
|
inlineErrorText: string;
|
|
@@ -11818,6 +12286,7 @@ declare const _default: {
|
|
|
11818
12286
|
onlyDigits: boolean;
|
|
11819
12287
|
prefix: string;
|
|
11820
12288
|
suffix: string;
|
|
12289
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11821
12290
|
showApply: boolean;
|
|
11822
12291
|
inlineError: boolean;
|
|
11823
12292
|
inlineErrorText: string;
|
|
@@ -11903,6 +12372,10 @@ declare const _default: {
|
|
|
11903
12372
|
type: import("vue").PropType<string>;
|
|
11904
12373
|
default: string;
|
|
11905
12374
|
};
|
|
12375
|
+
maxLengthCounterPosition: {
|
|
12376
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12377
|
+
default: string;
|
|
12378
|
+
};
|
|
11906
12379
|
showApply: {
|
|
11907
12380
|
type: import("vue").PropType<boolean>;
|
|
11908
12381
|
default: boolean;
|
|
@@ -11938,7 +12411,7 @@ declare const _default: {
|
|
|
11938
12411
|
}>> & {
|
|
11939
12412
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
11940
12413
|
onApply?: () => any;
|
|
11941
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
12414
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
11942
12415
|
$attrs: {
|
|
11943
12416
|
[x: string]: unknown;
|
|
11944
12417
|
};
|
|
@@ -12029,6 +12502,10 @@ declare const _default: {
|
|
|
12029
12502
|
type: import("vue").PropType<string>;
|
|
12030
12503
|
default: string;
|
|
12031
12504
|
};
|
|
12505
|
+
maxLengthCounterPosition: {
|
|
12506
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12507
|
+
default: string;
|
|
12508
|
+
};
|
|
12032
12509
|
showApply: {
|
|
12033
12510
|
type: import("vue").PropType<boolean>;
|
|
12034
12511
|
default: boolean;
|
|
@@ -12089,6 +12566,7 @@ declare const _default: {
|
|
|
12089
12566
|
onlyDigits: boolean;
|
|
12090
12567
|
prefix: string;
|
|
12091
12568
|
suffix: string;
|
|
12569
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
12092
12570
|
showApply: boolean;
|
|
12093
12571
|
inlineError: boolean;
|
|
12094
12572
|
inlineErrorText: string;
|
|
@@ -12194,6 +12672,10 @@ declare const _default: {
|
|
|
12194
12672
|
type: import("vue").PropType<string>;
|
|
12195
12673
|
default: string;
|
|
12196
12674
|
};
|
|
12675
|
+
maxLengthCounterPosition: {
|
|
12676
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12677
|
+
default: string;
|
|
12678
|
+
};
|
|
12197
12679
|
showApply: {
|
|
12198
12680
|
type: import("vue").PropType<boolean>;
|
|
12199
12681
|
default: boolean;
|
|
@@ -12312,6 +12794,10 @@ declare const _default: {
|
|
|
12312
12794
|
type: import("vue").PropType<string>;
|
|
12313
12795
|
default: string;
|
|
12314
12796
|
};
|
|
12797
|
+
maxLengthCounterPosition: {
|
|
12798
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12799
|
+
default: string;
|
|
12800
|
+
};
|
|
12315
12801
|
showApply: {
|
|
12316
12802
|
type: import("vue").PropType<boolean>;
|
|
12317
12803
|
default: boolean;
|
|
@@ -12372,6 +12858,7 @@ declare const _default: {
|
|
|
12372
12858
|
onlyDigits: boolean;
|
|
12373
12859
|
prefix: string;
|
|
12374
12860
|
suffix: string;
|
|
12861
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
12375
12862
|
showApply: boolean;
|
|
12376
12863
|
inlineError: boolean;
|
|
12377
12864
|
inlineErrorText: string;
|
|
@@ -14494,13 +14981,13 @@ declare const _default: {
|
|
|
14494
14981
|
$: import("vue").ComponentInternalInstance;
|
|
14495
14982
|
$data: {};
|
|
14496
14983
|
$props: Partial<{
|
|
14984
|
+
container: string;
|
|
14497
14985
|
theme: string;
|
|
14498
14986
|
disabled: boolean;
|
|
14499
14987
|
size: "small" | "medium" | "large";
|
|
14500
14988
|
flip: boolean;
|
|
14501
14989
|
mandatory: boolean;
|
|
14502
14990
|
testId: string;
|
|
14503
|
-
container: string;
|
|
14504
14991
|
placement: import("floating-vue").Placement;
|
|
14505
14992
|
distance: number;
|
|
14506
14993
|
popperClass: string;
|
|
@@ -14531,17 +15018,23 @@ declare const _default: {
|
|
|
14531
15018
|
optionNameKey: string;
|
|
14532
15019
|
optionIconKey: string;
|
|
14533
15020
|
optionImageKey: string;
|
|
14534
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
15021
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
14535
15022
|
optionEndIconKey: string;
|
|
14536
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
15023
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
14537
15024
|
valueToCopy: string;
|
|
14538
15025
|
disabledOptionKey: string;
|
|
15026
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15027
|
+
optionTwoLinesKey: string;
|
|
14539
15028
|
fullWidth: boolean;
|
|
14540
15029
|
optionsListWidth: string;
|
|
14541
15030
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
14542
15031
|
disableVirtualScroll: boolean;
|
|
14543
15032
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
14544
15033
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15034
|
+
container: {
|
|
15035
|
+
type: import("vue").PropType<string>;
|
|
15036
|
+
default: string;
|
|
15037
|
+
};
|
|
14545
15038
|
theme: {
|
|
14546
15039
|
type: import("vue").PropType<string>;
|
|
14547
15040
|
default: string;
|
|
@@ -14569,10 +15062,6 @@ declare const _default: {
|
|
|
14569
15062
|
type: import("vue").PropType<string>;
|
|
14570
15063
|
default: string;
|
|
14571
15064
|
};
|
|
14572
|
-
container: {
|
|
14573
|
-
type: import("vue").PropType<string>;
|
|
14574
|
-
default: string;
|
|
14575
|
-
};
|
|
14576
15065
|
placement: {
|
|
14577
15066
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
14578
15067
|
default: string;
|
|
@@ -14705,7 +15194,7 @@ declare const _default: {
|
|
|
14705
15194
|
default: string;
|
|
14706
15195
|
};
|
|
14707
15196
|
optionIconType: {
|
|
14708
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15197
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
14709
15198
|
default: any;
|
|
14710
15199
|
};
|
|
14711
15200
|
optionEndIconKey: {
|
|
@@ -14713,7 +15202,7 @@ declare const _default: {
|
|
|
14713
15202
|
default: string;
|
|
14714
15203
|
};
|
|
14715
15204
|
optionEndIconType: {
|
|
14716
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15205
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
14717
15206
|
default: any;
|
|
14718
15207
|
};
|
|
14719
15208
|
valueToCopy: {
|
|
@@ -14724,6 +15213,14 @@ declare const _default: {
|
|
|
14724
15213
|
type: import("vue").PropType<string>;
|
|
14725
15214
|
default: string;
|
|
14726
15215
|
};
|
|
15216
|
+
optionTwoLinesVariant: {
|
|
15217
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15218
|
+
default: any;
|
|
15219
|
+
};
|
|
15220
|
+
optionTwoLinesKey: {
|
|
15221
|
+
type: import("vue").PropType<string>;
|
|
15222
|
+
default: any;
|
|
15223
|
+
};
|
|
14727
15224
|
fullWidth: {
|
|
14728
15225
|
type: import("vue").PropType<boolean>;
|
|
14729
15226
|
default: boolean;
|
|
@@ -14753,7 +15250,7 @@ declare const _default: {
|
|
|
14753
15250
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
14754
15251
|
onOpened?: () => any;
|
|
14755
15252
|
onClosed?: () => any;
|
|
14756
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "
|
|
15253
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
14757
15254
|
$attrs: {
|
|
14758
15255
|
[x: string]: unknown;
|
|
14759
15256
|
};
|
|
@@ -14768,6 +15265,10 @@ declare const _default: {
|
|
|
14768
15265
|
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
14769
15266
|
$el: any;
|
|
14770
15267
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
15268
|
+
container: {
|
|
15269
|
+
type: import("vue").PropType<string>;
|
|
15270
|
+
default: string;
|
|
15271
|
+
};
|
|
14771
15272
|
theme: {
|
|
14772
15273
|
type: import("vue").PropType<string>;
|
|
14773
15274
|
default: string;
|
|
@@ -14795,10 +15296,6 @@ declare const _default: {
|
|
|
14795
15296
|
type: import("vue").PropType<string>;
|
|
14796
15297
|
default: string;
|
|
14797
15298
|
};
|
|
14798
|
-
container: {
|
|
14799
|
-
type: import("vue").PropType<string>;
|
|
14800
|
-
default: string;
|
|
14801
|
-
};
|
|
14802
15299
|
placement: {
|
|
14803
15300
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
14804
15301
|
default: string;
|
|
@@ -14931,7 +15428,7 @@ declare const _default: {
|
|
|
14931
15428
|
default: string;
|
|
14932
15429
|
};
|
|
14933
15430
|
optionIconType: {
|
|
14934
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15431
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
14935
15432
|
default: any;
|
|
14936
15433
|
};
|
|
14937
15434
|
optionEndIconKey: {
|
|
@@ -14939,7 +15436,7 @@ declare const _default: {
|
|
|
14939
15436
|
default: string;
|
|
14940
15437
|
};
|
|
14941
15438
|
optionEndIconType: {
|
|
14942
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15439
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
14943
15440
|
default: any;
|
|
14944
15441
|
};
|
|
14945
15442
|
valueToCopy: {
|
|
@@ -14950,6 +15447,14 @@ declare const _default: {
|
|
|
14950
15447
|
type: import("vue").PropType<string>;
|
|
14951
15448
|
default: string;
|
|
14952
15449
|
};
|
|
15450
|
+
optionTwoLinesVariant: {
|
|
15451
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15452
|
+
default: any;
|
|
15453
|
+
};
|
|
15454
|
+
optionTwoLinesKey: {
|
|
15455
|
+
type: import("vue").PropType<string>;
|
|
15456
|
+
default: any;
|
|
15457
|
+
};
|
|
14953
15458
|
fullWidth: {
|
|
14954
15459
|
type: import("vue").PropType<boolean>;
|
|
14955
15460
|
default: boolean;
|
|
@@ -14992,13 +15497,13 @@ declare const _default: {
|
|
|
14992
15497
|
clear: () => void;
|
|
14993
15498
|
copyToClipboard: () => void;
|
|
14994
15499
|
}, string, {
|
|
15500
|
+
container: string;
|
|
14995
15501
|
theme: string;
|
|
14996
15502
|
disabled: boolean;
|
|
14997
15503
|
size: "small" | "medium" | "large";
|
|
14998
15504
|
flip: boolean;
|
|
14999
15505
|
mandatory: boolean;
|
|
15000
15506
|
testId: string;
|
|
15001
|
-
container: string;
|
|
15002
15507
|
placement: import("floating-vue").Placement;
|
|
15003
15508
|
distance: number;
|
|
15004
15509
|
popperClass: string;
|
|
@@ -15029,11 +15534,13 @@ declare const _default: {
|
|
|
15029
15534
|
optionNameKey: string;
|
|
15030
15535
|
optionIconKey: string;
|
|
15031
15536
|
optionImageKey: string;
|
|
15032
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
15537
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15033
15538
|
optionEndIconKey: string;
|
|
15034
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
15539
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15035
15540
|
valueToCopy: string;
|
|
15036
15541
|
disabledOptionKey: string;
|
|
15542
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15543
|
+
optionTwoLinesKey: string;
|
|
15037
15544
|
fullWidth: boolean;
|
|
15038
15545
|
optionsListWidth: string;
|
|
15039
15546
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15060,6 +15567,10 @@ declare const _default: {
|
|
|
15060
15567
|
$nextTick: typeof import("vue").nextTick;
|
|
15061
15568
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
15062
15569
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
15570
|
+
container: {
|
|
15571
|
+
type: import("vue").PropType<string>;
|
|
15572
|
+
default: string;
|
|
15573
|
+
};
|
|
15063
15574
|
theme: {
|
|
15064
15575
|
type: import("vue").PropType<string>;
|
|
15065
15576
|
default: string;
|
|
@@ -15087,10 +15598,6 @@ declare const _default: {
|
|
|
15087
15598
|
type: import("vue").PropType<string>;
|
|
15088
15599
|
default: string;
|
|
15089
15600
|
};
|
|
15090
|
-
container: {
|
|
15091
|
-
type: import("vue").PropType<string>;
|
|
15092
|
-
default: string;
|
|
15093
|
-
};
|
|
15094
15601
|
placement: {
|
|
15095
15602
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15096
15603
|
default: string;
|
|
@@ -15223,7 +15730,7 @@ declare const _default: {
|
|
|
15223
15730
|
default: string;
|
|
15224
15731
|
};
|
|
15225
15732
|
optionIconType: {
|
|
15226
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15733
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15227
15734
|
default: any;
|
|
15228
15735
|
};
|
|
15229
15736
|
optionEndIconKey: {
|
|
@@ -15231,7 +15738,7 @@ declare const _default: {
|
|
|
15231
15738
|
default: string;
|
|
15232
15739
|
};
|
|
15233
15740
|
optionEndIconType: {
|
|
15234
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15741
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15235
15742
|
default: any;
|
|
15236
15743
|
};
|
|
15237
15744
|
valueToCopy: {
|
|
@@ -15242,6 +15749,14 @@ declare const _default: {
|
|
|
15242
15749
|
type: import("vue").PropType<string>;
|
|
15243
15750
|
default: string;
|
|
15244
15751
|
};
|
|
15752
|
+
optionTwoLinesVariant: {
|
|
15753
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15754
|
+
default: any;
|
|
15755
|
+
};
|
|
15756
|
+
optionTwoLinesKey: {
|
|
15757
|
+
type: import("vue").PropType<string>;
|
|
15758
|
+
default: any;
|
|
15759
|
+
};
|
|
15245
15760
|
fullWidth: {
|
|
15246
15761
|
type: import("vue").PropType<boolean>;
|
|
15247
15762
|
default: boolean;
|
|
@@ -15279,6 +15794,10 @@ declare const _default: {
|
|
|
15279
15794
|
__isTeleport?: never;
|
|
15280
15795
|
__isSuspense?: never;
|
|
15281
15796
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
15797
|
+
container: {
|
|
15798
|
+
type: import("vue").PropType<string>;
|
|
15799
|
+
default: string;
|
|
15800
|
+
};
|
|
15282
15801
|
theme: {
|
|
15283
15802
|
type: import("vue").PropType<string>;
|
|
15284
15803
|
default: string;
|
|
@@ -15306,10 +15825,6 @@ declare const _default: {
|
|
|
15306
15825
|
type: import("vue").PropType<string>;
|
|
15307
15826
|
default: string;
|
|
15308
15827
|
};
|
|
15309
|
-
container: {
|
|
15310
|
-
type: import("vue").PropType<string>;
|
|
15311
|
-
default: string;
|
|
15312
|
-
};
|
|
15313
15828
|
placement: {
|
|
15314
15829
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15315
15830
|
default: string;
|
|
@@ -15442,7 +15957,7 @@ declare const _default: {
|
|
|
15442
15957
|
default: string;
|
|
15443
15958
|
};
|
|
15444
15959
|
optionIconType: {
|
|
15445
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15960
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15446
15961
|
default: any;
|
|
15447
15962
|
};
|
|
15448
15963
|
optionEndIconKey: {
|
|
@@ -15450,7 +15965,7 @@ declare const _default: {
|
|
|
15450
15965
|
default: string;
|
|
15451
15966
|
};
|
|
15452
15967
|
optionEndIconType: {
|
|
15453
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
15968
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15454
15969
|
default: any;
|
|
15455
15970
|
};
|
|
15456
15971
|
valueToCopy: {
|
|
@@ -15461,6 +15976,14 @@ declare const _default: {
|
|
|
15461
15976
|
type: import("vue").PropType<string>;
|
|
15462
15977
|
default: string;
|
|
15463
15978
|
};
|
|
15979
|
+
optionTwoLinesVariant: {
|
|
15980
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15981
|
+
default: any;
|
|
15982
|
+
};
|
|
15983
|
+
optionTwoLinesKey: {
|
|
15984
|
+
type: import("vue").PropType<string>;
|
|
15985
|
+
default: any;
|
|
15986
|
+
};
|
|
15464
15987
|
fullWidth: {
|
|
15465
15988
|
type: import("vue").PropType<boolean>;
|
|
15466
15989
|
default: boolean;
|
|
@@ -15503,13 +16026,13 @@ declare const _default: {
|
|
|
15503
16026
|
clear: () => void;
|
|
15504
16027
|
copyToClipboard: () => void;
|
|
15505
16028
|
}, string, {
|
|
16029
|
+
container: string;
|
|
15506
16030
|
theme: string;
|
|
15507
16031
|
disabled: boolean;
|
|
15508
16032
|
size: "small" | "medium" | "large";
|
|
15509
16033
|
flip: boolean;
|
|
15510
16034
|
mandatory: boolean;
|
|
15511
16035
|
testId: string;
|
|
15512
|
-
container: string;
|
|
15513
16036
|
placement: import("floating-vue").Placement;
|
|
15514
16037
|
distance: number;
|
|
15515
16038
|
popperClass: string;
|
|
@@ -15540,11 +16063,13 @@ declare const _default: {
|
|
|
15540
16063
|
optionNameKey: string;
|
|
15541
16064
|
optionIconKey: string;
|
|
15542
16065
|
optionImageKey: string;
|
|
15543
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16066
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15544
16067
|
optionEndIconKey: string;
|
|
15545
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16068
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15546
16069
|
valueToCopy: string;
|
|
15547
16070
|
disabledOptionKey: string;
|
|
16071
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16072
|
+
optionTwoLinesKey: string;
|
|
15548
16073
|
fullWidth: boolean;
|
|
15549
16074
|
optionsListWidth: string;
|
|
15550
16075
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15596,7 +16121,7 @@ declare const _default: {
|
|
|
15596
16121
|
optionNameKey: string;
|
|
15597
16122
|
optionIconKey: string;
|
|
15598
16123
|
optionImageKey: string;
|
|
15599
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16124
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15600
16125
|
selectedOption: any;
|
|
15601
16126
|
showFeedbackIcon: boolean;
|
|
15602
16127
|
brandIconType: "android" | "ios";
|
|
@@ -15682,7 +16207,7 @@ declare const _default: {
|
|
|
15682
16207
|
default: any;
|
|
15683
16208
|
};
|
|
15684
16209
|
optionIconType: {
|
|
15685
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16210
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15686
16211
|
default: any;
|
|
15687
16212
|
};
|
|
15688
16213
|
selectedOption: {
|
|
@@ -15801,7 +16326,7 @@ declare const _default: {
|
|
|
15801
16326
|
default: any;
|
|
15802
16327
|
};
|
|
15803
16328
|
optionIconType: {
|
|
15804
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16329
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15805
16330
|
default: any;
|
|
15806
16331
|
};
|
|
15807
16332
|
selectedOption: {
|
|
@@ -15847,7 +16372,7 @@ declare const _default: {
|
|
|
15847
16372
|
optionNameKey: string;
|
|
15848
16373
|
optionIconKey: string;
|
|
15849
16374
|
optionImageKey: string;
|
|
15850
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16375
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15851
16376
|
selectedOption: any;
|
|
15852
16377
|
showFeedbackIcon: boolean;
|
|
15853
16378
|
brandIconType: "android" | "ios";
|
|
@@ -15953,7 +16478,7 @@ declare const _default: {
|
|
|
15953
16478
|
default: any;
|
|
15954
16479
|
};
|
|
15955
16480
|
optionIconType: {
|
|
15956
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16481
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15957
16482
|
default: any;
|
|
15958
16483
|
};
|
|
15959
16484
|
selectedOption: {
|
|
@@ -16062,7 +16587,7 @@ declare const _default: {
|
|
|
16062
16587
|
default: any;
|
|
16063
16588
|
};
|
|
16064
16589
|
optionIconType: {
|
|
16065
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16590
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16066
16591
|
default: any;
|
|
16067
16592
|
};
|
|
16068
16593
|
selectedOption: {
|
|
@@ -16108,7 +16633,7 @@ declare const _default: {
|
|
|
16108
16633
|
optionNameKey: string;
|
|
16109
16634
|
optionIconKey: string;
|
|
16110
16635
|
optionImageKey: string;
|
|
16111
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16636
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16112
16637
|
selectedOption: any;
|
|
16113
16638
|
showFeedbackIcon: boolean;
|
|
16114
16639
|
brandIconType: "android" | "ios";
|
|
@@ -16263,7 +16788,7 @@ declare const _default: {
|
|
|
16263
16788
|
default: any;
|
|
16264
16789
|
};
|
|
16265
16790
|
startIconType: {
|
|
16266
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16791
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16267
16792
|
default: string;
|
|
16268
16793
|
};
|
|
16269
16794
|
hideEndIcon: {
|
|
@@ -16302,7 +16827,7 @@ declare const _default: {
|
|
|
16302
16827
|
default: any;
|
|
16303
16828
|
};
|
|
16304
16829
|
startIconType: {
|
|
16305
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16830
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16306
16831
|
default: string;
|
|
16307
16832
|
};
|
|
16308
16833
|
hideEndIcon: {
|
|
@@ -16318,7 +16843,7 @@ declare const _default: {
|
|
|
16318
16843
|
open: boolean;
|
|
16319
16844
|
testId: string;
|
|
16320
16845
|
startIconName: string;
|
|
16321
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16846
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16322
16847
|
hideEndIcon: boolean;
|
|
16323
16848
|
}>;
|
|
16324
16849
|
ButtonFilterDropdownTrigger: import("vue").DefineComponent<{
|
|
@@ -16347,7 +16872,7 @@ declare const _default: {
|
|
|
16347
16872
|
default: any;
|
|
16348
16873
|
};
|
|
16349
16874
|
startIconType: {
|
|
16350
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16875
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16351
16876
|
default: string;
|
|
16352
16877
|
};
|
|
16353
16878
|
hideEndIcon: {
|
|
@@ -16382,7 +16907,7 @@ declare const _default: {
|
|
|
16382
16907
|
default: any;
|
|
16383
16908
|
};
|
|
16384
16909
|
startIconType: {
|
|
16385
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
16910
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16386
16911
|
default: string;
|
|
16387
16912
|
};
|
|
16388
16913
|
hideEndIcon: {
|
|
@@ -16397,7 +16922,7 @@ declare const _default: {
|
|
|
16397
16922
|
open: boolean;
|
|
16398
16923
|
testId: string;
|
|
16399
16924
|
startIconName: string;
|
|
16400
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16925
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16401
16926
|
hideEndIcon: boolean;
|
|
16402
16927
|
}>;
|
|
16403
16928
|
AppDropdownTrigger: {
|
|
@@ -16419,9 +16944,9 @@ declare const _default: {
|
|
|
16419
16944
|
optionNameKey: string;
|
|
16420
16945
|
optionIconKey: string;
|
|
16421
16946
|
optionImageKey: string;
|
|
16422
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16947
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16423
16948
|
optionEndIconKey: string;
|
|
16424
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
16949
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16425
16950
|
valueToCopy: string;
|
|
16426
16951
|
selectedOption: any;
|
|
16427
16952
|
brandIconType: "android" | "ios";
|
|
@@ -16489,7 +17014,7 @@ declare const _default: {
|
|
|
16489
17014
|
default: any;
|
|
16490
17015
|
};
|
|
16491
17016
|
optionIconType: {
|
|
16492
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17017
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16493
17018
|
default: any;
|
|
16494
17019
|
};
|
|
16495
17020
|
optionEndIconKey: {
|
|
@@ -16497,7 +17022,7 @@ declare const _default: {
|
|
|
16497
17022
|
default: any;
|
|
16498
17023
|
};
|
|
16499
17024
|
optionEndIconType: {
|
|
16500
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17025
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16501
17026
|
default: any;
|
|
16502
17027
|
};
|
|
16503
17028
|
valueToCopy: {
|
|
@@ -16593,7 +17118,7 @@ declare const _default: {
|
|
|
16593
17118
|
default: any;
|
|
16594
17119
|
};
|
|
16595
17120
|
optionIconType: {
|
|
16596
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17121
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16597
17122
|
default: any;
|
|
16598
17123
|
};
|
|
16599
17124
|
optionEndIconKey: {
|
|
@@ -16601,7 +17126,7 @@ declare const _default: {
|
|
|
16601
17126
|
default: any;
|
|
16602
17127
|
};
|
|
16603
17128
|
optionEndIconType: {
|
|
16604
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17129
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16605
17130
|
default: any;
|
|
16606
17131
|
};
|
|
16607
17132
|
valueToCopy: {
|
|
@@ -16637,9 +17162,9 @@ declare const _default: {
|
|
|
16637
17162
|
optionNameKey: string;
|
|
16638
17163
|
optionIconKey: string;
|
|
16639
17164
|
optionImageKey: string;
|
|
16640
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17165
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16641
17166
|
optionEndIconKey: string;
|
|
16642
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17167
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16643
17168
|
valueToCopy: string;
|
|
16644
17169
|
selectedOption: any;
|
|
16645
17170
|
brandIconType: "android" | "ios";
|
|
@@ -16727,7 +17252,7 @@ declare const _default: {
|
|
|
16727
17252
|
default: any;
|
|
16728
17253
|
};
|
|
16729
17254
|
optionIconType: {
|
|
16730
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17255
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16731
17256
|
default: any;
|
|
16732
17257
|
};
|
|
16733
17258
|
optionEndIconKey: {
|
|
@@ -16735,7 +17260,7 @@ declare const _default: {
|
|
|
16735
17260
|
default: any;
|
|
16736
17261
|
};
|
|
16737
17262
|
optionEndIconType: {
|
|
16738
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17263
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16739
17264
|
default: any;
|
|
16740
17265
|
};
|
|
16741
17266
|
valueToCopy: {
|
|
@@ -16821,7 +17346,7 @@ declare const _default: {
|
|
|
16821
17346
|
default: any;
|
|
16822
17347
|
};
|
|
16823
17348
|
optionIconType: {
|
|
16824
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17349
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16825
17350
|
default: any;
|
|
16826
17351
|
};
|
|
16827
17352
|
optionEndIconKey: {
|
|
@@ -16829,7 +17354,7 @@ declare const _default: {
|
|
|
16829
17354
|
default: any;
|
|
16830
17355
|
};
|
|
16831
17356
|
optionEndIconType: {
|
|
16832
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17357
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16833
17358
|
default: any;
|
|
16834
17359
|
};
|
|
16835
17360
|
valueToCopy: {
|
|
@@ -16865,9 +17390,9 @@ declare const _default: {
|
|
|
16865
17390
|
optionNameKey: string;
|
|
16866
17391
|
optionIconKey: string;
|
|
16867
17392
|
optionImageKey: string;
|
|
16868
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17393
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16869
17394
|
optionEndIconKey: string;
|
|
16870
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17395
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16871
17396
|
valueToCopy: string;
|
|
16872
17397
|
selectedOption: any;
|
|
16873
17398
|
brandIconType: "android" | "ios";
|
|
@@ -16901,7 +17426,7 @@ declare const _default: {
|
|
|
16901
17426
|
optionNameKey: string;
|
|
16902
17427
|
optionIconKey: string;
|
|
16903
17428
|
optionImageKey: string;
|
|
16904
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17429
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16905
17430
|
selectedOption: any;
|
|
16906
17431
|
showFeedbackIcon: boolean;
|
|
16907
17432
|
brandIconType: "android" | "ios";
|
|
@@ -16987,7 +17512,7 @@ declare const _default: {
|
|
|
16987
17512
|
default: any;
|
|
16988
17513
|
};
|
|
16989
17514
|
optionIconType: {
|
|
16990
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17515
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16991
17516
|
default: any;
|
|
16992
17517
|
};
|
|
16993
17518
|
selectedOption: {
|
|
@@ -17106,7 +17631,7 @@ declare const _default: {
|
|
|
17106
17631
|
default: any;
|
|
17107
17632
|
};
|
|
17108
17633
|
optionIconType: {
|
|
17109
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17634
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17110
17635
|
default: any;
|
|
17111
17636
|
};
|
|
17112
17637
|
selectedOption: {
|
|
@@ -17152,7 +17677,7 @@ declare const _default: {
|
|
|
17152
17677
|
optionNameKey: string;
|
|
17153
17678
|
optionIconKey: string;
|
|
17154
17679
|
optionImageKey: string;
|
|
17155
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17680
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17156
17681
|
selectedOption: any;
|
|
17157
17682
|
showFeedbackIcon: boolean;
|
|
17158
17683
|
brandIconType: "android" | "ios";
|
|
@@ -17258,7 +17783,7 @@ declare const _default: {
|
|
|
17258
17783
|
default: any;
|
|
17259
17784
|
};
|
|
17260
17785
|
optionIconType: {
|
|
17261
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17786
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17262
17787
|
default: any;
|
|
17263
17788
|
};
|
|
17264
17789
|
selectedOption: {
|
|
@@ -17367,7 +17892,7 @@ declare const _default: {
|
|
|
17367
17892
|
default: any;
|
|
17368
17893
|
};
|
|
17369
17894
|
optionIconType: {
|
|
17370
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
17895
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17371
17896
|
default: any;
|
|
17372
17897
|
};
|
|
17373
17898
|
selectedOption: {
|
|
@@ -17413,7 +17938,7 @@ declare const _default: {
|
|
|
17413
17938
|
optionNameKey: string;
|
|
17414
17939
|
optionIconKey: string;
|
|
17415
17940
|
optionImageKey: string;
|
|
17416
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17941
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17417
17942
|
selectedOption: any;
|
|
17418
17943
|
showFeedbackIcon: boolean;
|
|
17419
17944
|
brandIconType: "android" | "ios";
|
|
@@ -17443,9 +17968,9 @@ declare const _default: {
|
|
|
17443
17968
|
optionNameKey: string;
|
|
17444
17969
|
optionIconKey: string;
|
|
17445
17970
|
optionImageKey: string;
|
|
17446
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17971
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17447
17972
|
optionEndIconKey: string;
|
|
17448
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
17973
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17449
17974
|
valueToCopy: string;
|
|
17450
17975
|
selectedOption: any;
|
|
17451
17976
|
brandIconType: "android" | "ios";
|
|
@@ -17513,7 +18038,7 @@ declare const _default: {
|
|
|
17513
18038
|
default: any;
|
|
17514
18039
|
};
|
|
17515
18040
|
optionIconType: {
|
|
17516
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18041
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17517
18042
|
default: any;
|
|
17518
18043
|
};
|
|
17519
18044
|
optionEndIconKey: {
|
|
@@ -17521,7 +18046,7 @@ declare const _default: {
|
|
|
17521
18046
|
default: any;
|
|
17522
18047
|
};
|
|
17523
18048
|
optionEndIconType: {
|
|
17524
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18049
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17525
18050
|
default: any;
|
|
17526
18051
|
};
|
|
17527
18052
|
valueToCopy: {
|
|
@@ -17617,7 +18142,7 @@ declare const _default: {
|
|
|
17617
18142
|
default: any;
|
|
17618
18143
|
};
|
|
17619
18144
|
optionIconType: {
|
|
17620
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18145
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17621
18146
|
default: any;
|
|
17622
18147
|
};
|
|
17623
18148
|
optionEndIconKey: {
|
|
@@ -17625,7 +18150,7 @@ declare const _default: {
|
|
|
17625
18150
|
default: any;
|
|
17626
18151
|
};
|
|
17627
18152
|
optionEndIconType: {
|
|
17628
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18153
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17629
18154
|
default: any;
|
|
17630
18155
|
};
|
|
17631
18156
|
valueToCopy: {
|
|
@@ -17661,9 +18186,9 @@ declare const _default: {
|
|
|
17661
18186
|
optionNameKey: string;
|
|
17662
18187
|
optionIconKey: string;
|
|
17663
18188
|
optionImageKey: string;
|
|
17664
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18189
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17665
18190
|
optionEndIconKey: string;
|
|
17666
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18191
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17667
18192
|
valueToCopy: string;
|
|
17668
18193
|
selectedOption: any;
|
|
17669
18194
|
brandIconType: "android" | "ios";
|
|
@@ -17751,7 +18276,7 @@ declare const _default: {
|
|
|
17751
18276
|
default: any;
|
|
17752
18277
|
};
|
|
17753
18278
|
optionIconType: {
|
|
17754
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18279
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17755
18280
|
default: any;
|
|
17756
18281
|
};
|
|
17757
18282
|
optionEndIconKey: {
|
|
@@ -17759,7 +18284,7 @@ declare const _default: {
|
|
|
17759
18284
|
default: any;
|
|
17760
18285
|
};
|
|
17761
18286
|
optionEndIconType: {
|
|
17762
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18287
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17763
18288
|
default: any;
|
|
17764
18289
|
};
|
|
17765
18290
|
valueToCopy: {
|
|
@@ -17845,7 +18370,7 @@ declare const _default: {
|
|
|
17845
18370
|
default: any;
|
|
17846
18371
|
};
|
|
17847
18372
|
optionIconType: {
|
|
17848
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18373
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17849
18374
|
default: any;
|
|
17850
18375
|
};
|
|
17851
18376
|
optionEndIconKey: {
|
|
@@ -17853,7 +18378,7 @@ declare const _default: {
|
|
|
17853
18378
|
default: any;
|
|
17854
18379
|
};
|
|
17855
18380
|
optionEndIconType: {
|
|
17856
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18381
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17857
18382
|
default: any;
|
|
17858
18383
|
};
|
|
17859
18384
|
valueToCopy: {
|
|
@@ -17889,9 +18414,9 @@ declare const _default: {
|
|
|
17889
18414
|
optionNameKey: string;
|
|
17890
18415
|
optionIconKey: string;
|
|
17891
18416
|
optionImageKey: string;
|
|
17892
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18417
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17893
18418
|
optionEndIconKey: string;
|
|
17894
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18419
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17895
18420
|
valueToCopy: string;
|
|
17896
18421
|
selectedOption: any;
|
|
17897
18422
|
brandIconType: "android" | "ios";
|
|
@@ -17909,14 +18434,16 @@ declare const _default: {
|
|
|
17909
18434
|
option: any;
|
|
17910
18435
|
disabled: boolean;
|
|
17911
18436
|
active: boolean;
|
|
17912
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18437
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18438
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18439
|
+
optionTwoLinesKey: string;
|
|
17913
18440
|
isIndeterminate: boolean;
|
|
17914
18441
|
subtitle: string;
|
|
17915
18442
|
selectAllOption: boolean;
|
|
17916
18443
|
nameKey: string;
|
|
17917
18444
|
imageKey: string;
|
|
17918
18445
|
iconKey: string;
|
|
17919
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18446
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17920
18447
|
endIconKey: string;
|
|
17921
18448
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
17922
18449
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -17933,9 +18460,17 @@ declare const _default: {
|
|
|
17933
18460
|
default: any;
|
|
17934
18461
|
};
|
|
17935
18462
|
endIconType: {
|
|
17936
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18463
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17937
18464
|
default: string;
|
|
17938
18465
|
};
|
|
18466
|
+
optionTwoLinesVariant: {
|
|
18467
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18468
|
+
default: any;
|
|
18469
|
+
};
|
|
18470
|
+
optionTwoLinesKey: {
|
|
18471
|
+
type: import("vue").PropType<string>;
|
|
18472
|
+
default: any;
|
|
18473
|
+
};
|
|
17939
18474
|
isIndeterminate: {
|
|
17940
18475
|
type: import("vue").PropType<boolean>;
|
|
17941
18476
|
default: boolean;
|
|
@@ -17961,7 +18496,7 @@ declare const _default: {
|
|
|
17961
18496
|
default: any;
|
|
17962
18497
|
};
|
|
17963
18498
|
iconType: {
|
|
17964
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18499
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17965
18500
|
default: string;
|
|
17966
18501
|
};
|
|
17967
18502
|
endIconKey: {
|
|
@@ -17975,7 +18510,7 @@ declare const _default: {
|
|
|
17975
18510
|
selectedProp: {
|
|
17976
18511
|
type: import("vue").PropType<boolean>;
|
|
17977
18512
|
};
|
|
17978
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
18513
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
17979
18514
|
$attrs: {
|
|
17980
18515
|
[x: string]: unknown;
|
|
17981
18516
|
};
|
|
@@ -18003,9 +18538,17 @@ declare const _default: {
|
|
|
18003
18538
|
default: any;
|
|
18004
18539
|
};
|
|
18005
18540
|
endIconType: {
|
|
18006
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18541
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18007
18542
|
default: string;
|
|
18008
18543
|
};
|
|
18544
|
+
optionTwoLinesVariant: {
|
|
18545
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18546
|
+
default: any;
|
|
18547
|
+
};
|
|
18548
|
+
optionTwoLinesKey: {
|
|
18549
|
+
type: import("vue").PropType<string>;
|
|
18550
|
+
default: any;
|
|
18551
|
+
};
|
|
18009
18552
|
isIndeterminate: {
|
|
18010
18553
|
type: import("vue").PropType<boolean>;
|
|
18011
18554
|
default: boolean;
|
|
@@ -18031,7 +18574,7 @@ declare const _default: {
|
|
|
18031
18574
|
default: any;
|
|
18032
18575
|
};
|
|
18033
18576
|
iconType: {
|
|
18034
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18577
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18035
18578
|
default: string;
|
|
18036
18579
|
};
|
|
18037
18580
|
endIconKey: {
|
|
@@ -18049,14 +18592,16 @@ declare const _default: {
|
|
|
18049
18592
|
option: any;
|
|
18050
18593
|
disabled: boolean;
|
|
18051
18594
|
active: boolean;
|
|
18052
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18595
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18596
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18597
|
+
optionTwoLinesKey: string;
|
|
18053
18598
|
isIndeterminate: boolean;
|
|
18054
18599
|
subtitle: string;
|
|
18055
18600
|
selectAllOption: boolean;
|
|
18056
18601
|
nameKey: string;
|
|
18057
18602
|
imageKey: string;
|
|
18058
18603
|
iconKey: string;
|
|
18059
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18604
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18060
18605
|
endIconKey: string;
|
|
18061
18606
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
18062
18607
|
}, {}, string> & {
|
|
@@ -18093,9 +18638,17 @@ declare const _default: {
|
|
|
18093
18638
|
default: any;
|
|
18094
18639
|
};
|
|
18095
18640
|
endIconType: {
|
|
18096
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18641
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18097
18642
|
default: string;
|
|
18098
18643
|
};
|
|
18644
|
+
optionTwoLinesVariant: {
|
|
18645
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18646
|
+
default: any;
|
|
18647
|
+
};
|
|
18648
|
+
optionTwoLinesKey: {
|
|
18649
|
+
type: import("vue").PropType<string>;
|
|
18650
|
+
default: any;
|
|
18651
|
+
};
|
|
18099
18652
|
isIndeterminate: {
|
|
18100
18653
|
type: import("vue").PropType<boolean>;
|
|
18101
18654
|
default: boolean;
|
|
@@ -18121,7 +18674,7 @@ declare const _default: {
|
|
|
18121
18674
|
default: any;
|
|
18122
18675
|
};
|
|
18123
18676
|
iconType: {
|
|
18124
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18677
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18125
18678
|
default: string;
|
|
18126
18679
|
};
|
|
18127
18680
|
endIconKey: {
|
|
@@ -18153,9 +18706,17 @@ declare const _default: {
|
|
|
18153
18706
|
default: any;
|
|
18154
18707
|
};
|
|
18155
18708
|
endIconType: {
|
|
18156
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18709
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18157
18710
|
default: string;
|
|
18158
18711
|
};
|
|
18712
|
+
optionTwoLinesVariant: {
|
|
18713
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18714
|
+
default: any;
|
|
18715
|
+
};
|
|
18716
|
+
optionTwoLinesKey: {
|
|
18717
|
+
type: import("vue").PropType<string>;
|
|
18718
|
+
default: any;
|
|
18719
|
+
};
|
|
18159
18720
|
isIndeterminate: {
|
|
18160
18721
|
type: import("vue").PropType<boolean>;
|
|
18161
18722
|
default: boolean;
|
|
@@ -18181,7 +18742,7 @@ declare const _default: {
|
|
|
18181
18742
|
default: any;
|
|
18182
18743
|
};
|
|
18183
18744
|
iconType: {
|
|
18184
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
18745
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18185
18746
|
default: string;
|
|
18186
18747
|
};
|
|
18187
18748
|
endIconKey: {
|
|
@@ -18199,14 +18760,16 @@ declare const _default: {
|
|
|
18199
18760
|
option: any;
|
|
18200
18761
|
disabled: boolean;
|
|
18201
18762
|
active: boolean;
|
|
18202
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18763
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18764
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18765
|
+
optionTwoLinesKey: string;
|
|
18203
18766
|
isIndeterminate: boolean;
|
|
18204
18767
|
subtitle: string;
|
|
18205
18768
|
selectAllOption: boolean;
|
|
18206
18769
|
nameKey: string;
|
|
18207
18770
|
imageKey: string;
|
|
18208
18771
|
iconKey: string;
|
|
18209
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18772
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18210
18773
|
endIconKey: string;
|
|
18211
18774
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
18212
18775
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -18332,13 +18895,13 @@ declare const _default: {
|
|
|
18332
18895
|
$: import("vue").ComponentInternalInstance;
|
|
18333
18896
|
$data: {};
|
|
18334
18897
|
$props: Partial<{
|
|
18898
|
+
container: string;
|
|
18335
18899
|
theme: string;
|
|
18336
18900
|
disabled: boolean;
|
|
18337
18901
|
size: "small" | "medium" | "large";
|
|
18338
18902
|
flip: boolean;
|
|
18339
18903
|
mandatory: boolean;
|
|
18340
18904
|
testId: string;
|
|
18341
|
-
container: string;
|
|
18342
18905
|
placement: import("floating-vue").Placement;
|
|
18343
18906
|
distance: number;
|
|
18344
18907
|
popperClass: string;
|
|
@@ -18369,17 +18932,23 @@ declare const _default: {
|
|
|
18369
18932
|
optionNameKey: string;
|
|
18370
18933
|
optionIconKey: string;
|
|
18371
18934
|
optionImageKey: string;
|
|
18372
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18935
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18373
18936
|
optionEndIconKey: string;
|
|
18374
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
18937
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18375
18938
|
valueToCopy: string;
|
|
18376
18939
|
disabledOptionKey: string;
|
|
18940
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18941
|
+
optionTwoLinesKey: string;
|
|
18377
18942
|
fullWidth: boolean;
|
|
18378
18943
|
optionsListWidth: string;
|
|
18379
18944
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
18380
18945
|
disableVirtualScroll: boolean;
|
|
18381
18946
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
18382
18947
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
18948
|
+
container: {
|
|
18949
|
+
type: import("vue").PropType<string>;
|
|
18950
|
+
default: string;
|
|
18951
|
+
};
|
|
18383
18952
|
theme: {
|
|
18384
18953
|
type: import("vue").PropType<string>;
|
|
18385
18954
|
default: string;
|
|
@@ -18407,10 +18976,6 @@ declare const _default: {
|
|
|
18407
18976
|
type: import("vue").PropType<string>;
|
|
18408
18977
|
default: string;
|
|
18409
18978
|
};
|
|
18410
|
-
container: {
|
|
18411
|
-
type: import("vue").PropType<string>;
|
|
18412
|
-
default: string;
|
|
18413
|
-
};
|
|
18414
18979
|
placement: {
|
|
18415
18980
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
18416
18981
|
default: string;
|
|
@@ -18543,7 +19108,7 @@ declare const _default: {
|
|
|
18543
19108
|
default: string;
|
|
18544
19109
|
};
|
|
18545
19110
|
optionIconType: {
|
|
18546
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19111
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18547
19112
|
default: any;
|
|
18548
19113
|
};
|
|
18549
19114
|
optionEndIconKey: {
|
|
@@ -18551,7 +19116,7 @@ declare const _default: {
|
|
|
18551
19116
|
default: string;
|
|
18552
19117
|
};
|
|
18553
19118
|
optionEndIconType: {
|
|
18554
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19119
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18555
19120
|
default: any;
|
|
18556
19121
|
};
|
|
18557
19122
|
valueToCopy: {
|
|
@@ -18562,6 +19127,14 @@ declare const _default: {
|
|
|
18562
19127
|
type: import("vue").PropType<string>;
|
|
18563
19128
|
default: string;
|
|
18564
19129
|
};
|
|
19130
|
+
optionTwoLinesVariant: {
|
|
19131
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19132
|
+
default: any;
|
|
19133
|
+
};
|
|
19134
|
+
optionTwoLinesKey: {
|
|
19135
|
+
type: import("vue").PropType<string>;
|
|
19136
|
+
default: any;
|
|
19137
|
+
};
|
|
18565
19138
|
fullWidth: {
|
|
18566
19139
|
type: import("vue").PropType<boolean>;
|
|
18567
19140
|
default: boolean;
|
|
@@ -18591,7 +19164,7 @@ declare const _default: {
|
|
|
18591
19164
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
18592
19165
|
onOpened?: () => any;
|
|
18593
19166
|
onClosed?: () => any;
|
|
18594
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "
|
|
19167
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
18595
19168
|
$attrs: {
|
|
18596
19169
|
[x: string]: unknown;
|
|
18597
19170
|
};
|
|
@@ -18606,6 +19179,10 @@ declare const _default: {
|
|
|
18606
19179
|
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
18607
19180
|
$el: any;
|
|
18608
19181
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
19182
|
+
container: {
|
|
19183
|
+
type: import("vue").PropType<string>;
|
|
19184
|
+
default: string;
|
|
19185
|
+
};
|
|
18609
19186
|
theme: {
|
|
18610
19187
|
type: import("vue").PropType<string>;
|
|
18611
19188
|
default: string;
|
|
@@ -18633,10 +19210,6 @@ declare const _default: {
|
|
|
18633
19210
|
type: import("vue").PropType<string>;
|
|
18634
19211
|
default: string;
|
|
18635
19212
|
};
|
|
18636
|
-
container: {
|
|
18637
|
-
type: import("vue").PropType<string>;
|
|
18638
|
-
default: string;
|
|
18639
|
-
};
|
|
18640
19213
|
placement: {
|
|
18641
19214
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
18642
19215
|
default: string;
|
|
@@ -18769,7 +19342,7 @@ declare const _default: {
|
|
|
18769
19342
|
default: string;
|
|
18770
19343
|
};
|
|
18771
19344
|
optionIconType: {
|
|
18772
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19345
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18773
19346
|
default: any;
|
|
18774
19347
|
};
|
|
18775
19348
|
optionEndIconKey: {
|
|
@@ -18777,7 +19350,7 @@ declare const _default: {
|
|
|
18777
19350
|
default: string;
|
|
18778
19351
|
};
|
|
18779
19352
|
optionEndIconType: {
|
|
18780
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19353
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18781
19354
|
default: any;
|
|
18782
19355
|
};
|
|
18783
19356
|
valueToCopy: {
|
|
@@ -18788,6 +19361,14 @@ declare const _default: {
|
|
|
18788
19361
|
type: import("vue").PropType<string>;
|
|
18789
19362
|
default: string;
|
|
18790
19363
|
};
|
|
19364
|
+
optionTwoLinesVariant: {
|
|
19365
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19366
|
+
default: any;
|
|
19367
|
+
};
|
|
19368
|
+
optionTwoLinesKey: {
|
|
19369
|
+
type: import("vue").PropType<string>;
|
|
19370
|
+
default: any;
|
|
19371
|
+
};
|
|
18791
19372
|
fullWidth: {
|
|
18792
19373
|
type: import("vue").PropType<boolean>;
|
|
18793
19374
|
default: boolean;
|
|
@@ -18830,13 +19411,13 @@ declare const _default: {
|
|
|
18830
19411
|
clear: () => void;
|
|
18831
19412
|
copyToClipboard: () => void;
|
|
18832
19413
|
}, string, {
|
|
19414
|
+
container: string;
|
|
18833
19415
|
theme: string;
|
|
18834
19416
|
disabled: boolean;
|
|
18835
19417
|
size: "small" | "medium" | "large";
|
|
18836
19418
|
flip: boolean;
|
|
18837
19419
|
mandatory: boolean;
|
|
18838
19420
|
testId: string;
|
|
18839
|
-
container: string;
|
|
18840
19421
|
placement: import("floating-vue").Placement;
|
|
18841
19422
|
distance: number;
|
|
18842
19423
|
popperClass: string;
|
|
@@ -18867,11 +19448,13 @@ declare const _default: {
|
|
|
18867
19448
|
optionNameKey: string;
|
|
18868
19449
|
optionIconKey: string;
|
|
18869
19450
|
optionImageKey: string;
|
|
18870
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
19451
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18871
19452
|
optionEndIconKey: string;
|
|
18872
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
19453
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18873
19454
|
valueToCopy: string;
|
|
18874
19455
|
disabledOptionKey: string;
|
|
19456
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19457
|
+
optionTwoLinesKey: string;
|
|
18875
19458
|
fullWidth: boolean;
|
|
18876
19459
|
optionsListWidth: string;
|
|
18877
19460
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -18898,6 +19481,10 @@ declare const _default: {
|
|
|
18898
19481
|
$nextTick: typeof import("vue").nextTick;
|
|
18899
19482
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
18900
19483
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
19484
|
+
container: {
|
|
19485
|
+
type: import("vue").PropType<string>;
|
|
19486
|
+
default: string;
|
|
19487
|
+
};
|
|
18901
19488
|
theme: {
|
|
18902
19489
|
type: import("vue").PropType<string>;
|
|
18903
19490
|
default: string;
|
|
@@ -18925,10 +19512,6 @@ declare const _default: {
|
|
|
18925
19512
|
type: import("vue").PropType<string>;
|
|
18926
19513
|
default: string;
|
|
18927
19514
|
};
|
|
18928
|
-
container: {
|
|
18929
|
-
type: import("vue").PropType<string>;
|
|
18930
|
-
default: string;
|
|
18931
|
-
};
|
|
18932
19515
|
placement: {
|
|
18933
19516
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
18934
19517
|
default: string;
|
|
@@ -19061,7 +19644,7 @@ declare const _default: {
|
|
|
19061
19644
|
default: string;
|
|
19062
19645
|
};
|
|
19063
19646
|
optionIconType: {
|
|
19064
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19647
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19065
19648
|
default: any;
|
|
19066
19649
|
};
|
|
19067
19650
|
optionEndIconKey: {
|
|
@@ -19069,7 +19652,7 @@ declare const _default: {
|
|
|
19069
19652
|
default: string;
|
|
19070
19653
|
};
|
|
19071
19654
|
optionEndIconType: {
|
|
19072
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19655
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19073
19656
|
default: any;
|
|
19074
19657
|
};
|
|
19075
19658
|
valueToCopy: {
|
|
@@ -19080,6 +19663,14 @@ declare const _default: {
|
|
|
19080
19663
|
type: import("vue").PropType<string>;
|
|
19081
19664
|
default: string;
|
|
19082
19665
|
};
|
|
19666
|
+
optionTwoLinesVariant: {
|
|
19667
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19668
|
+
default: any;
|
|
19669
|
+
};
|
|
19670
|
+
optionTwoLinesKey: {
|
|
19671
|
+
type: import("vue").PropType<string>;
|
|
19672
|
+
default: any;
|
|
19673
|
+
};
|
|
19083
19674
|
fullWidth: {
|
|
19084
19675
|
type: import("vue").PropType<boolean>;
|
|
19085
19676
|
default: boolean;
|
|
@@ -19117,6 +19708,10 @@ declare const _default: {
|
|
|
19117
19708
|
__isTeleport?: never;
|
|
19118
19709
|
__isSuspense?: never;
|
|
19119
19710
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
19711
|
+
container: {
|
|
19712
|
+
type: import("vue").PropType<string>;
|
|
19713
|
+
default: string;
|
|
19714
|
+
};
|
|
19120
19715
|
theme: {
|
|
19121
19716
|
type: import("vue").PropType<string>;
|
|
19122
19717
|
default: string;
|
|
@@ -19144,10 +19739,6 @@ declare const _default: {
|
|
|
19144
19739
|
type: import("vue").PropType<string>;
|
|
19145
19740
|
default: string;
|
|
19146
19741
|
};
|
|
19147
|
-
container: {
|
|
19148
|
-
type: import("vue").PropType<string>;
|
|
19149
|
-
default: string;
|
|
19150
|
-
};
|
|
19151
19742
|
placement: {
|
|
19152
19743
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
19153
19744
|
default: string;
|
|
@@ -19280,7 +19871,7 @@ declare const _default: {
|
|
|
19280
19871
|
default: string;
|
|
19281
19872
|
};
|
|
19282
19873
|
optionIconType: {
|
|
19283
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19874
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19284
19875
|
default: any;
|
|
19285
19876
|
};
|
|
19286
19877
|
optionEndIconKey: {
|
|
@@ -19288,7 +19879,7 @@ declare const _default: {
|
|
|
19288
19879
|
default: string;
|
|
19289
19880
|
};
|
|
19290
19881
|
optionEndIconType: {
|
|
19291
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
19882
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19292
19883
|
default: any;
|
|
19293
19884
|
};
|
|
19294
19885
|
valueToCopy: {
|
|
@@ -19299,6 +19890,14 @@ declare const _default: {
|
|
|
19299
19890
|
type: import("vue").PropType<string>;
|
|
19300
19891
|
default: string;
|
|
19301
19892
|
};
|
|
19893
|
+
optionTwoLinesVariant: {
|
|
19894
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19895
|
+
default: any;
|
|
19896
|
+
};
|
|
19897
|
+
optionTwoLinesKey: {
|
|
19898
|
+
type: import("vue").PropType<string>;
|
|
19899
|
+
default: any;
|
|
19900
|
+
};
|
|
19302
19901
|
fullWidth: {
|
|
19303
19902
|
type: import("vue").PropType<boolean>;
|
|
19304
19903
|
default: boolean;
|
|
@@ -19341,13 +19940,13 @@ declare const _default: {
|
|
|
19341
19940
|
clear: () => void;
|
|
19342
19941
|
copyToClipboard: () => void;
|
|
19343
19942
|
}, string, {
|
|
19943
|
+
container: string;
|
|
19344
19944
|
theme: string;
|
|
19345
19945
|
disabled: boolean;
|
|
19346
19946
|
size: "small" | "medium" | "large";
|
|
19347
19947
|
flip: boolean;
|
|
19348
19948
|
mandatory: boolean;
|
|
19349
19949
|
testId: string;
|
|
19350
|
-
container: string;
|
|
19351
19950
|
placement: import("floating-vue").Placement;
|
|
19352
19951
|
distance: number;
|
|
19353
19952
|
popperClass: string;
|
|
@@ -19378,11 +19977,13 @@ declare const _default: {
|
|
|
19378
19977
|
optionNameKey: string;
|
|
19379
19978
|
optionIconKey: string;
|
|
19380
19979
|
optionImageKey: string;
|
|
19381
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
19980
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19382
19981
|
optionEndIconKey: string;
|
|
19383
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
19982
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19384
19983
|
valueToCopy: string;
|
|
19385
19984
|
disabledOptionKey: string;
|
|
19985
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19986
|
+
optionTwoLinesKey: string;
|
|
19386
19987
|
fullWidth: boolean;
|
|
19387
19988
|
optionsListWidth: string;
|
|
19388
19989
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19436,7 +20037,7 @@ declare const _default: {
|
|
|
19436
20037
|
default: any;
|
|
19437
20038
|
};
|
|
19438
20039
|
startIconType: {
|
|
19439
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20040
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19440
20041
|
default: string;
|
|
19441
20042
|
};
|
|
19442
20043
|
hideEndIcon: {
|
|
@@ -19471,7 +20072,7 @@ declare const _default: {
|
|
|
19471
20072
|
default: any;
|
|
19472
20073
|
};
|
|
19473
20074
|
startIconType: {
|
|
19474
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20075
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19475
20076
|
default: string;
|
|
19476
20077
|
};
|
|
19477
20078
|
hideEndIcon: {
|
|
@@ -19486,7 +20087,7 @@ declare const _default: {
|
|
|
19486
20087
|
open: boolean;
|
|
19487
20088
|
testId: string;
|
|
19488
20089
|
startIconName: string;
|
|
19489
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20090
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19490
20091
|
hideEndIcon: boolean;
|
|
19491
20092
|
}> | import("vue").DefineComponent<{
|
|
19492
20093
|
disabled: {
|
|
@@ -19537,7 +20138,7 @@ declare const _default: {
|
|
|
19537
20138
|
default: string;
|
|
19538
20139
|
};
|
|
19539
20140
|
optionIconType: {
|
|
19540
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20141
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19541
20142
|
default: any;
|
|
19542
20143
|
};
|
|
19543
20144
|
optionEndIconKey: {
|
|
@@ -19545,7 +20146,7 @@ declare const _default: {
|
|
|
19545
20146
|
default: string;
|
|
19546
20147
|
};
|
|
19547
20148
|
optionEndIconType: {
|
|
19548
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20149
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19549
20150
|
default: any;
|
|
19550
20151
|
};
|
|
19551
20152
|
valueToCopy: {
|
|
@@ -19612,7 +20213,7 @@ declare const _default: {
|
|
|
19612
20213
|
default: string;
|
|
19613
20214
|
};
|
|
19614
20215
|
optionIconType: {
|
|
19615
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20216
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19616
20217
|
default: any;
|
|
19617
20218
|
};
|
|
19618
20219
|
optionEndIconKey: {
|
|
@@ -19620,7 +20221,7 @@ declare const _default: {
|
|
|
19620
20221
|
default: string;
|
|
19621
20222
|
};
|
|
19622
20223
|
optionEndIconType: {
|
|
19623
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20224
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19624
20225
|
default: any;
|
|
19625
20226
|
};
|
|
19626
20227
|
valueToCopy: {
|
|
@@ -19648,9 +20249,9 @@ declare const _default: {
|
|
|
19648
20249
|
optionNameKey: string;
|
|
19649
20250
|
optionIconKey: string;
|
|
19650
20251
|
optionImageKey: string;
|
|
19651
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20252
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19652
20253
|
optionEndIconKey: string;
|
|
19653
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20254
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19654
20255
|
valueToCopy: string;
|
|
19655
20256
|
disabledOptionKey: string;
|
|
19656
20257
|
optionChildrenKey: string;
|
|
@@ -19663,14 +20264,16 @@ declare const _default: {
|
|
|
19663
20264
|
option: any;
|
|
19664
20265
|
disabled: boolean;
|
|
19665
20266
|
active: boolean;
|
|
19666
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20267
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20268
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20269
|
+
optionTwoLinesKey: string;
|
|
19667
20270
|
isIndeterminate: boolean;
|
|
19668
20271
|
subtitle: string;
|
|
19669
20272
|
selectAllOption: boolean;
|
|
19670
20273
|
nameKey: string;
|
|
19671
20274
|
imageKey: string;
|
|
19672
20275
|
iconKey: string;
|
|
19673
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20276
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19674
20277
|
endIconKey: string;
|
|
19675
20278
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
19676
20279
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -19687,9 +20290,17 @@ declare const _default: {
|
|
|
19687
20290
|
default: any;
|
|
19688
20291
|
};
|
|
19689
20292
|
endIconType: {
|
|
19690
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20293
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19691
20294
|
default: string;
|
|
19692
20295
|
};
|
|
20296
|
+
optionTwoLinesVariant: {
|
|
20297
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20298
|
+
default: any;
|
|
20299
|
+
};
|
|
20300
|
+
optionTwoLinesKey: {
|
|
20301
|
+
type: import("vue").PropType<string>;
|
|
20302
|
+
default: any;
|
|
20303
|
+
};
|
|
19693
20304
|
isIndeterminate: {
|
|
19694
20305
|
type: import("vue").PropType<boolean>;
|
|
19695
20306
|
default: boolean;
|
|
@@ -19715,7 +20326,7 @@ declare const _default: {
|
|
|
19715
20326
|
default: any;
|
|
19716
20327
|
};
|
|
19717
20328
|
iconType: {
|
|
19718
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20329
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19719
20330
|
default: string;
|
|
19720
20331
|
};
|
|
19721
20332
|
endIconKey: {
|
|
@@ -19729,7 +20340,7 @@ declare const _default: {
|
|
|
19729
20340
|
selectedProp: {
|
|
19730
20341
|
type: import("vue").PropType<boolean>;
|
|
19731
20342
|
};
|
|
19732
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
20343
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
19733
20344
|
$attrs: {
|
|
19734
20345
|
[x: string]: unknown;
|
|
19735
20346
|
};
|
|
@@ -19757,9 +20368,17 @@ declare const _default: {
|
|
|
19757
20368
|
default: any;
|
|
19758
20369
|
};
|
|
19759
20370
|
endIconType: {
|
|
19760
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20371
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19761
20372
|
default: string;
|
|
19762
20373
|
};
|
|
20374
|
+
optionTwoLinesVariant: {
|
|
20375
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20376
|
+
default: any;
|
|
20377
|
+
};
|
|
20378
|
+
optionTwoLinesKey: {
|
|
20379
|
+
type: import("vue").PropType<string>;
|
|
20380
|
+
default: any;
|
|
20381
|
+
};
|
|
19763
20382
|
isIndeterminate: {
|
|
19764
20383
|
type: import("vue").PropType<boolean>;
|
|
19765
20384
|
default: boolean;
|
|
@@ -19785,7 +20404,7 @@ declare const _default: {
|
|
|
19785
20404
|
default: any;
|
|
19786
20405
|
};
|
|
19787
20406
|
iconType: {
|
|
19788
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20407
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19789
20408
|
default: string;
|
|
19790
20409
|
};
|
|
19791
20410
|
endIconKey: {
|
|
@@ -19803,14 +20422,16 @@ declare const _default: {
|
|
|
19803
20422
|
option: any;
|
|
19804
20423
|
disabled: boolean;
|
|
19805
20424
|
active: boolean;
|
|
19806
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20425
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20426
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20427
|
+
optionTwoLinesKey: string;
|
|
19807
20428
|
isIndeterminate: boolean;
|
|
19808
20429
|
subtitle: string;
|
|
19809
20430
|
selectAllOption: boolean;
|
|
19810
20431
|
nameKey: string;
|
|
19811
20432
|
imageKey: string;
|
|
19812
20433
|
iconKey: string;
|
|
19813
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20434
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19814
20435
|
endIconKey: string;
|
|
19815
20436
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
19816
20437
|
}, {}, string> & {
|
|
@@ -19847,9 +20468,17 @@ declare const _default: {
|
|
|
19847
20468
|
default: any;
|
|
19848
20469
|
};
|
|
19849
20470
|
endIconType: {
|
|
19850
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20471
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19851
20472
|
default: string;
|
|
19852
20473
|
};
|
|
20474
|
+
optionTwoLinesVariant: {
|
|
20475
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20476
|
+
default: any;
|
|
20477
|
+
};
|
|
20478
|
+
optionTwoLinesKey: {
|
|
20479
|
+
type: import("vue").PropType<string>;
|
|
20480
|
+
default: any;
|
|
20481
|
+
};
|
|
19853
20482
|
isIndeterminate: {
|
|
19854
20483
|
type: import("vue").PropType<boolean>;
|
|
19855
20484
|
default: boolean;
|
|
@@ -19875,7 +20504,7 @@ declare const _default: {
|
|
|
19875
20504
|
default: any;
|
|
19876
20505
|
};
|
|
19877
20506
|
iconType: {
|
|
19878
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20507
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19879
20508
|
default: string;
|
|
19880
20509
|
};
|
|
19881
20510
|
endIconKey: {
|
|
@@ -19907,9 +20536,17 @@ declare const _default: {
|
|
|
19907
20536
|
default: any;
|
|
19908
20537
|
};
|
|
19909
20538
|
endIconType: {
|
|
19910
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20539
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19911
20540
|
default: string;
|
|
19912
20541
|
};
|
|
20542
|
+
optionTwoLinesVariant: {
|
|
20543
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20544
|
+
default: any;
|
|
20545
|
+
};
|
|
20546
|
+
optionTwoLinesKey: {
|
|
20547
|
+
type: import("vue").PropType<string>;
|
|
20548
|
+
default: any;
|
|
20549
|
+
};
|
|
19913
20550
|
isIndeterminate: {
|
|
19914
20551
|
type: import("vue").PropType<boolean>;
|
|
19915
20552
|
default: boolean;
|
|
@@ -19935,7 +20572,7 @@ declare const _default: {
|
|
|
19935
20572
|
default: any;
|
|
19936
20573
|
};
|
|
19937
20574
|
iconType: {
|
|
19938
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20575
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19939
20576
|
default: string;
|
|
19940
20577
|
};
|
|
19941
20578
|
endIconKey: {
|
|
@@ -19953,14 +20590,16 @@ declare const _default: {
|
|
|
19953
20590
|
option: any;
|
|
19954
20591
|
disabled: boolean;
|
|
19955
20592
|
active: boolean;
|
|
19956
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20593
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20594
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20595
|
+
optionTwoLinesKey: string;
|
|
19957
20596
|
isIndeterminate: boolean;
|
|
19958
20597
|
subtitle: string;
|
|
19959
20598
|
selectAllOption: boolean;
|
|
19960
20599
|
nameKey: string;
|
|
19961
20600
|
imageKey: string;
|
|
19962
20601
|
iconKey: string;
|
|
19963
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20602
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19964
20603
|
endIconKey: string;
|
|
19965
20604
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
19966
20605
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -20020,7 +20659,7 @@ declare const _default: {
|
|
|
20020
20659
|
default: string;
|
|
20021
20660
|
};
|
|
20022
20661
|
optionIconType: {
|
|
20023
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20662
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20024
20663
|
default: any;
|
|
20025
20664
|
};
|
|
20026
20665
|
optionEndIconKey: {
|
|
@@ -20028,7 +20667,7 @@ declare const _default: {
|
|
|
20028
20667
|
default: string;
|
|
20029
20668
|
};
|
|
20030
20669
|
optionEndIconType: {
|
|
20031
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20670
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20032
20671
|
default: any;
|
|
20033
20672
|
};
|
|
20034
20673
|
valueToCopy: {
|
|
@@ -20095,7 +20734,7 @@ declare const _default: {
|
|
|
20095
20734
|
default: string;
|
|
20096
20735
|
};
|
|
20097
20736
|
optionIconType: {
|
|
20098
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20737
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20099
20738
|
default: any;
|
|
20100
20739
|
};
|
|
20101
20740
|
optionEndIconKey: {
|
|
@@ -20103,7 +20742,7 @@ declare const _default: {
|
|
|
20103
20742
|
default: string;
|
|
20104
20743
|
};
|
|
20105
20744
|
optionEndIconType: {
|
|
20106
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20745
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20107
20746
|
default: any;
|
|
20108
20747
|
};
|
|
20109
20748
|
valueToCopy: {
|
|
@@ -20131,9 +20770,9 @@ declare const _default: {
|
|
|
20131
20770
|
optionNameKey: string;
|
|
20132
20771
|
optionIconKey: string;
|
|
20133
20772
|
optionImageKey: string;
|
|
20134
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20773
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20135
20774
|
optionEndIconKey: string;
|
|
20136
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20775
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20137
20776
|
valueToCopy: string;
|
|
20138
20777
|
disabledOptionKey: string;
|
|
20139
20778
|
optionChildrenKey: string;
|
|
@@ -20252,8 +20891,8 @@ declare const _default: {
|
|
|
20252
20891
|
testId: string;
|
|
20253
20892
|
startIconName: string;
|
|
20254
20893
|
endIconName: string;
|
|
20255
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20256
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20894
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20895
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20257
20896
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20258
20897
|
variant: {
|
|
20259
20898
|
type: import("vue").PropType<"text" | "contained" | "outlined">;
|
|
@@ -20292,11 +20931,11 @@ declare const _default: {
|
|
|
20292
20931
|
default: any;
|
|
20293
20932
|
};
|
|
20294
20933
|
startIconType: {
|
|
20295
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20934
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20296
20935
|
default: string;
|
|
20297
20936
|
};
|
|
20298
20937
|
endIconType: {
|
|
20299
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20938
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20300
20939
|
default: string;
|
|
20301
20940
|
};
|
|
20302
20941
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
|
|
@@ -20351,11 +20990,11 @@ declare const _default: {
|
|
|
20351
20990
|
default: any;
|
|
20352
20991
|
};
|
|
20353
20992
|
startIconType: {
|
|
20354
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20993
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20355
20994
|
default: string;
|
|
20356
20995
|
};
|
|
20357
20996
|
endIconType: {
|
|
20358
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
20997
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20359
20998
|
default: string;
|
|
20360
20999
|
};
|
|
20361
21000
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
@@ -20368,8 +21007,8 @@ declare const _default: {
|
|
|
20368
21007
|
testId: string;
|
|
20369
21008
|
startIconName: string;
|
|
20370
21009
|
endIconName: string;
|
|
20371
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20372
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21010
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21011
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20373
21012
|
}, {}, string> & {
|
|
20374
21013
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20375
21014
|
created?: (() => void) | (() => void)[];
|
|
@@ -20428,11 +21067,11 @@ declare const _default: {
|
|
|
20428
21067
|
default: any;
|
|
20429
21068
|
};
|
|
20430
21069
|
startIconType: {
|
|
20431
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21070
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20432
21071
|
default: string;
|
|
20433
21072
|
};
|
|
20434
21073
|
endIconType: {
|
|
20435
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21074
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20436
21075
|
default: string;
|
|
20437
21076
|
};
|
|
20438
21077
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -20477,11 +21116,11 @@ declare const _default: {
|
|
|
20477
21116
|
default: any;
|
|
20478
21117
|
};
|
|
20479
21118
|
startIconType: {
|
|
20480
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21119
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20481
21120
|
default: string;
|
|
20482
21121
|
};
|
|
20483
21122
|
endIconType: {
|
|
20484
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21123
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20485
21124
|
default: string;
|
|
20486
21125
|
};
|
|
20487
21126
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
@@ -20494,8 +21133,8 @@ declare const _default: {
|
|
|
20494
21133
|
testId: string;
|
|
20495
21134
|
startIconName: string;
|
|
20496
21135
|
endIconName: string;
|
|
20497
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20498
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21136
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21137
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20499
21138
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20500
21139
|
$slots: {
|
|
20501
21140
|
default?(_: {}): any;
|
|
@@ -20507,7 +21146,7 @@ declare const _default: {
|
|
|
20507
21146
|
$: import("vue").ComponentInternalInstance;
|
|
20508
21147
|
$data: {};
|
|
20509
21148
|
$props: Partial<{
|
|
20510
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21149
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20511
21150
|
variant: "default" | "outlined";
|
|
20512
21151
|
disabled: boolean;
|
|
20513
21152
|
color: "default" | "primary" | "error";
|
|
@@ -20516,7 +21155,7 @@ declare const _default: {
|
|
|
20516
21155
|
iconName: string;
|
|
20517
21156
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20518
21157
|
type: {
|
|
20519
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21158
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20520
21159
|
default: string;
|
|
20521
21160
|
};
|
|
20522
21161
|
variant: {
|
|
@@ -20559,7 +21198,7 @@ declare const _default: {
|
|
|
20559
21198
|
$el: any;
|
|
20560
21199
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
20561
21200
|
type: {
|
|
20562
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21201
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20563
21202
|
default: string;
|
|
20564
21203
|
};
|
|
20565
21204
|
variant: {
|
|
@@ -20587,7 +21226,7 @@ declare const _default: {
|
|
|
20587
21226
|
default: string;
|
|
20588
21227
|
};
|
|
20589
21228
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
20590
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21229
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20591
21230
|
variant: "default" | "outlined";
|
|
20592
21231
|
disabled: boolean;
|
|
20593
21232
|
color: "default" | "primary" | "error";
|
|
@@ -20616,7 +21255,7 @@ declare const _default: {
|
|
|
20616
21255
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
20617
21256
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
20618
21257
|
type: {
|
|
20619
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21258
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20620
21259
|
default: string;
|
|
20621
21260
|
};
|
|
20622
21261
|
variant: {
|
|
@@ -20649,7 +21288,7 @@ declare const _default: {
|
|
|
20649
21288
|
__isSuspense?: never;
|
|
20650
21289
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
20651
21290
|
type: {
|
|
20652
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21291
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20653
21292
|
default: string;
|
|
20654
21293
|
};
|
|
20655
21294
|
variant: {
|
|
@@ -20677,7 +21316,7 @@ declare const _default: {
|
|
|
20677
21316
|
default: string;
|
|
20678
21317
|
};
|
|
20679
21318
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
20680
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21319
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20681
21320
|
variant: "default" | "outlined";
|
|
20682
21321
|
disabled: boolean;
|
|
20683
21322
|
color: "default" | "primary" | "error";
|
|
@@ -20703,8 +21342,8 @@ declare const _default: {
|
|
|
20703
21342
|
testId: string;
|
|
20704
21343
|
startIconName: string;
|
|
20705
21344
|
endIconName: string;
|
|
20706
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20707
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21345
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21346
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20708
21347
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20709
21348
|
variant: {
|
|
20710
21349
|
type: import("vue").PropType<"text" | "contained" | "outlined">;
|
|
@@ -20743,11 +21382,11 @@ declare const _default: {
|
|
|
20743
21382
|
default: any;
|
|
20744
21383
|
};
|
|
20745
21384
|
startIconType: {
|
|
20746
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21385
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20747
21386
|
default: string;
|
|
20748
21387
|
};
|
|
20749
21388
|
endIconType: {
|
|
20750
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21389
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20751
21390
|
default: string;
|
|
20752
21391
|
};
|
|
20753
21392
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
|
|
@@ -20802,11 +21441,11 @@ declare const _default: {
|
|
|
20802
21441
|
default: any;
|
|
20803
21442
|
};
|
|
20804
21443
|
startIconType: {
|
|
20805
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21444
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20806
21445
|
default: string;
|
|
20807
21446
|
};
|
|
20808
21447
|
endIconType: {
|
|
20809
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21448
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20810
21449
|
default: string;
|
|
20811
21450
|
};
|
|
20812
21451
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
@@ -20819,8 +21458,8 @@ declare const _default: {
|
|
|
20819
21458
|
testId: string;
|
|
20820
21459
|
startIconName: string;
|
|
20821
21460
|
endIconName: string;
|
|
20822
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20823
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21461
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21462
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20824
21463
|
}, {}, string> & {
|
|
20825
21464
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20826
21465
|
created?: (() => void) | (() => void)[];
|
|
@@ -20879,11 +21518,11 @@ declare const _default: {
|
|
|
20879
21518
|
default: any;
|
|
20880
21519
|
};
|
|
20881
21520
|
startIconType: {
|
|
20882
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21521
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20883
21522
|
default: string;
|
|
20884
21523
|
};
|
|
20885
21524
|
endIconType: {
|
|
20886
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21525
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20887
21526
|
default: string;
|
|
20888
21527
|
};
|
|
20889
21528
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -20928,11 +21567,11 @@ declare const _default: {
|
|
|
20928
21567
|
default: any;
|
|
20929
21568
|
};
|
|
20930
21569
|
startIconType: {
|
|
20931
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21570
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20932
21571
|
default: string;
|
|
20933
21572
|
};
|
|
20934
21573
|
endIconType: {
|
|
20935
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21574
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20936
21575
|
default: string;
|
|
20937
21576
|
};
|
|
20938
21577
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
@@ -20945,8 +21584,8 @@ declare const _default: {
|
|
|
20945
21584
|
testId: string;
|
|
20946
21585
|
startIconName: string;
|
|
20947
21586
|
endIconName: string;
|
|
20948
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
20949
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21587
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21588
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20950
21589
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20951
21590
|
$slots: {
|
|
20952
21591
|
default?(_: {}): any;
|
|
@@ -20957,7 +21596,7 @@ declare const _default: {
|
|
|
20957
21596
|
$: import("vue").ComponentInternalInstance;
|
|
20958
21597
|
$data: {};
|
|
20959
21598
|
$props: Partial<{
|
|
20960
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21599
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20961
21600
|
variant: "default" | "outlined";
|
|
20962
21601
|
disabled: boolean;
|
|
20963
21602
|
color: "default" | "primary" | "error";
|
|
@@ -20966,7 +21605,7 @@ declare const _default: {
|
|
|
20966
21605
|
iconName: string;
|
|
20967
21606
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20968
21607
|
type: {
|
|
20969
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21608
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20970
21609
|
default: string;
|
|
20971
21610
|
};
|
|
20972
21611
|
variant: {
|
|
@@ -21009,7 +21648,7 @@ declare const _default: {
|
|
|
21009
21648
|
$el: any;
|
|
21010
21649
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
21011
21650
|
type: {
|
|
21012
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21651
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21013
21652
|
default: string;
|
|
21014
21653
|
};
|
|
21015
21654
|
variant: {
|
|
@@ -21037,7 +21676,7 @@ declare const _default: {
|
|
|
21037
21676
|
default: string;
|
|
21038
21677
|
};
|
|
21039
21678
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
21040
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21679
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21041
21680
|
variant: "default" | "outlined";
|
|
21042
21681
|
disabled: boolean;
|
|
21043
21682
|
color: "default" | "primary" | "error";
|
|
@@ -21066,7 +21705,7 @@ declare const _default: {
|
|
|
21066
21705
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
21067
21706
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
21068
21707
|
type: {
|
|
21069
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21708
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21070
21709
|
default: string;
|
|
21071
21710
|
};
|
|
21072
21711
|
variant: {
|
|
@@ -21099,7 +21738,7 @@ declare const _default: {
|
|
|
21099
21738
|
__isSuspense?: never;
|
|
21100
21739
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
21101
21740
|
type: {
|
|
21102
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
21741
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21103
21742
|
default: string;
|
|
21104
21743
|
};
|
|
21105
21744
|
variant: {
|
|
@@ -21127,7 +21766,7 @@ declare const _default: {
|
|
|
21127
21766
|
default: string;
|
|
21128
21767
|
};
|
|
21129
21768
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
21130
|
-
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
21769
|
+
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21131
21770
|
variant: "default" | "outlined";
|
|
21132
21771
|
disabled: boolean;
|
|
21133
21772
|
color: "default" | "primary" | "error";
|