@idsoftsource/initial-process 3.3.3 → 3.3.5
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
|
@@ -942,7 +942,7 @@ declare class CredentialingStore {
|
|
|
942
942
|
clearStorage(): void;
|
|
943
943
|
resetAll(): void;
|
|
944
944
|
toolsList: i0.WritableSignal<Tool[]>;
|
|
945
|
-
uploadOption: i0.WritableSignal<"
|
|
945
|
+
uploadOption: i0.WritableSignal<"upload" | "manual" | null>;
|
|
946
946
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
947
947
|
licenses: i0.WritableSignal<License[]>;
|
|
948
948
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -3695,8 +3695,11 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3695
3695
|
customProfessionName: string;
|
|
3696
3696
|
customProfessionGroup: string | null;
|
|
3697
3697
|
customProfessionType: string | null;
|
|
3698
|
+
customProfessionStars: number;
|
|
3699
|
+
customProfessionYear: number | null;
|
|
3698
3700
|
isSavingCustomProfession: boolean;
|
|
3699
3701
|
openCustomProfessionForm(context: 'skill' | 'tool' | 'certificate'): void;
|
|
3702
|
+
setTempCustomProfessionStars(stars: number): void;
|
|
3700
3703
|
cancelCustomProfessionForm(): void;
|
|
3701
3704
|
get canSaveCustomProfession(): boolean;
|
|
3702
3705
|
saveCustomProfession(): Promise<void>;
|
|
@@ -3727,6 +3730,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3727
3730
|
private hasProfessionRowChanged;
|
|
3728
3731
|
get filteredProfessionTypes(): any[];
|
|
3729
3732
|
get hasNoProfessionMatches(): boolean;
|
|
3733
|
+
trackByProfessionId(_index: number, p: any): string;
|
|
3730
3734
|
professionGroupOptions: string[];
|
|
3731
3735
|
professionTypeOptions: string[];
|
|
3732
3736
|
private recomputeProfessionGroupAndTypeOptions;
|
|
@@ -3745,6 +3749,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3745
3749
|
notes: string;
|
|
3746
3750
|
};
|
|
3747
3751
|
onProfessionRowCheck(profession: any, event: Event): void;
|
|
3752
|
+
toggleProfessionRow(profession: any, event?: Event): void;
|
|
3748
3753
|
setProfessionRowStars(profession: any, stars: number): void;
|
|
3749
3754
|
createManualProfessionRow(): void;
|
|
3750
3755
|
private buildProfessionPayload;
|
|
@@ -3811,6 +3816,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3811
3816
|
confirmAllCertifications(): Promise<void>;
|
|
3812
3817
|
confirmAllLicenses(): Promise<void>;
|
|
3813
3818
|
private buildSectionQuery;
|
|
3819
|
+
private buildProfessionQuery;
|
|
3814
3820
|
private buildSectionForUserQuery;
|
|
3815
3821
|
private buildUserName;
|
|
3816
3822
|
private getCreatedId;
|