@idsoftsource/initial-process 3.7.2 → 3.7.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
|
@@ -3128,6 +3128,9 @@ declare class ProfessionComponent implements OnInit {
|
|
|
3128
3128
|
userProfessionOptions: any[];
|
|
3129
3129
|
professionSearchQry: string | null;
|
|
3130
3130
|
isSavingProfessionsTable: boolean;
|
|
3131
|
+
deletingProfessionId: i0.WritableSignal<string | null>;
|
|
3132
|
+
deleteConfirmMessage: string | null;
|
|
3133
|
+
private deleteConfirmResolver;
|
|
3131
3134
|
savedProfessionTypeIds: Set<string>;
|
|
3132
3135
|
professionTypeServerIds: Record<string, string>;
|
|
3133
3136
|
professionSavedSnapshots: Record<string, {
|
|
@@ -3180,6 +3183,13 @@ declare class ProfessionComponent implements OnInit {
|
|
|
3180
3183
|
profileVisibility: boolean;
|
|
3181
3184
|
notes: string;
|
|
3182
3185
|
};
|
|
3186
|
+
copyToAllProfessions(sourceId: string): void;
|
|
3187
|
+
private confirmDelete;
|
|
3188
|
+
onDeleteConfirmProceed(): void;
|
|
3189
|
+
onDeleteConfirmCancel(): void;
|
|
3190
|
+
deleteSavedProfession(profession: any, event: Event): Promise<void>;
|
|
3191
|
+
professionExpanded: Record<string, boolean>;
|
|
3192
|
+
isProfessionExpanded(id: string): boolean;
|
|
3183
3193
|
onProfessionRowCheck(profession: any, event: Event): void;
|
|
3184
3194
|
toggleProfessionRow(profession: any, event?: Event): void;
|
|
3185
3195
|
setProfessionRowStars(profession: any, stars: number): void;
|
|
@@ -3876,6 +3886,8 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3876
3886
|
loadProfessionTypes(): void;
|
|
3877
3887
|
professionSearchQry: string | null;
|
|
3878
3888
|
isSavingProfessionsTable: boolean;
|
|
3889
|
+
deletingProfessionTypeId: i0.WritableSignal<string | null>;
|
|
3890
|
+
professionExpanded: Record<string, boolean>;
|
|
3879
3891
|
savedProfessionTypeIds: Set<string>;
|
|
3880
3892
|
professionTypeServerIds: Record<string, string>;
|
|
3881
3893
|
professionSavedSnapshots: Record<string, {
|
|
@@ -3918,7 +3930,10 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3918
3930
|
profileVisibility: boolean;
|
|
3919
3931
|
notes: string;
|
|
3920
3932
|
};
|
|
3933
|
+
isProfessionExpanded(id: string): boolean;
|
|
3921
3934
|
onProfessionRowCheck(profession: any, event: Event): void;
|
|
3935
|
+
deleteSavedProfession(profession: any, event: Event): Promise<void>;
|
|
3936
|
+
copyToAllProfessions(sourceId: string): void;
|
|
3922
3937
|
toggleProfessionRow(profession: any, event?: Event): void;
|
|
3923
3938
|
setProfessionRowStars(profession: any, stars: number): void;
|
|
3924
3939
|
createManualProfessionRow(): void;
|