@eqproject/eqp-dynamic-module 2.4.27 → 2.4.29
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 +20 -7
- package/esm2020/lib/components/private/dbgetter/dbgetter.component.mjs +16 -9
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +8 -5
- package/esm2020/lib/models/baseField.model.mjs +2 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +40 -17
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +40 -17
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +7 -1
- package/lib/components/private/dbgetter/dbgetter.component.d.ts +2 -1
- package/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.d.ts +1 -0
- package/lib/models/baseField.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ 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,
|
|
8
|
+
import { BaseField, ColSpanSizesEnum, 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";
|
|
@@ -14,6 +14,7 @@ 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
16
|
import { HttpClient } from "@angular/common/http";
|
|
17
|
+
import { DataGetterTypeEnum } from '../../../models/baseField.model';
|
|
17
18
|
import * as i0 from "@angular/core";
|
|
18
19
|
export declare class AddFormFieldComponent implements OnInit {
|
|
19
20
|
private formBuilder;
|
|
@@ -54,6 +55,10 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
54
55
|
value: string;
|
|
55
56
|
}[];
|
|
56
57
|
fieldInvisibilityEnum: typeof FieldInvisibilityEnum;
|
|
58
|
+
columnKeys: Array<{
|
|
59
|
+
key: string;
|
|
60
|
+
value: string;
|
|
61
|
+
}>;
|
|
57
62
|
fieldTypeFormTemplate: TemplateRef<any>;
|
|
58
63
|
textFieldFormTemplate: TemplateRef<any>;
|
|
59
64
|
labelFieldFormTemplate: TemplateRef<any>;
|
|
@@ -232,6 +237,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
232
237
|
closeQEModal(): void;
|
|
233
238
|
onExternalComponentOut(ev: eventOut): void;
|
|
234
239
|
treatDataFromQueryEditor(data: any): void;
|
|
240
|
+
createColumnKeys(data: any): void;
|
|
235
241
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormFieldComponent, never>;
|
|
236
242
|
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>;
|
|
237
243
|
}
|
|
@@ -20,7 +20,8 @@ export declare class DbgetterComponent {
|
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
onExternalSQLResultOut(ev: eventOut): void;
|
|
22
22
|
processResult(data: any): void;
|
|
23
|
-
|
|
23
|
+
selectValueNotForced(value: any): void;
|
|
24
|
+
selectValueForced(row: any): void;
|
|
24
25
|
close(): void;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbgetterComponent, never>;
|
|
26
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbgetterComponent, "dbgetter", never, { "field": "field"; "record": "record"; "inConfig": "inConfig"; "QueryEditorComponent": "QueryEditorComponent"; "data": "data"; }, { "out": "out"; "selectedValue": "selectedValue"; }, never, never, false, never>;
|
|
@@ -25,6 +25,7 @@ export declare class DynamicModuleFieldFixComponent implements OnInit, IBaseFiel
|
|
|
25
25
|
DataGetterTypeEnum: typeof DataGetterTypeEnum;
|
|
26
26
|
DBGetterValue: any;
|
|
27
27
|
DBGetterLoaded: boolean;
|
|
28
|
+
DBGetterExact: boolean;
|
|
28
29
|
selectedInnerForm: Form;
|
|
29
30
|
selectedInnerFormRecord: Record;
|
|
30
31
|
indexInnerFormRecord: number;
|