Skip to content

Conversation

J-Sek
Copy link
Contributor

@J-Sek J-Sek commented Oct 1, 2025

(reopened #20768)

verified interactions:

  • click to open » select using mouse
  • click to open » type something » click outside (or use [Esc])
  • set initial value to 42 » focus with [Tab] » use [Backspace] remove 2
  • (outstanding bug, not a regression) focus VCombobox with [Tab] » use [Enter]
  • chips + custom selection not in items --- cannot reproduce

Markup:

<template>
  <v-app theme="dark">
    <v-container max-width="600">
      <v-card>
        <v-container fluid>
          <v-select
            label="v-select"
            :items="shortList"
            v-model="model"
            clearable
            persistent-clear
          />
          <v-combobox
            label="v-combobox"
            :items="shortList"
            v-model="model"
            clearable
            persistent-clear
          />
          <v-autocomplete
            label="v-autocomplete"
            :items="shortList"
            v-model="model"
            clearable
            persistent-clear
          />
        </v-container>
      </v-card>
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'
  const shortList = Array.from({ length: 100 }, (_, i) => i)

  const model = ref(41)
</script>

@J-Sek J-Sek self-assigned this Oct 1, 2025
@J-Sek J-Sek force-pushed the fix/selection-menu-transition branch from b385792 to 640dcaa Compare October 1, 2025 20:32
@J-Sek J-Sek requested a review from KaelWD October 1, 2025 20:33
@J-Sek J-Sek force-pushed the fix/selection-menu-transition branch from 640dcaa to aea4cda Compare October 1, 2025 20:51
@J-Sek J-Sek force-pushed the fix/selection-menu-transition branch from aea4cda to aca4616 Compare October 1, 2025 20:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant