{% extends 'base.html.twig' %} {% block title %}Action Bar - Design System - Bubul{% endblock %} {% block body %}
{% verbatim %}{% include '_molecules/action-bar/action-bar.html.twig' with {
actions: [
{ icon: 'eye', title: 'Voir', href: '/view/1' },
{ icon: 'edit', title: 'Modifier', href: '/edit/1' },
{ icon: 'trash', title: 'Supprimer', variant: 'danger', confirm: 'Êtes-vous sûr ?' }
]
} %}{% endverbatim %}
Paramètre action : variant
Paramètre : size
Paramètre : iconOnly: false
| Paramètre | Type | Défaut | Description |
|---|---|---|---|
actions | array | (requis) | Liste des actions |
actions[].icon | string | (requis) | Nom de l'icône |
actions[].title | string | null | Tooltip au survol |
actions[].label | string | null | Texte du bouton |
actions[].href | string | null | URL (rend un lien) |
actions[].variant | string | ghost | ghost, primary, danger, success |
actions[].confirm | string | null | Message de confirmation |
actions[].disabled | bool | false | Désactiver l'action |
size | string | sm | xs, sm, md |
iconOnly | bool | true | Afficher uniquement les icônes |