diff --git a/CHANGELOG.md b/CHANGELOG.md index 60be6d647..0c67e538f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v14.7.9 (2023-05-11) +* **suggest** add input for aria-label +* **chore** bump version to v14.7.8 +* **fix** display outline on suggest grid filter +* **chore** bump version to v14.7.7 +* **suggest** add aria-selected to item + # v14.7.8 (2023-05-10) * **fix** display outline on suggest grid filter diff --git a/package-lock.json b/package-lock.json index dfb7e3648..add7714e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "angular-components", - "version": "14.7.8", + "version": "14.7.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "angular-components", - "version": "14.7.8", + "version": "14.7.9", "license": "MIT", "dependencies": { "@angular/animations": "14.2.12", diff --git a/package.json b/package.json index 13fd0fa28..044be3fb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "14.7.8", + "version": "14.7.9", "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 4caaa163c..1b02663dc 100644 --- a/projects/angular/components/ui-suggest/src/ui-suggest.component.html +++ b/projects/angular/components/ui-suggest/src/ui-suggest.component.html @@ -21,7 +21,7 @@ [uiAutofocus]="!isOpen && focus" [refocus]="!isOpen && focus" [matRippleDisabled]="isFormControl" - [attr.aria-label]="placeholder" + [attr.aria-label]="ariaLabel ?? placeholder" [attr.aria-describedby]="describedBy" [attr.aria-required]="required" [attr.aria-disabled]="disabled || readonly" @@ -80,7 +80,7 @@