@skyux/popovers 4.7.0 → 4.7.1
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 +4 -0
- package/bundles/skyux-popovers.umd.js +2 -1
- package/bundles/skyux-popovers.umd.js.map +1 -1
- package/bundles/skyux-popovers.umd.min.js +1 -1
- package/bundles/skyux-popovers.umd.min.js.map +1 -1
- package/esm2015/modules/dropdown/dropdown.component.js +3 -2
- package/esm5/modules/dropdown/dropdown.component.js +3 -2
- package/fesm2015/skyux-popovers.js +2 -1
- package/fesm2015/skyux-popovers.js.map +1 -1
- package/fesm5/skyux-popovers.js +2 -1
- package/fesm5/skyux-popovers.js.map +1 -1
- package/modules/dropdown/dropdown.component.d.ts +1 -0
- package/package.json +1 -1
- package/skyux-popovers.metadata.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 4.7.1 (2021-12-20)
|
|
2
|
+
|
|
3
|
+
- Added bug fixes and features from the `master` branch. [#171](https://github.com/blackbaud/skyux-popovers/pull/171)
|
|
4
|
+
|
|
1
5
|
# 4.7.0 (2021-08-25)
|
|
2
6
|
|
|
3
7
|
- Added reference checking on close to support AG Grid popovers. [#161](https://github.com/blackbaud/skyux-popovers/pull/161)
|
|
@@ -555,6 +555,7 @@
|
|
|
555
555
|
SkyDropdownComponent.prototype.ngOnDestroy = function () {
|
|
556
556
|
this.destroyAffixer();
|
|
557
557
|
this.destroyOverlay();
|
|
558
|
+
clearTimeout(this._positionTimeout);
|
|
558
559
|
this.ngUnsubscribe.next();
|
|
559
560
|
this.ngUnsubscribe.complete();
|
|
560
561
|
this.ngUnsubscribe = undefined;
|
|
@@ -718,7 +719,7 @@
|
|
|
718
719
|
this.isVisible = false;
|
|
719
720
|
this.createOverlay();
|
|
720
721
|
this.changeDetector.markForCheck();
|
|
721
|
-
setTimeout(function () {
|
|
722
|
+
this._positionTimeout = setTimeout(function () {
|
|
722
723
|
_this.affixer.affixTo(_this.triggerButton.nativeElement, {
|
|
723
724
|
autoFitContext: core$1.SkyAffixAutoFitContext.Viewport,
|
|
724
725
|
enableAutoFit: true,
|