@sumaris-net/ngx-components 2.5.12 → 2.5.13
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/job/progression/job-progression.list.mjs +26 -8
- package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +27 -7
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +25 -7
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/social/job/progression/job-progression.list.d.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { JobProgression } from './job-progression.model';
|
|
3
3
|
import { IUserEventAction } from '../../user-event/user-event.model';
|
|
4
|
+
import { PopoverController } from '@ionic/angular';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export interface JobProgressionListOptions {
|
|
6
7
|
titleI18n?: string;
|
|
@@ -8,11 +9,13 @@ export interface JobProgressionListOptions {
|
|
|
8
9
|
headerActions?: IUserEventAction[];
|
|
9
10
|
}
|
|
10
11
|
export declare class JobProgressionList implements OnInit, JobProgressionListOptions {
|
|
12
|
+
protected popoverController: PopoverController;
|
|
11
13
|
titleI18n: string;
|
|
12
14
|
jobProgressions: JobProgression[];
|
|
13
15
|
headerActions: IUserEventAction[];
|
|
14
|
-
constructor();
|
|
16
|
+
constructor(popoverController: PopoverController);
|
|
15
17
|
ngOnInit(): void;
|
|
18
|
+
executeAction(event: Event, action: IUserEventAction): Promise<void>;
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<JobProgressionList, never>;
|
|
17
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<JobProgressionList, "app-job-progression-list", never, { "titleI18n": "titleI18n"; "jobProgressions": "jobProgressions"; "headerActions": "headerActions"; }, {}, never, never, false>;
|
|
18
21
|
}
|