Skip to content

Commit

Permalink
docs(chip): updated docs references to accessible instead of ARIA
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikki Massaro Kauffman committed Oct 18, 2023
1 parent 811990a commit 91d94e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions elements/pf-chip/pf-chip-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion elements/pf-chip/pf-chip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion elements/pf-select/pf-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit 91d94e3

Please sign in to comment.