@idsoftsource/initial-process 3.4.9 → 3.5.1
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
|
@@ -4005,9 +4005,11 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4005
4005
|
formatMonthYear(value: string | null | undefined): string;
|
|
4006
4006
|
private confirmDelete;
|
|
4007
4007
|
private jobEditor;
|
|
4008
|
+
workShowFieldErrors: boolean;
|
|
4008
4009
|
isAddingJob(): boolean;
|
|
4009
4010
|
editingJobIndex(): number | null;
|
|
4010
4011
|
tempJob(): WorkExperience$1 | null;
|
|
4012
|
+
tempJobIssues(): string[];
|
|
4011
4013
|
addJob(): void;
|
|
4012
4014
|
startEditJob(jobIndex: number): void;
|
|
4013
4015
|
cancelEditJob(): void;
|
|
@@ -4021,6 +4023,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4021
4023
|
onWorkExperienceFileSelected(event: Event): void;
|
|
4022
4024
|
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
4023
4025
|
private skillEditor;
|
|
4026
|
+
skillShowFieldErrors: boolean;
|
|
4024
4027
|
isSkillEditorOpen(): boolean;
|
|
4025
4028
|
isAddingSkill(): boolean;
|
|
4026
4029
|
editingSkillIndex(): number | null;
|
|
@@ -4036,6 +4039,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4036
4039
|
deletingSkillIndex: i0.WritableSignal<number | null>;
|
|
4037
4040
|
deleteSkill(index: number): Promise<void>;
|
|
4038
4041
|
private toolEditor;
|
|
4042
|
+
toolShowFieldErrors: boolean;
|
|
4039
4043
|
isToolEditorOpen(): boolean;
|
|
4040
4044
|
isAddingTool(): boolean;
|
|
4041
4045
|
editingToolIndex(): number | null;
|
|
@@ -4074,9 +4078,11 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4074
4078
|
deletingToolIndex: i0.WritableSignal<number | null>;
|
|
4075
4079
|
deleteTool(index: number): Promise<void>;
|
|
4076
4080
|
private certificationEditor;
|
|
4081
|
+
certificationShowFieldErrors: boolean;
|
|
4077
4082
|
isAddingCertification(): boolean;
|
|
4078
4083
|
editingCertificationIndex(): number | null;
|
|
4079
4084
|
tempCertification(): Certification$3 | null;
|
|
4085
|
+
tempCertificationIssues(): string[];
|
|
4080
4086
|
private normalizeNullableString;
|
|
4081
4087
|
private normalizeMonthInput;
|
|
4082
4088
|
addCertification(): void;
|
|
@@ -4089,9 +4095,11 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4089
4095
|
deletingCertificationIndex: i0.WritableSignal<number | null>;
|
|
4090
4096
|
deleteCertification(index: number): Promise<void>;
|
|
4091
4097
|
private licenseEditor;
|
|
4098
|
+
licenseShowFieldErrors: boolean;
|
|
4092
4099
|
isAddingLicense(): boolean;
|
|
4093
4100
|
editingLicenseIndex(): number | null;
|
|
4094
4101
|
tempLicense(): License$1 | null;
|
|
4102
|
+
tempLicenseIssues(): string[];
|
|
4095
4103
|
addLicense(): void;
|
|
4096
4104
|
startEditLicense(index: number): void;
|
|
4097
4105
|
cancelEditLicense(): void;
|
|
@@ -4101,9 +4109,11 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4101
4109
|
deletingLicenseIndex: i0.WritableSignal<number | null>;
|
|
4102
4110
|
deleteLicense(index: number): Promise<void>;
|
|
4103
4111
|
private educationEditor;
|
|
4112
|
+
educationShowFieldErrors: boolean;
|
|
4104
4113
|
isAddingEducation(): boolean;
|
|
4105
4114
|
editingEducationIndex(): number | null;
|
|
4106
4115
|
tempEducation(): Education$1 | null;
|
|
4116
|
+
tempEducationIssues(): string[];
|
|
4107
4117
|
addEducation(): void;
|
|
4108
4118
|
startEditEducation(index: number): void;
|
|
4109
4119
|
cancelEditEducation(): void;
|