diff --git a/packages/calcite-components/src/components/action-bar/action-bar.tsx b/packages/calcite-components/src/components/action-bar/action-bar.tsx index 5ceec967901..efbb04ac7c5 100755 --- a/packages/calcite-components/src/components/action-bar/action-bar.tsx +++ b/packages/calcite-components/src/components/action-bar/action-bar.tsx @@ -70,6 +70,11 @@ export class ActionBar // // -------------------------------------------------------------------------- + /** + * Specifies the accessible label for the last action-group. + */ + @Prop() actionsEndGroupLabel: string; + /** * When `true`, the expand-toggling behavior is disabled. */ @@ -372,7 +377,17 @@ export class ActionBar // -------------------------------------------------------------------------- renderBottomActionGroup(): VNode { - const { expanded, expandDisabled, el, position, toggleExpand, scale, layout, messages } = this; + const { + expanded, + expandDisabled, + el, + position, + toggleExpand, + scale, + layout, + messages, + actionsEndGroupLabel, + } = this; const expandToggleNode = !expandDisabled ? (