@idsoftsource/initial-process 1.0.2 → 1.0.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
|
@@ -673,6 +673,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
673
673
|
private roleContextService;
|
|
674
674
|
private libConfig;
|
|
675
675
|
isAgreeEnabled: boolean;
|
|
676
|
+
isLogoRequired: boolean;
|
|
676
677
|
logo: any;
|
|
677
678
|
private readonly uploadToAws;
|
|
678
679
|
selectedRoleValue: string | null;
|
|
@@ -815,6 +816,8 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
815
816
|
private dataURLtoFile;
|
|
816
817
|
uploadFileBrowseHandler(): void;
|
|
817
818
|
saveAWSLogo(): Promise<false | undefined>;
|
|
819
|
+
formatPhone(event: any, form: FormGroup): void;
|
|
820
|
+
uploadLogo(event: any): void;
|
|
818
821
|
saveAWSHeadShot(): Promise<void>;
|
|
819
822
|
saveAWSSignature(): Promise<void>;
|
|
820
823
|
saveSignature(): void;
|
|
@@ -1388,6 +1391,7 @@ declare class CertificationComponent {
|
|
|
1388
1391
|
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1389
1392
|
ngOnInit(): Promise<void>;
|
|
1390
1393
|
loadDocumentTypes(searchText?: string): void;
|
|
1394
|
+
loadDocumentTypesDefault(searchText?: string): void;
|
|
1391
1395
|
isChecked(id: string): boolean;
|
|
1392
1396
|
toggleSelection(item: any, event: Event): void;
|
|
1393
1397
|
getstates(): void;
|
|
@@ -1649,6 +1653,7 @@ declare class LicensesComponent {
|
|
|
1649
1653
|
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1650
1654
|
ngOnInit(): Promise<void>;
|
|
1651
1655
|
loadDocumentTypes(searchText?: string): void;
|
|
1656
|
+
loadDocumentTypesDefault(searchText?: string): void;
|
|
1652
1657
|
toggleSelection(item: any, event: Event): void;
|
|
1653
1658
|
getstates(): void;
|
|
1654
1659
|
onPreferredDateChange(date: Date): void;
|
|
@@ -1869,6 +1874,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1869
1874
|
private provideruser;
|
|
1870
1875
|
private tokenService;
|
|
1871
1876
|
private fb;
|
|
1877
|
+
isLoaded: boolean;
|
|
1872
1878
|
previewUrl: string | null;
|
|
1873
1879
|
isImageLoading: boolean;
|
|
1874
1880
|
isresumeLoading: boolean;
|
|
@@ -1880,7 +1886,6 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1880
1886
|
selectedTab: any;
|
|
1881
1887
|
resumeName: any;
|
|
1882
1888
|
industries: any[];
|
|
1883
|
-
list: any[];
|
|
1884
1889
|
selectedIndustries: any[];
|
|
1885
1890
|
isIndustriesLoading: boolean;
|
|
1886
1891
|
expYears: LookupItem[];
|
|
@@ -1895,7 +1900,6 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1895
1900
|
user: any;
|
|
1896
1901
|
userError: any;
|
|
1897
1902
|
showLoader: boolean;
|
|
1898
|
-
isImageRequired: boolean;
|
|
1899
1903
|
fileData: any;
|
|
1900
1904
|
fileDataUser: any;
|
|
1901
1905
|
zipcodeMask: RegExp[];
|
|
@@ -1929,6 +1933,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1929
1933
|
saveUserIndustries(): void;
|
|
1930
1934
|
setSelectedIndustries(ids: string[]): void;
|
|
1931
1935
|
onBackClick(): void;
|
|
1936
|
+
list: any;
|
|
1932
1937
|
loadFromApi(userId: string): void;
|
|
1933
1938
|
getUserDetail(): void;
|
|
1934
1939
|
onYearChange(group: any): void;
|