@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.
@@ -2427,27 +2427,37 @@
2427
2427
  formSubmitted: [{ type: i0.Input }]
2428
2428
  };
2429
2429
 
2430
- var BaseDialogComponent = /** @class */ (function (_super) {
2431
- __extends(BaseDialogComponent, _super);
2432
- function BaseDialogComponent() {
2430
+ var BaseDialog = /** @class */ (function (_super) {
2431
+ __extends(BaseDialog, _super);
2432
+ function BaseDialog() {
2433
2433
  var _this = _super.call(this) || this;
2434
- _this.opened = false;
2434
+ _this._opened = false;
2435
2435
  return _this;
2436
2436
  }
2437
- BaseDialogComponent.prototype.show = function () {
2438
- this.opened = true;
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
- BaseDialogComponent.prototype.hide = function () {
2441
- this.opened = false;
2447
+ BaseDialog.prototype.hide = function () {
2448
+ this._opened = false;
2442
2449
  };
2443
- return BaseDialogComponent;
2450
+ return BaseDialog;
2444
2451
  }(BaseEditComponent));
2445
- BaseDialogComponent.decorators = [
2452
+ BaseDialog.decorators = [
2446
2453
  { type: i0.Component, args: [{
2447
2454
  template: ''
2448
2455
  },] }
2449
2456
  ];
2450
- BaseDialogComponent.ctorParameters = function () { return []; };
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.BaseDialogComponent = BaseDialogComponent;
3555
+ exports.BaseDialog = BaseDialog;
3546
3556
  exports.BaseEditComponent = BaseEditComponent;
3547
3557
  exports.BaseGoService = BaseGoService;
3548
3558
  exports.BaseGridEditService = BaseGridEditService;