Adam 10 месяцев назад
Родитель
Сommit
582d9a9622
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ui/src/components/input.tsx

+ 1 - 1
packages/ui/src/components/input.tsx

@@ -4,7 +4,7 @@ import type { ComponentProps } from "solid-js"
 
 export interface InputProps
   extends ComponentProps<typeof Kobalte.Input>,
-    Pick<ComponentProps<typeof Kobalte>, "value" | "onChange" | "onKeyDown"> {
+    Partial<Pick<ComponentProps<typeof Kobalte>, "value" | "onChange" | "onKeyDown">> {
   label?: string
   hideLabel?: boolean
   description?: string