@osovitny/anatoly 2.1.4 → 2.1.7
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 +22 -12
- package/bundles/osovitny-anatoly.umd.js.map +1 -1
- package/esm2015/lib/ui/components/base.dialog.js +47 -0
- package/esm2015/public-api.js +2 -2
- package/fesm2015/osovitny-anatoly.js +13 -7
- package/fesm2015/osovitny-anatoly.js.map +1 -1
- package/lib/ui/components/base.dialog.d.ts +8 -0
- package/osovitny-anatoly.metadata.json +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/esm2015/lib/ui/components/base-dialog.component.js +0 -41
- package/lib/ui/components/base-dialog.component.d.ts +0 -7
|
@@ -2427,27 +2427,37 @@
|
|
|
2427
2427
|
formSubmitted: [{ type: i0.Input }]
|
|
2428
2428
|
};
|
|
2429
2429
|
|
|
2430
|
-
var
|
|
2431
|
-
__extends(
|
|
2432
|
-
function
|
|
2430
|
+
var BaseDialog = /** @class */ (function (_super) {
|
|
2431
|
+
__extends(BaseDialog, _super);
|
|
2432
|
+
function BaseDialog() {
|
|
2433
2433
|
var _this = _super.call(this) || this;
|
|
2434
|
-
_this.
|
|
2434
|
+
_this._opened = false;
|
|
2435
2435
|
return _this;
|
|
2436
2436
|
}
|
|
2437
|
-
|
|
2438
|
-
|
|
2437
|
+
Object.defineProperty(BaseDialog.prototype, "opened", {
|
|
2438
|
+
get: function () {
|
|
2439
|
+
return this._opened;
|
|
2440
|
+
},
|
|
2441
|
+
enumerable: false,
|
|
2442
|
+
configurable: true
|
|
2443
|
+
});
|
|
2444
|
+
BaseDialog.prototype.show = function () {
|
|
2445
|
+
this._opened = true;
|
|
2439
2446
|
};
|
|
2440
|
-
|
|
2441
|
-
this.
|
|
2447
|
+
BaseDialog.prototype.hide = function () {
|
|
2448
|
+
this._opened = false;
|
|
2442
2449
|
};
|
|
2443
|
-
return
|
|
2450
|
+
return BaseDialog;
|
|
2444
2451
|
}(BaseEditComponent));
|
|
2445
|
-
|
|
2452
|
+
BaseDialog.decorators = [
|
|
2446
2453
|
{ type: i0.Component, args: [{
|
|
2447
2454
|
template: ''
|
|
2448
2455
|
},] }
|
|
2449
2456
|
];
|
|
2450
|
-
|
|
2457
|
+
BaseDialog.ctorParameters = function () { return []; };
|
|
2458
|
+
BaseDialog.propDecorators = {
|
|
2459
|
+
opened: [{ type: i0.Input }]
|
|
2460
|
+
};
|
|
2451
2461
|
|
|
2452
2462
|
/*
|
|
2453
2463
|
<file>
|
|
@@ -3542,7 +3552,7 @@
|
|
|
3542
3552
|
exports.AppCoreSettings = AppCoreSettings;
|
|
3543
3553
|
exports.BaseApiService = BaseApiService;
|
|
3544
3554
|
exports.BaseComponent = BaseComponent;
|
|
3545
|
-
exports.
|
|
3555
|
+
exports.BaseDialog = BaseDialog;
|
|
3546
3556
|
exports.BaseEditComponent = BaseEditComponent;
|
|
3547
3557
|
exports.BaseGoService = BaseGoService;
|
|
3548
3558
|
exports.BaseGridEditService = BaseGridEditService;
|