Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 8131c21

Browse files
ci: release (#2378)
1 parent 06d6ae6 commit 8131c21

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.changeset/good-jobs-cheat.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eBayUI-Core Changelog
22

3+
## 14.6.6
4+
5+
### Patch Changes
6+
7+
- [#2377](https://github.com/eBay/ebayui-core/pull/2377) [`06d6ae6`](https://github.com/eBay/ebayui-core/commit/06d6ae60cb3dff261c208666a1f985bcdd2f8eb4) Thanks [@agliga](https://github.com/agliga)! - fix(dialog): added request animation frame before running keyboardTrap
8+
39
## 14.6.5
410

511
### Patch Changes

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": "@ebay/ebayui-core",
3-
"version": "14.6.5",
3+
"version": "14.6.6",
44
"description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.",
55
"keywords": [
66
"marko-components"

src/components/components/ebay-dialog-base/component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ class DialogBase extends Marko.Component<Input, State> {
247247
screenReaderTrap.trap(this.el, { useHiddenProperty });
248248
if (!useHiddenProperty) {
249249
// Adding request animation frame because focusables will return that all elements are not visible since dialog is still animating.
250-
requestAnimationFrame(() => keyboardTrap.trap(this.windowEl));
250+
requestAnimationFrame(() =>
251+
keyboardTrap.trap(this.windowEl),
252+
);
251253
}
252254
}
253255
};

0 commit comments

Comments
 (0)