@idsoftsource/initial-process 3.4.4 → 3.4.6
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, OnInit, ElementRef, EventEmitter, TemplateRef, OnDestroy, AfterViewInit,
|
|
2
|
+
import { InjectionToken, OnInit, ElementRef, EventEmitter, TemplateRef, OnDestroy, AfterViewInit, ChangeDetectorRef, Injector, OnChanges, SimpleChanges, ViewContainerRef, ComponentFactoryResolver, Renderer2, ModuleWithProviders, PipeTransform, NgZone } from '@angular/core';
|
|
3
3
|
import * as _angular_forms from '@angular/forms';
|
|
4
4
|
import { FormGroup, FormBuilder, AbstractControl, FormControl, FormArray, UntypedFormGroup, UntypedFormBuilder, ControlValueAccessor, NgForm } from '@angular/forms';
|
|
5
5
|
import * as i19 from '@angular/router';
|
|
@@ -1979,6 +1979,7 @@ declare class EducationComponent implements OnInit {
|
|
|
1979
1979
|
cloudfront: any;
|
|
1980
1980
|
proposalLoader: boolean;
|
|
1981
1981
|
showSuccess: i0.WritableSignal<boolean>;
|
|
1982
|
+
deletingIndex: i0.WritableSignal<number | null>;
|
|
1982
1983
|
showpreview: i0.Signal<boolean>;
|
|
1983
1984
|
maxDate: Date;
|
|
1984
1985
|
userdata: any;
|
|
@@ -2018,6 +2019,7 @@ declare class CertificationComponent {
|
|
|
2018
2019
|
private postalCodeService;
|
|
2019
2020
|
private fb;
|
|
2020
2021
|
private fileService;
|
|
2022
|
+
private cdr;
|
|
2021
2023
|
originalFormValue: any;
|
|
2022
2024
|
states: any[];
|
|
2023
2025
|
isAdding: i0.WritableSignal<boolean>;
|
|
@@ -2057,6 +2059,7 @@ declare class CertificationComponent {
|
|
|
2057
2059
|
cloudfront: any;
|
|
2058
2060
|
proposalLoader: boolean;
|
|
2059
2061
|
showSuccess: i0.WritableSignal<boolean>;
|
|
2062
|
+
deletingIndex: i0.WritableSignal<number | null>;
|
|
2060
2063
|
manualTypeError: string;
|
|
2061
2064
|
showpreview: i0.Signal<boolean>;
|
|
2062
2065
|
userdata: any;
|
|
@@ -2079,7 +2082,7 @@ declare class CertificationComponent {
|
|
|
2079
2082
|
private professionService;
|
|
2080
2083
|
private userProfessionService;
|
|
2081
2084
|
private get resolvedForUser();
|
|
2082
|
-
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService);
|
|
2085
|
+
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, cdr: ChangeDetectorRef);
|
|
2083
2086
|
ngOnInit(): Promise<void>;
|
|
2084
2087
|
private loadProfessionTaxonomy;
|
|
2085
2088
|
openCustomProfessionForm(context?: 'top' | 'form'): void;
|
|
@@ -2098,6 +2101,7 @@ declare class CertificationComponent {
|
|
|
2098
2101
|
getstates(): void;
|
|
2099
2102
|
onPreferredDateChange(date: Date): void;
|
|
2100
2103
|
saveFile(): void;
|
|
2104
|
+
getProfessionDisplayName(exp: any): string;
|
|
2101
2105
|
edit(index: number): void;
|
|
2102
2106
|
delete(index: number): void;
|
|
2103
2107
|
selectFile(event: any): void;
|
|
@@ -2256,6 +2260,7 @@ declare class SkillsComponent {
|
|
|
2256
2260
|
private roleContextService;
|
|
2257
2261
|
store: CredentialingStore;
|
|
2258
2262
|
private tokenService;
|
|
2263
|
+
private cdr;
|
|
2259
2264
|
private userSkillsSub?;
|
|
2260
2265
|
providerId: string;
|
|
2261
2266
|
providerName: string;
|
|
@@ -2265,6 +2270,7 @@ declare class SkillsComponent {
|
|
|
2265
2270
|
tab: FormArray;
|
|
2266
2271
|
showLoading: boolean;
|
|
2267
2272
|
showLoader: boolean;
|
|
2273
|
+
deletingSkillKey: i0.WritableSignal<string | null>;
|
|
2268
2274
|
userSkillSetModel: UserSkillSetModel;
|
|
2269
2275
|
skillSetModel: any;
|
|
2270
2276
|
userSkillSetModels: any[];
|
|
@@ -2319,7 +2325,7 @@ declare class SkillsComponent {
|
|
|
2319
2325
|
private customProfessionTargetGroup;
|
|
2320
2326
|
private professionService;
|
|
2321
2327
|
skillDetailList?: ElementRef;
|
|
2322
|
-
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userProfessionService: UserProfessionService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
2328
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userProfessionService: UserProfessionService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService, cdr: ChangeDetectorRef);
|
|
2323
2329
|
private get resolvedForUser();
|
|
2324
2330
|
private markTabPristine;
|
|
2325
2331
|
goToAddSkillsMode(): void;
|
|
@@ -2415,6 +2421,7 @@ declare class LicensesComponent {
|
|
|
2415
2421
|
cloudfront: any;
|
|
2416
2422
|
proposalLoader: boolean;
|
|
2417
2423
|
showSuccess: i0.WritableSignal<boolean>;
|
|
2424
|
+
deletingIndex: i0.WritableSignal<number | null>;
|
|
2418
2425
|
manualTypeError: string;
|
|
2419
2426
|
showpreview: i0.Signal<boolean>;
|
|
2420
2427
|
userdata: any;
|
|
@@ -2521,6 +2528,7 @@ declare class ToolsComponent {
|
|
|
2521
2528
|
private roleContextService;
|
|
2522
2529
|
private userDetailService;
|
|
2523
2530
|
private professionService;
|
|
2531
|
+
private cdr;
|
|
2524
2532
|
private libConfig;
|
|
2525
2533
|
roleData: any;
|
|
2526
2534
|
providerId: any;
|
|
@@ -2585,7 +2593,7 @@ declare class ToolsComponent {
|
|
|
2585
2593
|
userdata: any;
|
|
2586
2594
|
signatureUrl: any;
|
|
2587
2595
|
signatureFileId: any;
|
|
2588
|
-
constructor(toolService: ToolService, userToolService: UserToolService, userProfessionService: UserProfessionService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, professionService: ProfessionService, libConfig: LibraryConfig);
|
|
2596
|
+
constructor(toolService: ToolService, userToolService: UserToolService, userProfessionService: UserProfessionService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, professionService: ProfessionService, cdr: ChangeDetectorRef, libConfig: LibraryConfig);
|
|
2589
2597
|
private get resolvedForUser();
|
|
2590
2598
|
ngOnInit(): Promise<void>;
|
|
2591
2599
|
loadUserProfessionOptions(): void;
|
|
@@ -2594,6 +2602,7 @@ declare class ToolsComponent {
|
|
|
2594
2602
|
AddGroup(toolId: null, toolName: string): UntypedFormGroup;
|
|
2595
2603
|
setDefault(): void;
|
|
2596
2604
|
removeTab(index: number, toolId: string | undefined): void;
|
|
2605
|
+
deletingToolKey: i0.WritableSignal<string | null>;
|
|
2597
2606
|
deleteToolFromPreview(tool: any, event: Event): void;
|
|
2598
2607
|
initialData(): void;
|
|
2599
2608
|
getYears(): void;
|
|
@@ -3009,6 +3018,7 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
3009
3018
|
cloudfront: any;
|
|
3010
3019
|
proposalLoader: boolean;
|
|
3011
3020
|
showSuccess: i0.WritableSignal<boolean>;
|
|
3021
|
+
deletingIndex: i0.WritableSignal<number | null>;
|
|
3012
3022
|
showpreview: i0.Signal<boolean>;
|
|
3013
3023
|
userdata: any;
|
|
3014
3024
|
constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, roleContextService: RoleContextService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|