Canvas Design System
Main Site Tokens

Alert

Notification banners for important messages, warnings, and status updates. Supports titles, actions, dismissible mode, and filled backgrounds.

Variants

<?= ws_alert('Your changes have been saved!', ['variant' => 'success']) ?>
<?= ws_alert('Please review the form', ['variant' => 'warning']) ?>
<?= ws_alert('An error occurred', ['variant' => 'error']) ?>

With Title

<?= ws_alert('Message here', [
    'variant' => 'warning',
    'title' => 'Alert Title'
]) ?>

Dismissible

<?= ws_alert('Message', ['dismissible' => true]) ?>

With Actions

<?= ws_alert('Message', [
    'variant' => 'info',
    'actions' => [
        ['text' => 'Action', 'href' => '/url'],
        ['text' => 'Another', 'onclick' => 'doSomething()']
    ]
]) ?>

Filled Variant

<?= ws_alert('Message', ['variant' => 'success', 'filled' => true]) ?>

Without Border

<?= ws_alert('Message', ['bordered' => false]) ?>