@sumaris-net/ngx-components 2.5.14 → 2.5.15-rc2
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/public_api.mjs +2 -1
- package/esm2020/src/app/social/job/job.module.mjs +12 -5
- package/esm2020/src/app/social/job/progression/job-progression.component.mjs +22 -0
- package/esm2020/src/app/social/job/progression/job-progression.list.mjs +5 -4
- package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +2 -2
- package/fesm2015/sumaris-net.ngx-components.mjs +32 -8
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +32 -8
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
- package/src/app/social/job/job.module.d.ts +5 -4
- package/src/app/social/job/progression/job-progression.component.d.ts +11 -0
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ export * from './src/app/social/job/progression/job-progression.service';
|
|
|
219
219
|
export * from './src/app/social/job/progression/job-progression.model';
|
|
220
220
|
export * from './src/app/social/job/progression/job-progression.icon';
|
|
221
221
|
export * from './src/app/social/job/progression/job-progression.list';
|
|
222
|
+
export * from './src/app/social/job/progression/job-progression.component';
|
|
222
223
|
export * from './src/app/social/message/message.module';
|
|
223
224
|
export * from './src/app/social/message/message.model';
|
|
224
225
|
export * from './src/app/social/message/message.service';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./progression/job-progression.icon";
|
|
3
3
|
import * as i2 from "./progression/job-progression.list";
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "
|
|
4
|
+
import * as i3 from "./progression/job-progression.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "../../shared/shared.module";
|
|
7
|
+
import * as i6 from "@ngx-translate/core";
|
|
7
8
|
export declare class JobModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<JobModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<JobModule, [typeof i1.JobProgressionIcon, typeof i2.JobProgressionList], [typeof
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<JobModule, [typeof i1.JobProgressionIcon, typeof i2.JobProgressionList, typeof i3.JobProgressionComponent], [typeof i4.CommonModule, typeof i5.SharedModule, typeof i6.TranslateModule], [typeof i1.JobProgressionIcon, typeof i2.JobProgressionList, typeof i3.JobProgressionComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<JobModule>;
|
|
11
12
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { JobProgression } from './job-progression.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class JobProgressionComponent implements OnInit {
|
|
5
|
+
jobProgression: JobProgression;
|
|
6
|
+
showName: boolean;
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobProgressionComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobProgressionComponent, "app-job-progression-component", never, { "jobProgression": "jobProgression"; "showName": "showName"; }, {}, never, never, false>;
|
|
11
|
+
}
|