@idsoftsource/initial-process 3.1.8 → 3.2.0
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
|
@@ -779,6 +779,8 @@ interface CompanyDetails {
|
|
|
779
779
|
county?: string;
|
|
780
780
|
logoId?: string;
|
|
781
781
|
logoUrl?: string;
|
|
782
|
+
latitude?: number | null;
|
|
783
|
+
longitude?: number | null;
|
|
782
784
|
logoFileName?: string;
|
|
783
785
|
}
|
|
784
786
|
interface ResumeProfile {
|
|
@@ -813,6 +815,8 @@ interface BasicDetails {
|
|
|
813
815
|
jobTitle: string;
|
|
814
816
|
yearsOfExperience: number;
|
|
815
817
|
summary: string;
|
|
818
|
+
latitude?: number | null;
|
|
819
|
+
longitude?: number | null;
|
|
816
820
|
}
|
|
817
821
|
/**
|
|
818
822
|
* Details regarding professional work history.
|
|
@@ -1186,8 +1190,12 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1186
1190
|
};
|
|
1187
1191
|
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
1188
1192
|
onCompanyAddressResolved(address: GoogleAddressResult): void;
|
|
1193
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
1194
|
+
onCompanyAddressManualEdit(): void;
|
|
1189
1195
|
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
1190
1196
|
onUserAddressResolved(address: GoogleAddressResult): void;
|
|
1197
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
1198
|
+
onUserAddressManualEdit(): void;
|
|
1191
1199
|
previous(): void;
|
|
1192
1200
|
next(page?: number): void;
|
|
1193
1201
|
handleSignatureAndMoveToNext(): Promise<void>;
|
|
@@ -1993,6 +2001,9 @@ declare class CertificationComponent {
|
|
|
1993
2001
|
isEditing: i0.WritableSignal<boolean>;
|
|
1994
2002
|
searchControl: FormControl<string | null>;
|
|
1995
2003
|
documentTypes: any[];
|
|
2004
|
+
docTypeChipsRef?: ElementRef<HTMLElement>;
|
|
2005
|
+
/** id of the chip whose popover doesn't have room to open upward within the scroll container, so it opens downward instead. */
|
|
2006
|
+
flippedChipId: string | null;
|
|
1996
2007
|
userId: any;
|
|
1997
2008
|
selectedDocument: {
|
|
1998
2009
|
id: string | null;
|
|
@@ -2027,6 +2038,13 @@ declare class CertificationComponent {
|
|
|
2027
2038
|
loadDocumentTypes(searchText?: string): void;
|
|
2028
2039
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
2029
2040
|
isChecked(id: string): boolean;
|
|
2041
|
+
/**
|
|
2042
|
+
* The popover normally opens upward. Chips near the top of the scrollable
|
|
2043
|
+
* .doc-type-chips list don't have room above them within the clipped
|
|
2044
|
+
* container, so the popover gets cut off there — flip it to open
|
|
2045
|
+
* downward for just that chip instead.
|
|
2046
|
+
*/
|
|
2047
|
+
onChipMouseEnter(event: MouseEvent, item: any): void;
|
|
2030
2048
|
toggleSelection(item: any, event: Event): void;
|
|
2031
2049
|
getstates(): void;
|
|
2032
2050
|
onPreferredDateChange(date: Date): void;
|
|
@@ -2433,6 +2451,9 @@ declare class ToolsComponent {
|
|
|
2433
2451
|
selectedProfessionId: string | null;
|
|
2434
2452
|
selectedProfessionValue: string;
|
|
2435
2453
|
toolDetailList?: ElementRef;
|
|
2454
|
+
toolChipsWrapperRef?: ElementRef<HTMLElement>;
|
|
2455
|
+
/** id of the tool chip whose popover doesn't have room to open upward within the scroll container, so it opens downward instead. */
|
|
2456
|
+
flippedToolChipId: string | null;
|
|
2436
2457
|
userDetails: any;
|
|
2437
2458
|
userdata: any;
|
|
2438
2459
|
signatureUrl: any;
|
|
@@ -2458,6 +2479,15 @@ declare class ToolsComponent {
|
|
|
2458
2479
|
setCopyToAllTabs(index: number, group: any, viewTab: boolean): void;
|
|
2459
2480
|
onChangeCategory(obj: any): void;
|
|
2460
2481
|
private scrollToDetailList;
|
|
2482
|
+
/**
|
|
2483
|
+
* The popover normally opens upward. Chips near the top of the scrollable
|
|
2484
|
+
* .tool-chips-wrapper list don't have room above them within the clipped
|
|
2485
|
+
* container, so the popover gets cut off there — flip it to open
|
|
2486
|
+
* downward for just that chip instead.
|
|
2487
|
+
*/
|
|
2488
|
+
onToolChipMouseEnter(event: MouseEvent, tool: {
|
|
2489
|
+
id: string | undefined;
|
|
2490
|
+
}): void;
|
|
2461
2491
|
onSelectedTools(event: {
|
|
2462
2492
|
target: {
|
|
2463
2493
|
checked: boolean;
|
|
@@ -2525,6 +2555,8 @@ interface CompanyFormControls {
|
|
|
2525
2555
|
zipcode: FormControl<string | null>;
|
|
2526
2556
|
country: FormControl<string | null>;
|
|
2527
2557
|
county: FormControl<string | null>;
|
|
2558
|
+
latitude: FormControl<any | null>;
|
|
2559
|
+
longitude: FormControl<any | null>;
|
|
2528
2560
|
}
|
|
2529
2561
|
declare class RoleSelectComponent implements OnInit {
|
|
2530
2562
|
store: CredentialingStore;
|
|
@@ -2639,6 +2671,8 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2639
2671
|
zipcode: string | null | undefined;
|
|
2640
2672
|
country: string | null | undefined;
|
|
2641
2673
|
county: string | null | undefined;
|
|
2674
|
+
latitude: any;
|
|
2675
|
+
longitude: any;
|
|
2642
2676
|
phoneNumber: string | null | undefined;
|
|
2643
2677
|
userAddress1: string | null | undefined;
|
|
2644
2678
|
userAddress2: string | null | undefined;
|
|
@@ -2658,6 +2692,8 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2658
2692
|
saveProvider(): Promise<string | null>;
|
|
2659
2693
|
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
2660
2694
|
onCompanyAddressResolved(address: GoogleAddressResult): void;
|
|
2695
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
2696
|
+
onCompanyAddressManualEdit(): void;
|
|
2661
2697
|
saveUserIndustries(): void;
|
|
2662
2698
|
setSelectedIndustries(ids: string[]): void;
|
|
2663
2699
|
onBackClick(): void;
|
|
@@ -2687,6 +2723,8 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2687
2723
|
phoneMask(event: Event, formType?: 'user' | 'company'): void;
|
|
2688
2724
|
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
2689
2725
|
onUserAddressResolved(address: GoogleAddressResult): void;
|
|
2726
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
2727
|
+
onUserAddressManualEdit(): void;
|
|
2690
2728
|
back(): void;
|
|
2691
2729
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectComponent, never>;
|
|
2692
2730
|
static ɵcmp: i0.ɵɵComponentDeclaration<RoleSelectComponent, "app-role-select", never, { "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, { "backToParent": "backToParent"; "providerSaved": "providerSaved"; }, never, never, false, never>;
|
|
@@ -3772,8 +3810,8 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3772
3810
|
zipcode: any;
|
|
3773
3811
|
county: string;
|
|
3774
3812
|
country: any;
|
|
3775
|
-
latitude:
|
|
3776
|
-
longitude:
|
|
3813
|
+
latitude: any;
|
|
3814
|
+
longitude: any;
|
|
3777
3815
|
yearsActive: number;
|
|
3778
3816
|
isInitialSetupCompleted: boolean;
|
|
3779
3817
|
id: any;
|
|
@@ -3806,8 +3844,8 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3806
3844
|
zipcode: any;
|
|
3807
3845
|
county: string;
|
|
3808
3846
|
country: any;
|
|
3809
|
-
latitude:
|
|
3810
|
-
longitude:
|
|
3847
|
+
latitude: any;
|
|
3848
|
+
longitude: any;
|
|
3811
3849
|
yearsActive: number;
|
|
3812
3850
|
isInitialSetupCompleted: boolean;
|
|
3813
3851
|
id: any;
|
|
@@ -3841,8 +3879,8 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3841
3879
|
zipcode: any;
|
|
3842
3880
|
county: string;
|
|
3843
3881
|
country: any;
|
|
3844
|
-
latitude:
|
|
3845
|
-
longitude:
|
|
3882
|
+
latitude: any;
|
|
3883
|
+
longitude: any;
|
|
3846
3884
|
yearsActive: number;
|
|
3847
3885
|
isInitialSetupCompleted: boolean;
|
|
3848
3886
|
id: any;
|
|
@@ -3886,6 +3924,8 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3886
3924
|
zipcode: any;
|
|
3887
3925
|
country: any;
|
|
3888
3926
|
county: any;
|
|
3927
|
+
latitude: any;
|
|
3928
|
+
longitude: any;
|
|
3889
3929
|
phoneNumber: any;
|
|
3890
3930
|
userAddress1: string | undefined;
|
|
3891
3931
|
userAddress2: string;
|
|
@@ -3907,10 +3947,14 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3907
3947
|
saveCompanyDetails(): Promise<void>;
|
|
3908
3948
|
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
3909
3949
|
onCompanyAddressResolved(address: GoogleAddressResult): void;
|
|
3950
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
3951
|
+
onCompanyAddressManualEdit(): void;
|
|
3910
3952
|
phoneMask(event: Event, type: 'profile' | 'company'): void;
|
|
3911
3953
|
formatPhone(phone: string): string;
|
|
3912
3954
|
/** address itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
3913
3955
|
onUserAddressResolved(address: GoogleAddressResult): void;
|
|
3956
|
+
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
3957
|
+
onUserAddressManualEdit(): void;
|
|
3914
3958
|
allowOnlyNumbers(event: KeyboardEvent): void;
|
|
3915
3959
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
3916
3960
|
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "isResume": { "alias": "isResume"; "required": false; }; "resumeModel": { "alias": "resumeModel"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; "signatureFileId": { "alias": "signatureFileId"; "required": false; }; "signatureUrl": { "alias": "signatureUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, true, never>;
|
|
@@ -4007,6 +4051,7 @@ declare class AddressVerifyFieldComponent implements ControlValueAccessor {
|
|
|
4007
4051
|
mapPickerVisible: boolean;
|
|
4008
4052
|
private lastResolvedLat;
|
|
4009
4053
|
private lastResolvedLng;
|
|
4054
|
+
private hasHydrated;
|
|
4010
4055
|
private onChange;
|
|
4011
4056
|
private onTouched;
|
|
4012
4057
|
writeValue(value: string): void;
|