@osovitny/anatoly 2.1.4 → 2.1.5
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/osovitny-anatoly.umd.js +14 -4
- package/bundles/osovitny-anatoly.umd.js.map +1 -1
- package/esm2015/lib/ui/components/base-dialog.component.js +11 -5
- package/fesm2015/osovitny-anatoly.js +10 -4
- package/fesm2015/osovitny-anatoly.js.map +1 -1
- package/lib/ui/components/base-dialog.component.d.ts +2 -1
- package/osovitny-anatoly.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2431,14 +2431,21 @@
|
|
|
2431
2431
|
__extends(BaseDialogComponent, _super);
|
|
2432
2432
|
function BaseDialogComponent() {
|
|
2433
2433
|
var _this = _super.call(this) || this;
|
|
2434
|
-
_this.
|
|
2434
|
+
_this._opened = false;
|
|
2435
2435
|
return _this;
|
|
2436
2436
|
}
|
|
2437
|
+
Object.defineProperty(BaseDialogComponent.prototype, "opened", {
|
|
2438
|
+
get: function () {
|
|
2439
|
+
return this._opened;
|
|
2440
|
+
},
|
|
2441
|
+
enumerable: false,
|
|
2442
|
+
configurable: true
|
|
2443
|
+
});
|
|
2437
2444
|
BaseDialogComponent.prototype.show = function () {
|
|
2438
|
-
this.
|
|
2445
|
+
this._opened = true;
|
|
2439
2446
|
};
|
|
2440
2447
|
BaseDialogComponent.prototype.hide = function () {
|
|
2441
|
-
this.
|
|
2448
|
+
this._opened = false;
|
|
2442
2449
|
};
|
|
2443
2450
|
return BaseDialogComponent;
|
|
2444
2451
|
}(BaseEditComponent));
|
|
@@ -2447,7 +2454,10 @@
|
|
|
2447
2454
|
template: ''
|
|
2448
2455
|
},] }
|
|
2449
2456
|
];
|
|
2450
|
-
BaseDialogComponent.ctorParameters = function () { return []; };
|
|
2457
|
+
BaseDialogComponent.ctorParameters = function () { return []; };
|
|
2458
|
+
BaseDialogComponent.propDecorators = {
|
|
2459
|
+
opened: [{ type: i0.Input }]
|
|
2460
|
+
};
|
|
2451
2461
|
|
|
2452
2462
|
/*
|
|
2453
2463
|
<file>
|