diff --git a/components/lib/autocomplete/AutoComplete.d.ts b/components/lib/autocomplete/AutoComplete.d.ts index 9530c7ec9..ea944faf2 100755 --- a/components/lib/autocomplete/AutoComplete.d.ts +++ b/components/lib/autocomplete/AutoComplete.d.ts @@ -147,7 +147,7 @@ export interface AutoCompletePassThroughOptions { * Used to pass attributes to the InputText component. * @see {@link InputTextPassThroughOptions} */ - input?: InputTextPassThroughOptions; + input?: InputTextPassThroughOptions | AutoCompletePassThroughOptionType; /** * Used to pass attributes to the container's DOM element. */ diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue index dd4e47436..1230dc880 100755 --- a/components/lib/autocomplete/AutoComplete.vue +++ b/components/lib/autocomplete/AutoComplete.vue @@ -64,18 +64,15 @@
  • -
  • @@ -214,8 +212,7 @@ export default { focusedOptionIndex: -1, focusedMultipleOptionIndex: -1, overlayVisible: false, - searching: false, - multipleInputValue: null + searching: false }; }, watch: { @@ -299,7 +296,7 @@ export default { this.dirty = true; this.overlayVisible = true; this.focusedOptionIndex = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : this.autoOptionFocus ? this.findFirstFocusedOptionIndex() : -1; - isFocus && DomHandler.focus(this.$refs.focusInput.$el); + isFocus && DomHandler.focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el); }, hide(isFocus) { const _hide = () => { @@ -309,7 +306,7 @@ export default { this.clicked = false; this.focusedOptionIndex = -1; - isFocus && DomHandler.focus(this.$refs.focusInput.$el); + isFocus && DomHandler.focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el); }; setTimeout(() => { @@ -419,8 +416,6 @@ export default { if (!this.multiple) { this.updateModel(event, query); - } else { - this.multipleInputValue = query; } if (query.length === 0) { @@ -444,7 +439,8 @@ export default { // when forceSelection is on, prevent called twice onOptionSelect() if (this.visibleOptions && !this.multiple) { - const matchedValue = this.visibleOptions.find((option) => this.isOptionMatched(option, this.$refs.focusInput.$el.value || '')); + let value = this.multiple ? this.$refs.focusInput.value : this.$refs.focusInput.$el.value; + const matchedValue = this.visibleOptions.find((option) => this.isOptionMatched(option, value || '')); if (matchedValue !== undefined) { valid = true; @@ -453,7 +449,8 @@ export default { } if (!valid) { - this.$refs.focusInput.$el.value = ''; + if (this.multiple) this.$refs.focusInput.value = ''; + else this.$refs.focusInput.$el.value = ''; this.$emit('clear'); !this.multiple && this.updateModel(event, null); } @@ -503,7 +500,7 @@ export default { } if (!this.overlay || !this.overlay.contains(event.target)) { - DomHandler.focus(this.$refs.focusInput.$el); + DomHandler.focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el); } }, onDropdownClick(event) { @@ -512,7 +509,7 @@ export default { if (this.overlayVisible) { this.hide(true); } else { - DomHandler.focus(this.$refs.focusInput.$el); + DomHandler.focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el); query = this.$refs.focusInput.$el.value; if (this.dropdownMode === 'blank') this.search(event, '', 'dropdown'); @@ -525,7 +522,7 @@ export default { const value = this.getOptionValue(option); if (this.multiple) { - this.multipleInputValue = null; + this.$refs.focusInput.value = ''; if (!this.isSelected(option)) { this.updateModel(event, [...(this.modelValue || []), value]); @@ -662,7 +659,7 @@ export default { }, onBackspaceKey(event) { if (this.multiple) { - if (ObjectUtils.isNotEmpty(this.modelValue) && !this.$refs.focusInput.$el.value) { + if (ObjectUtils.isNotEmpty(this.modelValue) && !this.$refs.focusInput.value) { const removedValue = this.modelValue[this.modelValue.length - 1]; const newValue = this.modelValue.slice(0, -1); @@ -681,7 +678,7 @@ export default { if (this.focusedMultipleOptionIndex > this.modelValue.length - 1) { this.focusedMultipleOptionIndex = -1; - DomHandler.focus(this.$refs.focusInput.$el); + DomHandler.focus(this.$refs.focusInput); } }, onBackspaceKeyOnMultiple(event) { @@ -850,7 +847,7 @@ export default { this.updateModel(event, value); this.$emit('item-unselect', { originalEvent: event, value: removedOption }); this.dirty = true; - DomHandler.focus(this.$refs.focusInput.$el); + DomHandler.focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el); }, changeFocusedOptionIndex(event, index) { if (this.focusedOptionIndex !== index) {