@seniorsistemas/angular-components 17.3.0 → 17.3.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.
@@ -11851,6 +11851,7 @@ var SlidePanelComponent = /** @class */ (function () {
11851
11851
  this.openIcon = "fas fa-chevron-right";
11852
11852
  this.closeIcon = "fas fa-chevron-left";
11853
11853
  this.cache = false;
11854
+ this.createOpen = false;
11854
11855
  this.panelOpened = new EventEmitter();
11855
11856
  this.panelClosed = new EventEmitter();
11856
11857
  this.isOpen = false;
@@ -11881,6 +11882,9 @@ var SlidePanelComponent = /** @class */ (function () {
11881
11882
  _this._calculateSlideHeight();
11882
11883
  _this._calculateSideContentWidth();
11883
11884
  _this.isContentAnimationDisabled = false;
11885
+ if (_this.createOpen) {
11886
+ _this.isOpen = true;
11887
+ }
11884
11888
  });
11885
11889
  };
11886
11890
  SlidePanelComponent.prototype.ngOnDestroy = function () {
@@ -11934,6 +11938,9 @@ var SlidePanelComponent = /** @class */ (function () {
11934
11938
  __decorate([
11935
11939
  Input()
11936
11940
  ], SlidePanelComponent.prototype, "cache", void 0);
11941
+ __decorate([
11942
+ Input()
11943
+ ], SlidePanelComponent.prototype, "createOpen", void 0);
11937
11944
  __decorate([
11938
11945
  Output()
11939
11946
  ], SlidePanelComponent.prototype, "panelOpened", void 0);