From 70b18a6281f4f03fd9bf4e0d751dc38c880362ff Mon Sep 17 00:00:00 2001 From: tristan Date: Fri, 22 May 2026 09:28:32 +0200 Subject: [PATCH] =?UTF-8?q?feat=20:=20playground=20DateTime=20align=C3=A9?= =?UTF-8?q?=20sur=20les=20autres=20dates=20(Large=20+=20ERP)=20(#MUI-33)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- .playground/pages/composant/date/datetime.vue | 43 +++++++++++++------ 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/.playground/pages/composant/date/datetime.vue b/.playground/pages/composant/date/datetime.vue index eeb468e..f7d0938 100644 --- a/.playground/pages/composant/date/datetime.vue +++ b/.playground/pages/composant/date/datetime.vue @@ -3,8 +3,8 @@

MalioDateTime

-
-

Simple

+
+

Large (480px)

Valeur (ISO naïf) : {{ value ?? 'null' }}

- +
+ + +
-

Valeur initiale + bornes

+

ERP (396px)

+ +
+

Valeur (ISO naïf) : {{ erpValue ?? 'null' }}

+
-
-

Valeur (ISO naïf) : {{ bounded ?? 'null' }}

-
@@ -49,5 +63,6 @@ const todayIso = toIso(now) const maxIso = toIso(new Date(now.getTime() + 30 * 86400000)) const value = ref(null) +const erpValue = ref(null) const bounded = ref('2026-05-20T14:30:00')