@idsoftsource/initial-process 1.0.1 → 1.0.3
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
|
@@ -1388,6 +1388,7 @@ declare class CertificationComponent {
|
|
|
1388
1388
|
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1389
1389
|
ngOnInit(): Promise<void>;
|
|
1390
1390
|
loadDocumentTypes(searchText?: string): void;
|
|
1391
|
+
loadDocumentTypesDefault(searchText?: string): void;
|
|
1391
1392
|
isChecked(id: string): boolean;
|
|
1392
1393
|
toggleSelection(item: any, event: Event): void;
|
|
1393
1394
|
getstates(): void;
|
|
@@ -1649,6 +1650,7 @@ declare class LicensesComponent {
|
|
|
1649
1650
|
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1650
1651
|
ngOnInit(): Promise<void>;
|
|
1651
1652
|
loadDocumentTypes(searchText?: string): void;
|
|
1653
|
+
loadDocumentTypesDefault(searchText?: string): void;
|
|
1652
1654
|
toggleSelection(item: any, event: Event): void;
|
|
1653
1655
|
getstates(): void;
|
|
1654
1656
|
onPreferredDateChange(date: Date): void;
|
|
@@ -1869,6 +1871,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1869
1871
|
private provideruser;
|
|
1870
1872
|
private tokenService;
|
|
1871
1873
|
private fb;
|
|
1874
|
+
isLoaded: boolean;
|
|
1872
1875
|
previewUrl: string | null;
|
|
1873
1876
|
isImageLoading: boolean;
|
|
1874
1877
|
isresumeLoading: boolean;
|
|
@@ -1880,7 +1883,6 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1880
1883
|
selectedTab: any;
|
|
1881
1884
|
resumeName: any;
|
|
1882
1885
|
industries: any[];
|
|
1883
|
-
list: any[];
|
|
1884
1886
|
selectedIndustries: any[];
|
|
1885
1887
|
isIndustriesLoading: boolean;
|
|
1886
1888
|
expYears: LookupItem[];
|
|
@@ -1895,7 +1897,6 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1895
1897
|
user: any;
|
|
1896
1898
|
userError: any;
|
|
1897
1899
|
showLoader: boolean;
|
|
1898
|
-
isImageRequired: boolean;
|
|
1899
1900
|
fileData: any;
|
|
1900
1901
|
fileDataUser: any;
|
|
1901
1902
|
zipcodeMask: RegExp[];
|
|
@@ -1929,6 +1930,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1929
1930
|
saveUserIndustries(): void;
|
|
1930
1931
|
setSelectedIndustries(ids: string[]): void;
|
|
1931
1932
|
onBackClick(): void;
|
|
1933
|
+
list: any;
|
|
1932
1934
|
loadFromApi(userId: string): void;
|
|
1933
1935
|
getUserDetail(): void;
|
|
1934
1936
|
onYearChange(group: any): void;
|