@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.
- package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +7 -7
- package/fesm2015/sumaris-net.ngx-components.mjs +6 -6
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +6 -6
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/social/user-event/notification/user-event-notification.list.d.ts +8 -8
|
@@ -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
|
}
|