diff --git a/CHANGELOG.md b/CHANGELOG.md index c2ae3948d..592c245c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# v14.7.7 (2023-05-10) +* **suggest** add aria-selected to item + # v14.7.6 (2023-05-09) * **suggest** condition title display by input diff --git a/package-lock.json b/package-lock.json index 993addbf8..673886a48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "angular-components", - "version": "14.7.6", + "version": "14.7.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "angular-components", - "version": "14.7.6", + "version": "14.7.7", "license": "MIT", "dependencies": { "@angular/animations": "14.2.12", diff --git a/package.json b/package.json index cfcd50bbd..c2e87ecad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "14.7.6", + "version": "14.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 e54bfb25f..4caaa163c 100644 --- a/projects/angular/components/ui-suggest/src/ui-suggest.component.html +++ b/projects/angular/components/ui-suggest/src/ui-suggest.component.html @@ -397,6 +397,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 236a41006..d86c75f9b 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@uipath/angular", - "version": "14.7.6", + "version": "14.7.7", "license": "MIT", "author": { "name": "UiPath Inc",