diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f5d06d8..52a14a910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v13.7.9 (2023-05-11) +* **suggest** add input for aria-label +* **suggest** condition title display by input + # v13.7.8 (2023-05-10) * **fix** display outline on suggest grid filter diff --git a/package-lock.json b/package-lock.json index 718e3f00a..f093ab42b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.8", + "version": "13.7.9", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 7d5fcc86f..1b4856935 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.8", + "version": "13.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 179f02741..10e8f552f 100644 --- a/projects/angular/components/ui-suggest/src/ui-suggest.component.html +++ b/projects/angular/components/ui-suggest/src/ui-suggest.component.html @@ -16,7 +16,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" @@ -44,7 +44,7 @@
-