@idsoftsource/initial-process 3.4.3 → 3.4.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
|
@@ -4003,6 +4003,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4003
4003
|
private advanceWorkConfirmQueue;
|
|
4004
4004
|
confirmAllWork(): Promise<void>;
|
|
4005
4005
|
saveEditJob(): Promise<void>;
|
|
4006
|
+
deletingJobIndex: i0.WritableSignal<number | null>;
|
|
4006
4007
|
deleteJob(index: number): Promise<void>;
|
|
4007
4008
|
updateTempResponsibilities(value: string): void;
|
|
4008
4009
|
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
@@ -4021,6 +4022,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4021
4022
|
onSkillProfessionChange(item: any): void;
|
|
4022
4023
|
saveSkillEditor(): Promise<void>;
|
|
4023
4024
|
private reindexSkillMetaAfterDelete;
|
|
4025
|
+
deletingSkillIndex: i0.WritableSignal<number | null>;
|
|
4024
4026
|
deleteSkill(index: number): Promise<void>;
|
|
4025
4027
|
private toolEditor;
|
|
4026
4028
|
isToolEditorOpen(): boolean;
|
|
@@ -4058,6 +4060,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4058
4060
|
applyBulkToolConfirm(): Promise<void>;
|
|
4059
4061
|
saveToolEditor(): Promise<void>;
|
|
4060
4062
|
private reindexToolMetaAfterDelete;
|
|
4063
|
+
deletingToolIndex: i0.WritableSignal<number | null>;
|
|
4061
4064
|
deleteTool(index: number): Promise<void>;
|
|
4062
4065
|
private certificationEditor;
|
|
4063
4066
|
isAddingCertification(): boolean;
|
|
@@ -4072,6 +4075,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4072
4075
|
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
4073
4076
|
onCertificationFileSelected(event: Event): void;
|
|
4074
4077
|
saveCertificationEditor(): Promise<void>;
|
|
4078
|
+
deletingCertificationIndex: i0.WritableSignal<number | null>;
|
|
4075
4079
|
deleteCertification(index: number): Promise<void>;
|
|
4076
4080
|
private licenseEditor;
|
|
4077
4081
|
isAddingLicense(): boolean;
|
|
@@ -4083,6 +4087,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4083
4087
|
patchTempLicense(patch: Partial<License$1>): void;
|
|
4084
4088
|
onLicenseFileSelected(event: Event): void;
|
|
4085
4089
|
saveLicenseEditor(): Promise<void>;
|
|
4090
|
+
deletingLicenseIndex: i0.WritableSignal<number | null>;
|
|
4086
4091
|
deleteLicense(index: number): Promise<void>;
|
|
4087
4092
|
private educationEditor;
|
|
4088
4093
|
isAddingEducation(): boolean;
|
|
@@ -4096,6 +4101,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4096
4101
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
4097
4102
|
onEducationFileSelected(event: Event): void;
|
|
4098
4103
|
saveEducation(): Promise<void>;
|
|
4104
|
+
deletingEducationIndex: i0.WritableSignal<number | null>;
|
|
4099
4105
|
deleteEducation(index: number): Promise<void>;
|
|
4100
4106
|
onBackClick(): void;
|
|
4101
4107
|
stayOnPreview(): void;
|