@ironsource/shared-ui 2.1.6-test.8 → 2.1.6
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/Alert.vue_vue_type_style_index_0_scoped_06e0871a_lang.css +1 -0
- package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_858cefbf_lang.css +1 -0
- package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_b0d3ea50_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
- package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_8e5b619a_lang.css +1 -0
- package/ChipV4.vue_vue_type_style_index_0_scoped_12c0f396_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_057abdf5_lang.css +1 -0
- package/DataGridMenu.vue_vue_type_style_index_0_scoped_a6e4672f_lang.css +1 -0
- package/DatePickerV4.vue_vue_type_style_index_0_scoped_39e6c10c_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_f81413ec_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +1 -0
- package/FoldableSection.vue_vue_type_style_index_0_scoped_1a5f0e2e_lang.css +1 -0
- package/FormCard.vue_vue_type_style_index_0_scoped_c7965a69_lang.css +1 -0
- package/HelpIcon.vue_vue_type_style_index_0_scoped_06fce2e3_lang.css +1 -0
- package/IconFlag.vue_vue_type_style_index_0_scoped_7b09cc85_lang.css +1 -0
- package/IconV4.vue_vue_type_style_index_0_scoped_1eea7671_lang.css +1 -0
- package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +1 -0
- package/README.md +35 -0
- package/SearchV4.vue_vue_type_style_index_0_scoped_d6c42f4b_lang.css +1 -0
- package/SkeletonV4.vue_vue_type_style_index_0_scoped_93ae1260_lang.css +1 -0
- package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
- package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +1 -0
- package/SwitchV4.vue_vue_type_style_index_0_scoped_c2e356f5_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_b62ee695_lang.css +1 -0
- package/ToggleV4.vue_vue_type_style_index_0_scoped_a4aa32fb_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.d.ts +2 -2
- package/components/ThemeWrapper/index.d.ts +0 -4
- package/components/alert/Alert.vue.d.ts +28 -0
- package/components/alert/index.d.ts +104 -2
- package/components/autocomplete/Autocomplete.vue.d.ts +1 -0
- package/components/autocomplete/index.d.ts +1 -0
- package/components/button/v4/ButtonV4.vue.d.ts +7 -7
- package/components/button/v4/IconButtonV4.vue.d.ts +4 -4
- package/components/button/v4/index.d.ts +61 -61
- package/components/chart/Chart.vue.d.ts +111 -0
- package/components/chart/ChartHeader.vue.d.ts +44 -0
- package/components/chart/ChartLegend.vue.d.ts +49 -0
- package/components/chart/ChartLoader.vue.d.ts +2 -0
- package/components/chart/ChartTooltip.vue.d.ts +56 -0
- package/components/chart/composables/useChartValues.d.ts +12 -0
- package/components/chart/composables/useTooltipPosition.d.ts +8 -0
- package/components/chart/consts.d.ts +12 -0
- package/components/chart/index.d.ts +161 -0
- package/components/chart/mockData.d.ts +24 -0
- package/components/chart/plugins/HoverVerticalLine.d.ts +4 -0
- package/components/chart/types.d.ts +39 -0
- package/components/chart/utils/formatNumber.d.ts +2 -0
- package/components/chart/utils/utils.d.ts +3 -0
- package/components/checkbox/v4/CheckboxV4.vue.d.ts +5 -0
- package/components/checkbox/v4/icons/CheckedDisabledState.vue.d.ts +28 -1
- package/components/checkbox/v4/icons/CheckedState.vue.d.ts +28 -1
- package/components/checkbox/v4/icons/IndeterminateState.vue.d.ts +28 -1
- package/components/checkbox/v4/index.d.ts +20 -1
- package/components/chip/v4/Chip.types.d.ts +6 -0
- package/components/chip/v4/ChipV4.vue.d.ts +28 -35
- package/components/chip/v4/index.d.ts +45 -148
- package/components/datePicker/v3/index.d.ts +2 -2
- package/components/datePicker/v4/index.d.ts +2 -2
- package/components/dateRange/common/DateServices.common.d.ts +1 -0
- package/components/dateRange/v3/DateRange.vue.d.ts +9 -9
- package/components/dateRange/v3/DateRangePicker.vue.d.ts +9 -9
- package/components/dateRange/v3/index.d.ts +21 -21
- package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +9 -9
- package/components/dateRange/v4/DateRangeV4.vue.d.ts +9 -9
- package/components/dateRange/v4/index.d.ts +21 -21
- package/components/dialog/v3/Dialog.vue.d.ts +1 -1
- package/components/dialog/v3/index.d.ts +20 -20
- package/components/dropdown/common/Option.common.d.ts +1 -1
- package/components/dropdown/composables/useChildOptions.d.ts +7 -0
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +14 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +8 -3
- package/components/dropdown/v4/DropdownV4.vue.d.ts +22 -6
- package/components/dropdown/v4/OptionV4.vue.d.ts +6 -6
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +112 -0
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +1 -1
- package/components/dropdown/v4/index.d.ts +332 -49
- package/components/emptyState/v3/EmptyState.vue.d.ts +2 -2
- package/components/emptyState/v3/index.d.ts +47 -47
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/floatingToolbar/FloatingToolbar.vue.d.ts +1 -1
- package/components/floatingToolbar/index.d.ts +20 -20
- package/components/forms/FormCard.vue.d.ts +5 -0
- package/components/forms/index.d.ts +20 -1
- package/components/icon/v4/Icon.types.d.ts +1 -1
- package/components/icon/v4/IconFlag.vue.d.ts +29 -0
- package/components/icon/v4/IconV4.vue.d.ts +16 -6
- package/components/icon/v4/consts.d.ts +1 -0
- package/components/icon/v4/index.d.ts +70 -16
- package/components/includeExclude/includeExcludeMocks.d.ts +0 -1
- package/components/loader/v4/Loader.vue.d.ts +1 -1
- package/components/loader/v4/index.d.ts +20 -20
- package/components/search/v4/SearchV4.vue.d.ts +2 -2
- package/components/search/v4/index.d.ts +0 -2
- package/components/snackbar/v4/SnackbarV4.vue.d.ts +20 -20
- package/components/sortableList/SortableItem.vue.d.ts +76 -0
- package/components/sortableList/SortableItemLabel.vue.d.ts +26 -0
- package/components/sortableList/SortableList.types.d.ts +28 -0
- package/components/sortableList/SortableList.vue.d.ts +98 -0
- package/components/sortableList/composables/useHoverEffect.d.ts +5 -0
- package/components/sortableList/consts.d.ts +1 -0
- package/components/sortableList/index.d.ts +298 -0
- package/components/sortableList/mocks.d.ts +14 -0
- package/components/switch/v4/SwitchV4.vue.d.ts +10 -20
- package/components/switch/v4/index.d.ts +27 -124
- package/components/table/common/Table.common.d.ts +1 -0
- package/components/table/common/Table.types.d.ts +7 -0
- package/components/table/v4/DataGrid.vue.d.ts +8 -4
- package/components/table/v4/DataGridMenu.vue.d.ts +6 -0
- package/components/table/v4/MultipleDataGrid.vue.d.ts +137 -0
- package/components/table/v4/index.d.ts +495 -36
- package/components/toggle/v3/Toggle.vue.d.ts +1 -1
- package/components/toggle/v3/index.d.ts +9 -9
- package/components/toggle/v4/ToggleV4.vue.d.ts +2 -2
- package/components/toggle/v4/index.d.ts +39 -39
- package/design-foundation.stories/icons/iconsData.d.ts +5 -1
- package/index.d.ts +10685 -8878
- package/mocks/apps.d.ts +1 -0
- package/mocks/options.d.ts +14 -0
- package/package.json +15 -5
- 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 +109 -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 +122 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +120 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -0
- package/src/components/autocompleteDropdown/AutocompleteInput.vue2.js +79 -0
- package/src/components/autocompleteDropdown/GroupOption.vue.js +7 -0
- package/src/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
- package/src/components/banner/Banner.vue.js +7 -0
- package/src/components/banner/Banner.vue2.js +58 -0
- package/src/components/button/v3/Button.vue.js +7 -0
- package/src/components/button/v3/Button.vue2.js +59 -0
- package/src/components/button/v3/ButtonBase.vue.js +7 -0
- package/src/components/button/v3/ButtonBase.vue2.js +54 -0
- package/src/components/button/v3/IconButton.vue.js +7 -0
- package/src/components/button/v3/IconButton.vue2.js +45 -0
- package/src/components/button/v3/LoaderCircleIcon.vue.js +33 -0
- package/src/components/button/v3/LoaderDotsIcon.vue.js +16 -0
- package/src/components/button/v3/ScrollButton.vue.js +7 -0
- package/src/components/button/v3/ScrollButton.vue2.js +45 -0
- package/src/components/button/v4/ButtonV4.vue.js +7 -0
- package/src/components/button/v4/ButtonV4.vue2.js +91 -0
- package/src/components/button/v4/IconButtonV4.vue.js +7 -0
- package/src/components/button/v4/IconButtonV4.vue2.js +36 -0
- package/src/components/chart/Chart.vue.js +7 -0
- package/src/components/chart/Chart.vue2.js +281 -0
- package/src/components/chart/ChartHeader.vue.js +7 -0
- package/src/components/chart/ChartHeader.vue2.js +51 -0
- package/src/components/chart/ChartLegend.vue.js +7 -0
- package/src/components/chart/ChartLegend.vue2.js +65 -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/composables/useChartValues.js +32 -0
- package/src/components/chart/composables/useTooltipPosition.js +22 -0
- package/src/components/chart/consts.js +21 -0
- package/src/components/chart/index.js +6 -0
- package/src/components/chart/plugins/HoverVerticalLine.js +12 -0
- package/src/components/chart/types.js +4 -0
- package/src/components/chart/utils/formatNumber.js +11 -0
- package/src/components/chart/utils/utils.js +12 -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/CheckedDisabledState.vue.js +45 -0
- package/src/components/checkbox/v4/icons/CheckedDisabledState.vue2.js +4 -0
- package/src/components/checkbox/v4/icons/CheckedState.vue.js +42 -0
- package/src/components/checkbox/v4/icons/CheckedState.vue2.js +4 -0
- package/src/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
- package/src/components/checkbox/v4/icons/IndeterminateState.vue.js +44 -0
- package/src/components/checkbox/v4/icons/IndeterminateState.vue2.js +4 -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 +36 -0
- package/src/components/cssBaseline/CssBaseline.vue.js +10 -0
- package/src/components/datePicker/common/DatePicker.common.js +52 -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 +74 -0
- package/src/components/dateRange/common/DateServices.common.js +248 -0
- package/src/components/dateRange/common/consts.common.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 +132 -0
- package/src/components/dateRange/v4/DateRangeV4.vue.js +7 -0
- package/src/components/dateRange/v4/DateRangeV4.vue2.js +263 -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 +155 -0
- package/src/components/dropdown/common/Dropdown.common.js +339 -0
- package/src/components/dropdown/common/Option.common.js +24 -0
- package/src/components/dropdown/composables/useChildOptions.js +14 -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 +36 -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 +74 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +117 -0
- package/src/components/dropdown/v4/DropdownV4.vue.js +8 -0
- package/src/components/dropdown/v4/DropdownV4.vue2.js +421 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +7 -0
- package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +19 -0
- package/src/components/dropdown/v4/OptionV4.vue.js +7 -0
- package/src/components/dropdown/v4/OptionV4.vue2.js +148 -0
- package/src/components/dropdown/v4/TreeDropdown.vue.js +7 -0
- package/src/components/dropdown/v4/TreeDropdown.vue2.js +122 -0
- package/src/components/dropdown/v4/index.js +32 -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 +81 -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 +101 -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 +68 -0
- package/src/components/icon/v4/consts.js +4 -0
- package/src/components/icon/v4/index.js +9 -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 +72 -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 +216 -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 +103 -0
- package/src/components/multibar/MultiBarMenu.vue.js +7 -0
- package/src/components/multibar/MultiBarMenu.vue2.js +60 -0
- package/src/components/popover/Popover.vue.js +8 -0
- package/src/components/popover/Popover.vue2.js +38 -0
- package/src/components/radioButton/v3/RadioButton.vue.js +7 -0
- package/src/components/radioButton/v3/RadioButton.vue2.js +79 -0
- package/src/components/radioButton/v3/RadioGroup.vue.js +7 -0
- package/src/components/radioButton/v3/RadioGroup.vue2.js +29 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
- package/src/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
- package/src/components/search/v3/Search.vue.js +7 -0
- package/src/components/search/v3/Search.vue2.js +62 -0
- package/src/components/search/v4/SearchV4.vue.js +7 -0
- package/src/components/search/v4/SearchV4.vue2.js +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 +139 -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 +120 -0
- package/src/components/sortableList/composables/useHoverEffect.js +19 -0
- package/src/components/sortableList/consts.js +4 -0
- package/src/components/sortableList/index.js +6 -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 +42 -0
- package/src/components/table/common/Table.common.js +122 -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 +338 -0
- package/src/components/table/v4/DataGridMenu.vue.js +7 -0
- package/src/components/table/v4/DataGridMenu.vue2.js +65 -0
- package/src/components/table/v4/DataGridRowsCounter.vue.js +7 -0
- package/src/components/table/v4/DataGridRowsCounter.vue2.js +45 -0
- package/src/components/table/v4/ExpandRowToggle.vue.js +7 -0
- package/src/components/table/v4/ExpandRowToggle.vue2.js +24 -0
- package/src/components/table/v4/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 +123 -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/v4/index.js +17 -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 +55 -0
- package/src/components/tabs/v3/Tabs.vue.js +7 -0
- package/src/components/tabs/v3/Tabs.vue2.js +85 -0
- package/src/components/tabs/v4/TabsV4.vue.js +7 -0
- package/src/components/tabs/v4/TabsV4.vue2.js +75 -0
- package/src/components/textArea/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 +74 -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 +58 -0
- package/src/composables/useFormValidation.js +50 -0
- package/src/index.js +215 -0
- package/src/testids/index.js +35 -0
- package/src/utils/color.js +14 -0
- package/src/utils/search.js +4 -0
- package/src/utils/text.js +9 -0
- package/testids/index.d.ts +5 -0
- package/utils/color.d.ts +2 -0
- package/utils/search.d.ts +1 -0
- package/utils/text.d.ts +1 -0
- package/Alert.vue_vue_type_style_index_0_scoped_d6680a72_lang.css +0 -1
- package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_39c47ad1_lang.css +0 -1
- package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_a80364bd_lang.css +0 -1
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_d25514d1_lang.css +0 -1
- package/ChipV4.vue_vue_type_style_index_0_scoped_78d7c9c0_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_6df3b70f_lang.css +0 -1
- package/DataGridMenu.vue_vue_type_style_index_0_scoped_13f1ce76_lang.css +0 -1
- package/DatePickerV4.vue_vue_type_style_index_0_scoped_a5757773_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_590bb1db_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_ad524750_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_0363db63_lang.css +0 -1
- package/FoldableSection.vue_vue_type_style_index_0_scoped_8d0fd203_lang.css +0 -1
- package/FormCard.vue_vue_type_style_index_0_scoped_52ade67c_lang.css +0 -1
- package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +0 -1
- package/IconV4.vue_vue_type_style_index_0_scoped_a78f8a3e_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_e0c24b6a_lang.css +0 -1
- package/SearchV4.vue_vue_type_style_index_0_scoped_a468fb4a_lang.css +0 -1
- package/SkeletonV4.vue_vue_type_style_index_0_scoped_2f3b3470_lang.css +0 -1
- package/SwitchV4.vue_vue_type_style_index_0_scoped_afb0d2d7_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_8199b662_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_137fabdf_lang.css +0 -1
- package/ToggleV4.vue_vue_type_style_index_0_scoped_ad231e8c_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 -87
- package/components/appHeader/AppHeader.vue.js +0 -7
- package/components/appHeader/AppHeader.vue2.js +0 -85
- 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 -121
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +0 -120
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +0 -7
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +0 -79
- package/components/autocompleteDropdown/GroupOption.vue.js +0 -7
- package/components/autocompleteDropdown/GroupOption.vue2.js +0 -35
- package/components/banner/Banner.vue.js +0 -7
- package/components/banner/Banner.vue2.js +0 -58
- package/components/button/v3/Button.vue.js +0 -7
- package/components/button/v3/Button.vue2.js +0 -59
- package/components/button/v3/ButtonBase.vue.js +0 -7
- package/components/button/v3/ButtonBase.vue2.js +0 -54
- package/components/button/v3/IconButton.vue.js +0 -7
- package/components/button/v3/IconButton.vue2.js +0 -45
- package/components/button/v3/LoaderCircleIcon.vue.js +0 -33
- package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
- package/components/button/v3/LoaderDotsIcon.vue.js +0 -16
- package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
- package/components/button/v3/ScrollButton.vue.js +0 -7
- package/components/button/v3/ScrollButton.vue2.js +0 -45
- package/components/button/v4/ButtonV4.vue.js +0 -7
- package/components/button/v4/ButtonV4.vue2.js +0 -90
- package/components/button/v4/IconButtonV4.vue.js +0 -7
- package/components/button/v4/IconButtonV4.vue2.js +0 -35
- package/components/checkbox/v3/Checkbox.vue.js +0 -7
- package/components/checkbox/v3/Checkbox.vue2.js +0 -99
- package/components/checkbox/v3/icons/checked.vue.js +0 -27
- package/components/checkbox/v3/icons/indeterminate.vue.js +0 -28
- package/components/checkbox/v3/icons/unchecked.vue.js +0 -24
- package/components/checkbox/v4/CheckboxV4.vue.js +0 -7
- package/components/checkbox/v4/CheckboxV4.vue2.js +0 -107
- package/components/checkbox/v4/icons/CheckedDisabledState.vue.js +0 -38
- package/components/checkbox/v4/icons/CheckedState.vue.js +0 -38
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +0 -40
- package/components/checkbox/v4/icons/IndeterminateState.vue.js +0 -40
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +0 -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 -67
- package/components/cssBaseline/CssBaseline.vue.js +0 -10
- package/components/cssBaseline/CssBaseline.vue2.js +0 -0
- package/components/datePicker/common/DatePicker.common.js +0 -52
- 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 -73
- package/components/dateRange/common/DateServices.common.js +0 -245
- package/components/dateRange/common/consts.common.js +0 -75
- 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 -133
- package/components/dateRange/v4/DateRangeV4.vue.js +0 -7
- package/components/dateRange/v4/DateRangeV4.vue2.js +0 -251
- 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 -155
- package/components/dropdown/common/Dropdown.common.js +0 -334
- package/components/dropdown/common/Option.common.js +0 -24
- 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 -143
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +0 -36
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +0 -50
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +0 -73
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +0 -115
- package/components/dropdown/v4/DropdownV4.vue.js +0 -8
- package/components/dropdown/v4/DropdownV4.vue2.js +0 -413
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +0 -7
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +0 -19
- package/components/dropdown/v4/OptionV4.vue.js +0 -7
- package/components/dropdown/v4/OptionV4.vue2.js +0 -141
- package/components/dropdown/v4/index.js +0 -29
- 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 -80
- 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 -100
- 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/IconV4.vue.js +0 -7
- package/components/icon/v4/IconV4.vue2.js +0 -64
- package/components/icon/v4/index.js +0 -6
- 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 -71
- 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 -215
- package/components/layout/FoldableSection.vue.js +0 -7
- package/components/layout/FoldableSection.vue2.js +0 -60
- 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 -103
- package/components/multibar/MultiBarMenu.vue.js +0 -7
- package/components/multibar/MultiBarMenu.vue2.js +0 -58
- package/components/popover/Popover.vue.js +0 -8
- package/components/popover/Popover.vue2.js +0 -38
- package/components/radioButton/v3/RadioButton.vue.js +0 -7
- package/components/radioButton/v3/RadioButton.vue2.js +0 -79
- package/components/radioButton/v3/RadioGroup.vue.js +0 -7
- package/components/radioButton/v3/RadioGroup.vue2.js +0 -29
- package/components/radioButton/v4/RadioButtonV4.vue.js +0 -7
- package/components/radioButton/v4/RadioButtonV4.vue2.js +0 -67
- package/components/radioButton/v4/RadioGroupV4.vue.js +0 -7
- package/components/radioButton/v4/RadioGroupV4.vue2.js +0 -29
- package/components/search/v3/Search.vue.js +0 -7
- package/components/search/v3/Search.vue2.js +0 -62
- package/components/search/v4/SearchV4.vue.js +0 -7
- package/components/search/v4/SearchV4.vue2.js +0 -58
- package/components/shared/FieldHelpText.vue.js +0 -7
- package/components/shared/FieldHelpText.vue2.js +0 -43
- package/components/shared/FieldLabel.vue.js +0 -7
- package/components/shared/FieldLabel.vue2.js +0 -78
- 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 -138
- 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 -69
- package/components/table/common/Table.common.js +0 -118
- 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 -334
- package/components/table/v4/DataGridMenu.vue.js +0 -7
- package/components/table/v4/DataGridMenu.vue2.js +0 -62
- package/components/table/v4/DataGridRowsCounter.vue.js +0 -7
- package/components/table/v4/DataGridRowsCounter.vue2.js +0 -45
- package/components/table/v4/ExpandRowToggle.vue.js +0 -7
- package/components/table/v4/ExpandRowToggle.vue2.js +0 -24
- package/components/table/v4/HelpIcon.vue.js +0 -7
- package/components/table/v4/HelpIcon.vue2.js +0 -32
- package/components/table/v4/SortIcon.vue.js +0 -7
- package/components/table/v4/SortIcon.vue2.js +0 -24
- package/components/table/v4/index.js +0 -10
- 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 -54
- package/components/tabs/v3/Tabs.vue.js +0 -7
- package/components/tabs/v3/Tabs.vue2.js +0 -85
- package/components/tabs/v4/TabsV4.vue.js +0 -7
- package/components/tabs/v4/TabsV4.vue2.js +0 -75
- package/components/textArea/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 -74
- package/components/toggle/v3/Toggle.vue.js +0 -7
- package/components/toggle/v3/Toggle.vue2.js +0 -95
- package/components/toggle/v4/ToggleV4.vue.js +0 -7
- package/components/toggle/v4/ToggleV4.vue2.js +0 -95
- package/components/tooltip/v3/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v3/TextWithTitleContent.vue2.js +0 -46
- package/components/tooltip/v3/Tooltip.vue.js +0 -8
- package/components/tooltip/v3/Tooltip.vue2.js +0 -87
- package/components/tooltip/v4/TextWithTitleContent.vue.js +0 -7
- package/components/tooltip/v4/TextWithTitleContent.vue2.js +0 -36
- package/components/tooltip/v4/TooltipV4.vue.js +0 -8
- package/components/tooltip/v4/TooltipV4.vue2.js +0 -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 -58
- package/composables/useFormValidation.js +0 -44
- package/index.js +0 -209
- package/testids/index.js +0 -34
- /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}/checkbox/common/Checkbox.common.js +0 -0
- /package/{components → src/components}/checkbox/v3/index.js +0 -0
- /package/{components → src/components}/checkbox/v4/index.js +0 -0
- /package/{components → src/components}/chip/v3/index.js +0 -0
- /package/{components → src/components}/chip/v4/index.js +0 -0
- /package/{components → src/components}/cssBaseline/index.js +0 -0
- /package/{components → src/components}/datePicker/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/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/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}/includeExclude/IncludeExcludeContext.js +0 -0
- /package/{components → src/components}/includeExclude/index.js +0 -0
- /package/{components → src/components}/inlineCopy/index.js +0 -0
- /package/{components → src/components}/input/common/Input.common.js +0 -0
- /package/{components → src/components}/input/v3/index.js +0 -0
- /package/{components → src/components}/input/v4/index.js +0 -0
- /package/{components → src/components}/layout/index.js +0 -0
- /package/{components → src/components}/menu/index.js +0 -0
- /package/{components → src/components}/menuItem/index.js +0 -0
- /package/{components → src/components}/multibar/index.js +0 -0
- /package/{components → src/components}/popover/index.js +0 -0
- /package/{components → src/components}/radioButton/common/radioGroup.common.js +0 -0
- /package/{components → src/components}/radioButton/common/useRadio.js +0 -0
- /package/{components → src/components}/radioButton/v3/index.js +0 -0
- /package/{components → src/components}/radioButton/v4/index.js +0 -0
- /package/{components → src/components}/search/common/Search.common.js +0 -0
- /package/{components → src/components}/search/v3/index.js +0 -0
- /package/{components → src/components}/search/v4/index.js +0 -0
- /package/{components → src/components}/skeleton/v3/index.js +0 -0
- /package/{components → src/components}/skeleton/v4/index.js +0 -0
- /package/{components → src/components}/snackbar/common/notify.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.common.js +0 -0
- /package/{components → src/components}/snackbar/common/snackbar.types.js +0 -0
- /package/{components → src/components}/snackbar/v3/index.js +0 -0
- /package/{components → src/components}/snackbar/v4/index.js +0 -0
- /package/{components → src/components}/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/TableContext.js +0 -0
- /package/{components → src/components}/table/v3/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}/useId.js +0 -0
- /package/{composables → src/composables}/useIsFocusVisible.js +0 -0
- /package/{composables → src/composables}/useSearch.js +0 -0
- /package/{composables → src/composables}/useStorage.js +0 -0
- /package/{composables → src/composables}/useToggle.js +0 -0
- /package/{consts → src/consts}/colors.js +0 -0
- /package/{consts → src/consts}/regex.js +0 -0
- /package/{consts → src/consts}/style.js +0 -0
- /package/{utils → src/utils}/array.js +0 -0
- /package/{utils → src/utils}/object.js +0 -0
- /package/{utils → src/utils}/string.js +0 -0
- /package/{utils → src/utils}/style.js +0 -0
- /package/{utils → src/utils}/testIds.js +0 -0
|
@@ -5,6 +5,7 @@ import ChipDropdownTrigger from './ChipDropdownTrigger.vue';
|
|
|
5
5
|
import AppDropdownTrigger from './AppDropdownTrigger.vue';
|
|
6
6
|
import ButtonDropdownTrigger from './ButtonDropdownTrigger.vue';
|
|
7
7
|
import ButtonFilterDropdownTrigger from './ButtonFilterDropdownTrigger.vue';
|
|
8
|
+
import TreeDropdown from './TreeDropdown.vue';
|
|
8
9
|
import Option from './OptionV4.vue';
|
|
9
10
|
declare const DropdownTypes: () => (({
|
|
10
11
|
new (...args: any[]): {
|
|
@@ -29,10 +30,11 @@ declare const DropdownTypes: () => (({
|
|
|
29
30
|
optionNameKey: string;
|
|
30
31
|
optionIconKey: string;
|
|
31
32
|
optionImageKey: string;
|
|
32
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
33
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
33
34
|
selectedOption: any;
|
|
34
35
|
showFeedbackIcon: boolean;
|
|
35
36
|
brandIconType: "android" | "ios";
|
|
37
|
+
showAllSelectedText: boolean;
|
|
36
38
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
37
39
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
38
40
|
label: {
|
|
@@ -114,7 +116,7 @@ declare const DropdownTypes: () => (({
|
|
|
114
116
|
default: any;
|
|
115
117
|
};
|
|
116
118
|
optionIconType: {
|
|
117
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
119
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
118
120
|
default: any;
|
|
119
121
|
};
|
|
120
122
|
selectedOption: {
|
|
@@ -129,13 +131,17 @@ declare const DropdownTypes: () => (({
|
|
|
129
131
|
type: import("vue").PropType<"android" | "ios">;
|
|
130
132
|
default: any;
|
|
131
133
|
};
|
|
134
|
+
showAllSelectedText: {
|
|
135
|
+
type: import("vue").PropType<boolean>;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
132
138
|
statusDotType: {
|
|
133
139
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
134
140
|
default: any;
|
|
135
141
|
};
|
|
136
142
|
}>> & {
|
|
137
143
|
onClick?: () => any;
|
|
138
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "statusDotType">;
|
|
144
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
139
145
|
$attrs: {
|
|
140
146
|
[x: string]: unknown;
|
|
141
147
|
};
|
|
@@ -229,7 +235,7 @@ declare const DropdownTypes: () => (({
|
|
|
229
235
|
default: any;
|
|
230
236
|
};
|
|
231
237
|
optionIconType: {
|
|
232
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
238
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
233
239
|
default: any;
|
|
234
240
|
};
|
|
235
241
|
selectedOption: {
|
|
@@ -244,6 +250,10 @@ declare const DropdownTypes: () => (({
|
|
|
244
250
|
type: import("vue").PropType<"android" | "ios">;
|
|
245
251
|
default: any;
|
|
246
252
|
};
|
|
253
|
+
showAllSelectedText: {
|
|
254
|
+
type: import("vue").PropType<boolean>;
|
|
255
|
+
default: boolean;
|
|
256
|
+
};
|
|
247
257
|
statusDotType: {
|
|
248
258
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
249
259
|
default: any;
|
|
@@ -271,10 +281,11 @@ declare const DropdownTypes: () => (({
|
|
|
271
281
|
optionNameKey: string;
|
|
272
282
|
optionIconKey: string;
|
|
273
283
|
optionImageKey: string;
|
|
274
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
284
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
275
285
|
selectedOption: any;
|
|
276
286
|
showFeedbackIcon: boolean;
|
|
277
287
|
brandIconType: "android" | "ios";
|
|
288
|
+
showAllSelectedText: boolean;
|
|
278
289
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
279
290
|
}, {}, string> & {
|
|
280
291
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -376,7 +387,7 @@ declare const DropdownTypes: () => (({
|
|
|
376
387
|
default: any;
|
|
377
388
|
};
|
|
378
389
|
optionIconType: {
|
|
379
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
390
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
380
391
|
default: any;
|
|
381
392
|
};
|
|
382
393
|
selectedOption: {
|
|
@@ -391,6 +402,10 @@ declare const DropdownTypes: () => (({
|
|
|
391
402
|
type: import("vue").PropType<"android" | "ios">;
|
|
392
403
|
default: any;
|
|
393
404
|
};
|
|
405
|
+
showAllSelectedText: {
|
|
406
|
+
type: import("vue").PropType<boolean>;
|
|
407
|
+
default: boolean;
|
|
408
|
+
};
|
|
394
409
|
statusDotType: {
|
|
395
410
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
396
411
|
default: any;
|
|
@@ -481,7 +496,7 @@ declare const DropdownTypes: () => (({
|
|
|
481
496
|
default: any;
|
|
482
497
|
};
|
|
483
498
|
optionIconType: {
|
|
484
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
499
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
485
500
|
default: any;
|
|
486
501
|
};
|
|
487
502
|
selectedOption: {
|
|
@@ -496,6 +511,10 @@ declare const DropdownTypes: () => (({
|
|
|
496
511
|
type: import("vue").PropType<"android" | "ios">;
|
|
497
512
|
default: any;
|
|
498
513
|
};
|
|
514
|
+
showAllSelectedText: {
|
|
515
|
+
type: import("vue").PropType<boolean>;
|
|
516
|
+
default: boolean;
|
|
517
|
+
};
|
|
499
518
|
statusDotType: {
|
|
500
519
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
501
520
|
default: any;
|
|
@@ -523,10 +542,11 @@ declare const DropdownTypes: () => (({
|
|
|
523
542
|
optionNameKey: string;
|
|
524
543
|
optionIconKey: string;
|
|
525
544
|
optionImageKey: string;
|
|
526
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
545
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
527
546
|
selectedOption: any;
|
|
528
547
|
showFeedbackIcon: boolean;
|
|
529
548
|
brandIconType: "android" | "ios";
|
|
549
|
+
showAllSelectedText: boolean;
|
|
530
550
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
531
551
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
532
552
|
$slots: {
|
|
@@ -552,7 +572,9 @@ declare const DropdownTypes: () => (({
|
|
|
552
572
|
optionNameKey: string;
|
|
553
573
|
optionIconKey: string;
|
|
554
574
|
optionImageKey: string;
|
|
555
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
575
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
576
|
+
optionEndIconKey: string;
|
|
577
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
556
578
|
valueToCopy: string;
|
|
557
579
|
selectedOption: any;
|
|
558
580
|
brandIconType: "android" | "ios";
|
|
@@ -620,7 +642,15 @@ declare const DropdownTypes: () => (({
|
|
|
620
642
|
default: any;
|
|
621
643
|
};
|
|
622
644
|
optionIconType: {
|
|
623
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
645
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
646
|
+
default: any;
|
|
647
|
+
};
|
|
648
|
+
optionEndIconKey: {
|
|
649
|
+
type: import("vue").PropType<string>;
|
|
650
|
+
default: any;
|
|
651
|
+
};
|
|
652
|
+
optionEndIconType: {
|
|
653
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
624
654
|
default: any;
|
|
625
655
|
};
|
|
626
656
|
valueToCopy: {
|
|
@@ -638,7 +668,7 @@ declare const DropdownTypes: () => (({
|
|
|
638
668
|
}>> & {
|
|
639
669
|
onClick?: () => any;
|
|
640
670
|
onCopyToClipboard?: () => any;
|
|
641
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
|
|
671
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
|
|
642
672
|
$attrs: {
|
|
643
673
|
[x: string]: unknown;
|
|
644
674
|
};
|
|
@@ -716,7 +746,15 @@ declare const DropdownTypes: () => (({
|
|
|
716
746
|
default: any;
|
|
717
747
|
};
|
|
718
748
|
optionIconType: {
|
|
719
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
749
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
750
|
+
default: any;
|
|
751
|
+
};
|
|
752
|
+
optionEndIconKey: {
|
|
753
|
+
type: import("vue").PropType<string>;
|
|
754
|
+
default: any;
|
|
755
|
+
};
|
|
756
|
+
optionEndIconType: {
|
|
757
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
720
758
|
default: any;
|
|
721
759
|
};
|
|
722
760
|
valueToCopy: {
|
|
@@ -752,7 +790,9 @@ declare const DropdownTypes: () => (({
|
|
|
752
790
|
optionNameKey: string;
|
|
753
791
|
optionIconKey: string;
|
|
754
792
|
optionImageKey: string;
|
|
755
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
793
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
794
|
+
optionEndIconKey: string;
|
|
795
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
756
796
|
valueToCopy: string;
|
|
757
797
|
selectedOption: any;
|
|
758
798
|
brandIconType: "android" | "ios";
|
|
@@ -840,7 +880,15 @@ declare const DropdownTypes: () => (({
|
|
|
840
880
|
default: any;
|
|
841
881
|
};
|
|
842
882
|
optionIconType: {
|
|
843
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
883
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
884
|
+
default: any;
|
|
885
|
+
};
|
|
886
|
+
optionEndIconKey: {
|
|
887
|
+
type: import("vue").PropType<string>;
|
|
888
|
+
default: any;
|
|
889
|
+
};
|
|
890
|
+
optionEndIconType: {
|
|
891
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
844
892
|
default: any;
|
|
845
893
|
};
|
|
846
894
|
valueToCopy: {
|
|
@@ -926,7 +974,15 @@ declare const DropdownTypes: () => (({
|
|
|
926
974
|
default: any;
|
|
927
975
|
};
|
|
928
976
|
optionIconType: {
|
|
929
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
977
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
978
|
+
default: any;
|
|
979
|
+
};
|
|
980
|
+
optionEndIconKey: {
|
|
981
|
+
type: import("vue").PropType<string>;
|
|
982
|
+
default: any;
|
|
983
|
+
};
|
|
984
|
+
optionEndIconType: {
|
|
985
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
930
986
|
default: any;
|
|
931
987
|
};
|
|
932
988
|
valueToCopy: {
|
|
@@ -962,7 +1018,9 @@ declare const DropdownTypes: () => (({
|
|
|
962
1018
|
optionNameKey: string;
|
|
963
1019
|
optionIconKey: string;
|
|
964
1020
|
optionImageKey: string;
|
|
965
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1021
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1022
|
+
optionEndIconKey: string;
|
|
1023
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
966
1024
|
valueToCopy: string;
|
|
967
1025
|
selectedOption: any;
|
|
968
1026
|
brandIconType: "android" | "ios";
|
|
@@ -970,6 +1028,7 @@ declare const DropdownTypes: () => (({
|
|
|
970
1028
|
$slots: {
|
|
971
1029
|
image?(_: {}): any;
|
|
972
1030
|
"icon-start"?(_: {}): any;
|
|
1031
|
+
"icon-end"?(_: {}): any;
|
|
973
1032
|
};
|
|
974
1033
|
})) | ({
|
|
975
1034
|
new (...args: any[]): {
|
|
@@ -979,14 +1038,14 @@ declare const DropdownTypes: () => (({
|
|
|
979
1038
|
option: any;
|
|
980
1039
|
disabled: boolean;
|
|
981
1040
|
active: boolean;
|
|
982
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1041
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
983
1042
|
isIndeterminate: boolean;
|
|
984
1043
|
subtitle: string;
|
|
985
1044
|
selectAllOption: boolean;
|
|
986
1045
|
nameKey: string;
|
|
987
1046
|
imageKey: string;
|
|
988
1047
|
iconKey: string;
|
|
989
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1048
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
990
1049
|
endIconKey: string;
|
|
991
1050
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
992
1051
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1003,7 +1062,7 @@ declare const DropdownTypes: () => (({
|
|
|
1003
1062
|
default: any;
|
|
1004
1063
|
};
|
|
1005
1064
|
endIconType: {
|
|
1006
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1065
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1007
1066
|
default: string;
|
|
1008
1067
|
};
|
|
1009
1068
|
isIndeterminate: {
|
|
@@ -1031,7 +1090,7 @@ declare const DropdownTypes: () => (({
|
|
|
1031
1090
|
default: any;
|
|
1032
1091
|
};
|
|
1033
1092
|
iconType: {
|
|
1034
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1093
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1035
1094
|
default: string;
|
|
1036
1095
|
};
|
|
1037
1096
|
endIconKey: {
|
|
@@ -1073,7 +1132,7 @@ declare const DropdownTypes: () => (({
|
|
|
1073
1132
|
default: any;
|
|
1074
1133
|
};
|
|
1075
1134
|
endIconType: {
|
|
1076
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1135
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1077
1136
|
default: string;
|
|
1078
1137
|
};
|
|
1079
1138
|
isIndeterminate: {
|
|
@@ -1101,7 +1160,7 @@ declare const DropdownTypes: () => (({
|
|
|
1101
1160
|
default: any;
|
|
1102
1161
|
};
|
|
1103
1162
|
iconType: {
|
|
1104
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1163
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1105
1164
|
default: string;
|
|
1106
1165
|
};
|
|
1107
1166
|
endIconKey: {
|
|
@@ -1119,14 +1178,14 @@ declare const DropdownTypes: () => (({
|
|
|
1119
1178
|
option: any;
|
|
1120
1179
|
disabled: boolean;
|
|
1121
1180
|
active: boolean;
|
|
1122
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1181
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1123
1182
|
isIndeterminate: boolean;
|
|
1124
1183
|
subtitle: string;
|
|
1125
1184
|
selectAllOption: boolean;
|
|
1126
1185
|
nameKey: string;
|
|
1127
1186
|
imageKey: string;
|
|
1128
1187
|
iconKey: string;
|
|
1129
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1188
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1130
1189
|
endIconKey: string;
|
|
1131
1190
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
1132
1191
|
}, {}, string> & {
|
|
@@ -1163,7 +1222,7 @@ declare const DropdownTypes: () => (({
|
|
|
1163
1222
|
default: any;
|
|
1164
1223
|
};
|
|
1165
1224
|
endIconType: {
|
|
1166
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1225
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1167
1226
|
default: string;
|
|
1168
1227
|
};
|
|
1169
1228
|
isIndeterminate: {
|
|
@@ -1191,7 +1250,7 @@ declare const DropdownTypes: () => (({
|
|
|
1191
1250
|
default: any;
|
|
1192
1251
|
};
|
|
1193
1252
|
iconType: {
|
|
1194
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1253
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1195
1254
|
default: string;
|
|
1196
1255
|
};
|
|
1197
1256
|
endIconKey: {
|
|
@@ -1223,7 +1282,7 @@ declare const DropdownTypes: () => (({
|
|
|
1223
1282
|
default: any;
|
|
1224
1283
|
};
|
|
1225
1284
|
endIconType: {
|
|
1226
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1285
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1227
1286
|
default: string;
|
|
1228
1287
|
};
|
|
1229
1288
|
isIndeterminate: {
|
|
@@ -1251,7 +1310,7 @@ declare const DropdownTypes: () => (({
|
|
|
1251
1310
|
default: any;
|
|
1252
1311
|
};
|
|
1253
1312
|
iconType: {
|
|
1254
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1313
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1255
1314
|
default: string;
|
|
1256
1315
|
};
|
|
1257
1316
|
endIconKey: {
|
|
@@ -1269,14 +1328,14 @@ declare const DropdownTypes: () => (({
|
|
|
1269
1328
|
option: any;
|
|
1270
1329
|
disabled: boolean;
|
|
1271
1330
|
active: boolean;
|
|
1272
|
-
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1331
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1273
1332
|
isIndeterminate: boolean;
|
|
1274
1333
|
subtitle: string;
|
|
1275
1334
|
selectAllOption: boolean;
|
|
1276
1335
|
nameKey: string;
|
|
1277
1336
|
imageKey: string;
|
|
1278
1337
|
iconKey: string;
|
|
1279
|
-
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1338
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1280
1339
|
endIconKey: string;
|
|
1281
1340
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
1282
1341
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1429,6 +1488,7 @@ declare const DropdownTypes: () => (({
|
|
|
1429
1488
|
triggerFeedbackText: string;
|
|
1430
1489
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
1431
1490
|
triggerFeedbackShowIcon: boolean;
|
|
1491
|
+
triggerShowAllSelectedText: boolean;
|
|
1432
1492
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
1433
1493
|
inlineSearch: boolean;
|
|
1434
1494
|
inlineSearchPlaceholder: string;
|
|
@@ -1438,14 +1498,16 @@ declare const DropdownTypes: () => (({
|
|
|
1438
1498
|
optionNameKey: string;
|
|
1439
1499
|
optionIconKey: string;
|
|
1440
1500
|
optionImageKey: string;
|
|
1441
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1501
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1442
1502
|
optionEndIconKey: string;
|
|
1443
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1503
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1444
1504
|
valueToCopy: string;
|
|
1445
1505
|
disabledOptionKey: string;
|
|
1446
1506
|
fullWidth: boolean;
|
|
1447
1507
|
optionsListWidth: string;
|
|
1448
1508
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
1509
|
+
disableVirtualScroll: boolean;
|
|
1510
|
+
overrideOptionCountCalculation: (option: unknown) => number;
|
|
1449
1511
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1450
1512
|
theme: {
|
|
1451
1513
|
type: import("vue").PropType<string>;
|
|
@@ -1565,6 +1627,10 @@ declare const DropdownTypes: () => (({
|
|
|
1565
1627
|
type: import("vue").PropType<boolean>;
|
|
1566
1628
|
default: boolean;
|
|
1567
1629
|
};
|
|
1630
|
+
triggerShowAllSelectedText: {
|
|
1631
|
+
type: import("vue").PropType<boolean>;
|
|
1632
|
+
default: boolean;
|
|
1633
|
+
};
|
|
1568
1634
|
predefinedTrigger: {
|
|
1569
1635
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
1570
1636
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -1606,7 +1672,7 @@ declare const DropdownTypes: () => (({
|
|
|
1606
1672
|
default: string;
|
|
1607
1673
|
};
|
|
1608
1674
|
optionIconType: {
|
|
1609
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1675
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1610
1676
|
default: any;
|
|
1611
1677
|
};
|
|
1612
1678
|
optionEndIconKey: {
|
|
@@ -1614,7 +1680,7 @@ declare const DropdownTypes: () => (({
|
|
|
1614
1680
|
default: string;
|
|
1615
1681
|
};
|
|
1616
1682
|
optionEndIconType: {
|
|
1617
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1683
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1618
1684
|
default: any;
|
|
1619
1685
|
};
|
|
1620
1686
|
valueToCopy: {
|
|
@@ -1637,6 +1703,14 @@ declare const DropdownTypes: () => (({
|
|
|
1637
1703
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
1638
1704
|
default: any;
|
|
1639
1705
|
};
|
|
1706
|
+
disableVirtualScroll: {
|
|
1707
|
+
type: import("vue").PropType<boolean>;
|
|
1708
|
+
default: boolean;
|
|
1709
|
+
};
|
|
1710
|
+
overrideOptionCountCalculation: {
|
|
1711
|
+
type: import("vue").PropType<(option: unknown) => number>;
|
|
1712
|
+
default: any;
|
|
1713
|
+
};
|
|
1640
1714
|
}>> & {
|
|
1641
1715
|
onCopyToClipboard?: () => any;
|
|
1642
1716
|
onClear?: () => any;
|
|
@@ -1646,7 +1720,7 @@ declare const DropdownTypes: () => (({
|
|
|
1646
1720
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
1647
1721
|
onOpened?: () => any;
|
|
1648
1722
|
onClosed?: () => any;
|
|
1649
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
1723
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
1650
1724
|
$attrs: {
|
|
1651
1725
|
[x: string]: unknown;
|
|
1652
1726
|
};
|
|
@@ -1779,6 +1853,10 @@ declare const DropdownTypes: () => (({
|
|
|
1779
1853
|
type: import("vue").PropType<boolean>;
|
|
1780
1854
|
default: boolean;
|
|
1781
1855
|
};
|
|
1856
|
+
triggerShowAllSelectedText: {
|
|
1857
|
+
type: import("vue").PropType<boolean>;
|
|
1858
|
+
default: boolean;
|
|
1859
|
+
};
|
|
1782
1860
|
predefinedTrigger: {
|
|
1783
1861
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
1784
1862
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -1820,7 +1898,7 @@ declare const DropdownTypes: () => (({
|
|
|
1820
1898
|
default: string;
|
|
1821
1899
|
};
|
|
1822
1900
|
optionIconType: {
|
|
1823
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1901
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1824
1902
|
default: any;
|
|
1825
1903
|
};
|
|
1826
1904
|
optionEndIconKey: {
|
|
@@ -1828,7 +1906,7 @@ declare const DropdownTypes: () => (({
|
|
|
1828
1906
|
default: string;
|
|
1829
1907
|
};
|
|
1830
1908
|
optionEndIconType: {
|
|
1831
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1909
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
1832
1910
|
default: any;
|
|
1833
1911
|
};
|
|
1834
1912
|
valueToCopy: {
|
|
@@ -1851,6 +1929,14 @@ declare const DropdownTypes: () => (({
|
|
|
1851
1929
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
1852
1930
|
default: any;
|
|
1853
1931
|
};
|
|
1932
|
+
disableVirtualScroll: {
|
|
1933
|
+
type: import("vue").PropType<boolean>;
|
|
1934
|
+
default: boolean;
|
|
1935
|
+
};
|
|
1936
|
+
overrideOptionCountCalculation: {
|
|
1937
|
+
type: import("vue").PropType<(option: unknown) => number>;
|
|
1938
|
+
default: any;
|
|
1939
|
+
};
|
|
1854
1940
|
}>> & {
|
|
1855
1941
|
onCopyToClipboard?: () => any;
|
|
1856
1942
|
onClear?: () => any;
|
|
@@ -1900,6 +1986,7 @@ declare const DropdownTypes: () => (({
|
|
|
1900
1986
|
triggerFeedbackText: string;
|
|
1901
1987
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
1902
1988
|
triggerFeedbackShowIcon: boolean;
|
|
1989
|
+
triggerShowAllSelectedText: boolean;
|
|
1903
1990
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
1904
1991
|
inlineSearch: boolean;
|
|
1905
1992
|
inlineSearchPlaceholder: string;
|
|
@@ -1909,14 +1996,16 @@ declare const DropdownTypes: () => (({
|
|
|
1909
1996
|
optionNameKey: string;
|
|
1910
1997
|
optionIconKey: string;
|
|
1911
1998
|
optionImageKey: string;
|
|
1912
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1999
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1913
2000
|
optionEndIconKey: string;
|
|
1914
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2001
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
1915
2002
|
valueToCopy: string;
|
|
1916
2003
|
disabledOptionKey: string;
|
|
1917
2004
|
fullWidth: boolean;
|
|
1918
2005
|
optionsListWidth: string;
|
|
1919
2006
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2007
|
+
disableVirtualScroll: boolean;
|
|
2008
|
+
overrideOptionCountCalculation: (option: unknown) => number;
|
|
1920
2009
|
}, {}, string> & {
|
|
1921
2010
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1922
2011
|
created?: (() => void) | (() => void)[];
|
|
@@ -2056,6 +2145,10 @@ declare const DropdownTypes: () => (({
|
|
|
2056
2145
|
type: import("vue").PropType<boolean>;
|
|
2057
2146
|
default: boolean;
|
|
2058
2147
|
};
|
|
2148
|
+
triggerShowAllSelectedText: {
|
|
2149
|
+
type: import("vue").PropType<boolean>;
|
|
2150
|
+
default: boolean;
|
|
2151
|
+
};
|
|
2059
2152
|
predefinedTrigger: {
|
|
2060
2153
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
2061
2154
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -2097,7 +2190,7 @@ declare const DropdownTypes: () => (({
|
|
|
2097
2190
|
default: string;
|
|
2098
2191
|
};
|
|
2099
2192
|
optionIconType: {
|
|
2100
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2193
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2101
2194
|
default: any;
|
|
2102
2195
|
};
|
|
2103
2196
|
optionEndIconKey: {
|
|
@@ -2105,7 +2198,7 @@ declare const DropdownTypes: () => (({
|
|
|
2105
2198
|
default: string;
|
|
2106
2199
|
};
|
|
2107
2200
|
optionEndIconType: {
|
|
2108
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2201
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2109
2202
|
default: any;
|
|
2110
2203
|
};
|
|
2111
2204
|
valueToCopy: {
|
|
@@ -2128,6 +2221,14 @@ declare const DropdownTypes: () => (({
|
|
|
2128
2221
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
2129
2222
|
default: any;
|
|
2130
2223
|
};
|
|
2224
|
+
disableVirtualScroll: {
|
|
2225
|
+
type: import("vue").PropType<boolean>;
|
|
2226
|
+
default: boolean;
|
|
2227
|
+
};
|
|
2228
|
+
overrideOptionCountCalculation: {
|
|
2229
|
+
type: import("vue").PropType<(option: unknown) => number>;
|
|
2230
|
+
default: any;
|
|
2231
|
+
};
|
|
2131
2232
|
}>> & {
|
|
2132
2233
|
onCopyToClipboard?: () => any;
|
|
2133
2234
|
onClear?: () => any;
|
|
@@ -2263,6 +2364,10 @@ declare const DropdownTypes: () => (({
|
|
|
2263
2364
|
type: import("vue").PropType<boolean>;
|
|
2264
2365
|
default: boolean;
|
|
2265
2366
|
};
|
|
2367
|
+
triggerShowAllSelectedText: {
|
|
2368
|
+
type: import("vue").PropType<boolean>;
|
|
2369
|
+
default: boolean;
|
|
2370
|
+
};
|
|
2266
2371
|
predefinedTrigger: {
|
|
2267
2372
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
2268
2373
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -2304,7 +2409,7 @@ declare const DropdownTypes: () => (({
|
|
|
2304
2409
|
default: string;
|
|
2305
2410
|
};
|
|
2306
2411
|
optionIconType: {
|
|
2307
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2412
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2308
2413
|
default: any;
|
|
2309
2414
|
};
|
|
2310
2415
|
optionEndIconKey: {
|
|
@@ -2312,7 +2417,7 @@ declare const DropdownTypes: () => (({
|
|
|
2312
2417
|
default: string;
|
|
2313
2418
|
};
|
|
2314
2419
|
optionEndIconType: {
|
|
2315
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2420
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2316
2421
|
default: any;
|
|
2317
2422
|
};
|
|
2318
2423
|
valueToCopy: {
|
|
@@ -2335,6 +2440,14 @@ declare const DropdownTypes: () => (({
|
|
|
2335
2440
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
2336
2441
|
default: any;
|
|
2337
2442
|
};
|
|
2443
|
+
disableVirtualScroll: {
|
|
2444
|
+
type: import("vue").PropType<boolean>;
|
|
2445
|
+
default: boolean;
|
|
2446
|
+
};
|
|
2447
|
+
overrideOptionCountCalculation: {
|
|
2448
|
+
type: import("vue").PropType<(option: unknown) => number>;
|
|
2449
|
+
default: any;
|
|
2450
|
+
};
|
|
2338
2451
|
}>> & {
|
|
2339
2452
|
onCopyToClipboard?: () => any;
|
|
2340
2453
|
onClear?: () => any;
|
|
@@ -2384,6 +2497,7 @@ declare const DropdownTypes: () => (({
|
|
|
2384
2497
|
triggerFeedbackText: string;
|
|
2385
2498
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
2386
2499
|
triggerFeedbackShowIcon: boolean;
|
|
2500
|
+
triggerShowAllSelectedText: boolean;
|
|
2387
2501
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
2388
2502
|
inlineSearch: boolean;
|
|
2389
2503
|
inlineSearchPlaceholder: string;
|
|
@@ -2393,14 +2507,16 @@ declare const DropdownTypes: () => (({
|
|
|
2393
2507
|
optionNameKey: string;
|
|
2394
2508
|
optionIconKey: string;
|
|
2395
2509
|
optionImageKey: string;
|
|
2396
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2510
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
2397
2511
|
optionEndIconKey: string;
|
|
2398
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2512
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
2399
2513
|
valueToCopy: string;
|
|
2400
2514
|
disabledOptionKey: string;
|
|
2401
2515
|
fullWidth: boolean;
|
|
2402
2516
|
optionsListWidth: string;
|
|
2403
2517
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2518
|
+
disableVirtualScroll: boolean;
|
|
2519
|
+
overrideOptionCountCalculation: (option: unknown) => number;
|
|
2404
2520
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2405
2521
|
$slots: {
|
|
2406
2522
|
label?(_: {}): any;
|
|
@@ -2417,6 +2533,7 @@ declare const DropdownTypes: () => (({
|
|
|
2417
2533
|
}): any;
|
|
2418
2534
|
default?(_: {
|
|
2419
2535
|
option: unknown;
|
|
2536
|
+
index: number;
|
|
2420
2537
|
selected: boolean;
|
|
2421
2538
|
active: boolean;
|
|
2422
2539
|
disabled: any;
|
|
@@ -2448,7 +2565,7 @@ declare const DropdownTypes: () => (({
|
|
|
2448
2565
|
default: any;
|
|
2449
2566
|
};
|
|
2450
2567
|
startIconType: {
|
|
2451
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2568
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2452
2569
|
default: string;
|
|
2453
2570
|
};
|
|
2454
2571
|
hideEndIcon: {
|
|
@@ -2483,7 +2600,7 @@ declare const DropdownTypes: () => (({
|
|
|
2483
2600
|
default: any;
|
|
2484
2601
|
};
|
|
2485
2602
|
startIconType: {
|
|
2486
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2603
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2487
2604
|
default: string;
|
|
2488
2605
|
};
|
|
2489
2606
|
hideEndIcon: {
|
|
@@ -2498,7 +2615,173 @@ declare const DropdownTypes: () => (({
|
|
|
2498
2615
|
open: boolean;
|
|
2499
2616
|
testId: string;
|
|
2500
2617
|
startIconName: string;
|
|
2501
|
-
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2618
|
+
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
2502
2619
|
hideEndIcon: boolean;
|
|
2620
|
+
}> | import("vue").DefineComponent<{
|
|
2621
|
+
disabled: {
|
|
2622
|
+
type: import("vue").PropType<boolean>;
|
|
2623
|
+
default: boolean;
|
|
2624
|
+
};
|
|
2625
|
+
size: {
|
|
2626
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
2627
|
+
default: string;
|
|
2628
|
+
};
|
|
2629
|
+
testId: {
|
|
2630
|
+
type: import("vue").PropType<string>;
|
|
2631
|
+
default: string;
|
|
2632
|
+
};
|
|
2633
|
+
selected: {
|
|
2634
|
+
type: import("vue").PropType<unknown[]>;
|
|
2635
|
+
default: any;
|
|
2636
|
+
};
|
|
2637
|
+
options: {
|
|
2638
|
+
type: import("vue").PropType<unknown[]>;
|
|
2639
|
+
required: true;
|
|
2640
|
+
};
|
|
2641
|
+
placeholder: {
|
|
2642
|
+
type: import("vue").PropType<string>;
|
|
2643
|
+
default: string;
|
|
2644
|
+
};
|
|
2645
|
+
isOpen: {
|
|
2646
|
+
type: import("vue").PropType<boolean>;
|
|
2647
|
+
};
|
|
2648
|
+
inlineSearchPlaceholder: {
|
|
2649
|
+
type: import("vue").PropType<string>;
|
|
2650
|
+
default: string;
|
|
2651
|
+
};
|
|
2652
|
+
displayValue: {
|
|
2653
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
2654
|
+
required: true;
|
|
2655
|
+
};
|
|
2656
|
+
optionNameKey: {
|
|
2657
|
+
type: import("vue").PropType<string>;
|
|
2658
|
+
default: string;
|
|
2659
|
+
};
|
|
2660
|
+
optionIconKey: {
|
|
2661
|
+
type: import("vue").PropType<string>;
|
|
2662
|
+
default: string;
|
|
2663
|
+
};
|
|
2664
|
+
optionImageKey: {
|
|
2665
|
+
type: import("vue").PropType<string>;
|
|
2666
|
+
default: string;
|
|
2667
|
+
};
|
|
2668
|
+
optionIconType: {
|
|
2669
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2670
|
+
default: any;
|
|
2671
|
+
};
|
|
2672
|
+
optionEndIconKey: {
|
|
2673
|
+
type: import("vue").PropType<string>;
|
|
2674
|
+
default: string;
|
|
2675
|
+
};
|
|
2676
|
+
optionEndIconType: {
|
|
2677
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2678
|
+
default: any;
|
|
2679
|
+
};
|
|
2680
|
+
valueToCopy: {
|
|
2681
|
+
type: import("vue").PropType<string>;
|
|
2682
|
+
default: any;
|
|
2683
|
+
};
|
|
2684
|
+
disabledOptionKey: {
|
|
2685
|
+
type: import("vue").PropType<string>;
|
|
2686
|
+
default: string;
|
|
2687
|
+
};
|
|
2688
|
+
optionChildrenKey: {
|
|
2689
|
+
type: import("vue").PropType<string>;
|
|
2690
|
+
default: string;
|
|
2691
|
+
};
|
|
2692
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2693
|
+
"update:selected": (value: unknown) => void;
|
|
2694
|
+
"update:isOpen": (value: unknown) => void;
|
|
2695
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2696
|
+
disabled: {
|
|
2697
|
+
type: import("vue").PropType<boolean>;
|
|
2698
|
+
default: boolean;
|
|
2699
|
+
};
|
|
2700
|
+
size: {
|
|
2701
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
2702
|
+
default: string;
|
|
2703
|
+
};
|
|
2704
|
+
testId: {
|
|
2705
|
+
type: import("vue").PropType<string>;
|
|
2706
|
+
default: string;
|
|
2707
|
+
};
|
|
2708
|
+
selected: {
|
|
2709
|
+
type: import("vue").PropType<unknown[]>;
|
|
2710
|
+
default: any;
|
|
2711
|
+
};
|
|
2712
|
+
options: {
|
|
2713
|
+
type: import("vue").PropType<unknown[]>;
|
|
2714
|
+
required: true;
|
|
2715
|
+
};
|
|
2716
|
+
placeholder: {
|
|
2717
|
+
type: import("vue").PropType<string>;
|
|
2718
|
+
default: string;
|
|
2719
|
+
};
|
|
2720
|
+
isOpen: {
|
|
2721
|
+
type: import("vue").PropType<boolean>;
|
|
2722
|
+
};
|
|
2723
|
+
inlineSearchPlaceholder: {
|
|
2724
|
+
type: import("vue").PropType<string>;
|
|
2725
|
+
default: string;
|
|
2726
|
+
};
|
|
2727
|
+
displayValue: {
|
|
2728
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
2729
|
+
required: true;
|
|
2730
|
+
};
|
|
2731
|
+
optionNameKey: {
|
|
2732
|
+
type: import("vue").PropType<string>;
|
|
2733
|
+
default: string;
|
|
2734
|
+
};
|
|
2735
|
+
optionIconKey: {
|
|
2736
|
+
type: import("vue").PropType<string>;
|
|
2737
|
+
default: string;
|
|
2738
|
+
};
|
|
2739
|
+
optionImageKey: {
|
|
2740
|
+
type: import("vue").PropType<string>;
|
|
2741
|
+
default: string;
|
|
2742
|
+
};
|
|
2743
|
+
optionIconType: {
|
|
2744
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2745
|
+
default: any;
|
|
2746
|
+
};
|
|
2747
|
+
optionEndIconKey: {
|
|
2748
|
+
type: import("vue").PropType<string>;
|
|
2749
|
+
default: string;
|
|
2750
|
+
};
|
|
2751
|
+
optionEndIconType: {
|
|
2752
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
|
|
2753
|
+
default: any;
|
|
2754
|
+
};
|
|
2755
|
+
valueToCopy: {
|
|
2756
|
+
type: import("vue").PropType<string>;
|
|
2757
|
+
default: any;
|
|
2758
|
+
};
|
|
2759
|
+
disabledOptionKey: {
|
|
2760
|
+
type: import("vue").PropType<string>;
|
|
2761
|
+
default: string;
|
|
2762
|
+
};
|
|
2763
|
+
optionChildrenKey: {
|
|
2764
|
+
type: import("vue").PropType<string>;
|
|
2765
|
+
default: string;
|
|
2766
|
+
};
|
|
2767
|
+
}>> & {
|
|
2768
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
2769
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2770
|
+
}, {
|
|
2771
|
+
disabled: boolean;
|
|
2772
|
+
size: "small" | "medium" | "large";
|
|
2773
|
+
testId: string;
|
|
2774
|
+
selected: unknown[];
|
|
2775
|
+
placeholder: string;
|
|
2776
|
+
inlineSearchPlaceholder: string;
|
|
2777
|
+
optionNameKey: string;
|
|
2778
|
+
optionIconKey: string;
|
|
2779
|
+
optionImageKey: string;
|
|
2780
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
2781
|
+
optionEndIconKey: string;
|
|
2782
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
|
|
2783
|
+
valueToCopy: string;
|
|
2784
|
+
disabledOptionKey: string;
|
|
2785
|
+
optionChildrenKey: string;
|
|
2503
2786
|
}>)[];
|
|
2504
|
-
export { Dropdown, DefaultDropdownTrigger, IconButtonDropdownTrigger, ChipDropdownTrigger, ButtonDropdownTrigger, ButtonFilterDropdownTrigger, AppDropdownTrigger, DropdownTypes, Option, };
|
|
2787
|
+
export { Dropdown, DefaultDropdownTrigger, IconButtonDropdownTrigger, ChipDropdownTrigger, ButtonDropdownTrigger, ButtonFilterDropdownTrigger, AppDropdownTrigger, DropdownTypes, Option, TreeDropdown, };
|