From 58f7744326cf0fabb79efeebdfbd6e4b82546cc9 Mon Sep 17 00:00:00 2001 From: tristan Date: Tue, 9 Jun 2026 11:54:52 +0200 Subject: [PATCH] feat(date) : saisie manuelle MalioDate (parse, validation, erreur) --- app/components/malio/date/Date.vue | 46 ++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 5 deletions(-) diff --git a/app/components/malio/date/Date.vue b/app/components/malio/date/Date.vue index 65bd880..35f05ef 100644 --- a/app/components/malio/date/Date.vue +++ b/app/components/malio/date/Date.vue @@ -10,14 +10,16 @@ :disabled="disabled" :readonly="readonly" :hint="hint" - :error="error" + :error="mergedError" :success="success" :clearable="clearable" + :editable="editable" :input-class="inputClass" :label-class="labelClass" :group-class="groupClass" v-bind="$attrs" - @clear="emit('update:modelValue', null)" + @clear="onClear" + @commit="onCommit" >