@eqproject/eqp-dynamic-module 2.10.3 → 2.10.5
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 +6 -3
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/field-templates/action-button-field-template/action-button-field-template.component.mjs +3 -1
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +20 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +27 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +27 -5
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +2 -1
- package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
43
43
|
additionalInfo: any;
|
|
44
44
|
updateInfo: any;
|
|
45
45
|
prefilterParams: any;
|
|
46
|
+
contestualizationParams: any;
|
|
46
47
|
showNewSearchButton: boolean;
|
|
47
48
|
answerToDuplicateId: any;
|
|
48
49
|
highlightFilter: any;
|
|
@@ -170,5 +171,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
170
171
|
reloadHTMLReadableValues(answerId: string): void;
|
|
171
172
|
onAfterOutputExternalFilters(ev: FilterStatistic): void;
|
|
172
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
173
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "orgaID": "orgaID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "formulaObject": "formulaObject"; "externalButtons": "externalButtons"; "actionButtons": "actionButtons"; "listViewRecordTitle": "listViewRecordTitle"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "additionalInfo": "additionalInfo"; "updateInfo": "updateInfo"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; "selectedRecord": "selectedRecord"; "isDraggableListView": "isDraggableListView"; "Statistic": "Statistic"; "numberOfColumns": "numberOfColumns"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "clickDragIndicator": "clickDragIndicator"; "out": "out"; "fireTrigger": "fireTrigger"; "afterOutputExternalFilters": "afterOutputExternalFilters"; }, never, never, false, never>;
|
|
174
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "orgaID": "orgaID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "formulaObject": "formulaObject"; "externalButtons": "externalButtons"; "actionButtons": "actionButtons"; "listViewRecordTitle": "listViewRecordTitle"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "additionalInfo": "additionalInfo"; "updateInfo": "updateInfo"; "prefilterParams": "prefilterParams"; "contestualizationParams": "contestualizationParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; "selectedRecord": "selectedRecord"; "isDraggableListView": "isDraggableListView"; "Statistic": "Statistic"; "numberOfColumns": "numberOfColumns"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "clickDragIndicator": "clickDragIndicator"; "out": "out"; "fireTrigger": "fireTrigger"; "afterOutputExternalFilters": "afterOutputExternalFilters"; }, never, never, false, never>;
|
|
174
175
|
}
|
package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare class ListFormRecordComponent implements OnInit, OnChanges {
|
|
|
17
17
|
form: Form;
|
|
18
18
|
externalButtons: Array<RecordButton>;
|
|
19
19
|
actionButtons: Array<ActionButton>;
|
|
20
|
+
contestualizationParams: any;
|
|
20
21
|
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
21
22
|
showTitle: boolean;
|
|
22
23
|
tableRecords: EqpTableComponent;
|
|
@@ -86,5 +87,5 @@ export declare class ListFormRecordComponent implements OnInit, OnChanges {
|
|
|
86
87
|
*/
|
|
87
88
|
private reloadTables;
|
|
88
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListFormRecordComponent, never>;
|
|
89
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordComponent, "list-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "formID": "formID"; "form": "form"; "externalButtons": "externalButtons"; "actionButtons": "actionButtons"; }, { "onViewRecord": "onViewRecord"; "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onAfterDeleteRecord": "onAfterDeleteRecord"; }, never, never, false, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordComponent, "list-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "formID": "formID"; "form": "form"; "externalButtons": "externalButtons"; "actionButtons": "actionButtons"; "contestualizationParams": "contestualizationParams"; }, { "onViewRecord": "onViewRecord"; "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onAfterDeleteRecord": "onAfterDeleteRecord"; }, never, never, false, never>;
|
|
90
91
|
}
|