@idsoftsource/initial-process 3.2.8 → 3.2.9
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
|
@@ -3531,6 +3531,7 @@ declare class UserProfessionService {
|
|
|
3531
3531
|
constructor(httpClient: HttpClient);
|
|
3532
3532
|
createUserProfession(models: UserProfessionModel[]): Observable<any>;
|
|
3533
3533
|
updateUserProfession(model: UserProfessionModel): Observable<any>;
|
|
3534
|
+
bulkInsert(models: any[]): Observable<any>;
|
|
3534
3535
|
bulkDelete(ids: string[]): Observable<Result>;
|
|
3535
3536
|
getUserProfession(query: GridifyQuery): Observable<any>;
|
|
3536
3537
|
private buildParams;
|
|
@@ -3690,6 +3691,16 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3690
3691
|
tools: i0.Signal<string[]>;
|
|
3691
3692
|
professions: i0.Signal<string[]>;
|
|
3692
3693
|
private refreshUserProfessionOptions;
|
|
3694
|
+
showCustomProfessionForm: boolean;
|
|
3695
|
+
customProfessionContext: 'skill' | 'tool' | 'certificate' | null;
|
|
3696
|
+
customProfessionName: string;
|
|
3697
|
+
customProfessionGroup: string | null;
|
|
3698
|
+
customProfessionType: string | null;
|
|
3699
|
+
isSavingCustomProfession: boolean;
|
|
3700
|
+
openCustomProfessionForm(context: 'skill' | 'tool' | 'certificate'): void;
|
|
3701
|
+
cancelCustomProfessionForm(): void;
|
|
3702
|
+
get canSaveCustomProfession(): boolean;
|
|
3703
|
+
saveCustomProfession(): Promise<void>;
|
|
3693
3704
|
loadProfessionTypes(): void;
|
|
3694
3705
|
professionSearchQry: string | null;
|
|
3695
3706
|
isSavingProfessionsTable: boolean;
|
|
@@ -3711,6 +3722,14 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3711
3722
|
private applySavedProfessionsToTable;
|
|
3712
3723
|
private hasProfessionRowChanged;
|
|
3713
3724
|
get filteredProfessionTypes(): any[];
|
|
3725
|
+
get hasNoProfessionMatches(): boolean;
|
|
3726
|
+
professionGroupOptions: string[];
|
|
3727
|
+
professionTypeOptions: string[];
|
|
3728
|
+
private recomputeProfessionGroupAndTypeOptions;
|
|
3729
|
+
isManualProfessionType(id: string): boolean;
|
|
3730
|
+
isManualRowReady(id: string): boolean;
|
|
3731
|
+
setManualProfessionGroup(profession: any, group: string): void;
|
|
3732
|
+
setManualProfessionType(profession: any, type: string): void;
|
|
3714
3733
|
get professionSubmitLabel(): string;
|
|
3715
3734
|
isProfessionSaved(id: string): boolean;
|
|
3716
3735
|
get selectedProfessionCount(): number;
|
|
@@ -3725,6 +3744,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3725
3744
|
setProfessionRowStars(profession: any, stars: number): void;
|
|
3726
3745
|
createManualProfessionRow(): void;
|
|
3727
3746
|
private buildProfessionPayload;
|
|
3747
|
+
private buildManualProfessionBulkPayload;
|
|
3728
3748
|
submitProfessions(): Promise<void>;
|
|
3729
3749
|
private isBlank;
|
|
3730
3750
|
private isBlankOrNull;
|