@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
package/package.json
CHANGED
|
@@ -21,14 +21,6 @@ export declare class UserEventNotificationList<E extends IUserEvent<any> = IUser
|
|
|
21
21
|
protected settings: LocalSettingsService;
|
|
22
22
|
userEventService: IUserEventService<E, IUserEventFilter<any>>;
|
|
23
23
|
infiniteScrollThresholdFromToken: string;
|
|
24
|
-
protected _subscriptions: Subscription;
|
|
25
|
-
protected _fetchMoreFn: FetchMoreFn<LoadResult<E>>;
|
|
26
|
-
protected _fetchMoreSubscription: Subscription;
|
|
27
|
-
protected _$pageSize: BehaviorSubject<number>;
|
|
28
|
-
protected _panelElement: HTMLElement;
|
|
29
|
-
fetchingMore: boolean;
|
|
30
|
-
$items: BehaviorSubject<E[]>;
|
|
31
|
-
$itemCount: BehaviorSubject<number>;
|
|
32
24
|
debug: boolean;
|
|
33
25
|
mobile: boolean;
|
|
34
26
|
titleI18n: string;
|
|
@@ -44,6 +36,14 @@ export declare class UserEventNotificationList<E extends IUserEvent<any> = IUser
|
|
|
44
36
|
ionContent: IonContent;
|
|
45
37
|
ionItems: QueryList<IonItem>;
|
|
46
38
|
get canFetchMore(): boolean;
|
|
39
|
+
fetchingMore: boolean;
|
|
40
|
+
$items: BehaviorSubject<E[]>;
|
|
41
|
+
$itemCount: BehaviorSubject<number>;
|
|
42
|
+
protected _subscriptions: Subscription;
|
|
43
|
+
protected _fetchMoreFn: FetchMoreFn<LoadResult<E>>;
|
|
44
|
+
protected _fetchMoreSubscription: Subscription;
|
|
45
|
+
protected _$pageSize: BehaviorSubject<number>;
|
|
46
|
+
protected _panelElement: HTMLElement;
|
|
47
47
|
constructor(cd: ChangeDetectorRef, popoverController: PopoverController, settings: LocalSettingsService, userEventService: IUserEventService<E, IUserEventFilter<any>>, infiniteScrollThresholdFromToken: string);
|
|
48
48
|
ngOnInit(): void;
|
|
49
49
|
ngOnDestroy(): void;
|