@eqproject/eqp-dynamic-module 2.9.21 → 2.9.23
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 +5 -1
- package/esm2020/lib/components/private/field-templates/action-button-field-template/action-button-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +7 -3
- package/esm2020/lib/services/utilityHelper.services.mjs +18 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +65 -41
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +65 -41
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +2 -0
- package/lib/services/utilityHelper.services.d.ts +1 -0
- package/package.json +1 -1
|
@@ -162,6 +162,8 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
162
162
|
onClickDragIndicator(el: any): void;
|
|
163
163
|
onExternalComponentOut(ev: eventOut): void;
|
|
164
164
|
onFireTrigger(ev: FireTrigger): void;
|
|
165
|
+
/** utilizzato in TMED */
|
|
166
|
+
reloadHTMLReadableValues(answerId: string): void;
|
|
165
167
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
166
168
|
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"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "clickDragIndicator": "clickDragIndicator"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
|
|
167
169
|
}
|
|
@@ -96,6 +96,7 @@ export declare class UtilityHelperService {
|
|
|
96
96
|
*/
|
|
97
97
|
RunEndPointCall(endPointData: EndPointData, dynamicModuleParams?: Array<EndPointDataParams>, callback?: (e: Form | Array<Form> | Record | Array<Record> | DynAttachment | Array<DynAttachment> | string) => void, errorCallBack?: (err: unknown) => void): void;
|
|
98
98
|
static base64ToBlob(b64Data: any, contentType?: string, sliceSize?: number): Blob;
|
|
99
|
+
static parseValueString(field: any, record: any): any;
|
|
99
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityHelperService, never>;
|
|
100
101
|
static ɵprov: i0.ɵɵInjectableDeclaration<UtilityHelperService>;
|
|
101
102
|
}
|