diff --git a/CHANGELOG.md b/CHANGELOG.md index eda958b54..730c1111b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v13.7.6 (2023-04-26) +* **grid** add aria-expanded to filters btn +* **grid** add tick to test +* **grid** announce filter menu state collapsed/expanded +* **a11y** filter messages that are announced +* **a11y** add menu-trigger directive that sets aria-expanded + # v13.7.5 (2022-11-22) * **dateformat** avoid using macrotasks using setTimeout generated a lot of macrotasks diff --git a/package-lock.json b/package-lock.json index cff89b608..76dc74fcf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.5", + "version": "13.7.6", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 42e94c5b4..e9a972c81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-components", - "version": "13.7.5", + "version": "13.7.6", "author": { "name": "UiPath Inc", "url": "https://uipath.com" diff --git a/projects/angular/a11y/src/queued-announcer/queued-announcer.ts b/projects/angular/a11y/src/queued-announcer/queued-announcer.ts index c6a12082b..dfda45bd6 100644 --- a/projects/angular/a11y/src/queued-announcer/queued-announcer.ts +++ b/projects/angular/a11y/src/queued-announcer/queued-announcer.ts @@ -16,7 +16,8 @@ export class QueuedAnnouncer { constructor(private _liveAnnouncer: LiveAnnouncer) { } - enqueue(msg: string) { + enqueue(msg: string | undefined) { + if (!msg) { return; } this._msgQueue.push(msg); if (!this._isAnnouncing) { diff --git a/projects/angular/components/ui-grid/src/ui-grid.component.html b/projects/angular/components/ui-grid/src/ui-grid.component.html index 9a0710b56..3abb9160f 100644 --- a/projects/angular/components/ui-grid/src/ui-grid.component.html +++ b/projects/angular/components/ui-grid/src/ui-grid.component.html @@ -519,6 +519,7 @@