{% extends 'base.html.twig' %} {% block title %}Tag - Design System - Bubul{% endblock %} {% block body %}
{% verbatim %}{# Tag simple #}
{% include '_atoms/tag/tag.html.twig' with {
label: 'JavaScript'
} %}
{# Tag supprimable #}
{% include '_atoms/tag/tag.html.twig' with {
label: 'React',
color: 'primary',
removable: true
} %}
{# Tag sélectionné #}
{% include '_atoms/tag/tag.html.twig' with {
label: 'Actif',
color: 'success',
selected: true
} %}{% endverbatim %}
Fichier : templates/_atoms/tag/tag.html.twig
Paramètre : size
Paramètre : color
Couleurs produits Bubul
Paramètre : removable: true
Cliquer sur × pour supprimer (nécessite JavaScript pour l'action)
Paramètre : selected: true
Non sélectionné vs Sélectionné
Groupe de filtres
Paramètre : icon
Normal
Sélectionné
Désactivé
Cliquable
Filtres actifs
Catégories
| Paramètre | Type | Défaut | Description |
|---|---|---|---|
label | string | (requis) | Texte du tag |
color | string | 'gray' | gray, primary, success, moodia, serenia... |
size | string | 'md' | sm, md, lg |
removable | bool | false | Afficher le bouton × |
icon | string | null | Nom de l'icône |
selected | bool | false | État sélectionné (fond plein) |
disabled | bool | false | État désactivé |
href | string | null | URL (rend le tag cliquable) |