diff --git a/src/components/input.tsx b/src/components/input.tsx index 3fdb1e5..3a2de6e 100644 --- a/src/components/input.tsx +++ b/src/components/input.tsx @@ -39,6 +39,7 @@ function setSetIsText(id: string | undefined, isText: boolean, setIsText: Setter interface Input extends InputProps { leading?: JSX.Element, trailing?: JSX.Element, + onChange?: () => void, } export const Input: Component> = ( @@ -77,7 +78,7 @@ export const Input: Component> = ( return ( { leading } - + > = ( type={ type } placeholder={ placeholder ?? undefined } required={ required } - onInput={ () => setSetIsText(id, isText(), setIsText) } - onChange={ onChange /*TODO only called after ENTER*/ }/> + onInput={ () => { + setSetIsText(id, isText(), setIsText); + if (onChange) { + onChange(); + } + } } /> { trailing } ); @@ -107,7 +112,7 @@ function HoverTitle( transition-all duration-150 text-gray-600 dark:text-gray-400` } for={ htmlFor }>
{ title }
-
+
); }