diff --git a/components/lib/autocomplete/AutoComplete.d.ts b/components/lib/autocomplete/AutoComplete.d.ts index bdee223a8..52165051b 100755 --- a/components/lib/autocomplete/AutoComplete.d.ts +++ b/components/lib/autocomplete/AutoComplete.d.ts @@ -7,7 +7,7 @@ * @module autocomplete * */ -import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue'; +import { TransitionProps, VNode } from 'vue'; import { ComponentHooks } from '../basecomponent'; import { InputTextPassThroughOptions } from '../inputtext'; import { PassThroughOptions } from '../passthrough'; @@ -412,10 +412,6 @@ export interface AutoCompleteProps { * Style class of the input field. */ inputClass?: string | object | undefined; - /** - * Used to pass all properties of the HTMLInputElement to the focusable input element inside the component. - */ - inputProps?: InputHTMLAttributes | undefined; /** * Inline style of the overlay panel. */ @@ -424,10 +420,6 @@ export interface AutoCompleteProps { * Style class of the overlay panel. */ panelClass?: string | object | undefined; - /** - * Used to pass all properties of the HTMLDivElement to the overlay panel inside the component. - */ - panelProps?: HTMLAttributes | undefined; /** * Icon to display in the dropdown. * @deprecated since v3.27.0. Use 'dropdownicon' slot. diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue index eb8a01bb9..14be34fac 100755 --- a/components/lib/autocomplete/AutoComplete.vue +++ b/components/lib/autocomplete/AutoComplete.vue @@ -1,6 +1,6 @@