@osovitny/anatoly 2.1.5 → 2.1.8
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 +11 -11
- 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 +7 -7
- package/fesm2015/osovitny-anatoly.js.map +1 -1
- package/lib/ui/components/{base-dialog.component.d.ts → base.dialog.d.ts} +3 -3
- 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 -47
|
@@ -2427,35 +2427,35 @@
|
|
|
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
2434
|
_this._opened = false;
|
|
2435
2435
|
return _this;
|
|
2436
2436
|
}
|
|
2437
|
-
Object.defineProperty(
|
|
2437
|
+
Object.defineProperty(BaseDialog.prototype, "opened", {
|
|
2438
2438
|
get: function () {
|
|
2439
2439
|
return this._opened;
|
|
2440
2440
|
},
|
|
2441
2441
|
enumerable: false,
|
|
2442
2442
|
configurable: true
|
|
2443
2443
|
});
|
|
2444
|
-
|
|
2444
|
+
BaseDialog.prototype.open = function () {
|
|
2445
2445
|
this._opened = true;
|
|
2446
2446
|
};
|
|
2447
|
-
|
|
2447
|
+
BaseDialog.prototype.close = function () {
|
|
2448
2448
|
this._opened = false;
|
|
2449
2449
|
};
|
|
2450
|
-
return
|
|
2450
|
+
return BaseDialog;
|
|
2451
2451
|
}(BaseEditComponent));
|
|
2452
|
-
|
|
2452
|
+
BaseDialog.decorators = [
|
|
2453
2453
|
{ type: i0.Component, args: [{
|
|
2454
2454
|
template: ''
|
|
2455
2455
|
},] }
|
|
2456
2456
|
];
|
|
2457
|
-
|
|
2458
|
-
|
|
2457
|
+
BaseDialog.ctorParameters = function () { return []; };
|
|
2458
|
+
BaseDialog.propDecorators = {
|
|
2459
2459
|
opened: [{ type: i0.Input }]
|
|
2460
2460
|
};
|
|
2461
2461
|
|
|
@@ -3552,7 +3552,7 @@
|
|
|
3552
3552
|
exports.AppCoreSettings = AppCoreSettings;
|
|
3553
3553
|
exports.BaseApiService = BaseApiService;
|
|
3554
3554
|
exports.BaseComponent = BaseComponent;
|
|
3555
|
-
exports.
|
|
3555
|
+
exports.BaseDialog = BaseDialog;
|
|
3556
3556
|
exports.BaseEditComponent = BaseEditComponent;
|
|
3557
3557
|
exports.BaseGoService = BaseGoService;
|
|
3558
3558
|
exports.BaseGridEditService = BaseGridEditService;
|