@osovitny/anatoly 2.14.61 → 2.14.62
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 +4 -4
- package/fesm2015/osovitny-anatoly.mjs +3 -3
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +3 -3
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.dialog.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3380,13 +3380,13 @@ class BaseDialog extends BaseEditComponent {
|
|
|
3380
3380
|
return this._isOpen;
|
|
3381
3381
|
}
|
|
3382
3382
|
set isOpen(value) {
|
|
3383
|
-
this._isOpen = value;
|
|
3384
3383
|
if (value) {
|
|
3385
|
-
if (this.
|
|
3386
|
-
this.
|
|
3384
|
+
if (this.onBeforeOpen) {
|
|
3385
|
+
this.onBeforeOpen();
|
|
3387
3386
|
}
|
|
3388
3387
|
this.opened.emit();
|
|
3389
3388
|
}
|
|
3389
|
+
this._isOpen = value;
|
|
3390
3390
|
}
|
|
3391
3391
|
open() {
|
|
3392
3392
|
this.isOpen = true;
|