From 315c70895b9120226af15813e54d88a4eccc67d9 Mon Sep 17 00:00:00 2001 From: Daniel Leal Date: Sat, 9 Jul 2022 15:44:55 -0400 Subject: [PATCH 1/6] Add classes to LForm --- src/components/LForm/LForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/LForm/LForm.tsx b/src/components/LForm/LForm.tsx index 3ff0ff8..399dbb5 100644 --- a/src/components/LForm/LForm.tsx +++ b/src/components/LForm/LForm.tsx @@ -33,6 +33,7 @@ export const LForm = defineComponent({ useRender(() => (
From 4f473bb8f9a4c01ef0dbb54620615019e6d0ee3c Mon Sep 17 00:00:00 2001 From: Daniel Leal Date: Sat, 9 Jul 2022 15:45:07 -0400 Subject: [PATCH 2/6] Add classes to LInput --- src/components/LInput/LInput.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/LInput/LInput.tsx b/src/components/LInput/LInput.tsx index 170457f..9d262e2 100644 --- a/src/components/LInput/LInput.tsx +++ b/src/components/LInput/LInput.tsx @@ -30,12 +30,16 @@ export const LInput = defineComponent({ <> - { validation.renderError.value &&

{ validation.error.value }

} + { + validation.renderError.value + &&

{ validation.error.value }

+ } )); From 608e3ed48e9714a4bf5709666ae869d0b4c5a416 Mon Sep 17 00:00:00 2001 From: Daniel Leal Date: Sat, 9 Jul 2022 15:45:20 -0400 Subject: [PATCH 3/6] Add classes to LTextarea --- src/components/LTextarea/LTextarea.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/LTextarea/LTextarea.tsx b/src/components/LTextarea/LTextarea.tsx index 98eabfb..d130a1f 100644 --- a/src/components/LTextarea/LTextarea.tsx +++ b/src/components/LTextarea/LTextarea.tsx @@ -30,11 +30,15 @@ export const LTextarea = defineComponent({ <>