2.12.0List Component in Bolt
Minimal list component for laying out a group of items. Part of the Bolt “Components” CSS framework that powers the Bolt Design System.
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) | 
|---|---|---|---|---|
| 
      
                         | 
    
           A Drupal-style attributes object with extra attributes to append to this component.  | 
    
            object
      
      
     | — |       
  | 
  
| 
      
                         | 
    
           Generates an array of items, each can contain renderable content (i.e. a string, render array, or included pattern).  | 
    
            array
      
      
     | — |       
  | 
  
| 
      
                         | 
    
           Apply the semantic tag for the list.  | 
    
            string
      
      
     | 
              ul
           | 
    
          
  | 
  
| 
      
                         | 
    
           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
           | 
    
          
  | 
  
| 
      
                         | 
    
           Control the spacing in between items.  | 
    
            string
      
      
     | 
              xsmall
           | 
    
          
  | 
  
| 
      
                         | 
    
           Display a separator in between items.  | 
    
            string
      
      
     | 
              none
           | 
    
          
  | 
  
| 
      
                         | 
    
           Turn spacing to the inside of each item.  | 
    
            boolean
      
      
     | 
              false
           | 
    
          
  | 
  
| 
      
                         | 
    
           Control the horizontal alignment of items.  | 
    
            string
      
      
     | 
              start
           | 
    
          
  | 
  
| 
      
                         | 
    
           Control the vertical alignment of items.  | 
    
            string
      
      
     | 
              center
           | 
    
          
  |