@ironsource/shared-ui 2.1.11-test.6 → 2.1.11-test.8
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/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 +14 -6
- 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 +270 -78
- 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 +590 -165
- package/mocks/options.d.ts +29 -6
- package/package.json +3 -1
- 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_e899ec7a_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/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 -64
- 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 -375
- 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 -484
- 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,20 +15823,20 @@ 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;
|
|
15800
15831
|
groupedOptions: boolean;
|
|
15801
15832
|
comparingKey: string;
|
|
15802
|
-
withConditions: boolean;
|
|
15803
15833
|
customNumberOfDisplayedOptions: number;
|
|
15804
15834
|
fullWidth: boolean;
|
|
15805
15835
|
optionsListWidth: string;
|
|
15806
15836
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
15807
15837
|
disableVirtualScroll: boolean;
|
|
15808
15838
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
15839
|
+
withConditions: boolean;
|
|
15809
15840
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15810
15841
|
theme: {
|
|
15811
15842
|
type: import("vue").PropType<string>;
|
|
@@ -15865,6 +15896,10 @@ declare const _default: {
|
|
|
15865
15896
|
type: import("vue").PropType<unknown>;
|
|
15866
15897
|
default: any;
|
|
15867
15898
|
};
|
|
15899
|
+
valueToCopy: {
|
|
15900
|
+
type: import("vue").PropType<string>;
|
|
15901
|
+
default: any;
|
|
15902
|
+
};
|
|
15868
15903
|
options: {
|
|
15869
15904
|
type: import("vue").PropType<unknown[]>;
|
|
15870
15905
|
required: true;
|
|
@@ -15981,11 +16016,11 @@ declare const _default: {
|
|
|
15981
16016
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15982
16017
|
default: any;
|
|
15983
16018
|
};
|
|
15984
|
-
|
|
16019
|
+
optionsEndTextIconKey: {
|
|
15985
16020
|
type: import("vue").PropType<string>;
|
|
15986
16021
|
default: any;
|
|
15987
16022
|
};
|
|
15988
|
-
|
|
16023
|
+
optionFlagKey: {
|
|
15989
16024
|
type: import("vue").PropType<string>;
|
|
15990
16025
|
default: any;
|
|
15991
16026
|
};
|
|
@@ -16009,11 +16044,6 @@ declare const _default: {
|
|
|
16009
16044
|
type: import("vue").PropType<string>;
|
|
16010
16045
|
default: any;
|
|
16011
16046
|
};
|
|
16012
|
-
withConditions: {
|
|
16013
|
-
type: import("vue").PropType<boolean>;
|
|
16014
|
-
required: true;
|
|
16015
|
-
default: boolean;
|
|
16016
|
-
};
|
|
16017
16047
|
customNumberOfDisplayedOptions: {
|
|
16018
16048
|
type: import("vue").PropType<number>;
|
|
16019
16049
|
default: any;
|
|
@@ -16038,6 +16068,10 @@ declare const _default: {
|
|
|
16038
16068
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16039
16069
|
default: any;
|
|
16040
16070
|
};
|
|
16071
|
+
withConditions: {
|
|
16072
|
+
type: import("vue").PropType<boolean>;
|
|
16073
|
+
default: boolean;
|
|
16074
|
+
};
|
|
16041
16075
|
}>> & {
|
|
16042
16076
|
onCopyToClipboard?: () => any;
|
|
16043
16077
|
onClear?: () => any;
|
|
@@ -16048,7 +16082,7 @@ declare const _default: {
|
|
|
16048
16082
|
onOnsearch?: (value: string) => any;
|
|
16049
16083
|
onOpened?: () => any;
|
|
16050
16084
|
onClosed?: () => any;
|
|
16051
|
-
} & 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">;
|
|
16052
16086
|
$attrs: {
|
|
16053
16087
|
[x: string]: unknown;
|
|
16054
16088
|
};
|
|
@@ -16121,6 +16155,10 @@ declare const _default: {
|
|
|
16121
16155
|
type: import("vue").PropType<unknown>;
|
|
16122
16156
|
default: any;
|
|
16123
16157
|
};
|
|
16158
|
+
valueToCopy: {
|
|
16159
|
+
type: import("vue").PropType<string>;
|
|
16160
|
+
default: any;
|
|
16161
|
+
};
|
|
16124
16162
|
options: {
|
|
16125
16163
|
type: import("vue").PropType<unknown[]>;
|
|
16126
16164
|
required: true;
|
|
@@ -16237,11 +16275,11 @@ declare const _default: {
|
|
|
16237
16275
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16238
16276
|
default: any;
|
|
16239
16277
|
};
|
|
16240
|
-
|
|
16278
|
+
optionsEndTextIconKey: {
|
|
16241
16279
|
type: import("vue").PropType<string>;
|
|
16242
16280
|
default: any;
|
|
16243
16281
|
};
|
|
16244
|
-
|
|
16282
|
+
optionFlagKey: {
|
|
16245
16283
|
type: import("vue").PropType<string>;
|
|
16246
16284
|
default: any;
|
|
16247
16285
|
};
|
|
@@ -16265,11 +16303,6 @@ declare const _default: {
|
|
|
16265
16303
|
type: import("vue").PropType<string>;
|
|
16266
16304
|
default: any;
|
|
16267
16305
|
};
|
|
16268
|
-
withConditions: {
|
|
16269
|
-
type: import("vue").PropType<boolean>;
|
|
16270
|
-
required: true;
|
|
16271
|
-
default: boolean;
|
|
16272
|
-
};
|
|
16273
16306
|
customNumberOfDisplayedOptions: {
|
|
16274
16307
|
type: import("vue").PropType<number>;
|
|
16275
16308
|
default: any;
|
|
@@ -16294,6 +16327,10 @@ declare const _default: {
|
|
|
16294
16327
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16295
16328
|
default: any;
|
|
16296
16329
|
};
|
|
16330
|
+
withConditions: {
|
|
16331
|
+
type: import("vue").PropType<boolean>;
|
|
16332
|
+
default: boolean;
|
|
16333
|
+
};
|
|
16297
16334
|
}>> & {
|
|
16298
16335
|
onCopyToClipboard?: () => any;
|
|
16299
16336
|
onClear?: () => any;
|
|
@@ -16331,6 +16368,7 @@ declare const _default: {
|
|
|
16331
16368
|
skidding: number;
|
|
16332
16369
|
modelValue: any;
|
|
16333
16370
|
selected: any;
|
|
16371
|
+
valueToCopy: string;
|
|
16334
16372
|
onClear: () => void;
|
|
16335
16373
|
placeholder: string;
|
|
16336
16374
|
multi: boolean;
|
|
@@ -16358,20 +16396,20 @@ declare const _default: {
|
|
|
16358
16396
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16359
16397
|
optionEndIconKey: string;
|
|
16360
16398
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16399
|
+
optionsEndTextIconKey: string;
|
|
16361
16400
|
optionFlagKey: string;
|
|
16362
|
-
valueToCopy: string;
|
|
16363
16401
|
disabledOptionKey: string;
|
|
16364
16402
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16365
16403
|
optionTwoLinesKey: string;
|
|
16366
16404
|
groupedOptions: boolean;
|
|
16367
16405
|
comparingKey: string;
|
|
16368
|
-
withConditions: boolean;
|
|
16369
16406
|
customNumberOfDisplayedOptions: number;
|
|
16370
16407
|
fullWidth: boolean;
|
|
16371
16408
|
optionsListWidth: string;
|
|
16372
16409
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16373
16410
|
disableVirtualScroll: boolean;
|
|
16374
16411
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16412
|
+
withConditions: boolean;
|
|
16375
16413
|
}, {}, string> & {
|
|
16376
16414
|
beforeCreate?: (() => void) | (() => void)[];
|
|
16377
16415
|
created?: (() => void) | (() => void)[];
|
|
@@ -16451,6 +16489,10 @@ declare const _default: {
|
|
|
16451
16489
|
type: import("vue").PropType<unknown>;
|
|
16452
16490
|
default: any;
|
|
16453
16491
|
};
|
|
16492
|
+
valueToCopy: {
|
|
16493
|
+
type: import("vue").PropType<string>;
|
|
16494
|
+
default: any;
|
|
16495
|
+
};
|
|
16454
16496
|
options: {
|
|
16455
16497
|
type: import("vue").PropType<unknown[]>;
|
|
16456
16498
|
required: true;
|
|
@@ -16567,11 +16609,11 @@ declare const _default: {
|
|
|
16567
16609
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16568
16610
|
default: any;
|
|
16569
16611
|
};
|
|
16570
|
-
|
|
16612
|
+
optionsEndTextIconKey: {
|
|
16571
16613
|
type: import("vue").PropType<string>;
|
|
16572
16614
|
default: any;
|
|
16573
16615
|
};
|
|
16574
|
-
|
|
16616
|
+
optionFlagKey: {
|
|
16575
16617
|
type: import("vue").PropType<string>;
|
|
16576
16618
|
default: any;
|
|
16577
16619
|
};
|
|
@@ -16595,11 +16637,6 @@ declare const _default: {
|
|
|
16595
16637
|
type: import("vue").PropType<string>;
|
|
16596
16638
|
default: any;
|
|
16597
16639
|
};
|
|
16598
|
-
withConditions: {
|
|
16599
|
-
type: import("vue").PropType<boolean>;
|
|
16600
|
-
required: true;
|
|
16601
|
-
default: boolean;
|
|
16602
|
-
};
|
|
16603
16640
|
customNumberOfDisplayedOptions: {
|
|
16604
16641
|
type: import("vue").PropType<number>;
|
|
16605
16642
|
default: any;
|
|
@@ -16624,6 +16661,10 @@ declare const _default: {
|
|
|
16624
16661
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16625
16662
|
default: any;
|
|
16626
16663
|
};
|
|
16664
|
+
withConditions: {
|
|
16665
|
+
type: import("vue").PropType<boolean>;
|
|
16666
|
+
default: boolean;
|
|
16667
|
+
};
|
|
16627
16668
|
}>> & {
|
|
16628
16669
|
onCopyToClipboard?: () => any;
|
|
16629
16670
|
onClear?: () => any;
|
|
@@ -16700,6 +16741,10 @@ declare const _default: {
|
|
|
16700
16741
|
type: import("vue").PropType<unknown>;
|
|
16701
16742
|
default: any;
|
|
16702
16743
|
};
|
|
16744
|
+
valueToCopy: {
|
|
16745
|
+
type: import("vue").PropType<string>;
|
|
16746
|
+
default: any;
|
|
16747
|
+
};
|
|
16703
16748
|
options: {
|
|
16704
16749
|
type: import("vue").PropType<unknown[]>;
|
|
16705
16750
|
required: true;
|
|
@@ -16816,11 +16861,11 @@ declare const _default: {
|
|
|
16816
16861
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16817
16862
|
default: any;
|
|
16818
16863
|
};
|
|
16819
|
-
|
|
16864
|
+
optionsEndTextIconKey: {
|
|
16820
16865
|
type: import("vue").PropType<string>;
|
|
16821
16866
|
default: any;
|
|
16822
16867
|
};
|
|
16823
|
-
|
|
16868
|
+
optionFlagKey: {
|
|
16824
16869
|
type: import("vue").PropType<string>;
|
|
16825
16870
|
default: any;
|
|
16826
16871
|
};
|
|
@@ -16844,11 +16889,6 @@ declare const _default: {
|
|
|
16844
16889
|
type: import("vue").PropType<string>;
|
|
16845
16890
|
default: any;
|
|
16846
16891
|
};
|
|
16847
|
-
withConditions: {
|
|
16848
|
-
type: import("vue").PropType<boolean>;
|
|
16849
|
-
required: true;
|
|
16850
|
-
default: boolean;
|
|
16851
|
-
};
|
|
16852
16892
|
customNumberOfDisplayedOptions: {
|
|
16853
16893
|
type: import("vue").PropType<number>;
|
|
16854
16894
|
default: any;
|
|
@@ -16873,6 +16913,10 @@ declare const _default: {
|
|
|
16873
16913
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16874
16914
|
default: any;
|
|
16875
16915
|
};
|
|
16916
|
+
withConditions: {
|
|
16917
|
+
type: import("vue").PropType<boolean>;
|
|
16918
|
+
default: boolean;
|
|
16919
|
+
};
|
|
16876
16920
|
}>> & {
|
|
16877
16921
|
onCopyToClipboard?: () => any;
|
|
16878
16922
|
onClear?: () => any;
|
|
@@ -16910,6 +16954,7 @@ declare const _default: {
|
|
|
16910
16954
|
skidding: number;
|
|
16911
16955
|
modelValue: any;
|
|
16912
16956
|
selected: any;
|
|
16957
|
+
valueToCopy: string;
|
|
16913
16958
|
onClear: () => void;
|
|
16914
16959
|
placeholder: string;
|
|
16915
16960
|
multi: boolean;
|
|
@@ -16937,20 +16982,20 @@ declare const _default: {
|
|
|
16937
16982
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16938
16983
|
optionEndIconKey: string;
|
|
16939
16984
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16985
|
+
optionsEndTextIconKey: string;
|
|
16940
16986
|
optionFlagKey: string;
|
|
16941
|
-
valueToCopy: string;
|
|
16942
16987
|
disabledOptionKey: string;
|
|
16943
16988
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16944
16989
|
optionTwoLinesKey: string;
|
|
16945
16990
|
groupedOptions: boolean;
|
|
16946
16991
|
comparingKey: string;
|
|
16947
|
-
withConditions: boolean;
|
|
16948
16992
|
customNumberOfDisplayedOptions: number;
|
|
16949
16993
|
fullWidth: boolean;
|
|
16950
16994
|
optionsListWidth: string;
|
|
16951
16995
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16952
16996
|
disableVirtualScroll: boolean;
|
|
16953
16997
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16998
|
+
withConditions: boolean;
|
|
16954
16999
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
16955
17000
|
$slots: {
|
|
16956
17001
|
label?(_: {}): any;
|
|
@@ -16979,6 +17024,7 @@ declare const _default: {
|
|
|
16979
17024
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16980
17025
|
optionAndIconKey: string;
|
|
16981
17026
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17027
|
+
optionsEndTextIconKey: string;
|
|
16982
17028
|
optionFlagKey: string;
|
|
16983
17029
|
feedbackVariant: "success" | "warning" | "error";
|
|
16984
17030
|
valueToCopy: string;
|
|
@@ -16995,6 +17041,8 @@ declare const _default: {
|
|
|
16995
17041
|
"input-list"?(_: {
|
|
16996
17042
|
open: true;
|
|
16997
17043
|
}): any;
|
|
17044
|
+
"custom-list-area"?(_: {}): any;
|
|
17045
|
+
"select-all"?(_: {}): any;
|
|
16998
17046
|
"group-option"?(_: {}): any;
|
|
16999
17047
|
default?(_: {
|
|
17000
17048
|
option: unknown;
|
|
@@ -18040,6 +18088,7 @@ declare const _default: {
|
|
|
18040
18088
|
open: boolean;
|
|
18041
18089
|
mandatory: boolean;
|
|
18042
18090
|
loading: boolean;
|
|
18091
|
+
valueToCopy: string;
|
|
18043
18092
|
options: unknown[];
|
|
18044
18093
|
singleAppSelection: boolean;
|
|
18045
18094
|
placeholder: string;
|
|
@@ -18050,7 +18099,6 @@ declare const _default: {
|
|
|
18050
18099
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18051
18100
|
optionEndIconKey: string;
|
|
18052
18101
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18053
|
-
valueToCopy: string;
|
|
18054
18102
|
selectedOption: any;
|
|
18055
18103
|
brandIconType: "android" | "ios";
|
|
18056
18104
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -18084,6 +18132,10 @@ declare const _default: {
|
|
|
18084
18132
|
type: import("vue").PropType<boolean>;
|
|
18085
18133
|
default: boolean;
|
|
18086
18134
|
};
|
|
18135
|
+
valueToCopy: {
|
|
18136
|
+
type: import("vue").PropType<string>;
|
|
18137
|
+
default: any;
|
|
18138
|
+
};
|
|
18087
18139
|
options: {
|
|
18088
18140
|
type: import("vue").PropType<unknown[]>;
|
|
18089
18141
|
default: any;
|
|
@@ -18128,10 +18180,6 @@ declare const _default: {
|
|
|
18128
18180
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18129
18181
|
default: any;
|
|
18130
18182
|
};
|
|
18131
|
-
valueToCopy: {
|
|
18132
|
-
type: import("vue").PropType<string>;
|
|
18133
|
-
default: any;
|
|
18134
|
-
};
|
|
18135
18183
|
selectedOption: {
|
|
18136
18184
|
type: import("vue").PropType<unknown>;
|
|
18137
18185
|
default: any;
|
|
@@ -18143,7 +18191,7 @@ declare const _default: {
|
|
|
18143
18191
|
}>> & {
|
|
18144
18192
|
onClick?: () => any;
|
|
18145
18193
|
onCopyToClipboard?: () => any;
|
|
18146
|
-
} & 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">;
|
|
18147
18195
|
$attrs: {
|
|
18148
18196
|
[x: string]: unknown;
|
|
18149
18197
|
};
|
|
@@ -18188,6 +18236,10 @@ declare const _default: {
|
|
|
18188
18236
|
type: import("vue").PropType<boolean>;
|
|
18189
18237
|
default: boolean;
|
|
18190
18238
|
};
|
|
18239
|
+
valueToCopy: {
|
|
18240
|
+
type: import("vue").PropType<string>;
|
|
18241
|
+
default: any;
|
|
18242
|
+
};
|
|
18191
18243
|
options: {
|
|
18192
18244
|
type: import("vue").PropType<unknown[]>;
|
|
18193
18245
|
default: any;
|
|
@@ -18232,10 +18284,6 @@ declare const _default: {
|
|
|
18232
18284
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18233
18285
|
default: any;
|
|
18234
18286
|
};
|
|
18235
|
-
valueToCopy: {
|
|
18236
|
-
type: import("vue").PropType<string>;
|
|
18237
|
-
default: any;
|
|
18238
|
-
};
|
|
18239
18287
|
selectedOption: {
|
|
18240
18288
|
type: import("vue").PropType<unknown>;
|
|
18241
18289
|
default: any;
|
|
@@ -18258,6 +18306,7 @@ declare const _default: {
|
|
|
18258
18306
|
open: boolean;
|
|
18259
18307
|
mandatory: boolean;
|
|
18260
18308
|
loading: boolean;
|
|
18309
|
+
valueToCopy: string;
|
|
18261
18310
|
options: unknown[];
|
|
18262
18311
|
singleAppSelection: boolean;
|
|
18263
18312
|
placeholder: string;
|
|
@@ -18268,7 +18317,6 @@ declare const _default: {
|
|
|
18268
18317
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18269
18318
|
optionEndIconKey: string;
|
|
18270
18319
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18271
|
-
valueToCopy: string;
|
|
18272
18320
|
selectedOption: any;
|
|
18273
18321
|
brandIconType: "android" | "ios";
|
|
18274
18322
|
}, {}, string> & {
|
|
@@ -18322,6 +18370,10 @@ declare const _default: {
|
|
|
18322
18370
|
type: import("vue").PropType<boolean>;
|
|
18323
18371
|
default: boolean;
|
|
18324
18372
|
};
|
|
18373
|
+
valueToCopy: {
|
|
18374
|
+
type: import("vue").PropType<string>;
|
|
18375
|
+
default: any;
|
|
18376
|
+
};
|
|
18325
18377
|
options: {
|
|
18326
18378
|
type: import("vue").PropType<unknown[]>;
|
|
18327
18379
|
default: any;
|
|
@@ -18366,10 +18418,6 @@ declare const _default: {
|
|
|
18366
18418
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18367
18419
|
default: any;
|
|
18368
18420
|
};
|
|
18369
|
-
valueToCopy: {
|
|
18370
|
-
type: import("vue").PropType<string>;
|
|
18371
|
-
default: any;
|
|
18372
|
-
};
|
|
18373
18421
|
selectedOption: {
|
|
18374
18422
|
type: import("vue").PropType<unknown>;
|
|
18375
18423
|
default: any;
|
|
@@ -18416,6 +18464,10 @@ declare const _default: {
|
|
|
18416
18464
|
type: import("vue").PropType<boolean>;
|
|
18417
18465
|
default: boolean;
|
|
18418
18466
|
};
|
|
18467
|
+
valueToCopy: {
|
|
18468
|
+
type: import("vue").PropType<string>;
|
|
18469
|
+
default: any;
|
|
18470
|
+
};
|
|
18419
18471
|
options: {
|
|
18420
18472
|
type: import("vue").PropType<unknown[]>;
|
|
18421
18473
|
default: any;
|
|
@@ -18460,10 +18512,6 @@ declare const _default: {
|
|
|
18460
18512
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18461
18513
|
default: any;
|
|
18462
18514
|
};
|
|
18463
|
-
valueToCopy: {
|
|
18464
|
-
type: import("vue").PropType<string>;
|
|
18465
|
-
default: any;
|
|
18466
|
-
};
|
|
18467
18515
|
selectedOption: {
|
|
18468
18516
|
type: import("vue").PropType<unknown>;
|
|
18469
18517
|
default: any;
|
|
@@ -18486,6 +18534,7 @@ declare const _default: {
|
|
|
18486
18534
|
open: boolean;
|
|
18487
18535
|
mandatory: boolean;
|
|
18488
18536
|
loading: boolean;
|
|
18537
|
+
valueToCopy: string;
|
|
18489
18538
|
options: unknown[];
|
|
18490
18539
|
singleAppSelection: boolean;
|
|
18491
18540
|
placeholder: string;
|
|
@@ -18496,7 +18545,6 @@ declare const _default: {
|
|
|
18496
18545
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18497
18546
|
optionEndIconKey: string;
|
|
18498
18547
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18499
|
-
valueToCopy: string;
|
|
18500
18548
|
selectedOption: any;
|
|
18501
18549
|
brandIconType: "android" | "ios";
|
|
18502
18550
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -19105,6 +19153,7 @@ declare const _default: {
|
|
|
19105
19153
|
open: boolean;
|
|
19106
19154
|
mandatory: boolean;
|
|
19107
19155
|
loading: boolean;
|
|
19156
|
+
valueToCopy: string;
|
|
19108
19157
|
options: unknown[];
|
|
19109
19158
|
singleAppSelection: boolean;
|
|
19110
19159
|
placeholder: string;
|
|
@@ -19115,7 +19164,6 @@ declare const _default: {
|
|
|
19115
19164
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19116
19165
|
optionEndIconKey: string;
|
|
19117
19166
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19118
|
-
valueToCopy: string;
|
|
19119
19167
|
selectedOption: any;
|
|
19120
19168
|
brandIconType: "android" | "ios";
|
|
19121
19169
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -19149,6 +19197,10 @@ declare const _default: {
|
|
|
19149
19197
|
type: import("vue").PropType<boolean>;
|
|
19150
19198
|
default: boolean;
|
|
19151
19199
|
};
|
|
19200
|
+
valueToCopy: {
|
|
19201
|
+
type: import("vue").PropType<string>;
|
|
19202
|
+
default: any;
|
|
19203
|
+
};
|
|
19152
19204
|
options: {
|
|
19153
19205
|
type: import("vue").PropType<unknown[]>;
|
|
19154
19206
|
default: any;
|
|
@@ -19193,10 +19245,6 @@ declare const _default: {
|
|
|
19193
19245
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19194
19246
|
default: any;
|
|
19195
19247
|
};
|
|
19196
|
-
valueToCopy: {
|
|
19197
|
-
type: import("vue").PropType<string>;
|
|
19198
|
-
default: any;
|
|
19199
|
-
};
|
|
19200
19248
|
selectedOption: {
|
|
19201
19249
|
type: import("vue").PropType<unknown>;
|
|
19202
19250
|
default: any;
|
|
@@ -19208,7 +19256,7 @@ declare const _default: {
|
|
|
19208
19256
|
}>> & {
|
|
19209
19257
|
onClick?: () => any;
|
|
19210
19258
|
onCopyToClipboard?: () => any;
|
|
19211
|
-
} & 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">;
|
|
19212
19260
|
$attrs: {
|
|
19213
19261
|
[x: string]: unknown;
|
|
19214
19262
|
};
|
|
@@ -19253,6 +19301,10 @@ declare const _default: {
|
|
|
19253
19301
|
type: import("vue").PropType<boolean>;
|
|
19254
19302
|
default: boolean;
|
|
19255
19303
|
};
|
|
19304
|
+
valueToCopy: {
|
|
19305
|
+
type: import("vue").PropType<string>;
|
|
19306
|
+
default: any;
|
|
19307
|
+
};
|
|
19256
19308
|
options: {
|
|
19257
19309
|
type: import("vue").PropType<unknown[]>;
|
|
19258
19310
|
default: any;
|
|
@@ -19297,10 +19349,6 @@ declare const _default: {
|
|
|
19297
19349
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19298
19350
|
default: any;
|
|
19299
19351
|
};
|
|
19300
|
-
valueToCopy: {
|
|
19301
|
-
type: import("vue").PropType<string>;
|
|
19302
|
-
default: any;
|
|
19303
|
-
};
|
|
19304
19352
|
selectedOption: {
|
|
19305
19353
|
type: import("vue").PropType<unknown>;
|
|
19306
19354
|
default: any;
|
|
@@ -19323,6 +19371,7 @@ declare const _default: {
|
|
|
19323
19371
|
open: boolean;
|
|
19324
19372
|
mandatory: boolean;
|
|
19325
19373
|
loading: boolean;
|
|
19374
|
+
valueToCopy: string;
|
|
19326
19375
|
options: unknown[];
|
|
19327
19376
|
singleAppSelection: boolean;
|
|
19328
19377
|
placeholder: string;
|
|
@@ -19333,7 +19382,6 @@ declare const _default: {
|
|
|
19333
19382
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19334
19383
|
optionEndIconKey: string;
|
|
19335
19384
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19336
|
-
valueToCopy: string;
|
|
19337
19385
|
selectedOption: any;
|
|
19338
19386
|
brandIconType: "android" | "ios";
|
|
19339
19387
|
}, {}, string> & {
|
|
@@ -19387,6 +19435,10 @@ declare const _default: {
|
|
|
19387
19435
|
type: import("vue").PropType<boolean>;
|
|
19388
19436
|
default: boolean;
|
|
19389
19437
|
};
|
|
19438
|
+
valueToCopy: {
|
|
19439
|
+
type: import("vue").PropType<string>;
|
|
19440
|
+
default: any;
|
|
19441
|
+
};
|
|
19390
19442
|
options: {
|
|
19391
19443
|
type: import("vue").PropType<unknown[]>;
|
|
19392
19444
|
default: any;
|
|
@@ -19431,10 +19483,6 @@ declare const _default: {
|
|
|
19431
19483
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19432
19484
|
default: any;
|
|
19433
19485
|
};
|
|
19434
|
-
valueToCopy: {
|
|
19435
|
-
type: import("vue").PropType<string>;
|
|
19436
|
-
default: any;
|
|
19437
|
-
};
|
|
19438
19486
|
selectedOption: {
|
|
19439
19487
|
type: import("vue").PropType<unknown>;
|
|
19440
19488
|
default: any;
|
|
@@ -19481,6 +19529,10 @@ declare const _default: {
|
|
|
19481
19529
|
type: import("vue").PropType<boolean>;
|
|
19482
19530
|
default: boolean;
|
|
19483
19531
|
};
|
|
19532
|
+
valueToCopy: {
|
|
19533
|
+
type: import("vue").PropType<string>;
|
|
19534
|
+
default: any;
|
|
19535
|
+
};
|
|
19484
19536
|
options: {
|
|
19485
19537
|
type: import("vue").PropType<unknown[]>;
|
|
19486
19538
|
default: any;
|
|
@@ -19525,10 +19577,6 @@ declare const _default: {
|
|
|
19525
19577
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19526
19578
|
default: any;
|
|
19527
19579
|
};
|
|
19528
|
-
valueToCopy: {
|
|
19529
|
-
type: import("vue").PropType<string>;
|
|
19530
|
-
default: any;
|
|
19531
|
-
};
|
|
19532
19580
|
selectedOption: {
|
|
19533
19581
|
type: import("vue").PropType<unknown>;
|
|
19534
19582
|
default: any;
|
|
@@ -19551,6 +19599,7 @@ declare const _default: {
|
|
|
19551
19599
|
open: boolean;
|
|
19552
19600
|
mandatory: boolean;
|
|
19553
19601
|
loading: boolean;
|
|
19602
|
+
valueToCopy: string;
|
|
19554
19603
|
options: unknown[];
|
|
19555
19604
|
singleAppSelection: boolean;
|
|
19556
19605
|
placeholder: string;
|
|
@@ -19561,7 +19610,6 @@ declare const _default: {
|
|
|
19561
19610
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19562
19611
|
optionEndIconKey: string;
|
|
19563
19612
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19564
|
-
valueToCopy: string;
|
|
19565
19613
|
selectedOption: any;
|
|
19566
19614
|
brandIconType: "android" | "ios";
|
|
19567
19615
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -19590,11 +19638,13 @@ declare const _default: {
|
|
|
19590
19638
|
iconKey: string;
|
|
19591
19639
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19592
19640
|
endIconKey: string;
|
|
19641
|
+
endTextIconKey: string;
|
|
19593
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";
|
|
19594
19643
|
treeMainOption: boolean;
|
|
19595
19644
|
treeMainOptionExpanded: boolean;
|
|
19596
19645
|
stopOptionClickEventPropagation: boolean;
|
|
19597
19646
|
treeChildShown: boolean;
|
|
19647
|
+
isMulti: boolean;
|
|
19598
19648
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
19599
19649
|
option: {
|
|
19600
19650
|
type: import("vue").PropType<unknown>;
|
|
@@ -19656,6 +19706,10 @@ declare const _default: {
|
|
|
19656
19706
|
type: import("vue").PropType<string>;
|
|
19657
19707
|
default: any;
|
|
19658
19708
|
};
|
|
19709
|
+
endTextIconKey: {
|
|
19710
|
+
type: import("vue").PropType<string>;
|
|
19711
|
+
default: any;
|
|
19712
|
+
};
|
|
19659
19713
|
toolTipPlacement: {
|
|
19660
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">;
|
|
19661
19715
|
default: string;
|
|
@@ -19676,12 +19730,16 @@ declare const _default: {
|
|
|
19676
19730
|
type: import("vue").PropType<boolean>;
|
|
19677
19731
|
default: boolean;
|
|
19678
19732
|
};
|
|
19733
|
+
isMulti: {
|
|
19734
|
+
type: import("vue").PropType<boolean>;
|
|
19735
|
+
default: boolean;
|
|
19736
|
+
};
|
|
19679
19737
|
selectedProp: {
|
|
19680
19738
|
type: import("vue").PropType<boolean>;
|
|
19681
19739
|
};
|
|
19682
19740
|
}>> & {
|
|
19683
19741
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
19684
|
-
} & 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">;
|
|
19685
19743
|
$attrs: {
|
|
19686
19744
|
[x: string]: unknown;
|
|
19687
19745
|
};
|
|
@@ -19756,6 +19814,10 @@ declare const _default: {
|
|
|
19756
19814
|
type: import("vue").PropType<string>;
|
|
19757
19815
|
default: any;
|
|
19758
19816
|
};
|
|
19817
|
+
endTextIconKey: {
|
|
19818
|
+
type: import("vue").PropType<string>;
|
|
19819
|
+
default: any;
|
|
19820
|
+
};
|
|
19759
19821
|
toolTipPlacement: {
|
|
19760
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">;
|
|
19761
19823
|
default: string;
|
|
@@ -19776,6 +19838,10 @@ declare const _default: {
|
|
|
19776
19838
|
type: import("vue").PropType<boolean>;
|
|
19777
19839
|
default: boolean;
|
|
19778
19840
|
};
|
|
19841
|
+
isMulti: {
|
|
19842
|
+
type: import("vue").PropType<boolean>;
|
|
19843
|
+
default: boolean;
|
|
19844
|
+
};
|
|
19779
19845
|
selectedProp: {
|
|
19780
19846
|
type: import("vue").PropType<boolean>;
|
|
19781
19847
|
};
|
|
@@ -19799,11 +19865,13 @@ declare const _default: {
|
|
|
19799
19865
|
iconKey: string;
|
|
19800
19866
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19801
19867
|
endIconKey: string;
|
|
19868
|
+
endTextIconKey: string;
|
|
19802
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";
|
|
19803
19870
|
treeMainOption: boolean;
|
|
19804
19871
|
treeMainOptionExpanded: boolean;
|
|
19805
19872
|
stopOptionClickEventPropagation: boolean;
|
|
19806
19873
|
treeChildShown: boolean;
|
|
19874
|
+
isMulti: boolean;
|
|
19807
19875
|
}, {}, string> & {
|
|
19808
19876
|
beforeCreate?: (() => void) | (() => void)[];
|
|
19809
19877
|
created?: (() => void) | (() => void)[];
|
|
@@ -19885,6 +19953,10 @@ declare const _default: {
|
|
|
19885
19953
|
type: import("vue").PropType<string>;
|
|
19886
19954
|
default: any;
|
|
19887
19955
|
};
|
|
19956
|
+
endTextIconKey: {
|
|
19957
|
+
type: import("vue").PropType<string>;
|
|
19958
|
+
default: any;
|
|
19959
|
+
};
|
|
19888
19960
|
toolTipPlacement: {
|
|
19889
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">;
|
|
19890
19962
|
default: string;
|
|
@@ -19905,6 +19977,10 @@ declare const _default: {
|
|
|
19905
19977
|
type: import("vue").PropType<boolean>;
|
|
19906
19978
|
default: boolean;
|
|
19907
19979
|
};
|
|
19980
|
+
isMulti: {
|
|
19981
|
+
type: import("vue").PropType<boolean>;
|
|
19982
|
+
default: boolean;
|
|
19983
|
+
};
|
|
19908
19984
|
selectedProp: {
|
|
19909
19985
|
type: import("vue").PropType<boolean>;
|
|
19910
19986
|
};
|
|
@@ -19975,6 +20051,10 @@ declare const _default: {
|
|
|
19975
20051
|
type: import("vue").PropType<string>;
|
|
19976
20052
|
default: any;
|
|
19977
20053
|
};
|
|
20054
|
+
endTextIconKey: {
|
|
20055
|
+
type: import("vue").PropType<string>;
|
|
20056
|
+
default: any;
|
|
20057
|
+
};
|
|
19978
20058
|
toolTipPlacement: {
|
|
19979
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">;
|
|
19980
20060
|
default: string;
|
|
@@ -19995,6 +20075,10 @@ declare const _default: {
|
|
|
19995
20075
|
type: import("vue").PropType<boolean>;
|
|
19996
20076
|
default: boolean;
|
|
19997
20077
|
};
|
|
20078
|
+
isMulti: {
|
|
20079
|
+
type: import("vue").PropType<boolean>;
|
|
20080
|
+
default: boolean;
|
|
20081
|
+
};
|
|
19998
20082
|
selectedProp: {
|
|
19999
20083
|
type: import("vue").PropType<boolean>;
|
|
20000
20084
|
};
|
|
@@ -20018,11 +20102,13 @@ declare const _default: {
|
|
|
20018
20102
|
iconKey: string;
|
|
20019
20103
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20020
20104
|
endIconKey: string;
|
|
20105
|
+
endTextIconKey: string;
|
|
20021
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";
|
|
20022
20107
|
treeMainOption: boolean;
|
|
20023
20108
|
treeMainOptionExpanded: boolean;
|
|
20024
20109
|
stopOptionClickEventPropagation: boolean;
|
|
20025
20110
|
treeChildShown: boolean;
|
|
20111
|
+
isMulti: boolean;
|
|
20026
20112
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20027
20113
|
$slots: {
|
|
20028
20114
|
image?(_: {}): any;
|
|
@@ -20169,6 +20255,7 @@ declare const _default: {
|
|
|
20169
20255
|
skidding: number;
|
|
20170
20256
|
modelValue: any;
|
|
20171
20257
|
selected: any;
|
|
20258
|
+
valueToCopy: string;
|
|
20172
20259
|
onClear: () => void;
|
|
20173
20260
|
placeholder: string;
|
|
20174
20261
|
multi: boolean;
|
|
@@ -20196,20 +20283,20 @@ declare const _default: {
|
|
|
20196
20283
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20197
20284
|
optionEndIconKey: string;
|
|
20198
20285
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20286
|
+
optionsEndTextIconKey: string;
|
|
20199
20287
|
optionFlagKey: string;
|
|
20200
|
-
valueToCopy: string;
|
|
20201
20288
|
disabledOptionKey: string;
|
|
20202
20289
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20203
20290
|
optionTwoLinesKey: string;
|
|
20204
20291
|
groupedOptions: boolean;
|
|
20205
20292
|
comparingKey: string;
|
|
20206
|
-
withConditions: boolean;
|
|
20207
20293
|
customNumberOfDisplayedOptions: number;
|
|
20208
20294
|
fullWidth: boolean;
|
|
20209
20295
|
optionsListWidth: string;
|
|
20210
20296
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20211
20297
|
disableVirtualScroll: boolean;
|
|
20212
20298
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20299
|
+
withConditions: boolean;
|
|
20213
20300
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20214
20301
|
theme: {
|
|
20215
20302
|
type: import("vue").PropType<string>;
|
|
@@ -20269,6 +20356,10 @@ declare const _default: {
|
|
|
20269
20356
|
type: import("vue").PropType<unknown>;
|
|
20270
20357
|
default: any;
|
|
20271
20358
|
};
|
|
20359
|
+
valueToCopy: {
|
|
20360
|
+
type: import("vue").PropType<string>;
|
|
20361
|
+
default: any;
|
|
20362
|
+
};
|
|
20272
20363
|
options: {
|
|
20273
20364
|
type: import("vue").PropType<unknown[]>;
|
|
20274
20365
|
required: true;
|
|
@@ -20385,11 +20476,11 @@ declare const _default: {
|
|
|
20385
20476
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20386
20477
|
default: any;
|
|
20387
20478
|
};
|
|
20388
|
-
|
|
20479
|
+
optionsEndTextIconKey: {
|
|
20389
20480
|
type: import("vue").PropType<string>;
|
|
20390
20481
|
default: any;
|
|
20391
20482
|
};
|
|
20392
|
-
|
|
20483
|
+
optionFlagKey: {
|
|
20393
20484
|
type: import("vue").PropType<string>;
|
|
20394
20485
|
default: any;
|
|
20395
20486
|
};
|
|
@@ -20413,11 +20504,6 @@ declare const _default: {
|
|
|
20413
20504
|
type: import("vue").PropType<string>;
|
|
20414
20505
|
default: any;
|
|
20415
20506
|
};
|
|
20416
|
-
withConditions: {
|
|
20417
|
-
type: import("vue").PropType<boolean>;
|
|
20418
|
-
required: true;
|
|
20419
|
-
default: boolean;
|
|
20420
|
-
};
|
|
20421
20507
|
customNumberOfDisplayedOptions: {
|
|
20422
20508
|
type: import("vue").PropType<number>;
|
|
20423
20509
|
default: any;
|
|
@@ -20442,6 +20528,10 @@ declare const _default: {
|
|
|
20442
20528
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20443
20529
|
default: any;
|
|
20444
20530
|
};
|
|
20531
|
+
withConditions: {
|
|
20532
|
+
type: import("vue").PropType<boolean>;
|
|
20533
|
+
default: boolean;
|
|
20534
|
+
};
|
|
20445
20535
|
}>> & {
|
|
20446
20536
|
onCopyToClipboard?: () => any;
|
|
20447
20537
|
onClear?: () => any;
|
|
@@ -20452,7 +20542,7 @@ declare const _default: {
|
|
|
20452
20542
|
onOnsearch?: (value: string) => any;
|
|
20453
20543
|
onOpened?: () => any;
|
|
20454
20544
|
onClosed?: () => any;
|
|
20455
|
-
} & 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">;
|
|
20456
20546
|
$attrs: {
|
|
20457
20547
|
[x: string]: unknown;
|
|
20458
20548
|
};
|
|
@@ -20525,6 +20615,10 @@ declare const _default: {
|
|
|
20525
20615
|
type: import("vue").PropType<unknown>;
|
|
20526
20616
|
default: any;
|
|
20527
20617
|
};
|
|
20618
|
+
valueToCopy: {
|
|
20619
|
+
type: import("vue").PropType<string>;
|
|
20620
|
+
default: any;
|
|
20621
|
+
};
|
|
20528
20622
|
options: {
|
|
20529
20623
|
type: import("vue").PropType<unknown[]>;
|
|
20530
20624
|
required: true;
|
|
@@ -20641,11 +20735,11 @@ declare const _default: {
|
|
|
20641
20735
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20642
20736
|
default: any;
|
|
20643
20737
|
};
|
|
20644
|
-
|
|
20738
|
+
optionsEndTextIconKey: {
|
|
20645
20739
|
type: import("vue").PropType<string>;
|
|
20646
20740
|
default: any;
|
|
20647
20741
|
};
|
|
20648
|
-
|
|
20742
|
+
optionFlagKey: {
|
|
20649
20743
|
type: import("vue").PropType<string>;
|
|
20650
20744
|
default: any;
|
|
20651
20745
|
};
|
|
@@ -20669,11 +20763,6 @@ declare const _default: {
|
|
|
20669
20763
|
type: import("vue").PropType<string>;
|
|
20670
20764
|
default: any;
|
|
20671
20765
|
};
|
|
20672
|
-
withConditions: {
|
|
20673
|
-
type: import("vue").PropType<boolean>;
|
|
20674
|
-
required: true;
|
|
20675
|
-
default: boolean;
|
|
20676
|
-
};
|
|
20677
20766
|
customNumberOfDisplayedOptions: {
|
|
20678
20767
|
type: import("vue").PropType<number>;
|
|
20679
20768
|
default: any;
|
|
@@ -20698,6 +20787,10 @@ declare const _default: {
|
|
|
20698
20787
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20699
20788
|
default: any;
|
|
20700
20789
|
};
|
|
20790
|
+
withConditions: {
|
|
20791
|
+
type: import("vue").PropType<boolean>;
|
|
20792
|
+
default: boolean;
|
|
20793
|
+
};
|
|
20701
20794
|
}>> & {
|
|
20702
20795
|
onCopyToClipboard?: () => any;
|
|
20703
20796
|
onClear?: () => any;
|
|
@@ -20735,6 +20828,7 @@ declare const _default: {
|
|
|
20735
20828
|
skidding: number;
|
|
20736
20829
|
modelValue: any;
|
|
20737
20830
|
selected: any;
|
|
20831
|
+
valueToCopy: string;
|
|
20738
20832
|
onClear: () => void;
|
|
20739
20833
|
placeholder: string;
|
|
20740
20834
|
multi: boolean;
|
|
@@ -20762,20 +20856,20 @@ declare const _default: {
|
|
|
20762
20856
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20763
20857
|
optionEndIconKey: string;
|
|
20764
20858
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20859
|
+
optionsEndTextIconKey: string;
|
|
20765
20860
|
optionFlagKey: string;
|
|
20766
|
-
valueToCopy: string;
|
|
20767
20861
|
disabledOptionKey: string;
|
|
20768
20862
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20769
20863
|
optionTwoLinesKey: string;
|
|
20770
20864
|
groupedOptions: boolean;
|
|
20771
20865
|
comparingKey: string;
|
|
20772
|
-
withConditions: boolean;
|
|
20773
20866
|
customNumberOfDisplayedOptions: number;
|
|
20774
20867
|
fullWidth: boolean;
|
|
20775
20868
|
optionsListWidth: string;
|
|
20776
20869
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20777
20870
|
disableVirtualScroll: boolean;
|
|
20778
20871
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20872
|
+
withConditions: boolean;
|
|
20779
20873
|
}, {}, string> & {
|
|
20780
20874
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20781
20875
|
created?: (() => void) | (() => void)[];
|
|
@@ -20855,6 +20949,10 @@ declare const _default: {
|
|
|
20855
20949
|
type: import("vue").PropType<unknown>;
|
|
20856
20950
|
default: any;
|
|
20857
20951
|
};
|
|
20952
|
+
valueToCopy: {
|
|
20953
|
+
type: import("vue").PropType<string>;
|
|
20954
|
+
default: any;
|
|
20955
|
+
};
|
|
20858
20956
|
options: {
|
|
20859
20957
|
type: import("vue").PropType<unknown[]>;
|
|
20860
20958
|
required: true;
|
|
@@ -20971,11 +21069,11 @@ declare const _default: {
|
|
|
20971
21069
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20972
21070
|
default: any;
|
|
20973
21071
|
};
|
|
20974
|
-
|
|
21072
|
+
optionsEndTextIconKey: {
|
|
20975
21073
|
type: import("vue").PropType<string>;
|
|
20976
21074
|
default: any;
|
|
20977
21075
|
};
|
|
20978
|
-
|
|
21076
|
+
optionFlagKey: {
|
|
20979
21077
|
type: import("vue").PropType<string>;
|
|
20980
21078
|
default: any;
|
|
20981
21079
|
};
|
|
@@ -20999,11 +21097,6 @@ declare const _default: {
|
|
|
20999
21097
|
type: import("vue").PropType<string>;
|
|
21000
21098
|
default: any;
|
|
21001
21099
|
};
|
|
21002
|
-
withConditions: {
|
|
21003
|
-
type: import("vue").PropType<boolean>;
|
|
21004
|
-
required: true;
|
|
21005
|
-
default: boolean;
|
|
21006
|
-
};
|
|
21007
21100
|
customNumberOfDisplayedOptions: {
|
|
21008
21101
|
type: import("vue").PropType<number>;
|
|
21009
21102
|
default: any;
|
|
@@ -21028,6 +21121,10 @@ declare const _default: {
|
|
|
21028
21121
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
21029
21122
|
default: any;
|
|
21030
21123
|
};
|
|
21124
|
+
withConditions: {
|
|
21125
|
+
type: import("vue").PropType<boolean>;
|
|
21126
|
+
default: boolean;
|
|
21127
|
+
};
|
|
21031
21128
|
}>> & {
|
|
21032
21129
|
onCopyToClipboard?: () => any;
|
|
21033
21130
|
onClear?: () => any;
|
|
@@ -21104,6 +21201,10 @@ declare const _default: {
|
|
|
21104
21201
|
type: import("vue").PropType<unknown>;
|
|
21105
21202
|
default: any;
|
|
21106
21203
|
};
|
|
21204
|
+
valueToCopy: {
|
|
21205
|
+
type: import("vue").PropType<string>;
|
|
21206
|
+
default: any;
|
|
21207
|
+
};
|
|
21107
21208
|
options: {
|
|
21108
21209
|
type: import("vue").PropType<unknown[]>;
|
|
21109
21210
|
required: true;
|
|
@@ -21220,11 +21321,11 @@ declare const _default: {
|
|
|
21220
21321
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21221
21322
|
default: any;
|
|
21222
21323
|
};
|
|
21223
|
-
|
|
21324
|
+
optionsEndTextIconKey: {
|
|
21224
21325
|
type: import("vue").PropType<string>;
|
|
21225
21326
|
default: any;
|
|
21226
21327
|
};
|
|
21227
|
-
|
|
21328
|
+
optionFlagKey: {
|
|
21228
21329
|
type: import("vue").PropType<string>;
|
|
21229
21330
|
default: any;
|
|
21230
21331
|
};
|
|
@@ -21248,11 +21349,6 @@ declare const _default: {
|
|
|
21248
21349
|
type: import("vue").PropType<string>;
|
|
21249
21350
|
default: any;
|
|
21250
21351
|
};
|
|
21251
|
-
withConditions: {
|
|
21252
|
-
type: import("vue").PropType<boolean>;
|
|
21253
|
-
required: true;
|
|
21254
|
-
default: boolean;
|
|
21255
|
-
};
|
|
21256
21352
|
customNumberOfDisplayedOptions: {
|
|
21257
21353
|
type: import("vue").PropType<number>;
|
|
21258
21354
|
default: any;
|
|
@@ -21277,6 +21373,10 @@ declare const _default: {
|
|
|
21277
21373
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
21278
21374
|
default: any;
|
|
21279
21375
|
};
|
|
21376
|
+
withConditions: {
|
|
21377
|
+
type: import("vue").PropType<boolean>;
|
|
21378
|
+
default: boolean;
|
|
21379
|
+
};
|
|
21280
21380
|
}>> & {
|
|
21281
21381
|
onCopyToClipboard?: () => any;
|
|
21282
21382
|
onClear?: () => any;
|
|
@@ -21314,6 +21414,7 @@ declare const _default: {
|
|
|
21314
21414
|
skidding: number;
|
|
21315
21415
|
modelValue: any;
|
|
21316
21416
|
selected: any;
|
|
21417
|
+
valueToCopy: string;
|
|
21317
21418
|
onClear: () => void;
|
|
21318
21419
|
placeholder: string;
|
|
21319
21420
|
multi: boolean;
|
|
@@ -21341,20 +21442,20 @@ declare const _default: {
|
|
|
21341
21442
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21342
21443
|
optionEndIconKey: string;
|
|
21343
21444
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21445
|
+
optionsEndTextIconKey: string;
|
|
21344
21446
|
optionFlagKey: string;
|
|
21345
|
-
valueToCopy: string;
|
|
21346
21447
|
disabledOptionKey: string;
|
|
21347
21448
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21348
21449
|
optionTwoLinesKey: string;
|
|
21349
21450
|
groupedOptions: boolean;
|
|
21350
21451
|
comparingKey: string;
|
|
21351
|
-
withConditions: boolean;
|
|
21352
21452
|
customNumberOfDisplayedOptions: number;
|
|
21353
21453
|
fullWidth: boolean;
|
|
21354
21454
|
optionsListWidth: string;
|
|
21355
21455
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
21356
21456
|
disableVirtualScroll: boolean;
|
|
21357
21457
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
21458
|
+
withConditions: boolean;
|
|
21358
21459
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21359
21460
|
$slots: {
|
|
21360
21461
|
label?(_: {}): any;
|
|
@@ -21383,6 +21484,7 @@ declare const _default: {
|
|
|
21383
21484
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21384
21485
|
optionAndIconKey: string;
|
|
21385
21486
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21487
|
+
optionsEndTextIconKey: string;
|
|
21386
21488
|
optionFlagKey: string;
|
|
21387
21489
|
feedbackVariant: "success" | "warning" | "error";
|
|
21388
21490
|
valueToCopy: string;
|
|
@@ -21399,6 +21501,8 @@ declare const _default: {
|
|
|
21399
21501
|
"input-list"?(_: {
|
|
21400
21502
|
open: true;
|
|
21401
21503
|
}): any;
|
|
21504
|
+
"custom-list-area"?(_: {}): any;
|
|
21505
|
+
"select-all"?(_: {}): any;
|
|
21402
21506
|
"group-option"?(_: {}): any;
|
|
21403
21507
|
default?(_: {
|
|
21404
21508
|
option: unknown;
|
|
@@ -21495,6 +21599,7 @@ declare const _default: {
|
|
|
21495
21599
|
disabled: boolean;
|
|
21496
21600
|
size: "small" | "medium" | "large";
|
|
21497
21601
|
selected: unknown[];
|
|
21602
|
+
valueToCopy: string;
|
|
21498
21603
|
placeholder: string;
|
|
21499
21604
|
inlineSearchPlaceholder: string;
|
|
21500
21605
|
optionNameKey: string;
|
|
@@ -21503,8 +21608,8 @@ declare const _default: {
|
|
|
21503
21608
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21504
21609
|
optionEndIconKey: string;
|
|
21505
21610
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21506
|
-
valueToCopy: string;
|
|
21507
21611
|
disabledOptionKey: string;
|
|
21612
|
+
optionEndTextIconKey: string;
|
|
21508
21613
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
21509
21614
|
testId: {
|
|
21510
21615
|
type: import("vue").PropType<string>;
|
|
@@ -21525,6 +21630,10 @@ declare const _default: {
|
|
|
21525
21630
|
type: import("vue").PropType<unknown[]>;
|
|
21526
21631
|
default: any;
|
|
21527
21632
|
};
|
|
21633
|
+
valueToCopy: {
|
|
21634
|
+
type: import("vue").PropType<string>;
|
|
21635
|
+
default: any;
|
|
21636
|
+
};
|
|
21528
21637
|
options: {
|
|
21529
21638
|
type: import("vue").PropType<unknown[]>;
|
|
21530
21639
|
required: true;
|
|
@@ -21565,14 +21674,14 @@ declare const _default: {
|
|
|
21565
21674
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21566
21675
|
default: any;
|
|
21567
21676
|
};
|
|
21568
|
-
valueToCopy: {
|
|
21569
|
-
type: import("vue").PropType<string>;
|
|
21570
|
-
default: any;
|
|
21571
|
-
};
|
|
21572
21677
|
disabledOptionKey: {
|
|
21573
21678
|
type: import("vue").PropType<string>;
|
|
21574
21679
|
default: string;
|
|
21575
21680
|
};
|
|
21681
|
+
optionEndTextIconKey: {
|
|
21682
|
+
type: import("vue").PropType<string>;
|
|
21683
|
+
default: any;
|
|
21684
|
+
};
|
|
21576
21685
|
optionChildrenKey: {
|
|
21577
21686
|
type: import("vue").PropType<string>;
|
|
21578
21687
|
required: true;
|
|
@@ -21588,7 +21697,7 @@ declare const _default: {
|
|
|
21588
21697
|
}>> & {
|
|
21589
21698
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
21590
21699
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
21591
|
-
} & 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">;
|
|
21592
21701
|
$attrs: {
|
|
21593
21702
|
[x: string]: unknown;
|
|
21594
21703
|
};
|
|
@@ -21622,6 +21731,10 @@ declare const _default: {
|
|
|
21622
21731
|
type: import("vue").PropType<unknown[]>;
|
|
21623
21732
|
default: any;
|
|
21624
21733
|
};
|
|
21734
|
+
valueToCopy: {
|
|
21735
|
+
type: import("vue").PropType<string>;
|
|
21736
|
+
default: any;
|
|
21737
|
+
};
|
|
21625
21738
|
options: {
|
|
21626
21739
|
type: import("vue").PropType<unknown[]>;
|
|
21627
21740
|
required: true;
|
|
@@ -21662,14 +21775,14 @@ declare const _default: {
|
|
|
21662
21775
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21663
21776
|
default: any;
|
|
21664
21777
|
};
|
|
21665
|
-
valueToCopy: {
|
|
21666
|
-
type: import("vue").PropType<string>;
|
|
21667
|
-
default: any;
|
|
21668
|
-
};
|
|
21669
21778
|
disabledOptionKey: {
|
|
21670
21779
|
type: import("vue").PropType<string>;
|
|
21671
21780
|
default: string;
|
|
21672
21781
|
};
|
|
21782
|
+
optionEndTextIconKey: {
|
|
21783
|
+
type: import("vue").PropType<string>;
|
|
21784
|
+
default: any;
|
|
21785
|
+
};
|
|
21673
21786
|
optionChildrenKey: {
|
|
21674
21787
|
type: import("vue").PropType<string>;
|
|
21675
21788
|
required: true;
|
|
@@ -21693,6 +21806,7 @@ declare const _default: {
|
|
|
21693
21806
|
disabled: boolean;
|
|
21694
21807
|
size: "small" | "medium" | "large";
|
|
21695
21808
|
selected: unknown[];
|
|
21809
|
+
valueToCopy: string;
|
|
21696
21810
|
placeholder: string;
|
|
21697
21811
|
inlineSearchPlaceholder: string;
|
|
21698
21812
|
optionNameKey: string;
|
|
@@ -21701,8 +21815,8 @@ declare const _default: {
|
|
|
21701
21815
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21702
21816
|
optionEndIconKey: string;
|
|
21703
21817
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21704
|
-
valueToCopy: string;
|
|
21705
21818
|
disabledOptionKey: string;
|
|
21819
|
+
optionEndTextIconKey: string;
|
|
21706
21820
|
}, {}, string> & {
|
|
21707
21821
|
beforeCreate?: (() => void) | (() => void)[];
|
|
21708
21822
|
created?: (() => void) | (() => void)[];
|
|
@@ -21743,6 +21857,10 @@ declare const _default: {
|
|
|
21743
21857
|
type: import("vue").PropType<unknown[]>;
|
|
21744
21858
|
default: any;
|
|
21745
21859
|
};
|
|
21860
|
+
valueToCopy: {
|
|
21861
|
+
type: import("vue").PropType<string>;
|
|
21862
|
+
default: any;
|
|
21863
|
+
};
|
|
21746
21864
|
options: {
|
|
21747
21865
|
type: import("vue").PropType<unknown[]>;
|
|
21748
21866
|
required: true;
|
|
@@ -21783,14 +21901,14 @@ declare const _default: {
|
|
|
21783
21901
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21784
21902
|
default: any;
|
|
21785
21903
|
};
|
|
21786
|
-
valueToCopy: {
|
|
21787
|
-
type: import("vue").PropType<string>;
|
|
21788
|
-
default: any;
|
|
21789
|
-
};
|
|
21790
21904
|
disabledOptionKey: {
|
|
21791
21905
|
type: import("vue").PropType<string>;
|
|
21792
21906
|
default: string;
|
|
21793
21907
|
};
|
|
21908
|
+
optionEndTextIconKey: {
|
|
21909
|
+
type: import("vue").PropType<string>;
|
|
21910
|
+
default: any;
|
|
21911
|
+
};
|
|
21794
21912
|
optionChildrenKey: {
|
|
21795
21913
|
type: import("vue").PropType<string>;
|
|
21796
21914
|
required: true;
|
|
@@ -21830,6 +21948,10 @@ declare const _default: {
|
|
|
21830
21948
|
type: import("vue").PropType<unknown[]>;
|
|
21831
21949
|
default: any;
|
|
21832
21950
|
};
|
|
21951
|
+
valueToCopy: {
|
|
21952
|
+
type: import("vue").PropType<string>;
|
|
21953
|
+
default: any;
|
|
21954
|
+
};
|
|
21833
21955
|
options: {
|
|
21834
21956
|
type: import("vue").PropType<unknown[]>;
|
|
21835
21957
|
required: true;
|
|
@@ -21870,14 +21992,14 @@ declare const _default: {
|
|
|
21870
21992
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21871
21993
|
default: any;
|
|
21872
21994
|
};
|
|
21873
|
-
valueToCopy: {
|
|
21874
|
-
type: import("vue").PropType<string>;
|
|
21875
|
-
default: any;
|
|
21876
|
-
};
|
|
21877
21995
|
disabledOptionKey: {
|
|
21878
21996
|
type: import("vue").PropType<string>;
|
|
21879
21997
|
default: string;
|
|
21880
21998
|
};
|
|
21999
|
+
optionEndTextIconKey: {
|
|
22000
|
+
type: import("vue").PropType<string>;
|
|
22001
|
+
default: any;
|
|
22002
|
+
};
|
|
21881
22003
|
optionChildrenKey: {
|
|
21882
22004
|
type: import("vue").PropType<string>;
|
|
21883
22005
|
required: true;
|
|
@@ -21901,6 +22023,7 @@ declare const _default: {
|
|
|
21901
22023
|
disabled: boolean;
|
|
21902
22024
|
size: "small" | "medium" | "large";
|
|
21903
22025
|
selected: unknown[];
|
|
22026
|
+
valueToCopy: string;
|
|
21904
22027
|
placeholder: string;
|
|
21905
22028
|
inlineSearchPlaceholder: string;
|
|
21906
22029
|
optionNameKey: string;
|
|
@@ -21909,13 +22032,129 @@ declare const _default: {
|
|
|
21909
22032
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21910
22033
|
optionEndIconKey: string;
|
|
21911
22034
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21912
|
-
valueToCopy: string;
|
|
21913
22035
|
disabledOptionKey: string;
|
|
22036
|
+
optionEndTextIconKey: string;
|
|
21914
22037
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21915
22038
|
$slots: {
|
|
21916
22039
|
"trigger-end-icon"?(_: {}): any;
|
|
21917
22040
|
};
|
|
21918
|
-
})))
|
|
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
|
+
}>)[];
|
|
21919
22158
|
Option: {
|
|
21920
22159
|
new (...args: any[]): {
|
|
21921
22160
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -21936,11 +22175,13 @@ declare const _default: {
|
|
|
21936
22175
|
iconKey: string;
|
|
21937
22176
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21938
22177
|
endIconKey: string;
|
|
22178
|
+
endTextIconKey: string;
|
|
21939
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";
|
|
21940
22180
|
treeMainOption: boolean;
|
|
21941
22181
|
treeMainOptionExpanded: boolean;
|
|
21942
22182
|
stopOptionClickEventPropagation: boolean;
|
|
21943
22183
|
treeChildShown: boolean;
|
|
22184
|
+
isMulti: boolean;
|
|
21944
22185
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
21945
22186
|
option: {
|
|
21946
22187
|
type: import("vue").PropType<unknown>;
|
|
@@ -22002,6 +22243,10 @@ declare const _default: {
|
|
|
22002
22243
|
type: import("vue").PropType<string>;
|
|
22003
22244
|
default: any;
|
|
22004
22245
|
};
|
|
22246
|
+
endTextIconKey: {
|
|
22247
|
+
type: import("vue").PropType<string>;
|
|
22248
|
+
default: any;
|
|
22249
|
+
};
|
|
22005
22250
|
toolTipPlacement: {
|
|
22006
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">;
|
|
22007
22252
|
default: string;
|
|
@@ -22022,12 +22267,16 @@ declare const _default: {
|
|
|
22022
22267
|
type: import("vue").PropType<boolean>;
|
|
22023
22268
|
default: boolean;
|
|
22024
22269
|
};
|
|
22270
|
+
isMulti: {
|
|
22271
|
+
type: import("vue").PropType<boolean>;
|
|
22272
|
+
default: boolean;
|
|
22273
|
+
};
|
|
22025
22274
|
selectedProp: {
|
|
22026
22275
|
type: import("vue").PropType<boolean>;
|
|
22027
22276
|
};
|
|
22028
22277
|
}>> & {
|
|
22029
22278
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
22030
|
-
} & 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">;
|
|
22031
22280
|
$attrs: {
|
|
22032
22281
|
[x: string]: unknown;
|
|
22033
22282
|
};
|
|
@@ -22102,6 +22351,10 @@ declare const _default: {
|
|
|
22102
22351
|
type: import("vue").PropType<string>;
|
|
22103
22352
|
default: any;
|
|
22104
22353
|
};
|
|
22354
|
+
endTextIconKey: {
|
|
22355
|
+
type: import("vue").PropType<string>;
|
|
22356
|
+
default: any;
|
|
22357
|
+
};
|
|
22105
22358
|
toolTipPlacement: {
|
|
22106
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">;
|
|
22107
22360
|
default: string;
|
|
@@ -22122,6 +22375,10 @@ declare const _default: {
|
|
|
22122
22375
|
type: import("vue").PropType<boolean>;
|
|
22123
22376
|
default: boolean;
|
|
22124
22377
|
};
|
|
22378
|
+
isMulti: {
|
|
22379
|
+
type: import("vue").PropType<boolean>;
|
|
22380
|
+
default: boolean;
|
|
22381
|
+
};
|
|
22125
22382
|
selectedProp: {
|
|
22126
22383
|
type: import("vue").PropType<boolean>;
|
|
22127
22384
|
};
|
|
@@ -22145,11 +22402,13 @@ declare const _default: {
|
|
|
22145
22402
|
iconKey: string;
|
|
22146
22403
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22147
22404
|
endIconKey: string;
|
|
22405
|
+
endTextIconKey: string;
|
|
22148
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";
|
|
22149
22407
|
treeMainOption: boolean;
|
|
22150
22408
|
treeMainOptionExpanded: boolean;
|
|
22151
22409
|
stopOptionClickEventPropagation: boolean;
|
|
22152
22410
|
treeChildShown: boolean;
|
|
22411
|
+
isMulti: boolean;
|
|
22153
22412
|
}, {}, string> & {
|
|
22154
22413
|
beforeCreate?: (() => void) | (() => void)[];
|
|
22155
22414
|
created?: (() => void) | (() => void)[];
|
|
@@ -22231,6 +22490,10 @@ declare const _default: {
|
|
|
22231
22490
|
type: import("vue").PropType<string>;
|
|
22232
22491
|
default: any;
|
|
22233
22492
|
};
|
|
22493
|
+
endTextIconKey: {
|
|
22494
|
+
type: import("vue").PropType<string>;
|
|
22495
|
+
default: any;
|
|
22496
|
+
};
|
|
22234
22497
|
toolTipPlacement: {
|
|
22235
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">;
|
|
22236
22499
|
default: string;
|
|
@@ -22251,6 +22514,10 @@ declare const _default: {
|
|
|
22251
22514
|
type: import("vue").PropType<boolean>;
|
|
22252
22515
|
default: boolean;
|
|
22253
22516
|
};
|
|
22517
|
+
isMulti: {
|
|
22518
|
+
type: import("vue").PropType<boolean>;
|
|
22519
|
+
default: boolean;
|
|
22520
|
+
};
|
|
22254
22521
|
selectedProp: {
|
|
22255
22522
|
type: import("vue").PropType<boolean>;
|
|
22256
22523
|
};
|
|
@@ -22321,6 +22588,10 @@ declare const _default: {
|
|
|
22321
22588
|
type: import("vue").PropType<string>;
|
|
22322
22589
|
default: any;
|
|
22323
22590
|
};
|
|
22591
|
+
endTextIconKey: {
|
|
22592
|
+
type: import("vue").PropType<string>;
|
|
22593
|
+
default: any;
|
|
22594
|
+
};
|
|
22324
22595
|
toolTipPlacement: {
|
|
22325
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">;
|
|
22326
22597
|
default: string;
|
|
@@ -22341,6 +22612,10 @@ declare const _default: {
|
|
|
22341
22612
|
type: import("vue").PropType<boolean>;
|
|
22342
22613
|
default: boolean;
|
|
22343
22614
|
};
|
|
22615
|
+
isMulti: {
|
|
22616
|
+
type: import("vue").PropType<boolean>;
|
|
22617
|
+
default: boolean;
|
|
22618
|
+
};
|
|
22344
22619
|
selectedProp: {
|
|
22345
22620
|
type: import("vue").PropType<boolean>;
|
|
22346
22621
|
};
|
|
@@ -22364,11 +22639,13 @@ declare const _default: {
|
|
|
22364
22639
|
iconKey: string;
|
|
22365
22640
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22366
22641
|
endIconKey: string;
|
|
22642
|
+
endTextIconKey: string;
|
|
22367
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";
|
|
22368
22644
|
treeMainOption: boolean;
|
|
22369
22645
|
treeMainOptionExpanded: boolean;
|
|
22370
22646
|
stopOptionClickEventPropagation: boolean;
|
|
22371
22647
|
treeChildShown: boolean;
|
|
22648
|
+
isMulti: boolean;
|
|
22372
22649
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
22373
22650
|
$slots: {
|
|
22374
22651
|
image?(_: {}): any;
|
|
@@ -22387,6 +22664,7 @@ declare const _default: {
|
|
|
22387
22664
|
disabled: boolean;
|
|
22388
22665
|
size: "small" | "medium" | "large";
|
|
22389
22666
|
selected: unknown[];
|
|
22667
|
+
valueToCopy: string;
|
|
22390
22668
|
placeholder: string;
|
|
22391
22669
|
inlineSearchPlaceholder: string;
|
|
22392
22670
|
optionNameKey: string;
|
|
@@ -22395,8 +22673,8 @@ declare const _default: {
|
|
|
22395
22673
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22396
22674
|
optionEndIconKey: string;
|
|
22397
22675
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22398
|
-
valueToCopy: string;
|
|
22399
22676
|
disabledOptionKey: string;
|
|
22677
|
+
optionEndTextIconKey: string;
|
|
22400
22678
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
22401
22679
|
testId: {
|
|
22402
22680
|
type: import("vue").PropType<string>;
|
|
@@ -22417,6 +22695,10 @@ declare const _default: {
|
|
|
22417
22695
|
type: import("vue").PropType<unknown[]>;
|
|
22418
22696
|
default: any;
|
|
22419
22697
|
};
|
|
22698
|
+
valueToCopy: {
|
|
22699
|
+
type: import("vue").PropType<string>;
|
|
22700
|
+
default: any;
|
|
22701
|
+
};
|
|
22420
22702
|
options: {
|
|
22421
22703
|
type: import("vue").PropType<unknown[]>;
|
|
22422
22704
|
required: true;
|
|
@@ -22457,14 +22739,14 @@ declare const _default: {
|
|
|
22457
22739
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22458
22740
|
default: any;
|
|
22459
22741
|
};
|
|
22460
|
-
valueToCopy: {
|
|
22461
|
-
type: import("vue").PropType<string>;
|
|
22462
|
-
default: any;
|
|
22463
|
-
};
|
|
22464
22742
|
disabledOptionKey: {
|
|
22465
22743
|
type: import("vue").PropType<string>;
|
|
22466
22744
|
default: string;
|
|
22467
22745
|
};
|
|
22746
|
+
optionEndTextIconKey: {
|
|
22747
|
+
type: import("vue").PropType<string>;
|
|
22748
|
+
default: any;
|
|
22749
|
+
};
|
|
22468
22750
|
optionChildrenKey: {
|
|
22469
22751
|
type: import("vue").PropType<string>;
|
|
22470
22752
|
required: true;
|
|
@@ -22480,7 +22762,7 @@ declare const _default: {
|
|
|
22480
22762
|
}>> & {
|
|
22481
22763
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
22482
22764
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
22483
|
-
} & 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">;
|
|
22484
22766
|
$attrs: {
|
|
22485
22767
|
[x: string]: unknown;
|
|
22486
22768
|
};
|
|
@@ -22514,6 +22796,10 @@ declare const _default: {
|
|
|
22514
22796
|
type: import("vue").PropType<unknown[]>;
|
|
22515
22797
|
default: any;
|
|
22516
22798
|
};
|
|
22799
|
+
valueToCopy: {
|
|
22800
|
+
type: import("vue").PropType<string>;
|
|
22801
|
+
default: any;
|
|
22802
|
+
};
|
|
22517
22803
|
options: {
|
|
22518
22804
|
type: import("vue").PropType<unknown[]>;
|
|
22519
22805
|
required: true;
|
|
@@ -22554,14 +22840,14 @@ declare const _default: {
|
|
|
22554
22840
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22555
22841
|
default: any;
|
|
22556
22842
|
};
|
|
22557
|
-
valueToCopy: {
|
|
22558
|
-
type: import("vue").PropType<string>;
|
|
22559
|
-
default: any;
|
|
22560
|
-
};
|
|
22561
22843
|
disabledOptionKey: {
|
|
22562
22844
|
type: import("vue").PropType<string>;
|
|
22563
22845
|
default: string;
|
|
22564
22846
|
};
|
|
22847
|
+
optionEndTextIconKey: {
|
|
22848
|
+
type: import("vue").PropType<string>;
|
|
22849
|
+
default: any;
|
|
22850
|
+
};
|
|
22565
22851
|
optionChildrenKey: {
|
|
22566
22852
|
type: import("vue").PropType<string>;
|
|
22567
22853
|
required: true;
|
|
@@ -22585,6 +22871,7 @@ declare const _default: {
|
|
|
22585
22871
|
disabled: boolean;
|
|
22586
22872
|
size: "small" | "medium" | "large";
|
|
22587
22873
|
selected: unknown[];
|
|
22874
|
+
valueToCopy: string;
|
|
22588
22875
|
placeholder: string;
|
|
22589
22876
|
inlineSearchPlaceholder: string;
|
|
22590
22877
|
optionNameKey: string;
|
|
@@ -22593,8 +22880,8 @@ declare const _default: {
|
|
|
22593
22880
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22594
22881
|
optionEndIconKey: string;
|
|
22595
22882
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22596
|
-
valueToCopy: string;
|
|
22597
22883
|
disabledOptionKey: string;
|
|
22884
|
+
optionEndTextIconKey: string;
|
|
22598
22885
|
}, {}, string> & {
|
|
22599
22886
|
beforeCreate?: (() => void) | (() => void)[];
|
|
22600
22887
|
created?: (() => void) | (() => void)[];
|
|
@@ -22635,6 +22922,10 @@ declare const _default: {
|
|
|
22635
22922
|
type: import("vue").PropType<unknown[]>;
|
|
22636
22923
|
default: any;
|
|
22637
22924
|
};
|
|
22925
|
+
valueToCopy: {
|
|
22926
|
+
type: import("vue").PropType<string>;
|
|
22927
|
+
default: any;
|
|
22928
|
+
};
|
|
22638
22929
|
options: {
|
|
22639
22930
|
type: import("vue").PropType<unknown[]>;
|
|
22640
22931
|
required: true;
|
|
@@ -22675,14 +22966,14 @@ declare const _default: {
|
|
|
22675
22966
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22676
22967
|
default: any;
|
|
22677
22968
|
};
|
|
22678
|
-
valueToCopy: {
|
|
22679
|
-
type: import("vue").PropType<string>;
|
|
22680
|
-
default: any;
|
|
22681
|
-
};
|
|
22682
22969
|
disabledOptionKey: {
|
|
22683
22970
|
type: import("vue").PropType<string>;
|
|
22684
22971
|
default: string;
|
|
22685
22972
|
};
|
|
22973
|
+
optionEndTextIconKey: {
|
|
22974
|
+
type: import("vue").PropType<string>;
|
|
22975
|
+
default: any;
|
|
22976
|
+
};
|
|
22686
22977
|
optionChildrenKey: {
|
|
22687
22978
|
type: import("vue").PropType<string>;
|
|
22688
22979
|
required: true;
|
|
@@ -22722,6 +23013,10 @@ declare const _default: {
|
|
|
22722
23013
|
type: import("vue").PropType<unknown[]>;
|
|
22723
23014
|
default: any;
|
|
22724
23015
|
};
|
|
23016
|
+
valueToCopy: {
|
|
23017
|
+
type: import("vue").PropType<string>;
|
|
23018
|
+
default: any;
|
|
23019
|
+
};
|
|
22725
23020
|
options: {
|
|
22726
23021
|
type: import("vue").PropType<unknown[]>;
|
|
22727
23022
|
required: true;
|
|
@@ -22762,14 +23057,14 @@ declare const _default: {
|
|
|
22762
23057
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
22763
23058
|
default: any;
|
|
22764
23059
|
};
|
|
22765
|
-
valueToCopy: {
|
|
22766
|
-
type: import("vue").PropType<string>;
|
|
22767
|
-
default: any;
|
|
22768
|
-
};
|
|
22769
23060
|
disabledOptionKey: {
|
|
22770
23061
|
type: import("vue").PropType<string>;
|
|
22771
23062
|
default: string;
|
|
22772
23063
|
};
|
|
23064
|
+
optionEndTextIconKey: {
|
|
23065
|
+
type: import("vue").PropType<string>;
|
|
23066
|
+
default: any;
|
|
23067
|
+
};
|
|
22773
23068
|
optionChildrenKey: {
|
|
22774
23069
|
type: import("vue").PropType<string>;
|
|
22775
23070
|
required: true;
|
|
@@ -22793,6 +23088,7 @@ declare const _default: {
|
|
|
22793
23088
|
disabled: boolean;
|
|
22794
23089
|
size: "small" | "medium" | "large";
|
|
22795
23090
|
selected: unknown[];
|
|
23091
|
+
valueToCopy: string;
|
|
22796
23092
|
placeholder: string;
|
|
22797
23093
|
inlineSearchPlaceholder: string;
|
|
22798
23094
|
optionNameKey: string;
|
|
@@ -22801,13 +23097,130 @@ declare const _default: {
|
|
|
22801
23097
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22802
23098
|
optionEndIconKey: string;
|
|
22803
23099
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22804
|
-
valueToCopy: string;
|
|
22805
23100
|
disabledOptionKey: string;
|
|
23101
|
+
optionEndTextIconKey: string;
|
|
22806
23102
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
22807
23103
|
$slots: {
|
|
22808
23104
|
"trigger-end-icon"?(_: {}): any;
|
|
22809
23105
|
};
|
|
22810
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
|
+
}>;
|
|
22811
23224
|
Label: {
|
|
22812
23225
|
new (...args: any[]): {
|
|
22813
23226
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -23546,7 +23959,9 @@ declare const _default: {
|
|
|
23546
23959
|
};
|
|
23547
23960
|
}>> & {
|
|
23548
23961
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23549
|
-
}, {
|
|
23962
|
+
}, {
|
|
23963
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
23964
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23550
23965
|
"update:modelValue": (...args: any[]) => void;
|
|
23551
23966
|
}, string, {
|
|
23552
23967
|
testId: string;
|
|
@@ -23598,7 +24013,9 @@ declare const _default: {
|
|
|
23598
24013
|
};
|
|
23599
24014
|
}>> & {
|
|
23600
24015
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23601
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
24016
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
24017
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24018
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23602
24019
|
__isFragment?: never;
|
|
23603
24020
|
__isTeleport?: never;
|
|
23604
24021
|
__isSuspense?: never;
|
|
@@ -23630,7 +24047,9 @@ declare const _default: {
|
|
|
23630
24047
|
};
|
|
23631
24048
|
}>> & {
|
|
23632
24049
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23633
|
-
}, {
|
|
24050
|
+
}, {
|
|
24051
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24052
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23634
24053
|
"update:modelValue": (...args: any[]) => void;
|
|
23635
24054
|
}, string, {
|
|
23636
24055
|
testId: string;
|
|
@@ -24011,7 +24430,9 @@ declare const _default: {
|
|
|
24011
24430
|
};
|
|
24012
24431
|
}>> & {
|
|
24013
24432
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
24014
|
-
}, {
|
|
24433
|
+
}, {
|
|
24434
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24435
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24015
24436
|
"update:modelValue": (...args: any[]) => void;
|
|
24016
24437
|
}, string, {
|
|
24017
24438
|
testId: string;
|
|
@@ -24063,7 +24484,9 @@ declare const _default: {
|
|
|
24063
24484
|
};
|
|
24064
24485
|
}>> & {
|
|
24065
24486
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
24066
|
-
} & import("vue").ShallowUnwrapRef<{
|
|
24487
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
24488
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24489
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
24067
24490
|
__isFragment?: never;
|
|
24068
24491
|
__isTeleport?: never;
|
|
24069
24492
|
__isSuspense?: never;
|
|
@@ -24095,7 +24518,9 @@ declare const _default: {
|
|
|
24095
24518
|
};
|
|
24096
24519
|
}>> & {
|
|
24097
24520
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
24098
|
-
}, {
|
|
24521
|
+
}, {
|
|
24522
|
+
toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
|
|
24523
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24099
24524
|
"update:modelValue": (...args: any[]) => void;
|
|
24100
24525
|
}, string, {
|
|
24101
24526
|
testId: string;
|