@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.21.0-beta21",
4
+ "version": "1.21.0-beta24",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -27,6 +27,6 @@ export declare class JobProgression extends Entity<JobProgression> {
27
27
  message: string;
28
28
  current: number;
29
29
  total: number;
30
- constructor();
30
+ constructor(id?: number);
31
31
  fromObject(source: any): void;
32
32
  }
@@ -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;