@idsoftsource/initial-process 2.9.3 → 2.9.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
|
@@ -997,6 +997,7 @@ interface AppBranding {
|
|
|
997
997
|
}
|
|
998
998
|
declare class InitialProcessComponent implements OnInit {
|
|
999
999
|
private router;
|
|
1000
|
+
private route;
|
|
1000
1001
|
private userDetailService;
|
|
1001
1002
|
private formBuilder;
|
|
1002
1003
|
private fileService;
|
|
@@ -1135,7 +1136,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1135
1136
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
1136
1137
|
isLoadingSubCategories: boolean;
|
|
1137
1138
|
appBrandingMap: Record<string, AppBranding>;
|
|
1138
|
-
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService, credStore: CredentialingStore, libConfig: LibraryConfig);
|
|
1139
|
+
constructor(router: Router, route: ActivatedRoute, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService, credStore: CredentialingStore, libConfig: LibraryConfig);
|
|
1139
1140
|
selectedContract: any;
|
|
1140
1141
|
changeContractor(event?: any[]): void;
|
|
1141
1142
|
selectAll(event: any, items: any[]): void;
|
|
@@ -3460,7 +3461,7 @@ interface SkillToolEditorData {
|
|
|
3460
3461
|
notes: string;
|
|
3461
3462
|
}
|
|
3462
3463
|
|
|
3463
|
-
declare class PreviewComponent {
|
|
3464
|
+
declare class PreviewComponent implements OnDestroy {
|
|
3464
3465
|
store: CredentialingStore;
|
|
3465
3466
|
private fileService;
|
|
3466
3467
|
private userSkillSetService;
|
|
@@ -3586,6 +3587,7 @@ declare class PreviewComponent {
|
|
|
3586
3587
|
email: any;
|
|
3587
3588
|
expYears: number[];
|
|
3588
3589
|
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
3590
|
+
ngOnDestroy(): void;
|
|
3589
3591
|
ngOnInit(): Promise<void>;
|
|
3590
3592
|
experience: i0.Signal<WorkExperience$1[]>;
|
|
3591
3593
|
educationList: i0.Signal<Education$1[]>;
|
|
@@ -4015,10 +4017,24 @@ declare class MustChangePasswordComponent {
|
|
|
4015
4017
|
submitted: boolean;
|
|
4016
4018
|
isLoading: boolean;
|
|
4017
4019
|
errorMessage: string;
|
|
4020
|
+
passwordTouched: boolean;
|
|
4021
|
+
passwordRules: {
|
|
4022
|
+
minLength: boolean;
|
|
4023
|
+
uppercase: boolean;
|
|
4024
|
+
number: boolean;
|
|
4025
|
+
specialChar: boolean;
|
|
4026
|
+
};
|
|
4027
|
+
strengthScore: number;
|
|
4028
|
+
strengthLabel: string;
|
|
4029
|
+
strengthColor: string;
|
|
4030
|
+
private strengthMeta;
|
|
4018
4031
|
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService);
|
|
4019
4032
|
get f(): {
|
|
4020
4033
|
[key: string]: AbstractControl;
|
|
4021
4034
|
};
|
|
4035
|
+
private evaluatePasswordStrength;
|
|
4036
|
+
isSegmentFilled(index: number): boolean;
|
|
4037
|
+
get isSubmitDisabled(): boolean;
|
|
4022
4038
|
passwordMatchValidator(form: AbstractControl): {
|
|
4023
4039
|
mismatch: boolean;
|
|
4024
4040
|
} | null;
|