@idsoftsource/initial-process 2.4.1 → 2.4.2
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/index.d.ts
CHANGED
|
@@ -1209,6 +1209,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1209
1209
|
private saveState;
|
|
1210
1210
|
private restoreState;
|
|
1211
1211
|
private clearState;
|
|
1212
|
+
onBeforeUnload(event: BeforeUnloadEvent): void;
|
|
1212
1213
|
ngOnDestroy(): void;
|
|
1213
1214
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessComponent, never>;
|
|
1214
1215
|
static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, {}, {}, never, never, false, never>;
|
|
@@ -1658,15 +1659,6 @@ declare class EducationComponent implements OnInit {
|
|
|
1658
1659
|
static ɵcmp: i0.ɵɵComponentDeclaration<EducationComponent, "app-education", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1659
1660
|
}
|
|
1660
1661
|
|
|
1661
|
-
declare class ProfessionService {
|
|
1662
|
-
private http;
|
|
1663
|
-
private readonly baseUrl;
|
|
1664
|
-
getProfessions(query?: any): Observable<any>;
|
|
1665
|
-
private buildParams;
|
|
1666
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfessionService, never>;
|
|
1667
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProfessionService>;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
1662
|
declare class CertificationComponent {
|
|
1671
1663
|
roleContextService: RoleContextService;
|
|
1672
1664
|
userDocumentService: UserDocumentService;
|
|
@@ -1678,7 +1670,6 @@ declare class CertificationComponent {
|
|
|
1678
1670
|
private fb;
|
|
1679
1671
|
private fileService;
|
|
1680
1672
|
private http;
|
|
1681
|
-
private professionService;
|
|
1682
1673
|
originalFormValue: any;
|
|
1683
1674
|
states: any[];
|
|
1684
1675
|
isAdding: i0.WritableSignal<boolean>;
|
|
@@ -1722,7 +1713,8 @@ declare class CertificationComponent {
|
|
|
1722
1713
|
professions: any[];
|
|
1723
1714
|
selectedProfessionId: string | null;
|
|
1724
1715
|
selectedProfessionValue: string;
|
|
1725
|
-
|
|
1716
|
+
private professionService;
|
|
1717
|
+
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1726
1718
|
ngOnInit(): Promise<void>;
|
|
1727
1719
|
loadProfessions(): void;
|
|
1728
1720
|
onProfessionChange(profession: any): void;
|
|
@@ -1849,7 +1841,6 @@ declare class SkillsComponent {
|
|
|
1849
1841
|
private roleContextService;
|
|
1850
1842
|
store: CredentialingStore;
|
|
1851
1843
|
private tokenService;
|
|
1852
|
-
private professionService;
|
|
1853
1844
|
private userSkillsSub?;
|
|
1854
1845
|
providerId: string;
|
|
1855
1846
|
providerName: string;
|
|
@@ -1894,7 +1885,8 @@ declare class SkillsComponent {
|
|
|
1894
1885
|
selectedProfessionId: string | null;
|
|
1895
1886
|
selectedProfessionValue: string;
|
|
1896
1887
|
skillDetailList?: ElementRef;
|
|
1897
|
-
|
|
1888
|
+
private professionService;
|
|
1889
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1898
1890
|
private ctxProviderName;
|
|
1899
1891
|
private ctxProviderId;
|
|
1900
1892
|
private markTabPristine;
|
|
@@ -2068,6 +2060,15 @@ declare class ToolService {
|
|
|
2068
2060
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToolService>;
|
|
2069
2061
|
}
|
|
2070
2062
|
|
|
2063
|
+
declare class ProfessionService {
|
|
2064
|
+
private http;
|
|
2065
|
+
private readonly baseUrl;
|
|
2066
|
+
getProfessions(query?: any): Observable<any>;
|
|
2067
|
+
private buildParams;
|
|
2068
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfessionService, never>;
|
|
2069
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProfessionService>;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2071
2072
|
declare class ToolsComponent {
|
|
2072
2073
|
private toolService;
|
|
2073
2074
|
private userToolService;
|