@eqproject/eqp-dynamic-module 2.3.13 → 2.3.15
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 +10 -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 +1 -1
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +1 -1
- package/esm2020/lib/models/baseField.model.mjs +25 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +42 -9
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +42 -9
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +3 -1
- package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +2 -1
- package/lib/models/baseField.model.d.ts +25 -1
- package/package.json +1 -1
|
@@ -35,6 +35,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
35
35
|
additionalParams: any;
|
|
36
36
|
prefilterParams: any;
|
|
37
37
|
showNewSearchButton: boolean;
|
|
38
|
+
answerToDuplicateId: any;
|
|
38
39
|
context: Context;
|
|
39
40
|
/**
|
|
40
41
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
@@ -81,6 +82,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
81
82
|
dynamicModuleListConfig: DynamicModuleListConfig;
|
|
82
83
|
dynamicModuleRepairConfig: DynamicModuleRepairConfig;
|
|
83
84
|
loader: boolean;
|
|
85
|
+
isDuplicate: boolean;
|
|
84
86
|
constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef);
|
|
85
87
|
ngOnInit(): Promise<void>;
|
|
86
88
|
ngAfterViewInit(): void;
|
|
@@ -149,5 +151,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
149
151
|
onAfterDeleteRecord(record: Record): void;
|
|
150
152
|
onAfterFilter(ev: any): void;
|
|
151
153
|
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>;
|
|
154
|
+
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"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
|
|
153
155
|
}
|
|
@@ -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
|
}
|
|
@@ -69,5 +69,29 @@ export declare enum ColSpanSizesEnum {
|
|
|
69
69
|
'col-lg-12' = 12,
|
|
70
70
|
'align-self-start' = 13,
|
|
71
71
|
'align-self-center' = 14,
|
|
72
|
-
'align-self-end' = 15
|
|
72
|
+
'align-self-end' = 15,
|
|
73
|
+
'col-sm-1' = 16,
|
|
74
|
+
'col-sm-2' = 17,
|
|
75
|
+
'col-sm-5' = 18,
|
|
76
|
+
'col-sm-7' = 19,
|
|
77
|
+
'col-sm-8' = 20,
|
|
78
|
+
'col-sm-9' = 21,
|
|
79
|
+
'col-sm-10' = 22,
|
|
80
|
+
'col-sm-11' = 23,
|
|
81
|
+
'col-md-1' = 24,
|
|
82
|
+
'col-md-2' = 25,
|
|
83
|
+
'col-md-5' = 26,
|
|
84
|
+
'col-md-7' = 27,
|
|
85
|
+
'col-md-8' = 28,
|
|
86
|
+
'col-md-9' = 29,
|
|
87
|
+
'col-md-10' = 30,
|
|
88
|
+
'col-md-11' = 31,
|
|
89
|
+
'col-lg-1' = 32,
|
|
90
|
+
'col-lg-2' = 33,
|
|
91
|
+
'col-lg-5' = 34,
|
|
92
|
+
'col-lg-7' = 35,
|
|
93
|
+
'col-lg-8' = 36,
|
|
94
|
+
'col-lg-9' = 37,
|
|
95
|
+
'col-lg-10' = 38,
|
|
96
|
+
'col-lg-11' = 39
|
|
73
97
|
}
|