@osovitny/anatoly 2.14.91 → 2.14.93

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.
@@ -2940,6 +2940,11 @@ class BaseComponent {
2940
2940
  return null;
2941
2941
  return value;
2942
2942
  }
2943
+ dataStartedLoading() {
2944
+ this.dataLoading = true;
2945
+ this.dataLoaded = false;
2946
+ this.dataFound = false;
2947
+ }
2943
2948
  dataLoadedAndNothingFound() {
2944
2949
  this.dataLoadedAndFound(false);
2945
2950
  }
@@ -3478,8 +3483,8 @@ class BaseDialog extends BaseEditComponent {
3478
3483
  }
3479
3484
  set isOpen(value) {
3480
3485
  if (value) {
3481
- if (this.onBeforeOpen) {
3482
- this.onBeforeOpen();
3486
+ if (this.anOnBeforeOpen) {
3487
+ this.anOnBeforeOpen();
3483
3488
  }
3484
3489
  this.opened.emit();
3485
3490
  }