@idsoftsource/initial-process 1.4.2 → 1.4.3
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
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { InjectionToken, OnInit, ElementRef, EventEmitter, TemplateRef, Injector, OnChanges, AfterViewInit, ChangeDetectorRef, SimpleChanges, ViewContainerRef, OnDestroy, ComponentFactoryResolver, Renderer2, ModuleWithProviders, PipeTransform, NgZone } from '@angular/core';
|
|
3
3
|
import * as _angular_forms from '@angular/forms';
|
|
4
4
|
import { FormGroup, FormBuilder, FormControl, FormArray, UntypedFormGroup, UntypedFormBuilder, ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
5
|
-
import * as
|
|
5
|
+
import * as i18 from '@angular/router';
|
|
6
6
|
import { Router, RouterOutlet } from '@angular/router';
|
|
7
7
|
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
|
|
@@ -11,12 +11,12 @@ import { AuthService } from '@auth0/auth0-angular';
|
|
|
11
11
|
import { HttpClient } from '@angular/common/http';
|
|
12
12
|
import * as i2 from '@angular/common';
|
|
13
13
|
import { ViewportScroller } from '@angular/common';
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
14
|
+
import * as i20 from '@ng-select/ng-select';
|
|
15
|
+
import * as i21 from 'ngx-bootstrap/datepicker';
|
|
16
|
+
import * as i26 from 'ngx-bootstrap/tooltip';
|
|
17
|
+
import * as i27 from 'ngx-bootstrap/tabs';
|
|
18
|
+
import * as i28 from 'ngx-bootstrap/accordion';
|
|
19
|
+
import * as i30 from '@angular/google-maps';
|
|
20
20
|
|
|
21
21
|
interface MasterModel {
|
|
22
22
|
}
|
|
@@ -2399,6 +2399,206 @@ declare class FirstComponent implements OnInit {
|
|
|
2399
2399
|
static ɵcmp: i0.ɵɵComponentDeclaration<FirstComponent, "app-first", never, {}, { "backToParent": "backToParent"; "nextStep": "nextStep"; }, never, never, false, never>;
|
|
2400
2400
|
}
|
|
2401
2401
|
|
|
2402
|
+
interface SkillToolEditorData {
|
|
2403
|
+
name: string;
|
|
2404
|
+
providerName: string;
|
|
2405
|
+
stars: number;
|
|
2406
|
+
year: number | null;
|
|
2407
|
+
profileVisibility: boolean;
|
|
2408
|
+
notes: string;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
declare class PreviewComponent {
|
|
2412
|
+
store: CredentialingStore;
|
|
2413
|
+
private userSkillSetService;
|
|
2414
|
+
private userToolService;
|
|
2415
|
+
userDocumentService: UserDocumentService;
|
|
2416
|
+
userEducation: UserEducationService;
|
|
2417
|
+
private userDetailService;
|
|
2418
|
+
userExperienceService: UserExperienceService;
|
|
2419
|
+
private router;
|
|
2420
|
+
private tokenService;
|
|
2421
|
+
backToParent: EventEmitter<void>;
|
|
2422
|
+
payloadUserId: any;
|
|
2423
|
+
payloadUserName: any;
|
|
2424
|
+
resumeData: ResumeProfile | null;
|
|
2425
|
+
statusList: any[];
|
|
2426
|
+
showPopup: boolean;
|
|
2427
|
+
showBackConfirmPopup: boolean;
|
|
2428
|
+
userId: any;
|
|
2429
|
+
userName: any;
|
|
2430
|
+
constructor(store: CredentialingStore, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, router: Router, tokenService: TokenService);
|
|
2431
|
+
email: any;
|
|
2432
|
+
expYears: number[];
|
|
2433
|
+
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
2434
|
+
ngOnInit(): Promise<void>;
|
|
2435
|
+
experience: i0.Signal<WorkExperience$1[]>;
|
|
2436
|
+
educationList: i0.Signal<Education$1[]>;
|
|
2437
|
+
certs: i0.Signal<Certification$3[]>;
|
|
2438
|
+
licenses: i0.Signal<License$1[]>;
|
|
2439
|
+
skills: i0.Signal<string[]>;
|
|
2440
|
+
tools: i0.Signal<string[]>;
|
|
2441
|
+
private isBlank;
|
|
2442
|
+
private isBlankOrNull;
|
|
2443
|
+
sanitizePhone(value: string | null | undefined): string;
|
|
2444
|
+
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
2445
|
+
private compareMonth;
|
|
2446
|
+
private prefillSectionFieldsFromBasicDetails;
|
|
2447
|
+
private basicDetailsIssues;
|
|
2448
|
+
private workItemIssues;
|
|
2449
|
+
private educationItemIssues;
|
|
2450
|
+
private certificationItemIssues;
|
|
2451
|
+
private licenseItemIssues;
|
|
2452
|
+
private skillItemIssues;
|
|
2453
|
+
private toolItemIssues;
|
|
2454
|
+
basicIssues: i0.Signal<string[]>;
|
|
2455
|
+
basicSectionHasIssues: i0.Signal<boolean>;
|
|
2456
|
+
workIssuesByIndex: i0.Signal<string[][]>;
|
|
2457
|
+
educationIssuesByIndex: i0.Signal<string[][]>;
|
|
2458
|
+
certIssuesByIndex: i0.Signal<string[][]>;
|
|
2459
|
+
licenseIssuesByIndex: i0.Signal<string[][]>;
|
|
2460
|
+
skillIssuesByIndex: i0.Signal<string[][]>;
|
|
2461
|
+
toolIssuesByIndex: i0.Signal<string[][]>;
|
|
2462
|
+
skillFormIssues: i0.Signal<string[]>;
|
|
2463
|
+
toolFormIssues: i0.Signal<string[]>;
|
|
2464
|
+
workSectionHasIssues: i0.Signal<boolean>;
|
|
2465
|
+
educationSectionHasIssues: i0.Signal<boolean>;
|
|
2466
|
+
certificationsSectionHasIssues: i0.Signal<boolean>;
|
|
2467
|
+
licensesSectionHasIssues: i0.Signal<boolean>;
|
|
2468
|
+
skillsSectionHasIssues: i0.Signal<boolean>;
|
|
2469
|
+
toolsSectionHasIssues: i0.Signal<boolean>;
|
|
2470
|
+
canConfirmAndContinue: i0.Signal<boolean>;
|
|
2471
|
+
expandedIndex: i0.WritableSignal<number>;
|
|
2472
|
+
toggleJob(index: number): void;
|
|
2473
|
+
private commitProfile;
|
|
2474
|
+
private appendToMainModel;
|
|
2475
|
+
private updateInMainModel;
|
|
2476
|
+
private toMonthInput;
|
|
2477
|
+
formatMonthYear(value: string | null | undefined): string;
|
|
2478
|
+
private confirmDelete;
|
|
2479
|
+
private jobEditor;
|
|
2480
|
+
isAddingJob(): boolean;
|
|
2481
|
+
editingJobIndex(): number | null;
|
|
2482
|
+
tempJob(): WorkExperience$1 | null;
|
|
2483
|
+
addJob(): void;
|
|
2484
|
+
startEditJob(jobIndex: number): void;
|
|
2485
|
+
cancelEditJob(): void;
|
|
2486
|
+
saveEditJob(): void;
|
|
2487
|
+
deleteJob(index: number): void;
|
|
2488
|
+
updateTempResponsibilities(value: string): void;
|
|
2489
|
+
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
2490
|
+
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
2491
|
+
private skillEditor;
|
|
2492
|
+
isSkillEditorOpen(): boolean;
|
|
2493
|
+
isAddingSkill(): boolean;
|
|
2494
|
+
editingSkillIndex(): number | null;
|
|
2495
|
+
skillForm(): SkillToolEditorData | null;
|
|
2496
|
+
patchSkillForm(patch: Partial<SkillToolEditorData>): void;
|
|
2497
|
+
openSkillEditor(index: number): void;
|
|
2498
|
+
addSkill(): void;
|
|
2499
|
+
closeSkillEditor(): void;
|
|
2500
|
+
setTempSkillStars(stars: number): void;
|
|
2501
|
+
saveSkillEditor(): void;
|
|
2502
|
+
private reindexSkillMetaAfterDelete;
|
|
2503
|
+
deleteSkill(index: number): void;
|
|
2504
|
+
private toolEditor;
|
|
2505
|
+
isToolEditorOpen(): boolean;
|
|
2506
|
+
isAddingTool(): boolean;
|
|
2507
|
+
editingToolIndex(): number | null;
|
|
2508
|
+
toolForm(): SkillToolEditorData | null;
|
|
2509
|
+
patchToolForm(patch: Partial<SkillToolEditorData>): void;
|
|
2510
|
+
openToolEditor(index: number): void;
|
|
2511
|
+
addTool(): void;
|
|
2512
|
+
closeToolEditor(): void;
|
|
2513
|
+
setTempToolStars(stars: number): void;
|
|
2514
|
+
saveToolEditor(): void;
|
|
2515
|
+
private reindexToolMetaAfterDelete;
|
|
2516
|
+
deleteTool(index: number): void;
|
|
2517
|
+
private certificationEditor;
|
|
2518
|
+
isAddingCertification(): boolean;
|
|
2519
|
+
editingCertificationIndex(): number | null;
|
|
2520
|
+
tempCertification(): Certification$3 | null;
|
|
2521
|
+
private normalizeNullableString;
|
|
2522
|
+
private normalizeMonthInput;
|
|
2523
|
+
addCertification(): void;
|
|
2524
|
+
startEditCertification(index: number): void;
|
|
2525
|
+
cancelEditCertification(): void;
|
|
2526
|
+
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
2527
|
+
saveCertificationEditor(): void;
|
|
2528
|
+
deleteCertification(index: number): void;
|
|
2529
|
+
private licenseEditor;
|
|
2530
|
+
isAddingLicense(): boolean;
|
|
2531
|
+
editingLicenseIndex(): number | null;
|
|
2532
|
+
tempLicense(): License$1 | null;
|
|
2533
|
+
addLicense(): void;
|
|
2534
|
+
startEditLicense(index: number): void;
|
|
2535
|
+
cancelEditLicense(): void;
|
|
2536
|
+
patchTempLicense(patch: Partial<License$1>): void;
|
|
2537
|
+
saveLicenseEditor(): void;
|
|
2538
|
+
deleteLicense(index: number): void;
|
|
2539
|
+
private educationEditor;
|
|
2540
|
+
isAddingEducation(): boolean;
|
|
2541
|
+
editingEducationIndex(): number | null;
|
|
2542
|
+
tempEducation(): Education$1 | null;
|
|
2543
|
+
addEducation(): void;
|
|
2544
|
+
startEditEducation(index: number): void;
|
|
2545
|
+
cancelEditEducation(): void;
|
|
2546
|
+
patchTempEducation(patch: Partial<Education$1>): void;
|
|
2547
|
+
saveEducation(): void;
|
|
2548
|
+
deleteEducation(index: number): void;
|
|
2549
|
+
onBackClick(): void;
|
|
2550
|
+
stayOnPreview(): void;
|
|
2551
|
+
closeSavePopup(): void;
|
|
2552
|
+
allSaveStepsSucceeded(): boolean;
|
|
2553
|
+
goToDashboard(): void;
|
|
2554
|
+
proceedBack(): void;
|
|
2555
|
+
tempProfile: BasicDetails;
|
|
2556
|
+
isEditMode: i0.WritableSignal<boolean>;
|
|
2557
|
+
toggleEdit(): void;
|
|
2558
|
+
cancel(): void;
|
|
2559
|
+
save(): void;
|
|
2560
|
+
saveResumedetails(): void;
|
|
2561
|
+
mapBasicDetailsToUserDetail(data: any): {
|
|
2562
|
+
providerName: string;
|
|
2563
|
+
providerId: string;
|
|
2564
|
+
UserRoleId: string;
|
|
2565
|
+
userDetail: {
|
|
2566
|
+
userBio: any;
|
|
2567
|
+
firstName: any;
|
|
2568
|
+
lastName: any;
|
|
2569
|
+
email: any;
|
|
2570
|
+
address1: any;
|
|
2571
|
+
address2: string;
|
|
2572
|
+
city: any;
|
|
2573
|
+
state: any;
|
|
2574
|
+
zipcode: any;
|
|
2575
|
+
county: string;
|
|
2576
|
+
country: any;
|
|
2577
|
+
latitude: null;
|
|
2578
|
+
longitude: null;
|
|
2579
|
+
yearsActive: number;
|
|
2580
|
+
isInitialSetupCompleted: boolean;
|
|
2581
|
+
id: any;
|
|
2582
|
+
phoneNumber: any;
|
|
2583
|
+
yearsOfExperince: any;
|
|
2584
|
+
userJobTitle: any[];
|
|
2585
|
+
timeZone: string;
|
|
2586
|
+
datePattern: string;
|
|
2587
|
+
dateTimePattern: string;
|
|
2588
|
+
timePattern: string;
|
|
2589
|
+
};
|
|
2590
|
+
};
|
|
2591
|
+
mapWorkExperience(data: any): any;
|
|
2592
|
+
mapEducation(data: any): any;
|
|
2593
|
+
mapCertifications(data: any): any;
|
|
2594
|
+
mapLicenses(data: any): any;
|
|
2595
|
+
mapSkills(data: any): any;
|
|
2596
|
+
mapTools(data: any): any;
|
|
2597
|
+
formatDate(date: string): string | null;
|
|
2598
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
2599
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, {}, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2402
2602
|
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|
|
2403
2603
|
private cdr;
|
|
2404
2604
|
private usMapService;
|
|
@@ -2938,7 +3138,7 @@ declare class CommonPipesModule {
|
|
|
2938
3138
|
|
|
2939
3139
|
declare class InitialProcessModule {
|
|
2940
3140
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
|
|
2941
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InitialProcessModule, [typeof InitialProcessComponent, typeof TermsConditionsComponent, typeof PrivacyPolicyComponent, typeof CredentialingComponent, typeof StepperComponent, typeof EducationComponent, typeof CertificationComponent, typeof SkillsComponent, typeof LicensesComponent, typeof ToolsComponent, typeof RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent, typeof FirstComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof
|
|
3141
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InitialProcessModule, [typeof InitialProcessComponent, typeof TermsConditionsComponent, typeof PrivacyPolicyComponent, typeof CredentialingComponent, typeof StepperComponent, typeof EducationComponent, typeof CertificationComponent, typeof SkillsComponent, typeof LicensesComponent, typeof ToolsComponent, typeof RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent, typeof FirstComponent, typeof PreviewComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i18.RouterModule, typeof UsMapModule, typeof i20.NgSelectModule, typeof i21.BsDatepickerModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i26.TooltipModule, typeof i27.TabsModule, typeof i28.AccordionModule, typeof GooglePlaceModule, typeof i30.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
|
|
2942
3142
|
static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
|
|
2943
3143
|
}
|
|
2944
3144
|
|