@ironsource/shared-ui 2.1.11-rc.1 → 2.1.11-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/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_1aa6df01_lang.css +1 -0
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_ba28c717_lang.css +1 -0
- package/ConditionalDroprown.vue_vue_type_style_index_0_scoped_1c5a7d7b_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_309e5351_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_f88a132e_lang.css +1 -0
- package/InlineCopy.vue_vue_type_style_index_0_scoped_ad48b61e_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_df830bf5_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_43b5cba4_lang.css +1 -0
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +1 -0
- package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_c81a7d3e_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_fe87ac03_lang.css +1 -0
- package/_virtual/_commonjsHelpers.js +8 -0
- package/components/button/v4/ToggleButtonGroupAB.vue.d.ts +3 -1
- package/components/button/v4/index.d.ts +9 -3
- package/components/dropdown/v3/Dropdown.vue.d.ts +2 -2
- package/components/dropdown/v3/index.d.ts +27 -27
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/ConditionalDroprown.vue.d.ts +68 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +15 -1
- package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +6 -1
- package/components/dropdown/v4/index.d.ts +271 -55
- package/components/inlineCopy/InlineCopy.vue.d.ts +5 -0
- package/components/inlineCopy/index.d.ts +9 -0
- package/components/popover/v4/PopoverV4.vue.d.ts +3 -1
- package/components/popover/v4/index.d.ts +9 -3
- package/index.d.ts +594 -121
- package/mocks/options.d.ts +29 -2
- package/package.json +4 -2
- package/src/components/ThemeWrapper/ThemeWrapper.vue.js +8 -0
- package/src/components/ThemeWrapper/ThemeWrapper.vue2.js +22 -0
- package/src/components/alert/Alert.vue.js +7 -0
- package/src/components/alert/Alert.vue2.js +111 -0
- package/src/components/appHeader/AppHeader.vue.js +7 -0
- package/src/components/appHeader/AppHeader.vue2.js +86 -0
- package/src/components/appIcon/AppIcon.vue.js +7 -0
- package/src/components/appIcon/AppIcon.vue2.js +35 -0
- package/src/components/appTrigger/AppTrigger.vue.js +7 -0
- package/src/components/appTrigger/AppTrigger.vue2.js +124 -0
- package/src/components/autocomplete/Autocomplete.vue.js +7 -0
- package/src/components/autocomplete/Autocomplete.vue2.js +135 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +120 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue2.js +79 -0
- package/src/components/autocompleteDropdown/GroupOption.vue.js +7 -0
- package/src/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
- package/src/components/banner/Banner.vue.js +7 -0
- package/src/components/banner/Banner.vue2.js +58 -0
- package/src/components/button/v3/Button.vue.js +7 -0
- package/src/components/button/v3/Button.vue2.js +59 -0
- package/src/components/button/v3/ButtonBase.vue.js +7 -0
- package/src/components/button/v3/ButtonBase.vue2.js +54 -0
- package/src/components/button/v3/IconButton.vue.js +7 -0
- package/src/components/button/v3/IconButton.vue2.js +45 -0
- package/src/components/button/v3/LoaderCircleIcon.vue.js +33 -0
- package/src/components/button/v3/LoaderDotsIcon.vue.js +16 -0
- package/src/components/button/v3/ScrollButton.vue.js +7 -0
- package/src/components/button/v3/ScrollButton.vue2.js +45 -0
- package/src/components/button/v4/ButtonGroup.vue.js +7 -0
- package/src/components/button/v4/ButtonGroup.vue2.js +19 -0
- package/src/components/button/v4/ButtonV4.vue.js +7 -0
- package/src/components/button/v4/ButtonV4.vue2.js +91 -0
- package/src/components/button/v4/IconButtonV4.vue.js +7 -0
- package/src/components/button/v4/IconButtonV4.vue2.js +46 -0
- package/src/components/button/v4/ToggleButtonGroupAB.vue.js +7 -0
- package/src/components/button/v4/ToggleButtonGroupAB.vue2.js +100 -0
- package/src/components/chart/Chart.vue.js +7 -0
- package/src/components/chart/Chart.vue2.js +302 -0
- package/src/components/chart/ChartHeader.vue.js +7 -0
- package/src/components/chart/ChartHeader.vue2.js +66 -0
- package/src/components/chart/ChartLegend.vue.js +7 -0
- package/src/components/chart/ChartLegend.vue2.js +72 -0
- package/src/components/chart/ChartLoader.vue.js +25 -0
- package/src/components/chart/ChartTooltip.vue.js +7 -0
- package/src/components/chart/ChartTooltip.vue2.js +81 -0
- package/src/components/chart/SettingsHeader.vue.js +7 -0
- package/src/components/chart/SettingsHeader.vue2.js +65 -0
- package/src/components/checkbox/v3/Checkbox.vue.js +7 -0
- package/src/components/checkbox/v3/Checkbox.vue2.js +99 -0
- package/src/components/checkbox/v3/icons/checked.vue.js +27 -0
- package/src/components/checkbox/v3/icons/indeterminate.vue.js +28 -0
- package/src/components/checkbox/v3/icons/unchecked.vue.js +24 -0
- package/src/components/checkbox/v4/CheckboxV4.vue.js +7 -0
- package/src/components/checkbox/v4/CheckboxV4.vue2.js +111 -0
- package/src/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
- package/src/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +30 -0
- package/src/components/checkbox/v4/icons/UncheckedState.vue.js +32 -0
- package/src/components/chip/v3/Chip.vue.js +7 -0
- package/src/components/chip/v3/Chip.vue2.js +58 -0
- package/src/components/chip/v4/ChipV4.vue.js +7 -0
- package/src/components/chip/v4/ChipV4.vue2.js +38 -0
- package/src/components/datePicker/v3/DatePicker.vue.js +7 -0
- package/src/components/datePicker/v3/DatePicker.vue2.js +69 -0
- package/src/components/datePicker/v3/DatePickerMonth.vue.js +7 -0
- package/src/components/datePicker/v3/DatePickerMonth.vue2.js +40 -0
- package/src/components/datePicker/v4/DatePickerMonthV4.vue.js +7 -0
- package/src/components/datePicker/v4/DatePickerMonthV4.vue2.js +40 -0
- package/src/components/datePicker/v4/DatePickerV4.vue.js +7 -0
- package/src/components/datePicker/v4/DatePickerV4.vue2.js +75 -0
- package/src/components/dateRange/v3/CalendarMonth.vue.js +7 -0
- package/src/components/dateRange/v3/CalendarMonth.vue2.js +147 -0
- package/src/components/dateRange/v3/DateRange.vue.js +7 -0
- package/src/components/dateRange/v3/DateRange.vue2.js +226 -0
- package/src/components/dateRange/v4/CalendarMonthV4.vue.js +7 -0
- package/src/components/dateRange/v4/CalendarMonthV4.vue2.js +134 -0
- package/src/components/dateRange/v4/DateRangeV4.vue.js +7 -0
- package/src/components/dateRange/v4/DateRangeV4.vue2.js +265 -0
- package/src/components/dialog/v3/Dialog.vue.js +7 -0
- package/src/components/dialog/v3/Dialog.vue2.js +137 -0
- package/src/components/dialog/v4/DialogV4.vue.js +7 -0
- package/src/components/dialog/v4/DialogV4.vue2.js +157 -0
- package/src/components/dropdown/common/Dropdown.common.js +375 -0
- package/src/components/dropdown/v3/Dropdown.vue.js +8 -0
- package/src/components/dropdown/v3/Dropdown.vue2.js +394 -0
- package/src/components/dropdown/v3/Label.vue.js +7 -0
- package/src/components/dropdown/v3/Label.vue2.js +36 -0
- package/src/components/dropdown/v3/Option.vue.js +7 -0
- package/src/components/dropdown/v3/Option.vue2.js +94 -0
- package/src/components/dropdown/v3/SearchInput.vue.js +7 -0
- package/src/components/dropdown/v3/SearchInput.vue2.js +82 -0
- package/src/components/dropdown/v4/AppDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/AppDropdownTrigger.vue2.js +185 -0
- package/src/components/dropdown/v4/ButtonDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +45 -0
- package/src/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +51 -0
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/ChipDropdownTrigger.vue2.js +97 -0
- package/src/components/dropdown/v4/ConditionalDroprown.vue.js +7 -0
- package/src/components/dropdown/v4/ConditionalDroprown.vue2.js +157 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +136 -0
- package/src/components/dropdown/v4/DropdownV4.vue.js +8 -0
- package/src/components/dropdown/v4/DropdownV4.vue2.js +497 -0
- package/src/components/dropdown/v4/GroupOption.vue.js +7 -0
- package/src/components/dropdown/v4/GroupOption.vue2.js +29 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +21 -0
- package/src/components/dropdown/v4/OptionV4.vue.js +7 -0
- package/src/components/dropdown/v4/OptionV4.vue2.js +256 -0
- package/src/components/dropdown/v4/TreeDropdown.vue.js +7 -0
- package/src/components/dropdown/v4/TreeDropdown.vue2.js +267 -0
- package/src/components/dropdown/v4/index.js +35 -0
- package/src/components/emptyState/v3/EmptyState.vue.js +7 -0
- package/src/components/emptyState/v3/EmptyState.vue2.js +91 -0
- package/src/components/emptyState/v3/EmptyStateIcon.vue.js +35 -0
- package/src/components/emptyState/v4/EmptyStateV4.vue.js +7 -0
- package/src/components/emptyState/v4/EmptyStateV4.vue2.js +83 -0
- package/src/components/emptyState/v4/icons/IconError.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconFiles.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoAccess.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoData.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconNoResults.vue.js +16 -0
- package/src/components/emptyState/v4/icons/IconSettings.vue.js +16 -0
- package/src/components/filterDropdown/AddFilterButton.vue.js +7 -0
- package/src/components/filterDropdown/AddFilterButton.vue2.js +50 -0
- package/src/components/filterDropdown/FilterDropdown.vue.js +7 -0
- package/src/components/filterDropdown/FilterDropdown.vue2.js +56 -0
- package/src/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
- package/src/components/filtersPanel/v3/FilterSearchInput.vue2.js +45 -0
- package/src/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
- package/src/components/filtersPanel/v3/FiltersPanel.vue2.js +40 -0
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
- package/src/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
- package/src/components/floatingToolbar/FloatingToolbar.vue.js +7 -0
- package/src/components/floatingToolbar/FloatingToolbar.vue2.js +70 -0
- package/src/components/forms/CardPanel.vue.js +7 -0
- package/src/components/forms/CardPanel.vue2.js +37 -0
- package/src/components/forms/FormCard.vue.js +7 -0
- package/src/components/forms/FormCard.vue2.js +103 -0
- package/src/components/forms/FormField.vue.js +7 -0
- package/src/components/forms/FormField.vue2.js +17 -0
- package/src/components/forms/FormRow.vue.js +7 -0
- package/src/components/forms/FormRow.vue2.js +34 -0
- package/src/components/icon/v3/Icon.vue.js +7 -0
- package/src/components/icon/v3/Icon.vue2.js +38 -0
- package/src/components/icon/v3/icons/A.vue.js +24 -0
- package/src/components/icon/v3/icons/A2.vue.js +18 -0
- package/src/components/icon/v3/icons/ABTest.vue.js +20 -0
- package/src/components/icon/v3/icons/ABTest2.vue.js +15 -0
- package/src/components/icon/v3/icons/ACircle.vue.js +20 -0
- package/src/components/icon/v3/icons/AccountBalanceWallet.vue.js +22 -0
- package/src/components/icon/v3/icons/AccountCircle.vue.js +20 -0
- package/src/components/icon/v3/icons/AccountCircleOutline.vue.js +18 -0
- package/src/components/icon/v3/icons/Add.vue.js +18 -0
- package/src/components/icon/v3/icons/Adjust.vue.js +43 -0
- package/src/components/icon/v3/icons/Analytics.vue.js +18 -0
- package/src/components/icon/v3/icons/Android.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleDown.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleLeft.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleRight.vue.js +20 -0
- package/src/components/icon/v3/icons/AngleUp.vue.js +20 -0
- package/src/components/icon/v3/icons/AppStore.vue.js +21 -0
- package/src/components/icon/v3/icons/AreaChart.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowBack.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowDownward.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowForward.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowLeft.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowRight.vue.js +18 -0
- package/src/components/icon/v3/icons/ArrowSort-Down.vue.js +20 -0
- package/src/components/icon/v3/icons/ArrowSort-Up.vue.js +20 -0
- package/src/components/icon/v3/icons/ArrowUpward.vue.js +18 -0
- package/src/components/icon/v3/icons/AutoAwesome.vue.js +18 -0
- package/src/components/icon/v3/icons/AutoMode.vue.js +20 -0
- package/src/components/icon/v3/icons/Autorenew.vue.js +18 -0
- package/src/components/icon/v3/icons/B.vue.js +24 -0
- package/src/components/icon/v3/icons/B2.vue.js +18 -0
- package/src/components/icon/v3/icons/BCircle.vue.js +20 -0
- package/src/components/icon/v3/icons/Banner.vue.js +24 -0
- package/src/components/icon/v3/icons/Bidding.vue.js +32 -0
- package/src/components/icon/v3/icons/Bidding2.vue.js +32 -0
- package/src/components/icon/v3/icons/Block.vue.js +18 -0
- package/src/components/icon/v3/icons/BorderColor.vue.js +20 -0
- package/src/components/icon/v3/icons/Bug.vue.js +20 -0
- package/src/components/icon/v3/icons/Bullhorn.vue.js +18 -0
- package/src/components/icon/v3/icons/BullseyeArrow.vue.js +23 -0
- package/src/components/icon/v3/icons/Cached.vue.js +18 -0
- package/src/components/icon/v3/icons/Calendar.vue.js +23 -0
- package/src/components/icon/v3/icons/CalendarToday.vue.js +18 -0
- package/src/components/icon/v3/icons/Cancel.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartBar.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartLine.vue.js +20 -0
- package/src/components/icon/v3/icons/ChartMixed.vue.js +20 -0
- package/src/components/icon/v3/icons/Check.vue.js +18 -0
- package/src/components/icon/v3/icons/Check2.vue.js +21 -0
- package/src/components/icon/v3/icons/CheckBold.vue.js +20 -0
- package/src/components/icon/v3/icons/CheckCircle.vue.js +21 -0
- package/src/components/icon/v3/icons/Close.vue.js +18 -0
- package/src/components/icon/v3/icons/CloseBold.vue.js +18 -0
- package/src/components/icon/v3/icons/ComputerMouse.vue.js +23 -0
- package/src/components/icon/v3/icons/CopyTo-Clipboard.vue.js +20 -0
- package/src/components/icon/v3/icons/CopyToClipboardFilled.vue.js +18 -0
- package/src/components/icon/v3/icons/Create.vue.js +20 -0
- package/src/components/icon/v3/icons/Creative.vue.js +20 -0
- package/src/components/icon/v3/icons/Cross.vue.js +20 -0
- package/src/components/icon/v3/icons/CrownFill.vue.js +18 -0
- package/src/components/icon/v3/icons/Cube.vue.js +21 -0
- package/src/components/icon/v3/icons/CubeBackground.vue.js +27 -0
- package/src/components/icon/v3/icons/Cup.vue.js +18 -0
- package/src/components/icon/v3/icons/CupA.vue.js +15 -0
- package/src/components/icon/v3/icons/CupB.vue.js +15 -0
- package/src/components/icon/v3/icons/Delete.vue.js +20 -0
- package/src/components/icon/v3/icons/Diamond.vue.js +18 -0
- package/src/components/icon/v3/icons/Dots.vue.js +20 -0
- package/src/components/icon/v3/icons/Download.vue.js +20 -0
- package/src/components/icon/v3/icons/Download2.vue.js +23 -0
- package/src/components/icon/v3/icons/DownloadDone.vue.js +20 -0
- package/src/components/icon/v3/icons/DragIndicator.vue.js +18 -0
- package/src/components/icon/v3/icons/Duplicate.vue.js +19 -0
- package/src/components/icon/v3/icons/Ecpi.vue.js +31 -0
- package/src/components/icon/v3/icons/Email.vue.js +20 -0
- package/src/components/icon/v3/icons/EmailEnvelope.vue.js +18 -0
- package/src/components/icon/v3/icons/Error.vue.js +20 -0
- package/src/components/icon/v3/icons/Eye.vue.js +22 -0
- package/src/components/icon/v3/icons/Eye2.vue.js +19 -0
- package/src/components/icon/v3/icons/EyeSlash.vue.js +21 -0
- package/src/components/icon/v3/icons/FavoriteBorder.vue.js +20 -0
- package/src/components/icon/v3/icons/Filter.vue.js +20 -0
- package/src/components/icon/v3/icons/FilterList.vue.js +18 -0
- package/src/components/icon/v3/icons/FiltersSearch.vue.js +41 -0
- package/src/components/icon/v3/icons/Frame.vue.js +20 -0
- package/src/components/icon/v3/icons/Fullscreen.vue.js +20 -0
- package/src/components/icon/v3/icons/FullscreenExit.vue.js +20 -0
- package/src/components/icon/v3/icons/Functions.vue.js +18 -0
- package/src/components/icon/v3/icons/GamepadAlt.vue.js +20 -0
- package/src/components/icon/v3/icons/Games.vue.js +20 -0
- package/src/components/icon/v3/icons/Gavel.vue.js +20 -0
- package/src/components/icon/v3/icons/Gift.vue.js +20 -0
- package/src/components/icon/v3/icons/GitHub.vue.js +20 -0
- package/src/components/icon/v3/icons/GlobeStand.vue.js +20 -0
- package/src/components/icon/v3/icons/GooglePlay.vue.js +18 -0
- package/src/components/icon/v3/icons/Group.vue.js +20 -0
- package/src/components/icon/v3/icons/Hammer.vue.js +20 -0
- package/src/components/icon/v3/icons/HandPointer.vue.js +22 -0
- package/src/components/icon/v3/icons/Hands.vue.js +20 -0
- package/src/components/icon/v3/icons/Heartbeat.vue.js +20 -0
- package/src/components/icon/v3/icons/Help.vue.js +20 -0
- package/src/components/icon/v3/icons/HelpOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/History.vue.js +18 -0
- package/src/components/icon/v3/icons/IOS.vue.js +20 -0
- package/src/components/icon/v3/icons/Image.vue.js +18 -0
- package/src/components/icon/v3/icons/ImageNotSupported.vue.js +23 -0
- package/src/components/icon/v3/icons/ImageSlash.vue.js +18 -0
- package/src/components/icon/v3/icons/ImportExport.vue.js +18 -0
- package/src/components/icon/v3/icons/ImportExport2.vue.js +18 -0
- package/src/components/icon/v3/icons/Importent.vue.js +20 -0
- package/src/components/icon/v3/icons/Info.vue.js +20 -0
- package/src/components/icon/v3/icons/Info2.vue.js +21 -0
- package/src/components/icon/v3/icons/InfoOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/Insights.vue.js +20 -0
- package/src/components/icon/v3/icons/Interstitial.vue.js +24 -0
- package/src/components/icon/v3/icons/Ios14.vue.js +20 -0
- package/src/components/icon/v3/icons/Js.vue.js +20 -0
- package/src/components/icon/v3/icons/Landscape.vue.js +18 -0
- package/src/components/icon/v3/icons/Launch.vue.js +18 -0
- package/src/components/icon/v3/icons/Levelplay.vue.js +32 -0
- package/src/components/icon/v3/icons/LimitCircle.vue.js +23 -0
- package/src/components/icon/v3/icons/LimitOctagon.vue.js +23 -0
- package/src/components/icon/v3/icons/Link.vue.js +18 -0
- package/src/components/icon/v3/icons/LoadingClean.vue.js +18 -0
- package/src/components/icon/v3/icons/Lock.vue.js +18 -0
- package/src/components/icon/v3/icons/LockOpen.vue.js +18 -0
- package/src/components/icon/v3/icons/Login.vue.js +18 -0
- package/src/components/icon/v3/icons/Logout.vue.js +18 -0
- package/src/components/icon/v3/icons/Marketing.vue.js +23 -0
- package/src/components/icon/v3/icons/MilitaryTech.vue.js +18 -0
- package/src/components/icon/v3/icons/Mix.vue.js +20 -0
- package/src/components/icon/v3/icons/Mix2.vue.js +24 -0
- package/src/components/icon/v3/icons/MobileLandscape.vue.js +20 -0
- package/src/components/icon/v3/icons/MobilePortrait.vue.js +20 -0
- package/src/components/icon/v3/icons/MoneyCheck.vue.js +22 -0
- package/src/components/icon/v3/icons/MoreHoriz.vue.js +20 -0
- package/src/components/icon/v3/icons/MoreVert.vue.js +20 -0
- package/src/components/icon/v3/icons/Mouse.vue.js +20 -0
- package/src/components/icon/v3/icons/MousePointer.vue.js +20 -0
- package/src/components/icon/v3/icons/MovingUp.vue.js +18 -0
- package/src/components/icon/v3/icons/NativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/NotificationsNone.vue.js +20 -0
- package/src/components/icon/v3/icons/Offerwall.vue.js +24 -0
- package/src/components/icon/v3/icons/Palyable.vue.js +18 -0
- package/src/components/icon/v3/icons/PaperPlane-Off.vue.js +20 -0
- package/src/components/icon/v3/icons/PaperPlane.vue.js +20 -0
- package/src/components/icon/v3/icons/Pause.vue.js +20 -0
- package/src/components/icon/v3/icons/PauseCircleFilled.vue.js +20 -0
- package/src/components/icon/v3/icons/PauseCircleOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/PhoneIphone.vue.js +18 -0
- package/src/components/icon/v3/icons/Photo.vue.js +23 -0
- package/src/components/icon/v3/icons/Photo2.vue.js +20 -0
- package/src/components/icon/v3/icons/PlayArrow.vue.js +18 -0
- package/src/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +20 -0
- package/src/components/icon/v3/icons/PlayCircleOutline.vue.js +20 -0
- package/src/components/icon/v3/icons/Qrcode.vue.js +20 -0
- package/src/components/icon/v3/icons/Question.vue.js +21 -0
- package/src/components/icon/v3/icons/QuickAB.vue.js +15 -0
- package/src/components/icon/v3/icons/QuickAB2.vue.js +15 -0
- package/src/components/icon/v3/icons/React.vue.js +20 -0
- package/src/components/icon/v3/icons/Redo.vue.js +18 -0
- package/src/components/icon/v3/icons/Refresh.vue.js +18 -0
- package/src/components/icon/v3/icons/Remove.vue.js +18 -0
- package/src/components/icon/v3/icons/Replay.vue.js +18 -0
- package/src/components/icon/v3/icons/RewardedVideo.vue.js +24 -0
- package/src/components/icon/v3/icons/RocketLaunch.vue.js +18 -0
- package/src/components/icon/v3/icons/Rotate.vue.js +20 -0
- package/src/components/icon/v3/icons/Route.vue.js +20 -0
- package/src/components/icon/v3/icons/SackDollar.vue.js +23 -0
- package/src/components/icon/v3/icons/Schedule.vue.js +18 -0
- package/src/components/icon/v3/icons/Search.vue.js +18 -0
- package/src/components/icon/v3/icons/SearchBold.vue.js +20 -0
- package/src/components/icon/v3/icons/Share.vue.js +18 -0
- package/src/components/icon/v3/icons/Slack.vue.js +18 -0
- package/src/components/icon/v3/icons/SportsEsports.vue.js +18 -0
- package/src/components/icon/v3/icons/Star.vue.js +20 -0
- package/src/components/icon/v3/icons/StarFill.vue.js +20 -0
- package/src/components/icon/v3/icons/StatusBanner.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusInterstitial.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusNativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/StatusOfferwall.vue.js +26 -0
- package/src/components/icon/v3/icons/StatusRewardedVideo.vue.js +26 -0
- package/src/components/icon/v3/icons/StopCircleFilled.vue.js +18 -0
- package/src/components/icon/v3/icons/StopCircleOutline.vue.js +18 -0
- package/src/components/icon/v3/icons/Style.vue.js +22 -0
- package/src/components/icon/v3/icons/Success.vue.js +20 -0
- package/src/components/icon/v3/icons/SuccessFull.vue.js +20 -0
- package/src/components/icon/v3/icons/Switch.vue.js +20 -0
- package/src/components/icon/v3/icons/TableEdit.vue.js +18 -0
- package/src/components/icon/v3/icons/TabletLandscape.vue.js +20 -0
- package/src/components/icon/v3/icons/TabletMac.vue.js +18 -0
- package/src/components/icon/v3/icons/TabletPortrait.vue.js +20 -0
- package/src/components/icon/v3/icons/Texture.vue.js +20 -0
- package/src/components/icon/v3/icons/ThemeDark.vue.js +18 -0
- package/src/components/icon/v3/icons/ThemeLight.vue.js +18 -0
- package/src/components/icon/v3/icons/Timelapse.vue.js +18 -0
- package/src/components/icon/v3/icons/Timeline.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingDown.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingFlat.vue.js +18 -0
- package/src/components/icon/v3/icons/TrendingUp.vue.js +18 -0
- package/src/components/icon/v3/icons/Tune.vue.js +20 -0
- package/src/components/icon/v3/icons/TwoToneBanner.vue.js +28 -0
- package/src/components/icon/v3/icons/TwoToneInterstitial.vue.js +28 -0
- package/src/components/icon/v3/icons/TwoToneNativeAd.vue.js +15 -0
- package/src/components/icon/v3/icons/TwoToneOfferwall.vue.js +24 -0
- package/src/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +30 -0
- package/src/components/icon/v3/icons/Undo.vue.js +18 -0
- package/src/components/icon/v3/icons/UnfoldLess.vue.js +20 -0
- package/src/components/icon/v3/icons/UnfoldMore.vue.js +20 -0
- package/src/components/icon/v3/icons/VerticalAlignTop.vue.js +18 -0
- package/src/components/icon/v3/icons/VerticalAlignTop2.vue.js +18 -0
- package/src/components/icon/v3/icons/Vibration.vue.js +20 -0
- package/src/components/icon/v3/icons/VideoRound.vue.js +20 -0
- package/src/components/icon/v3/icons/ViewCarousel.vue.js +18 -0
- package/src/components/icon/v3/icons/Visibility.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityOff.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityOffStrok.vue.js +18 -0
- package/src/components/icon/v3/icons/VisibilityStrok.vue.js +18 -0
- package/src/components/icon/v3/icons/VolumeOff.vue.js +20 -0
- package/src/components/icon/v3/icons/VolumeUp.vue.js +20 -0
- package/src/components/icon/v3/icons/Warning.vue.js +18 -0
- package/src/components/icon/v3/icons/Warning2.vue.js +20 -0
- package/src/components/icon/v3/icons/Warning3.vue.js +21 -0
- package/src/components/icon/v3/icons/WarningCircle.vue.js +21 -0
- package/src/components/icon/v3/icons/WarningOctagon.vue.js +21 -0
- package/src/components/icon/v3/icons/WebApp.vue.js +18 -0
- package/src/components/icon/v3/icons/Widget.vue.js +22 -0
- package/src/components/icon/v3/icons/Widgets.vue.js +18 -0
- package/src/components/icon/v3/icons/WidgetsFill.vue.js +18 -0
- package/src/components/icon/v3/icons/WidgetsFlatSquares.vue.js +49 -0
- package/src/components/icon/v3/icons/Widgetsz.vue.js +25 -0
- package/src/components/icon/v3/icons/WifiProtectedSetup.vue.js +20 -0
- package/src/components/icon/v4/IconFlag.vue.js +7 -0
- package/src/components/icon/v4/IconFlag.vue2.js +32 -0
- package/src/components/icon/v4/IconV4.vue.js +7 -0
- package/src/components/icon/v4/IconV4.vue2.js +71 -0
- package/src/components/includeExclude/IncludeExclude.vue.js +7 -0
- package/src/components/includeExclude/IncludeExclude.vue2.js +431 -0
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeAppHeader.vue2.js +116 -0
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +109 -0
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeChipFilter.vue2.js +149 -0
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeDragDrop.vue2.js +466 -0
- package/src/components/includeExclude/IncludeExcludeOption.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeOption.vue2.js +115 -0
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +7 -0
- package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +106 -0
- package/src/components/inlineCopy/InlineCopy.vue.js +7 -0
- package/src/components/inlineCopy/InlineCopy.vue2.js +74 -0
- package/src/components/input/v3/DollarInput.vue.js +7 -0
- package/src/components/input/v3/DollarInput.vue2.js +32 -0
- package/src/components/input/v3/Input.vue.js +7 -0
- package/src/components/input/v3/Input.vue2.js +211 -0
- package/src/components/input/v3/PasswordInput.vue.js +7 -0
- package/src/components/input/v3/PasswordInput.vue2.js +34 -0
- package/src/components/input/v3/PercentageInput.vue.js +7 -0
- package/src/components/input/v3/PercentageInput.vue2.js +32 -0
- package/src/components/input/v4/TextField.vue.js +7 -0
- package/src/components/input/v4/TextField.vue2.js +221 -0
- package/src/components/layout/FoldableSection.vue.js +7 -0
- package/src/components/layout/FoldableSection.vue2.js +61 -0
- package/src/components/loader/v4/Loader.vue.js +7 -0
- package/src/components/loader/v4/Loader.vue2.js +48 -0
- package/src/components/menu/Menu.vue.js +8 -0
- package/src/components/menu/Menu.vue2.js +62 -0
- package/src/components/menuItem/MenuItem.vue.js +7 -0
- package/src/components/menuItem/MenuItem.vue2.js +23 -0
- package/src/components/multibar/MultiBar.vue.js +7 -0
- package/src/components/multibar/MultiBar.vue2.js +105 -0
- package/src/components/multibar/MultiBarMenu.vue.js +7 -0
- package/src/components/multibar/MultiBarMenu.vue2.js +61 -0
- package/src/components/popover/v3/Popover.vue.js +8 -0
- package/src/components/popover/v3/Popover.vue2.js +38 -0
- package/src/components/popover/v4/PopoverV4.vue.js +7 -0
- package/src/components/popover/v4/PopoverV4.vue2.js +59 -0
- package/src/components/radioButton/v3/RadioButton.vue.js +7 -0
- package/src/components/radioButton/v3/RadioButton.vue2.js +79 -0
- package/src/components/radioButton/v3/RadioGroup.vue.js +7 -0
- package/src/components/radioButton/v3/RadioGroup.vue2.js +29 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue2.js +80 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
- package/src/components/search/v3/Search.vue.js +7 -0
- package/src/components/search/v3/Search.vue2.js +62 -0
- package/src/components/search/v4/SearchV4.vue.js +7 -0
- package/src/components/search/v4/SearchV4.vue2.js +59 -0
- package/src/components/shared/FieldHelpText.vue.js +7 -0
- package/src/components/shared/FieldHelpText.vue2.js +43 -0
- package/src/components/shared/FieldLabel.vue.js +7 -0
- package/src/components/shared/FieldLabel.vue2.js +79 -0
- package/src/components/shared/FieldMaxLength.vue.js +7 -0
- package/src/components/shared/FieldMaxLength.vue2.js +24 -0
- package/src/components/skeleton/v3/Skeleton.vue.js +7 -0
- package/src/components/skeleton/v3/Skeleton.vue2.js +18 -0
- package/src/components/skeleton/v4/SkeletonV4.vue.js +7 -0
- package/src/components/skeleton/v4/SkeletonV4.vue2.js +23 -0
- package/src/components/snackbar/v3/Snackbar.vue.js +7 -0
- package/src/components/snackbar/v3/Snackbar.vue2.js +129 -0
- package/src/components/snackbar/v4/SnackbarV4.vue.js +7 -0
- package/src/components/snackbar/v4/SnackbarV4.vue2.js +141 -0
- package/src/components/sortableList/SortableItem.vue.js +7 -0
- package/src/components/sortableList/SortableItem.vue2.js +140 -0
- package/src/components/sortableList/SortableItemLabel.vue.js +7 -0
- package/src/components/sortableList/SortableItemLabel.vue2.js +60 -0
- package/src/components/sortableList/SortableList.vue.js +7 -0
- package/src/components/sortableList/SortableList.vue2.js +160 -0
- package/src/components/statusDot/StatusDot.vue.js +7 -0
- package/src/components/statusDot/StatusDot.vue2.js +15 -0
- package/src/components/switch/v3/Switch.vue.js +7 -0
- package/src/components/switch/v3/Switch.vue2.js +69 -0
- package/src/components/switch/v4/SwitchV4.vue.js +7 -0
- package/src/components/switch/v4/SwitchV4.vue2.js +44 -0
- package/src/components/table/v3/SortOrderIcon.vue.js +21 -0
- package/src/components/table/v3/Table.vue.js +7 -0
- package/src/components/table/v3/Table.vue2.js +248 -0
- package/src/components/table/v3/TableHeaderSorter.vue.js +7 -0
- package/src/components/table/v3/TableHeaderSorter.vue2.js +23 -0
- package/src/components/table/v4/DataGrid.vue.js +7 -0
- package/src/components/table/v4/DataGrid.vue2.js +350 -0
- package/src/components/table/v4/DataGridMenu.vue.js +7 -0
- package/src/components/table/v4/DataGridMenu.vue2.js +66 -0
- package/src/components/table/v4/DataGridRowsCounter.vue.js +7 -0
- package/src/components/table/v4/DataGridRowsCounter.vue2.js +53 -0
- package/src/components/table/v4/ExpandRowToggle.vue.js +7 -0
- package/src/components/table/v4/ExpandRowToggle.vue2.js +26 -0
- package/src/components/table/v4/HelpIcon.vue.js +7 -0
- package/src/components/table/v4/HelpIcon.vue2.js +33 -0
- package/src/components/table/v4/MultipleDataGrid.vue.js +7 -0
- package/src/components/table/v4/MultipleDataGrid.vue2.js +181 -0
- package/src/components/table/v4/SortIcon.vue.js +7 -0
- package/src/components/table/v4/SortIcon.vue2.js +25 -0
- package/src/components/table-cells/v3/Editable.vue.js +7 -0
- package/src/components/table-cells/v3/Editable.vue2.js +43 -0
- package/src/components/table-cells/v4/EditableV4.vue.js +7 -0
- package/src/components/table-cells/v4/EditableV4.vue2.js +56 -0
- package/src/components/tabs/v3/Tabs.vue.js +7 -0
- package/src/components/tabs/v3/Tabs.vue2.js +85 -0
- package/src/components/tabs/v4/TabsV4.vue.js +7 -0
- package/src/components/tabs/v4/TabsV4.vue2.js +72 -0
- package/src/components/textArea/v3/TextArea.vue.js +7 -0
- package/src/components/textArea/v3/TextArea.vue2.js +65 -0
- package/src/components/textArea/v4/TextAreaV4.vue.js +7 -0
- package/src/components/textArea/v4/TextAreaV4.vue2.js +80 -0
- package/src/components/toggle/v3/Toggle.vue.js +7 -0
- package/src/components/toggle/v3/Toggle.vue2.js +95 -0
- package/src/components/toggle/v4/ToggleV4.vue.js +7 -0
- package/src/components/toggle/v4/ToggleV4.vue2.js +96 -0
- package/src/components/tooltip/v3/TextWithTitleContent.vue.js +7 -0
- package/src/components/tooltip/v3/TextWithTitleContent.vue2.js +46 -0
- package/src/components/tooltip/v3/Tooltip.vue.js +8 -0
- package/src/components/tooltip/v3/Tooltip.vue2.js +87 -0
- package/src/components/tooltip/v4/TextWithTitleContent.vue.js +7 -0
- package/src/components/tooltip/v4/TextWithTitleContent.vue2.js +36 -0
- package/src/components/tooltip/v4/TooltipV4.vue.js +8 -0
- package/src/components/tooltip/v4/TooltipV4.vue2.js +70 -0
- package/src/components/typography/Heading.vue.js +7 -0
- package/src/components/typography/Heading.vue2.js +25 -0
- package/src/components/typography/Text.vue.js +7 -0
- package/src/components/typography/Text.vue2.js +23 -0
- package/src/components/typography/v4/Typography.vue.js +7 -0
- package/src/components/typography/v4/Typography.vue2.js +85 -0
- package/src/index.js +213 -0
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_7f750550_lang.css +0 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_f81413ec_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_991a7aad_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_4070942a_lang.css +0 -1
- package/PopoverV4.vue_vue_type_style_index_0_scoped_74bbce13_lang.css +0 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +0 -1
- package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_9d9e51c0_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_6ac5f602_lang.css +0 -1
- package/components/ThemeWrapper/ThemeWrapper.vue.js +0 -8
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +0 -22
- package/components/alert/Alert.vue.js +0 -7
- package/components/alert/Alert.vue2.js +0 -111
- package/components/appHeader/AppHeader.vue.js +0 -7
- package/components/appHeader/AppHeader.vue2.js +0 -86
- package/components/appIcon/AppIcon.vue.js +0 -7
- package/components/appIcon/AppIcon.vue2.js +0 -35
- package/components/appTrigger/AppTrigger.vue.js +0 -7
- package/components/appTrigger/AppTrigger.vue2.js +0 -124
- package/components/autocomplete/Autocomplete.vue.js +0 -7
- package/components/autocomplete/Autocomplete.vue2.js +0 -134
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +0 -120
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +0 -79
- package/components/autocompleteDropdown/GroupOption.vue.js +0 -7
- package/components/autocompleteDropdown/GroupOption.vue2.js +0 -35
- package/components/banner/Banner.vue.js +0 -7
- package/components/banner/Banner.vue2.js +0 -58
- package/components/button/v3/Button.vue.js +0 -7
- package/components/button/v3/Button.vue2.js +0 -59
- package/components/button/v3/ButtonBase.vue.js +0 -7
- package/components/button/v3/ButtonBase.vue2.js +0 -54
- package/components/button/v3/IconButton.vue.js +0 -7
- package/components/button/v3/IconButton.vue2.js +0 -45
- package/components/button/v3/LoaderCircleIcon.vue.js +0 -33
- package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
- package/components/button/v3/LoaderDotsIcon.vue.js +0 -16
- package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
- package/components/button/v3/ScrollButton.vue.js +0 -7
- package/components/button/v3/ScrollButton.vue2.js +0 -45
- package/components/button/v4/ButtonGroup.vue.js +0 -7
- package/components/button/v4/ButtonGroup.vue2.js +0 -19
- package/components/button/v4/ButtonV4.vue.js +0 -7
- package/components/button/v4/ButtonV4.vue2.js +0 -91
- package/components/button/v4/IconButtonV4.vue.js +0 -7
- package/components/button/v4/IconButtonV4.vue2.js +0 -46
- package/components/button/v4/ToggleButtonGroupAB.vue.js +0 -7
- package/components/button/v4/ToggleButtonGroupAB.vue2.js +0 -95
- package/components/chart/Chart.vue.js +0 -7
- package/components/chart/Chart.vue2.js +0 -302
- package/components/chart/ChartHeader.vue.js +0 -7
- package/components/chart/ChartHeader.vue2.js +0 -66
- package/components/chart/ChartLegend.vue.js +0 -7
- package/components/chart/ChartLegend.vue2.js +0 -72
- package/components/chart/ChartLoader.vue.js +0 -25
- package/components/chart/ChartLoader.vue2.js +0 -0
- package/components/chart/ChartTooltip.vue.js +0 -7
- package/components/chart/ChartTooltip.vue2.js +0 -81
- package/components/chart/SettingsHeader.vue.js +0 -7
- package/components/chart/SettingsHeader.vue2.js +0 -57
- package/components/checkbox/v3/Checkbox.vue.js +0 -7
- package/components/checkbox/v3/Checkbox.vue2.js +0 -99
- package/components/checkbox/v3/icons/checked.vue.js +0 -27
- package/components/checkbox/v3/icons/indeterminate.vue.js +0 -28
- package/components/checkbox/v3/icons/unchecked.vue.js +0 -24
- package/components/checkbox/v4/CheckboxV4.vue.js +0 -7
- package/components/checkbox/v4/CheckboxV4.vue2.js +0 -111
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +0 -40
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +0 -30
- package/components/checkbox/v4/icons/UncheckedState.vue.js +0 -32
- package/components/chip/v3/Chip.vue.js +0 -7
- package/components/chip/v3/Chip.vue2.js +0 -58
- package/components/chip/v4/ChipV4.vue.js +0 -7
- package/components/chip/v4/ChipV4.vue2.js +0 -38
- package/components/datePicker/v3/DatePicker.vue.js +0 -7
- package/components/datePicker/v3/DatePicker.vue2.js +0 -69
- package/components/datePicker/v3/DatePickerMonth.vue.js +0 -7
- package/components/datePicker/v3/DatePickerMonth.vue2.js +0 -40
- package/components/datePicker/v4/DatePickerMonthV4.vue.js +0 -7
- package/components/datePicker/v4/DatePickerMonthV4.vue2.js +0 -40
- package/components/datePicker/v4/DatePickerV4.vue.js +0 -7
- package/components/datePicker/v4/DatePickerV4.vue2.js +0 -74
- package/components/dateRange/v3/CalendarMonth.vue.js +0 -7
- package/components/dateRange/v3/CalendarMonth.vue2.js +0 -147
- package/components/dateRange/v3/DateRange.vue.js +0 -7
- package/components/dateRange/v3/DateRange.vue2.js +0 -226
- package/components/dateRange/v4/CalendarMonthV4.vue.js +0 -7
- package/components/dateRange/v4/CalendarMonthV4.vue2.js +0 -134
- package/components/dateRange/v4/DateRangeV4.vue.js +0 -7
- package/components/dateRange/v4/DateRangeV4.vue2.js +0 -265
- package/components/dialog/v3/Dialog.vue.js +0 -7
- package/components/dialog/v3/Dialog.vue2.js +0 -137
- package/components/dialog/v4/DialogV4.vue.js +0 -7
- package/components/dialog/v4/DialogV4.vue2.js +0 -157
- package/components/dropdown/common/Dropdown.common.js +0 -377
- package/components/dropdown/v3/Dropdown.vue.js +0 -8
- package/components/dropdown/v3/Dropdown.vue2.js +0 -394
- package/components/dropdown/v3/Label.vue.js +0 -7
- package/components/dropdown/v3/Label.vue2.js +0 -36
- package/components/dropdown/v3/Option.vue.js +0 -7
- package/components/dropdown/v3/Option.vue2.js +0 -94
- package/components/dropdown/v3/SearchInput.vue.js +0 -7
- package/components/dropdown/v3/SearchInput.vue2.js +0 -82
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +0 -185
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +0 -45
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +0 -51
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +0 -75
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +0 -136
- package/components/dropdown/v4/DropdownV4.vue.js +0 -8
- package/components/dropdown/v4/DropdownV4.vue2.js +0 -473
- package/components/dropdown/v4/GroupOption.vue.js +0 -7
- package/components/dropdown/v4/GroupOption.vue2.js +0 -29
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +0 -21
- package/components/dropdown/v4/OptionV4.vue.js +0 -7
- package/components/dropdown/v4/OptionV4.vue2.js +0 -219
- package/components/dropdown/v4/TreeDropdown.vue.js +0 -7
- package/components/dropdown/v4/TreeDropdown.vue2.js +0 -228
- package/components/dropdown/v4/index.js +0 -32
- package/components/emptyState/v3/EmptyState.vue.js +0 -7
- package/components/emptyState/v3/EmptyState.vue2.js +0 -91
- package/components/emptyState/v3/EmptyStateIcon.vue.js +0 -35
- package/components/emptyState/v3/EmptyStateIcon.vue2.js +0 -0
- package/components/emptyState/v4/EmptyStateV4.vue.js +0 -7
- package/components/emptyState/v4/EmptyStateV4.vue2.js +0 -83
- package/components/emptyState/v4/icons/IconError.vue.js +0 -16
- package/components/emptyState/v4/icons/IconFiles.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoAccess.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoData.vue.js +0 -16
- package/components/emptyState/v4/icons/IconNoResults.vue.js +0 -16
- package/components/emptyState/v4/icons/IconSettings.vue.js +0 -16
- package/components/filterDropdown/AddFilterButton.vue.js +0 -7
- package/components/filterDropdown/AddFilterButton.vue2.js +0 -50
- package/components/filterDropdown/FilterDropdown.vue.js +0 -7
- package/components/filterDropdown/FilterDropdown.vue2.js +0 -56
- package/components/filtersPanel/v3/FilterSearchInput.vue.js +0 -7
- package/components/filtersPanel/v3/FilterSearchInput.vue2.js +0 -45
- package/components/filtersPanel/v3/FiltersPanel.vue.js +0 -7
- package/components/filtersPanel/v3/FiltersPanel.vue2.js +0 -40
- package/components/filtersPanel/v4/FiltersPanelV4.vue.js +0 -7
- package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +0 -23
- package/components/floatingToolbar/FloatingToolbar.vue.js +0 -7
- package/components/floatingToolbar/FloatingToolbar.vue2.js +0 -70
- package/components/forms/CardPanel.vue.js +0 -7
- package/components/forms/CardPanel.vue2.js +0 -37
- package/components/forms/FormCard.vue.js +0 -7
- package/components/forms/FormCard.vue2.js +0 -103
- package/components/forms/FormField.vue.js +0 -7
- package/components/forms/FormField.vue2.js +0 -17
- package/components/forms/FormRow.vue.js +0 -7
- package/components/forms/FormRow.vue2.js +0 -34
- package/components/icon/v3/Icon.vue.js +0 -7
- package/components/icon/v3/Icon.vue2.js +0 -38
- package/components/icon/v3/icons/A.vue.js +0 -24
- package/components/icon/v3/icons/A2.vue.js +0 -18
- package/components/icon/v3/icons/ABTest.vue.js +0 -20
- package/components/icon/v3/icons/ABTest2.vue.js +0 -15
- package/components/icon/v3/icons/ACircle.vue.js +0 -20
- package/components/icon/v3/icons/AccountBalanceWallet.vue.js +0 -22
- package/components/icon/v3/icons/AccountCircle.vue.js +0 -20
- package/components/icon/v3/icons/AccountCircleOutline.vue.js +0 -18
- package/components/icon/v3/icons/Add.vue.js +0 -18
- package/components/icon/v3/icons/Adjust.vue.js +0 -43
- package/components/icon/v3/icons/Analytics.vue.js +0 -18
- package/components/icon/v3/icons/Android.vue.js +0 -20
- package/components/icon/v3/icons/AngleDown.vue.js +0 -20
- package/components/icon/v3/icons/AngleLeft.vue.js +0 -20
- package/components/icon/v3/icons/AngleRight.vue.js +0 -20
- package/components/icon/v3/icons/AngleUp.vue.js +0 -20
- package/components/icon/v3/icons/AppStore.vue.js +0 -21
- package/components/icon/v3/icons/AreaChart.vue.js +0 -18
- package/components/icon/v3/icons/ArrowBack.vue.js +0 -18
- package/components/icon/v3/icons/ArrowDownward.vue.js +0 -18
- package/components/icon/v3/icons/ArrowForward.vue.js +0 -18
- package/components/icon/v3/icons/ArrowLeft.vue.js +0 -18
- package/components/icon/v3/icons/ArrowRight.vue.js +0 -18
- package/components/icon/v3/icons/ArrowSort-Down.vue.js +0 -20
- package/components/icon/v3/icons/ArrowSort-Up.vue.js +0 -20
- package/components/icon/v3/icons/ArrowUpward.vue.js +0 -18
- package/components/icon/v3/icons/AutoAwesome.vue.js +0 -18
- package/components/icon/v3/icons/AutoMode.vue.js +0 -20
- package/components/icon/v3/icons/Autorenew.vue.js +0 -18
- package/components/icon/v3/icons/B.vue.js +0 -24
- package/components/icon/v3/icons/B2.vue.js +0 -18
- package/components/icon/v3/icons/BCircle.vue.js +0 -20
- package/components/icon/v3/icons/Banner.vue.js +0 -24
- package/components/icon/v3/icons/Bidding.vue.js +0 -32
- package/components/icon/v3/icons/Bidding2.vue.js +0 -32
- package/components/icon/v3/icons/Block.vue.js +0 -18
- package/components/icon/v3/icons/BorderColor.vue.js +0 -20
- package/components/icon/v3/icons/Bug.vue.js +0 -20
- package/components/icon/v3/icons/Bullhorn.vue.js +0 -18
- package/components/icon/v3/icons/BullseyeArrow.vue.js +0 -23
- package/components/icon/v3/icons/Cached.vue.js +0 -18
- package/components/icon/v3/icons/Calendar.vue.js +0 -23
- package/components/icon/v3/icons/CalendarToday.vue.js +0 -18
- package/components/icon/v3/icons/Cancel.vue.js +0 -20
- package/components/icon/v3/icons/ChartBar.vue.js +0 -20
- package/components/icon/v3/icons/ChartLine.vue.js +0 -20
- package/components/icon/v3/icons/ChartMixed.vue.js +0 -20
- package/components/icon/v3/icons/Check.vue.js +0 -18
- package/components/icon/v3/icons/Check2.vue.js +0 -21
- package/components/icon/v3/icons/CheckBold.vue.js +0 -20
- package/components/icon/v3/icons/CheckCircle.vue.js +0 -21
- package/components/icon/v3/icons/Close.vue.js +0 -18
- package/components/icon/v3/icons/CloseBold.vue.js +0 -18
- package/components/icon/v3/icons/ComputerMouse.vue.js +0 -23
- package/components/icon/v3/icons/CopyTo-Clipboard.vue.js +0 -20
- package/components/icon/v3/icons/CopyToClipboardFilled.vue.js +0 -18
- package/components/icon/v3/icons/Create.vue.js +0 -20
- package/components/icon/v3/icons/Creative.vue.js +0 -20
- package/components/icon/v3/icons/Cross.vue.js +0 -20
- package/components/icon/v3/icons/CrownFill.vue.js +0 -18
- package/components/icon/v3/icons/Cube.vue.js +0 -21
- package/components/icon/v3/icons/CubeBackground.vue.js +0 -27
- package/components/icon/v3/icons/Cup.vue.js +0 -18
- package/components/icon/v3/icons/CupA.vue.js +0 -15
- package/components/icon/v3/icons/CupB.vue.js +0 -15
- package/components/icon/v3/icons/Delete.vue.js +0 -20
- package/components/icon/v3/icons/Diamond.vue.js +0 -18
- package/components/icon/v3/icons/Dots.vue.js +0 -20
- package/components/icon/v3/icons/Download.vue.js +0 -20
- package/components/icon/v3/icons/Download2.vue.js +0 -23
- package/components/icon/v3/icons/DownloadDone.vue.js +0 -20
- package/components/icon/v3/icons/DragIndicator.vue.js +0 -18
- package/components/icon/v3/icons/Duplicate.vue.js +0 -19
- package/components/icon/v3/icons/Ecpi.vue.js +0 -31
- package/components/icon/v3/icons/Email.vue.js +0 -20
- package/components/icon/v3/icons/EmailEnvelope.vue.js +0 -18
- package/components/icon/v3/icons/Error.vue.js +0 -20
- package/components/icon/v3/icons/Eye.vue.js +0 -22
- package/components/icon/v3/icons/Eye2.vue.js +0 -19
- package/components/icon/v3/icons/EyeSlash.vue.js +0 -21
- package/components/icon/v3/icons/FavoriteBorder.vue.js +0 -20
- package/components/icon/v3/icons/Filter.vue.js +0 -20
- package/components/icon/v3/icons/FilterList.vue.js +0 -18
- package/components/icon/v3/icons/FiltersSearch.vue.js +0 -41
- package/components/icon/v3/icons/Frame.vue.js +0 -20
- package/components/icon/v3/icons/Fullscreen.vue.js +0 -20
- package/components/icon/v3/icons/FullscreenExit.vue.js +0 -20
- package/components/icon/v3/icons/Functions.vue.js +0 -18
- package/components/icon/v3/icons/GamepadAlt.vue.js +0 -20
- package/components/icon/v3/icons/Games.vue.js +0 -20
- package/components/icon/v3/icons/Gavel.vue.js +0 -20
- package/components/icon/v3/icons/Gift.vue.js +0 -20
- package/components/icon/v3/icons/GitHub.vue.js +0 -20
- package/components/icon/v3/icons/GlobeStand.vue.js +0 -20
- package/components/icon/v3/icons/GooglePlay.vue.js +0 -18
- package/components/icon/v3/icons/Group.vue.js +0 -20
- package/components/icon/v3/icons/Hammer.vue.js +0 -20
- package/components/icon/v3/icons/HandPointer.vue.js +0 -22
- package/components/icon/v3/icons/Hands.vue.js +0 -20
- package/components/icon/v3/icons/Heartbeat.vue.js +0 -20
- package/components/icon/v3/icons/Help.vue.js +0 -20
- package/components/icon/v3/icons/HelpOutline.vue.js +0 -20
- package/components/icon/v3/icons/History.vue.js +0 -18
- package/components/icon/v3/icons/IOS.vue.js +0 -20
- package/components/icon/v3/icons/Image.vue.js +0 -18
- package/components/icon/v3/icons/ImageNotSupported.vue.js +0 -23
- package/components/icon/v3/icons/ImageSlash.vue.js +0 -18
- package/components/icon/v3/icons/ImportExport.vue.js +0 -18
- package/components/icon/v3/icons/ImportExport2.vue.js +0 -18
- package/components/icon/v3/icons/Importent.vue.js +0 -20
- package/components/icon/v3/icons/Info.vue.js +0 -20
- package/components/icon/v3/icons/Info2.vue.js +0 -21
- package/components/icon/v3/icons/InfoOutline.vue.js +0 -20
- package/components/icon/v3/icons/Insights.vue.js +0 -20
- package/components/icon/v3/icons/Interstitial.vue.js +0 -24
- package/components/icon/v3/icons/Ios14.vue.js +0 -20
- package/components/icon/v3/icons/Js.vue.js +0 -20
- package/components/icon/v3/icons/Landscape.vue.js +0 -18
- package/components/icon/v3/icons/Launch.vue.js +0 -18
- package/components/icon/v3/icons/Levelplay.vue.js +0 -32
- package/components/icon/v3/icons/LimitCircle.vue.js +0 -23
- package/components/icon/v3/icons/LimitOctagon.vue.js +0 -23
- package/components/icon/v3/icons/Link.vue.js +0 -18
- package/components/icon/v3/icons/LoadingClean.vue.js +0 -18
- package/components/icon/v3/icons/Lock.vue.js +0 -18
- package/components/icon/v3/icons/LockOpen.vue.js +0 -18
- package/components/icon/v3/icons/Login.vue.js +0 -18
- package/components/icon/v3/icons/Logout.vue.js +0 -18
- package/components/icon/v3/icons/Marketing.vue.js +0 -23
- package/components/icon/v3/icons/MilitaryTech.vue.js +0 -18
- package/components/icon/v3/icons/Mix.vue.js +0 -20
- package/components/icon/v3/icons/Mix2.vue.js +0 -24
- package/components/icon/v3/icons/MobileLandscape.vue.js +0 -20
- package/components/icon/v3/icons/MobilePortrait.vue.js +0 -20
- package/components/icon/v3/icons/MoneyCheck.vue.js +0 -22
- package/components/icon/v3/icons/MoreHoriz.vue.js +0 -20
- package/components/icon/v3/icons/MoreVert.vue.js +0 -20
- package/components/icon/v3/icons/Mouse.vue.js +0 -20
- package/components/icon/v3/icons/MousePointer.vue.js +0 -20
- package/components/icon/v3/icons/MovingUp.vue.js +0 -18
- package/components/icon/v3/icons/NativeAd.vue.js +0 -15
- package/components/icon/v3/icons/NotificationsNone.vue.js +0 -20
- package/components/icon/v3/icons/Offerwall.vue.js +0 -24
- package/components/icon/v3/icons/Palyable.vue.js +0 -18
- package/components/icon/v3/icons/PaperPlane-Off.vue.js +0 -20
- package/components/icon/v3/icons/PaperPlane.vue.js +0 -20
- package/components/icon/v3/icons/Pause.vue.js +0 -20
- package/components/icon/v3/icons/PauseCircleFilled.vue.js +0 -20
- package/components/icon/v3/icons/PauseCircleOutline.vue.js +0 -20
- package/components/icon/v3/icons/PhoneIphone.vue.js +0 -18
- package/components/icon/v3/icons/Photo.vue.js +0 -23
- package/components/icon/v3/icons/Photo2.vue.js +0 -20
- package/components/icon/v3/icons/PlayArrow.vue.js +0 -18
- package/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +0 -20
- package/components/icon/v3/icons/PlayCircleOutline.vue.js +0 -20
- package/components/icon/v3/icons/Qrcode.vue.js +0 -20
- package/components/icon/v3/icons/Question.vue.js +0 -21
- package/components/icon/v3/icons/QuickAB.vue.js +0 -15
- package/components/icon/v3/icons/QuickAB2.vue.js +0 -15
- package/components/icon/v3/icons/React.vue.js +0 -20
- package/components/icon/v3/icons/Redo.vue.js +0 -18
- package/components/icon/v3/icons/Refresh.vue.js +0 -18
- package/components/icon/v3/icons/Remove.vue.js +0 -18
- package/components/icon/v3/icons/Replay.vue.js +0 -18
- package/components/icon/v3/icons/RewardedVideo.vue.js +0 -24
- package/components/icon/v3/icons/RocketLaunch.vue.js +0 -18
- package/components/icon/v3/icons/Rotate.vue.js +0 -20
- package/components/icon/v3/icons/Route.vue.js +0 -20
- package/components/icon/v3/icons/SackDollar.vue.js +0 -23
- package/components/icon/v3/icons/Schedule.vue.js +0 -18
- package/components/icon/v3/icons/Search.vue.js +0 -18
- package/components/icon/v3/icons/SearchBold.vue.js +0 -20
- package/components/icon/v3/icons/Share.vue.js +0 -18
- package/components/icon/v3/icons/Slack.vue.js +0 -18
- package/components/icon/v3/icons/SportsEsports.vue.js +0 -18
- package/components/icon/v3/icons/Star.vue.js +0 -20
- package/components/icon/v3/icons/StarFill.vue.js +0 -20
- package/components/icon/v3/icons/StatusBanner.vue.js +0 -26
- package/components/icon/v3/icons/StatusInterstitial.vue.js +0 -26
- package/components/icon/v3/icons/StatusNativeAd.vue.js +0 -15
- package/components/icon/v3/icons/StatusOfferwall.vue.js +0 -26
- package/components/icon/v3/icons/StatusRewardedVideo.vue.js +0 -26
- package/components/icon/v3/icons/StopCircleFilled.vue.js +0 -18
- package/components/icon/v3/icons/StopCircleOutline.vue.js +0 -18
- package/components/icon/v3/icons/Style.vue.js +0 -22
- package/components/icon/v3/icons/Success.vue.js +0 -20
- package/components/icon/v3/icons/SuccessFull.vue.js +0 -20
- package/components/icon/v3/icons/Switch.vue.js +0 -20
- package/components/icon/v3/icons/TableEdit.vue.js +0 -18
- package/components/icon/v3/icons/TabletLandscape.vue.js +0 -20
- package/components/icon/v3/icons/TabletMac.vue.js +0 -18
- package/components/icon/v3/icons/TabletPortrait.vue.js +0 -20
- package/components/icon/v3/icons/Texture.vue.js +0 -20
- package/components/icon/v3/icons/ThemeDark.vue.js +0 -18
- package/components/icon/v3/icons/ThemeLight.vue.js +0 -18
- package/components/icon/v3/icons/Timelapse.vue.js +0 -18
- package/components/icon/v3/icons/Timeline.vue.js +0 -18
- package/components/icon/v3/icons/TrendingDown.vue.js +0 -18
- package/components/icon/v3/icons/TrendingFlat.vue.js +0 -18
- package/components/icon/v3/icons/TrendingUp.vue.js +0 -18
- package/components/icon/v3/icons/Tune.vue.js +0 -20
- package/components/icon/v3/icons/TwoToneBanner.vue.js +0 -28
- package/components/icon/v3/icons/TwoToneInterstitial.vue.js +0 -28
- package/components/icon/v3/icons/TwoToneNativeAd.vue.js +0 -15
- package/components/icon/v3/icons/TwoToneOfferwall.vue.js +0 -24
- package/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +0 -30
- package/components/icon/v3/icons/Undo.vue.js +0 -18
- package/components/icon/v3/icons/UnfoldLess.vue.js +0 -20
- package/components/icon/v3/icons/UnfoldMore.vue.js +0 -20
- package/components/icon/v3/icons/VerticalAlignTop.vue.js +0 -18
- package/components/icon/v3/icons/VerticalAlignTop2.vue.js +0 -18
- package/components/icon/v3/icons/Vibration.vue.js +0 -20
- package/components/icon/v3/icons/VideoRound.vue.js +0 -20
- package/components/icon/v3/icons/ViewCarousel.vue.js +0 -18
- package/components/icon/v3/icons/Visibility.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityOff.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityOffStrok.vue.js +0 -18
- package/components/icon/v3/icons/VisibilityStrok.vue.js +0 -18
- package/components/icon/v3/icons/VolumeOff.vue.js +0 -20
- package/components/icon/v3/icons/VolumeUp.vue.js +0 -20
- package/components/icon/v3/icons/Warning.vue.js +0 -18
- package/components/icon/v3/icons/Warning2.vue.js +0 -20
- package/components/icon/v3/icons/Warning3.vue.js +0 -21
- package/components/icon/v3/icons/WarningCircle.vue.js +0 -21
- package/components/icon/v3/icons/WarningOctagon.vue.js +0 -21
- package/components/icon/v3/icons/WebApp.vue.js +0 -18
- package/components/icon/v3/icons/Widget.vue.js +0 -22
- package/components/icon/v3/icons/Widgets.vue.js +0 -18
- package/components/icon/v3/icons/WidgetsFill.vue.js +0 -18
- package/components/icon/v3/icons/WidgetsFlatSquares.vue.js +0 -49
- package/components/icon/v3/icons/Widgetsz.vue.js +0 -25
- package/components/icon/v3/icons/WifiProtectedSetup.vue.js +0 -20
- package/components/icon/v4/IconFlag.vue.js +0 -7
- package/components/icon/v4/IconFlag.vue2.js +0 -32
- package/components/icon/v4/IconV4.vue.js +0 -7
- package/components/icon/v4/IconV4.vue2.js +0 -71
- package/components/includeExclude/IncludeExclude.vue.js +0 -7
- package/components/includeExclude/IncludeExclude.vue2.js +0 -431
- package/components/includeExclude/IncludeExcludeAppHeader.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +0 -116
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +0 -109
- package/components/includeExclude/IncludeExcludeChipFilter.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +0 -149
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +0 -466
- package/components/includeExclude/IncludeExcludeOption.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeOption.vue2.js +0 -115
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -7
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +0 -106
- package/components/inlineCopy/InlineCopy.vue.js +0 -7
- package/components/inlineCopy/InlineCopy.vue2.js +0 -72
- package/components/input/v3/DollarInput.vue.js +0 -7
- package/components/input/v3/DollarInput.vue2.js +0 -32
- package/components/input/v3/Input.vue.js +0 -7
- package/components/input/v3/Input.vue2.js +0 -211
- package/components/input/v3/PasswordInput.vue.js +0 -7
- package/components/input/v3/PasswordInput.vue2.js +0 -34
- package/components/input/v3/PercentageInput.vue.js +0 -7
- package/components/input/v3/PercentageInput.vue2.js +0 -32
- package/components/input/v4/TextField.vue.js +0 -7
- package/components/input/v4/TextField.vue2.js +0 -221
- package/components/layout/FoldableSection.vue.js +0 -7
- package/components/layout/FoldableSection.vue2.js +0 -61
- package/components/loader/v4/Loader.vue.js +0 -7
- package/components/loader/v4/Loader.vue2.js +0 -48
- package/components/menu/Menu.vue.js +0 -8
- package/components/menu/Menu.vue2.js +0 -62
- package/components/menuItem/MenuItem.vue.js +0 -7
- package/components/menuItem/MenuItem.vue2.js +0 -23
- package/components/multibar/MultiBar.vue.js +0 -7
- package/components/multibar/MultiBar.vue2.js +0 -105
- package/components/multibar/MultiBarMenu.vue.js +0 -7
- package/components/multibar/MultiBarMenu.vue2.js +0 -60
- package/components/popover/v3/Popover.vue.js +0 -8
- package/components/popover/v3/Popover.vue2.js +0 -38
- package/components/popover/v4/PopoverV4.vue.js +0 -7
- package/components/popover/v4/PopoverV4.vue2.js +0 -57
- package/components/radioButton/v3/RadioButton.vue.js +0 -7
- package/components/radioButton/v3/RadioButton.vue2.js +0 -79
- package/components/radioButton/v3/RadioGroup.vue.js +0 -7
- package/components/radioButton/v3/RadioGroup.vue2.js +0 -29
- package/components/radioButton/v4/RadioButtonV4.vue.js +0 -7
- package/components/radioButton/v4/RadioButtonV4.vue2.js +0 -80
- package/components/radioButton/v4/RadioGroupV4.vue.js +0 -7
- package/components/radioButton/v4/RadioGroupV4.vue2.js +0 -29
- package/components/search/v3/Search.vue.js +0 -7
- package/components/search/v3/Search.vue2.js +0 -62
- package/components/search/v4/SearchV4.vue.js +0 -7
- package/components/search/v4/SearchV4.vue2.js +0 -59
- package/components/shared/FieldHelpText.vue.js +0 -7
- package/components/shared/FieldHelpText.vue2.js +0 -43
- package/components/shared/FieldLabel.vue.js +0 -7
- package/components/shared/FieldLabel.vue2.js +0 -79
- package/components/shared/FieldMaxLength.vue.js +0 -7
- package/components/shared/FieldMaxLength.vue2.js +0 -24
- package/components/skeleton/v3/Skeleton.vue.js +0 -7
- package/components/skeleton/v3/Skeleton.vue2.js +0 -18
- package/components/skeleton/v4/SkeletonV4.vue.js +0 -7
- package/components/skeleton/v4/SkeletonV4.vue2.js +0 -23
- package/components/snackbar/v3/Snackbar.vue.js +0 -7
- package/components/snackbar/v3/Snackbar.vue2.js +0 -129
- package/components/snackbar/v4/SnackbarV4.vue.js +0 -7
- package/components/snackbar/v4/SnackbarV4.vue2.js +0 -141
- package/components/sortableList/SortableItem.vue.js +0 -7
- package/components/sortableList/SortableItem.vue2.js +0 -140
- package/components/sortableList/SortableItemLabel.vue.js +0 -7
- package/components/sortableList/SortableItemLabel.vue2.js +0 -60
- package/components/sortableList/SortableList.vue.js +0 -7
- package/components/sortableList/SortableList.vue2.js +0 -160
- package/components/statusDot/StatusDot.vue.js +0 -7
- package/components/statusDot/StatusDot.vue2.js +0 -15
- package/components/switch/v3/Switch.vue.js +0 -7
- package/components/switch/v3/Switch.vue2.js +0 -69
- package/components/switch/v4/SwitchV4.vue.js +0 -7
- package/components/switch/v4/SwitchV4.vue2.js +0 -44
- package/components/table/v3/SortOrderIcon.vue.js +0 -21
- package/components/table/v3/SortOrderIcon.vue2.js +0 -0
- package/components/table/v3/Table.vue.js +0 -7
- package/components/table/v3/Table.vue2.js +0 -248
- package/components/table/v3/TableHeaderSorter.vue.js +0 -7
- package/components/table/v3/TableHeaderSorter.vue2.js +0 -23
- package/components/table/v4/DataGrid.vue.js +0 -7
- package/components/table/v4/DataGrid.vue2.js +0 -350
- package/components/table/v4/DataGridMenu.vue.js +0 -7
- package/components/table/v4/DataGridMenu.vue2.js +0 -65
- package/components/table/v4/DataGridRowsCounter.vue.js +0 -7
- package/components/table/v4/DataGridRowsCounter.vue2.js +0 -53
- package/components/table/v4/ExpandRowToggle.vue.js +0 -7
- package/components/table/v4/ExpandRowToggle.vue2.js +0 -26
- package/components/table/v4/HelpIcon.vue.js +0 -7
- package/components/table/v4/HelpIcon.vue2.js +0 -33
- package/components/table/v4/MultipleDataGrid.vue.js +0 -7
- package/components/table/v4/MultipleDataGrid.vue2.js +0 -181
- package/components/table/v4/SortIcon.vue.js +0 -7
- package/components/table/v4/SortIcon.vue2.js +0 -25
- package/components/table-cells/v3/Editable.vue.js +0 -7
- package/components/table-cells/v3/Editable.vue2.js +0 -43
- package/components/table-cells/v4/EditableV4.vue.js +0 -7
- package/components/table-cells/v4/EditableV4.vue2.js +0 -56
- package/components/tabs/v3/Tabs.vue.js +0 -7
- package/components/tabs/v3/Tabs.vue2.js +0 -85
- package/components/tabs/v4/TabsV4.vue.js +0 -7
- package/components/tabs/v4/TabsV4.vue2.js +0 -72
- package/components/textArea/v3/TextArea.vue.js +0 -7
- package/components/textArea/v3/TextArea.vue2.js +0 -65
- package/components/textArea/v4/TextAreaV4.vue.js +0 -7
- package/components/textArea/v4/TextAreaV4.vue2.js +0 -80
- package/components/toggle/v3/Toggle.vue.js +0 -7
- package/components/toggle/v3/Toggle.vue2.js +0 -95
- package/components/toggle/v4/ToggleV4.vue.js +0 -7
- package/components/toggle/v4/ToggleV4.vue2.js +0 -96
- package/components/tooltip/v3/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v3/TextWithTitleContent.vue2.js +0 -46
- package/components/tooltip/v3/Tooltip.vue.js +0 -8
- package/components/tooltip/v3/Tooltip.vue2.js +0 -87
- package/components/tooltip/v4/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v4/TextWithTitleContent.vue2.js +0 -36
- package/components/tooltip/v4/TooltipV4.vue.js +0 -8
- package/components/tooltip/v4/TooltipV4.vue2.js +0 -70
- package/components/typography/Heading.vue.js +0 -7
- package/components/typography/Heading.vue2.js +0 -25
- package/components/typography/Text.vue.js +0 -7
- package/components/typography/Text.vue2.js +0 -23
- package/components/typography/v4/Typography.vue.js +0 -7
- package/components/typography/v4/Typography.vue2.js +0 -85
- package/index.js +0 -213
- /package/{components → src/components}/ThemeWrapper/ThemeStrore.js +0 -0
- /package/{components → src/components}/ThemeWrapper/index.js +0 -0
- /package/{components → src/components}/alert/index.js +0 -0
- /package/{components → src/components}/appHeader/index.js +0 -0
- /package/{components → src/components}/appIcon/index.js +0 -0
- /package/{components → src/components}/appTrigger/index.js +0 -0
- /package/{components → src/components}/autocomplete/index.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/consts.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/index.js +0 -0
- /package/{components → src/components}/autocompleteDropdown/useKeyboardNavigation.js +0 -0
- /package/{components → src/components}/banner/index.js +0 -0
- /package/{components → src/components}/button/common/consts.js +0 -0
- /package/{components → src/components}/button/v3/index.js +0 -0
- /package/{components → src/components}/button/v4/index.js +0 -0
- /package/{components → src/components}/chart/composables/useChartValues.js +0 -0
- /package/{components → src/components}/chart/composables/useTooltipPosition.js +0 -0
- /package/{components → src/components}/chart/consts.js +0 -0
- /package/{components → src/components}/chart/index.js +0 -0
- /package/{components → src/components}/chart/plugins/HoverVerticalLine.js +0 -0
- /package/{components → src/components}/chart/types.js +0 -0
- /package/{components → src/components}/chart/utils/formatNumber.js +0 -0
- /package/{components → src/components}/chart/utils/utils.js +0 -0
- /package/{components → src/components}/checkbox/common/Checkbox.common.js +0 -0
- /package/{components → src/components}/checkbox/v3/index.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/CheckedDisabledState.vue.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/CheckedDisabledState.vue2.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/CheckedState.vue.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/CheckedState.vue2.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/IndeterminateState.vue.js +0 -0
- /package/{components → src/components}/checkbox/v4/icons/IndeterminateState.vue2.js +0 -0
- /package/{components → src/components}/checkbox/v4/index.js +0 -0
- /package/{components → src/components}/chip/v3/index.js +0 -0
- /package/{components → src/components}/chip/v4/index.js +0 -0
- /package/{components → src/components}/datePicker/common/DatePicker.common.js +0 -0
- /package/{components → src/components}/datePicker/common/DatePickerMonth.common.js +0 -0
- /package/{components → src/components}/datePicker/v3/index.js +0 -0
- /package/{components → src/components}/datePicker/v4/index.js +0 -0
- /package/{components → src/components}/dateRange/common/CalendarMonth.common.js +0 -0
- /package/{components → src/components}/dateRange/common/DateRange.common.js +0 -0
- /package/{components → src/components}/dateRange/common/DateServices.common.js +0 -0
- /package/{components → src/components}/dateRange/common/consts.common.js +0 -0
- /package/{components → src/components}/dateRange/v3/index.js +0 -0
- /package/{components → src/components}/dateRange/v4/index.js +0 -0
- /package/{components → src/components}/dialog/common/Dialog.common.js +0 -0
- /package/{components → src/components}/dialog/common/Reason.js +0 -0
- /package/{components → src/components}/dialog/v3/index.js +0 -0
- /package/{components → src/components}/dialog/v4/index.js +0 -0
- /package/{components → src/components}/dropdown/common/DropdownContext.js +0 -0
- /package/{components → src/components}/dropdown/common/Option.common.js +0 -0
- /package/{components → src/components}/dropdown/common/consts.js +0 -0
- /package/{components → src/components}/dropdown/common/useGroupedOptions.js +0 -0
- /package/{components → src/components}/dropdown/composables/useChildOptions.js +0 -0
- /package/{components → src/components}/dropdown/v3/index.js +0 -0
- /package/{components → src/components}/dropdown/v4/Dropdown.types.js +0 -0
- /package/{components → src/components}/emptyState/v3/index.js +0 -0
- /package/{components → src/components}/emptyState/v4/index.js +0 -0
- /package/{components → src/components}/filterDropdown/index.js +0 -0
- /package/{components → src/components}/filtersPanel/v3/index.js +0 -0
- /package/{components → src/components}/filtersPanel/v3/useHiddenFilter.js +0 -0
- /package/{components → src/components}/filtersPanel/v4/index.js +0 -0
- /package/{components → src/components}/floatingToolbar/index.js +0 -0
- /package/{components → src/components}/forms/index.js +0 -0
- /package/{components → src/components}/icon/v3/icons/index.js +0 -0
- /package/{components → src/components}/icon/v3/index.js +0 -0
- /package/{components → src/components}/icon/v4/consts.js +0 -0
- /package/{components → src/components}/icon/v4/index.js +0 -0
- /package/{components → src/components}/includeExclude/IncludeExcludeContext.js +0 -0
- /package/{components → src/components}/includeExclude/index.js +0 -0
- /package/{components → src/components}/inlineCopy/index.js +0 -0
- /package/{components → src/components}/input/common/Input.common.js +0 -0
- /package/{components → src/components}/input/v3/index.js +0 -0
- /package/{components → src/components}/input/v4/index.js +0 -0
- /package/{components → src/components}/layout/index.js +0 -0
- /package/{components → src/components}/loader/v4/index.js +0 -0
- /package/{components → src/components}/menu/index.js +0 -0
- /package/{components → src/components}/menuItem/index.js +0 -0
- /package/{components → src/components}/multibar/index.js +0 -0
- /package/{components → src/components}/popover/common/Popover.common.js +0 -0
- /package/{components → src/components}/popover/v3/index.js +0 -0
- /package/{components → src/components}/popover/v4/index.js +0 -0
- /package/{components → src/components}/radioButton/common/radioGroup.common.js +0 -0
- /package/{components → src/components}/radioButton/common/useRadio.js +0 -0
- /package/{components → src/components}/radioButton/v3/index.js +0 -0
- /package/{components → src/components}/radioButton/v4/index.js +0 -0
- /package/{components → src/components}/search/common/Search.common.js +0 -0
- /package/{components → src/components}/search/v3/index.js +0 -0
- /package/{components → src/components}/search/v4/index.js +0 -0
- /package/{components → src/components}/skeleton/v3/index.js +0 -0
- /package/{components → src/components}/skeleton/v4/index.js +0 -0
- /package/{components → src/components}/snackbar/common/notify.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.common.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.types.js +0 -0
- /package/{components → src/components}/snackbar/v3/index.js +0 -0
- /package/{components → src/components}/snackbar/v4/index.js +0 -0
- /package/{components → src/components}/sortableList/composables/useHoverEffect.js +0 -0
- /package/{components → src/components}/sortableList/consts.js +0 -0
- /package/{components → src/components}/sortableList/index.js +0 -0
- /package/{components → src/components}/statusDot/index.js +0 -0
- /package/{components → src/components}/switch/v3/index.js +0 -0
- /package/{components → src/components}/switch/v4/index.js +0 -0
- /package/{components → src/components}/table/common/Table.common.js +0 -0
- /package/{components → src/components}/table/common/TableContext.js +0 -0
- /package/{components → src/components}/table/v3/index.js +0 -0
- /package/{components → src/components}/table/v4/index.js +0 -0
- /package/{components → src/components}/table-cells/common/Editable.common.js +0 -0
- /package/{components → src/components}/table-cells/common/EditableContext.js +0 -0
- /package/{components → src/components}/table-cells/v3/index.js +0 -0
- /package/{components → src/components}/table-cells/v4/index.js +0 -0
- /package/{components → src/components}/tabs/common/tabsCommon.js +0 -0
- /package/{components → src/components}/tabs/v3/index.js +0 -0
- /package/{components → src/components}/tabs/v4/index.js +0 -0
- /package/{components → src/components}/textArea/v3/index.js +0 -0
- /package/{components → src/components}/textArea/v4/index.js +0 -0
- /package/{components → src/components}/toggle/v3/index.js +0 -0
- /package/{components → src/components}/toggle/v4/index.js +0 -0
- /package/{components → src/components}/tooltip/common/Tooltip.common.js +0 -0
- /package/{components → src/components}/tooltip/v3/index.js +0 -0
- /package/{components → src/components}/tooltip/v4/index.js +0 -0
- /package/{components → src/components}/typography/index.js +0 -0
- /package/{components → src/components}/typography/v4/index.js +0 -0
- /package/{composables → src/composables}/useFormValidation.js +0 -0
- /package/{composables → src/composables}/useId.js +0 -0
- /package/{composables → src/composables}/useIsFocusVisible.js +0 -0
- /package/{composables → src/composables}/useSearch.js +0 -0
- /package/{composables → src/composables}/useStorage.js +0 -0
- /package/{composables → src/composables}/useToggle.js +0 -0
- /package/{consts → src/consts}/colors.js +0 -0
- /package/{consts → src/consts}/configs.js +0 -0
- /package/{consts → src/consts}/regex.js +0 -0
- /package/{consts → src/consts}/style.js +0 -0
- /package/{testids → src/testids}/index.js +0 -0
- /package/{utils → src/utils}/array.js +0 -0
- /package/{utils → src/utils}/color.js +0 -0
- /package/{utils → src/utils}/formatNumbers.js +0 -0
- /package/{utils → src/utils}/object.js +0 -0
- /package/{utils → src/utils}/search.js +0 -0
- /package/{utils → src/utils}/string.js +0 -0
- /package/{utils → src/utils}/style.js +0 -0
- /package/{utils → src/utils}/testIds.js +0 -0
- /package/{utils → src/utils}/text.js +0 -0
package/index.d.ts
CHANGED
|
@@ -116,7 +116,9 @@ declare const _default: {
|
|
|
116
116
|
};
|
|
117
117
|
}>> & {
|
|
118
118
|
onIsOpen?: (value: boolean) => any;
|
|
119
|
-
}, {
|
|
119
|
+
}, {
|
|
120
|
+
toggle: (value?: boolean) => boolean;
|
|
121
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
120
122
|
isOpen: (value: boolean) => void;
|
|
121
123
|
}, string, {
|
|
122
124
|
testId: string;
|
|
@@ -182,7 +184,9 @@ declare const _default: {
|
|
|
182
184
|
};
|
|
183
185
|
}>> & {
|
|
184
186
|
onIsOpen?: (value: boolean) => any;
|
|
185
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
187
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
188
|
+
toggle: (value?: boolean) => boolean;
|
|
189
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
186
190
|
__isFragment?: never;
|
|
187
191
|
__isTeleport?: never;
|
|
188
192
|
__isSuspense?: never;
|
|
@@ -221,7 +225,9 @@ declare const _default: {
|
|
|
221
225
|
};
|
|
222
226
|
}>> & {
|
|
223
227
|
onIsOpen?: (value: boolean) => any;
|
|
224
|
-
}, {
|
|
228
|
+
}, {
|
|
229
|
+
toggle: (value?: boolean) => boolean;
|
|
230
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
225
231
|
isOpen: (value: boolean) => void;
|
|
226
232
|
}, string, {
|
|
227
233
|
testId: string;
|
|
@@ -335,7 +341,9 @@ declare const _default: {
|
|
|
335
341
|
};
|
|
336
342
|
}>> & {
|
|
337
343
|
onIsOpen?: (value: boolean) => any;
|
|
338
|
-
}, {
|
|
344
|
+
}, {
|
|
345
|
+
toggle: (value?: boolean) => boolean;
|
|
346
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
339
347
|
isOpen: (value: boolean) => void;
|
|
340
348
|
}, string, {
|
|
341
349
|
testId: string;
|
|
@@ -401,7 +409,9 @@ declare const _default: {
|
|
|
401
409
|
};
|
|
402
410
|
}>> & {
|
|
403
411
|
onIsOpen?: (value: boolean) => any;
|
|
404
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
412
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
413
|
+
toggle: (value?: boolean) => boolean;
|
|
414
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
405
415
|
__isFragment?: never;
|
|
406
416
|
__isTeleport?: never;
|
|
407
417
|
__isSuspense?: never;
|
|
@@ -440,7 +450,9 @@ declare const _default: {
|
|
|
440
450
|
};
|
|
441
451
|
}>> & {
|
|
442
452
|
onIsOpen?: (value: boolean) => any;
|
|
443
|
-
}, {
|
|
453
|
+
}, {
|
|
454
|
+
toggle: (value?: boolean) => boolean;
|
|
455
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
444
456
|
isOpen: (value: boolean) => void;
|
|
445
457
|
}, string, {
|
|
446
458
|
testId: string;
|
|
@@ -2464,6 +2476,10 @@ declare const _default: {
|
|
|
2464
2476
|
type: import("vue").PropType<string>;
|
|
2465
2477
|
default: string;
|
|
2466
2478
|
};
|
|
2479
|
+
valueToCopy: {
|
|
2480
|
+
type: import("vue").PropType<string>;
|
|
2481
|
+
default: string;
|
|
2482
|
+
};
|
|
2467
2483
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2468
2484
|
copy: () => void;
|
|
2469
2485
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -2503,6 +2519,10 @@ declare const _default: {
|
|
|
2503
2519
|
type: import("vue").PropType<string>;
|
|
2504
2520
|
default: string;
|
|
2505
2521
|
};
|
|
2522
|
+
valueToCopy: {
|
|
2523
|
+
type: import("vue").PropType<string>;
|
|
2524
|
+
default: string;
|
|
2525
|
+
};
|
|
2506
2526
|
}>> & {
|
|
2507
2527
|
onCopy?: () => any;
|
|
2508
2528
|
}, {
|
|
@@ -2514,6 +2534,7 @@ declare const _default: {
|
|
|
2514
2534
|
hideTextValue: boolean;
|
|
2515
2535
|
iconSize: string;
|
|
2516
2536
|
tooltipHeader: string;
|
|
2537
|
+
valueToCopy: string;
|
|
2517
2538
|
}>;
|
|
2518
2539
|
InlineCopyTypes: () => import("vue").DefineComponent<{
|
|
2519
2540
|
text: {
|
|
@@ -2552,6 +2573,10 @@ declare const _default: {
|
|
|
2552
2573
|
type: import("vue").PropType<string>;
|
|
2553
2574
|
default: string;
|
|
2554
2575
|
};
|
|
2576
|
+
valueToCopy: {
|
|
2577
|
+
type: import("vue").PropType<string>;
|
|
2578
|
+
default: string;
|
|
2579
|
+
};
|
|
2555
2580
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2556
2581
|
copy: () => void;
|
|
2557
2582
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -2591,6 +2616,10 @@ declare const _default: {
|
|
|
2591
2616
|
type: import("vue").PropType<string>;
|
|
2592
2617
|
default: string;
|
|
2593
2618
|
};
|
|
2619
|
+
valueToCopy: {
|
|
2620
|
+
type: import("vue").PropType<string>;
|
|
2621
|
+
default: string;
|
|
2622
|
+
};
|
|
2594
2623
|
}>> & {
|
|
2595
2624
|
onCopy?: () => any;
|
|
2596
2625
|
}, {
|
|
@@ -2602,6 +2631,7 @@ declare const _default: {
|
|
|
2602
2631
|
hideTextValue: boolean;
|
|
2603
2632
|
iconSize: string;
|
|
2604
2633
|
tooltipHeader: string;
|
|
2634
|
+
valueToCopy: string;
|
|
2605
2635
|
}>[];
|
|
2606
2636
|
AppHeader: import("vue").DefineComponent<{
|
|
2607
2637
|
name: {
|
|
@@ -15765,6 +15795,7 @@ declare const _default: {
|
|
|
15765
15795
|
skidding: number;
|
|
15766
15796
|
modelValue: any;
|
|
15767
15797
|
selected: any;
|
|
15798
|
+
valueToCopy: string;
|
|
15768
15799
|
onClear: () => void;
|
|
15769
15800
|
placeholder: string;
|
|
15770
15801
|
multi: boolean;
|
|
@@ -15792,8 +15823,8 @@ declare const _default: {
|
|
|
15792
15823
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15793
15824
|
optionEndIconKey: string;
|
|
15794
15825
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15826
|
+
optionsEndTextIconKey: string;
|
|
15795
15827
|
optionFlagKey: string;
|
|
15796
|
-
valueToCopy: string;
|
|
15797
15828
|
disabledOptionKey: string;
|
|
15798
15829
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15799
15830
|
optionTwoLinesKey: string;
|
|
@@ -15805,6 +15836,7 @@ declare const _default: {
|
|
|
15805
15836
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
15806
15837
|
disableVirtualScroll: boolean;
|
|
15807
15838
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
15839
|
+
withConditions: boolean;
|
|
15808
15840
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15809
15841
|
theme: {
|
|
15810
15842
|
type: import("vue").PropType<string>;
|
|
@@ -15864,6 +15896,10 @@ declare const _default: {
|
|
|
15864
15896
|
type: import("vue").PropType<unknown>;
|
|
15865
15897
|
default: any;
|
|
15866
15898
|
};
|
|
15899
|
+
valueToCopy: {
|
|
15900
|
+
type: import("vue").PropType<string>;
|
|
15901
|
+
default: any;
|
|
15902
|
+
};
|
|
15867
15903
|
options: {
|
|
15868
15904
|
type: import("vue").PropType<unknown[]>;
|
|
15869
15905
|
required: true;
|
|
@@ -15980,11 +16016,11 @@ declare const _default: {
|
|
|
15980
16016
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15981
16017
|
default: any;
|
|
15982
16018
|
};
|
|
15983
|
-
|
|
16019
|
+
optionsEndTextIconKey: {
|
|
15984
16020
|
type: import("vue").PropType<string>;
|
|
15985
16021
|
default: any;
|
|
15986
16022
|
};
|
|
15987
|
-
|
|
16023
|
+
optionFlagKey: {
|
|
15988
16024
|
type: import("vue").PropType<string>;
|
|
15989
16025
|
default: any;
|
|
15990
16026
|
};
|
|
@@ -16032,6 +16068,10 @@ declare const _default: {
|
|
|
16032
16068
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16033
16069
|
default: any;
|
|
16034
16070
|
};
|
|
16071
|
+
withConditions: {
|
|
16072
|
+
type: import("vue").PropType<boolean>;
|
|
16073
|
+
default: boolean;
|
|
16074
|
+
};
|
|
16035
16075
|
}>> & {
|
|
16036
16076
|
onCopyToClipboard?: () => any;
|
|
16037
16077
|
onClear?: () => any;
|
|
@@ -16042,7 +16082,7 @@ declare const _default: {
|
|
|
16042
16082
|
onOnsearch?: (value: string) => any;
|
|
16043
16083
|
onOpened?: () => any;
|
|
16044
16084
|
onClosed?: () => any;
|
|
16045
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
16085
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16046
16086
|
$attrs: {
|
|
16047
16087
|
[x: string]: unknown;
|
|
16048
16088
|
};
|
|
@@ -16115,6 +16155,10 @@ declare const _default: {
|
|
|
16115
16155
|
type: import("vue").PropType<unknown>;
|
|
16116
16156
|
default: any;
|
|
16117
16157
|
};
|
|
16158
|
+
valueToCopy: {
|
|
16159
|
+
type: import("vue").PropType<string>;
|
|
16160
|
+
default: any;
|
|
16161
|
+
};
|
|
16118
16162
|
options: {
|
|
16119
16163
|
type: import("vue").PropType<unknown[]>;
|
|
16120
16164
|
required: true;
|
|
@@ -16231,11 +16275,11 @@ declare const _default: {
|
|
|
16231
16275
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16232
16276
|
default: any;
|
|
16233
16277
|
};
|
|
16234
|
-
|
|
16278
|
+
optionsEndTextIconKey: {
|
|
16235
16279
|
type: import("vue").PropType<string>;
|
|
16236
16280
|
default: any;
|
|
16237
16281
|
};
|
|
16238
|
-
|
|
16282
|
+
optionFlagKey: {
|
|
16239
16283
|
type: import("vue").PropType<string>;
|
|
16240
16284
|
default: any;
|
|
16241
16285
|
};
|
|
@@ -16283,6 +16327,10 @@ declare const _default: {
|
|
|
16283
16327
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16284
16328
|
default: any;
|
|
16285
16329
|
};
|
|
16330
|
+
withConditions: {
|
|
16331
|
+
type: import("vue").PropType<boolean>;
|
|
16332
|
+
default: boolean;
|
|
16333
|
+
};
|
|
16286
16334
|
}>> & {
|
|
16287
16335
|
onCopyToClipboard?: () => any;
|
|
16288
16336
|
onClear?: () => any;
|
|
@@ -16320,6 +16368,7 @@ declare const _default: {
|
|
|
16320
16368
|
skidding: number;
|
|
16321
16369
|
modelValue: any;
|
|
16322
16370
|
selected: any;
|
|
16371
|
+
valueToCopy: string;
|
|
16323
16372
|
onClear: () => void;
|
|
16324
16373
|
placeholder: string;
|
|
16325
16374
|
multi: boolean;
|
|
@@ -16347,8 +16396,8 @@ declare const _default: {
|
|
|
16347
16396
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16348
16397
|
optionEndIconKey: string;
|
|
16349
16398
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16399
|
+
optionsEndTextIconKey: string;
|
|
16350
16400
|
optionFlagKey: string;
|
|
16351
|
-
valueToCopy: string;
|
|
16352
16401
|
disabledOptionKey: string;
|
|
16353
16402
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16354
16403
|
optionTwoLinesKey: string;
|
|
@@ -16360,6 +16409,7 @@ declare const _default: {
|
|
|
16360
16409
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16361
16410
|
disableVirtualScroll: boolean;
|
|
16362
16411
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16412
|
+
withConditions: boolean;
|
|
16363
16413
|
}, {}, string> & {
|
|
16364
16414
|
beforeCreate?: (() => void) | (() => void)[];
|
|
16365
16415
|
created?: (() => void) | (() => void)[];
|
|
@@ -16439,6 +16489,10 @@ declare const _default: {
|
|
|
16439
16489
|
type: import("vue").PropType<unknown>;
|
|
16440
16490
|
default: any;
|
|
16441
16491
|
};
|
|
16492
|
+
valueToCopy: {
|
|
16493
|
+
type: import("vue").PropType<string>;
|
|
16494
|
+
default: any;
|
|
16495
|
+
};
|
|
16442
16496
|
options: {
|
|
16443
16497
|
type: import("vue").PropType<unknown[]>;
|
|
16444
16498
|
required: true;
|
|
@@ -16555,11 +16609,11 @@ declare const _default: {
|
|
|
16555
16609
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16556
16610
|
default: any;
|
|
16557
16611
|
};
|
|
16558
|
-
|
|
16612
|
+
optionsEndTextIconKey: {
|
|
16559
16613
|
type: import("vue").PropType<string>;
|
|
16560
16614
|
default: any;
|
|
16561
16615
|
};
|
|
16562
|
-
|
|
16616
|
+
optionFlagKey: {
|
|
16563
16617
|
type: import("vue").PropType<string>;
|
|
16564
16618
|
default: any;
|
|
16565
16619
|
};
|
|
@@ -16607,6 +16661,10 @@ declare const _default: {
|
|
|
16607
16661
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16608
16662
|
default: any;
|
|
16609
16663
|
};
|
|
16664
|
+
withConditions: {
|
|
16665
|
+
type: import("vue").PropType<boolean>;
|
|
16666
|
+
default: boolean;
|
|
16667
|
+
};
|
|
16610
16668
|
}>> & {
|
|
16611
16669
|
onCopyToClipboard?: () => any;
|
|
16612
16670
|
onClear?: () => any;
|
|
@@ -16683,6 +16741,10 @@ declare const _default: {
|
|
|
16683
16741
|
type: import("vue").PropType<unknown>;
|
|
16684
16742
|
default: any;
|
|
16685
16743
|
};
|
|
16744
|
+
valueToCopy: {
|
|
16745
|
+
type: import("vue").PropType<string>;
|
|
16746
|
+
default: any;
|
|
16747
|
+
};
|
|
16686
16748
|
options: {
|
|
16687
16749
|
type: import("vue").PropType<unknown[]>;
|
|
16688
16750
|
required: true;
|
|
@@ -16799,11 +16861,11 @@ declare const _default: {
|
|
|
16799
16861
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16800
16862
|
default: any;
|
|
16801
16863
|
};
|
|
16802
|
-
|
|
16864
|
+
optionsEndTextIconKey: {
|
|
16803
16865
|
type: import("vue").PropType<string>;
|
|
16804
16866
|
default: any;
|
|
16805
16867
|
};
|
|
16806
|
-
|
|
16868
|
+
optionFlagKey: {
|
|
16807
16869
|
type: import("vue").PropType<string>;
|
|
16808
16870
|
default: any;
|
|
16809
16871
|
};
|
|
@@ -16851,6 +16913,10 @@ declare const _default: {
|
|
|
16851
16913
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16852
16914
|
default: any;
|
|
16853
16915
|
};
|
|
16916
|
+
withConditions: {
|
|
16917
|
+
type: import("vue").PropType<boolean>;
|
|
16918
|
+
default: boolean;
|
|
16919
|
+
};
|
|
16854
16920
|
}>> & {
|
|
16855
16921
|
onCopyToClipboard?: () => any;
|
|
16856
16922
|
onClear?: () => any;
|
|
@@ -16888,6 +16954,7 @@ declare const _default: {
|
|
|
16888
16954
|
skidding: number;
|
|
16889
16955
|
modelValue: any;
|
|
16890
16956
|
selected: any;
|
|
16957
|
+
valueToCopy: string;
|
|
16891
16958
|
onClear: () => void;
|
|
16892
16959
|
placeholder: string;
|
|
16893
16960
|
multi: boolean;
|
|
@@ -16915,8 +16982,8 @@ declare const _default: {
|
|
|
16915
16982
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16916
16983
|
optionEndIconKey: string;
|
|
16917
16984
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16985
|
+
optionsEndTextIconKey: string;
|
|
16918
16986
|
optionFlagKey: string;
|
|
16919
|
-
valueToCopy: string;
|
|
16920
16987
|
disabledOptionKey: string;
|
|
16921
16988
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16922
16989
|
optionTwoLinesKey: string;
|
|
@@ -16928,6 +16995,7 @@ declare const _default: {
|
|
|
16928
16995
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16929
16996
|
disableVirtualScroll: boolean;
|
|
16930
16997
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16998
|
+
withConditions: boolean;
|
|
16931
16999
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
16932
17000
|
$slots: {
|
|
16933
17001
|
label?(_: {}): any;
|
|
@@ -16956,6 +17024,7 @@ declare const _default: {
|
|
|
16956
17024
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16957
17025
|
optionAndIconKey: string;
|
|
16958
17026
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17027
|
+
optionsEndTextIconKey: string;
|
|
16959
17028
|
optionFlagKey: string;
|
|
16960
17029
|
feedbackVariant: "success" | "warning" | "error";
|
|
16961
17030
|
valueToCopy: string;
|
|
@@ -16967,10 +17036,13 @@ declare const _default: {
|
|
|
16967
17036
|
onClick: () => void;
|
|
16968
17037
|
};
|
|
16969
17038
|
}): any;
|
|
17039
|
+
"dropdown-conditions"?(_: {}): any;
|
|
16970
17040
|
"inline-search"?(_: {}): any;
|
|
16971
17041
|
"input-list"?(_: {
|
|
16972
17042
|
open: true;
|
|
16973
17043
|
}): any;
|
|
17044
|
+
"custom-list-area"?(_: {}): any;
|
|
17045
|
+
"select-all"?(_: {}): any;
|
|
16974
17046
|
"group-option"?(_: {}): any;
|
|
16975
17047
|
default?(_: {
|
|
16976
17048
|
option: unknown;
|
|
@@ -18016,6 +18088,7 @@ declare const _default: {
|
|
|
18016
18088
|
open: boolean;
|
|
18017
18089
|
mandatory: boolean;
|
|
18018
18090
|
loading: boolean;
|
|
18091
|
+
valueToCopy: string;
|
|
18019
18092
|
options: unknown[];
|
|
18020
18093
|
singleAppSelection: boolean;
|
|
18021
18094
|
placeholder: string;
|
|
@@ -18026,7 +18099,6 @@ declare const _default: {
|
|
|
18026
18099
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18027
18100
|
optionEndIconKey: string;
|
|
18028
18101
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18029
|
-
valueToCopy: string;
|
|
18030
18102
|
selectedOption: any;
|
|
18031
18103
|
brandIconType: "android" | "ios";
|
|
18032
18104
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -18060,6 +18132,10 @@ declare const _default: {
|
|
|
18060
18132
|
type: import("vue").PropType<boolean>;
|
|
18061
18133
|
default: boolean;
|
|
18062
18134
|
};
|
|
18135
|
+
valueToCopy: {
|
|
18136
|
+
type: import("vue").PropType<string>;
|
|
18137
|
+
default: any;
|
|
18138
|
+
};
|
|
18063
18139
|
options: {
|
|
18064
18140
|
type: import("vue").PropType<unknown[]>;
|
|
18065
18141
|
default: any;
|
|
@@ -18104,10 +18180,6 @@ declare const _default: {
|
|
|
18104
18180
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18105
18181
|
default: any;
|
|
18106
18182
|
};
|
|
18107
|
-
valueToCopy: {
|
|
18108
|
-
type: import("vue").PropType<string>;
|
|
18109
|
-
default: any;
|
|
18110
|
-
};
|
|
18111
18183
|
selectedOption: {
|
|
18112
18184
|
type: import("vue").PropType<unknown>;
|
|
18113
18185
|
default: any;
|
|
@@ -18119,7 +18191,7 @@ declare const _default: {
|
|
|
18119
18191
|
}>> & {
|
|
18120
18192
|
onClick?: () => any;
|
|
18121
18193
|
onCopyToClipboard?: () => any;
|
|
18122
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
18194
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "valueToCopy" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "selectedOption" | "brandIconType">;
|
|
18123
18195
|
$attrs: {
|
|
18124
18196
|
[x: string]: unknown;
|
|
18125
18197
|
};
|
|
@@ -18164,6 +18236,10 @@ declare const _default: {
|
|
|
18164
18236
|
type: import("vue").PropType<boolean>;
|
|
18165
18237
|
default: boolean;
|
|
18166
18238
|
};
|
|
18239
|
+
valueToCopy: {
|
|
18240
|
+
type: import("vue").PropType<string>;
|
|
18241
|
+
default: any;
|
|
18242
|
+
};
|
|
18167
18243
|
options: {
|
|
18168
18244
|
type: import("vue").PropType<unknown[]>;
|
|
18169
18245
|
default: any;
|
|
@@ -18208,10 +18284,6 @@ declare const _default: {
|
|
|
18208
18284
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18209
18285
|
default: any;
|
|
18210
18286
|
};
|
|
18211
|
-
valueToCopy: {
|
|
18212
|
-
type: import("vue").PropType<string>;
|
|
18213
|
-
default: any;
|
|
18214
|
-
};
|
|
18215
18287
|
selectedOption: {
|
|
18216
18288
|
type: import("vue").PropType<unknown>;
|
|
18217
18289
|
default: any;
|
|
@@ -18234,6 +18306,7 @@ declare const _default: {
|
|
|
18234
18306
|
open: boolean;
|
|
18235
18307
|
mandatory: boolean;
|
|
18236
18308
|
loading: boolean;
|
|
18309
|
+
valueToCopy: string;
|
|
18237
18310
|
options: unknown[];
|
|
18238
18311
|
singleAppSelection: boolean;
|
|
18239
18312
|
placeholder: string;
|
|
@@ -18244,7 +18317,6 @@ declare const _default: {
|
|
|
18244
18317
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18245
18318
|
optionEndIconKey: string;
|
|
18246
18319
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18247
|
-
valueToCopy: string;
|
|
18248
18320
|
selectedOption: any;
|
|
18249
18321
|
brandIconType: "android" | "ios";
|
|
18250
18322
|
}, {}, string> & {
|
|
@@ -18298,6 +18370,10 @@ declare const _default: {
|
|
|
18298
18370
|
type: import("vue").PropType<boolean>;
|
|
18299
18371
|
default: boolean;
|
|
18300
18372
|
};
|
|
18373
|
+
valueToCopy: {
|
|
18374
|
+
type: import("vue").PropType<string>;
|
|
18375
|
+
default: any;
|
|
18376
|
+
};
|
|
18301
18377
|
options: {
|
|
18302
18378
|
type: import("vue").PropType<unknown[]>;
|
|
18303
18379
|
default: any;
|
|
@@ -18342,10 +18418,6 @@ declare const _default: {
|
|
|
18342
18418
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18343
18419
|
default: any;
|
|
18344
18420
|
};
|
|
18345
|
-
valueToCopy: {
|
|
18346
|
-
type: import("vue").PropType<string>;
|
|
18347
|
-
default: any;
|
|
18348
|
-
};
|
|
18349
18421
|
selectedOption: {
|
|
18350
18422
|
type: import("vue").PropType<unknown>;
|
|
18351
18423
|
default: any;
|
|
@@ -18392,6 +18464,10 @@ declare const _default: {
|
|
|
18392
18464
|
type: import("vue").PropType<boolean>;
|
|
18393
18465
|
default: boolean;
|
|
18394
18466
|
};
|
|
18467
|
+
valueToCopy: {
|
|
18468
|
+
type: import("vue").PropType<string>;
|
|
18469
|
+
default: any;
|
|
18470
|
+
};
|
|
18395
18471
|
options: {
|
|
18396
18472
|
type: import("vue").PropType<unknown[]>;
|
|
18397
18473
|
default: any;
|
|
@@ -18436,10 +18512,6 @@ declare const _default: {
|
|
|
18436
18512
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18437
18513
|
default: any;
|
|
18438
18514
|
};
|
|
18439
|
-
valueToCopy: {
|
|
18440
|
-
type: import("vue").PropType<string>;
|
|
18441
|
-
default: any;
|
|
18442
|
-
};
|
|
18443
18515
|
selectedOption: {
|
|
18444
18516
|
type: import("vue").PropType<unknown>;
|
|
18445
18517
|
default: any;
|
|
@@ -18462,6 +18534,7 @@ declare const _default: {
|
|
|
18462
18534
|
open: boolean;
|
|
18463
18535
|
mandatory: boolean;
|
|
18464
18536
|
loading: boolean;
|
|
18537
|
+
valueToCopy: string;
|
|
18465
18538
|
options: unknown[];
|
|
18466
18539
|
singleAppSelection: boolean;
|
|
18467
18540
|
placeholder: string;
|
|
@@ -18472,7 +18545,6 @@ declare const _default: {
|
|
|
18472
18545
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18473
18546
|
optionEndIconKey: string;
|
|
18474
18547
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18475
|
-
valueToCopy: string;
|
|
18476
18548
|
selectedOption: any;
|
|
18477
18549
|
brandIconType: "android" | "ios";
|
|
18478
18550
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -19081,6 +19153,7 @@ declare const _default: {
|
|
|
19081
19153
|
open: boolean;
|
|
19082
19154
|
mandatory: boolean;
|
|
19083
19155
|
loading: boolean;
|
|
19156
|
+
valueToCopy: string;
|
|
19084
19157
|
options: unknown[];
|
|
19085
19158
|
singleAppSelection: boolean;
|
|
19086
19159
|
placeholder: string;
|
|
@@ -19091,7 +19164,6 @@ declare const _default: {
|
|
|
19091
19164
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19092
19165
|
optionEndIconKey: string;
|
|
19093
19166
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19094
|
-
valueToCopy: string;
|
|
19095
19167
|
selectedOption: any;
|
|
19096
19168
|
brandIconType: "android" | "ios";
|
|
19097
19169
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -19125,6 +19197,10 @@ declare const _default: {
|
|
|
19125
19197
|
type: import("vue").PropType<boolean>;
|
|
19126
19198
|
default: boolean;
|
|
19127
19199
|
};
|
|
19200
|
+
valueToCopy: {
|
|
19201
|
+
type: import("vue").PropType<string>;
|
|
19202
|
+
default: any;
|
|
19203
|
+
};
|
|
19128
19204
|
options: {
|
|
19129
19205
|
type: import("vue").PropType<unknown[]>;
|
|
19130
19206
|
default: any;
|
|
@@ -19169,10 +19245,6 @@ declare const _default: {
|
|
|
19169
19245
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19170
19246
|
default: any;
|
|
19171
19247
|
};
|
|
19172
|
-
valueToCopy: {
|
|
19173
|
-
type: import("vue").PropType<string>;
|
|
19174
|
-
default: any;
|
|
19175
|
-
};
|
|
19176
19248
|
selectedOption: {
|
|
19177
19249
|
type: import("vue").PropType<unknown>;
|
|
19178
19250
|
default: any;
|
|
@@ -19184,7 +19256,7 @@ declare const _default: {
|
|
|
19184
19256
|
}>> & {
|
|
19185
19257
|
onClick?: () => any;
|
|
19186
19258
|
onCopyToClipboard?: () => any;
|
|
19187
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
19259
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "valueToCopy" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "selectedOption" | "brandIconType">;
|
|
19188
19260
|
$attrs: {
|
|
19189
19261
|
[x: string]: unknown;
|
|
19190
19262
|
};
|
|
@@ -19229,6 +19301,10 @@ declare const _default: {
|
|
|
19229
19301
|
type: import("vue").PropType<boolean>;
|
|
19230
19302
|
default: boolean;
|
|
19231
19303
|
};
|
|
19304
|
+
valueToCopy: {
|
|
19305
|
+
type: import("vue").PropType<string>;
|
|
19306
|
+
default: any;
|
|
19307
|
+
};
|
|
19232
19308
|
options: {
|
|
19233
19309
|
type: import("vue").PropType<unknown[]>;
|
|
19234
19310
|
default: any;
|
|
@@ -19273,10 +19349,6 @@ declare const _default: {
|
|
|
19273
19349
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19274
19350
|
default: any;
|
|
19275
19351
|
};
|
|
19276
|
-
valueToCopy: {
|
|
19277
|
-
type: import("vue").PropType<string>;
|
|
19278
|
-
default: any;
|
|
19279
|
-
};
|
|
19280
19352
|
selectedOption: {
|
|
19281
19353
|
type: import("vue").PropType<unknown>;
|
|
19282
19354
|
default: any;
|
|
@@ -19299,6 +19371,7 @@ declare const _default: {
|
|
|
19299
19371
|
open: boolean;
|
|
19300
19372
|
mandatory: boolean;
|
|
19301
19373
|
loading: boolean;
|
|
19374
|
+
valueToCopy: string;
|
|
19302
19375
|
options: unknown[];
|
|
19303
19376
|
singleAppSelection: boolean;
|
|
19304
19377
|
placeholder: string;
|
|
@@ -19309,7 +19382,6 @@ declare const _default: {
|
|
|
19309
19382
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19310
19383
|
optionEndIconKey: string;
|
|
19311
19384
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19312
|
-
valueToCopy: string;
|
|
19313
19385
|
selectedOption: any;
|
|
19314
19386
|
brandIconType: "android" | "ios";
|
|
19315
19387
|
}, {}, string> & {
|
|
@@ -19363,6 +19435,10 @@ declare const _default: {
|
|
|
19363
19435
|
type: import("vue").PropType<boolean>;
|
|
19364
19436
|
default: boolean;
|
|
19365
19437
|
};
|
|
19438
|
+
valueToCopy: {
|
|
19439
|
+
type: import("vue").PropType<string>;
|
|
19440
|
+
default: any;
|
|
19441
|
+
};
|
|
19366
19442
|
options: {
|
|
19367
19443
|
type: import("vue").PropType<unknown[]>;
|
|
19368
19444
|
default: any;
|
|
@@ -19407,10 +19483,6 @@ declare const _default: {
|
|
|
19407
19483
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19408
19484
|
default: any;
|
|
19409
19485
|
};
|
|
19410
|
-
valueToCopy: {
|
|
19411
|
-
type: import("vue").PropType<string>;
|
|
19412
|
-
default: any;
|
|
19413
|
-
};
|
|
19414
19486
|
selectedOption: {
|
|
19415
19487
|
type: import("vue").PropType<unknown>;
|
|
19416
19488
|
default: any;
|
|
@@ -19457,6 +19529,10 @@ declare const _default: {
|
|
|
19457
19529
|
type: import("vue").PropType<boolean>;
|
|
19458
19530
|
default: boolean;
|
|
19459
19531
|
};
|
|
19532
|
+
valueToCopy: {
|
|
19533
|
+
type: import("vue").PropType<string>;
|
|
19534
|
+
default: any;
|
|
19535
|
+
};
|
|
19460
19536
|
options: {
|
|
19461
19537
|
type: import("vue").PropType<unknown[]>;
|
|
19462
19538
|
default: any;
|
|
@@ -19501,10 +19577,6 @@ declare const _default: {
|
|
|
19501
19577
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19502
19578
|
default: any;
|
|
19503
19579
|
};
|
|
19504
|
-
valueToCopy: {
|
|
19505
|
-
type: import("vue").PropType<string>;
|
|
19506
|
-
default: any;
|
|
19507
|
-
};
|
|
19508
19580
|
selectedOption: {
|
|
19509
19581
|
type: import("vue").PropType<unknown>;
|
|
19510
19582
|
default: any;
|
|
@@ -19527,6 +19599,7 @@ declare const _default: {
|
|
|
19527
19599
|
open: boolean;
|
|
19528
19600
|
mandatory: boolean;
|
|
19529
19601
|
loading: boolean;
|
|
19602
|
+
valueToCopy: string;
|
|
19530
19603
|
options: unknown[];
|
|
19531
19604
|
singleAppSelection: boolean;
|
|
19532
19605
|
placeholder: string;
|
|
@@ -19537,7 +19610,6 @@ declare const _default: {
|
|
|
19537
19610
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19538
19611
|
optionEndIconKey: string;
|
|
19539
19612
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19540
|
-
valueToCopy: string;
|
|
19541
19613
|
selectedOption: any;
|
|
19542
19614
|
brandIconType: "android" | "ios";
|
|
19543
19615
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -19566,11 +19638,13 @@ declare const _default: {
|
|
|
19566
19638
|
iconKey: string;
|
|
19567
19639
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19568
19640
|
endIconKey: string;
|
|
19641
|
+
endTextIconKey: string;
|
|
19569
19642
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
19570
19643
|
treeMainOption: boolean;
|
|
19571
19644
|
treeMainOptionExpanded: boolean;
|
|
19572
19645
|
stopOptionClickEventPropagation: boolean;
|
|
19573
19646
|
treeChildShown: boolean;
|
|
19647
|
+
isMulti: boolean;
|
|
19574
19648
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
19575
19649
|
option: {
|
|
19576
19650
|
type: import("vue").PropType<unknown>;
|
|
@@ -19632,6 +19706,10 @@ declare const _default: {
|
|
|
19632
19706
|
type: import("vue").PropType<string>;
|
|
19633
19707
|
default: any;
|
|
19634
19708
|
};
|
|
19709
|
+
endTextIconKey: {
|
|
19710
|
+
type: import("vue").PropType<string>;
|
|
19711
|
+
default: any;
|
|
19712
|
+
};
|
|
19635
19713
|
toolTipPlacement: {
|
|
19636
19714
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
19637
19715
|
default: string;
|
|
@@ -19652,12 +19730,16 @@ declare const _default: {
|
|
|
19652
19730
|
type: import("vue").PropType<boolean>;
|
|
19653
19731
|
default: boolean;
|
|
19654
19732
|
};
|
|
19733
|
+
isMulti: {
|
|
19734
|
+
type: import("vue").PropType<boolean>;
|
|
19735
|
+
default: boolean;
|
|
19736
|
+
};
|
|
19655
19737
|
selectedProp: {
|
|
19656
19738
|
type: import("vue").PropType<boolean>;
|
|
19657
19739
|
};
|
|
19658
19740
|
}>> & {
|
|
19659
19741
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
19660
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
19742
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
19661
19743
|
$attrs: {
|
|
19662
19744
|
[x: string]: unknown;
|
|
19663
19745
|
};
|
|
@@ -19732,6 +19814,10 @@ declare const _default: {
|
|
|
19732
19814
|
type: import("vue").PropType<string>;
|
|
19733
19815
|
default: any;
|
|
19734
19816
|
};
|
|
19817
|
+
endTextIconKey: {
|
|
19818
|
+
type: import("vue").PropType<string>;
|
|
19819
|
+
default: any;
|
|
19820
|
+
};
|
|
19735
19821
|
toolTipPlacement: {
|
|
19736
19822
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
19737
19823
|
default: string;
|
|
@@ -19752,6 +19838,10 @@ declare const _default: {
|
|
|
19752
19838
|
type: import("vue").PropType<boolean>;
|
|
19753
19839
|
default: boolean;
|
|
19754
19840
|
};
|
|
19841
|
+
isMulti: {
|
|
19842
|
+
type: import("vue").PropType<boolean>;
|
|
19843
|
+
default: boolean;
|
|
19844
|
+
};
|
|
19755
19845
|
selectedProp: {
|
|
19756
19846
|
type: import("vue").PropType<boolean>;
|
|
19757
19847
|
};
|
|
@@ -19775,11 +19865,13 @@ declare const _default: {
|
|
|
19775
19865
|
iconKey: string;
|
|
19776
19866
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19777
19867
|
endIconKey: string;
|
|
19868
|
+
endTextIconKey: string;
|
|
19778
19869
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
19779
19870
|
treeMainOption: boolean;
|
|
19780
19871
|
treeMainOptionExpanded: boolean;
|
|
19781
19872
|
stopOptionClickEventPropagation: boolean;
|
|
19782
19873
|
treeChildShown: boolean;
|
|
19874
|
+
isMulti: boolean;
|
|
19783
19875
|
}, {}, string> & {
|
|
19784
19876
|
beforeCreate?: (() => void) | (() => void)[];
|
|
19785
19877
|
created?: (() => void) | (() => void)[];
|
|
@@ -19861,6 +19953,10 @@ declare const _default: {
|
|
|
19861
19953
|
type: import("vue").PropType<string>;
|
|
19862
19954
|
default: any;
|
|
19863
19955
|
};
|
|
19956
|
+
endTextIconKey: {
|
|
19957
|
+
type: import("vue").PropType<string>;
|
|
19958
|
+
default: any;
|
|
19959
|
+
};
|
|
19864
19960
|
toolTipPlacement: {
|
|
19865
19961
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
19866
19962
|
default: string;
|
|
@@ -19881,6 +19977,10 @@ declare const _default: {
|
|
|
19881
19977
|
type: import("vue").PropType<boolean>;
|
|
19882
19978
|
default: boolean;
|
|
19883
19979
|
};
|
|
19980
|
+
isMulti: {
|
|
19981
|
+
type: import("vue").PropType<boolean>;
|
|
19982
|
+
default: boolean;
|
|
19983
|
+
};
|
|
19884
19984
|
selectedProp: {
|
|
19885
19985
|
type: import("vue").PropType<boolean>;
|
|
19886
19986
|
};
|
|
@@ -19951,6 +20051,10 @@ declare const _default: {
|
|
|
19951
20051
|
type: import("vue").PropType<string>;
|
|
19952
20052
|
default: any;
|
|
19953
20053
|
};
|
|
20054
|
+
endTextIconKey: {
|
|
20055
|
+
type: import("vue").PropType<string>;
|
|
20056
|
+
default: any;
|
|
20057
|
+
};
|
|
19954
20058
|
toolTipPlacement: {
|
|
19955
20059
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
19956
20060
|
default: string;
|
|
@@ -19971,6 +20075,10 @@ declare const _default: {
|
|
|
19971
20075
|
type: import("vue").PropType<boolean>;
|
|
19972
20076
|
default: boolean;
|
|
19973
20077
|
};
|
|
20078
|
+
isMulti: {
|
|
20079
|
+
type: import("vue").PropType<boolean>;
|
|
20080
|
+
default: boolean;
|
|
20081
|
+
};
|
|
19974
20082
|
selectedProp: {
|
|
19975
20083
|
type: import("vue").PropType<boolean>;
|
|
19976
20084
|
};
|
|
@@ -19994,11 +20102,13 @@ declare const _default: {
|
|
|
19994
20102
|
iconKey: string;
|
|
19995
20103
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19996
20104
|
endIconKey: string;
|
|
20105
|
+
endTextIconKey: string;
|
|
19997
20106
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
19998
20107
|
treeMainOption: boolean;
|
|
19999
20108
|
treeMainOptionExpanded: boolean;
|
|
20000
20109
|
stopOptionClickEventPropagation: boolean;
|
|
20001
20110
|
treeChildShown: boolean;
|
|
20111
|
+
isMulti: boolean;
|
|
20002
20112
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20003
20113
|
$slots: {
|
|
20004
20114
|
image?(_: {}): any;
|
|
@@ -20145,6 +20255,7 @@ declare const _default: {
|
|
|
20145
20255
|
skidding: number;
|
|
20146
20256
|
modelValue: any;
|
|
20147
20257
|
selected: any;
|
|
20258
|
+
valueToCopy: string;
|
|
20148
20259
|
onClear: () => void;
|
|
20149
20260
|
placeholder: string;
|
|
20150
20261
|
multi: boolean;
|
|
@@ -20172,8 +20283,8 @@ declare const _default: {
|
|
|
20172
20283
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20173
20284
|
optionEndIconKey: string;
|
|
20174
20285
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20286
|
+
optionsEndTextIconKey: string;
|
|
20175
20287
|
optionFlagKey: string;
|
|
20176
|
-
valueToCopy: string;
|
|
20177
20288
|
disabledOptionKey: string;
|
|
20178
20289
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20179
20290
|
optionTwoLinesKey: string;
|
|
@@ -20185,6 +20296,7 @@ declare const _default: {
|
|
|
20185
20296
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20186
20297
|
disableVirtualScroll: boolean;
|
|
20187
20298
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20299
|
+
withConditions: boolean;
|
|
20188
20300
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20189
20301
|
theme: {
|
|
20190
20302
|
type: import("vue").PropType<string>;
|
|
@@ -20244,6 +20356,10 @@ declare const _default: {
|
|
|
20244
20356
|
type: import("vue").PropType<unknown>;
|
|
20245
20357
|
default: any;
|
|
20246
20358
|
};
|
|
20359
|
+
valueToCopy: {
|
|
20360
|
+
type: import("vue").PropType<string>;
|
|
20361
|
+
default: any;
|
|
20362
|
+
};
|
|
20247
20363
|
options: {
|
|
20248
20364
|
type: import("vue").PropType<unknown[]>;
|
|
20249
20365
|
required: true;
|
|
@@ -20360,11 +20476,11 @@ declare const _default: {
|
|
|
20360
20476
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20361
20477
|
default: any;
|
|
20362
20478
|
};
|
|
20363
|
-
|
|
20479
|
+
optionsEndTextIconKey: {
|
|
20364
20480
|
type: import("vue").PropType<string>;
|
|
20365
20481
|
default: any;
|
|
20366
20482
|
};
|
|
20367
|
-
|
|
20483
|
+
optionFlagKey: {
|
|
20368
20484
|
type: import("vue").PropType<string>;
|
|
20369
20485
|
default: any;
|
|
20370
20486
|
};
|
|
@@ -20412,6 +20528,10 @@ declare const _default: {
|
|
|
20412
20528
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20413
20529
|
default: any;
|
|
20414
20530
|
};
|
|
20531
|
+
withConditions: {
|
|
20532
|
+
type: import("vue").PropType<boolean>;
|
|
20533
|
+
default: boolean;
|
|
20534
|
+
};
|
|
20415
20535
|
}>> & {
|
|
20416
20536
|
onCopyToClipboard?: () => any;
|
|
20417
20537
|
onClear?: () => any;
|
|
@@ -20422,7 +20542,7 @@ declare const _default: {
|
|
|
20422
20542
|
onOnsearch?: (value: string) => any;
|
|
20423
20543
|
onOpened?: () => any;
|
|
20424
20544
|
onClosed?: () => any;
|
|
20425
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
20545
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
20426
20546
|
$attrs: {
|
|
20427
20547
|
[x: string]: unknown;
|
|
20428
20548
|
};
|
|
@@ -20495,6 +20615,10 @@ declare const _default: {
|
|
|
20495
20615
|
type: import("vue").PropType<unknown>;
|
|
20496
20616
|
default: any;
|
|
20497
20617
|
};
|
|
20618
|
+
valueToCopy: {
|
|
20619
|
+
type: import("vue").PropType<string>;
|
|
20620
|
+
default: any;
|
|
20621
|
+
};
|
|
20498
20622
|
options: {
|
|
20499
20623
|
type: import("vue").PropType<unknown[]>;
|
|
20500
20624
|
required: true;
|
|
@@ -20611,11 +20735,11 @@ declare const _default: {
|
|
|
20611
20735
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20612
20736
|
default: any;
|
|
20613
20737
|
};
|
|
20614
|
-
|
|
20738
|
+
optionsEndTextIconKey: {
|
|
20615
20739
|
type: import("vue").PropType<string>;
|
|
20616
20740
|
default: any;
|
|
20617
20741
|
};
|
|
20618
|
-
|
|
20742
|
+
optionFlagKey: {
|
|
20619
20743
|
type: import("vue").PropType<string>;
|
|
20620
20744
|
default: any;
|
|
20621
20745
|
};
|
|
@@ -20663,6 +20787,10 @@ declare const _default: {
|
|
|
20663
20787
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20664
20788
|
default: any;
|
|
20665
20789
|
};
|
|
20790
|
+
withConditions: {
|
|
20791
|
+
type: import("vue").PropType<boolean>;
|
|
20792
|
+
default: boolean;
|
|
20793
|
+
};
|
|
20666
20794
|
}>> & {
|
|
20667
20795
|
onCopyToClipboard?: () => any;
|
|
20668
20796
|
onClear?: () => any;
|
|
@@ -20700,6 +20828,7 @@ declare const _default: {
|
|
|
20700
20828
|
skidding: number;
|
|
20701
20829
|
modelValue: any;
|
|
20702
20830
|
selected: any;
|
|
20831
|
+
valueToCopy: string;
|
|
20703
20832
|
onClear: () => void;
|
|
20704
20833
|
placeholder: string;
|
|
20705
20834
|
multi: boolean;
|
|
@@ -20727,8 +20856,8 @@ declare const _default: {
|
|
|
20727
20856
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20728
20857
|
optionEndIconKey: string;
|
|
20729
20858
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20859
|
+
optionsEndTextIconKey: string;
|
|
20730
20860
|
optionFlagKey: string;
|
|
20731
|
-
valueToCopy: string;
|
|
20732
20861
|
disabledOptionKey: string;
|
|
20733
20862
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20734
20863
|
optionTwoLinesKey: string;
|
|
@@ -20740,6 +20869,7 @@ declare const _default: {
|
|
|
20740
20869
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20741
20870
|
disableVirtualScroll: boolean;
|
|
20742
20871
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20872
|
+
withConditions: boolean;
|
|
20743
20873
|
}, {}, string> & {
|
|
20744
20874
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20745
20875
|
created?: (() => void) | (() => void)[];
|
|
@@ -20819,6 +20949,10 @@ declare const _default: {
|
|
|
20819
20949
|
type: import("vue").PropType<unknown>;
|
|
20820
20950
|
default: any;
|
|
20821
20951
|
};
|
|
20952
|
+
valueToCopy: {
|
|
20953
|
+
type: import("vue").PropType<string>;
|
|
20954
|
+
default: any;
|
|
20955
|
+
};
|
|
20822
20956
|
options: {
|
|
20823
20957
|
type: import("vue").PropType<unknown[]>;
|
|
20824
20958
|
required: true;
|
|
@@ -20935,11 +21069,11 @@ declare const _default: {
|
|
|
20935
21069
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20936
21070
|
default: any;
|
|
20937
21071
|
};
|
|
20938
|
-
|
|
21072
|
+
optionsEndTextIconKey: {
|
|
20939
21073
|
type: import("vue").PropType<string>;
|
|
20940
21074
|
default: any;
|
|
20941
21075
|
};
|
|
20942
|
-
|
|
21076
|
+
optionFlagKey: {
|
|
20943
21077
|
type: import("vue").PropType<string>;
|
|
20944
21078
|
default: any;
|
|
20945
21079
|
};
|
|
@@ -20987,6 +21121,10 @@ declare const _default: {
|
|
|
20987
21121
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20988
21122
|
default: any;
|
|
20989
21123
|
};
|
|
21124
|
+
withConditions: {
|
|
21125
|
+
type: import("vue").PropType<boolean>;
|
|
21126
|
+
default: boolean;
|
|
21127
|
+
};
|
|
20990
21128
|
}>> & {
|
|
20991
21129
|
onCopyToClipboard?: () => any;
|
|
20992
21130
|
onClear?: () => any;
|
|
@@ -21063,6 +21201,10 @@ declare const _default: {
|
|
|
21063
21201
|
type: import("vue").PropType<unknown>;
|
|
21064
21202
|
default: any;
|
|
21065
21203
|
};
|
|
21204
|
+
valueToCopy: {
|
|
21205
|
+
type: import("vue").PropType<string>;
|
|
21206
|
+
default: any;
|
|
21207
|
+
};
|
|
21066
21208
|
options: {
|
|
21067
21209
|
type: import("vue").PropType<unknown[]>;
|
|
21068
21210
|
required: true;
|
|
@@ -21179,11 +21321,11 @@ declare const _default: {
|
|
|
21179
21321
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21180
21322
|
default: any;
|
|
21181
21323
|
};
|
|
21182
|
-
|
|
21324
|
+
optionsEndTextIconKey: {
|
|
21183
21325
|
type: import("vue").PropType<string>;
|
|
21184
21326
|
default: any;
|
|
21185
21327
|
};
|
|
21186
|
-
|
|
21328
|
+
optionFlagKey: {
|
|
21187
21329
|
type: import("vue").PropType<string>;
|
|
21188
21330
|
default: any;
|
|
21189
21331
|
};
|
|
@@ -21231,6 +21373,10 @@ declare const _default: {
|
|
|
21231
21373
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
21232
21374
|
default: any;
|
|
21233
21375
|
};
|
|
21376
|
+
withConditions: {
|
|
21377
|
+
type: import("vue").PropType<boolean>;
|
|
21378
|
+
default: boolean;
|
|
21379
|
+
};
|
|
21234
21380
|
}>> & {
|
|
21235
21381
|
onCopyToClipboard?: () => any;
|
|
21236
21382
|
onClear?: () => any;
|
|
@@ -21268,6 +21414,7 @@ declare const _default: {
|
|
|
21268
21414
|
skidding: number;
|
|
21269
21415
|
modelValue: any;
|
|
21270
21416
|
selected: any;
|
|
21417
|
+
valueToCopy: string;
|
|
21271
21418
|
onClear: () => void;
|
|
21272
21419
|
placeholder: string;
|
|
21273
21420
|
multi: boolean;
|
|
@@ -21295,8 +21442,8 @@ declare const _default: {
|
|
|
21295
21442
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21296
21443
|
optionEndIconKey: string;
|
|
21297
21444
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21445
|
+
optionsEndTextIconKey: string;
|
|
21298
21446
|
optionFlagKey: string;
|
|
21299
|
-
valueToCopy: string;
|
|
21300
21447
|
disabledOptionKey: string;
|
|
21301
21448
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21302
21449
|
optionTwoLinesKey: string;
|
|
@@ -21308,6 +21455,7 @@ declare const _default: {
|
|
|
21308
21455
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
21309
21456
|
disableVirtualScroll: boolean;
|
|
21310
21457
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
21458
|
+
withConditions: boolean;
|
|
21311
21459
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21312
21460
|
$slots: {
|
|
21313
21461
|
label?(_: {}): any;
|
|
@@ -21336,6 +21484,7 @@ declare const _default: {
|
|
|
21336
21484
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21337
21485
|
optionAndIconKey: string;
|
|
21338
21486
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21487
|
+
optionsEndTextIconKey: string;
|
|
21339
21488
|
optionFlagKey: string;
|
|
21340
21489
|
feedbackVariant: "success" | "warning" | "error";
|
|
21341
21490
|
valueToCopy: string;
|
|
@@ -21347,10 +21496,13 @@ declare const _default: {
|
|
|
21347
21496
|
onClick: () => void;
|
|
21348
21497
|
};
|
|
21349
21498
|
}): any;
|
|
21499
|
+
"dropdown-conditions"?(_: {}): any;
|
|
21350
21500
|
"inline-search"?(_: {}): any;
|
|
21351
21501
|
"input-list"?(_: {
|
|
21352
21502
|
open: true;
|
|
21353
21503
|
}): any;
|
|
21504
|
+
"custom-list-area"?(_: {}): any;
|
|
21505
|
+
"select-all"?(_: {}): any;
|
|
21354
21506
|
"group-option"?(_: {}): any;
|
|
21355
21507
|
default?(_: {
|
|
21356
21508
|
option: unknown;
|
|
@@ -21447,6 +21599,7 @@ declare const _default: {
|
|
|
21447
21599
|
disabled: boolean;
|
|
21448
21600
|
size: "small" | "medium" | "large";
|
|
21449
21601
|
selected: unknown[];
|
|
21602
|
+
valueToCopy: string;
|
|
21450
21603
|
placeholder: string;
|
|
21451
21604
|
inlineSearchPlaceholder: string;
|
|
21452
21605
|
optionNameKey: string;
|
|
@@ -21455,8 +21608,8 @@ declare const _default: {
|
|
|
21455
21608
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21456
21609
|
optionEndIconKey: string;
|
|
21457
21610
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21458
|
-
valueToCopy: string;
|
|
21459
21611
|
disabledOptionKey: string;
|
|
21612
|
+
optionEndTextIconKey: string;
|
|
21460
21613
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
21461
21614
|
testId: {
|
|
21462
21615
|
type: import("vue").PropType<string>;
|
|
@@ -21477,6 +21630,10 @@ declare const _default: {
|
|
|
21477
21630
|
type: import("vue").PropType<unknown[]>;
|
|
21478
21631
|
default: any;
|
|
21479
21632
|
};
|
|
21633
|
+
valueToCopy: {
|
|
21634
|
+
type: import("vue").PropType<string>;
|
|
21635
|
+
default: any;
|
|
21636
|
+
};
|
|
21480
21637
|
options: {
|
|
21481
21638
|
type: import("vue").PropType<unknown[]>;
|
|
21482
21639
|
required: true;
|
|
@@ -21517,14 +21674,14 @@ declare const _default: {
|
|
|
21517
21674
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21518
21675
|
default: any;
|
|
21519
21676
|
};
|
|
21520
|
-
valueToCopy: {
|
|
21521
|
-
type: import("vue").PropType<string>;
|
|
21522
|
-
default: any;
|
|
21523
|
-
};
|
|
21524
21677
|
disabledOptionKey: {
|
|
21525
21678
|
type: import("vue").PropType<string>;
|
|
21526
21679
|
default: string;
|
|
21527
21680
|
};
|
|
21681
|
+
optionEndTextIconKey: {
|
|
21682
|
+
type: import("vue").PropType<string>;
|
|
21683
|
+
default: any;
|
|
21684
|
+
};
|
|
21528
21685
|
optionChildrenKey: {
|
|
21529
21686
|
type: import("vue").PropType<string>;
|
|
21530
21687
|
required: true;
|
|
@@ -21540,7 +21697,7 @@ declare const _default: {
|
|
|
21540
21697
|
}>> & {
|
|
21541
21698
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
21542
21699
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
21543
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
21700
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "valueToCopy" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
21544
21701
|
$attrs: {
|
|
21545
21702
|
[x: string]: unknown;
|
|
21546
21703
|
};
|
|
@@ -21574,6 +21731,10 @@ declare const _default: {
|
|
|
21574
21731
|
type: import("vue").PropType<unknown[]>;
|
|
21575
21732
|
default: any;
|
|
21576
21733
|
};
|
|
21734
|
+
valueToCopy: {
|
|
21735
|
+
type: import("vue").PropType<string>;
|
|
21736
|
+
default: any;
|
|
21737
|
+
};
|
|
21577
21738
|
options: {
|
|
21578
21739
|
type: import("vue").PropType<unknown[]>;
|
|
21579
21740
|
required: true;
|
|
@@ -21614,14 +21775,14 @@ declare const _default: {
|
|
|
21614
21775
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21615
21776
|
default: any;
|
|
21616
21777
|
};
|
|
21617
|
-
valueToCopy: {
|
|
21618
|
-
type: import("vue").PropType<string>;
|
|
21619
|
-
default: any;
|
|
21620
|
-
};
|
|
21621
21778
|
disabledOptionKey: {
|
|
21622
21779
|
type: import("vue").PropType<string>;
|
|
21623
21780
|
default: string;
|
|
21624
21781
|
};
|
|
21782
|
+
optionEndTextIconKey: {
|
|
21783
|
+
type: import("vue").PropType<string>;
|
|
21784
|
+
default: any;
|
|
21785
|
+
};
|
|
21625
21786
|
optionChildrenKey: {
|
|
21626
21787
|
type: import("vue").PropType<string>;
|
|
21627
21788
|
required: true;
|
|
@@ -21645,6 +21806,7 @@ declare const _default: {
|
|
|
21645
21806
|
disabled: boolean;
|
|
21646
21807
|
size: "small" | "medium" | "large";
|
|
21647
21808
|
selected: unknown[];
|
|
21809
|
+
valueToCopy: string;
|
|
21648
21810
|
placeholder: string;
|
|
21649
21811
|
inlineSearchPlaceholder: string;
|
|
21650
21812
|
optionNameKey: string;
|
|
@@ -21653,8 +21815,8 @@ declare const _default: {
|
|
|
21653
21815
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21654
21816
|
optionEndIconKey: string;
|
|
21655
21817
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21656
|
-
valueToCopy: string;
|
|
21657
21818
|
disabledOptionKey: string;
|
|
21819
|
+
optionEndTextIconKey: string;
|
|
21658
21820
|
}, {}, string> & {
|
|
21659
21821
|
beforeCreate?: (() => void) | (() => void)[];
|
|
21660
21822
|
created?: (() => void) | (() => void)[];
|
|
@@ -21695,8 +21857,12 @@ declare const _default: {
|
|
|
21695
21857
|
type: import("vue").PropType<unknown[]>;
|
|
21696
21858
|
default: any;
|
|
21697
21859
|
};
|
|
21698
|
-
|
|
21699
|
-
type: import("vue").PropType<
|
|
21860
|
+
valueToCopy: {
|
|
21861
|
+
type: import("vue").PropType<string>;
|
|
21862
|
+
default: any;
|
|
21863
|
+
};
|
|
21864
|
+
options: {
|
|
21865
|
+
type: import("vue").PropType<unknown[]>;
|
|
21700
21866
|
required: true;
|
|
21701
21867
|
};
|
|
21702
21868
|
placeholder: {
|
|
@@ -21735,14 +21901,14 @@ declare const _default: {
|
|
|
21735
21901
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21736
21902
|
default: any;
|
|
21737
21903
|
};
|
|
21738
|
-
valueToCopy: {
|
|
21739
|
-
type: import("vue").PropType<string>;
|
|
21740
|
-
default: any;
|
|
21741
|
-
};
|
|
21742
21904
|
disabledOptionKey: {
|
|
21743
21905
|
type: import("vue").PropType<string>;
|
|
21744
21906
|
default: string;
|
|
21745
21907
|
};
|
|
21908
|
+
optionEndTextIconKey: {
|
|
21909
|
+
type: import("vue").PropType<string>;
|
|
21910
|
+
default: any;
|
|
21911
|
+
};
|
|
21746
21912
|
optionChildrenKey: {
|
|
21747
21913
|
type: import("vue").PropType<string>;
|
|
21748
21914
|
required: true;
|
|
@@ -21782,6 +21948,10 @@ declare const _default: {
|
|
|
21782
21948
|
type: import("vue").PropType<unknown[]>;
|
|
21783
21949
|
default: any;
|
|
21784
21950
|
};
|
|
21951
|
+
valueToCopy: {
|
|
21952
|
+
type: import("vue").PropType<string>;
|
|
21953
|
+
default: any;
|
|
21954
|
+
};
|
|
21785
21955
|
options: {
|
|
21786
21956
|
type: import("vue").PropType<unknown[]>;
|
|
21787
21957
|
required: true;
|
|
@@ -21822,14 +21992,14 @@ declare const _default: {
|
|
|
21822
21992
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21823
21993
|
default: any;
|
|
21824
21994
|
};
|
|
21825
|
-
valueToCopy: {
|
|
21826
|
-
type: import("vue").PropType<string>;
|
|
21827
|
-
default: any;
|
|
21828
|
-
};
|
|
21829
21995
|
disabledOptionKey: {
|
|
21830
21996
|
type: import("vue").PropType<string>;
|
|
21831
21997
|
default: string;
|
|
21832
21998
|
};
|
|
21999
|
+
optionEndTextIconKey: {
|
|
22000
|
+
type: import("vue").PropType<string>;
|
|
22001
|
+
default: any;
|
|
22002
|
+
};
|
|
21833
22003
|
optionChildrenKey: {
|
|
21834
22004
|
type: import("vue").PropType<string>;
|
|
21835
22005
|
required: true;
|
|
@@ -21853,6 +22023,7 @@ declare const _default: {
|
|
|
21853
22023
|
disabled: boolean;
|
|
21854
22024
|
size: "small" | "medium" | "large";
|
|
21855
22025
|
selected: unknown[];
|
|
22026
|
+
valueToCopy: string;
|
|
21856
22027
|
placeholder: string;
|
|
21857
22028
|
inlineSearchPlaceholder: string;
|
|
21858
22029
|
optionNameKey: string;
|
|
@@ -21861,13 +22032,129 @@ declare const _default: {
|
|
|
21861
22032
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21862
22033
|
optionEndIconKey: string;
|
|
21863
22034
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21864
|
-
valueToCopy: string;
|
|
21865
22035
|
disabledOptionKey: string;
|
|
22036
|
+
optionEndTextIconKey: string;
|
|
21866
22037
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21867
22038
|
$slots: {
|
|
21868
22039
|
"trigger-end-icon"?(_: {}): any;
|
|
21869
22040
|
};
|
|
21870
|
-
})))
|
|
22041
|
+
})) | import("vue").DefineComponent<{
|
|
22042
|
+
label: {
|
|
22043
|
+
type: import("vue").PropType<string>;
|
|
22044
|
+
required: true;
|
|
22045
|
+
default: string;
|
|
22046
|
+
};
|
|
22047
|
+
testId: {
|
|
22048
|
+
type: import("vue").PropType<string>;
|
|
22049
|
+
default: string;
|
|
22050
|
+
};
|
|
22051
|
+
optionNameKey: {
|
|
22052
|
+
type: import("vue").PropType<string>;
|
|
22053
|
+
required: true;
|
|
22054
|
+
default: string;
|
|
22055
|
+
};
|
|
22056
|
+
comparingKey: {
|
|
22057
|
+
type: import("vue").PropType<string>;
|
|
22058
|
+
required: true;
|
|
22059
|
+
default: string;
|
|
22060
|
+
};
|
|
22061
|
+
conditionalOptions: {
|
|
22062
|
+
type: import("vue").PropType<{
|
|
22063
|
+
label: string;
|
|
22064
|
+
value: string;
|
|
22065
|
+
multi: boolean;
|
|
22066
|
+
}[]>;
|
|
22067
|
+
required: true;
|
|
22068
|
+
};
|
|
22069
|
+
selectedCondition: {
|
|
22070
|
+
type: import("vue").PropType<{
|
|
22071
|
+
label: string;
|
|
22072
|
+
value: string;
|
|
22073
|
+
multi: boolean;
|
|
22074
|
+
}>;
|
|
22075
|
+
required: true;
|
|
22076
|
+
};
|
|
22077
|
+
appliedSelections: {
|
|
22078
|
+
type: import("vue").PropType<unknown>;
|
|
22079
|
+
required: true;
|
|
22080
|
+
};
|
|
22081
|
+
fetchFnCallback: {
|
|
22082
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
22083
|
+
required: true;
|
|
22084
|
+
};
|
|
22085
|
+
minCharsToStart: {
|
|
22086
|
+
type: import("vue").PropType<number>;
|
|
22087
|
+
default: number;
|
|
22088
|
+
};
|
|
22089
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22090
|
+
"update:selectedCondition": (value: {
|
|
22091
|
+
label: string;
|
|
22092
|
+
value: string;
|
|
22093
|
+
multi: boolean;
|
|
22094
|
+
}) => void;
|
|
22095
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
22096
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22097
|
+
label: {
|
|
22098
|
+
type: import("vue").PropType<string>;
|
|
22099
|
+
required: true;
|
|
22100
|
+
default: string;
|
|
22101
|
+
};
|
|
22102
|
+
testId: {
|
|
22103
|
+
type: import("vue").PropType<string>;
|
|
22104
|
+
default: string;
|
|
22105
|
+
};
|
|
22106
|
+
optionNameKey: {
|
|
22107
|
+
type: import("vue").PropType<string>;
|
|
22108
|
+
required: true;
|
|
22109
|
+
default: string;
|
|
22110
|
+
};
|
|
22111
|
+
comparingKey: {
|
|
22112
|
+
type: import("vue").PropType<string>;
|
|
22113
|
+
required: true;
|
|
22114
|
+
default: string;
|
|
22115
|
+
};
|
|
22116
|
+
conditionalOptions: {
|
|
22117
|
+
type: import("vue").PropType<{
|
|
22118
|
+
label: string;
|
|
22119
|
+
value: string;
|
|
22120
|
+
multi: boolean;
|
|
22121
|
+
}[]>;
|
|
22122
|
+
required: true;
|
|
22123
|
+
};
|
|
22124
|
+
selectedCondition: {
|
|
22125
|
+
type: import("vue").PropType<{
|
|
22126
|
+
label: string;
|
|
22127
|
+
value: string;
|
|
22128
|
+
multi: boolean;
|
|
22129
|
+
}>;
|
|
22130
|
+
required: true;
|
|
22131
|
+
};
|
|
22132
|
+
appliedSelections: {
|
|
22133
|
+
type: import("vue").PropType<unknown>;
|
|
22134
|
+
required: true;
|
|
22135
|
+
};
|
|
22136
|
+
fetchFnCallback: {
|
|
22137
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
22138
|
+
required: true;
|
|
22139
|
+
};
|
|
22140
|
+
minCharsToStart: {
|
|
22141
|
+
type: import("vue").PropType<number>;
|
|
22142
|
+
default: number;
|
|
22143
|
+
};
|
|
22144
|
+
}>> & {
|
|
22145
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
22146
|
+
label: string;
|
|
22147
|
+
value: string;
|
|
22148
|
+
multi: boolean;
|
|
22149
|
+
}) => any;
|
|
22150
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
22151
|
+
}, {
|
|
22152
|
+
label: string;
|
|
22153
|
+
testId: string;
|
|
22154
|
+
optionNameKey: string;
|
|
22155
|
+
comparingKey: string;
|
|
22156
|
+
minCharsToStart: number;
|
|
22157
|
+
}>)[];
|
|
21871
22158
|
Option: {
|
|
21872
22159
|
new (...args: any[]): {
|
|
21873
22160
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -21888,11 +22175,13 @@ declare const _default: {
|
|
|
21888
22175
|
iconKey: string;
|
|
21889
22176
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21890
22177
|
endIconKey: string;
|
|
22178
|
+
endTextIconKey: string;
|
|
21891
22179
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
21892
22180
|
treeMainOption: boolean;
|
|
21893
22181
|
treeMainOptionExpanded: boolean;
|
|
21894
22182
|
stopOptionClickEventPropagation: boolean;
|
|
21895
22183
|
treeChildShown: boolean;
|
|
22184
|
+
isMulti: boolean;
|
|
21896
22185
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
21897
22186
|
option: {
|
|
21898
22187
|
type: import("vue").PropType<unknown>;
|
|
@@ -21954,6 +22243,10 @@ declare const _default: {
|
|
|
21954
22243
|
type: import("vue").PropType<string>;
|
|
21955
22244
|
default: any;
|
|
21956
22245
|
};
|
|
22246
|
+
endTextIconKey: {
|
|
22247
|
+
type: import("vue").PropType<string>;
|
|
22248
|
+
default: any;
|
|
22249
|
+
};
|
|
21957
22250
|
toolTipPlacement: {
|
|
21958
22251
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
21959
22252
|
default: string;
|
|
@@ -21974,12 +22267,16 @@ declare const _default: {
|
|
|
21974
22267
|
type: import("vue").PropType<boolean>;
|
|
21975
22268
|
default: boolean;
|
|
21976
22269
|
};
|
|
22270
|
+
isMulti: {
|
|
22271
|
+
type: import("vue").PropType<boolean>;
|
|
22272
|
+
default: boolean;
|
|
22273
|
+
};
|
|
21977
22274
|
selectedProp: {
|
|
21978
22275
|
type: import("vue").PropType<boolean>;
|
|
21979
22276
|
};
|
|
21980
22277
|
}>> & {
|
|
21981
22278
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
21982
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
22279
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
21983
22280
|
$attrs: {
|
|
21984
22281
|
[x: string]: unknown;
|
|
21985
22282
|
};
|
|
@@ -22054,6 +22351,10 @@ declare const _default: {
|
|
|
22054
22351
|
type: import("vue").PropType<string>;
|
|
22055
22352
|
default: any;
|
|
22056
22353
|
};
|
|
22354
|
+
endTextIconKey: {
|
|
22355
|
+
type: import("vue").PropType<string>;
|
|
22356
|
+
default: any;
|
|
22357
|
+
};
|
|
22057
22358
|
toolTipPlacement: {
|
|
22058
22359
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
22059
22360
|
default: string;
|
|
@@ -22074,6 +22375,10 @@ declare const _default: {
|
|
|
22074
22375
|
type: import("vue").PropType<boolean>;
|
|
22075
22376
|
default: boolean;
|
|
22076
22377
|
};
|
|
22378
|
+
isMulti: {
|
|
22379
|
+
type: import("vue").PropType<boolean>;
|
|
22380
|
+
default: boolean;
|
|
22381
|
+
};
|
|
22077
22382
|
selectedProp: {
|
|
22078
22383
|
type: import("vue").PropType<boolean>;
|
|
22079
22384
|
};
|
|
@@ -22097,11 +22402,13 @@ declare const _default: {
|
|
|
22097
22402
|
iconKey: string;
|
|
22098
22403
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22099
22404
|
endIconKey: string;
|
|
22405
|
+
endTextIconKey: string;
|
|
22100
22406
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
22101
22407
|
treeMainOption: boolean;
|
|
22102
22408
|
treeMainOptionExpanded: boolean;
|
|
22103
22409
|
stopOptionClickEventPropagation: boolean;
|
|
22104
22410
|
treeChildShown: boolean;
|
|
22411
|
+
isMulti: boolean;
|
|
22105
22412
|
}, {}, string> & {
|
|
22106
22413
|
beforeCreate?: (() => void) | (() => void)[];
|
|
22107
22414
|
created?: (() => void) | (() => void)[];
|
|
@@ -22183,6 +22490,10 @@ declare const _default: {
|
|
|
22183
22490
|
type: import("vue").PropType<string>;
|
|
22184
22491
|
default: any;
|
|
22185
22492
|
};
|
|
22493
|
+
endTextIconKey: {
|
|
22494
|
+
type: import("vue").PropType<string>;
|
|
22495
|
+
default: any;
|
|
22496
|
+
};
|
|
22186
22497
|
toolTipPlacement: {
|
|
22187
22498
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
22188
22499
|
default: string;
|
|
@@ -22203,6 +22514,10 @@ declare const _default: {
|
|
|
22203
22514
|
type: import("vue").PropType<boolean>;
|
|
22204
22515
|
default: boolean;
|
|
22205
22516
|
};
|
|
22517
|
+
isMulti: {
|
|
22518
|
+
type: import("vue").PropType<boolean>;
|
|
22519
|
+
default: boolean;
|
|
22520
|
+
};
|
|
22206
22521
|
selectedProp: {
|
|
22207
22522
|
type: import("vue").PropType<boolean>;
|
|
22208
22523
|
};
|
|
@@ -22273,6 +22588,10 @@ declare const _default: {
|
|
|
22273
22588
|
type: import("vue").PropType<string>;
|
|
22274
22589
|
default: any;
|
|
22275
22590
|
};
|
|
22591
|
+
endTextIconKey: {
|
|
22592
|
+
type: import("vue").PropType<string>;
|
|
22593
|
+
default: any;
|
|
22594
|
+
};
|
|
22276
22595
|
toolTipPlacement: {
|
|
22277
22596
|
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
22278
22597
|
default: string;
|
|
@@ -22293,6 +22612,10 @@ declare const _default: {
|
|
|
22293
22612
|
type: import("vue").PropType<boolean>;
|
|
22294
22613
|
default: boolean;
|
|
22295
22614
|
};
|
|
22615
|
+
isMulti: {
|
|
22616
|
+
type: import("vue").PropType<boolean>;
|
|
22617
|
+
default: boolean;
|
|
22618
|
+
};
|
|
22296
22619
|
selectedProp: {
|
|
22297
22620
|
type: import("vue").PropType<boolean>;
|
|
22298
22621
|
};
|
|
@@ -22316,11 +22639,13 @@ declare const _default: {
|
|
|
22316
22639
|
iconKey: string;
|
|
22317
22640
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22318
22641
|
endIconKey: string;
|
|
22642
|
+
endTextIconKey: string;
|
|
22319
22643
|
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
22320
22644
|
treeMainOption: boolean;
|
|
22321
22645
|
treeMainOptionExpanded: boolean;
|
|
22322
22646
|
stopOptionClickEventPropagation: boolean;
|
|
22323
22647
|
treeChildShown: boolean;
|
|
22648
|
+
isMulti: boolean;
|
|
22324
22649
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
22325
22650
|
$slots: {
|
|
22326
22651
|
image?(_: {}): any;
|
|
@@ -22339,6 +22664,7 @@ declare const _default: {
|
|
|
22339
22664
|
disabled: boolean;
|
|
22340
22665
|
size: "small" | "medium" | "large";
|
|
22341
22666
|
selected: unknown[];
|
|
22667
|
+
valueToCopy: string;
|
|
22342
22668
|
placeholder: string;
|
|
22343
22669
|
inlineSearchPlaceholder: string;
|
|
22344
22670
|
optionNameKey: string;
|
|
@@ -22347,8 +22673,8 @@ declare const _default: {
|
|
|
22347
22673
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22348
22674
|
optionEndIconKey: string;
|
|
22349
22675
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22350
|
-
valueToCopy: string;
|
|
22351
22676
|
disabledOptionKey: string;
|
|
22677
|
+
optionEndTextIconKey: string;
|
|
22352
22678
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
22353
22679
|
testId: {
|
|
22354
22680
|
type: import("vue").PropType<string>;
|
|
@@ -22369,6 +22695,10 @@ declare const _default: {
|
|
|
22369
22695
|
type: import("vue").PropType<unknown[]>;
|
|
22370
22696
|
default: any;
|
|
22371
22697
|
};
|
|
22698
|
+
valueToCopy: {
|
|
22699
|
+
type: import("vue").PropType<string>;
|
|
22700
|
+
default: any;
|
|
22701
|
+
};
|
|
22372
22702
|
options: {
|
|
22373
22703
|
type: import("vue").PropType<unknown[]>;
|
|
22374
22704
|
required: true;
|
|
@@ -22409,14 +22739,14 @@ declare const _default: {
|
|
|
22409
22739
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22410
22740
|
default: any;
|
|
22411
22741
|
};
|
|
22412
|
-
valueToCopy: {
|
|
22413
|
-
type: import("vue").PropType<string>;
|
|
22414
|
-
default: any;
|
|
22415
|
-
};
|
|
22416
22742
|
disabledOptionKey: {
|
|
22417
22743
|
type: import("vue").PropType<string>;
|
|
22418
22744
|
default: string;
|
|
22419
22745
|
};
|
|
22746
|
+
optionEndTextIconKey: {
|
|
22747
|
+
type: import("vue").PropType<string>;
|
|
22748
|
+
default: any;
|
|
22749
|
+
};
|
|
22420
22750
|
optionChildrenKey: {
|
|
22421
22751
|
type: import("vue").PropType<string>;
|
|
22422
22752
|
required: true;
|
|
@@ -22432,7 +22762,7 @@ declare const _default: {
|
|
|
22432
22762
|
}>> & {
|
|
22433
22763
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
22434
22764
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
22435
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
22765
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "valueToCopy" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
22436
22766
|
$attrs: {
|
|
22437
22767
|
[x: string]: unknown;
|
|
22438
22768
|
};
|
|
@@ -22466,6 +22796,10 @@ declare const _default: {
|
|
|
22466
22796
|
type: import("vue").PropType<unknown[]>;
|
|
22467
22797
|
default: any;
|
|
22468
22798
|
};
|
|
22799
|
+
valueToCopy: {
|
|
22800
|
+
type: import("vue").PropType<string>;
|
|
22801
|
+
default: any;
|
|
22802
|
+
};
|
|
22469
22803
|
options: {
|
|
22470
22804
|
type: import("vue").PropType<unknown[]>;
|
|
22471
22805
|
required: true;
|
|
@@ -22506,14 +22840,14 @@ declare const _default: {
|
|
|
22506
22840
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22507
22841
|
default: any;
|
|
22508
22842
|
};
|
|
22509
|
-
valueToCopy: {
|
|
22510
|
-
type: import("vue").PropType<string>;
|
|
22511
|
-
default: any;
|
|
22512
|
-
};
|
|
22513
22843
|
disabledOptionKey: {
|
|
22514
22844
|
type: import("vue").PropType<string>;
|
|
22515
22845
|
default: string;
|
|
22516
22846
|
};
|
|
22847
|
+
optionEndTextIconKey: {
|
|
22848
|
+
type: import("vue").PropType<string>;
|
|
22849
|
+
default: any;
|
|
22850
|
+
};
|
|
22517
22851
|
optionChildrenKey: {
|
|
22518
22852
|
type: import("vue").PropType<string>;
|
|
22519
22853
|
required: true;
|
|
@@ -22537,6 +22871,7 @@ declare const _default: {
|
|
|
22537
22871
|
disabled: boolean;
|
|
22538
22872
|
size: "small" | "medium" | "large";
|
|
22539
22873
|
selected: unknown[];
|
|
22874
|
+
valueToCopy: string;
|
|
22540
22875
|
placeholder: string;
|
|
22541
22876
|
inlineSearchPlaceholder: string;
|
|
22542
22877
|
optionNameKey: string;
|
|
@@ -22545,8 +22880,8 @@ declare const _default: {
|
|
|
22545
22880
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22546
22881
|
optionEndIconKey: string;
|
|
22547
22882
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22548
|
-
valueToCopy: string;
|
|
22549
22883
|
disabledOptionKey: string;
|
|
22884
|
+
optionEndTextIconKey: string;
|
|
22550
22885
|
}, {}, string> & {
|
|
22551
22886
|
beforeCreate?: (() => void) | (() => void)[];
|
|
22552
22887
|
created?: (() => void) | (() => void)[];
|
|
@@ -22587,6 +22922,10 @@ declare const _default: {
|
|
|
22587
22922
|
type: import("vue").PropType<unknown[]>;
|
|
22588
22923
|
default: any;
|
|
22589
22924
|
};
|
|
22925
|
+
valueToCopy: {
|
|
22926
|
+
type: import("vue").PropType<string>;
|
|
22927
|
+
default: any;
|
|
22928
|
+
};
|
|
22590
22929
|
options: {
|
|
22591
22930
|
type: import("vue").PropType<unknown[]>;
|
|
22592
22931
|
required: true;
|
|
@@ -22627,14 +22966,14 @@ declare const _default: {
|
|
|
22627
22966
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22628
22967
|
default: any;
|
|
22629
22968
|
};
|
|
22630
|
-
valueToCopy: {
|
|
22631
|
-
type: import("vue").PropType<string>;
|
|
22632
|
-
default: any;
|
|
22633
|
-
};
|
|
22634
22969
|
disabledOptionKey: {
|
|
22635
22970
|
type: import("vue").PropType<string>;
|
|
22636
22971
|
default: string;
|
|
22637
22972
|
};
|
|
22973
|
+
optionEndTextIconKey: {
|
|
22974
|
+
type: import("vue").PropType<string>;
|
|
22975
|
+
default: any;
|
|
22976
|
+
};
|
|
22638
22977
|
optionChildrenKey: {
|
|
22639
22978
|
type: import("vue").PropType<string>;
|
|
22640
22979
|
required: true;
|
|
@@ -22674,6 +23013,10 @@ declare const _default: {
|
|
|
22674
23013
|
type: import("vue").PropType<unknown[]>;
|
|
22675
23014
|
default: any;
|
|
22676
23015
|
};
|
|
23016
|
+
valueToCopy: {
|
|
23017
|
+
type: import("vue").PropType<string>;
|
|
23018
|
+
default: any;
|
|
23019
|
+
};
|
|
22677
23020
|
options: {
|
|
22678
23021
|
type: import("vue").PropType<unknown[]>;
|
|
22679
23022
|
required: true;
|
|
@@ -22714,14 +23057,14 @@ declare const _default: {
|
|
|
22714
23057
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22715
23058
|
default: any;
|
|
22716
23059
|
};
|
|
22717
|
-
valueToCopy: {
|
|
22718
|
-
type: import("vue").PropType<string>;
|
|
22719
|
-
default: any;
|
|
22720
|
-
};
|
|
22721
23060
|
disabledOptionKey: {
|
|
22722
23061
|
type: import("vue").PropType<string>;
|
|
22723
23062
|
default: string;
|
|
22724
23063
|
};
|
|
23064
|
+
optionEndTextIconKey: {
|
|
23065
|
+
type: import("vue").PropType<string>;
|
|
23066
|
+
default: any;
|
|
23067
|
+
};
|
|
22725
23068
|
optionChildrenKey: {
|
|
22726
23069
|
type: import("vue").PropType<string>;
|
|
22727
23070
|
required: true;
|
|
@@ -22745,6 +23088,7 @@ declare const _default: {
|
|
|
22745
23088
|
disabled: boolean;
|
|
22746
23089
|
size: "small" | "medium" | "large";
|
|
22747
23090
|
selected: unknown[];
|
|
23091
|
+
valueToCopy: string;
|
|
22748
23092
|
placeholder: string;
|
|
22749
23093
|
inlineSearchPlaceholder: string;
|
|
22750
23094
|
optionNameKey: string;
|
|
@@ -22753,13 +23097,130 @@ declare const _default: {
|
|
|
22753
23097
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22754
23098
|
optionEndIconKey: string;
|
|
22755
23099
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22756
|
-
valueToCopy: string;
|
|
22757
23100
|
disabledOptionKey: string;
|
|
23101
|
+
optionEndTextIconKey: string;
|
|
22758
23102
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
22759
23103
|
$slots: {
|
|
22760
23104
|
"trigger-end-icon"?(_: {}): any;
|
|
22761
23105
|
};
|
|
22762
23106
|
});
|
|
23107
|
+
ConditionalDroprown: import("vue").DefineComponent<{
|
|
23108
|
+
label: {
|
|
23109
|
+
type: import("vue").PropType<string>;
|
|
23110
|
+
required: true;
|
|
23111
|
+
default: string;
|
|
23112
|
+
};
|
|
23113
|
+
testId: {
|
|
23114
|
+
type: import("vue").PropType<string>;
|
|
23115
|
+
default: string;
|
|
23116
|
+
};
|
|
23117
|
+
optionNameKey: {
|
|
23118
|
+
type: import("vue").PropType<string>;
|
|
23119
|
+
required: true;
|
|
23120
|
+
default: string;
|
|
23121
|
+
};
|
|
23122
|
+
comparingKey: {
|
|
23123
|
+
type: import("vue").PropType<string>;
|
|
23124
|
+
required: true;
|
|
23125
|
+
default: string;
|
|
23126
|
+
};
|
|
23127
|
+
conditionalOptions: {
|
|
23128
|
+
type: import("vue").PropType<{
|
|
23129
|
+
label: string;
|
|
23130
|
+
value: string;
|
|
23131
|
+
multi: boolean;
|
|
23132
|
+
}[]>;
|
|
23133
|
+
required: true;
|
|
23134
|
+
};
|
|
23135
|
+
selectedCondition: {
|
|
23136
|
+
type: import("vue").PropType<{
|
|
23137
|
+
label: string;
|
|
23138
|
+
value: string;
|
|
23139
|
+
multi: boolean;
|
|
23140
|
+
}>;
|
|
23141
|
+
required: true;
|
|
23142
|
+
};
|
|
23143
|
+
appliedSelections: {
|
|
23144
|
+
type: import("vue").PropType<unknown>;
|
|
23145
|
+
required: true;
|
|
23146
|
+
};
|
|
23147
|
+
fetchFnCallback: {
|
|
23148
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23149
|
+
required: true;
|
|
23150
|
+
};
|
|
23151
|
+
minCharsToStart: {
|
|
23152
|
+
type: import("vue").PropType<number>;
|
|
23153
|
+
default: number;
|
|
23154
|
+
};
|
|
23155
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23156
|
+
"update:selectedCondition": (value: {
|
|
23157
|
+
label: string;
|
|
23158
|
+
value: string;
|
|
23159
|
+
multi: boolean;
|
|
23160
|
+
}) => void;
|
|
23161
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23162
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23163
|
+
label: {
|
|
23164
|
+
type: import("vue").PropType<string>;
|
|
23165
|
+
required: true;
|
|
23166
|
+
default: string;
|
|
23167
|
+
};
|
|
23168
|
+
testId: {
|
|
23169
|
+
type: import("vue").PropType<string>;
|
|
23170
|
+
default: string;
|
|
23171
|
+
};
|
|
23172
|
+
optionNameKey: {
|
|
23173
|
+
type: import("vue").PropType<string>;
|
|
23174
|
+
required: true;
|
|
23175
|
+
default: string;
|
|
23176
|
+
};
|
|
23177
|
+
comparingKey: {
|
|
23178
|
+
type: import("vue").PropType<string>;
|
|
23179
|
+
required: true;
|
|
23180
|
+
default: string;
|
|
23181
|
+
};
|
|
23182
|
+
conditionalOptions: {
|
|
23183
|
+
type: import("vue").PropType<{
|
|
23184
|
+
label: string;
|
|
23185
|
+
value: string;
|
|
23186
|
+
multi: boolean;
|
|
23187
|
+
}[]>;
|
|
23188
|
+
required: true;
|
|
23189
|
+
};
|
|
23190
|
+
selectedCondition: {
|
|
23191
|
+
type: import("vue").PropType<{
|
|
23192
|
+
label: string;
|
|
23193
|
+
value: string;
|
|
23194
|
+
multi: boolean;
|
|
23195
|
+
}>;
|
|
23196
|
+
required: true;
|
|
23197
|
+
};
|
|
23198
|
+
appliedSelections: {
|
|
23199
|
+
type: import("vue").PropType<unknown>;
|
|
23200
|
+
required: true;
|
|
23201
|
+
};
|
|
23202
|
+
fetchFnCallback: {
|
|
23203
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23204
|
+
required: true;
|
|
23205
|
+
};
|
|
23206
|
+
minCharsToStart: {
|
|
23207
|
+
type: import("vue").PropType<number>;
|
|
23208
|
+
default: number;
|
|
23209
|
+
};
|
|
23210
|
+
}>> & {
|
|
23211
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23212
|
+
label: string;
|
|
23213
|
+
value: string;
|
|
23214
|
+
multi: boolean;
|
|
23215
|
+
}) => any;
|
|
23216
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23217
|
+
}, {
|
|
23218
|
+
label: string;
|
|
23219
|
+
testId: string;
|
|
23220
|
+
optionNameKey: string;
|
|
23221
|
+
comparingKey: string;
|
|
23222
|
+
minCharsToStart: number;
|
|
23223
|
+
}>;
|
|
22763
23224
|
Label: {
|
|
22764
23225
|
new (...args: any[]): {
|
|
22765
23226
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -23498,7 +23959,9 @@ declare const _default: {
|
|
|
23498
23959
|
};
|
|
23499
23960
|
}>> & {
|
|
23500
23961
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23501
|
-
}, {
|
|
23962
|
+
}, {
|
|
23963
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
23964
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23502
23965
|
"update:modelValue": (...args: any[]) => void;
|
|
23503
23966
|
}, string, {
|
|
23504
23967
|
testId: string;
|
|
@@ -23550,7 +24013,9 @@ declare const _default: {
|
|
|
23550
24013
|
};
|
|
23551
24014
|
}>> & {
|
|
23552
24015
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23553
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
24016
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
24017
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24018
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23554
24019
|
__isFragment?: never;
|
|
23555
24020
|
__isTeleport?: never;
|
|
23556
24021
|
__isSuspense?: never;
|
|
@@ -23582,7 +24047,9 @@ declare const _default: {
|
|
|
23582
24047
|
};
|
|
23583
24048
|
}>> & {
|
|
23584
24049
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23585
|
-
}, {
|
|
24050
|
+
}, {
|
|
24051
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24052
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23586
24053
|
"update:modelValue": (...args: any[]) => void;
|
|
23587
24054
|
}, string, {
|
|
23588
24055
|
testId: string;
|
|
@@ -23963,7 +24430,9 @@ declare const _default: {
|
|
|
23963
24430
|
};
|
|
23964
24431
|
}>> & {
|
|
23965
24432
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23966
|
-
}, {
|
|
24433
|
+
}, {
|
|
24434
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24435
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23967
24436
|
"update:modelValue": (...args: any[]) => void;
|
|
23968
24437
|
}, string, {
|
|
23969
24438
|
testId: string;
|
|
@@ -24015,7 +24484,9 @@ declare const _default: {
|
|
|
24015
24484
|
};
|
|
24016
24485
|
}>> & {
|
|
24017
24486
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
24018
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
24487
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
24488
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24489
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
24019
24490
|
__isFragment?: never;
|
|
24020
24491
|
__isTeleport?: never;
|
|
24021
24492
|
__isSuspense?: never;
|
|
@@ -24047,7 +24518,9 @@ declare const _default: {
|
|
|
24047
24518
|
};
|
|
24048
24519
|
}>> & {
|
|
24049
24520
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
24050
|
-
}, {
|
|
24521
|
+
}, {
|
|
24522
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24523
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24051
24524
|
"update:modelValue": (...args: any[]) => void;
|
|
24052
24525
|
}, string, {
|
|
24053
24526
|
testId: string;
|