@sumaris-net/ngx-components 2.4.12-rc7 → 2.4.12

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.
@@ -31487,16 +31487,16 @@ class UserEventNotificationList {
31487
31487
  this.settings = settings;
31488
31488
  this.userEventService = userEventService;
31489
31489
  this.infiniteScrollThresholdFromToken = infiniteScrollThresholdFromToken;
31490
- this._subscriptions = new Subscription();
31491
- this._$pageSize = new BehaviorSubject(20);
31492
- this._panelElement = null;
31493
- this.fetchingMore = false;
31494
- this.$items = new BehaviorSubject(undefined);
31495
- this.$itemCount = new BehaviorSubject(undefined);
31496
31490
  this.debug = false;
31497
31491
  this.sortBy = 'creationDate';
31498
31492
  this.sortDirection = 'desc';
31499
31493
  this.enableInfiniteScroll = true;
31494
+ this.fetchingMore = false;
31495
+ this.$items = new BehaviorSubject(undefined);
31496
+ this.$itemCount = new BehaviorSubject(undefined);
31497
+ this._subscriptions = new Subscription();
31498
+ this._$pageSize = new BehaviorSubject(20);
31499
+ this._panelElement = null;
31500
31500
  this.mobile = this.settings?.mobile || false;
31501
31501
  this.infiniteScrollThreshold = infiniteScrollThresholdFromToken;
31502
31502
  }