Skip to content

Commit

Permalink
Show Summary list row actions with nested object params
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Jul 11, 2023
1 parent 3c19efa commit ee51999
Showing 1 changed file with 32 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,39 +42,44 @@ params:
type: string
required: false
description: Classes to add to the value wrapper.
- name: actions.classes
type: string
required: false
description: Classes to add to the actions wrapper.
- name: actions.items
type: array
- name: actions
type: object
required: false
description: Array of action item objects.
description: The actions of each row.
params:
- name: href
type: string
required: true
description: The value of the link's `href` attribute for an action item.
- name: text
type: string
required: true
description: If `html` is set, this is not required. Text to use within each action item. If `html` is provided, the `text` option will be ignored.
- name: html
type: string
required: true
description: If `text` is set, this is not required. HTML to use within each action item. If `html` is provided, the `text` option will be ignored.
- name: visuallyHiddenText
type: string
required: false
description: Actions rely on context from the surrounding content so may require additional accessible text. Text supplied to this option is appended to the end. Use `html` for more complicated scenarios.
- name: classes
type: string
required: false
description: Classes to add to the action item.
- name: attributes
type: object
description: Classes to add to the actions wrapper.
- name: items
type: array
required: false
description: HTML attributes (for example data attributes) to add to the action item.
description: Array of action item objects.
params:
- name: href
type: string
required: true
description: The value of the link's `href` attribute for an action item.
- name: text
type: string
required: true
description: If `html` is set, this is not required. Text to use within each action item. If `html` is provided, the `text` option will be ignored.
- name: html
type: string
required: true
description: If `text` is set, this is not required. HTML to use within each action item. If `html` is provided, the `text` option will be ignored.
- name: visuallyHiddenText
type: string
required: false
description: Actions rely on context from the surrounding content so may require additional accessible text. Text supplied to this option is appended to the end. Use `html` for more complicated scenarios.
- name: classes
type: string
required: false
description: Classes to add to the action item.
- name: attributes
type: object
required: false
description: HTML attributes (for example data attributes) to add to the action item.
- name: card
type: object
required: false
Expand Down

0 comments on commit ee51999

Please sign in to comment.