@idsoftsource/initial-process 3.2.7 → 3.2.8

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<"upload" | "manual" | null>;
945
+ uploadOption: i0.WritableSignal<"manual" | "upload" | null>;
946
946
  certifications: i0.WritableSignal<Certification$2[]>;
947
947
  licenses: i0.WritableSignal<License[]>;
948
948
  stepView: i0.WritableSignal<"add" | "preview">;
@@ -3689,9 +3689,18 @@ declare class PreviewComponent implements OnDestroy {
3689
3689
  skills: i0.Signal<string[]>;
3690
3690
  tools: i0.Signal<string[]>;
3691
3691
  professions: i0.Signal<string[]>;
3692
+ private refreshUserProfessionOptions;
3692
3693
  loadProfessionTypes(): void;
3693
3694
  professionSearchQry: string | null;
3694
3695
  isSavingProfessionsTable: boolean;
3696
+ savedProfessionTypeIds: Set<string>;
3697
+ professionTypeServerIds: Record<string, string>;
3698
+ professionSavedSnapshots: Record<string, {
3699
+ starRating: number;
3700
+ year: number | null;
3701
+ profileVisibility: boolean;
3702
+ notes: string;
3703
+ }>;
3695
3704
  professionSelections: Record<string, {
3696
3705
  selected: boolean;
3697
3706
  starRating: number;
@@ -3699,7 +3708,11 @@ declare class PreviewComponent implements OnDestroy {
3699
3708
  profileVisibility: boolean;
3700
3709
  notes: string;
3701
3710
  }>;
3711
+ private applySavedProfessionsToTable;
3712
+ private hasProfessionRowChanged;
3702
3713
  get filteredProfessionTypes(): any[];
3714
+ get professionSubmitLabel(): string;
3715
+ isProfessionSaved(id: string): boolean;
3703
3716
  get selectedProfessionCount(): number;
3704
3717
  getProfessionSelection(id: string): {
3705
3718
  selected: boolean;
@@ -3711,6 +3724,7 @@ declare class PreviewComponent implements OnDestroy {
3711
3724
  onProfessionRowCheck(profession: any, event: Event): void;
3712
3725
  setProfessionRowStars(profession: any, stars: number): void;
3713
3726
  createManualProfessionRow(): void;
3727
+ private buildProfessionPayload;
3714
3728
  submitProfessions(): Promise<void>;
3715
3729
  private isBlank;
3716
3730
  private isBlankOrNull;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",