@eqproject/eqp-dynamic-module 2.3.14 → 2.3.16
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/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +12 -3
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +1 -1
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +6 -4
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -4
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +1 -1
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +1 -1
- package/esm2020/lib/models/record.model.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +36 -12
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +36 -12
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +4 -1
- package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +2 -1
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +3 -1
- package/lib/models/record.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -35,6 +35,8 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
35
35
|
additionalParams: any;
|
|
36
36
|
prefilterParams: any;
|
|
37
37
|
showNewSearchButton: boolean;
|
|
38
|
+
answerToDuplicateId: any;
|
|
39
|
+
highlightFilter: any;
|
|
38
40
|
context: Context;
|
|
39
41
|
/**
|
|
40
42
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
@@ -81,6 +83,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
81
83
|
dynamicModuleListConfig: DynamicModuleListConfig;
|
|
82
84
|
dynamicModuleRepairConfig: DynamicModuleRepairConfig;
|
|
83
85
|
loader: boolean;
|
|
86
|
+
isDuplicate: boolean;
|
|
84
87
|
constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef);
|
|
85
88
|
ngOnInit(): Promise<void>;
|
|
86
89
|
ngAfterViewInit(): void;
|
|
@@ -149,5 +152,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
149
152
|
onAfterDeleteRecord(record: Record): void;
|
|
150
153
|
onAfterFilter(ev: any): void;
|
|
151
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
152
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
|
|
153
156
|
}
|
|
@@ -20,6 +20,7 @@ export declare class AddFormRecordComponent implements OnInit {
|
|
|
20
20
|
form: Form;
|
|
21
21
|
record: Record | string;
|
|
22
22
|
onlyView: boolean;
|
|
23
|
+
isDuplicate: boolean;
|
|
23
24
|
showTitle: boolean;
|
|
24
25
|
showSaveButton: boolean;
|
|
25
26
|
showBackButton: boolean;
|
|
@@ -83,5 +84,5 @@ export declare class AddFormRecordComponent implements OnInit {
|
|
|
83
84
|
private getResponseTemplate;
|
|
84
85
|
private replaceTemplatePlaceholdersWithValues;
|
|
85
86
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormRecordComponent, never>;
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
87
88
|
}
|
|
@@ -13,6 +13,7 @@ type Panel = {
|
|
|
13
13
|
record: Record;
|
|
14
14
|
isOpen: boolean;
|
|
15
15
|
pageState: string;
|
|
16
|
+
highlighted: boolean;
|
|
16
17
|
};
|
|
17
18
|
export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
18
19
|
private utilityHelperService;
|
|
@@ -31,6 +32,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
31
32
|
externalButtons: Array<RecordButton>;
|
|
32
33
|
onlyView: boolean;
|
|
33
34
|
records: Array<DynRecord>;
|
|
35
|
+
highlightFilter: any;
|
|
34
36
|
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
35
37
|
showTitle: boolean;
|
|
36
38
|
test: boolean;
|
|
@@ -136,6 +138,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
136
138
|
onAddSaveRecord(record: Record): void;
|
|
137
139
|
onAddAfterSaveRecord(record: Record): void;
|
|
138
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
|
|
139
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
140
142
|
}
|
|
141
143
|
export {};
|