@osovitny/anatoly 2.14.56 → 2.14.57
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 +10 -7
- package/fesm2015/osovitny-anatoly.mjs +9 -6
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +9 -6
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.dialog.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3377,15 +3377,18 @@ class BaseDialog extends BaseEditComponent {
|
|
|
3377
3377
|
get opened() {
|
|
3378
3378
|
return this._opened;
|
|
3379
3379
|
}
|
|
3380
|
+
set opened(value) {
|
|
3381
|
+
this._opened = value;
|
|
3382
|
+
}
|
|
3380
3383
|
open() {
|
|
3381
|
-
this.
|
|
3384
|
+
this.opened = true;
|
|
3382
3385
|
}
|
|
3383
3386
|
close(result = null) {
|
|
3384
|
-
this.
|
|
3387
|
+
this.opened = false;
|
|
3385
3388
|
this.closed.emit(result);
|
|
3386
3389
|
}
|
|
3387
3390
|
cancel() {
|
|
3388
|
-
this.
|
|
3391
|
+
this.opened = false;
|
|
3389
3392
|
this.closed.emit(-1);
|
|
3390
3393
|
}
|
|
3391
3394
|
}
|
|
@@ -3396,10 +3399,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3396
3399
|
args: [{
|
|
3397
3400
|
template: ''
|
|
3398
3401
|
}]
|
|
3399
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
3400
|
-
type: Output
|
|
3401
|
-
}], opened: [{
|
|
3402
|
+
}], ctorParameters: function () { return []; }, propDecorators: { opened: [{
|
|
3402
3403
|
type: Input
|
|
3404
|
+
}], closed: [{
|
|
3405
|
+
type: Output
|
|
3403
3406
|
}] } });
|
|
3404
3407
|
|
|
3405
3408
|
/*
|