feat : ajout de state dans les histoires des composants

This commit is contained in:
2026-03-19 17:45:03 +01:00
parent 9d9b9c9dc4
commit 9843f4d032
6 changed files with 568 additions and 21 deletions

View File

@@ -1,9 +1,67 @@
<template>
<Story title="Input/Checkbox">
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Simple</h2>
<MalioCheckbox
v-model="simpleValue"
label="Accepter les conditions"
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Coché</h2>
<MalioCheckbox
v-model="checkedValue"
label="Newsletter activée"
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Avec hint</h2>
<MalioCheckbox
v-model="hintValue"
label="Recevoir les notifications"
hint="Vous pouvez désactiver à tout moment"
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Désactivé</h2>
<MalioCheckbox
v-model="disabledValue"
label="Option verrouillée"
disabled
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Readonly</h2>
<MalioCheckbox
v-model="readonlyValue"
label="Accepté par l'utilisateur"
readonly
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Erreur</h2>
<MalioCheckbox
v-model="errorValue"
label="Accepter les conditions"
error="Vous devez accepter les conditions"
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Succès</h2>
<MalioCheckbox
v-model="successValue"
label="Conditions acceptées"
success="Merci"
/>
</div>
</div>
</Story>
</template>
@@ -111,4 +169,10 @@ import {ref} from 'vue'
import MalioCheckbox from '../components/malio/Checkbox.vue'
const simpleValue = ref(false)
const checkedValue = ref(true)
const hintValue = ref(false)
const disabledValue = ref(true)
const readonlyValue = ref(true)
const errorValue = ref(false)
const successValue = ref(true)
</script>