2.9.2

Accordion

Accordion Component in Bolt

Published

History
View changes
Install
yarn add @bolt/components-accordion
Source code
View on Github
Dependencies
@bolt/components-icon @bolt/core handorgel

The Accordion component is a vertical list of items, each of which can be expanded or collapsed to show more content.

Install via NPM
npm install @bolt/components-accordion
{% include "@bolt-components-accordion/accordion.twig" with { items: [ { trigger: "Accordion item 1", content: "This is the accordion content.", }, { trigger: "Accordion item 2", content: "This is the accordion content.", }, { trigger: "Accordion item 3", content: "This is the accordion content.", } ] } only %}

Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

Prop Name Description Type Default Value Option(s)
items

All of the items in the accordion. Each item should contain a header and a content.

array
  • [items]:
    • Type: object
    • Properties:
      • trigger

        Trigger content of an item.

        • Type: string , object , array
      • content

        Expandable content of an item.

        • Type: string , object , array
      • open

        Automatically expand an item on page load.

        • Type: boolean
      • inactive

        Display item trigger as an inactive element. Item content will be collapsed and the toggle icon hidden.

        • Type: boolean
      • uuid

        Unique ID for an item, randomly generated if not provided.

        • Type: string
      • open_label

        Accessible label for the open trigger to expand an item.

        • Type: string
      • close_label

        Accessible label for the close trigger to collapse an item.

        • Type: string
single

Allow only one section to open at a time.

boolean false
  • true, false
no_separator

Hides the separator in between items.

boolean false
  • true, false
box_shadow

Creates a box shadow around the accordion.

boolean false
  • true, false
spacing

Controls the inset spacing of each item.

string medium
  • none, xsmall, small, medium, large
icon_valign

Vertically align the accordion trigger content and trigger icon.

string center
  • top, center
Overview Usage Schema Edit this page
Accordion item 1
This is the accordion content.
Accordion item 2
This is the accordion content.
Accordion item 3
This is the accordion content.

By setting the single prop to true, it allows only one item to be opened at a time.

Single open item

Open one of these
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion items
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Will close the others
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Multiple open items (default)

Each of these
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion items
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Can open/close independently
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

By setting the no_separator prop to true, it will remove the separator in between items.

Accordion with separators

There are separators
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
In between the
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion items
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion without separators

There are no separators
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
In between the
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion items
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

By setting the box_shadow prop to true, it will create a box shadow around the accordion.

Box shadow

Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Box shadow, no separator

Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

No box shadow

Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

By setting the spacing prop to none, xsmall, small, medium, or large, it applies the appropriate inset spacing for each accordion item. The default is medium.

Spacing: none

Accordion item 1

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 2

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 3

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Spacing: xsmall

Accordion item 1

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 2

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 3

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Spacing: small

Accordion item 1

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 2

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 3

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Spacing: medium

Accordion item 1

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 2

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 3

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Spacing: large

Accordion item 1

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 2

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion item 3

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

By setting the icon_valign prop to top or center, it will vertically align the trigger and the icon accordingly.

Icon Valign: top

Accordion item 1 with a lot of text in the trigger, which could wrap to multiple lines, and this trigger and the icon are vertically aligned top
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Icon Valign: center

Accordion item 1 with a lot of text in the trigger, which could wrap to multiple lines, and this trigger and the icon are vertically aligned center
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Set the inactive prop to true on any accordion item to display the trigger as an inactive element. It will have the same font-styles as the other triggers but none of the interactive styles. It will not be clickable, and that item's content and toggle icon will always be hidden.

Active Accordion item

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Inactive Accordion item

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Active Accordion item

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion inside various themes

Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Accordion with shadow inside various themes

Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 1
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 2
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.
Accordion item 3
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Using the grid inside trigger and content

12:00 PM

Lunch & Networking

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit.

Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Get the presentation Watch video

12:00 PM

Lunch & Networking

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit.

Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Get the presentation Watch video

12:00 PM

Lunch & Networking

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at. Lorem ipsum dolor sit, amet consectetur adipisicing elit.

Neque minima nisi optio cumque esse ullam rerum reiciendis itaque iste, quod sunt explicabo, est eum quo aliquid hic commodi laboriosam at.

Get the presentation Watch video

Pass various components into the content

Expand this to see an image
Expand this to see a table
Column 1 Column 2 Column 3
Row 1 R1C1 R1C2 R1C3
Row 2 R2C1 R2C2 R2C3
Row 3 R3C1 R3C2 R3C3
Footer FC1 FC2 FC3
Expand this to see a share tool and a paragraph of text

This is a headline

This is regular text. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et.

Share this page LinkedIn
Expand this to see a video
Video Player is loading.
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time 0:00
 
1x
Expand this to see tabs
Tab label 1
Tab panel
Tab label 2
Tab panel
Tab label 3
Tab panel
Expand this to see a carousel

Example Q&A

What are the different ways we can debug an issue in Rest OR SOAP Connector?

You can debug the issues in connector through: 1) Tracing the connector activity if it is invoking through activity; 2) Add log message to the activity to check for logs; 3) If it is invoking through Data page, use response data transform to check for issues using when rules and invoke standard data transform template for logging along with email notification.

If the mapping of the data properties is in other systems then how can we retrieve those properties using REST Connector?

You can create a data object in Pega which will model the data you would like to retrieve. Create a data class and the properties that represent the data you would like to map. Create a REST connector and then reference that connector in a Data Page would be the way I would go about it. You can find more on integrations here: https://www1.pega.com/products/pega-platform/data-integrations.

Can I have an exposed column that contain data as long as 500 chars?

No, this should be irrelevant because the procedure of deleting the property and recreating it again works. This would also be the last thing I would want to do since all developments are on this and it would be overkilling to restart due to this. However, I would like to know if Pega internally prevents that, if so, how do I circumvent that?
Web Component Usage Bolt Accordion is a fully client-side renderable web component. Add the bolt-accordion element containing any number of bolt-accordion-item elements to create an accordion. Inside each bolt-accordion-item mark the "trigger" content with the attribute slot="trigger". Everything else is considered accordion "content".
Accordion item 1 Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 2 Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 3 Lorem ipsum dolor sit, amet consectetur adipisicing elit.
<bolt-accordion> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 1</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 2</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 3</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> </bolt-accordion>
Prop Usage Configure the accordion with the properties specified in the schema. One property that is unique to the Web component is no-separator. Use this prop rather than the separator prop used in Twig.
Accordion item 1 with a lot of text in the trigger, which could wrap to multiple lines, and this trigger and the icon are vertically aligned center Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 2 Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 3 Lorem ipsum dolor sit, amet consectetur adipisicing elit.
<bolt-accordion spacing="small" icon-valign="top" box-shadow no-separator multiple> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 1 with a lot of text in the trigger, which could wrap to multiple lines, and this trigger and the icon are vertically aligned center</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 2</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 3</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> </bolt-accordion>
Advanced Usage Two advanced options are shown below. Automatically show an bolt-accordion-item by adding the auto-open prop.
Accordion item 1 Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 2 This item is opened by default. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accordion item 3 Lorem ipsum dolor sit, amet consectetur adipisicing elit.
<bolt-accordion> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 1</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item auto-open> <bolt-text slot="trigger">Accordion item 2</bolt-text> <bolt-text>This item is opened by default. Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> <bolt-accordion-item> <bolt-text slot="trigger">Accordion item 3</bolt-text> <bolt-text>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</bolt-text> </bolt-accordion-item> </bolt-accordion>
2.9.2

Action blocks

Action Blocks Component in Bolt

Published

History
View changes
Install
yarn add @bolt/components-action-blocks
Source code
View on Github
Dependencies
@bolt/components-icon @bolt/core

Stylistic block layout for displaying actionable icon and text. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

Install via NPM
npm install @bolt/components-action-blocks

Description

Action blocks work as a group to provide the user an easy to browse list of options of relativeto take action to discover more information. They commonly exist as links to more detailed content.

Best Practices

  • Can use xlight, light, dark, and xdark themes.
  • Can have an image, icon, and/or text
  • Should link to content
  • Should be limited to 7 (soft limit) unless we're representing a large list of content that is meant to be scanned
  • Can wrap to many rows
  • Top aligned by default
  • Can be vertically centered
  • Are set with a border by default
  • Can be borderless
{% include "@bolt-components-action-blocks/action-blocks.twig" with { contentItems: [ { text: "Item 1", url: "#!", icon: { name: "icon-name", size: "large", background: "circle" } }, { text: "Item 2", url: "#!", icon: { name: "icon-name", size: "large", background: "circle" } }, { text: "Item 3", url: "#!", icon: { name: "icon-name", size: "large", background: "circle" } } ] } only %}

Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

Prop Name Description Type Default Value Option(s)
attributes

A Drupal-style attributes object with extra attributes to append to this component.

object
max_items_per_row

The max amount of items (action blocks) to be displayed in one row.

number 6
  • 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
valign

Vertical alignment of the content inside each action block.

string start
  • start, center, end
borderless

Removes the border in between each action block.

boolean false
  • true, false
content_items

Content items to populate the action blocks.

array
  • [items]:
    • Type: object
    • Properties:
      • text
        • Type: string
      • url
        • Type: string
      • icon
        • Type: object
        • Properties:
          • name
          • size
          • background
max_items_per_row

Use max_items_per_row prop instead.

align

Use valign prop instead.

border

Use borderless prop instead.

Overview Usage Schema Edit this page Testing Steps

Action Blocks inside a xlight themed container

Action Blocks inside a light themed container

Action Blocks inside a dark themed container

Action Blocks inside a xdark themed container

2.9.2

Bolt Background

Background Component in Bolt

Published

History
View changes
Install
yarn add @bolt/components-background
Source code
View on Github
Dependencies
@bolt/components-background-shapes @bolt/core

Background can be added to any container. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

Install via NPM
npm install @bolt/components-background

Description

Background allows Bolt to set an image inside of bands.

  • Can set an image inside the band
  • Can set background shapes
  • Can set focus on the left
  • Can set focus on the right
  • Can set light, medium, or heavy opacity
  • Can set a left, right, or center gradient

We recommend a max-width of 2880px for full-bleed background images. This recommendation takes into consideration the common HD screen resolution of 1920x1080 and multiplies 1920 by 1.5.

{% include "@bolt-components-background/background.twig" with { opacity: "heavy", fill: "gradient", focalPoint: { vertical: "center", horizontal: "center" }, contentItems: [ { pattern: "image", src: "/images/content/backgrounds/background-tall-4.jpg" } ] } only %}

Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

Prop Name Description Type Default Value Option(s)
attributes

A Drupal-style attributes object with extra attributes to append to this component.

object
opacity

Overlay opacity

string medium
  • light, medium, heavy
overlay

Should an overlay be used for this background.

string enabled
  • enabled, disabled
shape_group

Add a Bolt Background Shapes group.

string
  • A, B, none
shape_alignment

Alignment of shape group.

string right
  • left, right
fill

Type of fill to use for the overlay.

string
  • color, gradient
focal_point

Where the opacity background should originate.

object
    • horizontal

      Currently only reverses gradient on 'left'.

      • center, left, right
    • vertical

      Currently doesn't use this value. Intended future application.

      • center, top, bottom
content_items

An array of objects to place in the background. Works with Image and Shape components. Video option is deprecated.

array
  • [items]:
    • Type: object
    • Properties:
    Overview Usage Schema Edit this page

    Light Opacity

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Medium Opacity

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Heavy Opacity

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Heavy Opacity with Left Focal Point

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Heavy Opacity with Right Focal Point

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Background Shapes: Shape Group A

    circle-square
    Outline Circle
    square-square
    Little Circle
    square-square
    Little Circle

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Background Shapes: Shape Group B

    square-square
    Outline Circle
    square-square
    Little Circle
    circle-circle
    Outline Circle

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Background Shapes: Shape Group A, Alignment Left

    circle-square
    Outline Circle
    square-square
    Little Circle
    square-square
    Little Circle

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Fill: Color

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Fill: Gradient

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    Note: valign is an Image component prop, not a Background component prop. Set valign on images passed in via contentItems to control the vertical alignment.

    valign: center

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    valign: top

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    valign: bottom

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet

    valign: 25%

    Visualization & Simulation

    Imagine the Future with Decision Hub

    Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

    View the data sheet
    2.9.2

    Background shapes

    Background Component Shapes in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-background-shapes
    Source code
    View on Github
    Dependencies
    @bolt/core

    A grid of colored vector shapes for use in backgrounds. Part of the Bolt “Components” CSS framework that powers the Bolt Design System. This component will likely not be used on its own, but rather will be a dependency of another component that includes it.

    Install via NPM
    npm install @bolt/components-background-shapes
    

    Description

    Background shapes bring the brand further into Bolt. These shapes create a background texture for bands. The shapes are offset at an angle offset inside a band component.

    Best Practices

    • Set to the right side of the band if there is copy on the left.
    • Set to the left side of the band if there is copy on the right.
    • Shapes can be used behind cards or thumbnail images (video or just image) but should not make the content hard to consume by the user.
    • Shapes should not be used behind any text elements. Doing so makes the text hard to read.
    • Don't use background shapes if it makes the content in the band hard to parse
    {% include "@bolt-components-background-shapes/background-shapes.twig" with { shapeGroup: "B" } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    shape_group

    The shapeGroup to use to build the shapes layout.

    string A
    • A, B
    Overview Usage Schema Edit this page Testing Steps
    square-square
    Outline Circle
    square-square
    Little Circle
    circle-circle
    Outline Circle

    shapeGroup: A

    circle-square
    Outline Circle
    square-square
    Little Circle
    square-square
    Little Circle

    shapeGroup: B

    square-square
    Outline Circle
    square-square
    Little Circle
    circle-circle
    Outline Circle
    2.9.2

    Band

    Band Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-band
    Source code
    View on Github
    Dependencies
    @bolt/components-background @bolt/components-grid @bolt/core

    Band is a general content container with spacing and background options. Part of the Bolt Design System.

    Install via NPM
    npm install @bolt/components-band
    
    {% include "@bolt-components-band/band.twig" with { content: "This is a band.", } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    attributes

    A Drupal-style attributes object with extra attributes to append to this component.

    object
    content

    Main content of the band.

    string , array , object
    pinned_content

    Pinned content of the band.

    object
      • upper

        Pinned to the upper area of the band.

          • content

            A pinned area can contain 1 or more items.

          • align

            Horizontal alignment of a single item.

            • start, center, end
      • lower

        Pinned to the lower area of the band.

          • content

            A pinned area can contain 1 or more items.

          • align

            Horizontal alignment of a single item.

            • start, center, end
    tag

    Controls the semantic HTML tag to use for the band's content.

    string div
    • div, article, section, header, footer, nav, figure
    size

    Controls the vertical spacing of the band.

    string medium
    • none, xsmall, small, medium, large
    full_bleed

    If set to true, the band will take the full width of the page.

    boolean true
    • true, false
    theme

    Controls the theme of the band.

    string dark
    • none, xlight, light, dark, xdark
    row_gutter

    Please use pinned_content. Instructions on how to use pinned_content is on the Band with Pinned Content demo page.

    content_row_start

    Please use pinned_content. Instructions on how to use pinned_content is on the Band with Pinned Content demo page.

    items

    Please use content and pinned_content. Instructions on how to use pinned_content is on the Band with Pinned Content demo page.

    full_bleed

    This prop has been renamed. Please use full_bleed.

    content_tag

    This prop is no longer needed. tag takes care of the semantic markup automatically.

    Overview Usage Schema Edit this page Testing Steps

    band

    This is a band.
    This is a band with size set to none.
    This is a band with size set to xsmall.
    This is a band with size set to small.
    This is a band with size set to medium.
    This is a band with size set to large.
    This is a band with theme set to none.
    This is a band with theme set to xlight.
    This is a band with theme set to light.
    This is a band with theme set to dark.
    This is a band with theme set to xdark.

    Setting the container's HTML tag to: div

    This is a band.

    Setting the container's HTML tag to: article

    This is a band.

    Setting the container's HTML tag to: section

    This is a band.

    Setting the container's HTML tag to: header

    This is a band.

    Setting the container's HTML tag to: footer

    This is a band.

    Setting the container's HTML tag to: nav

    Setting the container's HTML tag to: figure

    This is a band.

    Note: turn off full bleed option if you don't want the band to span the full width of the page.

    Full bleed

    This band spans the full width of the page, it ignores the spacing of its parent container.

    This is a band.

    Not full bleed

    This band only takes up the available space within its parent container, it accounts for the spacing of its parent container.

    This is a band.

    Each pinned area (upper and lower) can have 1 or more items, spacing will be evenly distributed

    upper pinned 1
    upper pinned 2
    upper pinned 3

    This Is a Headline

    This Is a Subheadline

    This is a button
    lower pinned 1
    lower pinned 2
    lower pinned 3
    Share this page LinkedIn

    This Is a Headline

    This Is a Subheadline

    This is a button

    When there is only 1 item, you can set the align prop to your liking (start, center, end)

    Share this page LinkedIn

    This Is a Headline

    This Is a Subheadline

    This is a button

    Note: please convert the deprecated items prop to the new pinned_content prop.

    Deprecated items prop usage

    {% include "@bolt-components-band/band.twig" with { content: content, items: [ { position: { align: "end", valign: "center", row_start: 1, column_start: 1, column_end: 12, }, content: pinned_share, }, ] } only %}

    New pinned_content prop usage

    {% include "@bolt-components-band/band.twig" with { content: content, pinned_content: { upper: [ { content: pinned_share, align: "end", }, ], } } only %}

    This Band Has a Backround Image

    This is a button

    This Band Has 2 Bands Nested Inside

    Nested band 1
    Nested band 2

    This Is a Flag

    With text on the left and CTAs on the right.

    Primary action Secondary action

    This Is an Eyebrow

    This Is a Headline

    This Is a Subheadline

    This is a paragraph.

    This is a button
    Block List Item 1 Block List Item 2 Block List Item 3

    Collection 1

    Collection 2

    Collection 3

    2.9.2

    Block List

    Block-list Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-block-list
    Source code
    View on Github
    Dependencies
    @bolt/core

    Block list for stacked full-width content. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

    Install via NPM
    npm install @bolt/components-block-list
    
    {% include "@bolt-components-block-list/block-list.twig" with { items: [ include("@bolt-components-link/link.twig", { text: "Link 1", url: "#!", icon: { name: "chevron-right", position: "before" } }), include("@bolt-components-link/link.twig", { text: "Link 2", url: "#!", icon: { name: "chevron-right", position: "before" } }), include("@bolt-components-link/link.twig", { text: "Link 3", url: "#!", icon: { name: "chevron-right", position: "before" } }), "Simple text example" ] } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    attributes

    A Drupal-style attributes object with extra attributes to append to this component.

    object
    items

    All of the items in the block list - can have simple text oritems

    array
    Overview Usage Schema Edit this page Testing Steps
    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    Theme: xlight

    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    Theme: light

    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    Theme: medium

    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    Theme: dark

    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    Theme: xdark

    • Link 1
    • Link 2
    • Link 3
    • Simple text example

    2.10.0

    Blockquote

    Blockquote Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-blockquote
    Source code
    View on Github
    Dependencies
    @bolt/components-headline @bolt/components-image @bolt/components-logo @bolt/components-text @bolt/core

    Stylistic pull quote styles for all types of layout. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

    Install via NPM
    npm install @bolt/components-blockquote
    

    Description

    Block quotes provide testimonials throughout the pega experience.

    Content that can be contained in a blockquote

    • Logo or image (optional)
    • Quote
    • Attributor image (optional)
    • Attributor name (optional)
    • Attributor title (optional)
    • Attributor company (optional)

    Additional info

    • Can be full width or confined with the grid
    • Can be left, center, or right aligned
    • can have top+bottom horizontal lines, a left or right vertical line, or no lines
    • Text is open sans
    • Quote marks are NOT inch marks
    • Quote marks are system font Georgia
    • Text color changes based on the theme colors
    {% include "@bolt-components-blockquote/blockquote.twig" with { content: "<p>The greater danger for most of us lies not in ... achieving our mark.</p>" } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    attributes

    A Drupal-style attributes object with extra attributes to append to this component.

    object
    content *

    Text to appear in blockquote (Twig only). May be plain text or text wrapped in

    <

    p> tags.

    string
    size

    Text size.

    string xlarge
    • large, xlarge, xxlarge
    align_items

    Aligns items left, center, or right.

    string left
    • left, center, right
    border

    Add a border.

    string vertical
    • vertical, horizontal, none
    indent

    Indent text.

    boolean false
    full_bleed

    Width of the brower window.

    boolean false
    no_quotes

    Hide quotation marks.

    boolean false
    logo

    Add a logo component.

    object
    • @bolt-components-logo/logo.schema.yml > Object details
      • invert

        Set to true to invert the logo colors.


        Type: boolean
    author

    Author of the quote.

    object
      • name

        Author's name.

      • title

        Author's title.

      • image
        • @bolt-components-image/image.schema.yml > Object details
          • attributes

            A Drupal-style attributes object with extra attributes to append to this component.


            Type: object
          • src

            Source url for image.


            Type: string
          • alt

            Alt tag for image.


            Type: string
          • lazyload

            Lazyload can boost performance by loading images on demand, instead of on initial page load.


            Type: boolean
            • true, false
          • no_lazy

            Override the default lazyload behavior. Used only on the web component, where the presence of a boolean property always equates to true.


            Type: boolean
            • true, false
          • placeholder_color

            A valid CSS background color property shown while image loads.


            Type: string
          • placeholder_image

            Image path or image data shown while image loads.


            Type: string
          • srcset

            A comma seperated string of image urls and image widths, used for optimizing image loading performance.


            Type: string
          • sizes

            A list of one or more strings separated by commas indicating a set of source sizes. Each source size consists of a media condition (omitted for the last item), and a source size value. Learn more.


            Type: string
          • useAspectRatio

            Use the ratio prop instead.


            Type: boolean
            • true, false
          • ratio

            Set the aspect ratio for the image via slash-separated width and height values, e.g. 4/3. Currently required for aspect ratio to be applied properly. Set to "none" to opt out of aspect ratio.


            Type: string, boolean
          • max_width

            Set the max-width of the image as a valid CSS value, e.g. "300px" or "50%".


            Type: string
          • width

            Override the default width of the image. If no height is provided, aspect ratio will be maintained.


            Type:
          • height

            Override the default height of the image. If no width is provided, aspect ratio will be maintained.


            Type:
          • cover

            Set an image to fill its container.


            Type: boolean
            • true, false
          • imageAttributes

            A Drupal-style attributes object with extra attributes to append to this component.


            Type: object
          • valign

            Allows the image's vertical alignment behavior to be customized in certain situations (ex. background images). This can be configured via a pre-defined position (top | center | bottom) or via specific pixel or percent offset (ex. 30%).


            Type: string
    Overview Usage Schema Edit this page Testing Steps

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    alignItems: left

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    alignItems: center

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    alignItems: right

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Indent: True

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Indent: False

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Border: vertical

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Border: horizontal

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Border: none

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    No quotes

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    Multiple Paragraph Content

    Blockquote can have one paragraph. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus.

    Or it can have multiple paragraphs. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci.

    Mike Mai Pegasystems

    theme: xlight

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    theme: light

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    theme: dark

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist

    theme: xdark

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    Michelangelo di Lodovico Buonarroti Simoni Renaissance Artist
    Web Component Usage Bolt Link is a web component that renders a semantic blockquote with Bolt styles. For a simple blockquote, wrap your quote content in the <bolt-blockquote> custom element. Note: you must wrap your quote text in <p> tags for the appropriate quotation marks to appear. Add attribution to the quote by adding the author-name, author-title, and author-image attributes to <bolt-blockquote>.

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    <bolt-blockquote author-name="Michelangelo di Lodovico Buonarroti Simoni" author-title="Renaissance Artist" author-image="/images/placeholders/500x500.jpg"> <p>The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.</p> </bolt-blockquote>
    Additional Options Apply additional configuration options via attributes on the <bolt-blockquote> element. Attribute names and values match the Twig schema but use "kebab-case" instead of "camelCase". For example, alignItems becomes align-items.

    The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.

    <bolt-blockquote align-items="center" border="horizontal" author-name="Michelangelo di Lodovico Buonarroti Simoni" author-title="Renaissance Artist" author-image="/images/placeholders/500x500.jpg"> <p>The greater danger for most of us lies not in setting our aim too high and falling short; but in setting our aim too low, and achieving our mark.</p> </bolt-blockquote>
    Advanced Usage To add a logo to <bolt-blockquote> place logo content (for example: <bolt-logo> or <img>) next to blockquote text, and add the attribute slot="logo" to the logo's outermost container.
    PayPal Logo

    The greater danger for most of us lies not in setting our aim too high and falling short...

    In fact, the greater danger is setting our aim too low and achieving our mark.

    <bolt-blockquote author-name="Michelangelo di Lodovico Buonarroti Simoni" author-title="Renaissance Artist" author-image="/images/placeholders/500x500.jpg"> <img slot="logo" src="/images/content/logos/logo-paypal.svg" alt="PayPal Logo"> <p>The greater danger for most of us lies not in setting our aim too high and falling short...</p> <p>In fact, the greater danger is setting our aim too low and achieving our mark.</p> </bolt-blockquote>
    2.9.2

    Breadcrumb

    Breadcrumb Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-breadcrumb
    Source code
    View on Github
    Dependencies
    @bolt/core

    Stylistic pull quote styles for all types of layout. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

    Install via NPM
    npm install @bolt/components-breadcrumb
    
    {% include "@bolt-components-breadcrumb/breadcrumb.twig" with { contentItems: [ include("@bolt-components-link/link.twig", { text: "Home", url: "#!" }), include("@bolt-components-link/link.twig", { text: "Landing Page", url: "#!" }), include("@bolt-components-link/link.twig", { text: "Sub Page", url: "#!" }), "Current Page" ] } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    attributes

    A Drupal-style attributes object with extra attributes to append to this component.

    object
    content_items

    Breadcrumb pieces.

    array
    Overview Usage Schema Edit this page Testing Steps

    Breadcrumb Component in a Band ^

    The above example shows a xsmall band containing the breadcrumbs.

    Eyebrow

    Headline

    Subheadline

    Body text.

    • Call to Action

    Breadcrumb Band Stacking On Top of Featured Band ^

    The above example shows a small band containing the breadcrumbs and large band containing the content. Both have theme set to none.

    Background and Theming

    There is an outer band containing the breadcrumb band and the featured band, background and theme should be set on that outer band.

    Digital Transformation

    Be Future Empowered

    Start with the outcomes you want.

    Digital transformation is more than a slick new mobile app. It demands the hard work of designing for customer outcomes. Pega software gives you the power to truly transform.

    • Get Smart

    Breadcrumb Band Stacking On Top of Featured Band with Outer Background Band ^

    The above example shows a small band containing the breadcrumbs and large band containing the content. Both have theme set to none.

    Background and Theming

    A background image is set on the outer band and the theme is set to dark.

    Digital Transformation

    Be Future Empowered

    Start with the outcomes you want.

    Digital transformation is more than a slick new mobile app. It demands the hard work of designing for customer outcomes. Pega software gives you the power to truly transform.

    • Get Smart

    Breadcrumb Band Stacking On Top of Featured Band (individually themed)^

    The above example shows a xsmall band containing the breadcrumbs and large band containing the content.

    Background and Theming

    No background or theme is set on the outer band in this case because it's not neccessary.

    2.9.2

    Bolt Button

    Button Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-button
    Source code
    View on Github
    Dependencies
    @bolt/components-icon @bolt/core

    Bolt's Component Explorer is being upgraded. It'll return in a future release!

    Button is a branded component to convey call to action. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

    Install via NPM
    npm install @bolt/components-button
    

    Description

    Buttons are the core of our action components. Their affordance is immediate and can be use for most actions and allow users to access the target with a single interaction. Buttons clearly provide a next step for the user.

    Our Buttons depend on the theme they are contained in and change in appearance based on said theme. The themes and button colors were designed together to ensure the proper amount affordance and clarity.

    Xlight and light themes

    • Primary: Light Indigo container with white text
    • Secondary: white button with indigo text
    • Text button: Light indigo text with chevron

    Dark and xdark themes

    • Primary: Yellow container with default indigo text
    • Secondary: white button with indigo text
    • Text button: white text with chevron

    • Currently only have one defined size (though other options can and will be defined in the future)

    • Can be 100% width of the wrapper for mobile or card instances
    • Can optionally be 100% width. For example, the button has default width of 2 rem on either side on larger screens but full width on smaller screens

    Dos

    • CTAs must be clearly and succinctly labeled with a next step
    • CTA should lead with strong action verbs
    • The primary CTA should be the most important action.
    • Be consistent in placement based on the screen size and device
    • Fall back to the text button in secondary and tertiary content areas where you can. For example, cards with a button use the text style so that a filled button doesn't become overwhelming and redundant.
    • Follow theming rules

    Don'ts

    • Don't clutter the page with too many buttons
    • Don't mix and match themes and their button colors. For example, do not use the indigo button on dark and xdark themes as the indigo button does not stand out enough.
    • Don't mix and match colors outside the theme, see button groups.
    {% include "@bolt-components-button/button.twig" with { text: "This is a button" } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    attributes

    A Drupal-style attributes object with extra attributes to append to this component.

    object
    text *

    Text inside the button.

    string
    transform

    Transforms the button text to various cases.

    string none
    • uppercase, lowercase, capitalize, none
    type

    Determines the button tag type for semantic buttons

    string
    • button, submit, reset
    size

    Size of the button.

    string medium
    • xsmall, small, medium, large, xlarge
    style

    Style of the button determined by information hierarchy.

    string primary
    • primary, secondary, text
    width

    Controls the width of the button.

    string auto
    • auto, full, full@small
    border_radius

    Rounds the corners of the button.

    string regular
    • regular, full
    align

    Horizontal alignment of items (text and icon) inside the button. Note: the values left and right are deprecated, use start and end instead.

    string center
    • start, center, end
    icon

    Icon data as expected by the icon component. Accepts an additional position prop that determines placement within the button.

    object
    • @bolt-components-icon/icon.schema.json > Object details
      • attributes

        A Drupal-style attributes object with extra attributes to append to this component.


        Type: object
      • name

        Icon name.


        Type: string
        • academy, add-open, add-solid, agile, app-development, app-exchange, arrow-left, asset-data, asset-infographic, asset-interactive, asset-link, asset-media, asset-podcast, asset-presentation, asset-text, asset-video, bolt-logo-colored, brand-operations, calendar, careers, case-management, chart-bar, check, check-circle, check-solid, chevron-down, chevron-left, chevron-right, chevron-up, close, close-circled, close-open, close-solid, cloud, co-browse, communications, copy-to-clipboard, credit-card, customer-decision-hub, customer-onboarding, customer-service, data-integrations, documentation, download, email, energy, entertainment, exclamation, exit-full-screen, external-link, eye, eye-off, face-happy, face-sad, facebook, facebook-solid, field-service, field-service-gray, filter, financial, full-screen, github, global, government, healthcare, hospitality, industries, info-open, info-solid, insurance, integration, intelligent-virtual-assistant, java, knowledgebase, launchpad, life-sciences, linkedin, linkedin-solid, lock, manufacturing, map-pin, map-pin-solid, marketing, marketing-gray, menu, minus-open, minus-solid, mobility, more, omni-channel, partners, pencil, platform, podcast, print, product, product-delivery, refresh, reporting, retail, robo-auto, sales-automation, scalability, search, share, star-solid, support, system-admin, training, transportation, twitter, twitter-solid, unlock, upload, user, user-interface, video, vision, warning, watch, workforce-intelligence, youtube-solid
      • background

        Background shape. This applies only to 'xlarge' icons.


        Type: string
        • circle, square
      • size

        Icon size.


        Type: string
        • small, medium, large, xlarge
      • color

        Icon color. Currently only support default (black) and teal.


        Type: string
        • teal, blue
    icon_only

    Make the button to display only the icon and hide the text (which is still required). You are required to pass both text and icon data for this option to work.

    boolean false
    item_alignment

    Use the align parameter instead.

    rounded

    Use the border_radius parameter instead.

    tag

    Switch to using the new type prop instead.

    string button
    • a, link, button, submit, reset
    Overview Usage Schema Edit this page Testing Steps
    This is a button

    Note: medium is the default size.

    This is a xsmall button

    This is a small button

    This is a medium button

    This is a large button

    This is a xlarge button

    Note: interactive states only appear when the user interacts with the button, they are not styles that are available for use.

    Regular States

    Primary button Primary button (disabled) Secondary button Secondary button (disabled) Text button Text button (disabled)

    Interactive States

    Primary button (focus) Primary button (hover) Primary button (active) Secondary button (focus) Secondary button (hover) Secondary button (active) Text button (focus) Text button (hover) Text button (active)

    Buttons inside a xdark theme

    Primary button Secondary button Text button

    Buttons inside a dark theme

    Primary button Secondary button Text button

    Buttons inside a light theme

    Primary button Secondary button Text button

    Buttons inside a xlight theme

    Primary button Secondary button Text button

    Note: full@small means that the button will go from auto width to full width when the browser goes below the small breakpoint.

    This is a auto width button

    This is a full width button

    This is a full@small width button

    This button has regular border radius

    This button has full border radius

    Note: the align prop only works with full width buttons.

    This button's items are aligned to the start

    This button's items are aligned to the center

    This button's items are aligned to the end

    This button has text tranform of uppercase

    This button has text tranform of lowercase

    This button has text tranform of capitalize

    This button has text tranform of none

    This button's tag is defined as: a

    This button's tag is defined as: link

    This button's tag is defined as: button

    This button's tag is defined as: submit

    This button's tag is defined as: reset

    Note: when passing icons inside a button, it is required to define the icon's position, by default it is set to after, which means the icon will come after the text.

    Icon position set to before

    This button has text and icon

    Icon position set to after

    This button has text and icon

    Note: an icon-only button still is still required to have text, and that text is accessible through screen readers. It's just visually hidden.

    This button's text is still accessible, it's just visually hidden. Xsmall icon-only button

    This button's text is still accessible, it's just visually hidden. Small icon-only button

    This button's text is still accessible, it's just visually hidden. Medium icon-only button

    This button's text is still accessible, it's just visually hidden. Large icon-only button

    This button's text is still accessible, it's just visually hidden. Xlarge icon-only button

    Full border radius (circle icon-only button)

    This button's text is still accessible, it's just visually hidden.

    Examples with different icons

    This button's text is still accessible, it's just visually hidden. This button's text is still accessible, it's just visually hidden. This button's text is still accessible, it's just visually hidden. This button's text is still accessible, it's just visually hidden. This button's text is still accessible, it's just visually hidden. This button's text is still accessible, it's just visually hidden.

    Add a js- target class for the button to perform something through javascript

    Toggle theme with javascript
    Web Component Usage Bolt Button is a web component, you can simply use <bolt-button> in the markup to make it render.
    This is a button
    <bolt-button url="https://pega.com"> This is a button </bolt-button>
    Basic Usage To use icon in combination with text within the button, you must pass <bolt-icon> with a slot attribute defined as either before or after. Note: the slot attribute is required in order for the icon to be placed and spaced correctly within the button. Even if icon-only option is turned on, slot is still required.

    This is a button

    This is a button

    This is a button

    <p> <bolt-button> <bolt-icon name="chevron-left" slot="before"></bolt-icon> This is a button </bolt-button> </p> <p> <bolt-button> <bolt-icon name="chevron-right" slot="after"></bolt-icon> This is a button </bolt-button> </p> <p> <bolt-button icon-only> <bolt-icon name="close" slot="before"></bolt-icon> This is a button </bolt-button> </p>
    Advanced Usage The web component has all the options shown in the schema table. You can define each prop within the <bolt-button> element. Use unique combinations to customize a button to your liking. Note: the style prop is named color instead.
    This is a button
    <bolt-button url="https://pega.com" size="large" color="secondary" border-radius="full" tag="a" icon-only > <bolt-icon name="menu" slot="before"></bolt-icon> This is a button </bolt-button>
    Server-side Rendered Web Components (Experimental) The <bolt-button> component, among many other web components in Bolt, will support server-side rendering via the new upcoming {% filter bolt_ssr %} custom Twig filter. Check out the docs on server-side rendering for information!
    <bolt-button> This is a button <bolt-icon name="chevron-right" slot="after"></bolt-icon> </bolt-button>
    2.9.2

    Button Group

    Button Group Component in Bolt

    Published

    History
    View changes
    Install
    yarn add @bolt/components-button-group
    Source code
    View on Github
    Dependencies
    @bolt/components-button @bolt/components-headline @bolt/core

    Button-group can contain multiple buttons. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

    Install via NPM
    npm install @bolt/components-button-group
    

    Description

    Button groups are a horizontal set of actions with a hierarchy that defines the spacing and their relationship between each other. This set of actions help people under stand their options with potential next steps.

    Button padding left is 1rem when there are multiple buttons in a horizontal row.

    Dos

    • Follow the button component guidelnes
    • Separate buttons by 1rem
    • Make sure the CTAs have a relationship with each other. If they don't reevaluate the content structure.
    • Be sure to consider the horizontal group of actions in smaller, less optimal sizes.
    • Be sure to determine the hierarchy of the CTAs in the group. These patterns are good:
      • Primary + secondary + text button
      • Secondary + text button
      • Primary + text button

    Don'ts

    • Don't have multiple primary buttons grouped together
    • Don't have LESS than 1rem separating buttons
    • Don't have MORE than 1rem separating buttons
    • Don't have CTAs grouped together that do not relate to one another.

    NOTE: We currently do not have joined buttons (eg, no gap, single button with two sides), but this is something to consider moving forward.

    {% include "@bolt-components-button-group/button-group.twig" with { buttons: [ { text: "Learn More", style: "primary" }, { text: "About Pega", style: "secondary" } ] } only %}

    Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

    Prop Name Description Type Default Value Option(s)
    tag

    Html tag to wrap the button group.

    string
    • ul, ol
    buttons

    An array of button objects.

    array
    • [items]:
      • Type: object

        Bolt button information.

      • Properties:
      content_items

      An array of bolt objects.

      array
      • [items]:
        • Type: object

          Bolt component information.

        • Properties:
        content

        A string of content to place in the button group.

        string
        Overview Usage Schema Edit this page Testing Steps
        • Learn More
        • About Pega
        • Example
        • About Pega

        1 Button(s)

        • Learn More

        2 Button(s)

        • Learn More
        • Learn More

        3 Button(s)

        • Learn More
        • Learn More
        • Learn More

        4 Button(s)

        • Learn More
        • Learn More
        • Learn More
        • Learn More

        5 Button(s)

        • Learn More
        • Learn More
        • Learn More
        • Learn More
        • Learn More
        Example About Pega

        This is text with the tags stripped.

        2.10.0

        Card

        Card Component in Bolt

        Published

        History
        View changes
        Install
        yarn add @bolt/components-card
        Source code
        View on Github
        Dependencies
        @bolt/components-teaser @bolt/core
        Install via NPM
        npm install @bolt/components-card
        

        Description

        The preview card presents users as a way of taking action to discover more information. They commonly exist as links to more detailed long-form content, links off-site, and occasionally inline videos.

        Best Practices

        • Placement should be in a manner where it is easily scannable
        • The headline should call out what the benefit is of clicking through
        • Avoid cluttering a card with too many calls to action
        • If the headline can work as link affordance without a button, don't have a button
        • If the headline does not clearly invoke action, use a CTA at the bottom of the card to entice the user
        {% include "@bolt-components-card/card.twig" with { tag: "article", contentItems: [ { pattern: "image", src: "/images/sample/anthem-video.jpg", alt: "Anthem Video" }, { pattern: "eyebrow", text: "Video" }, { pattern: "headline", tag: "h3", size: "large", text: "Anthem: Service Desktop" }, { pattern: "text", text: "Anthem debuts its next-generation service desktop, driving frictionless customer experiences." }, { pattern: "button", width: "full", text: "Get the report" } ] } only %}

        Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

        Prop Name Description Type Default Value Option(s)
        tag

        Html tag immediately within the bolt-card element.

        string
        • div, article, section, figure
        content_tag

        Html tag immediately within the bolt-card element.

        string
        • div, article, section, figcaption
        theme

        Bolt theme.

        string
        • xlight, light, dark, xdark
        url

        Providing a URL will make the entire card link to another resource. This is a future prop and does not do anything right now.

        string
        Overview Usage Schema Edit this page Testing Steps

        card

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video Player is loading.
        Current Time 0:00
        Duration -:-
        Loaded: 0%
        Stream Type LIVE
        Remaining Time 0:00
         
        1x

        Video

        Video Meta Title Goes Here.

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Body text. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

        Cards in a band

        Eyebrow

        Headline

        Body text. Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Remove Eyebrow and Button

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Remove Image, Eyebrow, and Button

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Individual themed cards in a band

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Individual themed cards in a band w/ background image

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Non-themed cards in a band w/ background image

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Video

        Anthem: Service Desktop

        Anthem debuts its next-generation service desktop, driving frictionless customer experiences.

        Personalized card test, client-rendered, with a large delay

        Before:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        Personalized card test, client-rendered, with a small delay

        Before:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        Personalized card test, client-rendered, without a delay

        Before:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        Personalized card test, server-rendered, with a large delay

        Before:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        Personalized card test, server-rendered, with a small delay

        Before:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        Personalized card test, server-rendered, without delay

        Before:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        After:

        Philips Healthcare develops apps faster

        See how Philips Healthcare uses the latest in Digital Process Automation (DPA) to improve health outcomes and foster patient engagement.

        2.10.0

        Chip

        Chip Component in Bolt

        Published

        History
        View changes
        Install
        yarn add @bolt/components-chip
        Source code
        View on Github
        Dependencies
        @bolt/components-icon @bolt/core

        Pill like container for displaying meta data text. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

        Install via NPM
        npm install @bolt/components-chip
        
        {% include "@bolt-components-chip/chip.twig" with { text: "This is a chip", url: "#!", } only %}

        Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

        Prop Name Description Type Default Value Option(s)
        attributes

        A Drupal attributes object. Used to apply with extra HTML attributes to the outer <bolt-chip> tag.

        object
        text *

        Text content of the chip.

        string , array , object
        size

        Controls the size of the chip.

        string small
        • xsmall, small, medium
        url

        Optional. Contains a URL that the chip points to. When URL is present, tag changes to a, otherwise tag would be span.

        string
        target

        Specifies where to display the linked URL. This may also be passed as part of attributes.

        string
        icon

        Bolt icon. Accepts the same options as Bolt Icon Component @bolt-components-icon plus an additional 'position' parameter that determines placement within the button.

        object
        • @bolt-components-icon/icon.schema.json > Object details
          • attributes

            A Drupal-style attributes object with extra attributes to append to this component.


            Type: object
          • name

            Icon name.


            Type: string
            • academy, add-open, add-solid, agile, app-development, app-exchange, arrow-left, asset-data, asset-infographic, asset-interactive, asset-link, asset-media, asset-podcast, asset-presentation, asset-text, asset-video, bolt-logo-colored, brand-operations, calendar, careers, case-management, chart-bar, check, check-circle, check-solid, chevron-down, chevron-left, chevron-right, chevron-up, close, close-circled, close-open, close-solid, cloud, co-browse, communications, copy-to-clipboard, credit-card, customer-decision-hub, customer-onboarding, customer-service, data-integrations, documentation, download, email, energy, entertainment, exclamation, exit-full-screen, external-link, eye, eye-off, face-happy, face-sad, facebook, facebook-solid, field-service, field-service-gray, filter, financial, full-screen, github, global, government, healthcare, hospitality, industries, info-open, info-solid, insurance, integration, intelligent-virtual-assistant, java, knowledgebase, launchpad, life-sciences, linkedin, linkedin-solid, lock, manufacturing, map-pin, map-pin-solid, marketing, marketing-gray, menu, minus-open, minus-solid, mobility, more, omni-channel, partners, pencil, platform, podcast, print, product, product-delivery, refresh, reporting, retail, robo-auto, sales-automation, scalability, search, share, star-solid, support, system-admin, training, transportation, twitter, twitter-solid, unlock, upload, user, user-interface, video, vision, warning, watch, workforce-intelligence, youtube-solid
          • background

            Background shape. This applies only to 'xlarge' icons.


            Type: string
            • circle, square
          • size

            Icon size.


            Type: string
            • small, medium, large, xlarge
          • color

            Icon color. Currently only support default (black) and teal.


            Type: string
            • teal, blue
        tag

        DEPRECATED - tag is automatically determined by URL.

        Advanced Schema Options

        no_shadow

        Manually disables the component from rendering to the Shadow DOM in a Twig template. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

        boolean
        no_shadow

        Manually disables the web component from rendering to the Shadow DOM. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

        boolean
        Overview Usage Schema Edit this page Testing Steps

        chip

        Chip
        URL No URL Has URL Target Open link in current tab Open link in new tab
        Size xsmall small medium
        Icon Icon before Icon after
        Web Component Usage Bolt Chip is a web component, you can simply use <bolt-chip> in the markup to make it render.
        Chip
        <bolt-chip> Chip </bolt-chip>
        Basic Usage All the props defined in the schema table can be used directly on the <bolt-chip> element.
        Linked chip
        <bolt-chip spacing="small" url="https://pega.com" target="_blank"> Linked chip </bolt-chip>
        Advanced Usage To add icons to <bolt-chip>, place a <bolt-icon> next to your chip text. For icons to have the correct spacing, you must add the slot attribute to <bolt-icon>. The slot value can be before or after.
        Chip with icon
        <bolt-chip> Chip with icon <bolt-icon name="check" slot="after"></bolt-icon> </bolt-chip>
        2.10.0

        Chip List

        Chip List Component in Bolt

        Published

        History
        View changes
        Install
        yarn add @bolt/components-chip-list
        Source code
        View on Github
        Dependencies
        @bolt/components-chip @bolt/components-list @bolt/core

        Chip-list can contain multiple chips. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

        Install via NPM
        npm install @bolt/components-chip-list
        
        {% include "@bolt-components-chip-list/chip-list.twig" with { items: [ { text: "Chip 1", url: "#!" }, { text: "Chip 2", url: "#!" }, { text: "Chip 3", url: "#!" } ] } only %}

        Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

        Prop Name Description Type Default Value Option(s)
        items

        An array of Chips.

        array
        • [items]:
          • Type: object

            Chip.

          • Properties:
          content_items

          Deprecated (will be removed in Bolt v3.0) - use the items prop instead.

          array
          • [items]:
            • Type: object

              Chip.

            • Properties:
            Overview Usage Schema Edit this page Testing Steps

            Chip list with links

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Chip list with text

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.
            2.9.2

            Code Snippet

            Code Snippet Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-code-snippet
            Source code
            View on Github
            Dependencies
            @bolt/core preact preact-html prismjs

            Code snippet shows text in a style that is best fit for a monospace font. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-code-snippet
            
            {% include "@bolt-components-code-snippet/code-snippet.twig" with { display: "block", lang: "html", content: "Some code snippet" } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            display

            Defines if the code text is inline or block.

            string block
            • block, inline
            lang

            Language of the code text.

            string html
            • css, html, js, scss, twig
            syntax

            Toggle between a light and dark syntax highlighting, or turn it off. Separate from Bolt theming.

            string light
            • light, dark, none
            Overview Usage Schema Edit this page Testing Steps

            Code snippet can be a block of code, and display is set to block by default.

            display: block; margin: 0 0 1.65rem 0;

            Well, code snippet can also be inline like this display:inline; when you set display to be inline instead.

            block:

            <header> <h1>Headline</h1> </header>

            inline:

            <header><h1>Headline</h1></header>

            css:

            .my-css { display: block; }

            scss:

            .my-scss { @include my-mixin; }

            html:

            <header> <h1>Headline</h1> </header>

            javascript:

            import { polyfillLoader } from '@bolt/core';

            twig:

            {% include "@bolt-components-code-snippet/code-snippet.twig" with { display: "block", lang: "html", content: "Some code snippet" } only %}

            light:

            <header> <h1>Headline</h1> </header>

            dark:

            <header> <h1>Headline</h1> </header>

            none:

            <header> <h1>Headline</h1> </header>
            2.9.2

            Copy to Clipboard

            Copy to Clipboard Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-copy-to-clipboard
            Source code
            View on Github
            Dependencies
            @bolt/components-icon @bolt/components-link @bolt/core clipboard

            Copy to Clipboard allows the user to copy the current page URL to clipbaord to paste and share.

            Install via NPM
            npm install @bolt/components-copy-to-clipboard
            
            {% include "@bolt-components-copy-to-clipboard/copy-to-clipboard.twig" with { text_to_copy: "https://boltdesignsystem.com" } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            text

            This property has been renamed trigger_text

            string Copy Link
            copied_text

            Use the custom_confirmation property instead if you need to change the confirmation text.

            string Copied!
            icon_size

            Use custom_trigger, custom_transition, and custom_confirmation properties if you need to change icon size.

            string medium
            url

            This property has been renamed text_to_copy

            string
            trigger_text

            Text to use for the inital copy button. Ignored if the custom_trigger property is used.

            string Copy Link
            text_to_copy *

            The text to copy to the clipboard.

            string
            custom_trigger

            (optional) Custom content to show for the initial copy trigger. If you pass a link, set the URL to '#!' since it should not being followed.

            string , object , array
            custom_transition

            (optional) Custom content to show while copy is in progress. This content will be rotated while the copying happens, so it's recommended to pass an icon.

            string , object , array
            custom_confirmation

            (optional) Custom content to show after a successful copy.

            string , object , array
            Overview Usage Schema Edit this page Testing Steps
            Copied!
            Copied!
            Copied!
            Copied!
            Custom transition
            Copied!
            Copied!
            Custom transition

            Custom confirmation

            2.10.0

            Device Viewer

            Device Viewer Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-device-viewer
            Source code
            View on Github
            Dependencies
            @bolt/components-icon @bolt/components-image @bolt/core drift-zoom

            Device frames for showcase. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-device-viewer
            
            {% include "@bolt-components-device-viewer/device-viewer.twig" with { device: "iphone8", orientation: "portrait", color: "white", image: { src: "/images/sample/product-device-screenshot--phone.jpg" } } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            device_name

            Name of the device.

            string
            • ipad, iphone8, macbook
            color

            Device color.

            string
            • black, silver, gold
            orientation

            Device orientation.

            string
            • portrait, landscape
            magnify

            Add the magnifier effect.

            boolean false
            image object
              • src

                Source url for the image.

            Overview Usage Schema Edit this page Testing Steps

            Color: black
            Orientation: 'portrait'

            Color: black
            Orientation: 'landscape'

            Color: silver
            Orientation: 'portrait'

            Color: silver
            Orientation: 'landscape'

            Magnification: true
            Orientation: 'portrait'

            Magnification: true
            Orientation: 'landscape'

            Color: black
            Orientation: 'portrait'

            Color: black
            Orientation: 'landscape'

            Color: silver
            Orientation: 'portrait'

            Color: silver
            Orientation: 'landscape'

            Color: gold
            Orientation: 'portrait'

            Color: gold
            Orientation: 'landscape'

            Magnification: true
            Orientation: 'portrait'

            Magnification: true
            Orientation: 'landscape'

            Magnification: true

            2.9.2

            Dropdown

            Dropdown Component

            Published

            History
            View changes
            Install
            yarn add @bolt/components-dropdown
            Source code
            View on Github
            Dependencies
            @bolt/components-icon @bolt/core classnames ev-emitter handorgel

            The Dropdown component adds a slick, extensible, and accessible menu system.

            Install via NPM
            npm install @bolt/components-dropdown
            

            Description

            Fully interactive with and without JS enabled (including keyboard support)

            // Via Twig {% embed "@bolt-components-dropdown/dropdown.twig" with { title: "Toggle Menu", collapse: true } %} {% block content %} {% include "@bolt-components-nav/nav.twig" with { links: [ { text: "Link 1 Text", url": "#!" }, { text: "Link 2 Text", url": "#!" }, { text: "Link 3 Text", url": "#!" } ] } %} {% endblock %} {% endembed %} // Via Web Component and Twig <bolt-dropdown title="Custom Element w/ Collapse &amp; Center" > {% include "@bolt-components-nav/nav.twig" with { links: [ { text: "Link 1 Text", url": "#!" }, { text: "Link 2 Text", url": "#!" }, { text: "Link 3 Text", url": "#!" } ] } only %} </bolt-dropdown>

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            title

            The toggle title text

            string
            center

            True to center the toggle title

            boolean false
            collapse

            True to hide toggle until mobile screen size

            boolean false
            content

            All of the items in the dropdown -- generally works by including @bolt-components-nav/nav.twig with links array of objects containing text & url

            any
            Overview Usage Schema Edit this page
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 5 Text
            • Link 6 Text
            • Link 7 Text
            • Link 8 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 5 Text
            • Link 6 Text
            • Link 7 Text
            • Link 8 Text

            Default Dropdown

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text

            Center

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text

            Collapse

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text

            Collapse and Center

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text

            Theme Variations

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text

            Extra Long Header

            • Link 1 Text
            • Link 2 Text
            • Link 3 Text
            • Link 4 Text
            • Link 5 Text
            • Link 6 Text
            • Link 7 Text
            • Link 8 Text
            2.10.0

            Figure

            Figure Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-figure
            Source code
            View on Github
            Dependencies
            @bolt/components-icon @bolt/components-image @bolt/components-table @bolt/components-video @bolt/core

            Figure for displaying graphics or tabular content. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-figure
            
            {% include "@bolt-components-figure/figure.twig" with { media: { image: { src: "/images/placeholders/500x500.jpg", lazyload: false }, }, caption: "Figure caption." } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            media

            Media accepts either image, icon, video, or table.

            object
              • image

                A Bolt image object.

                • @bolt-components-image/image.schema.yml > Object details
                  • attributes

                    A Drupal-style attributes object with extra attributes to append to this component.


                    Type: object
                  • src

                    Source url for image.


                    Type: string
                  • alt

                    Alt tag for image.


                    Type: string
                  • lazyload

                    Lazyload can boost performance by loading images on demand, instead of on initial page load.


                    Type: boolean
                    • true, false
                  • no_lazy

                    Override the default lazyload behavior. Used only on the web component, where the presence of a boolean property always equates to true.


                    Type: boolean
                    • true, false
                  • placeholder_color

                    A valid CSS background color property shown while image loads.


                    Type: string
                  • placeholder_image

                    Image path or image data shown while image loads.


                    Type: string
                  • srcset

                    A comma seperated string of image urls and image widths, used for optimizing image loading performance.


                    Type: string
                  • sizes

                    A list of one or more strings separated by commas indicating a set of source sizes. Each source size consists of a media condition (omitted for the last item), and a source size value. Learn more.


                    Type: string
                  • useAspectRatio

                    Use the ratio prop instead.


                    Type: boolean
                    • true, false
                  • ratio

                    Set the aspect ratio for the image via slash-separated width and height values, e.g. 4/3. Currently required for aspect ratio to be applied properly. Set to "none" to opt out of aspect ratio.


                    Type: string, boolean
                  • max_width

                    Set the max-width of the image as a valid CSS value, e.g. "300px" or "50%".


                    Type: string
                  • width

                    Override the default width of the image. If no height is provided, aspect ratio will be maintained.


                    Type:
                  • height

                    Override the default height of the image. If no width is provided, aspect ratio will be maintained.


                    Type:
                  • cover

                    Set an image to fill its container.


                    Type: boolean
                    • true, false
                  • imageAttributes

                    A Drupal-style attributes object with extra attributes to append to this component.


                    Type: object
                  • valign

                    Allows the image's vertical alignment behavior to be customized in certain situations (ex. background images). This can be configured via a pre-defined position (top | center | bottom) or via specific pixel or percent offset (ex. 30%).


                    Type: string
              • icon

                A Bolt icon object.

                • @bolt-components-icon/icon.schema.json > Object details
                  • attributes

                    A Drupal-style attributes object with extra attributes to append to this component.


                    Type: object
                  • name

                    Icon name.


                    Type: string
                    • academy, add-open, add-solid, agile, app-development, app-exchange, arrow-left, asset-data, asset-infographic, asset-interactive, asset-link, asset-media, asset-podcast, asset-presentation, asset-text, asset-video, bolt-logo-colored, brand-operations, calendar, careers, case-management, chart-bar, check, check-circle, check-solid, chevron-down, chevron-left, chevron-right, chevron-up, close, close-circled, close-open, close-solid, cloud, co-browse, communications, copy-to-clipboard, credit-card, customer-decision-hub, customer-onboarding, customer-service, data-integrations, documentation, download, email, energy, entertainment, exclamation, exit-full-screen, external-link, eye, eye-off, face-happy, face-sad, facebook, facebook-solid, field-service, field-service-gray, filter, financial, full-screen, github, global, government, healthcare, hospitality, industries, info-open, info-solid, insurance, integration, intelligent-virtual-assistant, java, knowledgebase, launchpad, life-sciences, linkedin, linkedin-solid, lock, manufacturing, map-pin, map-pin-solid, marketing, marketing-gray, menu, minus-open, minus-solid, mobility, more, omni-channel, partners, pencil, platform, podcast, print, product, product-delivery, refresh, reporting, retail, robo-auto, sales-automation, scalability, search, share, star-solid, support, system-admin, training, transportation, twitter, twitter-solid, unlock, upload, user, user-interface, video, vision, warning, watch, workforce-intelligence, youtube-solid
                  • background

                    Background shape. This applies only to 'xlarge' icons.


                    Type: string
                    • circle, square
                  • size

                    Icon size.


                    Type: string
                    • small, medium, large, xlarge
                  • color

                    Icon color. Currently only support default (black) and teal.


                    Type: string
                    • teal, blue
              • video

                A Bolt video object.

                • @bolt-components-video/video.schema.yml > Object details
                  • attributes

                    A Drupal-style attributes object with extra attributes to append to this component.


                    Type: object
                  • videoId

                    Brightcove ID for this video.


                    Type: string, number
                  • playerId

                    Brightcover Player ID.


                    Type: string
                  • accountID

                    ID of the Brightcove account that owns the video.


                    Type: string, number
                  • videoUuid

                    A unique identifying string, randomly generated if not provided.


                    Type: string
                  • share_description

                    A custom title to use in the share overlay


                    Type: string
                  • ratio

                    Maintain video ratio.


                    Type: boolean
                  • collapsed

                    Should the video be collapsed on load.


                    Type: boolean
                  • showMeta

                    Should the video show meta data.


                    Type: boolean
                  • showMetaTitle

                    Should the video show meta title.


                    Type: boolean
                  • controls

                    Should the video controls be available.


                    Type: boolean
                  • autoplay

                    Should the video auto-play on load.


                    Type: boolean
                  • loop

                    Should the video loop.


                    Type: boolean
                  • on_init

                    The on_init config allows for an external Javascript function inlined on the page to add any 3rd party scripts or video plugins to a <bolt-video> player instance when initializing. Please see the new recommended enabled_plugins and disabled_plugins options below.


                    Type: string
                  • default_plugins

                    An array of the default <bolt-video> player plugins that are globally enabled by default.


                    Type: array
                    • playback
                  • available_plugins

                    The built-in <bolt-video> player plugins that are availble to be used in any player instance without requiring the use of any extra Javascript.


                    Type: array
                    • playback, social, email, cue
                  • enabled_plugins

                    Space-separated list of built-in <bolt-video> plugins for Brightcove to enable. Current include social, email, playback, and cue. For example: <bolt-video enabled-plugins="cue social email playback">.


                    Type: string
                  • disabled_plugins

                    Space-separated list of any built-in <bolt-video> plugins for Brightcove to disable. Used to opt-out of any video plugins that are enabled by default (ex. the playback plugin). For example: <bolt-video disabled-plugins="playback">.


                    Type: string
                  • isBackgroundVideo

                    Background video feature will be removed with Bolt v3.0


                    Type:
              • table

                A Bolt table object.

                • @bolt-components-table/table.schema.yml > Object details
                  • attributes

                    A Drupal-style attributes object with extra attributes to append to this component.


                    Type: object
                  • headers

                    Generates top and side headers, each can contain an array of cells.


                    Type: object
                      • top
                          • cells

                            Each item represents a cell in the top header.

                            • [items]:
                              • Type: any
                              • Properties:
                                • content
                                  • Type: string
                                • attributes
                                  • Type: object
                      • side
                          • cells

                            Each item represents a cell in the side header.

                            • [items]:
                              • Type: any
                              • Properties:
                                • content
                                  • Type: string
                                • attributes
                                  • Type: object
                  • rows

                    Generates an array of rows, each can contain an array of cells.


                    Type: array
                      • cells

                        Each item represents a cell in a row.

                        • [items]:
                          • Type: any
                          • Properties:
                            • content
                              • Type: string
                            • attributes
                              • Type: object
                  • footer

                    Generates a table footer, can contain an array of cells.


                    Type: object
                      • cells

                        Each item represents a cell in the footer.

                        • [items]:
                          • Type: any
                          • Properties:
                            • content
                              • Type: string
                            • attributes
                              • Type: object
                  • format

                    Display either a regular table or a more complex numeric table.


                    Type: string
                    • regular, numeric
                  • borderless

                    Removes the vertical border in between cells.


                    Type: boolean
                    • true, false
                  • first_col_fixed_width

                    Sets the width of the first column to be as wide as the longest text.


                    Type: boolean
                    • true, false
            caption

            Caption for the figure.

            string , object , array
            content

            Figure contains no content. Only media and caption.

            Overview Usage Schema Edit this page Testing Steps
            Fig. 1: This is Bill. He is awesome.

            Image Figure

            Fig. 1: This is an image.

            Icon Figure

            Fig. 2: This is an icon.

            Video Figure

            Fig. 3: This is a video.
            Video Player is loading.
            Current Time 0:00
            Duration -:-
            Loaded: 0%
            Stream Type LIVE
            Remaining Time 0:00
             
            1x

            Table Figure

            Fig. 4: This is a table.
            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3
            Web Component Usage Bolt Figure is a web component. Use the custom element <bolt-figure> to wrap your figure media and caption. The figure media must have the attribute slot="media" or be wrapped by an element with that attribute. Everything else inside the <bolt-figure> tag is considered the caption. We recommend simply using text with optional inline markup (as seen below).
            This is a caption. Lorem ipsum dolor sit amet, consectetur adipiscing elit text link.
            <bolt-figure> <bolt-image src="/images/placeholders/landscape-16x9-mountains.jpg" slot="media"></bolt-image> This is a caption. Lorem ipsum <em>dolor sit amet</em>, consectetur adipiscing elit <a href="#">text link</a>. </bolt-figure>
            2.9.2

            Form

            Bolt component for forms and form elements

            Published

            History
            View changes
            Install
            yarn add @bolt/components-form
            Source code
            View on Github
            Dependencies
            @bolt/components-button @bolt/components-headline @bolt/components-icon @bolt/core

            A collection of fieldsets to create a form. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-form
            
            {% include "@bolt-components-form/form.twig" with { text: "This is a form", url: "#!", } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            icon_size

            Customize the size of the input icon used

            medium
            Overview Usage Schema Edit this page
            We promise not to sell your email address
            The username you entered is already taken.

            Select an alignment

            Select toppings

            If there were any server-side errors, you'd see them here
            Pick at least two of the following

            Get the Report

            (all fields are required)

            Get the Report

            (all fields are required)

            Get the Report

            (all fields are required)

            Get the Report

            (all fields are required)

            (Note: forms do not offically support dark themes yet. Use at your own risk.)

            2.9.2

            Bolt Grid

            Grid Component

            Published

            History
            View changes
            Install
            yarn add @bolt/components-grid
            Source code
            View on Github
            Dependencies
            @bolt/core

            A flexible 12-column grid with responsive breakpoint options. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-grid
            
            {% include "@bolt-components-grid/grid.twig" with { gutter: "medium", row_gutter: "medium", items: [ { column_start: "1", column_span: "1", row_start: "1", row_span: "1", valign: "start", content: "Item Content", }, ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            gutter

            Spacing between the columns of the grid.

            string medium
            • none, small, medium, large
            row_gutter

            Spacing between the rows of the grid.

            string medium
            • none, small, medium, large
            items

            Array of grid items to render inside the grid.

            array
              • attributes

                A Drupal-style attributes object with extra attributes to append to this component.

              • content

                Content to render inside each grid item.

              • valign

                Vertical alignment of the grid item itself.

                • start, center, end
              • column_start

                The vertical starting point of the grid item. This accepts any number from 1 to 12, and their perspective responsive variations for advanced usage, for example, 6@small means the column start is set at 6 for any browser width larger and equal to the small breakpoint. This prop is required to make the grid work in Internet Explorer.

              • column_span

                The number of columns the grid item should span across. This accepts any number from 1 to 12, and their perspective responsive variations for advanced usage, for example, 6@small means the column span is set at 6 for any browser width larger and equal to the small breakpoint.

              • row_start

                The horizontal starting point of the grid item. This prop is required to make the grid work in Internet Explorer.

              • row_span

                The number of rows the grid item should span across.

            Overview Usage Schema Edit this page

            grid

            Bolt Grid is a 12-column grid design approach

            By using The Grid to design layouts, consistency is guaranteed. If your goal is to confine your layout to a 12-column grid and have elements spaced and lined up consistently using the Bolt spacing system, The Grid is for you. Otherwise, you should not use The Grid, there is the List component for simple layouts and alignments.

            1 2 3 4 5 6 7 8 9 10 11 12

            Support for Internet Explorer: Due to IE's outdated technology, it is mandatory to define column start and row start if you want the grid to render correctly.

            Column start and column span

            The Bolt Grid is built on the concept of column start and column span, this allows the user to have full control of the grid layout.

            Common usage

            Main content in the center (column start 3 and column span 8) with 2 asides.

            Aside Main Aside

            Main content with an aside (column start 9 and column span 4).

            Main Aside

            Row start and row span

            Row start and row span are also available, they are for less common layouts.

            Row Row Row Start at column 2 and row 2 and span 2 rows. Row Row Row

            All possible start and span options

            Please refer to the Bolt Breakpoints for all possible breakpoint names. number@breakpoint-name means starting at that specific breakpoint, change to the number defined. For example: column_span: "6@small" means starting at the small breakpoint, span 6 columns.

            Regular Option Responsive Option
            column_start 1 to 12 1@breakpoint-name to 12@breakpoint-name
            column_span 1 to 12 1@breakpoint-name to 12@breakpoint-name
            row_start 1 to 12 1@breakpoint-name to 12@breakpoint-name
            row_span 1 to 12 1@breakpoint-name to 12@breakpoint-name

            None Gutter

            Span 4 columns Span 4 columns Span 4 columns

            Small Gutter

            Span 4 columns Span 4 columns Span 4 columns

            Medium Gutter

            Span 4 columns Span 4 columns Span 4 columns

            Large Gutter

            Span 4 columns Span 4 columns Span 4 columns

            None Row Gutter

            Span 12 columns Span 12 columns Span 12 columns

            Small Row Gutter

            Span 12 columns Span 12 columns Span 12 columns

            Medium Row Gutter

            Span 12 columns Span 12 columns Span 12 columns

            Large Row Gutter

            Span 12 columns Span 12 columns Span 12 columns

            Each item can span from 1 to 12 columns

            Span 3 columns Span 6 columns Span 9 columns Span 12 columns

            Use any combination that adds up to 12 columns to form a row

            In this example, the item 1 is starting at column 1 and spanning 3 columns wide, the item 2 is starting at column 4 and spanning 9 columns.

            Item 1 Item 2

            In this example, the item 1 is starting at column 1 and spanning 6 columns wide, the item 2 is starting at column 7 and spanning 6 columns.

            Item 1 Item 2

            Each item can span from 1 to 12 rows

            Row span works as long as you have multiple rows. For example, if you only have 2 rows of content, you cannot have an item to span 3 rows because the highest you can get is 2.

            3 rows 6 rows 9 rows 12 rows Row Row Row Row Row Row Row Row Row Row Row Row

            Responsive breakpoint options

            Use the @breakpoint options to do advanced responsive layouts.

            • Item 1
              1. Up to small breakpoint: start at row 2 and span 12 columns
              2. Starting at small breakpoint: start at row 1 and span for 4 columns
              3. Starting at medium breakpoint: start at row 1 and span for 3 columns
              column_start: "1", column_span: "12 3@small 4@medium", row_start: "2 1@small"
            • Item 2
              1. Up to small breakpoint: start at row 1 and span 12 columns
              2. Starting at small breakpoint: start at row 1 and span for 8 columns
              3. Starting at medium breakpoint: start at row 1 and span for 9 columns
              column_start: "1 5@small 4@medium", column_span: "12 8@small 9@medium", row_start: "1 1@small"
            Item 1 Item 2

            Horizontal item alignment

            The alignment must be set manually by using column start and column span, that way the user can position the item exactly as intended with the flexibility doing more than the common start, center, and end alignments.

            Standard alignments

            To align an item to the start, set column start to 1.

            Column start at 1 and span 4

            To align an item to the center, set column start by using this formula: (12 - column_span) / 2 + 1.

            Column start at 5 and span 4

            To align an item to the end, set column start by using this formula: (12 - column_span) + 1.

            Column start at 9 and span 4

            Advanced alignments

            Offset by 1 column from the center.

            Column start at 4 and span 8

            Offset by 1 column from the start.

            Column start at 2 and span 2

            Vertical item alignment

            Vertical alignment of an item can simply be defined by the valign prop.

            Start

            Item Item Item

            Center

            Item Item Item

            End

            Item Item Item

            Traditional Columns and Rows

            1. Use a parent grid to create rows, each item span for 12 columns.
            2. Inside each item of the parent grid, pass a child grid to create columns.
            Item Item Item
            Item Item Item
            Item Item Item
            2.9.2

            Headline

            Headline Component

            Published

            History
            View changes
            Install
            yarn add @bolt/components-headline
            Source code
            View on Github
            Dependencies
            @bolt/components-icon @bolt/components-link @bolt/core

            Headlines are specific combinations of typographic styles for display text. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-headline
            
            {% include "@bolt-components-headline/headline.twig" with { text: "This is a headline", } only %} {% include "@bolt-components-headline/eyebrow.twig" with { text: "This is an eyebrow", } only %} {% include "@bolt-components-headline/subheadline.twig" with { text: "This is a subheadline", } only %} {% include "@bolt-components-headline/text.twig" with { text: "This is text", } only %} {% include "@bolt-components-headline/lead.twig" with { text: "This is a lead", } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            text *

            Renderable text content of the headline.

            string , object , array
            tag

            Html tag.

            string p
            • h1, h2, h3, h4, h5, h6, p, span, cite, div
            align

            Text alignment.

            string
            • left, center, right
            weight

            Font weights.

            string regular
            • bold, regular, semibold
            style

            Font styles.

            string normal
            • normal, italic
            size

            Font size.

            string medium
            • xsmall, small, medium, large, xlarge, xxlarge, xxxlarge
            transform

            Text transformation.

            string
            • uppercase, lowercase, capitalize
            url

            If provided, turns headline into a link to given url.

            string
            icon

            Bolt icon. Accepts either 1) an icon name as a string 2) an icon object as expected by @bolt-components-icon or 3) the string "none" to explicitly remove default icons

            object , string , string
            quoted

            Adds quoted styling to text.

            boolean
            Overview Usage Schema Edit this page Testing Steps

            This is an eyebrow

            This is a headline

            This is a subheadline

            This is text

            This is a lead

            H1

            This is an example of H1

            H2

            This is an example of H2

            H3

            This is an example of H3

            H4

            This is an example of H4

            H5

            This is an example of H5

            H6

            This is an example of H6

            P

            This is an example of P

            SPAN

            This is an example of SPAN

            Align:

            This is an example of align left

            Align:

            This is an example of align center

            Align:

            This is an example of align right

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            This is bold weight and normal text

            This is bold weight and normal headline

            This is bold weight and normal subheadline

            This is bold weight and italic text

            This is bold weight and italic headline

            This is bold weight and italic subheadline

            This is regular weight and normal text

            This is regular weight and normal headline

            This is regular weight and normal subheadline

            This is regular weight and italic text

            This is regular weight and italic headline

            This is regular weight and italic subheadline

            This is semibold weight and normal text

            This is semibold weight and normal headline

            This is semibold weight and normal subheadline

            This is semibold weight and italic text

            This is semibold weight and italic headline

            This is semibold weight and italic subheadline

            Headline w/ Icon Position before

            What we do at Pega is brilliant!



            Headline w/ Icon Position after

            What we do at Pega is brilliant!



            Headline w/ Default Icon Position

            What we do at Pega is brilliant!



            Headline w/ Icon Options

            What we do at Pega is brilliant!






            Headline w/ Left Icon Position (Deprecated)

            What we do at Pega is brilliant!



            Headline w/ Right Icon Position (Deprecated)

            What we do at Pega is brilliant!

            What we do at Pega is brilliant!

            2.9.2

            Icon

            Icon component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-icon
            Source code
            View on Github
            Dependencies
            @bolt/components-icons @bolt/core pubsub-js uppercamelcase

            Icon. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-icon
            
            {% include "@bolt-components-icon/icon.twig" with { name: "add-open", background: "circle", size: "medium", } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            name *

            Icon name.

            string
            • academy, add-open, add-solid, agile, app-development, app-exchange, arrow-left, asset-data, asset-infographic, asset-interactive, asset-link, asset-media, asset-podcast, asset-presentation, asset-text, asset-video, bolt-logo-colored, brand-operations, calendar, careers, case-management, chart-bar, check, check-circle, check-solid, chevron-down, chevron-left, chevron-right, chevron-up, close, close-circled, close-open, close-solid, cloud, co-browse, communications, copy-to-clipboard, credit-card, customer-decision-hub, customer-onboarding, customer-service, data-integrations, documentation, download, email, energy, entertainment, exclamation, exit-full-screen, external-link, eye, eye-off, face-happy, face-sad, facebook, facebook-solid, field-service, field-service-gray, filter, financial, full-screen, github, global, government, healthcare, hospitality, industries, info-open, info-solid, insurance, integration, intelligent-virtual-assistant, java, knowledgebase, launchpad, life-sciences, linkedin, linkedin-solid, lock, manufacturing, map-pin, map-pin-solid, marketing, marketing-gray, menu, minus-open, minus-solid, mobility, more, omni-channel, partners, pencil, platform, podcast, print, product, product-delivery, refresh, reporting, retail, robo-auto, sales-automation, scalability, search, share, star-solid, support, system-admin, training, transportation, twitter, twitter-solid, unlock, upload, user, user-interface, video, vision, warning, watch, workforce-intelligence, youtube-solid
            background

            Background shape. This applies only to 'xlarge' icons.

            string
            • circle, square
            size

            Icon size.

            string
            • small, medium, large, xlarge
            color

            Icon color. Currently only support default (black) and teal.

            string
            • teal, blue
            Overview Usage Schema Edit this page Testing Steps

            icon

            Bolt's SVG icon system provides the ability to customize an individual icon's color (the shape itself), background color, and background opacity levels, in both the Twig and Custom Element formats the design system ships.

            via Web Component:

            <bolt-icon size="xlarge" background="circle" name="marketing-gray" style=" color: #a65388; --bolt-theme-icon-background: #a65388; --bolt-theme-icon: #FFF; --bolt-theme-icon-background-opacity: 1; "></bolt-icon>

            via Twig Include:

            {% include "@bolt-components-icon/icon.twig" with { name: "customer-service", background: "circle", size: "xlarge", attributes: { style: [ "color: #e64b18;", "--bolt-theme-icon-background: #e64b18;", "--bolt-theme-icon: #FFF;", "--bolt-theme-icon-background-opacity: 1;" ] } } only %}

            Theme: light


            • Background: circle

            • Background: circle
              Color: teal

            • Background: circle
              Color: blue


            • Background: square

            • Background: square
              Color: teal

            • Background: square
              Color: blue

            Theme: dark


            • Background: circle

            • Background: circle
              Color: teal

            • Background: circle
              Color: blue


            • Background: square

            • Background: square
              Color: teal

            • Background: square
              Color: blue


            • academy

            • add-open

            • add-solid

            • agile

            • app-development

            • app-exchange

            • arrow-left

            • asset-data

            • asset-infographic

            • asset-interactive

            • asset-link

            • asset-media

            • asset-podcast

            • asset-presentation

            • asset-text

            • asset-video

            • bolt-logo-colored

            • brand-operations

            • calendar

            • careers

            • case-management

            • chart-bar

            • check

            • check-circle

            • check-solid

            • chevron-down

            • chevron-left

            • chevron-right

            • chevron-up

            • close

            • close-circled

            • close-open

            • close-solid

            • cloud

            • co-browse

            • communications

            • copy-to-clipboard

            • credit-card

            • customer-decision-hub

            • customer-onboarding

            • customer-service

            • data-integrations

            • documentation

            • download

            • email

            • energy

            • entertainment

            • exclamation

            • exit-full-screen

            • external-link

            • eye

            • eye-off

            • face-happy

            • face-sad

            • facebook

            • facebook-solid

            • field-service

            • field-service-gray

            • filter

            • financial

            • full-screen

            • github

            • global

            • government

            • healthcare

            • hospitality

            • industries

            • info-open

            • info-solid

            • insurance

            • integration

            • intelligent-virtual-assistant

            • java

            • knowledgebase

            • launchpad

            • life-sciences

            • linkedin

            • linkedin-solid

            • lock

            • manufacturing

            • map-pin

            • map-pin-solid

            • marketing

            • marketing-gray

            • menu

            • minus-open

            • minus-solid

            • mobility

            • more

            • omni-channel

            • partners

            • pencil

            • platform

            • podcast

            • print

            • product

            • product-delivery

            • refresh

            • reporting

            • retail

            • robo-auto

            • sales-automation

            • scalability

            • search

            • share

            • star-solid

            • support

            • system-admin

            • training

            • transportation

            • twitter

            • twitter-solid

            • unlock

            • upload

            • user

            • user-interface

            • video

            • vision

            • warning

            • watch

            • workforce-intelligence

            • youtube-solid

            Basic usage witch attributes

            Size variations

            Background variations

            Theme variations

            Theme: xlight


            Theme: light


            Theme: dark


            Theme: xdark


            Demo of server-side rendering a Twig-generated <bolt-icon> web component.

            Demo of server-side rendering a vanilla <bolt-icon> web component.

            2.10.0

            Image

            Image Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-image
            Source code
            View on Github
            Dependencies
            @bolt/components-ratio @bolt/core lazysizes

            An image. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-image
            

            Image sizes

            IMPORTANT: This method of adding classes to images is DEPRECATED.

            To specify image size (e.g u-bolt-width-1/1) pass the correct class like so:

            {% set classes = create_attribute(imageAttributes | default({})).addClass([
                "c-bolt-image__img",
                "u-bolt-width-1/1",
              ])
            %}
            

            Then pass it into the component:

            {% include '@bolt-components-image/image.twig' with {
              src: "/images/placeholders/tout-4x3-climber.jpg",
              alt: "A Rock Climber",
              imageAttributes: classes,
            } only %}
            
            {% include '@bolt-components-image/image.twig' with { src: "/src/images/turtle.jpg", alt: "A Turtle" } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            src

            Source url for image.

            string
            alt

            Alt tag for image.

            string
            lazyload

            Lazyload can boost performance by loading images on demand, instead of on initial page load.

            boolean true
            • true, false
            no_lazy

            Override the default lazyload behavior. Used only on the web component, where the presence of a boolean property always equates to true.

            boolean false
            • true, false
            placeholder_color

            A valid CSS background color property shown while image loads.

            string hsl(233, 33%, 97%)
            placeholder_image

            Image path or image data shown while image loads.

            string data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
            srcset

            A comma seperated string of image urls and image widths, used for optimizing image loading performance.

            string
            sizes

            A list of one or more strings separated by commas indicating a set of source sizes. Each source size consists of a media condition (omitted for the last item), and a source size value. Learn more.

            string auto
            use_aspect_ratio

            Use the ratio prop instead.

            boolean true
            • true, false
            ratio

            Set the aspect ratio for the image via slash-separated width and height values, e.g. 4/3. Currently required for aspect ratio to be applied properly. Set to "none" to opt out of aspect ratio.

            string , boolean auto
            max_width

            Set the max-width of the image as a valid CSS value, e.g. "300px" or "50%".

            string
            width

            Override the default width of the image. If no height is provided, aspect ratio will be maintained.

            number , string
            height

            Override the default height of the image. If no width is provided, aspect ratio will be maintained.

            number , string
            cover

            Set an image to fill its container.

            boolean false
            • true, false
            image_attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            valign

            Allows the image's vertical alignment behavior to be customized in certain situations (ex. background images). This can be configured via a pre-defined position (top | center | bottom) or via specific pixel or percent offset (ex. 30%).

            string center
            Overview Usage Schema Edit this page Testing Steps

            640x480 jpg

            500x500 jpg

            1151x638 jpg

            1151x638 jpeg

            2712x2300 png

            3000x5336 jpeg

            124x33 svg

            Src: Root Relative

            src: "/images/placeholders/image.jpg",

            Src: Source Set

            srcset: "/images/placeholders/500x500-200.jpg 200w,/images/placeholders/500x500-320.jpg 320w",

            Src only that won't be found in bolt.data.images

            Src only that won't be found in bolt.data.images and not lazy loaded

            Src and srcset that won't be found in bolt.data.images

            Absolute src - not lazy loaded

            Absolute src - lazy loaded

            Jpg: Lazyload true

            Jpg: Lazyload false

            Png: Lazyload true

            Png: Lazyload false

            Svg: Lazyload: true

            Svg: Lazyload: false

            Custom Height and Width, JPEG (2:1)

            Custom Height and Width, PNG (2:1)

            Custom Height and Width, SVG (10:1)

            Custom Max-Width, JPG (200px)

            Image Zoom

            When used with the device viewer component, the image component can used to create a "zoomed" state (`magnify` must be set to `true` on the device viewer).

            Web Component Usage Bolt Image is a web component that renders a semantic <img> tag with Bolt styles. All that's required to make a <bolt-image> are the src and alt attributes.
            <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber"></bolt-image>
            Responsize Images Optionally, pass srcset and sizes to <bolt-image> for responsive images.
            <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" srcset="/images/placeholders/tout-4x3-climber-320.jpg 320w" sizes="auto" alt="A Rock Climber"></bolt-image>
            Setting the Aspect-ratio Setting the aspect ratio on an image provides a placeholder while the image is loading. Do this by adding the ratio attribute with the image's aspect-ratio as slash-separated values, e.g. "4/3" or "400/300".
            <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber" ratio="4/3"></bolt-image>
            Lazyloading Lazyloading is on by default. Turn it off with the no-lazy attribute.
            <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber" no-lazy></bolt-image>
            Custom Placeholder Placeholder image and color options can be set via the attributes placeholder-image and placeholder-color where "image" is an image path and "color" is a valid CSS background-color. Note: the ratio attribute must be provided for placholder image or color to display.
            <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber" ratio="4/3" placeholder-color="#D3D3D3" placeholder-image="http://placehold.it/400x300"></bolt-image>
            2.10.0

            List

            List Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-list
            Source code
            View on Github
            Dependencies
            @bolt/core

            Minimal list component for laying out a group of items. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-list
            
            {% include "@bolt-components-list/list.twig" with { display: "inline", spacing: "xsmall", align: "start", valign: "center", items: [ "Item 1", "Item 2", "Item 3", "Item 4", "Item 5", ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            items *

            Generates an array of items, each can contain renderable content (i.e. a string, render array, or included pattern).

            array
              • items

                Renderable content for a single list item.

                  • content

                    Use this prop for an iterable item such as an array.

            tag

            Apply the semantic tag for the list.

            string ul
            • ul, ol, div, span
            display

            Display either an inline list of items or a block (stacked) list of items. Responsive options are also available for transforming from block to inline at specific breakpoints.

            string block
            • block, flex, inline, inline@xxsmall, inline@xsmall, inline@small, inline@medium
            spacing

            Control the spacing in between items.

            string xsmall
            • none, xxsmall, xsmall, small, medium, large, xlarge
            separator

            Display a separator in between items.

            string none
            • none, solid, dashed
            inset

            Turn spacing to the inside of each item.

            boolean false
            • true, false
            align

            Control the horizontal alignment of items.

            string start
            • start, center, end
            valign

            Control the vertical alignment of items.

            string center
            • start, center, end
            Overview Usage Schema Edit this page Testing Steps

            list

            Item 1 Item 2 Item 3

            Inline list of different items

            Item 1 Item 2 Item 3 Item 4 Item 5 Item 6

            Inline list of chips

            Item 1 Item 2 Item 3

            Inline list of buttons

            Item 1 Item 2 Item 3

            Block

            Item 1 Item 2 Item 3

            Flex

            Item 1 Item 2 Item 3

            Inline

            Item 1 Item 2 Item 3

            Inline@xxsmall

            Item 1 Item 2 Item 3

            Inline@xsmall

            Item 1 Item 2 Item 3

            Inline@small

            Item 1 Item 2 Item 3

            Inline@medium

            Item 1 Item 2 Item 3

            Inline@breakpoint

            Note: this type of display option will transform a block list to inline when the browser is equal to or greater than the breakpoint specified.

            Block list with spacing (none)

            Item 1 Item 2 Item 3

            Block list with spacing (xxsmall)

            Item 1 Item 2 Item 3

            Block list with spacing (xsmall)

            Item 1 Item 2 Item 3

            Block list with spacing (small)

            Item 1 Item 2 Item 3

            Block list with spacing (medium)

            Item 1 Item 2 Item 3

            Block list with spacing (large)

            Item 1 Item 2 Item 3

            Block list with spacing (xlarge)

            Item 1 Item 2 Item 3

            Flex list with spacing (none)

            Item 1 Item 2 Item 3

            Flex list with spacing (xxsmall)

            Item 1 Item 2 Item 3

            Flex list with spacing (xsmall)

            Item 1 Item 2 Item 3

            Flex list with spacing (small)

            Item 1 Item 2 Item 3

            Flex list with spacing (medium)

            Item 1 Item 2 Item 3

            Flex list with spacing (large)

            Item 1 Item 2 Item 3

            Flex list with spacing (xlarge)

            Item 1 Item 2 Item 3

            Inline list with spacing (none)

            Item 1 Item 2 Item 3

            Inline list with spacing (xxsmall)

            Item 1 Item 2 Item 3

            Inline list with spacing (xsmall)

            Item 1 Item 2 Item 3

            Inline list with spacing (small)

            Item 1 Item 2 Item 3

            Inline list with spacing (medium)

            Item 1 Item 2 Item 3

            Inline list with spacing (large)

            Item 1 Item 2 Item 3

            Inline list with spacing (xlarge)

            Item 1 Item 2 Item 3

            Solid separators in a block list

            Item 1 Item 2 Item 3

            Solid separators in a flex list

            Item 1 Item 2 Item 3

            Solid separators in a inline list

            Item 1 Item 2 Item 3

            Dashed separators in a block list

            Item 1 Item 2 Item 3

            Dashed separators in a flex list

            Item 1 Item 2 Item 3

            Dashed separators in a inline list

            Item 1 Item 2 Item 3

            Regular spacing in a block list

            Item 1 Item 2 Item 3

            Inset spacing in a block list

            Item 1 Item 2 Item 3

            Regular spacing in a inline list

            Item 1 Item 2 Item 3

            Inset spacing in a inline list

            Item 1 Item 2 Item 3

            Regular spacing in a flex list

            Item 1 Item 2 Item 3

            Inset spacing in a flex list

            Item 1 Item 2 Item 3

            Regular vs inset spacing

            There are 2 different types of spacing styles and you can use it to your advantage. Different layouts call for different spacing styles, use your best judgment to apply the more applicable style.

            The advantage of using regular spacing style

            This is the regular spacing style, which adds space only in between items. So when it is put side by side next to a paragraph of text, the top of the list will line up with the paragraph of text (optically). Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor. Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante.

            Item 1 Item 2 Item 3

            The same applies to items with a background color. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor. Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante.

            Item 1 Item 2 Item 3

            The advantage of using inset spacing style

            Inset spacing puts spacing around each item, this is very useful if you are putting the list inside any kind of box container. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor. Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante.

            Item 1 Item 2 Item 3

            ^ This list is inside a colored box.

            Align prop only works with inline display, it has no effects on block and flex display.

            Horizontally align inline items: start

            Item 1 Item 2 Item 3

            Horizontally align inline@xxsmall items: start

            Item 1 Item 2 Item 3

            Horizontally align inline@xsmall items: start

            Item 1 Item 2 Item 3

            Horizontally align inline@small items: start

            Item 1 Item 2 Item 3

            Horizontally align inline@medium items: start

            Item 1 Item 2 Item 3

            Horizontally align inline items: center

            Item 1 Item 2 Item 3

            Horizontally align inline@xxsmall items: center

            Item 1 Item 2 Item 3

            Horizontally align inline@xsmall items: center

            Item 1 Item 2 Item 3

            Horizontally align inline@small items: center

            Item 1 Item 2 Item 3

            Horizontally align inline@medium items: center

            Item 1 Item 2 Item 3

            Horizontally align inline items: end

            Item 1 Item 2 Item 3

            Horizontally align inline@xxsmall items: end

            Item 1 Item 2 Item 3

            Horizontally align inline@xsmall items: end

            Item 1 Item 2 Item 3

            Horizontally align inline@small items: end

            Item 1 Item 2 Item 3

            Horizontally align inline@medium items: end

            Item 1 Item 2 Item 3

            Valign prop only works with inline and flex display, it has no effects on block display.

            Vertically align inline items: start

            Item 1 Item 2 Item 3

            Vertically align inline items: center

            Item 1 Item 2 Item 3

            Vertically align inline items: end

            Item 1 Item 2 Item 3

            Vertically align flex items: start

            Item 1 Item 2 Item 3

            Vertically align flex items: center

            Item 1 Item 2 Item 3

            Vertically align flex items: end

            Item 1 Item 2 Item 3

            Use the semantically correct tag based on the context of your page layout.

            ul

            Item 1 Item 2 Item 3

            ol

            Item 1 Item 2 Item 3

            div

            Item 1 Item 2 Item 3

            span

            Item 1 Item 2 Item 3
            Web Component Usage Bolt Button is a web component, you can simply use <bolt-list> in the markup to make it render.
            Item 1 Item 2 Item 3
            <bolt-list> <bolt-list-item>Item 1</bolt-list-item> <bolt-list-item>Item 2</bolt-list-item> <bolt-list-item>Item 3</bolt-list-item> </bolt-list>
            Basic Usage All the props defined in the schema table can be used directly on the <bolt-list> element.
            Item 1 Item 2 Item 3
            <bolt-list display="inline" spacing="xsmall" separator="dashed" align="center" > <bolt-list-item>Item 1</bolt-list-item> <bolt-list-item>Item 2</bolt-list-item> <bolt-list-item>Item 3</bolt-list-item> </bolt-list>
            Advanced Usage Instead of passing plain text into each item, you may also pass other Bolt components or regular HTML.
            Item 1 Item 2 Item 3
            <bolt-list display="inline"> <bolt-list-item> <bolt-link url="https://pega.com"> Item 1 </bolt-link> </bolt-list-item> <bolt-list-item> <bolt-chip url="https://pega.com"> Item 2 </bolt-chip> </bolt-list-item> <bolt-list-item> <bolt-button url="https://pega.com"> Item 3 </bolt-button> </bolt-list-item> </bolt-list>
            2.10.0

            Logo

            Logo Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-logo
            Source code
            View on Github
            Dependencies
            @bolt/components-image @bolt/core

            Stylistic tags for displaying a logo. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-logo
            
            {% include "@bolt-components-logo/logo.twig" with { src: "/images/content/logos/logo-paypal.svg" } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            invert

            Set to true to invert the logo colors.

            boolean
            Overview Usage Schema Edit this page Testing Steps
            2.9.2

            Modal

            The Modal component presents users with a short task or gathered information without losing context of the underlying page.

            Published

            History
            View changes
            Install
            yarn add @bolt/components-modal
            Source code
            View on Github
            Dependencies
            @a11y/focus-trap @bolt/components-button @bolt/components-text @bolt/components-trigger @bolt/core a11y-dialog focus-trap tabbable

            The Modal component presents users with a short task or gathered information without losing context of the underlying page. Part of the collection of components, visual styles, and build tools that power the Bolt Design System.

            Install via NPM
            npm install @bolt/components-modal
            
            {% include "@bolt-components-button/button.twig" with { text: "Open Modal", attributes: { "on-click": "show", "on-click-target": "js-target-name" } } only %} {% include "@bolt-components-modal/modal.twig" with { content: "This is a modal", attributes: { class: "js-target-name" }, } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal attributes object. Used to apply additional HTML attributes to the outer <bolt-modal> tag.

            object
            width

            Controls the width of the modal container.

            string optimal
            • full, regular, optimal, auto
            spacing

            Controls the spacing around the modal container.

            string medium
            • none, small, medium, large
            theme

            Controls the color theme of the modal container.

            string xlight
            • none, xlight, light, dark, xdark
            scroll

            Controls the scrolling area.

            string container
            • overall, container
            uuid

            Unique ID for modal, randomly generated if not provided.

            string
            slots

            There are 3 sections (slots) within the modal container. By assigning the appropriate slot name, content will be passed into the respective section.

            object
              • default

                The body section of the modal container.

              • header

                The header section of the modal container.

              • footer

                The footer section of the modal container.

            Advanced Schema Options

            disabled

            Default disabled prop supported globally by most Bolt components.

            boolean
            no_shadow

            Manually disables the component from rendering to the Shadow DOM in a Twig template. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

            boolean
            no_shadow

            Manually disables the web component from rendering to the Shadow DOM. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

            boolean
            Overview Usage Schema Edit this page Testing Steps
            Open Modal

            This is the modal container's header.

            This is the modal container's body

            This is the modal container's body.

            This is the modal container's footer.

            The modal container's width can be adjusted by the width prop. The default is set to optimal. Width Options
            Full This is a modal set to full width. This is taking up the full width of the screen minus the gutters (about 2rem on left and right).
            Regular This is a modal set to regular width. This is 10 out 12 columns wide, about 80% of the screen width.
            Optimal This is a modal set to optimal width. This is about 75 characters wide, close to optimal reading length.
            Auto This is a modal set to auto width. This adjusts to the width of the modal content. In most cases, the user must define a max-width in absolute value (do not use relative value such as %) on the modal content to get the desired results. Recommended for advanced usage.
            Additional Notes: this prop only applies to viewports equal to or above the small breakpoint (~600px).
            The modal container's spacing can be adjusted by the spacing prop. The default is set to medium. Spacing Options
            None This is a modal set to none spacing. This removes the spacing inside the modal container.
            Small This is a modal set to small spacing. This sets small inset spacing on the modal container.
            Medium This is a modal set to medium spacing. This sets medium inset spacing on the modal container.
            Large This is a modal set to large spacing. This sets large inset spacing on the modal container.
            Additional Notes: this prop only applies to viewports equal to or above the small breakpoint (~600px).
            The modal container's coloring theme can be adjusted by the theme prop. The default is set to xlight. Theme Options
            NoneThis is a modal set to none theme. This makes the modal container transparent.
            XlightThis is a modal set to xlight theme. This sets the xlight theme on the modal container.
            LightThis is a modal set to light theme. This sets the light theme on the modal container.
            DarkThis is a modal set to dark theme. This sets the dark theme on the modal container.
            XdarkThis is a modal set to xdark theme. This sets the xdark theme on the modal container.
            Additional Notes: this prop only applies to viewports equal to or above the small breakpoint (~600px).
            The scrollable area can be adjusted by using the scroll prop. The default is set to container. Scroll Options
            Overall This makes the overall viewport area scrollable.
            Container This makes the modal container itself scrollable.
            Additional Notes: this prop only applies to viewports equal to or above the small breakpoint (~600px).
            Trigger Options
            Button trigger This modal is triggered by a button. The Button component is the standard method to trigger a modal.

            Image trigger can be created by wrapping the Trigger component around an Image component.

            Advanced usage: if the Image component has an absolute value (e.g. 640px) defined for max_width, then the modal's width prop can be set to auto. This will allow the image inside the modal to be responsive but does not stretch beyond the specified max_width.

            Link trigger Link trigger is currently not supported.
            Custom JavaScript Usage You can write custom JavaScript to target the modal and attach behaviors. The following is an example of how you can use JavaScript to manipulate the Modal component. Please note that Bolt does not ship with any of this custom JavaScript. Demo
            Automatically open a modal Use custom JavaScript to automatically open a modal on page load, after a short delay. Click on the "Activate JavaScript" button to see a demo. The page will reload and a modal will open after 3 seconds. Activate JavaScript

            Auto-open Modal

            This modal will open 3 seconds after page load.

            Custom JavaScript <script> // Add parameter to the URL - demo helper function, not required in production var setAutoOpenModalParam = function(set){ var currentUrl = window.location.href.split('?').shift(); var param = '?showModal=true'; window.location.href = set ? currentUrl + param : currentUrl; } // Get parameter to the URL - demo helper function, not required in production var getUrlParameter = function(name) { name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]'); var regex = new RegExp('[\\?&]' + name + '=([^&#]*)'); var results = regex.exec(location.search); return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' ')); }; // Reference to the modal var autoOpenModal = document.querySelector('#js-modal-advanced-auto-open'); // Calls modal 'show' method after a delay var setAutoOpenModal = function(el) { if (getUrlParameter('showModal')) { setTimeout(function(){ el.show(); }, 3000) } } // Callback on modal 'ready' var onModalReady = function(e) { setAutoOpenModal(autoOpenModal); // IMPORTANT: remove this event listener unless you want it called each time the modal component renders e.target.removeEventListener('modal:ready', onModalReady); } // Add 'ready' callback autoOpenModal.addEventListener('modal:ready', onModalReady); </script>
            Image Modal Usage <bolt-trigger> is needed to create an image modal that gets triggered from either the Image component or the Device Viewer component. The following are examples of how you can assemble the necessary pieces together. Please note that you should use the width prop on <bolt-modal> to accommodate your needs, optimal width is about 70 characters wide, full width will take up the width of the page.
            Enlarge image and show caption Create a thumbnail image trigger and pass a figure with image and caption into the modal content. Note: make sure you upload a high-resolution image (up to 2880px wide) if you intend to show the image as big as possible. Modal width is set to auto and image max-width is set to 1000px.

            This is the caption for the image.

            Enlarge image (inside device viewer) and show caption Create a device viewer trigger and pass a figure with image and caption into the modal content. Note: make sure you upload a high-resolution image (up to 2880px wide) if you intend to show the image as big as possible. Modal width is set to optimal .

            This is the caption for the image.

            Video Modal Usage There are two options for playing a video in a modal. Both require some custom JavaScript. Option 1: Modal triggers Video Clicking a button calls a modal's show method. Custom JavaScript listens for the event and plays the video when it happens. Demo
            Play the video
            Video Player is loading.
            Current Time 0:00
            Duration -:-
            Loaded: 0%
            Stream Type LIVE
            Remaining Time 0:00
             
            1x
            Custom JavaScript <script> // Play the video on modal show, pause on hide const modal1 = document.querySelector('.js-modal-123'); const video1 = document.querySelector('.js-modal-video-123'); modal1.addEventListener('modal:show', function() { video1.play(); }); modal1.addEventListener('modal:hide', function() { video1.pause(); }); </script> Option 2: Video triggers Modal Clicking a button calls a video's toggle method. Custom JavaScript listens for the event and opens the modal when it happens. Demo
            Play the video
            Video Player is loading.
            Current Time 0:00
            Duration -:-
            Loaded: 0%
            Stream Type LIVE
            Remaining Time 0:00
             
            1x
            Custom JavaScript <script> // Show modal on video toggle, pause on modal hide const modal2 = document.querySelector('.js-modal-456'); const video2 = document.querySelector('.js-modal-video-456'); video2.addEventListener('playing', function() { modal2.show(); }); modal2.addEventListener('modal:hide', function() { video2.pause(); }); </script>
            Content Modal Usage Content modals can be as simple as a few lines of text or as complex as a page layout. Note: when using bands inside a modal, the full_bleed prop must be set to false.
            Show a simple layout Pass any components inside the modal content to create simple layouts, such as short confirmations, alerts, notifications, etc. Show content

            This Is a Headline

            This is a paragraph. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante.

            Show a complex layout Create complex layouts with components and layout objects inside the modal content and set the modal width to full to maximize space. For example, you can build a multi-column layout with the grid, band, and card components. Show content

            This Is an Eyebrow

            This Is a Headline

            This Is a Subheadline

            This is a paragraph. Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante.

            Sign in to view PegaWorld live stream

            Form Modal Usage Form modals are best suited for presenting a paywall, signup/login, or content restrictions.
            Form only Pass some text and a form into the modal content. Show form

            Get the report

            (all fields are required)

            "on-click": "show", "on-click-target": "js-modal-123"
            Web Component Usage Modal is a web component. You can simply use <bolt-modal> in the markup to make it render. In the following examples, we use onclick to trigger the modal. However, the same options shown on the Trigger Options page are also available on the web component.
            Open Modal This is a modal.
            <bolt-button on-click="show" on-click-target="js-bolt-modal-demo"> Open Modal </bolt-button> <bolt-modal class="js-bolt-modal-demo"> This is a modal. </bolt-modal>
            Basic Usage The modal container has 3 sections (slots) for passing content, header, default, footer. To pass content to either the header or footer, slot must be defined.
            Open Modal This is the header This is the body (default). This is the footer
            <bolt-button on-click="show" on-click-target="js-bolt-modal-basic-demo"> Open Modal </bolt-button> <bolt-modal class="js-bolt-modal-basic-demo"> <bolt-text slot="header">This is the header</bolt-text> <bolt-text>This is the body (default).</bolt-text> <bolt-text slot="footer">This is the footer</bolt-text> </bolt-modal>
            Trigger Usage When using an open button that comes right before a <bolt-modal>, set onclick to this.nextElementSibling.show(). When using a close button that's inside a <bolt-modal>, set onclick to this.closest('bolt-modal').hide().
            Open Modal This modal has a close button along with the content. Close Modal
            <bolt-button on-click="show" on-click-target="js-bolt-modal-trigger-demo"> Open Modal </bolt-button> <bolt-modal class="js-bolt-modal-trigger-demo"> <bolt-text>This modal has a close button along with the content.</bolt-text> <bolt-button on-click="hide">Close Modal</bolt-button> </bolt-modal>
            Advanced Usage The web component has all the options shown in the schema table. You can define each prop on the <bolt-modal> element. Use unique combinations to customize a modal to your liking.
            Open Modal
            <bolt-button on-click="show" on-click-target="js-bolt-modal-advanced-demo"> Open Modal </bolt-button> <bolt-modal width="optimal" spacing="none" theme="none" scroll="overall" class="js-bolt-modal-advanced-demo"> <bolt-image src="/images/content/backgrounds/background-robotics-customer-service.jpg" alt="This is an image"></bolt-image> </bolt-modal>
            Server-side Rendered Web Components (Experimental) The Modal component, among many other web components in Bolt, will support server-side rendering via the new upcoming {% filter bolt_ssr %} custom Twig filter. Check out the docs on server-side rendering for information!
            Open Modal This is a modal.
            {% filter bolt_ssr %} <bolt-button on-click="show" on-click-target="js-bolt-modal-ssr-demo"> Open Modal </bolt-button> <bolt-modal class="js-bolt-modal-ssr-demo"> This is a modal. </bolt-modal> {% endfilter %}

            Visualization & Simulation

            Continuously improve results by visualizing how future adjustments to your strategies can impact business performance. Simulate and test your ideas, evaluate the results using intuitive views, and then deploy optimal alterations.

            View the data sheet

            Section 1

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            Section 2

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            Section 3

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            Section 4

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            Section 5

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            Section 6

            Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed.

            Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci.

            2.9.2

            Navbar

            Navbar Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-navbar
            Source code
            View on Github
            Dependencies
            @bolt/components-nav-indicator @bolt/components-nav-priority @bolt/components-navlink @bolt/core

            Bolt's Component Explorer is being upgraded. It'll return in a future release!

            Navbar is a list of secondary links. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-navbar
            
            {% include "@bolt-components-navbar/navbar.twig" with { title: { tag: "h2", text: "Title Text", icon: { name: "icon-name" } }, links: [ { text: "Link 1 Text", url: "#!" }, { text: "Link 2 Text", url: "#!" }, { text: "Link 3 Text", url: "#!" } ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            theme

            Color theme. Can be set to 'none' for a transparent background.

            string dark
            • xlight, light, dark, xdark, none
            title

            Navbar title. Icon is optional. Tag can be set to h1 to h6 depending on the page.

            object
              • tag
                • h1, h2, h3, h4, h5, h6
              • text
              • icon
                  • name

                    Name of the (optional) icon to be used.

            center

            Determines if you want the Navbar content to be center aligned or not

            boolean
            • true, false
            width

            Adjusts the Navbar's overall maximum width behavior -- either filling up the entire browser's total screen width (full) or just the component's parent container width (auto).

            string full
            • full, auto
            links

            (Inherited from nav-priority) Array of links

            array
            • [items]:
              • Type: object
              • Properties:
                • text
                  • Type: string
                • url
                  • Type: string
            more_text

            (Inherited from nav-priority) Button text that displays when the Priority+ Nav Dropdown is displayed.

            string More
            offset

            (Inherited from nav-indicator) Number of pixels taken up by sticky items at the top of the page. Used for smooth scroll and gumshoe.

            integer
            Overview Usage Schema Edit this page

            The Navbar component's auto width option allows the component to be used in situations where it doesn't / shouldn't span the browser's entire screen-width in size (ex. in a sidebar or off-canvas nav)

            This provides maximum flexibility when coming up with creative solutions.

            2.9.2

            Ordered List

            Ordered-list Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-ol
            Source code
            View on Github
            Dependencies
            @bolt/components-li @bolt/core

            Stylistic numbered list for article content.

            Install via NPM
            npm install @bolt/components-ol
            
            {% include "@bolt-components-ol/ol.twig" with { items: [ "Do not include any data or information in your posts that are confidential!", "Apply basic practices for collaborative work.", "Be honest, respectful, trustworthy and helpful.", "Answer questions authoritatively and concisely. Avoid cluttering discussions with noise." ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            content_items

            Use the items prop instead.

            array
            • [items]:
              • Type: object

                A single list item object with either a text or contentItems key

              • Properties:
                • text
                  • Type: string
                • contentItems

                  Passes to @bolt/text.twig

                  • Type: object
            items *

            All items can be simple text or items.

            array
            Overview Usage Schema Edit this page Testing Steps

            ol

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Theme: xlight

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Theme: light

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Theme: dark

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Theme: xdark

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

            Theme: medium

            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.
            Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise. Answer questions authoritatively and concisely. Item 1 Item 2 Item 3 Item 4

            Web Component Usage

            Bolt Ordered List is a web component, you can simply use <bolt-ol> in the markup to make it render. Its inner content is comprised of <bolt-li>.

            Example

            <bolt-ol>
              <bolt-li>Item 1</bolt-li>
              <bolt-li>Item 2</bolt-li>
              <bolt-li>Item 3</bolt-li>
              <bolt-li>Item 4</bolt-li>
              <bolt-li>Item 5</bolt-li>
            </bolt-ol>

            Simple usage

            Item 1 Item 2 Item 3 Item 4 Item 5

            Nesting of lists (ol and ul)

            Item 1 Item 2 Item 3 Item 4 Item 5 Sub Item 1 Sub Item 2 Sub Item 3 Sub Item 4 Item Item Item Item Item Sub Item 5 Item Item Item Item Item Item Item Item Item Item Item Item Item Item Item

            Theme variations

            Theme: xlight

            Item 1 Item 2 Item 3 Item 4 Item 5

            Theme: light

            Item 1 Item 2 Item 3 Item 4 Item 5

            Theme: dark

            Item 1 Item 2 Item 3 Item 4 Item 5

            Theme: xdark

            Item 1 Item 2 Item 3 Item 4 Item 5
            2.10.0

            Page Header

            (In Progress) Page Header Component

            Published

            History
            View changes
            Install
            yarn add @bolt/components-page-header
            Source code
            View on Github
            Dependencies
            @bolt/components-typeahead @bolt/core

            Component in progress

            Install via NPM
            npm install @bolt/components-page-header
            

            Content

            Set content as arbitrary HTML:

            {% set content %}
              <p>Whatever HTML content you want</p>
            {% endset %}
            
            {% include "@bolt-components-page-header/page-header.twig" with { content: content } only %}
            Overview Usage Schema Edit this page
            2.9.2

            Bolt Pagination

            Pagination Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-pagination
            Source code
            View on Github
            Dependencies
            @bolt/core

            The sequence of numbers assigned to pages on a search results page. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-pagination
            
            {% include "@bolt-components-pagination/pagination.twig" with { current: 5, total: 10, first: { href: 'page-1-url' }, previous: { href: 'page-4-url' }, pages: { 3: { href: 'page-3-url' }, 4: { href: 'page-4-url' }, 5: { href: 'page-5-url' }, 6: { href: 'page-6-url' }, 7: { href: 'page-7-url' } }, next: { href: 'page-6-url' }, last: { href: 'page-10-url' } } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            align

            Horizontally align the items.

            string center
            • start, end, center
            total *

            Total pages within the pagination

            number
            current *

            Current page selected

            number
            pages *

            A keyed array of page item objects where the key is the page number

            array , object
            first

            A link object for the first page

            object
              • href

                The link for this pager item. Href may also be passed as part of attributes (which will take precedence).

              • attributes

                A Drupal-style attributes object for this link.

            previous

            A link object for the previous page (e.g. if on page 3, this links to page 2)

            object
              • href

                The link for this pager item. Href may also be passed as part of attributes (which will take precedence)

              • attributes

                A Drupal-style attributes object for this link.

            next

            A link object for the next page (e.g. if on page 3, this links to page 4)

            object
              • href

                The link for this pager item. Href may also be passed as part of attributes (which will take precedence)

              • attributes

                A Drupal-style attributes object for this link.

            last

            A link object for the last page

            object
              • href

                The link for this pager item. Href may also be passed as part of attributes (which will take precedence)

              • attributes

                A Drupal-style attributes object for this link.

            previous_text

            Text to be displayed for the previous anchor

            string Previous
            next_text

            Text to be displayed for the next anchor

            string Next
            Overview Usage Schema Edit this page Testing Steps

            Internationalization Support

            For better internationalization support, align prop uses the start (left) and end (right) vocab. This helps the pagination to have the desired alignment regardless of the writing direction of the language being displayed.

            Align start

            Align end

            Align center

            Pagination on the Left, Something on the Right

            In this case, you must set the align prop to be start so it is not centered within the cell.

            Bolt Placeholder Example
            xsmall Placeholder small Placeholder medium Placeholder large Placeholder xlarge Placeholder
            Bolt Placeholder Example Bolt Placeholder Example
            Bolt Placeholder Example

            Search Filter

            Search Filter Component in Bolt

            In Progress (Unreleased)

            History
            View changes
            Dependencies
            @bolt/components-button @bolt/components-button-group @bolt/core

            A wrapper for search filters that primarily handles mobile behavior. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            NOTE: as of this writing, this component is used only for internal Bolt demos and not in any actual search. It may require some modification to be usable in the real world.

            Install via NPM
            npm install @bolt/search-filter
            
            {% include "@bolt-components-search-filter/search-filter.twig" with { "content": "Insert search filters here." } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            content

            Renderable content (e.g. a string, render array, or included pattern) to display within a modal at mobile breakpoints. Typically, this is where the filters themselves go.

            Overview Usage Schema Edit this page
            Close search filter
            Insert search filters here.
            • Apply
            • Cancel
            Close search filter
            2.10.0

            Share

            Share Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-share
            Source code
            View on Github
            Dependencies
            @bolt/components-copy-to-clipboard @bolt/components-icon @bolt/components-list @bolt/core

            Share block. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-share
            

            Description

            The share component provides the user a visual queue to share the content with relevant peers, as well as an easy mechanism to actively do the sharing.

            OG Tags

            Example

            <meta property="og:type" content="article" />
            <meta property="og:title" content="Bolt Design System: Page Title" />
            <meta property="og:description" content="Sample description" />
            <meta property="og:image" content="https://boltdesignsystem.com/images/500x500-480.jpg" />
            <meta property="og:image:type" content="image/jpeg" />
            <meta property="og:image:width" content="480" />
            <meta property="og:image:height" content="480" />
            <meta property="og:url" content="https://boltdesignsystem.com/some-page-title-here" />
            <meta property="og:site_name" content="Bolt Design System" />
            <!-- Twitter specific tags -->
            <meta name="twitter:card" content="summary" />
            <meta name="twitter:title" content="Bolt Design System: Page Title" />
            <meta name="twitter:description" content="Sample description" />
            <meta name="twitter:image" content="https://boltdesignsystem.com/images/500x500-480.jpg" />
            <meta name="twitter:site" content="@pega" />
            

            Best Practices

            • Don't use the share tool with a page's related sections
            • Implement any "stickiness" and placement functionality on the platform the component is being used in
            • For larger screens, ease-in opacity from 0% to 100% on scroll. The placement should be lower right-hand side and fixed until the main page content is scrolled pass
            • Don't have the fixed position of the component overlap any "related content"
            {% include "@bolt-components-share/share.twig" with { sources: [ { name: "facebook", url: "https://www.facebook.com/sharer/sharer.php?u=https://boltdesignsystem.com&amp;src=sdkpreparse" }, { name: "twitter", url: "https://twitter.com/intent/tweet?url=https://boltdesignsystem.com&text=Sample%20Share%20Text&via=pega&hashtags=boltDesignSystemRocks!" }, { name: "linkedin", url: "https://www.linkedin.com/shareArticle?url=https://boltdesignsystem.com" }, { name: "email", url: "mailto:?&body=Sample%20Text%20--%20https%3A//boltdesignsystem.com" } ], copy_to_clipboard: { text_to_copy: "https://boltdesignsystem.com" }, } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            text

            Defines the label text in front of the social icons.

            string Share this page
            size

            Controls the size of icons and spacing.

            string medium
            • small, medium
            align

            Controls the horizontal alignment of label text and icons.

            string start
            • start, center, end
            opacity

            Controls the overall transparency of the share tool.

            integer 100
            • 100, 80, 60, 40, 20
            sources

            Social media sources to share to.

            array
            • [items]:
              • Type: object
              • Properties:
                • name

                  Name of the social media source.

                  • Type: string
                • url

                  The specifically formed share URL with query string.

                  • Type: string
            copy_to_clipboard object
            • @bolt-components-copy-to-clipboard/copy-to-clipboard.schema.yml > Object details
              • attributes

                A Drupal-style attributes object with extra attributes to append to this component.


                Type: object
              • text

                This property has been renamed trigger_text


                Type: string
              • copiedText

                Use the custom_confirmation property instead if you need to change the confirmation text.


                Type: string
              • iconSize

                Use custom_trigger, custom_transition, and custom_confirmation properties if you need to change icon size.


                Type: string
              • url

                This property has been renamed text_to_copy


                Type: string
              • trigger_text

                Text to use for the inital copy button. Ignored if the custom_trigger property is used.


                Type: string
              • text_to_copy

                The text to copy to the clipboard.


                Type: string
              • custom_trigger

                (optional) Custom content to show for the initial copy trigger. If you pass a link, set the URL to '#!' since it should not being followed.


                Type: string, object, array
              • custom_transition

                (optional) Custom content to show while copy is in progress. This content will be rotated while the copying happens, so it's recommended to pass an icon.


                Type: string, object, array
              • custom_confirmation

                (optional) Custom content to show after a successful copy.


                Type: string, object, array
            inline

            Button version has been removed so this prop is no longer needed.

            copy_to_clipboard

            Please use copy_to_clipboard.

            Overview Usage Schema Edit this page Testing Steps
            Share this page LinkedIn

            Small Size

            Share this page LinkedIn

            Medium Size

            Share this page LinkedIn

            Opacity will make the share tool semi-transparent, and transparency goes away if user hovers over it. This should be used if you don't want the share tool to create too much distractions on first impression.

            Opacity: 100

            Share this page LinkedIn

            Opacity: 80

            Share this page LinkedIn

            Opacity: 60

            Share this page LinkedIn

            Opacity: 40

            Share this page LinkedIn

            Opacity: 20

            Share this page LinkedIn

            Align: start

            Share this page LinkedIn

            Align: center

            Share this page LinkedIn

            Align: end

            Share this page LinkedIn
            This is a custom label LinkedIn

            xdark

            Share this page LinkedIn
            Share this page LinkedIn
            Share this page LinkedIn

            dark

            Share this page LinkedIn
            Share this page LinkedIn
            Share this page LinkedIn

            light

            Share this page LinkedIn
            Share this page LinkedIn
            Share this page LinkedIn

            xlight

            Share this page LinkedIn
            Share this page LinkedIn
            Share this page LinkedIn
            2.9.2

            Stack

            A container component that defines spacing between elements vertically

            Published

            History
            View changes
            Install
            yarn add @bolt/components-stack
            Source code
            View on Github
            Dependencies
            @bolt/core

            A container component that defines spacing between elements vertically.. Part of the collection of components, visual styles, and build tools that power the the Bolt Design System.

            Install via NPM
            npm install @bolt/components-stack
            
            {% include "@bolt-components-stack/stack.twig" with { content: "This is one stack." } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal attributes object. Used to apply with extra HTML attributes to the outer <bolt-stack> tag.

            object
            spacing

            Control the spacing in between items.

            string medium
            • xlarge, large, medium, small, xsmall, none
            content

            Content of the stack.

            string , array , object

            Advanced Schema Options

            no_shadow

            Manually disables the component from rendering to the Shadow DOM in a Twig template. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

            boolean
            no_shadow

            Manually disables the web component from rendering to the Shadow DOM. Useful for testing cross browser functionality / rendering behavior. By default this is handled globally based on browser support.

            boolean
            Overview Usage Schema Edit this page Testing Steps
            This is one stack. A stack spans the full width of its parent container.
            This is another stack.

            Multiple stacks with xlarge spacing

            This stack has xlarge spacing.
            This stack has xlarge spacing.
            This stack has xlarge spacing.

            Multiple stacks with large spacing

            This stack has large spacing.
            This stack has large spacing.
            This stack has large spacing.

            Multiple stacks with medium spacing

            This stack has medium spacing.
            This stack has medium spacing.
            This stack has medium spacing.

            Multiple stacks with small spacing

            This stack has small spacing.
            This stack has small spacing.
            This stack has small spacing.

            Multiple stacks with xsmall spacing

            This stack has xsmall spacing.
            This stack has xsmall spacing.
            This stack has xsmall spacing.

            Multiple stacks with none spacing

            This stack has none spacing.
            This stack has none spacing.
            This stack has none spacing.
            2.9.2

            Sticky

            Sticky Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-sticky
            Source code
            View on Github
            Dependencies
            @bolt/core stickyfilljs

            Sticky makes any component sticky to the top of the page. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-sticky
            
            {% embed "@bolt-components-sticky/sticky.twig" %} {% block sticky_content %} // Sticky content {% endblock %} {% endembed %}
            Overview Usage Schema Edit this page Testing Steps
            2.9.2

            Table

            Table Component in Bolt

            Published

            History
            View changes
            Install
            yarn add @bolt/components-table
            Source code
            View on Github
            Dependencies
            @bolt/core himalaya

            Table layout for tabular content. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-table
            
            {% include "@bolt-components-table/table.twig" with { headers: { top: { cells: [ "Column 1", "Column 2", "Column 3", ] }, side: { cells: [ "Row 1", "Row 2", "Row 3", "Footer", ] } }, rows: [ { cells: [ "R1C1", "R1C2", "R1C3", ] }, { cells: [ "R2C1", "R2C2", "R2C3", ] }, { cells: [ "R3C1", "R3C2", "R3C3", ] } ], footer: { cells: [ "FC1", "FC2", "FC3", ] } } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            attributes

            A Drupal-style attributes object with extra attributes to append to this component.

            object
            headers

            Generates top and side headers, each can contain an array of cells.

            object
              • top
                  • cells

                    Each item represents a cell in the top header.

                    • [items]:
                      • Type: any
                      • Properties:
                        • content
                          • Type: string
                        • attributes
                          • Type: object
              • side
                  • cells

                    Each item represents a cell in the side header.

                    • [items]:
                      • Type: any
                      • Properties:
                        • content
                          • Type: string
                        • attributes
                          • Type: object
            rows *

            Generates an array of rows, each can contain an array of cells.

            array
              • cells

                Each item represents a cell in a row.

                • [items]:
                  • Type: any
                  • Properties:
                    • content
                      • Type: string
                    • attributes
                      • Type: object
            footer

            Generates a table footer, can contain an array of cells.

            object
              • cells

                Each item represents a cell in the footer.

                • [items]:
                  • Type: any
                  • Properties:
                    • content
                      • Type: string
                    • attributes
                      • Type: object
            format

            Display either a regular table or a more complex numeric table.

            string regular
            • regular, numeric
            borderless

            Removes the vertical border in between cells.

            boolean false
            • true, false
            first_col_fixed_width

            Sets the width of the first column to be as wide as the longest text.

            boolean false
            • true, false
            Overview Usage Schema Edit this page Testing Steps

            With Rows Only

            R1C1 R1C2 R1C3
            R2C1 R2C2 R2C3
            R3C1 R3C2 R3C3

            With Top Headers

            Column 1 Column 2 Column 3
            R1C1 R1C2 R1C3
            R2C1 R2C2 R2C3
            R3C1 R3C2 R3C3

            With Side Headers

            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3

            With Top and Side Headers

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3

            With Headers and Footer

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3

            Real Example

            Item number Description Assemblies
            Build 2.0.1.0 — SR-49969 SR-49941 This hotfix changes Updater requirements for .NET. If you are using Updater with 7.1 or 8.0 Robotic Automation Runtime clients, you now need to have both .NET 4.0 and .NET 3.5 installed. OpenSpan.UpdaterService.Remoting.dll
            OpenSpan.Updater.ServerClientInterface.dll
            OpenSpan.Updater.ScheduledTasks.dll
            OpenSpan.Updater.PrePostOperation.dll
            OpenSpan.Updater.Git.dll
            OpenSpan.VersionFinder.exe
            OpenSpan.UpdaterService.exe
            OpenSpan.Updater.X509tool.exe
            OpenSpan.Updater.UserHelper.exe
            OpenSpan.Updater.UninstallHelper.exe
            OpenSpan.Updater.RuntimeLauncher.exe
            OpenSpan.Updater.InstallHelper.exe
            OpenSpan.Updater.Initializer.exe
            Build 1.1.360 — SR-44891 SR-44869 This hotfix changes the system to better handle long file names. It also enhances VersionFinder to sort the list of branches, making it easier to find a specific branch. OpenSpan.Updater.Git.dll
            SR-43163 This hotfix adds a list of post-update tasks to the RuntimeConfig.xml file. These tasks are run after files that match a pattern you specify are updated. OpenSpan.Updater.Git.dll
            OpenSpan.Updater.Initializer.exe
            OpenSpan.Updater.InstallHelper.exe
            OpenSpan.Updater.PrePostOperation.dll
            OpenSpan.Updater.PreReqCheck.dll
            OpenSpan.Updater.RuntimeLauncher.exe
            OpenSpan.Updater.ScheduledTasks.dll
            OpenSpan.Updater.ServerClientInterface.dll
            OpenSpan.Updater.ServerClientInterface.Tester.exe
            OpenSpan.Updater.UninstallHelper.exe
            OpenSpan.Updater.UserHelper.exe
            OpenSpan.Updater.X509tool.exe
            OpenSpan.UpdaterService.Remoting.dll
            OpenSpan.UpdaterService.exe
            Build 1.1.354 — SR-44889 SR-44850 This hotfix changes Updater to avoid an exception that could prevent it from correctly populating branches. ManagedOpenSsl.dll

            Numeric format is recommended for a table with numbers only, such as box scores.

            Regular Format

            Pts Reb Ast Stl Blk
            Michael Jordan 70 10 2 5 1
            Toni Kukoc 21 15 10 3 4
            Steve Kerr 5 2 20 5 0
            Total 91 27 32 13 5

            Numeric Format

            Pts Reb Ast Stl Blk
            Michael Jordan 70 10 2 5 1
            Toni Kukoc 21 15 10 3 4
            Steve Kerr 5 2 20 5 0
            Total 91 27 32 13 5

            Remove the vertical border in between cells.

            Description Team Vehicle Form
            Optimus Prime The awe-inspiring leader of the Autobot forces. Selfless and endlessly courageous, he is the complete opposite of his mortal enemy Megatron. Autobots Peterbilt Truck
            Bumblebee One of Optimus Prime's most trusted lieutenants. Although he is not the strongest or most powerful of the Autobots, Bumblebee more than makes up for this with a bottomless well of luck, determination and bravery. He would gladly give his life to protect others and stop the Decepticons. Autobots VW Beetle

            Set column widths to be flexible.

            Prop Description Type
            attributes Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. object
            headers Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. object
            rows Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. array
            format Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. string

            Set the width of the first column to be as wide as the longest text.

            Prop Description Type
            attributes Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. object
            headers Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. object
            rows Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. array
            format Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. string

            Add attributes to table cells.

            This cell spans 2 columns and has an utility class. Column 3 Column 4
            Row 1 R1C1 R1C2 This cell spans 2 columns and has an utility class.
            Row 2 R2C1 R2C2 This cell spans 2 columns, 2 rows and has an utility class.
            Row 3 R3C1 R3C2
            Footer This cell spans 2 columns and has an utility class. FC3 FC4

            xdark

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3

            dark

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3

            light

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3

            xlight

            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3

            Pass different items into cells

            Item number Description Assemblies

            Build 2.0.1.0 — SR-49969

            SR-49941 This hotfix changes Updater requirements for .NET. If you are using Updater with 7.1 or 8.0 Robotic Automation Runtime clients, you now need to have both .NET 4.0 and .NET 3.5 installed. OpenSpan.UpdaterService.Remoting.dll
            OpenSpan.Updater.ServerClientInterface.dll
            OpenSpan.Updater.ScheduledTasks.dll
            OpenSpan.Updater.PrePostOperation.dll
            OpenSpan.Updater.Git.dll
            OpenSpan.VersionFinder.exe
            OpenSpan.UpdaterService.exe
            OpenSpan.Updater.X509tool.exe
            OpenSpan.Updater.UserHelper.exe
            OpenSpan.Updater.UninstallHelper.exe
            OpenSpan.Updater.RuntimeLauncher.exe
            OpenSpan.Updater.InstallHelper.exe
            OpenSpan.Updater.Initializer.exe
            Build 2.0.1.0 — SR-49969 SR-44869 OpenSpan.Updater.Git.dll
            Build 1.1.360 — SR-44891 SR-43163 This hotfix adds a list of post-update tasks to the RuntimeConfig.xml file. These tasks are run after files that match a pattern you specify are updated.
            SR-44850 This hotfix changes Updater to avoid an exception that could prevent it from correctly populating branches. ManagedOpenSsl.dll
            Web Component Usage Bolt Table is a web component that renders a semantic table with Bolt styles. To make a simple table, wrap a semantic <table> element with a <bolt-table> element.
            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3
            <bolt-table> <table> <thead> <tr> <td></td> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> </thead> <tbody> <tr> <th>Row 1</th> <td>R1C1</td> <td>R1C2</td> <td>R1C3</td> </tr> <tr> <th>Row 2</th> <td>R2C1</td> <td>R2C2</td> <td>R2C3</td> </tr> <tr> <th>Row 3</th> <td>R3C1</td> <td>R3C2</td> <td>R3C3</td> </tr> </tbody> <tfoot> <tr> <th>Footer</th> <td>FC1</td> <td>FC2</td> <td>FC3</td> </tr> </tfoot> </table> </bolt-table>
            Prop Usage Configure the table with the properties specified in the schema.
            Pts Reb Ast Stl Blk
            Michael Jordan 70 10 2 5 1
            Toni Kukoc 21 15 10 3 4
            Steve Kerr 5 2 20 5 0
            Total 91 27 32 13 5
            <bolt-table format="numeric" borderless> <table> <thead> <tr> <td></td> <td>Pts</td> <td>Reb</td> <td>Ast</td> <td>Stl</td> <td>Blk</td> </tr> </thead> <tbody> <tr> <th>Michael Jordan</th> <td>70</td> <td>10</td> <td>2</td> <td>5</td> <td>1</td> </tr> <tr> <th>Toni Kukoc</th> <td>21</td> <td>15</td> <td>10</td> <td>3</td> <td>4</td> </tr> <tr> <th>Steve Kerr</th> <td>5</td> <td>2</td> <td>20</td> <td>5</td> <td>0</td> </tr> </tbody> <tfoot> <tr> <th>Total</th> <td>91</td> <td>27</td> <td>32</td> <td>13</td> <td>5</td> </tr> </tfoot> </table> </bolt-table>
            Advanced Usage Attributes and utility classes are supported on table headers and cells.
            This cell spans 2 columns and has an utility class. Column 3 Column 4
            Row 1 R1C1 R1C2 This cell spans 2 columns and has an utility class.
            Row 2 R2C1 R2C2 This cell spans 2 columns, 2 rows and has an utility class.
            Row 3 R3C1 R3C2
            Footer This cell spans 2 columns and has an utility class. FC3 FC4
            <bolt-table> <table> <thead> <tr> <td></td> <th colspan="2" class="u-bolt-color-indigo-light"> This cell spans 2 columns and has an utility class. </th> <th>Column 3</th> <th>Column 4</th> </tr> </thead> <tbody> <tr> <th>Row 1</th> <td>R1C1</td> <td>R1C2</td> <td colspan="2" class="u-bolt-color-orange-dark"> This cell spans 2 columns and has an utility class. </td> </tr> <tr> <th>Row 2</th> <td>R2C1</td> <td>R2C2</td> <td colspan="2" rowspan="2" class="u-bolt-color-orange-dark"> This cell spans 2 columns, 2 rows and has an utility class. </td> </tr> <tr> <th>Row 3</th> <td>R3C1</td> <td>R3C2</td> </tr> </tbody> <tfoot> <tr> <th>Footer</th> <td colspan="2" class="u-bolt-color-teal"> This cell spans 2 columns and has an utility class. </td> <td>FC3</td> <td>FC4</td> </tr> </tfoot> </table> </bolt-table>
            Accepted Data Each table header or cell can accept any Bolt web components, HTML markup, or just plain text.
            Item number Description Assemblies
            Build 2.0.1.0 — SR-49969 SR-49941 This hotfix changes Updater requirements for .NET. If you are using Updater with 7.1 or 8.0 Robotic Automation Runtime clients, you now need to have both .NET 4.0 and .NET 3.5 installed. OpenSpan.UpdaterService.Remoting.dll
            OpenSpan.Updater.ServerClientInterface.dll
            OpenSpan.Updater.ScheduledTasks.dll
            OpenSpan.Updater.PrePostOperation.dll
            OpenSpan.Updater.Git.dll
            OpenSpan.VersionFinder.exe
            OpenSpan.UpdaterService.exe
            OpenSpan.Updater.X509tool.exe
            OpenSpan.Updater.UserHelper.exe
            OpenSpan.Updater.UninstallHelper.exe
            OpenSpan.Updater.RuntimeLauncher.exe
            OpenSpan.Updater.InstallHelper.exe
            OpenSpan.Updater.Initializer.exe
            Build 2.0.1.0 — SR-49969 SR-44869 OpenSpan.Updater.Git.dll
            Build 1.1.360 — SR-44891 SR-43163 This hotfix adds a list of post-update tasks to the RuntimeConfig.xml file. These tasks are run after files that match a pattern you specify are updated.
            SR-44850 This hotfix changes Updater to avoid an exception that could prevent it from correctly populating branches. ManagedOpenSsl.dll
            <bolt-table first-col-fixed-width> <table> <thead> <tr> <td></td> <th>Item number</th> <th>Description</th> <th>Assemblies</th> </tr> </thead> <tbody> <tr> <th> <bolt-text headline font-size="small" text-transform="uppercase" letter-spacing="wide"> Build 2.0.1.0 — SR-49969 </bolt-text> </th> <td> <bolt-button size="small" url="#!">SR-49941</bolt-button> </td> <td> This hotfix changes Updater requirements for .NET. If you are using Updater with 7.1 or 8.0 Robotic Automation Runtime clients, you now need to have both .NET 4.0 and .NET 3.5 installed. </td> <td> OpenSpan.UpdaterService.Remoting.dll<br> OpenSpan.Updater.ServerClientInterface.dll<br> OpenSpan.Updater.ScheduledTasks.dll<br> OpenSpan.Updater.PrePostOperation.dll<br> OpenSpan.Updater.Git.dll<br> OpenSpan.VersionFinder.exe<br> OpenSpan.UpdaterService.exe<br> OpenSpan.Updater.X509tool.exe<br> OpenSpan.Updater.UserHelper.exe<br> OpenSpan.Updater.UninstallHelper.exe<br> OpenSpan.Updater.RuntimeLauncher.exe<br> OpenSpan.Updater.InstallHelper.exe<br> OpenSpan.Updater.Initializer.exe </td> </tr> <tr> <th>Build 2.0.1.0 — SR-49969</th> <td>SR-44869</td> <td> <img src="http://fillmurray.com/200/200"> </td> <td>OpenSpan.Updater.Git.dll</td> </tr> <tr> <th rowspan="2">Build 1.1.360 — SR-44891</th> <td>SR-43163</td> <td> This hotfix adds a list of post-update tasks to the <span>RuntimeConfig.xml </span>file. These tasks are run after files that match a pattern you specify are updated. </td> <td> <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" srcset="/images/placeholders/tout-4x3-climber-50.jpg 50w, /images/placeholders/tout-4x3-climber-100.jpg 100w, /images/placeholders/tout-4x3-climber-200.jpg 200w, /images/placeholders/tout-4x3-climber-320.jpg 320w, /images/placeholders/tout-4x3-climber-480.jpg 480w, /images/placeholders/tout-4x3-climber-640.jpg 640w" alt="A Rock Climber" ratio="64/48"></bolt-image> </td> </tr> <tr> <td> <bolt-chip tag="a" url="#!">SR-44850</bolt-chip> </td> <td> This hotfix changes Updater to avoid an exception that could prevent it from correctly populating branches. </td> <td>ManagedOpenSsl.dll</td> </tr> </tbody> </table> </bolt-table>
            2.9.2

            Tabs

            Tabs organize multiple panels of related content, allowing users to view one panel at a time.

            Published

            History
            View changes
            Install
            yarn add @bolt/components-tabs
            Source code
            View on Github
            Dependencies
            @bolt/components-trigger @bolt/core
            Install via NPM
            npm install @bolt/components-tabs
            
            {% include "@bolt-components-tabs/tabs.twig" with { panels: [ { label: "Tab label 1", content: "Tab panel 1.", }, { label: "Tab label 2", content: "Tab panel 2.", }, { label: "Tab label 3", content: "Tab panel 3.", } ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            panels

            All of the tab panels. Each panel should contain a label and content.

            array
            • [items]:
              • Type: object
              • Properties:
                • label

                  Tab label used in the navigation. Twig only.

                  • Type: string
                • content

                  Tab panel content.

                  • Type: string , object , array
                • selected

                  Set active state on tab. Only one active tab allowed at a time. Defaults to first tab.

                  • Type: boolean
            align

            Horizontal alignment of tab labels.

            string start
            • start, center, end
            label_spacing

            Set label spacing.

            string small
            • small, medium
            panel_spacing

            Set panel spacing.

            string small
            • none, small, medium
            inset

            Controls spacing placement on tab labels and panels.

            string auto
            • auto, on, off
            selected_tab - Minimum is 1

            Set selected tab by number. To select the second tab, set to 2.

            integer 1
            Overview Usage Schema Edit this page

            tabs

            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            The inset prop controls how label_spacing and panel_spacing are applied. When set to auto (default), there is inset spacing around labels and no inset spacing around panels, which means panels are flush with the edges of the parent container. When set to on, spacing is applied around the labels as well as the panels. This works well in a container which has no inner padding of its own. When set to off, all inset spacing is turned off. label_spacing applies between labels rather than around them, and panel_spacing only applies above the panel, making the panel flush with the edges of the parent container. Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Use label_spacing and panel_spacing props, in conjunction with inset, to set spacing around tab labels and panels. See Inset variations page for more on the inset prop.
            Label spacing Use label_spacing to set spacing around (or between) tab labels.
            Spacing: small
            Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Spacing: medium
            Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Panel spacing Use panel_spacing to set spacing around tab panels.
            Spacing: none
            Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Spacing: small
            Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Spacing: medium
            Inset: auto
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: on
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Inset: off
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Align: start
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Align: center
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Align: end
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Tab label 1
            Tab panel 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porta ut tortor id luctus. Cras fermentum pretium ipsum sit amet tempus. Sed lobortis dui ante, feugiat pharetra turpis dapibus sit amet. Donec hendrerit diam vel ante hendrerit ornare. Donec non aliquam nisi.
            Tab label 2
            Tab panel 2. Aliquam dignissim non ligula et condimentum. Donec et luctus orci. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer quis dui velit. Proin hendrerit turpis eu elementum rhoncus.
            Tab label 3
            Tab panel 3. Curabitur fermentum dolor sed dignissim lobortis. Curabitur rutrum arcu velit, a placerat nunc sodales at. Sed vel mi ac lectus volutpat accumsan nec in ipsum. In hac habitasse platea dictumst. Morbi lobortis pellentesque ultricies. Cras ultrices sapien quis tellus porttitor consequat.
            Tab label 1
            Tab panel 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porta ut tortor id luctus. Cras fermentum pretium ipsum sit amet tempus. Sed lobortis dui ante, feugiat pharetra turpis dapibus sit amet. Donec hendrerit diam vel ante hendrerit ornare. Donec non aliquam nisi.
            Tab label 2
            Tab panel 2. Aliquam dignissim non ligula et condimentum. Donec et luctus orci. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer quis dui velit. Proin hendrerit turpis eu elementum rhoncus.
            Tab label 3
            Tab panel 3. Curabitur fermentum dolor sed dignissim lobortis. Curabitur rutrum arcu velit, a placerat nunc sodales at. Sed vel mi ac lectus volutpat accumsan nec in ipsum. In hac habitasse platea dictumst. Morbi lobortis pellentesque ultricies. Cras ultrices sapien quis tellus porttitor consequat.
            Tab label 1
            Tab panel 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porta ut tortor id luctus. Cras fermentum pretium ipsum sit amet tempus. Sed lobortis dui ante, feugiat pharetra turpis dapibus sit amet. Donec hendrerit diam vel ante hendrerit ornare. Donec non aliquam nisi.
            Tab label 2
            Tab panel 2. Aliquam dignissim non ligula et condimentum. Donec et luctus orci. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer quis dui velit. Proin hendrerit turpis eu elementum rhoncus.
            Tab label 3
            Tab panel 3. Curabitur fermentum dolor sed dignissim lobortis. Curabitur rutrum arcu velit, a placerat nunc sodales at. Sed vel mi ac lectus volutpat accumsan nec in ipsum. In hac habitasse platea dictumst. Morbi lobortis pellentesque ultricies. Cras ultrices sapien quis tellus porttitor consequat.
            Tab label 1
            Tab panel 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porta ut tortor id luctus. Cras fermentum pretium ipsum sit amet tempus. Sed lobortis dui ante, feugiat pharetra turpis dapibus sit amet. Donec hendrerit diam vel ante hendrerit ornare. Donec non aliquam nisi.
            Tab label 2
            Tab panel 2. Aliquam dignissim non ligula et condimentum. Donec et luctus orci. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer quis dui velit. Proin hendrerit turpis eu elementum rhoncus.
            Tab label 3
            Tab panel 3. Curabitur fermentum dolor sed dignissim lobortis. Curabitur rutrum arcu velit, a placerat nunc sodales at. Sed vel mi ac lectus volutpat accumsan nec in ipsum. In hac habitasse platea dictumst. Morbi lobortis pellentesque ultricies. Cras ultrices sapien quis tellus porttitor consequat.
            A teaser

            Eyebrow

            This is a headline.

            Body text. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

            • CTA 1
            • CTA 2
            A table
            Column 1 Column 2 Column 3
            Row 1 R1C1 R1C2 R1C3
            Row 2 R2C1 R2C2 R2C3
            Row 3 R3C1 R3C2 R3C3
            Footer FC1 FC2 FC3
            An image
            A video
            Video Player is loading.
            Current Time 0:00
            Duration -:-
            Loaded: 0%
            Stream Type LIVE
            Remaining Time 0:00
             
            1x
            An accordion
            Accordion item 1
            This is the accordion content.
            Accordion item 2
            This is the accordion content.
            Accordion item 3
            This is the accordion content.
            A carousel
            Tab label 1
            Tab panel
            Tab label 2
            Tab panel
            A very long tab label
            Tab panel
            Tab label 4
            Tab panel
            Tab label 5
            Tab panel
            Tab label 6
            Tab panel
            Tab label 1
            Tab panel
            Tab label 2
            Tab panel
            Tab label 3
            Tab panel
            Tab label 4
            Tab panel
            Tab label 5
            Tab panel
            Tab label 6
            Tab panel
            Use selected_tab prop to pre-selected a tab by number. To select the second tab, set selected_tab to 2. Defaults to first.
            Tab label 1
            Tab panel 1
            Tab label 2
            Tab panel 2
            Tab label 3
            Tab panel 3
            Tabbed Band A Tabbed Band is a high-level content container that utilizes a specific configuration of the Band and the Tabs components. Tabs will need the following props: inset: "off", label_spacing: "medium", panel_spacing: "medium",

            This is a Tabbed Band

            This is Tab 1

            Maximize Value with Next Best Action Intelligence

            Blow away your customer’s expectations - engage each individual one-to-one, letting the AI constantly adapt to their needs.

            • Call to action
            • Call to action
            This is Tab 2
            Maximize Value with Next Best Action Intelligence

            Blow away your customer’s expectations - engage each individual one-to-one, letting the AI constantly adapt to their needs.

            • Call to action
            • Call to action
            This is Tab 3

            Customer Decision Hub

            Infuse real-time AI into every customer engagement

            There’s nothing artificial about Pega’s proven AI. This always-on brain gets results. Using pragmatic artificial intelligence and decision management, you can improve response rates by up to 6X, NPS by 30 points, and get ROI as high as 500%.

            Call to Action
            Web Component Usage Tabs is a web component. Add the <bolt-tabs> element containing multiple <bolt-tabs-panel> elements to create a set of tabs. Inside each <bolt-tab-panel> mark the "label" content with the attribute slot="label". Everything else is considered tab "content".
            Tab label 1 Tab panel 1 Tab label 2 Tab panel 2 Tab label 3 Tab panel 3
            <bolt-tabs> <bolt-tab-panel> <bolt-text slot="label">Tab label 1</bolt-text> <bolt-text>Tab panel 1</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 2</bolt-text> <bolt-text>Tab panel 2</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 3</bolt-text> <bolt-text>Tab panel 3</bolt-text> </bolt-tab-panel> </bolt-tabs>
            Prop Usage Configure the tabs with the properties specified in the schema.
            Tab label 1 Tab panel 1 Tab label 2 Tab panel 2 Tab label 3 Tab panel 3
            <bolt-tabs panel-spacing="small" align="center"> <bolt-tab-panel> <bolt-text slot="label">Tab label 1</bolt-text> <bolt-text>Tab panel 1</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 2</bolt-text> <bolt-text>Tab panel 2</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 3</bolt-text> <bolt-text>Tab panel 3</bolt-text> </bolt-tab-panel> </bolt-tabs>
            Advanced Usage Two advanced options are shown below. Automatically show a <bolt-tab-panel> by setting selected-tab on <bolt-tabs> or by adding selected to a single <bolt-tab-panel>.
            Tab label 1 Tab panel 1 Tab label 2 Tab panel 2 Tab label 3 Tab panel 3 Tab label 1 Tab panel 1 Tab label 2 Tab panel 2 Tab label 3 Tab panel 3
            <!-- Use `selected-tab` to set selected tab --> <bolt-tabs selected-tab="2"> <bolt-tab-panel> <bolt-text slot="label">Tab label 1</bolt-text> <bolt-text>Tab panel 1</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 2</bolt-text> <bolt-text>Tab panel 2</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 3</bolt-text> <bolt-text>Tab panel 3</bolt-text> </bolt-tab-panel> </bolt-tabs> <!-- Use `selected` to set selected tab --> <bolt-tabs> <bolt-tab-panel> <bolt-text slot="label">Tab label 1</bolt-text> <bolt-text>Tab panel 1</bolt-text> </bolt-tab-panel> <bolt-tab-panel selected> <bolt-text slot="label">Tab label 2</bolt-text> <bolt-text>Tab panel 2</bolt-text> </bolt-tab-panel> <bolt-tab-panel> <bolt-text slot="label">Tab label 3</bolt-text> <bolt-text>Tab panel 3</bolt-text> </bolt-tab-panel> </bolt-tabs>
            2.10.0

            Teaser

            Teaser Component

            Published

            History
            View changes
            Install
            yarn add @bolt/components-teaser
            Source code
            View on Github
            Dependencies
            @bolt/components-headline @bolt/components-logo @bolt/core

            Teaser block. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

            Install via NPM
            npm install @bolt/components-teaser
            
            {% include "@bolt-components-teaser/teaser.twig" with { content: "Body text. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", buttons: [ { pattern: "button", style: "primary", text: "CTA 1" }, { pattern: "button", style: "secondary", text: "CTA 2" } ] } only %}

            Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

            Prop Name Description Type Default Value Option(s)
            eyebrow

            Eyebrow text component

            object
            • @bolt-components-headline/headline.schema.yml > Object details
              • text

                Renderable text content of the headline.


                Type: string, object, array
              • tag

                Html tag.


                Type: string
                • h1, h2, h3, h4, h5, h6, p, span, cite, div
              • align

                Text alignment.


                Type: string
                • left, center, right
              • weight

                Font weights.


                Type: string
                • bold, regular, semibold
              • style

                Font styles.


                Type: string
                • normal, italic
              • size

                Font size.


                Type: string
                • xsmall, small, medium, large, xlarge, xxlarge, xxxlarge
              • transform

                Text transformation.


                Type: string
                • uppercase, lowercase, capitalize
              • url

                If provided, turns headline into a link to given url.


                Type: string
              • icon

                Bolt icon. Accepts either 1) an icon name as a string 2) an icon object as expected by @bolt-components-icon or 3) the string "none" to explicitly remove default icons


                Type:
              • quoted

                Adds quoted styling to text.


                Type: boolean
            headlines

            An array of headline component objects

            array
            • [items]:
              • Type: object

                Headline text components

              • Properties:
              logo

              Bolt logo component

              object
              • @bolt-components-logo/logo.schema.yml > Object details
                • invert

                  Set to true to invert the logo colors.


                  Type: boolean
              content

              Body text of teaser

              string
              content_items

              Array of content item objects

              array
              • [items]:
                • Type: object
                • Properties:
                buttons

                An array of button component objects

                array
                • [items]:
                  • Type: object

                    A button

                  • Properties:
                  Overview Usage Schema Edit this page

                  Body text. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

                  • CTA 1
                  • CTA 2

                  Eyebrow

                  This is a headline.

                  Body text. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

                  • CTA 1
                  • CTA 2
                  2.9.2

                  Text

                  Text Component in Bolt

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-text
                  Source code
                  View on Github
                  Dependencies
                  @bolt/components-link @bolt/core

                  Text component v2. This is still in progress and only available as a web component. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

                  Install via NPM
                  npm install @bolt/components-text
                  
                  <bolt-text> This is text. </bolt-text>

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  attributes

                  A Drupal-style attributes object with extra attributes to append to this component.

                  object
                  text *

                  Text content of the headline.

                  string
                  tag

                  HTML semantic tags.

                  string p
                  • h1, h2, h3, h4, h5, h6, p, div, span, cite
                  display

                  Inline text or a block of text.

                  string block
                  • inline, block
                  color

                  Text color in context of theme colors.

                  string theme-body
                  • theme-headline, theme-body
                  align

                  Text alignment.

                  string inherit
                  • inherit, start, center, end
                  opacity

                  Opacity level.

                  number 100
                  • 100, 80, 60, 40, 20
                  quoted

                  Quoted text.

                  boolean false
                  • true, false
                  line_height

                  Line height in context of the typographic design.

                  string regular
                  • tight, regular, loose
                  letter_spacing

                  Letter spacing in context of the typographic design.

                  string regular
                  • narrow, regular, wide
                  text_transform

                  Transform controls the type case. Please note that capitalize would capitalize the first letter of each word, it is not the same as title case.

                  string regular
                  • regular, uppercase, lowercase, capitalize
                  font_family

                  Font family in context of the typographic design.

                  string body
                  • headline, body, code
                  font_size

                  Font size in context of the typographic design.

                  string medium
                  • xsmall, small, medium, large, xlarge, xxlarge, xxxlarge
                  font_weight

                  Font weight in context of the typographic design.

                  string regular
                  • regular, semibold, bold
                  font_style

                  Emphasized text.

                  string regular
                  • regular, italic
                  headline

                  A preset for headlines in context of the typographic design.

                  boolean false
                  • true, false
                  subheadline

                  A preset for subheadlines in context of the typographic design.

                  boolean false
                  • true, false
                  eyebrow

                  A preset for eyebrow in context of the typographic design.

                  boolean false
                  • true, false
                  url

                  If provided, turns headline into a link to given url.

                  string
                  util

                  Each item in the array will build a utility class. No need to include u-bolt-. For the web component use comma separated string.

                  array
                  Overview Usage Schema Edit this page Testing Steps

                  text

                  Web Component Usage Bolt Text is a web component, you can simply use <bolt-text> in the markup to make it render.
                  This is text.
                  <bolt-text> This is text. </bolt-text>
                  Typographic Design The following are the official recipes for each piece of our typography. They will cover all common use cases. Only in edge cases, you'd want to break away and create your own recipes. Headlines
                  This Is the XXXLarge Headline This Is the XXLarge Headline This Is the XLarge Headline This Is the Large Headline This Is the Small Headline This Is the XSmall Headline
                  <bolt-text headline font-size="xxxlarge"> This Is the XXXLarge Headline </bolt-text> <bolt-text headline font-size="xxlarge"> This Is the XXLarge Headline </bolt-text> <bolt-text headline font-size="xlarge"> This Is the XLarge Headline </bolt-text> <bolt-text headline font-size="large"> This Is the Large Headline </bolt-text> <bolt-text headline font-size="small"> This Is the Small Headline </bolt-text> <bolt-text headline font-size="xsmall" text-transform="uppercase" letter-spacing="wide"> This Is the XSmall Headline </bolt-text>
                  Subheadlines
                  This Is the XXLarge Subheadline This Is the XLarge Subheadline This Is the Large Subheadline
                  <bolt-text subheadline font-size="xxlarge"> This Is the XXLarge Subheadline </bolt-text> <bolt-text subheadline font-size="xlarge"> This Is the XLarge Subheadline </bolt-text> <bolt-text subheadline font-size="large"> This Is the Large Subheadline </bolt-text>
                  Eyebrow
                  This Is the Eyebrow
                  <bolt-text eyebrow> This Is the Eyebrow </bolt-text>
                  Teaser Teaser is a combination of text with clear information architecture. It is commonly used as a quick summary that draws the reader to a longer piece of content.
                  This is an eyebrow This is a headline This is a subheadline This is regular text, and some lorem ipsum. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante.
                  <bolt-text eyebrow> This is an eyebrow </bolt-text> <bolt-text headline font-size="xxxlarge"> This is a headline </bolt-text> <bolt-text subheadline font-size="xxlarge"> This is a subheadline </bolt-text> <bolt-text> This is regular text, and some lorem ipsum. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante. </bolt-text>
                  Tag Usage <bolt-text> allows for separation of semantics and visual. Using a semantically correct tag will not affect the appearance of the text.
                  This text has its tag prop defined as: h1
                  <bolt-text tag="h1"> This text has its tag prop defined as: h1 </bolt-text>
                  This text has its tag prop defined as: h2
                  <bolt-text tag="h2"> This text has its tag prop defined as: h2 </bolt-text>
                  This text has its tag prop defined as: h3
                  <bolt-text tag="h3"> This text has its tag prop defined as: h3 </bolt-text>
                  This text has its tag prop defined as: h4
                  <bolt-text tag="h4"> This text has its tag prop defined as: h4 </bolt-text>
                  This text has its tag prop defined as: h5
                  <bolt-text tag="h5"> This text has its tag prop defined as: h5 </bolt-text>
                  This text has its tag prop defined as: h6
                  <bolt-text tag="h6"> This text has its tag prop defined as: h6 </bolt-text>
                  This text has its tag prop defined as: p
                  <bolt-text tag="p"> This text has its tag prop defined as: p </bolt-text>
                  This text has its tag prop defined as: div
                  <bolt-text tag="div"> This text has its tag prop defined as: div </bolt-text>
                  This text has its tag prop defined as: span
                  <bolt-text tag="span"> This text has its tag prop defined as: span </bolt-text>
                  This text has its tag prop defined as: cite
                  <bolt-text tag="cite"> This text has its tag prop defined as: cite </bolt-text>
                  Display Usage <bolt-text> can be defined as a paragraph of text (block display) or a piece of inline text (inline display).
                  This paragraph of text has block display, which means it will take up the full width of its container. This paragraph of text also has block display, but within this paragraph, certain text can be inline display, and it can be styled differently than the rest of the paragraph.
                  <bolt-text display="block"> This paragraph of text has block display, which means it will take up the full width of its container. </bolt-text> <bolt-text display="block"> This paragraph of text also has block display, but within this paragraph, certain text can be <bolt-text display="inline" font-weight="bold" text-transform="uppercase">inline display</bolt-text>, and it can be styled differently than the rest of the paragraph. </bolt-text>
                  Color Usage <bolt-text> can be colored accordingly based on theming. It can either take on a particular theme's headline color or body text color.
                  This text has its color prop defined as: theme-headline
                  <bolt-text color="theme-headline" font-weight="bold" font-size="large"> This text has its color prop defined as: theme-headline </bolt-text>
                  This text has its color prop defined as: theme-body
                  <bolt-text color="theme-body" font-weight="bold" font-size="large"> This text has its color prop defined as: theme-body </bolt-text>
                  Align Usage <bolt-text> can be aligned horizontally. This only applies if display is set to block.
                  This text has its align prop defined as: inherit
                  <bolt-text display="block" align="inherit"> This text has its align prop defined as: inherit </bolt-text>
                  This text has its align prop defined as: start
                  <bolt-text display="block" align="start"> This text has its align prop defined as: start </bolt-text>
                  This text has its align prop defined as: center
                  <bolt-text display="block" align="center"> This text has its align prop defined as: center </bolt-text>
                  This text has its align prop defined as: end
                  <bolt-text display="block" align="end"> This text has its align prop defined as: end </bolt-text>
                  Opacity Usage <bolt-text> can be adjusted in terms of opacity. The options are synced with Bolt's opacity scale.
                  This text has its opacity prop defined as: 100
                  <bolt-text opacity="100"> This text has its opacity prop defined as: 100 </bolt-text>
                  This text has its opacity prop defined as: 80
                  <bolt-text opacity="80"> This text has its opacity prop defined as: 80 </bolt-text>
                  This text has its opacity prop defined as: 60
                  <bolt-text opacity="60"> This text has its opacity prop defined as: 60 </bolt-text>
                  This text has its opacity prop defined as: 40
                  <bolt-text opacity="40"> This text has its opacity prop defined as: 40 </bolt-text>
                  This text has its opacity prop defined as: 20
                  <bolt-text opacity="20"> This text has its opacity prop defined as: 20 </bolt-text>
                  Quote Usage <bolt-text> can be turned into a quote by using the quoted boolean prop.
                  This text is quoted. This headline text is also quoted.
                  <bolt-text quoted> This text is quoted. </bolt-text> <bolt-text headline quoted> This headline text is also quoted. </bolt-text>
                  Line-height Usage <bolt-text> has a few options for leading (line-height). Leading can be adjusted for legibility. The default is regular.
                  This text has
                  its line-height
                  prop defined as:
                  tight
                  <bolt-text line-height="tight"> This text has<br> its line-height<br> prop defined as:<br> tight </bolt-text>
                  This text has
                  its line-height
                  prop defined as:
                  regular
                  <bolt-text line-height="regular"> This text has<br> its line-height<br> prop defined as:<br> regular </bolt-text>
                  This text has
                  its line-height
                  prop defined as:
                  loose
                  <bolt-text line-height="loose"> This text has<br> its line-height<br> prop defined as:<br> loose </bolt-text>
                  Letter-spacing Usage <bolt-text> has a few options for the spacing in between letters. It can be adjusted for legibility. The default is regular.
                  This text has its letter-spacing prop defined as: narrow
                  <bolt-text letter-spacing="narrow"> This text has its letter-spacing prop defined as: narrow </bolt-text>
                  This text has its letter-spacing prop defined as: regular
                  <bolt-text letter-spacing="regular"> This text has its letter-spacing prop defined as: regular </bolt-text>
                  This text has its letter-spacing prop defined as: wide
                  <bolt-text letter-spacing="wide"> This text has its letter-spacing prop defined as: wide </bolt-text>
                  Text-transform Usage <bolt-text> has a few options for transforming letter case. It can be adjusted for legibility. The default is regular.
                  This text has its text-transform prop defined as: regular
                  <bolt-text text-transform="regular"> This text has its text-transform prop defined as: regular </bolt-text>
                  This text has its text-transform prop defined as: uppercase
                  <bolt-text text-transform="uppercase"> This text has its text-transform prop defined as: uppercase </bolt-text>
                  This text has its text-transform prop defined as: lowercase
                  <bolt-text text-transform="lowercase"> This text has its text-transform prop defined as: lowercase </bolt-text>
                  This text has its text-transform prop defined as: capitalize
                  <bolt-text text-transform="capitalize"> This text has its text-transform prop defined as: capitalize </bolt-text>
                  Font-family Usage <bolt-text> has a few options to change typefaces. These options are relative to the types of text such as heading, body, and code. Each type is linked to a specific typeface. This method accounts for our evolving brand.
                  This text has its font-family prop defined as: headline
                  <bolt-text font-family="headline"> This text has its font-family prop defined as: headline </bolt-text>
                  This text has its font-family prop defined as: body
                  <bolt-text font-family="body"> This text has its font-family prop defined as: body </bolt-text>
                  This text has its font-family prop defined as: code
                  <bolt-text font-family="code"> This text has its font-family prop defined as: code </bolt-text>
                  Font-size Usage <bolt-text> has font-size options to indicate information hierarchy.
                  This text has its font-size prop defined as: xsmall
                  <bolt-text font-size="xsmall"> This text has its font-size prop defined as: xsmall </bolt-text>
                  This text has its font-size prop defined as: small
                  <bolt-text font-size="small"> This text has its font-size prop defined as: small </bolt-text>
                  This text has its font-size prop defined as: medium
                  <bolt-text font-size="medium"> This text has its font-size prop defined as: medium </bolt-text>
                  This text has its font-size prop defined as: large
                  <bolt-text font-size="large"> This text has its font-size prop defined as: large </bolt-text>
                  This text has its font-size prop defined as: xlarge
                  <bolt-text font-size="xlarge"> This text has its font-size prop defined as: xlarge </bolt-text>
                  This text has its font-size prop defined as: xxlarge
                  <bolt-text font-size="xxlarge"> This text has its font-size prop defined as: xxlarge </bolt-text>
                  This text has its font-size prop defined as: xxxlarge
                  <bolt-text font-size="xxxlarge"> This text has its font-size prop defined as: xxxlarge </bolt-text>
                  Font-style Usage <bolt-text> has font-style options to indicate simple emphasis.
                  This text has its font-style prop defined as: regular
                  <bolt-text font-style="regular"> This text has its font-style prop defined as: regular </bolt-text>
                  This text has its font-style prop defined as: italic
                  <bolt-text font-style="italic"> This text has its font-style prop defined as: italic </bolt-text>
                  Font-weight Usage <bolt-text> has font-weight options to indicate emphasis hierarchy.
                  This text has its font-weight prop defined as: regular
                  <bolt-text font-weight="regular"> This text has its font-weight prop defined as: regular </bolt-text>
                  This text has its font-weight prop defined as: semibold
                  <bolt-text font-weight="semibold"> This text has its font-weight prop defined as: semibold </bolt-text>
                  This text has its font-weight prop defined as: bold
                  <bolt-text font-weight="bold"> This text has its font-weight prop defined as: bold </bolt-text>
                  Server-side Rendered Web Components (Experimental) The <bolt-text> component, among many other web components in Bolt, will support server-side rendering via the new upcoming {% filter bolt_ssr %} custom Twig filter. Check out the docs on server-side rendering for information!

                  This is text.

                  {% filter bolt_ssr %} <bolt-text> This is text. </bolt-text> {% endfilter %}
                  2.9.2

                  Tooltip

                  Tooltip Component in Bolt

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-tooltip
                  Source code
                  View on Github
                  Dependencies
                  @bolt/components-button @bolt/components-icon @bolt/components-icons @bolt/core

                  Tooltip component. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

                  Install via NPM
                  npm install @bolt/components-tooltip
                  

                  Description

                  The tooltip component provides the user with a onHover Or onClick (button) toggle to display nearly any kind of content or Bolt Component nested within.

                  Use Cases (not limited to)

                  • Help text
                  • Navigational assistance (such as language select)
                  • Used within other components, such as Share, to enhance functionality and presentation

                  Best Practices

                  • Toggle icons should be tested to ensure smooth transition states
                  • The noWrap option should only be used when small snippets of text or content are used
                  {% include "@bolt-components-tooltip/tooltip.twig" with { trigger: { type: "text", text: "This is the tooltip trigger" }, content: "This is the tooltip content." } only %}

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  trigger *

                  Provides the data for our trigger type

                  object
                    • type

                      What kind of trigger are we using?

                      • text, button
                    • text

                      The text for our trigger

                    • transform

                      Trigger text transformation

                      • uppercase, lowercase, capitalize
                    • icon

                      Properties for including an icon with our trigger

                        • name

                          Name of the icon to be used

                        • size

                          Size of the icon

                          • small, medium, large, xlarge
                    • toggle

                      If using a button set optional toggle text / icon

                        • text

                          The text for our toggle

                        • name

                          The icon for our toggle

                  content *

                  This can be text OR an included bolt component (like Block List)

                  any
                  direction

                  Should tooltip push up or down?

                  string up
                  • up, down
                  no_wrap

                  true for single line content (short snippets)

                  boolean false
                  • true, false
                  spacing

                  Spacing within our tooltip content bubble

                  string small
                  • none, xsmall, small, medium
                  Overview Usage Schema Edit this page Testing Steps
                  • LinkedIn
                  • Copied!
                  This is the tooltip content.
                  This is the tooltip content.
                  This text should wrap if noWrap is set to false, otherwise it should not wrap.
                  This text should wrap if noWrap is set to false, otherwise it should not wrap.
                  This is the tooltip content.
                  This is the tooltip content.
                  This is the tooltip content.
                  This is the tooltip content.
                  This is the tooltip content.
                  This tooltip activates when the trigger is pressed.

                  Theme: xlight

                  This is the tooltip content.
                  This tooltip activates when the trigger is pressed.

                  Theme: light

                  This is the tooltip content.
                  This tooltip activates when the trigger is pressed.

                  Theme: dark

                  This is the tooltip content.
                  This tooltip activates when the trigger is pressed.

                  Theme: xdark

                  This is the tooltip content.
                  This tooltip activates when the trigger is pressed.

                  2.9.2

                  Bolt Trigger

                  Trigger Component in Bolt

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-trigger
                  Source code
                  View on Github
                  Dependencies
                  @bolt/core

                  Bolt's Component Explorer is being upgraded. It'll return in a future release!

                  Trigger is an unstyled component used to convey a call to action. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

                  Install via NPM
                  npm install @bolt/components-trigger
                  

                  Description

                  Triggers add button or link behavior to any content without the default button or link styles.

                  {% include "@bolt-components-trigger/trigger.twig" with { content: "This is a trigger" } only %}

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  attributes

                  A Drupal-style attributes object with extra attributes to append to this component.

                  object
                  content

                  Main content of the trigger (Twig only).

                  string , array , object
                  url

                  Contains a URL that the link points to. This may also be passed as part of attributes.

                  string
                  target

                  Specifies where to display the linked URL. This may also be passed as part of attributes.

                  string
                  type

                  Determines the button tag type for semantic buttons

                  string button
                  • button, submit, reset
                  cursor

                  Type of cursor shown on hover.

                  string pointer
                  • auto, pointer, zoom-in, zoom-out
                  on_click

                  The name of a method on the on_click_target.

                  string
                  on_click_target

                  className (e.g. "js-click-me") used in querySelector to reference a web component on the page. onClick, the on_click method name will be called on this element.

                  string
                  display

                  Set the display property

                  string inline
                  • inline, block
                  no_outline

                  Turn off the default outline on focus

                  boolean false
                  disabled

                  Make trigger unusable and un-clickable. Only applies to button.

                  boolean false
                  Overview Usage Schema Edit this page Testing Steps
                  This is a trigger

                  Trigger with button tag

                  Trigger with a tag

                  Trigger with cursor auto

                  Trigger with cursor pointer

                  Trigger with cursor zoom-in

                  Trigger with cursor zoom-out

                  Trigger with display inline

                  Trigger with display block

                  This <button> has no outline on focus

                  This <a> has no outline on focus

                  This <button> is disabled

                  This <a> is disabled

                  Trigger Image

                  Click on the thumbnail to open a modal with an enlarged image.

                  Web Component Usage Bolt Trigger is a web component. You can use it by simply including the <bolt-trigger> element in the markup.
                  This is a trigger
                  <bolt-trigger onclick="alert('Trigger clicked')"> This is a trigger </bolt-trigger>
                  Basic Usage By default Bolt Trigger renders a semantic button tag. Set the url prop to render a semantic a tag.
                  This is a trigger
                  <bolt-trigger url="http://pega.com"> This is a trigger </bolt-trigger>
                  Additional Options Customize the cursor style by setting the cursor prop.
                  This is a trigger
                  <bolt-trigger cursor="zoom-in"> This is a trigger </bolt-trigger>
                  Advanced Usage Use the on-click and on-click-target props to call a method on another component. See schema for more info.
                  <bolt-trigger on-click="show" on-click-target="js-image-modal-456" cursor="zoom-in" display="block"> <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber" ratio="640/480"></bolt-image> </bolt-trigger> <bolt-modal class="js-image-modal-456" spacing="none" theme="none" scroll="overall"> <bolt-trigger on-click="hide" on-click-target="js-image-modal-456" cursor="zoom-out" display="block"> <bolt-image src="/images/placeholders/tout-4x3-climber.jpg" alt="A Rock Climber" sizes="auto" ratio="640/480"></bolt-image> </bolt-trigger> </bolt-modal>
                  2.10.0

                  Bolt Typeahead

                  Typeahead is an input field with dropdown-like listbox that displays suggested results that most closely match a user's given search term.

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-typeahead
                  Source code
                  View on Github
                  Dependencies
                  @bolt/components-button @bolt/components-form @bolt/components-icon @bolt/core fuse.js mousetrap react-autosuggest react-html-parser

                  Bolt's Component Explorer is being upgraded. It'll return in a future release!

                  Installation

                  npm install @bolt/components-typeahead
                  

                  Features

                  • Progressively enhanced simple html <form> fallback (via Twig)
                  • Server-side pre-rendered SVG icons (when using Twig)!
                  • Uses the new withEvents base class to allow for much deeper JavaScript customization
                  • Fuzzy logic search / fuzzy matching using fuse.io
                  • Keyboard combo-support (command+shift+f)
                  • Wired up to use CSS Modules (once they ship in a future Bolt release)
                  • Fully customizable behavior to handle partial vs full result matches, etc
                  • Supports rendering to the Shadow DOM and the Light DOM

                  What's Next? (Future Updates)

                  • Fully support theming system colors
                  • JSDoc support / further improve docs and demos
                  • Broader testing coverage
                  • Look into adding <slot> support
                  • More customization for additional use cases?
                  • Multi-section support

                  API

                  JavaScript Properties/Attributes

                  Name Type Description
                  items array An array of objects that populates the dropdown

                  JavaScript Event Hooks

                  Name Params Description
                  onInput event,
                  value
                  Called every time the input value changes
                  getSuggestions value Called by onSuggestionsFetchRequested when re-rendering suggestions. Handles highlighting keywords in the search results in a React-friendly way + handles limiting the total number of results displayed
                  onChange event,
                  newValue, method
                  Called when a suggestion is selected. Includes info on how the particular item was selected (click, keyboard, etc)
                  onSuggestionsFetchRequested value Called every very time you need to gather / update suggestions to display. See onSuggestionsFetchRequested for more info.
                  onSuggestionsClearRequested Called when clearing suggestions. See onSuggestionsClearRequested for more info.
                  onSelected event,
                  suggestion
                  Will be called every time suggestion is selected via mouse or keyboard. See onSuggestionSelected for more info.
                  onRenderInput value Fired when the input is being rendered

                  Additional references

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  attributes

                  A Drupal-style attributes object with extra attributes to append to this component.

                  object
                  max_results

                  The maximum number of typeahead results to display

                  number 10
                  items

                  An array of objects that's used to populate the suggestion list that appears below the input as the users type. This array of objects can be asynchronously fetched and should contain a label, url, and optionally description.

                  array
                  clear_input_text

                  Screenreader-specific text for the clear search button, intended to provide a longer, more descriptive explanation of the clear button's behavior.

                  string Clear search results
                  submit_button_text

                  Screenreader-specific text for the submit button, intended to provide a longer, more descriptive explanation of the submit button's behavior.

                  string Submit search query
                  input_label

                  Screenreader-specific label text associated with the search input.

                  string
                  input_placeholder

                  The placeholder text to display inside the Typeahead search input.

                  string Enter your search query
                  input_value

                  Initial value to pre-populate the input field

                  string
                  input_name

                  Input element's name attribute used when pre-rendering the component

                  string
                  no_highlight

                  Disable text highlighting in matching search results (highlighting is enabled by default)

                  boolean false
                  Overview Usage Schema

                  Demos

                  Dynamically Fetch Data Navigate to Search Results Navigate to Exact Result
                  Edit this page

                  Demo: Dyamically Fetch Data

                  In this example, we populate the Typeahead component with JSON data that's dynamically fetched from an external source via the getSuggestions hook.

                  Also, this demo caps the max # of search results to display at 5.

                  {% include "@bolt-components-form/form.twig" with { children: include("@bolt-components-typeahead/typeahead.twig", { attributes: { class: [ "js-typeahead-hook--dynamically-fetch-data" ] }, max_results: 5, input_name: "q" }), attributes: { action: "https://www.pega.com/search", target: "_blank", method: "GET" } } %} // NOTE: make sure you're running this code through a tool like Babel before shipping for cross browser compatibility! const dynamicTypeaheadDemo = document.querySelector( '.js-typeahead-hook--dynamically-fetch-data', ); if (dynamicTypeaheadDemo) { dynamicTypeaheadDemo.addEventListener('ready', function(e) { if (e.detail.name === 'bolt-typeahead') { // note: make sure to let Typeahead know when the data fetched is ready dynamicTypeaheadDemo.on('getSuggestions', async value => { return await new Promise(async resolve => { await fetch('/build/data/typeahead.data.json') .then(function(response) { return response.json(); }) .then(function(data) { return resolve(data); }); }); }); dynamicTypeaheadDemo.on('onSelected', (element, event, suggestion) => { const exactMatch = element.items.filter( item => item.label === suggestion.suggestionValue, )[0]; function navigateTo(url) { if (window.location !== window.parent.location) { const win = window.open(url, '_blank'); win.focus(); } else { window.location = url; } } if (exactMatch && exactMatch.url) { if (exactMatch.url) { navigateTo(exactMatch.url); } else { navigateTo(`https://www.pega.com/search?q=${itemSelected.label}`); } } else if (suggestion.suggestionValue !== '') { navigateTo( `https://www.pega.com/search?q=${suggestion.suggestionValue}`, ); } }); } }); }

                  In this example, we populate the Typeahead component with a small batch of results and customize the onSelected behavior to go directly to the result selected (vs the search results page) for exact matches.

                  Submitting the form with text that isn't a 1:1 match will fall back to the search results page (the behavior shown in the other demo).

                  {% include "@bolt-components-form/form.twig" with { children: include("@bolt-components-typeahead/typeahead.twig", { attributes: { class: [ "js-typeahead-hook--exact-result" ] }, max_results: 5, }), attributes: { action: "https://www.pega.com/search", target: "_blank", method: "GET" } } %} // NOTE: make sure you're running this code through a tool like Babel before shipping for cross browser compatibility! const typeaheadDemo = document.querySelector( '.js-typeahead-hook--exact-result', ); const typeaheadDemoItems = [ { label: 'AI and improving the customer experience', description: '“Artificial intelligence” (AI) presents both distracting hype and powerful opportunities to drive customer engagement.', url: 'https://www.pega.com/ai-and-improving-customer-experience', }, { label: 'Gartner Magic Quadrant for Enterprise Low-Code Application Platforms 2019', description: 'Pega was cited as a Visionary in Gartner’s new 2019 Magic Quadrant for Enterprise Low-Code Application Platforms.', url: 'https://www.pega.com/insights/resources/gartner-magic-quadrant-enterprise-low-code-application-platforms-2019', }, ]; if (typeaheadDemo) { typeaheadDemo.addEventListener('ready', function(e) { if (e.detail.name === 'bolt-typeahead') { typeaheadDemo.items = typeaheadDemoItems; typeaheadDemo.on('onSelected', (element, event, suggestion) => { const exactMatch = element.items.filter( item => item.label === suggestion.suggestionValue, )[0]; function navigateTo(url) { if (window.location !== window.parent.location) { const win = window.open(url, '_blank'); win.focus(); } else { window.location = url; } } if (exactMatch && exactMatch.url) { if (exactMatch.url) { navigateTo(exactMatch.url); } else { navigateTo(`https://www.pega.com/search?q=${itemSelected.label}`); } } else if (suggestion.suggestionValue !== '') { navigateTo( `https://www.pega.com/search?q=${suggestion.suggestionValue}`, ); } }); } }); }

                  In this example, we populate the Typeahead component with a larger batch of results and customize the onSelected behavior to always go to the search results page when selecting an item.

                  Unlike the other demo, only perfect matches will allow you to submit (via the submit button) or select a result.

                  For example, manually selecting or entering Case Management in the input field will allow you to submit via hitting enter or clicking on the search icon. However, entering in Case Management2 instead would not submit.

                  {% include "@bolt-components-form/form.twig" with { children: include("@bolt-components-typeahead/typeahead.twig", { attributes: { class: [ "js-typeahead-hook" ] }, max_results: 5, }), attributes: { action: "https://www.pega.com/search", target: "_blank", method: "GET" } } %} // NOTE: make sure you're running this code through a tool like Babel before shipping for cross browser compatibility! const typeahead = document.querySelector('.js-typeahead-hook'); const items = [ { label: 'AI and improving the customer experience', description: '“Artificial intelligence” (AI) presents both distracting hype and powerful opportunities to drive customer engagement.', url: 'https://www.pega.com/ai-and-improving-customer-experience', }, { label: 'Gartner Magic Quadrant for Enterprise Low-Code Application Platforms 2019', description: 'Pega was cited as a Visionary in Gartner’s new 2019 Magic Quadrant for Enterprise Low-Code Application Platforms.', url: 'https://www.pega.com/insights/resources/gartner-magic-quadrant-enterprise-low-code-application-platforms-2019', }, { label: 'Pega Data & Integrations', description: "Take full advantage of integration opportunities with Pega's open architecture, allowing you to build applications faster and meet the increasing demands of your business.", url: 'https://www.pega.com/products/pega-platform/data-integrations', }, { label: 'Digital Customer Experiences', description: 'Deliver engaging digital customer experiences anywhere, anytime, with unique designs for your business right out of the box.', url: 'https://www.pega.com/products/pega-platform/digital-customer-experiences', }, { label: 'DevOps and Testing', description: "Continuous integration and deployment. Continuous evolution. With one-click DevOps, you'll break barriers to delivery – and leapfrog competitors – by empowering business teams to…", url: 'https://www.pega.com/products/pega-platform/devops-testing', }, { label: 'Pega Onboarding', description: 'Intelligent work automation dramatically cuts time to revenue while ensuring compliance with global and local regulations, whether you are onboarding new clients, adding products…', url: 'https://www.pega.com/industries/financial-services/onboarding', }, { label: 'Case Management', description: 'Pega BPM and case management solutions allow you to build and manage enterprise-level strategic applications that can communicate with legacy systems.', url: 'https://www.pega.com/products/pega-platform/case-management', }, { label: 'Pega Intelligent Virtual Assistant', description: "Across all channels, Pega's Intelligent Virtual Assistant engages users where they are and gives them experiences based on context, not just auto-responses.", url: 'https://www.pega.com/products/pega-platform/intelligent-virtual-assistant', }, ]; if (typeahead) { typeahead.addEventListener('ready', function(e) { if (e.detail.name === 'bolt-typeahead') { typeahead.items = items; typeahead.on('onSelected', (element, event, suggestion) => { const itemSelected = element.items.filter( item => item.label === suggestion.suggestionValue, )[0]; if (itemSelected) { if (itemSelected.label) { if (window.location !== window.parent.location) { // const win = window.open(`${itemSelected.url}`, '_blank'); const win = window.open( `https://www.pega.com/search?q=${itemSelected.label}`, '_blank', ); win.focus(); } else { window.location = `https://www.pega.com/search?q=${itemSelected.label}`; } } } }); } }); }
                  2.9.2

                  Unordered List

                  Unordered List Component in Bolt

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-ul
                  Source code
                  View on Github
                  Dependencies
                  @bolt/components-li @bolt/core

                  Stylistic bulleted list for article content. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

                  Install via NPM
                  npm install @bolt/components-ul
                  
                  {% include "@bolt-components-ul/ul.twig" with { "items": [ "Do not include any data or information in your posts that are confidential!", "Apply basic practices for collaborative work.", include("@bolt-components-link/link.twig", { text: "Be honest, respectful, trustworthy and helpful.", url: "#!", }), "Answer questions authoritatively and concisely. Avoid cluttering discussions with noise." ] } only %}

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  attributes

                  A Drupal-style attributes object with extra attributes to append to this component.

                  object
                  content_items

                  Use the items prop instead.

                  array
                  • [items]:
                    • Type: object

                      A single list item object with either a text or contentItems key

                    • Properties:
                      • text

                        Item text

                        • Type: string
                      • contentItems

                        Items pass to @bolt/text.twig

                        • Type: array
                  items

                  All items can be simple text or items.

                  array
                  Overview Usage Schema Edit this page Testing Steps

                  ul

                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

                  Theme: xlight

                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

                  Theme: light

                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

                  Theme: dark

                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.

                  Theme: xdark

                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.
                  Do not include any data or information in your posts that are confidential! Apply basic practices for collaborative work. Be honest, respectful, trustworthy and helpful. Level 1 Item 1 Level 2 Item 1 Item 2 Level 3 Item 1 Item 2 Item 3 Level 4 Item 1 Item 2 Item 3 Item 4 Level 5 Item 1 Item 2 Item 3 Item 4 Item 5 Item 5 Item 5 Item 4 Item 5 Item 3 Item 4 Item 5 Avoid cluttering discussions with noise.

                  Web Component Usage

                  Bolt Unordered List is a web component, you can simply use <bolt-ul> in the markup to make it render. Its inner content is comprised of <bolt-li>.

                  Example

                  <bolt-ul>
                    <bolt-li>Item 1</bolt-li>
                    <bolt-li>Item 2</bolt-li>
                    <bolt-li>Item 3</bolt-li>
                    <bolt-li>Item 4</bolt-li>
                    <bolt-li>Item 5</bolt-li>
                  </bolt-ul>

                  Simple usage

                  Item 1 Item 2 Item 3 Item 4 Item 5

                  Nesting of lists (ol and ul)

                  Coffee Tea Black tea Green tea Good tea Great tea Is the best Milk L1 - Tea L1 - Coffee L2 - Light roast L2 - Dark roast L3 - Answer questions authoritatively and concisely. Avoid cluttering discussions with noise.Answer questions authoritatively and concisely. Avoid cluttering discussions with noise. L4 - Tea L4 - Coffee L5 - Light roast L5 - Dark roast L6 - Italian Roast L6 - Coffee from Italy L5 - Medium roast L4 - Milk L3 - Coffee from Italy L2 - Medium roast L1 - Milk Level 1 - Item 1 Level 1 - Item 2 Level 1 - Item 3 Level 1 - Item 4 Level 2 - Item 1 Level 2 - Item 2 Level 2 - Item 3 Level 3 - Item 1 Level 3 - Item 2 Level 4 - Item 1 Level 5 - Item 1 Level 5 - Item 2 Level 5 - Item 3 Level 5 - Item 4 Level 5 - Item 5 Level 4 - Item 2 Level 4 - Item 3 Level 4 - Item 4 Level 4 - Item 5 Level 3 - Item 3 Level 3 - Item 4 Level 3 - Item 5 Level 2 - Item 4 Level 2 - Item 5 Level 1 - Item 5 Coffee Tea Black tea Green tea Milk Coffee Tea Black tea Green tea Milk Coffee Tea Black tea Green tea Milk Coffee Tea Milk

                  Theme variations

                  Theme: xlight

                  Item 1 Item 2 Item 3 Item 4 Item 5

                  Theme: light

                  Item 1 Item 2 Item 3 Item 4 Item 5

                  Theme: dark

                  Item 1 Item 2 Item 3 Item 4 Item 5

                  Theme: xdark

                  Item 1 Item 2 Item 3 Item 4 Item 5
                  2.9.2

                  Video

                  Video Component in Bolt

                  Published

                  History
                  View changes
                  Install
                  yarn add @bolt/components-video
                  Source code
                  View on Github
                  Dependencies
                  @bolt/components-button @bolt/components-ratio @bolt/core dasherize lodash.isequal mousetrap

                  Stylistic video. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.

                  Install via NPM
                  npm install @bolt/video
                  
                  {% include "@bolt/video.twig" with { videoId: "5609376179001", accountId: "1900410236", playerId: "r1CAdLzTW", showMeta: true, showMetaTitle: false } only %}

                  Note: when assigning component props as HTML attributes on a web component, make sure to use kebab-case.

                  Prop Name Description Type Default Value Option(s)
                  attributes

                  A Drupal-style attributes object with extra attributes to append to this component.

                  object
                  video_id

                  Brightcove ID for this video.

                  string , number
                  player_id

                  Brightcover Player ID.

                  string
                  account_id

                  ID of the Brightcove account that owns the video.

                  string , number
                  video_uuid

                  A unique identifying string, randomly generated if not provided.

                  string
                  share_description

                  A custom title to use in the share overlay

                  string Share This Video
                  ratio

                  Maintain video ratio.

                  boolean
                  collapsed

                  Should the video be collapsed on load.

                  boolean
                  show_meta

                  Should the video show meta data.

                  boolean true
                  show_meta_title

                  Should the video show meta title.

                  boolean true
                  controls

                  Should the video controls be available.

                  boolean true
                  autoplay

                  Should the video auto-play on load.

                  boolean false
                  loop

                  Should the video loop.

                  boolean false
                  on_init

                  The on_init config allows for an external Javascript function inlined on the page to add any 3rd party scripts or video plugins to a <bolt-video> player instance when initializing. Please see the new recommended enabled_plugins and disabled_plugins options below.

                  string
                  enabled_plugins

                  Space-separated list of built-in <bolt-video> plugins for Brightcove to enable. Current include social, email, playback, and cue. For example: <bolt-video enabled-plugins="cue social email playback">.

                  string
                  disabled_plugins

                  Space-separated list of any built-in <bolt-video> plugins for Brightcove to disable. Used to opt-out of any video plugins that are enabled by default (ex. the playback plugin). For example: <bolt-video disabled-plugins="playback">.

                  string
                  is_background_video

                  Background video feature will be removed with Bolt v3.0

                  Advanced Schema Options

                  default_plugins

                  An array of the default <bolt-video> player plugins that are globally enabled by default.

                  array
                  • playback
                  available_plugins

                  The built-in <bolt-video> player plugins that are availble to be used in any player instance without requiring the use of any extra Javascript.

                  array
                  • playback, social, email, cue
                  Overview Usage Schema Edit this page Testing Steps

                  This video has showMeta set to true and showMetaTitle set to true.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has showMeta set to false.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has showMeta set to true and showMetaTitle set to false.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has controls set to false, you cannot interact with the video player but you can create external control to interact with it:

                  Play or pause

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has external controls:

                  Play or pause

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has external controls and an inline script:

                  Play or pause

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has attributes for email share. Inline script is required for the email share.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has share_description set to Share me!.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has a cue point defined inside the Brightcove interface.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has showMetaTitle set to false to hide the title from the video player, so you can pass the title to other markup.

                  Figure and Figcaption

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  Pega Adaptive Decision Manager

                  Headline with Video

                  Pega Adaptive Decision Manager

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  When used straight out of the box, the playback plugin is enabled by default.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has disabled_plugins set to playback. Therefore disabling the default playback plugin.

                  Accepted plugins: cue, social, playback, and email.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has enabled_plugins set to a few values. Therefore enabling the plugins defined in the values.

                  Accepted plugins: cue, social, playback, and email.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has an external plugins script defined through on_init.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x

                  This video has an external plugins script defined through on_init and enabled_plugins set to certain values.

                  Video Player is loading.
                  Current Time 0:00
                  Duration -:-
                  Loaded: 0%
                  Stream Type LIVE
                  Remaining Time 0:00
                   
                  1x