Skip to content

Commit 160937f

Browse files
Merge pull request #334 from UiPath/feat/suggest-a11y-selected-item
fix(suggest): add aria-selected to item
2 parents 116c5e5 + 670ef0d commit 160937f

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v14.7.7 (2023-05-10)
2+
* **suggest** add aria-selected to item
3+
14
# v14.7.6 (2023-05-09)
25
* **suggest** condition title display by input
36

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "14.7.6",
3+
"version": "14.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
@@ -397,6 +397,7 @@
397397
(click)="preventDefault($event);
398398
updateValue(item, !multiple, true);"
399399
[attr.role]="'option'"
400+
[attr.aria-selected]="isItemSelected(item)"
400401
matRipple>
401402
<ng-container *ngIf="!!item">
402403
<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": "14.7.6",
3+
"version": "14.7.7",
44
"license": "MIT",
55
"author": {
66
"name": "UiPath Inc",

0 commit comments

Comments
 (0)