@sumaris-net/ngx-components 2.7.2-rc10 → 2.7.2-rc12
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/esm2022/src/app/shared/material/boolean/material-boolean.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +2 -2
- package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +15 -2
- package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +10 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +26 -4
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/social/user-event/testing/user-event.testing.d.ts +1 -0
- package/src/app/social/user-event/testing/user-event.testing.service.d.ts +1 -0
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@ export declare class UserEventTestingPage implements OnDestroy {
|
|
|
29
29
|
addRandom(value: number): void;
|
|
30
30
|
addNotificationWithDefaultAction(): void;
|
|
31
31
|
protected showMessage(text: string): Promise<void>;
|
|
32
|
+
replaceLastEvent(): void;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventTestingPage, never>;
|
|
33
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventTestingPage, "job-progression-testing", never, {}, {}, never, never, false, never>;
|
|
34
35
|
}
|
|
@@ -21,6 +21,7 @@ export declare class UserEventTestService extends AbstractUserEventService<UserE
|
|
|
21
21
|
constructor(graphql: GraphqlService, accountService: AccountService, network: NetworkService, translate: TranslateService, environment: Environment);
|
|
22
22
|
fromObject(source: any): UserEventTest;
|
|
23
23
|
add(entity: UserEventTest): Promise<UserEventTest>;
|
|
24
|
+
replaceLast(entity: UserEventTest): Promise<void>;
|
|
24
25
|
asFilter(filter: Partial<any>): any;
|
|
25
26
|
count(filter: any, options?: {
|
|
26
27
|
fetchPolicy?: FetchPolicy;
|