{% extends 'base.html.twig' %} {% block title %}Textarea - Design System - Bubul{% endblock %} {% block body %}
{% verbatim %}{# Textarea simple #}
{% include '_atoms/form/textarea.html.twig' with {
label: 'Description',
placeholder: 'Décrivez votre projet...',
rows: 4
} %}
{# Avec compteur de caractères #}
{% include '_atoms/form/textarea.html.twig' with {
label: 'Bio',
maxlength: 280,
showCount: true
} %}{% endverbatim %}
Fichier : templates/_atoms/form/textarea.html.twig
Paramètre : size
Paramètre : variant
Paramètre : rows
Paramètre : resize
Paramètres : maxlength, showCount
| Paramètre | Type | Défaut | Description |
|---|---|---|---|
label | string | null | Texte du label |
placeholder | string | '' | Placeholder |
value | string | '' | Valeur initiale |
rows | number | 4 | Nombre de lignes |
size | string | 'md' | sm, md, lg |
variant | string | 'default' | default, filled |
resize | string | 'vertical' | none, vertical, both |
maxlength | number | null | Limite de caractères |
showCount | bool | false | Afficher le compteur |
required | bool | false | Champ obligatoire |
disabled | bool | false | Champ désactivé |
error | string | null | Message d'erreur |
hint | string | null | Texte d'aide |