@osovitny/anatoly 2.1.5 → 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,35 +2427,35 @@
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
2434
  _this._opened = false;
2435
2435
  return _this;
2436
2436
  }
2437
- Object.defineProperty(BaseDialogComponent.prototype, "opened", {
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
- BaseDialogComponent.prototype.show = function () {
2444
+ BaseDialog.prototype.show = function () {
2445
2445
  this._opened = true;
2446
2446
  };
2447
- BaseDialogComponent.prototype.hide = function () {
2447
+ BaseDialog.prototype.hide = function () {
2448
2448
  this._opened = false;
2449
2449
  };
2450
- return BaseDialogComponent;
2450
+ return BaseDialog;
2451
2451
  }(BaseEditComponent));
2452
- BaseDialogComponent.decorators = [
2452
+ BaseDialog.decorators = [
2453
2453
  { type: i0.Component, args: [{
2454
2454
  template: ''
2455
2455
  },] }
2456
2456
  ];
2457
- BaseDialogComponent.ctorParameters = function () { return []; };
2458
- BaseDialogComponent.propDecorators = {
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.BaseDialogComponent = BaseDialogComponent;
3555
+ exports.BaseDialog = BaseDialog;
3556
3556
  exports.BaseEditComponent = BaseEditComponent;
3557
3557
  exports.BaseGoService = BaseGoService;
3558
3558
  exports.BaseGridEditService = BaseGridEditService;