diff --git a/CHANGELOG.md b/CHANGELOG.md index 730c1111b..d619694e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# v13.7.7 (2023-05-10) +* **suggest** add aria-selected to item + # v13.7.6 (2023-04-26) * **grid** add aria-expanded to filters btn * **grid** add tick to test diff --git a/package-lock.json b/package-lock.json index 76dc74fcf..6676a97f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.6", + "version": "13.7.7", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index e9a972c81..68d1d6b22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.6", + "version": "13.7.7", "author": { "name": "UiPath Inc", "url": "https://uipath.com" diff --git a/projects/angular/components/ui-suggest/src/ui-suggest.component.html b/projects/angular/components/ui-suggest/src/ui-suggest.component.html index f15ac7fc5..179f02741 100644 --- a/projects/angular/components/ui-suggest/src/ui-suggest.component.html +++ b/projects/angular/components/ui-suggest/src/ui-suggest.component.html @@ -354,6 +354,7 @@ (click)="preventDefault($event); updateValue(item, !multiple, true);" [attr.role]="'option'" + [attr.aria-selected]="isItemSelected(item)" matRipple> diff --git a/projects/angular/package.json b/projects/angular/package.json index d03454eab..5346e7bf3 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@uipath/angular", - "version": "13.7.6", + "version": "13.7.7", "license": "MIT", "author": { "name": "UiPath Inc",