Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VField): use xl border-radius for rounded prop #19457

Merged
merged 1 commit into from
Mar 26, 2024
Merged

Conversation

yuwu9145
Copy link
Member

fixes #19151

Description

Markup:

<template>
  <div class="ma-5">
    <v-combobox
      label="Fruits"
      variant="outlined"
      rounded
      multiple
      chips
      v-model="fruits"
    ></v-combobox>
    <v-combobox
      label="Fruits"
      variant="outlined"
      rounded
      chips
    ></v-combobox>
  </div>
</template>
<script setup>
  const fruits = [
    'Apple',
    'Apricot',
    'Avocado',
    'Banana',
    'Blackberry',
    'Blackcurrant',
    'Blueberry',
    'Boysenberry',
    'Breadfruit',
    'Cantaloupe',
    'Carambola',
    'Cherimoya',
    'Cherry',
    'Clementine',
    'Coconut',
    'Cranberry',
    'Date',
    'Dragonfruit',
    'Durian',
    'Elderberry',
    'Feijoa',
    'Fig',
    'Goji berry',
    'Gooseberry',
    'Grape',
    'Grapefruit',
    'Guava',
    'Honeydew',
    'Huckleberry',
    'Jabuticaba',
    'Jackfruit',
    'Jambul',
    'Jujube',
    'Juniper berry',
    'Kiwi',
    'Kumquat',
    'Lemon',
    'Lime',
    'Longan',
    'Lychee',
    'Mandarin',
    'Mango',
    'Mangosteen',
    'Marionberry',
    'Melon',
    'Miracle fruit',
    'Mulberry',
    'Nectarine',
    'Orange',
    'Papaya',
    'Passionfruit',
    'Peach',
    'Pear',
    'Persimmon',
    'Pineapple',
    'Pitaya',
    'Plantain',
    'Plum',
    'Pomegranate',
    'Pomelo',
    'Prickly pear',
    'Quince',
    'Rambutan',
    'Raspberry',
    'Red currant',
    'Salak',
    'Sapodilla',
    'Sapote',
    'Soursop',
    'Star apple',
    'Star fruit',
    'Strawberry',
    'Surinam cherry',
    'Tamarillo',
    'Tamarind',
    'Tangerine',
    'Tomato',
    'Ugli fruit',
    'Watermelon',
    'White currant',
    'White sapote',
    'Yuzu',
    'Zucchini',
    'Acerola',
    'Ackee',
    'African cucumber',
    'Amla',
    'Bilberry',
    'Camu Camu',
    'Cape gooseberry',
    'Cherries',
    'Cloudberry',
    'Cornelian cherry',
    'Damson',
    'Eggfruit',
    'Elderberry',
    'Feijoa',
    'Guinep',
    'Honeycrisp apple',
    'Ice cream bean',
    'Ilama',
    'Imbe',
    'Jaboticaba',
    'Kaffir lime',
    'Kiwano',
    'Kiwiberry',
    'Loquat',
    'Lucuma',
    'Mamey sapote',
    'Mangaba',
    'Maypop',
    'Medlar',
    'Mirabelle plum',
    'Monstera deliciosa fruit',
    'Mountain soursop',
    'Nance',
    'Nashi pear',
    'Noni',
    'Olive',
    'Pawpaw',
    'Pepino',
    'Physalis',
    'Pineberry',
    'Pink grapefruit',
    'Pitanga',
    'Pluot',
    'Pomato',
    'Purple mangosteen',
    'Raspberry',
    'Red banana',
    'Rose apple',
    'Salmonberry',
    'Santol',
    'Sea buckthorn',
    'Serviceberry',
    'Snake fruit',
    'Soncoya',
    'Strawberry guava',
    'Sugar apple',
    'Sweet lime',
    'Tangelo',
    'Tejocote',
    'Texas persimmon',
    'Thimbleberry',
    'Velvet apple',
    'Wax apple',
    'Wax jambu',
    'White mulberry',
    'Wild grape',
    'Yumberry',
  ]
</script>

@yuwu9145 yuwu9145 requested review from johnleider and KaelWD March 24, 2024 11:30
@johnleider johnleider added this to the v3.5.x milestone Mar 24, 2024
@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VField labels Mar 24, 2024
@johnleider johnleider merged commit 2e993ef into master Mar 26, 2024
17 of 19 checks passed
@johnleider johnleider deleted the fix-19151 branch March 26, 2024 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VField T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.5.2] v-combobox outlined + rounded with lots of items clips into element
2 participants