@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.
@@ -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 () {