Erreur et succès
@@ -57,4 +74,7 @@
diff --git a/.playground/pages/composant/input/inputAutocomplete.vue b/.playground/pages/composant/input/inputAutocomplete.vue
index 7597851..dfac49b 100644
--- a/.playground/pages/composant/input/inputAutocomplete.vue
+++ b/.playground/pages/composant/input/inputAutocomplete.vue
@@ -82,6 +82,25 @@
/>
+
+
Readonly (readonly vide)
+
+
+
+
+
Readonly (readonly rempli)
+
+
+
Avec hint
('de')
const simpleValue = ref(null)
const leftIconValue = ref(null)
const createValue = ref(null)
diff --git a/.playground/pages/composant/input/inputEmail.vue b/.playground/pages/composant/input/inputEmail.vue
index 665f17f..8583754 100644
--- a/.playground/pages/composant/input/inputEmail.vue
+++ b/.playground/pages/composant/input/inputEmail.vue
@@ -48,6 +48,23 @@
/>
+
+
Readonly (readonly vide)
+
+
+
+
+
Readonly (readonly rempli)
+
+
+
Avec hint
import { computed, ref } from 'vue'
+const readonlyFilledEmail = ref('contact@malio.fr')
const emailValue = ref('')
const dynamicEmail = ref('')
const requiredEmail = ref('')
diff --git a/.playground/pages/composant/input/inputPassword.vue b/.playground/pages/composant/input/inputPassword.vue
index 54a8dc0..2f8d515 100644
--- a/.playground/pages/composant/input/inputPassword.vue
+++ b/.playground/pages/composant/input/inputPassword.vue
@@ -41,6 +41,23 @@
/>
+
+
Readonly (readonly vide)
+
+
+
+
+
Readonly (readonly rempli)
+
+
+
Avec hint
import { computed, ref } from 'vue'
+const readonlyFilledPassword = ref('motdepasse123')
const passwordValue = ref('')
const dynamicPassword = ref('')
diff --git a/.playground/pages/composant/input/inputPhone.vue b/.playground/pages/composant/input/inputPhone.vue
index 5775e28..dde4c3c 100644
--- a/.playground/pages/composant/input/inputPhone.vue
+++ b/.playground/pages/composant/input/inputPhone.vue
@@ -73,6 +73,23 @@
/>
+
+
Readonly (readonly vide)
+
+
+
+
+
Readonly (readonly rempli)
+
+
+
Avec hint
import { ref } from 'vue'
+const readonlyFilledPhone = ref('+33 6 12 34 56 78')
const phoneValue = ref('')
const phoneAddable = ref('')
const phoneFrench = ref('')
diff --git a/.playground/pages/composant/input/inputText.vue b/.playground/pages/composant/input/inputText.vue
index 2a118a9..fad5445 100644
--- a/.playground/pages/composant/input/inputText.vue
+++ b/.playground/pages/composant/input/inputText.vue
@@ -108,6 +108,25 @@
icon-size="20"
/>
+
+
Readonly (readonly vide)
+
+
+
+
+
Readonly (readonly rempli)
+
+
+
Champ obligatoire
import { computed, ref } from 'vue'
+const readonlyFilledValue = ref('Commande #A-2048')
const nameValue = ref('')
const searchValue = ref('')
const codeValue = ref('')
diff --git a/.playground/pages/composant/input/inputTextArea.vue b/.playground/pages/composant/input/inputTextArea.vue
index 677937a..2544b6b 100644
--- a/.playground/pages/composant/input/inputTextArea.vue
+++ b/.playground/pages/composant/input/inputTextArea.vue
@@ -61,6 +61,25 @@
+