@sumaris-net/ngx-components 1.21.0-beta21 → 1.21.0-beta24
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/bundles/sumaris-net.ngx-components.umd.js +28 -10
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/social/job/job.model.js +3 -2
- package/esm2015/src/app/social/job/progression/job-progression.component.js +9 -5
- package/esm2015/src/app/social/user-event/notification/user-event-notification.list.js +2 -2
- package/esm2015/src/app/social/user-event/user-event.model.js +1 -1
- package/esm2015/src/app/social/user-event/user-event.service.js +16 -3
- package/esm2015/src/app/social/user-event/user-events.table.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +26 -9
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/social/job/job.model.d.ts +1 -1
- package/src/app/social/user-event/user-event.model.d.ts +1 -2
- package/src/app/social/user-event/user-event.service.d.ts +2 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -67,8 +67,7 @@ export declare class UserEventFilter extends EntityFilter<UserEventFilter, UserE
|
|
|
67
67
|
export interface UserEventAction {
|
|
68
68
|
name: string | any;
|
|
69
69
|
title?: string;
|
|
70
|
-
icon?: string;
|
|
71
|
-
matIcon?: string;
|
|
72
70
|
color?: AppColors;
|
|
71
|
+
iconRef?: IconRef;
|
|
73
72
|
executeAction: (event: IUserEvent<any>) => any | Promise<any>;
|
|
74
73
|
}
|
|
@@ -100,6 +100,8 @@ export declare abstract class AbstractUserEventService<E extends IUserEvent<E, a
|
|
|
100
100
|
resetCount(): void;
|
|
101
101
|
protected onLogin(): Promise<void>;
|
|
102
102
|
protected onLogout(): void;
|
|
103
|
+
protected startListenCountChanges(): void;
|
|
104
|
+
protected stopListenCountChanges(): void;
|
|
103
105
|
protected processUserEvent(source: any, that?: AbstractUserEventService<E, F>): E;
|
|
104
106
|
protected defaultMarkAsRead(userEvents: E[]): Promise<void>;
|
|
105
107
|
protected defaultFilter(): F;
|