@posiwise/admin-module 0.0.103 → 0.0.105
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/esm2022/lib/components/faqs/add-faq/add-faq.component.mjs +1 -2
- package/esm2022/lib/components/faqs/edit-faq/edit-faq.component.mjs +11 -47
- package/esm2022/lib/components/incidents/add-edit-incident/add-edit-incident.component.mjs +15 -49
- package/fesm2022/posiwise-admin-module.mjs +24 -95
- package/fesm2022/posiwise-admin-module.mjs.map +1 -1
- package/lib/components/faqs/add-faq/add-faq.component.d.ts +0 -1
- package/lib/components/faqs/edit-faq/edit-faq.component.d.ts +2 -6
- package/lib/components/incidents/add-edit-incident/add-edit-incident.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -41,10 +41,7 @@ export declare class EditFaqComponent extends AppBaseComponent implements OnInit
|
|
|
41
41
|
inviteUsers: string;
|
|
42
42
|
subscriptionList: string;
|
|
43
43
|
};
|
|
44
|
-
faqs: FAQ[];
|
|
45
|
-
faqList: FAQ[];
|
|
46
44
|
id: number;
|
|
47
|
-
backUpFAQ: FAQ[];
|
|
48
45
|
submitted: boolean;
|
|
49
46
|
isLoaded: boolean;
|
|
50
47
|
editForm: NgForm;
|
|
@@ -76,15 +73,14 @@ export declare class EditFaqComponent extends AppBaseComponent implements OnInit
|
|
|
76
73
|
get f(): {
|
|
77
74
|
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
78
75
|
};
|
|
79
|
-
private
|
|
76
|
+
private getFaqCategories;
|
|
77
|
+
private getCurrentFaq;
|
|
80
78
|
onSubmit(): void;
|
|
81
79
|
updateFaq(): void;
|
|
82
80
|
private getCategories;
|
|
83
81
|
private sortObj;
|
|
84
82
|
private groupProducts;
|
|
85
|
-
onProductChange(event: any): void;
|
|
86
83
|
onChange(item: any): void;
|
|
87
|
-
onValueChange(faq: FAQ, value: boolean): void;
|
|
88
84
|
onPublicValueChange(faq: FAQ, value: boolean): void;
|
|
89
85
|
onCancel(): void;
|
|
90
86
|
ngOnDestroy(): void;
|
|
@@ -61,6 +61,7 @@ export declare class AddEditIncidentComponent extends AppBaseComponent implement
|
|
|
61
61
|
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
62
62
|
};
|
|
63
63
|
onSubmit(): void;
|
|
64
|
+
private getIncidentById;
|
|
64
65
|
onAdd(): void;
|
|
65
66
|
onUpdate(): void;
|
|
66
67
|
onCancel(): void;
|