Skip to content

Commit 8c18843

Browse files
Merge pull request #335 from UiPath/fix/suggest-a11y-selected-item-13-7
fix(suggest): add aria-selected to item
2 parents 98d25a1 + 5e3c4db commit 8c18843

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v13.7.7 (2023-05-10)
2+
* **suggest** add aria-selected to item
3+
14
# v13.7.6 (2023-04-26)
25
* **grid** add aria-expanded to filters btn
36
* **grid** add tick to test

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-components",
3-
"version": "13.7.6",
3+
"version": "13.7.7",
44
"author": {
55
"name": "UiPath Inc",
66
"url": "https://uipath.com"

projects/angular/components/ui-suggest/src/ui-suggest.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@
354354
(click)="preventDefault($event);
355355
updateValue(item, !multiple, true);"
356356
[attr.role]="'option'"
357+
[attr.aria-selected]="isItemSelected(item)"
357358
matRipple>
358359
<ng-container *ngIf="!!item">
359360
<ng-container *ngIf="itemTemplate; else defaultItem">

projects/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uipath/angular",
3-
"version": "13.7.6",
3+
"version": "13.7.7",
44
"license": "MIT",
55
"author": {
66
"name": "UiPath Inc",

0 commit comments

Comments
 (0)