@eqproject/eqp-dynamic-module 2.4.16 → 2.4.18
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 +4 -2
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +19 -10
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +44 -8
- package/esm2020/lib/directives/dynamic-loader/dynamic-loader.directive.mjs +59 -0
- package/esm2020/lib/eqp-dynamic-module.module.mjs +10 -5
- package/esm2020/lib/models/baseField.model.mjs +8 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +130 -15
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +130 -15
- 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/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +5 -1
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +13 -2
- package/lib/directives/dynamic-loader/dynamic-loader.directive.d.ts +26 -0
- package/lib/eqp-dynamic-module.module.d.ts +14 -13
- package/lib/models/baseField.model.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -39,6 +39,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
39
39
|
showNewSearchButton: boolean;
|
|
40
40
|
answerToDuplicateId: any;
|
|
41
41
|
highlightFilter: any;
|
|
42
|
+
QueryEditorComponent: any;
|
|
42
43
|
context: Context;
|
|
43
44
|
/**
|
|
44
45
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
@@ -148,5 +149,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
148
149
|
onDragStarted(el: any): void;
|
|
149
150
|
onDragReleased(): void;
|
|
150
151
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
151
|
-
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"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; }, never, never, false, 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>;
|
|
152
153
|
}
|
|
@@ -10,6 +10,7 @@ import { UtilityHelperService } from "../../../services/utilityHelper.services";
|
|
|
10
10
|
import { DynamicModuleCompileConfig } from "../../../models/dynamicModuleCompileConfig.model";
|
|
11
11
|
import { DynamicModuleConfiguratorConfig } from "../../../models/dynamicModuleConfiguratorConfig.model";
|
|
12
12
|
import { DomSanitizer } from "@angular/platform-browser";
|
|
13
|
+
import { DynamicLoaderDirectiveData, eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
15
16
|
private formBuilder;
|
|
@@ -21,6 +22,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
21
22
|
formID: string;
|
|
22
23
|
ProjectName: string;
|
|
23
24
|
viewMode: string;
|
|
25
|
+
QueryEditorComponent: DynamicLoaderDirectiveData;
|
|
24
26
|
loader: boolean;
|
|
25
27
|
/**
|
|
26
28
|
* Token da usare negli endpoint da chiamare per recuperare o salvare i record.
|
|
@@ -91,6 +93,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
91
93
|
* Evento emesso DOPO aver eseguito una chiamata al server per il salvataggiodi una form all'endpoint specificato.
|
|
92
94
|
*/
|
|
93
95
|
afterSaveFormEvent: EventEmitter<Form>;
|
|
96
|
+
out: EventEmitter<eventOut>;
|
|
94
97
|
constructor(formBuilder: UntypedFormBuilder, dialog: MatDialog, utilityHelperService: UtilityHelperService, sanitizer: DomSanitizer);
|
|
95
98
|
ngOnInit(): void;
|
|
96
99
|
/**
|
|
@@ -269,6 +272,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
269
272
|
* Metodo per ricaricare i dati della tabella delle azioni aggiuntive sui record della Form.
|
|
270
273
|
*/
|
|
271
274
|
private reloadActionsOnRecordTable;
|
|
275
|
+
onExternalComponentOut(ev: eventOut): void;
|
|
272
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleConfiguratorComponent, never>;
|
|
273
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "ProjectName": "ProjectName"; "viewMode": "viewMode"; }, { "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; }, never, never, false, never>;
|
|
277
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "ProjectName": "ProjectName"; "viewMode": "viewMode"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; "out": "out"; }, never, never, false, never>;
|
|
274
278
|
}
|
|
@@ -5,13 +5,14 @@ import { AttachmentType, EqpAttachmentsComponent, IAttachmentDTO } from "@eqproj
|
|
|
5
5
|
import { PickerModeEnum } from "@eqproject/eqp-datetimepicker";
|
|
6
6
|
import { EnumHelper } from "@eqproject/eqp-select";
|
|
7
7
|
import { ConfigColumn } from "@eqproject/eqp-table";
|
|
8
|
-
import { BaseField, ColSpanSizesEnum, FieldInvisibilityEnum, FieldTypeEnum } from "../../../models/baseField.model";
|
|
8
|
+
import { BaseField, ColSpanSizesEnum, DataGetterTypeEnum, FieldInvisibilityEnum, FieldTypeEnum } from "../../../models/baseField.model";
|
|
9
9
|
import { BoolPresentantioEnum } from "../../../models/fields/booleanField.model";
|
|
10
10
|
import { DateTimeTypeEnum } from "../../../models/fields/dateField.model";
|
|
11
11
|
import { ListPresentationEnum } from "../../../models/fields/listValueField.model";
|
|
12
12
|
import { TextMaskEnum } from "../../../models/fields/textField.model";
|
|
13
13
|
import { FormFieldGroup } from "../../../models/form.model";
|
|
14
14
|
import { AttachmentFieldTypeEnum, DynAttachment } from "../../../models/dynAttachment";
|
|
15
|
+
import { DynamicLoaderDirectiveData, eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
|
|
15
16
|
import * as i0 from "@angular/core";
|
|
16
17
|
export declare class AddFormFieldComponent implements OnInit {
|
|
17
18
|
private formBuilder;
|
|
@@ -24,6 +25,8 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
24
25
|
/** Elenco dei Field creati nella form, usati per popolare l'autocomplete della proprietà Formula. */
|
|
25
26
|
availableFields: Array<BaseField>;
|
|
26
27
|
fieldTypesToExclude: Array<FieldTypeEnum>;
|
|
28
|
+
QueryEditorComponent: DynamicLoaderDirectiveData;
|
|
29
|
+
out: EventEmitter<eventOut>;
|
|
27
30
|
resizedImagesHeightPx: number;
|
|
28
31
|
fieldFormGroup: UntypedFormGroup;
|
|
29
32
|
keyValueObject: {
|
|
@@ -62,6 +65,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
62
65
|
imageFieldSelectorFormTemplate: TemplateRef<any>;
|
|
63
66
|
listValueFieldFormTemplate: TemplateRef<any>;
|
|
64
67
|
lookupFieldFormTemplate: TemplateRef<any>;
|
|
68
|
+
dataGetterTemplate: TemplateRef<any>;
|
|
65
69
|
metadataColumns: Array<ConfigColumn>;
|
|
66
70
|
selectedMetadata: BaseField;
|
|
67
71
|
dialogFormulaRef: MatDialogRef<TemplateRef<any>>;
|
|
@@ -76,6 +80,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
76
80
|
AttachmentType: typeof AttachmentType;
|
|
77
81
|
pickerModeEnum: typeof PickerModeEnum;
|
|
78
82
|
attachmentFieldTypeEnum: typeof AttachmentFieldTypeEnum;
|
|
83
|
+
dataGetterTypeEnum: typeof DataGetterTypeEnum;
|
|
79
84
|
subscription: any;
|
|
80
85
|
configColumnListImages: Array<ConfigColumn>;
|
|
81
86
|
configColumnImage: Array<ConfigColumn>;
|
|
@@ -84,6 +89,8 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
84
89
|
GenericListImagesValueTemplate: TemplateRef<any>;
|
|
85
90
|
imageSelectorAttachments: EqpAttachmentsComponent;
|
|
86
91
|
imageAttachment: EqpAttachmentsComponent;
|
|
92
|
+
dialogQERef: MatDialogRef<TemplateRef<any>>;
|
|
93
|
+
dialogQE: TemplateRef<any>;
|
|
87
94
|
constructor(formBuilder: UntypedFormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef);
|
|
88
95
|
ngOnInit(): void;
|
|
89
96
|
/**
|
|
@@ -120,6 +127,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
120
127
|
* @param restoreField Se TRUE ripristina i valori base (ereditati dal modello BaseField) del campo aggiunto/modificato
|
|
121
128
|
*/
|
|
122
129
|
onFieldTypeChange(restoreField?: boolean): void;
|
|
130
|
+
onDataGetterTypeChange(): void;
|
|
123
131
|
/**
|
|
124
132
|
* Metodo invocato al cambio del valore della proprietà ImageIsContextualAttachment nel caso
|
|
125
133
|
* di campi di tipo Immagine. Se TRUE allora rimuove i FormControl per le proprietà IsMultiAttach
|
|
@@ -218,6 +226,9 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
218
226
|
setResizedImagesHeightPx(): void;
|
|
219
227
|
deleteListImage(el: DynAttachment, i: number, col: number): void;
|
|
220
228
|
deleteImage(el: DynAttachment): void;
|
|
229
|
+
openDBGetter(): void;
|
|
230
|
+
closeQEModal(): void;
|
|
231
|
+
onExternalComponentOut(ev: eventOut): void;
|
|
221
232
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormFieldComponent, never>;
|
|
222
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormFieldComponent, "eqp-dynamic-module-add-form-field", never, { "field": "field"; "indexField": "indexField"; "formFieldsGroups": "formFieldsGroups"; "availableFields": "availableFields"; "fieldTypesToExclude": "fieldTypesToExclude"; }, { "saveFieldEvent": "saveFieldEvent"; }, never, never, false, never>;
|
|
233
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormFieldComponent, "eqp-dynamic-module-add-form-field", never, { "field": "field"; "indexField": "indexField"; "formFieldsGroups": "formFieldsGroups"; "availableFields": "availableFields"; "fieldTypesToExclude": "fieldTypesToExclude"; "QueryEditorComponent": "QueryEditorComponent"; }, { "out": "out"; "saveFieldEvent": "saveFieldEvent"; }, never, never, false, never>;
|
|
223
234
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ViewContainerRef, ComponentFactoryResolver, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicLoaderDirective {
|
|
4
|
+
private resolver;
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
set data(data: DynamicLoaderDirectiveData);
|
|
7
|
+
out: EventEmitter<eventOut>;
|
|
8
|
+
constructor(resolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef);
|
|
9
|
+
load(component: any, inputParams?: any): any;
|
|
10
|
+
/**
|
|
11
|
+
* Restrituisce un componente passandogli come parametro la chiave
|
|
12
|
+
* @param key
|
|
13
|
+
*/
|
|
14
|
+
getComponent(key: any): any;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicLoaderDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicLoaderDirective, "[appDynamicLoader]", never, { "data": "data"; }, { "out": "out"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
18
|
+
export declare class DynamicLoaderDirectiveData {
|
|
19
|
+
component: any;
|
|
20
|
+
inputParams: any;
|
|
21
|
+
}
|
|
22
|
+
export declare class eventOut {
|
|
23
|
+
EventName: string;
|
|
24
|
+
Behaviours: Array<string>;
|
|
25
|
+
Params: any;
|
|
26
|
+
}
|
|
@@ -40,18 +40,19 @@ import * as i37 from "./components/private/form-statistics/filter-templates/imag
|
|
|
40
40
|
import * as i38 from "./components/private/tmw-image-drawer/tmw-image-drawer.component";
|
|
41
41
|
import * as i39 from "./components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component";
|
|
42
42
|
import * as i40 from "./components/private/tmw-image-marker/tmw-image-marker.component";
|
|
43
|
-
import * as i41 from "./
|
|
44
|
-
import * as i42 from "
|
|
45
|
-
import * as i43 from "@angular/
|
|
46
|
-
import * as i44 from "@
|
|
47
|
-
import * as i45 from "@eqproject/eqp-
|
|
48
|
-
import * as i46 from "@eqproject/eqp-
|
|
49
|
-
import * as i47 from "@eqproject/eqp-
|
|
50
|
-
import * as i48 from "@eqproject/eqp-
|
|
51
|
-
import * as i49 from "@eqproject/eqp-
|
|
52
|
-
import * as i50 from "@
|
|
53
|
-
import * as i51 from "@
|
|
54
|
-
import * as i52 from "@
|
|
43
|
+
import * as i41 from "./directives/dynamic-loader/dynamic-loader.directive";
|
|
44
|
+
import * as i42 from "./modules/material.module";
|
|
45
|
+
import * as i43 from "@angular/forms";
|
|
46
|
+
import * as i44 from "@angular/common";
|
|
47
|
+
import * as i45 from "@eqproject/eqp-table";
|
|
48
|
+
import * as i46 from "@eqproject/eqp-attachments";
|
|
49
|
+
import * as i47 from "@eqproject/eqp-select";
|
|
50
|
+
import * as i48 from "@eqproject/eqp-datetimepicker";
|
|
51
|
+
import * as i49 from "@eqproject/eqp-filters";
|
|
52
|
+
import * as i50 from "@eqproject/eqp-img-drawing";
|
|
53
|
+
import * as i51 from "@angular/cdk/drag-drop";
|
|
54
|
+
import * as i52 from "@eqproject/eqp-numeric";
|
|
55
|
+
import * as i53 from "@canvasjs/angular-stockcharts";
|
|
55
56
|
export declare const customNumericMaskConfig: {
|
|
56
57
|
align: string;
|
|
57
58
|
allowNegative: boolean;
|
|
@@ -68,6 +69,6 @@ export declare const customNumericMaskConfig: {
|
|
|
68
69
|
};
|
|
69
70
|
export declare class EqpDynamicModuleModule {
|
|
70
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
|
|
71
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent, typeof i35.ImageFieldSelectorTemplateComponent, typeof i36.LabelFieldTemplateComponent, typeof i37.ImageSelectorFilterTemplateComponent, typeof i38.TmwImageDrawerComponent, typeof i39.ImageWithMarkersFieldTemplateComponent, typeof i40.TmwImageMarkerComponent], [typeof
|
|
72
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent, typeof i35.ImageFieldSelectorTemplateComponent, typeof i36.LabelFieldTemplateComponent, typeof i37.ImageSelectorFilterTemplateComponent, typeof i38.TmwImageDrawerComponent, typeof i39.ImageWithMarkersFieldTemplateComponent, typeof i40.TmwImageMarkerComponent, typeof i41.DynamicLoaderDirective], [typeof i42.MaterialModule, typeof i43.FormsModule, typeof i44.CommonModule, typeof i43.ReactiveFormsModule, typeof i45.EqpTableModule, typeof i46.EqpAttachmentsModule, typeof i47.EqpSelectModule, typeof i48.EqpDatetimepickerModule, typeof i49.EqpFiltersModule, typeof i50.EqpImgDrawingModule, typeof i51.DragDropModule, typeof i52.EqpNumericModule, typeof i53.CanvasJSAngularStockChartsModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i51.DragDropModule, typeof i53.CanvasJSChart, typeof i53.CanvasJSStockChart, typeof i41.DynamicLoaderDirective]>;
|
|
72
73
|
static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
|
|
73
74
|
}
|
|
@@ -34,6 +34,8 @@ export declare class BaseField extends BaseObj {
|
|
|
34
34
|
Invisibility: FieldInvisibilityEnum;
|
|
35
35
|
FieldType: FieldTypeEnum;
|
|
36
36
|
FieldValue: any;
|
|
37
|
+
DataGetterType: DataGetterTypeEnum;
|
|
38
|
+
DataGetterValue: any;
|
|
37
39
|
FormFormGroup: UntypedFormGroup;
|
|
38
40
|
}
|
|
39
41
|
export declare class AnswerStyle {
|
|
@@ -59,6 +61,12 @@ export declare enum FieldTypeEnum {
|
|
|
59
61
|
"Etichetta" = 12,
|
|
60
62
|
"Immagine con markers" = 13
|
|
61
63
|
}
|
|
64
|
+
export declare enum DataGetterTypeEnum {
|
|
65
|
+
'Manuale' = 1,
|
|
66
|
+
'Formula' = 2,
|
|
67
|
+
'Da database' = 3,
|
|
68
|
+
'Da modulo dinamico' = 4
|
|
69
|
+
}
|
|
62
70
|
export declare enum ColSpanSizesEnum {
|
|
63
71
|
'col-sm-3' = 1,
|
|
64
72
|
'col-sm-4' = 2,
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -48,3 +48,4 @@ export * from './lib/services/eqp-dynamic-module-dialog.service';
|
|
|
48
48
|
export * from './lib/services/spinner.service';
|
|
49
49
|
export * from './lib/services/utilityHelper.services';
|
|
50
50
|
export * from './lib/models/graph.model';
|
|
51
|
+
export * from './lib/directives/dynamic-loader/dynamic-loader.directive';
|