@eqproject/eqp-dynamic-module 2.4.42 → 2.4.44
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 +9 -3
- package/esm2020/lib/components/private/dbgetter/dbgetter.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/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +11 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +22 -8
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +22 -8
- 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/list-view-form-record/single-record/single-record.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ import { DynamicModuleListFormRecordActionsDefault } from "../../../models/dynam
|
|
|
11
11
|
import { DynRecord, Record, RecordButton } from "../../../models/record.model";
|
|
12
12
|
import { UtilityHelperService } from "../../../services/utilityHelper.services";
|
|
13
13
|
import { DynamicModuleFilterResultViewModeEnum } from "../../../models/dynamicModuleFilterResultViewModeEnum.model";
|
|
14
|
+
import { eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit {
|
|
16
17
|
private utilityHelperService;
|
|
@@ -74,6 +75,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
74
75
|
afterDeleteRecord: EventEmitter<Record>;
|
|
75
76
|
dragStarted: EventEmitter<Record>;
|
|
76
77
|
dragReleased: EventEmitter<void>;
|
|
78
|
+
out: EventEmitter<eventOut>;
|
|
77
79
|
form: Form;
|
|
78
80
|
lastform: Form;
|
|
79
81
|
FormTypeEnum: typeof FormTypeEnum;
|
|
@@ -148,6 +150,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
148
150
|
onAfterFilter(ev: any): void;
|
|
149
151
|
onDragStarted(el: any): void;
|
|
150
152
|
onDragReleased(): void;
|
|
153
|
+
onExternalComponentOut(ev: eventOut): 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"; "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"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; }, 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"; "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"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "out": "out"; }, never, never, false, never>;
|
|
153
156
|
}
|
|
@@ -4,6 +4,7 @@ import { EndPointConfiguration } from '../../../../../models/endPointConfigurati
|
|
|
4
4
|
import { Form } from '../../../../../models/form.model';
|
|
5
5
|
import { Record } from "../../../../../models/record.model";
|
|
6
6
|
import { UtilityHelperService } from '../../../../../services/utilityHelper.services';
|
|
7
|
+
import { DynamicLoaderDirectiveData, eventOut } from '../../../../../directives/dynamic-loader/dynamic-loader.directive';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
type PageState = null | 'visualizzaContenuto' | 'modificaContenuto';
|
|
9
10
|
export declare class SingleRecordComponent implements OnInit {
|
|
@@ -16,8 +17,10 @@ export declare class SingleRecordComponent implements OnInit {
|
|
|
16
17
|
showBackButton: boolean;
|
|
17
18
|
outCompileConfigurations: DynamicModuleCompileConfig;
|
|
18
19
|
onlyView: boolean;
|
|
20
|
+
QueryEditorComponent: DynamicLoaderDirectiveData;
|
|
19
21
|
saveRecordEvent: EventEmitter<Record>;
|
|
20
22
|
afterSaveRecordEvent: EventEmitter<Record>;
|
|
23
|
+
out: EventEmitter<eventOut>;
|
|
21
24
|
loaded: boolean;
|
|
22
25
|
constructor(utilityHelperService: UtilityHelperService);
|
|
23
26
|
ngOnInit(): void;
|
|
@@ -26,7 +29,8 @@ export declare class SingleRecordComponent implements OnInit {
|
|
|
26
29
|
*/
|
|
27
30
|
saveOrExitForm(record: Record): void;
|
|
28
31
|
onAfterSaveRecord(event: any): void;
|
|
32
|
+
onExternalComponentOut(ev: eventOut): void;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleRecordComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SingleRecordComponent, "lib-single-record", never, { "endPointConfiguration": "endPointConfiguration"; "record": "record"; "pageState": "pageState"; "userID": "userID"; "form": "form"; "showBackButton": "showBackButton"; "outCompileConfigurations": "outCompileConfigurations"; "onlyView": "onlyView"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SingleRecordComponent, "lib-single-record", never, { "endPointConfiguration": "endPointConfiguration"; "record": "record"; "pageState": "pageState"; "userID": "userID"; "form": "form"; "showBackButton": "showBackButton"; "outCompileConfigurations": "outCompileConfigurations"; "onlyView": "onlyView"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "out": "out"; }, never, never, false, never>;
|
|
31
35
|
}
|
|
32
36
|
export {};
|