@idsoftsource/initial-process 2.3.2 → 2.3.4
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
|
@@ -1201,7 +1201,7 @@ declare class CredentialingStore {
|
|
|
1201
1201
|
private loadFromStorage;
|
|
1202
1202
|
clearStorage(): void;
|
|
1203
1203
|
toolsList: i0.WritableSignal<Tool[]>;
|
|
1204
|
-
uploadOption: i0.WritableSignal<"
|
|
1204
|
+
uploadOption: i0.WritableSignal<"upload" | "manual" | null>;
|
|
1205
1205
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
1206
1206
|
licenses: i0.WritableSignal<License[]>;
|
|
1207
1207
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -1234,6 +1234,12 @@ declare class CredentialingStore {
|
|
|
1234
1234
|
notApplicable: i0.WritableSignal<boolean>;
|
|
1235
1235
|
selectedStates: i0.WritableSignal<string[]>;
|
|
1236
1236
|
isUploadSuccess: i0.WritableSignal<string | null>;
|
|
1237
|
+
uploadedResumeFile: i0.WritableSignal<{
|
|
1238
|
+
name: string;
|
|
1239
|
+
size: number;
|
|
1240
|
+
lastModified: number;
|
|
1241
|
+
} | null>;
|
|
1242
|
+
setUploadedResumeFile(file: File): void;
|
|
1237
1243
|
profileSignal: i0.WritableSignal<ResumeProfile | null>;
|
|
1238
1244
|
resumeSkillMeta: i0.WritableSignal<Record<number, ResumeSkillMeta>>;
|
|
1239
1245
|
resumeToolMeta: i0.WritableSignal<Record<number, ResumeToolMeta>>;
|
|
@@ -2355,7 +2361,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2355
2361
|
hhmmtt: string;
|
|
2356
2362
|
};
|
|
2357
2363
|
removeRole(role: string): void;
|
|
2358
|
-
phoneMask(event: Event): void;
|
|
2364
|
+
phoneMask(event: Event, formType?: 'user' | 'company'): void;
|
|
2359
2365
|
AddressChangeUser(address: any): void;
|
|
2360
2366
|
back(): void;
|
|
2361
2367
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectComponent, never>;
|
|
@@ -3286,6 +3292,7 @@ declare class PreviewComponent {
|
|
|
3286
3292
|
private isBlank;
|
|
3287
3293
|
private isBlankOrNull;
|
|
3288
3294
|
sanitizePhone(value: string | null | undefined): string;
|
|
3295
|
+
getDigitCount(value: string | null | undefined): number;
|
|
3289
3296
|
sanitizeZipCode(value: string | null | undefined): string;
|
|
3290
3297
|
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
3291
3298
|
private compareMonth;
|
|
@@ -3481,6 +3488,7 @@ declare class PreviewComponent {
|
|
|
3481
3488
|
private revokeObjectUrl;
|
|
3482
3489
|
previewSelectedFile(item: any): void;
|
|
3483
3490
|
private get isProviderRole();
|
|
3491
|
+
get hasRoleContextUserId(): boolean;
|
|
3484
3492
|
private get effectiveProviderName();
|
|
3485
3493
|
private get effectiveTargetProviderId();
|
|
3486
3494
|
mapBasicDetailsToUserDetail(data: any): {
|