@eqproject/eqp-dynamic-module 2.4.22 → 2.4.24
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/private/add-form-field/add-form-field.component.mjs +42 -28
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +27 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +27 -14
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -13,12 +13,14 @@ import { TextMaskEnum } from "../../../models/fields/textField.model";
|
|
|
13
13
|
import { FormFieldGroup } from "../../../models/form.model";
|
|
14
14
|
import { AttachmentFieldTypeEnum, DynAttachment } from "../../../models/dynAttachment";
|
|
15
15
|
import { DynamicLoaderDirectiveData, eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
|
|
16
|
+
import { HttpClient } from "@angular/common/http";
|
|
16
17
|
import * as i0 from "@angular/core";
|
|
17
18
|
export declare class AddFormFieldComponent implements OnInit {
|
|
18
19
|
private formBuilder;
|
|
19
20
|
private enumHelper;
|
|
20
21
|
private dialog;
|
|
21
22
|
private cdr;
|
|
23
|
+
private httpClient;
|
|
22
24
|
field: BaseField | any;
|
|
23
25
|
indexField: number;
|
|
24
26
|
formFieldsGroups: Array<FormFieldGroup>;
|
|
@@ -91,7 +93,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
91
93
|
imageAttachment: EqpAttachmentsComponent;
|
|
92
94
|
dialogQERef: MatDialogRef<TemplateRef<any>>;
|
|
93
95
|
dialogQE: TemplateRef<any>;
|
|
94
|
-
constructor(formBuilder: UntypedFormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef);
|
|
96
|
+
constructor(formBuilder: UntypedFormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef, httpClient: HttpClient);
|
|
95
97
|
ngOnInit(): void;
|
|
96
98
|
/**
|
|
97
99
|
* Metodo per impostare i valori da suggerire nell'autocomplete del campo Formula.
|
|
@@ -229,6 +231,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
229
231
|
openDBGetter(): void;
|
|
230
232
|
closeQEModal(): void;
|
|
231
233
|
onExternalComponentOut(ev: eventOut): void;
|
|
234
|
+
treatDataFromQueryEditor(data: any): void;
|
|
232
235
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormFieldComponent, never>;
|
|
233
236
|
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>;
|
|
234
237
|
}
|