From f039d1a7dd9e9e4f5630e5089190b324c0fe149d Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 2 May 2024 10:41:02 +0200 Subject: [PATCH] chore(CommandPalette): define `placeholder` from `InputProps` --- src/runtime/components/CommandPalette.vue | 8 ++------ src/runtime/components/Input.vue | 4 ++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/runtime/components/CommandPalette.vue b/src/runtime/components/CommandPalette.vue index dcf0df7a..7a5b577d 100644 --- a/src/runtime/components/CommandPalette.vue +++ b/src/runtime/components/CommandPalette.vue @@ -6,7 +6,7 @@ import type { UseFuseOptions } from '@vueuse/integrations/useFuse' import _appConfig from '#build/app.config' import theme from '#build/ui/command-palette' import type { UseComponentIconsProps } from '#ui/composables/useComponentIcons' -import type { AvatarProps, ButtonProps, ChipProps, KbdProps } from '#ui/types' +import type { AvatarProps, ButtonProps, ChipProps, KbdProps, InputProps } from '#ui/types' import type { DynamicSlots } from '#ui/types/utils' const appConfig = _appConfig as AppConfig & { ui: { commandPalette: Partial } } @@ -45,11 +45,7 @@ export interface CommandPaletteProps extends Pick