@osovitny/anatoly 2.1.7 → 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.
@@ -2441,10 +2441,10 @@
2441
2441
  enumerable: false,
2442
2442
  configurable: true
2443
2443
  });
2444
- BaseDialog.prototype.show = function () {
2444
+ BaseDialog.prototype.open = function () {
2445
2445
  this._opened = true;
2446
2446
  };
2447
- BaseDialog.prototype.hide = function () {
2447
+ BaseDialog.prototype.close = function () {
2448
2448
  this._opened = false;
2449
2449
  };
2450
2450
  return BaseDialog;