@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.
- package/bundles/seniorsistemas-angular-components.umd.js +7 -0
- 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 +1 -0
- package/esm2015/components/slide-panel/slide-panel.component.js +8 -1
- package/esm5/components/slide-panel/slide-panel.component.js +8 -1
- package/fesm2015/seniorsistemas-angular-components.js +7 -0
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +7 -0
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -11997,6 +11997,7 @@
|
|
|
11997
11997
|
this.openIcon = "fas fa-chevron-right";
|
|
11998
11998
|
this.closeIcon = "fas fa-chevron-left";
|
|
11999
11999
|
this.cache = false;
|
|
12000
|
+
this.createOpen = false;
|
|
12000
12001
|
this.panelOpened = new core.EventEmitter();
|
|
12001
12002
|
this.panelClosed = new core.EventEmitter();
|
|
12002
12003
|
this.isOpen = false;
|
|
@@ -12027,6 +12028,9 @@
|
|
|
12027
12028
|
_this._calculateSlideHeight();
|
|
12028
12029
|
_this._calculateSideContentWidth();
|
|
12029
12030
|
_this.isContentAnimationDisabled = false;
|
|
12031
|
+
if (_this.createOpen) {
|
|
12032
|
+
_this.isOpen = true;
|
|
12033
|
+
}
|
|
12030
12034
|
});
|
|
12031
12035
|
};
|
|
12032
12036
|
SlidePanelComponent.prototype.ngOnDestroy = function () {
|
|
@@ -12080,6 +12084,9 @@
|
|
|
12080
12084
|
__decorate([
|
|
12081
12085
|
core.Input()
|
|
12082
12086
|
], SlidePanelComponent.prototype, "cache", void 0);
|
|
12087
|
+
__decorate([
|
|
12088
|
+
core.Input()
|
|
12089
|
+
], SlidePanelComponent.prototype, "createOpen", void 0);
|
|
12083
12090
|
__decorate([
|
|
12084
12091
|
core.Output()
|
|
12085
12092
|
], SlidePanelComponent.prototype, "panelOpened", void 0);
|