@osovitny/anatoly 2.14.58 → 2.14.59
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/esm2020/lib/ui/components/base/base.dialog.mjs +3 -8
- package/fesm2015/osovitny-anatoly.mjs +2 -7
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +2 -7
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.dialog.d.ts +1 -3
- package/package.json +1 -1
|
@@ -3371,15 +3371,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3371
3371
|
class BaseDialog extends BaseEditComponent {
|
|
3372
3372
|
constructor() {
|
|
3373
3373
|
super();
|
|
3374
|
-
this.
|
|
3374
|
+
this.isOpen = false;
|
|
3375
|
+
//Events
|
|
3375
3376
|
this.closed = new EventEmitter();
|
|
3376
3377
|
}
|
|
3377
|
-
get isOpen() {
|
|
3378
|
-
return this._isOpen;
|
|
3379
|
-
}
|
|
3380
|
-
set isOpen(value) {
|
|
3381
|
-
this._isOpen = value;
|
|
3382
|
-
}
|
|
3383
3378
|
open() {
|
|
3384
3379
|
this.isOpen = true;
|
|
3385
3380
|
}
|