ember-attacher 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## v2.0.
|
|
3
|
+
## v2.0.3 (2023-05-22)
|
|
4
4
|
|
|
5
5
|
#### :rocket: Enhancement
|
|
6
6
|
* [#790](https://github.com/tylerturdenpants/ember-attacher/pull/790) Bump ember-maybe-in-element to supress build-time warning ([@pzubar](https://github.com/pzubar))
|
|
7
7
|
* [#784](https://github.com/tylerturdenpants/ember-attacher/pull/784) Prevent overflow by default ([@pzubar](https://github.com/pzubar))
|
|
8
8
|
|
|
9
9
|
#### :bug: Bug Fix
|
|
10
|
+
* [#794](https://github.com/tylerturdenpants/ember-attacher/pull/794) Fix test error caused by wrong endAsync call ([@pzubar](https://github.com/pzubar))
|
|
10
11
|
* [#784](https://github.com/tylerturdenpants/ember-attacher/pull/784) Prevent overflow by default ([@pzubar](https://github.com/pzubar))
|
|
11
12
|
|
|
12
13
|
#### :house: Internal
|
|
@@ -517,7 +517,7 @@ export default class AttachPopover extends Component {
|
|
|
517
517
|
if (!this._floatingElement) {
|
|
518
518
|
this._animationTimeout = requestAnimationFrame(() => {
|
|
519
519
|
animationTestWaiter.endAsync(this._animationTimeout);
|
|
520
|
-
this.
|
|
520
|
+
this._hide();
|
|
521
521
|
});
|
|
522
522
|
animationTestWaiter.beginAsync(this._animationTimeout);
|
|
523
523
|
return;
|