@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
|
@@ -14498,6 +14498,14 @@ var SlidePanelComponent = /** @class */ (function () {
|
|
|
14498
14498
|
_this.isOpen = false;
|
|
14499
14499
|
});
|
|
14500
14500
|
};
|
|
14501
|
+
SlidePanelComponent.prototype.ngAfterViewInit = function () {
|
|
14502
|
+
var _this = this;
|
|
14503
|
+
queueMicrotask(function () {
|
|
14504
|
+
if (_this.createOpen) {
|
|
14505
|
+
_this.isOpen = true;
|
|
14506
|
+
}
|
|
14507
|
+
});
|
|
14508
|
+
};
|
|
14501
14509
|
SlidePanelComponent.prototype.ngAfterViewChecked = function () {
|
|
14502
14510
|
var _this = this;
|
|
14503
14511
|
// to executed at a safe time prior to control returning to the browser's event loop
|
|
@@ -14505,9 +14513,6 @@ var SlidePanelComponent = /** @class */ (function () {
|
|
|
14505
14513
|
_this._calculateSlideHeight();
|
|
14506
14514
|
_this._calculateSideContentWidth();
|
|
14507
14515
|
_this.isContentAnimationDisabled = false;
|
|
14508
|
-
if (_this.createOpen) {
|
|
14509
|
-
_this.isOpen = true;
|
|
14510
|
-
}
|
|
14511
14516
|
});
|
|
14512
14517
|
};
|
|
14513
14518
|
SlidePanelComponent.prototype.ngOnDestroy = function () {
|