From 91d94e37e657f10b1e75277f55f30fe7c433e40f Mon Sep 17 00:00:00 2001 From: Nikki Massaro Kauffman Date: Wed, 18 Oct 2023 15:34:10 -0400 Subject: [PATCH] docs(chip): updated docs references to accessible instead of ARIA --- elements/pf-chip/pf-chip-group.ts | 4 ++-- elements/pf-chip/pf-chip.ts | 2 +- elements/pf-select/pf-select.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/elements/pf-chip/pf-chip-group.ts b/elements/pf-chip/pf-chip-group.ts index 8c9fcba0d1..3e34e22da1 100644 --- a/elements/pf-chip/pf-chip-group.ts +++ b/elements/pf-chip/pf-chip-group.ts @@ -24,12 +24,12 @@ export class PfChipGroup extends LitElement { static readonly styles = [styles]; /** - * ARIA label for chip group that does not have a category name + * Accessible label for chip group that does not have a category name */ @property({ type: String }) label = ''; /** - * ARIA label for close button + * Accessible label for close button */ @property({ attribute: 'close-label', type: String }) closeLabel = 'Close'; diff --git a/elements/pf-chip/pf-chip.ts b/elements/pf-chip/pf-chip.ts index df5f96fb47..9e7263279e 100644 --- a/elements/pf-chip/pf-chip.ts +++ b/elements/pf-chip/pf-chip.ts @@ -20,7 +20,7 @@ export class PfChip extends LitElement { static readonly styles = [styles]; /** - * ARIA label for close button + * Accessible label for close button */ @property({ attribute: 'close-label', type: String }) closeLabel = 'Close'; diff --git a/elements/pf-select/pf-select.ts b/elements/pf-select/pf-select.ts index eb1c197829..a1171246c2 100644 --- a/elements/pf-select/pf-select.ts +++ b/elements/pf-select/pf-select.ts @@ -43,7 +43,7 @@ export class PfSelect extends LitElement { @property({ attribute: 'create-option-text', type: String }) createOptionText = ''; /** - * ARIA label for chip group used to describe chips + * Accessible label for chip group used to describe chips */ @property({ attribute: 'current-selections-label', type: String }) currentSelectionsLabel = 'Current selections';