diff --git a/.playground/pages/composant/divers/readonly.vue b/.playground/pages/composant/divers/readonly.vue index f6bbcb5..e696909 100644 --- a/.playground/pages/composant/divers/readonly.vue +++ b/.playground/pages/composant/divers/readonly.vue @@ -136,6 +136,44 @@ +
+

MalioSelect

+
+ + +
+
+ +
+

MalioSelectCheckbox

+
+ + +
+
+

MalioDate

@@ -228,5 +266,10 @@ const countryOptions: Option[] = [ {label: 'Allemagne', value: 'de'}, ] +const categoryOptions: Option[] = [ + {label: 'Catégorie A', value: 'a'}, + {label: 'Catégorie B', value: 'b'}, +] + const rangeValue = ref<{start: string; end: string}>({start: '2026-12-20', end: '2026-12-31'}) diff --git a/.playground/pages/composant/select/select.vue b/.playground/pages/composant/select/select.vue index 19d2a02..9a300e6 100644 --- a/.playground/pages/composant/select/select.vue +++ b/.playground/pages/composant/select/select.vue @@ -103,6 +103,28 @@ />
+
+

Lecture seule (vide)

+ +
+ +
+

Lecture seule (rempli)

+ +
+

Liste longue

(null) const shortListValue = ref(null) const longListValue = ref(null) const bottomValue = ref(null) +const readonlyEmptyValue = ref(null) +const readonlyFilledValue = ref('fr') diff --git a/.playground/pages/composant/select/selectCheckbox.vue b/.playground/pages/composant/select/selectCheckbox.vue index 4764d96..20b0a6c 100644 --- a/.playground/pages/composant/select/selectCheckbox.vue +++ b/.playground/pages/composant/select/selectCheckbox.vue @@ -123,6 +123,28 @@ />
+
+

Lecture seule (vide)

+ +
+ +
+

Lecture seule (rempli)

+ +
+

Liste longue

>([]) const selectAllCustomValue = ref>([]) const longListValue = ref>([]) const bottomValue = ref>([]) +const readonlyEmptyValue = ref>([]) +const readonlyFilledValue = ref>(['fr'])