From 579ab4fbede874650cc1708e75f7983325a457f9 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 28 Mar 2025 10:57:36 +0100 Subject: [PATCH] Define manual mode for input --- src/components/Input/Input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Input/Input.tsx b/src/components/Input/Input.tsx index f17d87b..d4f15e1 100644 --- a/src/components/Input/Input.tsx +++ b/src/components/Input/Input.tsx @@ -28,7 +28,7 @@ type Props = { * If the mode is "auto", the component will check the invalid state * on change and add an invalid state if it is invalid. */ - mode?: "auto"; + mode?: "auto" | "manual"; isInvalid?: boolean;