@idsoftsource/initial-process 1.6.8 → 1.7.1
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
|
@@ -3032,8 +3032,14 @@ declare class PreviewComponent {
|
|
|
3032
3032
|
dateInputFormat: string;
|
|
3033
3033
|
containerClass: string;
|
|
3034
3034
|
};
|
|
3035
|
+
futureMaxDate: Date;
|
|
3035
3036
|
maxDate: Date;
|
|
3036
3037
|
companyForm: NgForm;
|
|
3038
|
+
options: {
|
|
3039
|
+
componentRestrictions: {
|
|
3040
|
+
country: string[];
|
|
3041
|
+
};
|
|
3042
|
+
};
|
|
3037
3043
|
isResume: boolean;
|
|
3038
3044
|
resumeModel: ResumeProfile | null;
|
|
3039
3045
|
providerName: string;
|
|
@@ -3169,6 +3175,7 @@ declare class PreviewComponent {
|
|
|
3169
3175
|
confirmAllCertifications(): Promise<void>;
|
|
3170
3176
|
confirmAllLicenses(): Promise<void>;
|
|
3171
3177
|
private buildSectionQuery;
|
|
3178
|
+
private buildSectionForUserQuery;
|
|
3172
3179
|
private buildUserName;
|
|
3173
3180
|
private getCreatedId;
|
|
3174
3181
|
private getEntityId;
|
|
@@ -3435,6 +3442,11 @@ declare class PreviewComponent {
|
|
|
3435
3442
|
saveProvider(): Promise<void>;
|
|
3436
3443
|
validateCompanyDetails(): boolean;
|
|
3437
3444
|
saveCompanyDetails(): Promise<void>;
|
|
3445
|
+
AddressChangeCompany(address: any): void;
|
|
3446
|
+
phoneMask(event: Event, type: 'profile' | 'company'): void;
|
|
3447
|
+
formatPhone(phone: string): string;
|
|
3448
|
+
AddressChangeUser(address: any): void;
|
|
3449
|
+
allowOnlyNumbers(event: KeyboardEvent): void;
|
|
3438
3450
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
3439
3451
|
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; }; }, { "backToParent": "backToParent"; }, never, never, true, never>;
|
|
3440
3452
|
}
|