@osovitny/anatoly 2.14.65 → 2.14.67

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.
@@ -3454,6 +3454,14 @@ class BaseList extends BaseComponent {
3454
3454
  this.currentFilter = filter;
3455
3455
  this.loadPageOne();
3456
3456
  }
3457
+ dataLoadedAndNothingFound() {
3458
+ this.dataLoadedAndFound(false);
3459
+ }
3460
+ dataLoadedAndFound(found) {
3461
+ this.dataLoading = false;
3462
+ this.dataLoaded = true;
3463
+ this.dataFound = found;
3464
+ }
3457
3465
  //Events
3458
3466
  onPageChange(e) {
3459
3467
  this.pageSize = e.take;