@seniorsistemas/angular-components 17.3.2 → 17.3.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/bundles/seniorsistemas-angular-components.umd.js +8 -3
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/slide-panel/slide-panel.component.d.ts +3 -2
- package/esm2015/components/slide-panel/slide-panel.component.js +8 -4
- package/esm5/components/slide-panel/slide-panel.component.js +9 -4
- package/fesm2015/seniorsistemas-angular-components.js +7 -3
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +8 -3
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -14644,6 +14644,14 @@
|
|
|
14644
14644
|
_this.isOpen = false;
|
|
14645
14645
|
});
|
|
14646
14646
|
};
|
|
14647
|
+
SlidePanelComponent.prototype.ngAfterViewInit = function () {
|
|
14648
|
+
var _this = this;
|
|
14649
|
+
queueMicrotask(function () {
|
|
14650
|
+
if (_this.createOpen) {
|
|
14651
|
+
_this.isOpen = true;
|
|
14652
|
+
}
|
|
14653
|
+
});
|
|
14654
|
+
};
|
|
14647
14655
|
SlidePanelComponent.prototype.ngAfterViewChecked = function () {
|
|
14648
14656
|
var _this = this;
|
|
14649
14657
|
// to executed at a safe time prior to control returning to the browser's event loop
|
|
@@ -14651,9 +14659,6 @@
|
|
|
14651
14659
|
_this._calculateSlideHeight();
|
|
14652
14660
|
_this._calculateSideContentWidth();
|
|
14653
14661
|
_this.isContentAnimationDisabled = false;
|
|
14654
|
-
if (_this.createOpen) {
|
|
14655
|
-
_this.isOpen = true;
|
|
14656
|
-
}
|
|
14657
14662
|
});
|
|
14658
14663
|
};
|
|
14659
14664
|
SlidePanelComponent.prototype.ngOnDestroy = function () {
|