Skip to content

Commit

Permalink
refactor(Combobox)!: drop dismissable prop. use Listbox instead
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Nov 28, 2024
1 parent 8f581a1 commit 83c518e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/core/src/Combobox/ComboboxContentImpl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ export interface ComboboxContentImplProps extends PopperContentProps, Dismissabl
position?: 'inline' | 'popper'
/** The document.body will be lock, and scrolling will be disabled. */
bodyLock?: boolean
/**
* Allow component to be dismissableLayer.
* @deprecated (Will be removed in version 2.0, use `Listbox` instead)
*/
dismissable?: boolean
}
export const [injectComboboxContentContext, provideComboboxContentContext]
Expand All @@ -40,7 +35,6 @@ import { ListboxContent } from '@/Listbox'
const props = withDefaults(defineProps<ComboboxContentImplProps>(), {
position: 'inline',
dismissable: true,
})
const emits = defineEmits<ComboboxContentImplEmits>()
Expand Down

0 comments on commit 83c518e

Please sign in to comment.