@idsoftsource/initial-process 3.2.8 → 3.3.0

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
@@ -3690,6 +3690,16 @@ declare class PreviewComponent implements OnDestroy {
3690
3690
  tools: i0.Signal<string[]>;
3691
3691
  professions: i0.Signal<string[]>;
3692
3692
  private refreshUserProfessionOptions;
3693
+ showCustomProfessionForm: boolean;
3694
+ customProfessionContext: 'skill' | 'tool' | 'certificate' | null;
3695
+ customProfessionName: string;
3696
+ customProfessionGroup: string | null;
3697
+ customProfessionType: string | null;
3698
+ isSavingCustomProfession: boolean;
3699
+ openCustomProfessionForm(context: 'skill' | 'tool' | 'certificate'): void;
3700
+ cancelCustomProfessionForm(): void;
3701
+ get canSaveCustomProfession(): boolean;
3702
+ saveCustomProfession(): Promise<void>;
3693
3703
  loadProfessionTypes(): void;
3694
3704
  professionSearchQry: string | null;
3695
3705
  isSavingProfessionsTable: boolean;
@@ -3711,6 +3721,14 @@ declare class PreviewComponent implements OnDestroy {
3711
3721
  private applySavedProfessionsToTable;
3712
3722
  private hasProfessionRowChanged;
3713
3723
  get filteredProfessionTypes(): any[];
3724
+ get hasNoProfessionMatches(): boolean;
3725
+ professionGroupOptions: string[];
3726
+ professionTypeOptions: string[];
3727
+ private recomputeProfessionGroupAndTypeOptions;
3728
+ isManualProfessionType(id: string): boolean;
3729
+ isManualRowReady(id: string): boolean;
3730
+ setManualProfessionGroup(profession: any, group: string): void;
3731
+ setManualProfessionType(profession: any, type: string): void;
3714
3732
  get professionSubmitLabel(): string;
3715
3733
  isProfessionSaved(id: string): boolean;
3716
3734
  get selectedProfessionCount(): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "3.2.8",
3
+ "version": "3.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",