@idsoftsource/initial-process 1.5.5 → 1.5.7
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
|
@@ -824,8 +824,8 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
824
824
|
handleSignatureAndMoveToNext(): Promise<void>;
|
|
825
825
|
saveSignatureAndIncrement(): Promise<boolean>;
|
|
826
826
|
private dataURLtoFile;
|
|
827
|
-
uploadFileBrowseHandler(): void
|
|
828
|
-
saveAWSLogo(): Promise<
|
|
827
|
+
uploadFileBrowseHandler(): Promise<void>;
|
|
828
|
+
saveAWSLogo(): Promise<boolean>;
|
|
829
829
|
formatPhone(event: any, form: FormGroup): void;
|
|
830
830
|
saveAWSHeadShot(): Promise<void>;
|
|
831
831
|
saveAWSSignature(): Promise<void>;
|
|
@@ -2319,6 +2319,8 @@ declare class FirstComponent implements OnInit {
|
|
|
2319
2319
|
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
2320
2320
|
backToParent: EventEmitter<void>;
|
|
2321
2321
|
userId: any;
|
|
2322
|
+
isDragOver: boolean;
|
|
2323
|
+
uploadError: string | null;
|
|
2322
2324
|
sample: {
|
|
2323
2325
|
basicDetails: {
|
|
2324
2326
|
firstName: string;
|
|
@@ -2402,6 +2404,11 @@ declare class FirstComponent implements OnInit {
|
|
|
2402
2404
|
manual(): void;
|
|
2403
2405
|
private saveAWSFile;
|
|
2404
2406
|
uploadresume(): void;
|
|
2407
|
+
private isAllowedResumeFile;
|
|
2408
|
+
private processSelectedResumeFile;
|
|
2409
|
+
onDragOver(event: DragEvent): void;
|
|
2410
|
+
onDragLeave(event: DragEvent): void;
|
|
2411
|
+
onDrop(event: DragEvent): void;
|
|
2405
2412
|
onBackClick(): void;
|
|
2406
2413
|
static ɵfac: i0.ɵɵFactoryDeclaration<FirstComponent, never>;
|
|
2407
2414
|
static ɵcmp: i0.ɵɵComponentDeclaration<FirstComponent, "app-first", never, {}, { "backToParent": "backToParent"; "nextStep": "nextStep"; }, never, never, false, never>;
|
|
@@ -2429,6 +2436,16 @@ declare class PreviewComponent {
|
|
|
2429
2436
|
private libConfig;
|
|
2430
2437
|
providerId: string;
|
|
2431
2438
|
useremail: any;
|
|
2439
|
+
readonly educationDegreeTypeOptions: string[];
|
|
2440
|
+
readonly monthPickerConfig: {
|
|
2441
|
+
minMode: string;
|
|
2442
|
+
adaptivePosition: boolean;
|
|
2443
|
+
showWeekNumbers: boolean;
|
|
2444
|
+
isAnimated: boolean;
|
|
2445
|
+
dateInputFormat: string;
|
|
2446
|
+
containerClass: string;
|
|
2447
|
+
};
|
|
2448
|
+
maxDate: Date;
|
|
2432
2449
|
providerName: string;
|
|
2433
2450
|
roleData: any;
|
|
2434
2451
|
backToParent: EventEmitter<void>;
|
|
@@ -2461,6 +2478,7 @@ declare class PreviewComponent {
|
|
|
2461
2478
|
licenseLocallySaved: Record<number, boolean>;
|
|
2462
2479
|
skillLocallySaved: Record<number, boolean>;
|
|
2463
2480
|
toolLocallySaved: Record<number, boolean>;
|
|
2481
|
+
private readonly monthDateCache;
|
|
2464
2482
|
private readonly uploadFolderBySection;
|
|
2465
2483
|
resumeData: ResumeProfile | null;
|
|
2466
2484
|
statusList: any[];
|
|
@@ -2522,6 +2540,14 @@ declare class PreviewComponent {
|
|
|
2522
2540
|
private appendToMainModel;
|
|
2523
2541
|
private updateInMainModel;
|
|
2524
2542
|
private toMonthInput;
|
|
2543
|
+
monthInputToDate(value: string | null | undefined): Date | null;
|
|
2544
|
+
private dateToMonthInput;
|
|
2545
|
+
setTempJobMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
2546
|
+
setTempCertificationMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
2547
|
+
setTempLicenseMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
2548
|
+
setTempEducationMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
2549
|
+
confirmAllCertifications(): Promise<void>;
|
|
2550
|
+
confirmAllLicenses(): Promise<void>;
|
|
2525
2551
|
private buildSectionQuery;
|
|
2526
2552
|
private buildUserName;
|
|
2527
2553
|
private getCreatedId;
|
|
@@ -2590,6 +2616,8 @@ declare class PreviewComponent {
|
|
|
2590
2616
|
addTool(): void;
|
|
2591
2617
|
closeToolEditor(): void;
|
|
2592
2618
|
setTempToolStars(stars: number): void;
|
|
2619
|
+
confirmAllSkills(): Promise<void>;
|
|
2620
|
+
confirmAllTools(): Promise<void>;
|
|
2593
2621
|
saveToolEditor(): Promise<void>;
|
|
2594
2622
|
private reindexToolMetaAfterDelete;
|
|
2595
2623
|
deleteTool(index: number): void;
|