From f16c2c506bc73074866859cbd798086801a9b1da Mon Sep 17 00:00:00 2001 From: Kael Date: Fri, 4 Nov 2022 18:36:34 +1100 Subject: [PATCH] fix(VAutocomplete): remove unused allowOverflow prop closes #16008 --- packages/api-generator/src/locale/en/v-autocomplete.json | 1 - .../vuetify/src/components/VAutocomplete/VAutocomplete.ts | 4 ---- 2 files changed, 5 deletions(-) diff --git a/packages/api-generator/src/locale/en/v-autocomplete.json b/packages/api-generator/src/locale/en/v-autocomplete.json index 151318e267d..4a55d4c0ee2 100644 --- a/packages/api-generator/src/locale/en/v-autocomplete.json +++ b/packages/api-generator/src/locale/en/v-autocomplete.json @@ -1,6 +1,5 @@ { "props": { - "allowOverflow": "Allow the menu to overflow off the screen", "autoSelectFirst": "When searching, will always highlight the first option", "dark": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html).", "filter": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)", diff --git a/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts b/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts index 278dacc8371..aef103e2e72 100644 --- a/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts +++ b/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts @@ -29,10 +29,6 @@ export default VSelect.extend({ name: 'v-autocomplete', props: { - allowOverflow: { - type: Boolean, - default: true, - }, autoSelectFirst: { type: Boolean, default: false,