@eqproject/eqp-dynamic-module 2.8.2 → 2.8.4
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 +3 -3
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +3 -3
- package/esm2020/lib/models/dynamicModuleListConfig.model.mjs +7 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +15 -7
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +15 -7
- 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/models/dynamicModuleListConfig.model.d.ts +5 -1
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
43
43
|
answerToDuplicateId: any;
|
|
44
44
|
highlightFilter: any;
|
|
45
45
|
selectedRecord: Record | string;
|
|
46
|
+
isDraggableListView: boolean;
|
|
46
47
|
QueryEditorComponent: any;
|
|
47
48
|
context: Context;
|
|
48
49
|
/**
|
|
@@ -157,5 +158,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
157
158
|
onFireTrigger(ev: FireTrigger): void;
|
|
158
159
|
parseValueString(field: any, record: any): any;
|
|
159
160
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
160
|
-
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"; "externalButtons": "externalButtons"; "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"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
|
|
161
|
+
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"; "externalButtons": "externalButtons"; "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"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
|
|
161
162
|
}
|
|
@@ -31,5 +31,9 @@ export declare class DynamicModuleListConfig {
|
|
|
31
31
|
* L'Id utente per filtrare le risposte
|
|
32
32
|
*/
|
|
33
33
|
userID: string;
|
|
34
|
-
|
|
34
|
+
/**
|
|
35
|
+
* Controllo se è draggabile
|
|
36
|
+
*/
|
|
37
|
+
isDraggableListView: boolean;
|
|
38
|
+
constructor(showTitle?: boolean, values?: Array<Record>, defaultListActions?: DynamicModuleListFormRecordActionsDefault, userID?: string, externalButtons?: Array<RecordButton>, updateInfo?: any, listViewRecordTitle?: string[], isDraggableListView?: boolean);
|
|
35
39
|
}
|