@eqproject/eqp-dynamic-module 2.2.16 → 2.2.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 +20 -7
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -1
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +9 -3
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +47 -14
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +84 -25
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -6
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -3
- package/esm2020/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.mjs +75 -0
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +413 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +104 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +85 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +120 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +120 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +134 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +134 -0
- package/esm2020/lib/eqp-dynamic-module.module.mjs +36 -3
- package/esm2020/lib/models/dynamicModuleViewModeEnum.mjs +2 -1
- package/esm2020/lib/models/endPointConfiguration.model.mjs +13 -1
- package/esm2020/lib/models/fields/listValueField.model.mjs +1 -1
- package/esm2020/lib/models/logicOperator.model.mjs +36 -0
- package/esm2020/lib/models/statistic.model.mjs +3 -0
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +1660 -215
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +1659 -215
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +6 -2
- package/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.d.ts +4 -1
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -3
- package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +1 -1
- package/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.d.ts +42 -0
- package/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.d.ts +99 -0
- package/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +37 -0
- package/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.d.ts +33 -0
- package/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +46 -0
- package/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.d.ts +40 -0
- package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +43 -0
- package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +43 -0
- package/lib/eqp-dynamic-module.module.d.ts +21 -10
- package/lib/models/dynamicModuleViewModeEnum.d.ts +2 -1
- package/lib/models/endPointConfiguration.model.d.ts +1 -0
- package/lib/models/fields/listValueField.model.d.ts +4 -0
- package/lib/models/logicOperator.model.d.ts +30 -0
- package/lib/models/statistic.model.d.ts +8 -0
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import { DynamicModuleViewModeEnum } from "../../../models/dynamicModuleViewMode
|
|
|
8
8
|
import { EndPointConfiguration } from "../../../models/endPointConfiguration.model";
|
|
9
9
|
import { Form, FormTypeEnum } from "../../../models/form.model";
|
|
10
10
|
import { DynamicModuleListFormRecordActionsDefault } from "../../../models/dynamicModuleListFormRecordActionsDefault";
|
|
11
|
-
import { Record, RecordButton } from "../../../models/record.model";
|
|
11
|
+
import { DynRecord, Record, RecordButton } from "../../../models/record.model";
|
|
12
12
|
import { UtilityHelperService } from "../../../services/utilityHelper.services";
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit {
|
|
@@ -29,6 +29,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
29
29
|
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
30
30
|
onSaveBackToList: boolean;
|
|
31
31
|
onBackTo: DynamicModuleViewModeEnum;
|
|
32
|
+
internalListView: boolean;
|
|
32
33
|
context: Context;
|
|
33
34
|
/**
|
|
34
35
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
@@ -55,6 +56,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
55
56
|
deleteRecord: EventEmitter<Record>;
|
|
56
57
|
duplicateRecord: EventEmitter<Record>;
|
|
57
58
|
SaveJSON: EventEmitter<string>;
|
|
59
|
+
afterFilter: EventEmitter<Array<DynRecord>>;
|
|
58
60
|
/**
|
|
59
61
|
* Eventi emessi DOPO aver eseguito una chiamata al server per il salvataggio,
|
|
60
62
|
* l'eliminazione o la duplicazione di un record all'endpoint specificato.
|
|
@@ -69,6 +71,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
69
71
|
selectedRecord: Record;
|
|
70
72
|
onlyView: boolean;
|
|
71
73
|
viewMode: DynamicModuleViewModeEnum;
|
|
74
|
+
defaultViewMode: DynamicModuleViewModeEnum;
|
|
72
75
|
dynamicModuleCompileConfig: DynamicModuleCompileConfig;
|
|
73
76
|
dynamicModuleListConfig: DynamicModuleListConfig;
|
|
74
77
|
dynamicModuleRepairConfig: DynamicModuleRepairConfig;
|
|
@@ -139,6 +142,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
139
142
|
*/
|
|
140
143
|
onDeleteRecord(record: Record): void;
|
|
141
144
|
onAfterDeleteRecord(record: Record): void;
|
|
145
|
+
onAfterFilter(ev: any): void;
|
|
142
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
143
|
-
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"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
|
|
147
|
+
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"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "internalListView": "internalListView"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
|
|
144
148
|
}
|
|
@@ -4,6 +4,8 @@ import { ListPresentationEnum, ListValueField } from '../../../../models/fields/
|
|
|
4
4
|
import { IBaseFieldComponent } from '../../../../interfaces/iBaseFieldComponent.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ListValueFieldTemplateComponent implements OnInit, OnChanges, IBaseFieldComponent {
|
|
7
|
+
debugMode: boolean;
|
|
8
|
+
debugLog(message: string, element?: any): void;
|
|
7
9
|
field: ListValueField;
|
|
8
10
|
record: Record;
|
|
9
11
|
recordChange: EventEmitter<Record>;
|
|
@@ -53,6 +55,7 @@ export declare class ListValueFieldTemplateComponent implements OnInit, OnChange
|
|
|
53
55
|
* Metodo per aggiornare il valore e il validator del FormControl associato al campo.
|
|
54
56
|
*/
|
|
55
57
|
private setFormControlValue;
|
|
58
|
+
private stringToValuePairs;
|
|
56
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListValueFieldTemplateComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListValueFieldTemplateComponent, "list-value-field-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListValueFieldTemplateComponent, "list-value-field-template", never, { "debugMode": "debugMode"; "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
58
61
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from "@angular/core";
|
|
2
2
|
import { ConfigColumn, EqpTableComponent } from "@eqproject/eqp-table";
|
|
3
3
|
import { Form } from "../../../../models/form.model";
|
|
4
|
-
import { Record, RecordButton } from "../../../../models/record.model";
|
|
4
|
+
import { DynRecord, Record, RecordButton } from "../../../../models/record.model";
|
|
5
5
|
import { UtilityHelperService } from "../../../../services/utilityHelper.services";
|
|
6
6
|
import { DynamicModuleListFormRecordActionsDefault } from "../../../../models/dynamicModuleListFormRecordActionsDefault";
|
|
7
7
|
import { DynamicModuleListConfig } from "../../../../models/dynamicModuleListConfig.model";
|
|
@@ -27,6 +27,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
27
27
|
form: Form;
|
|
28
28
|
externalButtons: Array<RecordButton>;
|
|
29
29
|
onlyView: boolean;
|
|
30
|
+
records: Array<DynRecord>;
|
|
30
31
|
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
31
32
|
showTitle: boolean;
|
|
32
33
|
test: boolean;
|
|
@@ -111,7 +112,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
111
112
|
* Metodo per salvare i dati inseriti dall'utente una volta conclusa la compilazione della form.
|
|
112
113
|
*/
|
|
113
114
|
saveOrExitForm(record: Record): void;
|
|
114
|
-
onAfterSaveRecord(
|
|
115
|
+
onAfterSaveRecord(event: any): void;
|
|
115
116
|
/**
|
|
116
117
|
* Metodo invocato quando si vuole aggiungere, visualizzare o modificare un record.
|
|
117
118
|
* Se l'evento è null vuol dire che stiamo aggiungendo un nuovo record altrimenti siamo in modifica
|
|
@@ -126,6 +127,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
126
127
|
onlyView: boolean;
|
|
127
128
|
}): void;
|
|
128
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
130
131
|
}
|
|
131
132
|
export {};
|
|
@@ -27,7 +27,7 @@ export declare class SingleRecordComponent implements OnInit {
|
|
|
27
27
|
* Metodo per salvare i dati inseriti dall'utente una volta conclusa la compilazione della form.
|
|
28
28
|
*/
|
|
29
29
|
saveOrExitForm(record: Record): void;
|
|
30
|
-
onAfterSaveRecord(
|
|
30
|
+
onAfterSaveRecord(event: any): void;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleRecordComponent, never>;
|
|
32
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<SingleRecordComponent, "lib-single-record", never, { "debugMode": "debugMode"; "endPointConfiguration": "endPointConfiguration"; "record": "record"; "pageState": "pageState"; "userID": "userID"; "form": "form"; "showBackButton": "showBackButton"; "outCompileConfigurations": "outCompileConfigurations"; "onlyView": "onlyView"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
33
33
|
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { BaseField, FieldTypeEnum } from '../../../../models/baseField.model';
|
|
4
|
+
import { DynamicModuleListConfig } from '../../../../models/dynamicModuleListConfig.model';
|
|
5
|
+
import { Form } from '../../../../models/form.model';
|
|
6
|
+
import { Record } from '../../../../models/record.model';
|
|
7
|
+
import { ListFormRecordComponent } from '../../form-records/list-form-record/list-form-record.component';
|
|
8
|
+
import { DynamicModuleFieldFixComponent } from '../../dynamic-module-field-fix/dynamic-module-field.component';
|
|
9
|
+
import { Statistic } from '../../../../models/statistic.model';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DynamicModuleFilterFixComponent {
|
|
12
|
+
private dialog;
|
|
13
|
+
field: BaseField;
|
|
14
|
+
form: Form;
|
|
15
|
+
record: Record;
|
|
16
|
+
filterChange: EventEmitter<Statistic>;
|
|
17
|
+
configList: DynamicModuleListConfig;
|
|
18
|
+
FieldTypeEnum: typeof FieldTypeEnum;
|
|
19
|
+
selectedInnerForm: Form;
|
|
20
|
+
selectedInnerFormRecord: Record;
|
|
21
|
+
indexInnerFormRecord: number;
|
|
22
|
+
onlyViewInnerFormRecord: boolean;
|
|
23
|
+
dialogInnerFormRecordRef: MatDialogRef<TemplateRef<any>>;
|
|
24
|
+
dialogInnerFormRecord: TemplateRef<any>;
|
|
25
|
+
fieldTemplate: QueryList<DynamicModuleFieldFixComponent>;
|
|
26
|
+
listInnerFormRecords: QueryList<ListFormRecordComponent>;
|
|
27
|
+
constructor(dialog: MatDialog);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
/**
|
|
30
|
+
* Metodo invocato al cambio del valore di ogni proprietà dell'oggetto record.
|
|
31
|
+
* Serve ad aggiornare il valore di tutti i campi che hanno una formula.
|
|
32
|
+
*/
|
|
33
|
+
onFilterChange(ev: any): void;
|
|
34
|
+
/**
|
|
35
|
+
* Metodo per recuperare una InnerForm a partire dal Field che la rappresenta.
|
|
36
|
+
* @param field Campo a partire dal quale si vuole recuperare la InnerForm.
|
|
37
|
+
* @returns Restituisce un oggetto di tipo Form.
|
|
38
|
+
*/
|
|
39
|
+
getInnerFormFromField(field: BaseField): Form;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicModuleFilterFixComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicModuleFilterFixComponent, "dynamic-module-filter-fix", never, { "field": "field"; "form": "form"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicModuleCompileConfig } from '../../../../models/dynamicModuleCompileConfig.model';
|
|
4
|
+
import { BaseField, FieldTypeEnum } from '../../../../models/baseField.model';
|
|
5
|
+
import { Form, FormScalarTypeEnum } from '../../../../models/form.model';
|
|
6
|
+
import { DynRecord, Record, RecordButton } from '../../../../models/record.model';
|
|
7
|
+
import { UtilityHelperService } from '../../../../services/utilityHelper.services';
|
|
8
|
+
import { DynamicModuleFieldFixComponent } from '../../dynamic-module-field-fix/dynamic-module-field.component';
|
|
9
|
+
import { EndPointConfiguration } from './../../../../models/endPointConfiguration.model';
|
|
10
|
+
import { Statistic } from 'projects/eqp-dynamic-module/src/lib/models/statistic.model';
|
|
11
|
+
import { DynamicModuleListConfig } from 'projects/eqp-dynamic-module/src/lib/models/dynamicModuleListConfig.model';
|
|
12
|
+
import { DynamicModuleListFormRecordActionsDefault } from 'projects/eqp-dynamic-module/src/lib/models/dynamicModuleListFormRecordActionsDefault';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class FilterFormStatisticComponent {
|
|
15
|
+
private cdr;
|
|
16
|
+
utilityService: UtilityHelperService;
|
|
17
|
+
debugMode: boolean;
|
|
18
|
+
debugLog(message: string, element?: any): void;
|
|
19
|
+
configurations: DynamicModuleCompileConfig;
|
|
20
|
+
endPointConfiguration: EndPointConfiguration;
|
|
21
|
+
userID: string;
|
|
22
|
+
externalButtons: Array<RecordButton>;
|
|
23
|
+
formID: string;
|
|
24
|
+
form: Form;
|
|
25
|
+
record: Record | string;
|
|
26
|
+
onlyView: boolean;
|
|
27
|
+
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
28
|
+
internalListView: boolean;
|
|
29
|
+
showTitle: boolean;
|
|
30
|
+
showSaveButton: boolean;
|
|
31
|
+
showBackButton: boolean;
|
|
32
|
+
loader: boolean;
|
|
33
|
+
showListView: boolean;
|
|
34
|
+
filterResults: Array<DynRecord>;
|
|
35
|
+
listViewConfigurations: DynamicModuleListConfig;
|
|
36
|
+
formForm: UntypedFormGroup;
|
|
37
|
+
fieldGroups: {
|
|
38
|
+
[key: string]: Array<BaseField>;
|
|
39
|
+
};
|
|
40
|
+
FormScalarTypeEnum: typeof FormScalarTypeEnum;
|
|
41
|
+
FieldTypeEnum: typeof FieldTypeEnum;
|
|
42
|
+
saveRecordEvent: EventEmitter<Record>;
|
|
43
|
+
afterSaveRecordEvent: EventEmitter<Record>;
|
|
44
|
+
afterFilter: EventEmitter<Array<DynRecord>>;
|
|
45
|
+
fieldTemplate: QueryList<DynamicModuleFieldFixComponent>;
|
|
46
|
+
filters: Array<Statistic>;
|
|
47
|
+
constructor(cdr: ChangeDetectorRef, utilityService: UtilityHelperService);
|
|
48
|
+
ngOnInit(): void;
|
|
49
|
+
/**
|
|
50
|
+
* Metodo invocato al cambio del valore di ogni proprietà dell'oggetto record.
|
|
51
|
+
* Serve ad aggiornare il valore di tutti i campi che hanno una formula.
|
|
52
|
+
*/
|
|
53
|
+
onFilterChange(ev: Statistic): void;
|
|
54
|
+
ApplyFilter(): void;
|
|
55
|
+
reset(): void;
|
|
56
|
+
previewOrNewResponseRecord(): void;
|
|
57
|
+
editResponseRecord(): void;
|
|
58
|
+
/**
|
|
59
|
+
* Metodo per salvare i dati inseriti dall'utente una volta conclusa la compilazione della form.
|
|
60
|
+
*/
|
|
61
|
+
saveOrExitForm(exit: boolean): void;
|
|
62
|
+
/**
|
|
63
|
+
* Metodo per salvare il record aggiunto o modificato.
|
|
64
|
+
* Se è stato configurato un endPoint per il salvataggio viene effettuata una chiamata al server passando l'oggeto da salvare
|
|
65
|
+
* nel body della chiamata, altrimenti scatena l'evento "saveRecord".
|
|
66
|
+
* @param event Oggetto di tipo Record da salvare.
|
|
67
|
+
*/
|
|
68
|
+
onSaveRecord(event: Record): void;
|
|
69
|
+
getFormByID(id?: string): void;
|
|
70
|
+
getRecordByID(): void;
|
|
71
|
+
getFormByIDandVersion(): void;
|
|
72
|
+
fieldsConfig(): void;
|
|
73
|
+
/**
|
|
74
|
+
* Metodo per creare nell'oggetto Record le proprietà mancanti rispetto ai campi che compongono la form.
|
|
75
|
+
*/
|
|
76
|
+
private createRecordProperties;
|
|
77
|
+
/**
|
|
78
|
+
* Metodo per riordinare i campi che compongono la form.
|
|
79
|
+
*/
|
|
80
|
+
private reorderFormFields;
|
|
81
|
+
/**
|
|
82
|
+
* Metodo per creare il FormGroup che rappresenta la form.
|
|
83
|
+
*/
|
|
84
|
+
private createFormGroup;
|
|
85
|
+
/**
|
|
86
|
+
* Metodo per creare i gruppi in cui raggruppare i campi della form in base
|
|
87
|
+
* a come è stata configurata dall'utente.
|
|
88
|
+
*/
|
|
89
|
+
private createFieldGroups;
|
|
90
|
+
/**
|
|
91
|
+
* Metodo per creare il FormGroup che rappresenta la form.
|
|
92
|
+
*/
|
|
93
|
+
private createHTMLreadableValues;
|
|
94
|
+
private getResponseValues;
|
|
95
|
+
private getResponseTemplate;
|
|
96
|
+
private replaceTemplatePlaceholdersWithValues;
|
|
97
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterFormStatisticComponent, never>;
|
|
98
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterFormStatisticComponent, "filter-form-statistic", never, { "debugMode": "debugMode"; "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "externalButtons": "externalButtons"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "defaultListActions": "defaultListActions"; "internalListView": "internalListView"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "afterFilter": "afterFilter"; }, never, never, false, never>;
|
|
99
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { LogicOperatorText } from '../../../../../models/logicOperator.model';
|
|
3
|
+
import { Record } from '../../../../../models/record.model';
|
|
4
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
5
|
+
import { TextField } from '../../../../../models/fields/textField.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AttachmentFilterTemplateComponent {
|
|
8
|
+
field: TextField;
|
|
9
|
+
record: Record;
|
|
10
|
+
filterChange: EventEmitter<any>;
|
|
11
|
+
logicOperatorText: typeof LogicOperatorText;
|
|
12
|
+
selectedLogicOperator: LogicOperatorText;
|
|
13
|
+
activeCondition: boolean;
|
|
14
|
+
onFilterChange(): void;
|
|
15
|
+
/**
|
|
16
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
17
|
+
*/
|
|
18
|
+
generateCondition(mode: any): Statistic;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentFilterTemplateComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentFilterTemplateComponent, "attachment-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Record } from '../../../../../models/record.model';
|
|
3
|
+
import { LogicOperatorBoolean } from '../../../../../models/logicOperator.model';
|
|
4
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
5
|
+
import { BooleanField } from '../../../../../models/fields/booleanField.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BooleanFilterTemplateComponent {
|
|
8
|
+
field: BooleanField;
|
|
9
|
+
record: Record;
|
|
10
|
+
filterChange: EventEmitter<any>;
|
|
11
|
+
validatorsArray: any[];
|
|
12
|
+
logicOperatorBoolean: typeof LogicOperatorBoolean;
|
|
13
|
+
selectedLogicOperator: LogicOperatorBoolean;
|
|
14
|
+
activeCondition: boolean;
|
|
15
|
+
FieldstyleObj: any;
|
|
16
|
+
LabelstyleObj: any;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
initStyles(): void;
|
|
20
|
+
/**
|
|
21
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
22
|
+
*/
|
|
23
|
+
onFilterChange(): void;
|
|
24
|
+
/**
|
|
25
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
26
|
+
*/
|
|
27
|
+
generateCondition(mode: any): Statistic;
|
|
28
|
+
/**
|
|
29
|
+
* Metodo per configurare eqp-numeric
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* Metodo di aggiunta dei validator dell'input
|
|
33
|
+
*/
|
|
34
|
+
private configureControllers;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanFilterTemplateComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanFilterTemplateComponent, "boolean-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { PickerModeEnum } from '@eqproject/eqp-datetimepicker';
|
|
3
|
+
import { Record } from '../../../../../models/record.model';
|
|
4
|
+
import { DateField } from '../../../../../models/fields/dateField.model';
|
|
5
|
+
import { LogicOperatorDate } from '../../../../../models/logicOperator.model';
|
|
6
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DateFilterTemplateComponent {
|
|
9
|
+
field: DateField;
|
|
10
|
+
record: Record;
|
|
11
|
+
filterChange: EventEmitter<any>;
|
|
12
|
+
pickerMode: PickerModeEnum;
|
|
13
|
+
logicOperatorNumeric: typeof LogicOperatorDate;
|
|
14
|
+
selectedLogicOperator: LogicOperatorDate;
|
|
15
|
+
activeCondition: boolean;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
/**
|
|
19
|
+
* In base al formato della data richiesta nel DateField (solo data, solo orario o data e ora)
|
|
20
|
+
* imposta la visualizzazione corretta del componente eqp-datetimepicker.
|
|
21
|
+
*/
|
|
22
|
+
private setTimeType;
|
|
23
|
+
/**
|
|
24
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
25
|
+
*/
|
|
26
|
+
onFilterChange(): void;
|
|
27
|
+
/**
|
|
28
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
29
|
+
*/
|
|
30
|
+
generateCondition(mode: any): Statistic;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterTemplateComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterTemplateComponent, "date-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { LogicOperatorText } from '../../../../../models/logicOperator.model';
|
|
3
|
+
import { Record } from '../../../../../models/record.model';
|
|
4
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
5
|
+
import { TextField } from '../../../../../models/fields/textField.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ImageFilterTemplateComponent {
|
|
8
|
+
field: TextField;
|
|
9
|
+
record: Record;
|
|
10
|
+
filterChange: EventEmitter<any>;
|
|
11
|
+
logicOperatorText: typeof LogicOperatorText;
|
|
12
|
+
selectedLogicOperator: LogicOperatorText;
|
|
13
|
+
activeCondition: boolean;
|
|
14
|
+
onFilterChange(): void;
|
|
15
|
+
/**
|
|
16
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
17
|
+
*/
|
|
18
|
+
generateCondition(mode: any): Statistic;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageFilterTemplateComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageFilterTemplateComponent, "image-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { LogicOperatorText } from '../../../../../models/logicOperator.model';
|
|
3
|
+
import { Record } from '../../../../../models/record.model';
|
|
4
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
5
|
+
import { TextField } from '../../../../../models/fields/textField.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ListFormRecordFilterTemplateComponent {
|
|
8
|
+
field: TextField;
|
|
9
|
+
record: Record;
|
|
10
|
+
filterChange: EventEmitter<any>;
|
|
11
|
+
logicOperatorText: typeof LogicOperatorText;
|
|
12
|
+
selectedLogicOperator: LogicOperatorText;
|
|
13
|
+
activeCondition: boolean;
|
|
14
|
+
onFilterChange(): void;
|
|
15
|
+
/**
|
|
16
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
17
|
+
*/
|
|
18
|
+
generateCondition(mode: any): Statistic;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListFormRecordFilterTemplateComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordFilterTemplateComponent, "list-form-record-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Record } from '../../../../../models/record.model';
|
|
3
|
+
import { LogicOperatorListValue } from '../../../../../models/logicOperator.model';
|
|
4
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
5
|
+
import { ListValueField } from '../../../../../models/fields/listValueField.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ListValueFilterTemplateComponent {
|
|
8
|
+
field: ListValueField;
|
|
9
|
+
record: Record;
|
|
10
|
+
filterChange: EventEmitter<Statistic>;
|
|
11
|
+
validatorsArray: any[];
|
|
12
|
+
logicOperatorListValue: typeof LogicOperatorListValue;
|
|
13
|
+
selectedLogicOperator: LogicOperatorListValue;
|
|
14
|
+
activeCondition: boolean;
|
|
15
|
+
FieldstyleObj: any;
|
|
16
|
+
LabelstyleObj: any;
|
|
17
|
+
arrayData: {
|
|
18
|
+
Key: string;
|
|
19
|
+
Value: any;
|
|
20
|
+
Selected?: boolean;
|
|
21
|
+
ImgUrl?: string;
|
|
22
|
+
}[];
|
|
23
|
+
constructor();
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
initStyles(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
28
|
+
*/
|
|
29
|
+
onFilterChange(): void;
|
|
30
|
+
/**
|
|
31
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
32
|
+
*/
|
|
33
|
+
generateCondition(mode: any): Statistic;
|
|
34
|
+
/**
|
|
35
|
+
* Metodo di aggiunta dei validator dell'input
|
|
36
|
+
*/
|
|
37
|
+
private configureControllers;
|
|
38
|
+
/**
|
|
39
|
+
* Metodo per creare un array di oggetti del tipo { Key: string, Value: any } da usare come sorgente dati per la eqp-select.
|
|
40
|
+
*/
|
|
41
|
+
private setArrayData;
|
|
42
|
+
private createArrayDataElement;
|
|
43
|
+
private createNumberArrayDataElement;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListValueFilterTemplateComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListValueFilterTemplateComponent, "list-value-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { NumericMaskConfig } from '@eqproject/eqp-numeric';
|
|
3
|
+
import { Record } from '../../../../../models/record.model';
|
|
4
|
+
import { NumericField } from '../../../../../models/fields/numericField.model';
|
|
5
|
+
import { LogicOperatorNumeric } from '../../../../../models/logicOperator.model';
|
|
6
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class NumericFilterTemplateComponent implements OnInit {
|
|
9
|
+
field: NumericField;
|
|
10
|
+
record: Record;
|
|
11
|
+
filterChange: EventEmitter<any>;
|
|
12
|
+
validatorsArray: any[];
|
|
13
|
+
eqpNumericOptions: Partial<NumericMaskConfig>;
|
|
14
|
+
logicOperatorNumeric: typeof LogicOperatorNumeric;
|
|
15
|
+
selectedLogicOperator: LogicOperatorNumeric;
|
|
16
|
+
activeCondition: boolean;
|
|
17
|
+
FieldstyleObj: any;
|
|
18
|
+
LabelstyleObj: any;
|
|
19
|
+
constructor();
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
initStyles(): void;
|
|
22
|
+
/**
|
|
23
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
24
|
+
*/
|
|
25
|
+
onFilterChange(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
28
|
+
*/
|
|
29
|
+
generateCondition(mode: any): Statistic;
|
|
30
|
+
/**
|
|
31
|
+
* Metodo per configurare eqp-numeric
|
|
32
|
+
*/
|
|
33
|
+
private configureEqpNumericOptions;
|
|
34
|
+
/**
|
|
35
|
+
* Metodo di aggiunta dei validator dell'input
|
|
36
|
+
*/
|
|
37
|
+
private configureControllers;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericFilterTemplateComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFilterTemplateComponent, "numeric-filter-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Record } from '../../../../../models/record.model';
|
|
3
|
+
import { TextMaskEnum, TextField } from '../../../../../models/fields/textField.model';
|
|
4
|
+
import { VoiceRecognitionService } from '../../../../../services/voice-recognition.service';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { LogicOperatorText } from '../../../../../models/logicOperator.model';
|
|
7
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TextFilterTemplateComponent {
|
|
10
|
+
voiceservice: VoiceRecognitionService;
|
|
11
|
+
isStillRecoginze: boolean;
|
|
12
|
+
source: import("rxjs").Observable<number>;
|
|
13
|
+
newtext: string;
|
|
14
|
+
subscription: Subscription;
|
|
15
|
+
field: TextField;
|
|
16
|
+
record: Record;
|
|
17
|
+
STT: boolean;
|
|
18
|
+
FieldstyleObj: any;
|
|
19
|
+
LabelstyleObj: any;
|
|
20
|
+
recordChange: EventEmitter<Record>;
|
|
21
|
+
InputMaskEnum: typeof TextMaskEnum;
|
|
22
|
+
filterChange: EventEmitter<any>;
|
|
23
|
+
logicOperatorText: typeof LogicOperatorText;
|
|
24
|
+
selectedLogicOperator: LogicOperatorText;
|
|
25
|
+
activeCondition: boolean;
|
|
26
|
+
constructor(voiceservice: VoiceRecognitionService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
initStyles(): void;
|
|
29
|
+
ttsClick(): void;
|
|
30
|
+
getInputType(): "text" | "email" | "password" | "tel" | "url";
|
|
31
|
+
updateRTVoiceField(): void;
|
|
32
|
+
updateVoiceField(): void;
|
|
33
|
+
/**
|
|
34
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
35
|
+
*/
|
|
36
|
+
onFilterChange(): void;
|
|
37
|
+
/**
|
|
38
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
39
|
+
*/
|
|
40
|
+
generateCondition(mode: any): Statistic;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextFilterTemplateComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextFilterTemplateComponent, "text-filter-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; "filterChange": "filterChange"; }, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Record } from '../../../../../models/record.model';
|
|
3
|
+
import { TextMaskEnum, TextField } from '../../../../../models/fields/textField.model';
|
|
4
|
+
import { VoiceRecognitionService } from '../../../../../services/voice-recognition.service';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { LogicOperatorText } from '../../../../../models/logicOperator.model';
|
|
7
|
+
import { Statistic } from '../../../../../models/statistic.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TextareaFilterTemplateComponent {
|
|
10
|
+
voiceservice: VoiceRecognitionService;
|
|
11
|
+
isStillRecoginze: boolean;
|
|
12
|
+
source: import("rxjs").Observable<number>;
|
|
13
|
+
newtext: string;
|
|
14
|
+
subscription: Subscription;
|
|
15
|
+
field: TextField;
|
|
16
|
+
record: Record;
|
|
17
|
+
STT: boolean;
|
|
18
|
+
FieldstyleObj: any;
|
|
19
|
+
LabelstyleObj: any;
|
|
20
|
+
recordChange: EventEmitter<Record>;
|
|
21
|
+
InputMaskEnum: typeof TextMaskEnum;
|
|
22
|
+
filterChange: EventEmitter<any>;
|
|
23
|
+
logicOperatorText: typeof LogicOperatorText;
|
|
24
|
+
selectedLogicOperator: LogicOperatorText;
|
|
25
|
+
activeCondition: boolean;
|
|
26
|
+
constructor(voiceservice: VoiceRecognitionService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
initStyles(): void;
|
|
29
|
+
ttsClick(): void;
|
|
30
|
+
getInputType(): "text" | "email" | "password" | "tel" | "url";
|
|
31
|
+
updateRTVoiceField(): void;
|
|
32
|
+
updateVoiceField(): void;
|
|
33
|
+
/**
|
|
34
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
35
|
+
*/
|
|
36
|
+
onFilterChange(): void;
|
|
37
|
+
/**
|
|
38
|
+
* Metodo che genera l'oggetto da inviare all'esterno
|
|
39
|
+
*/
|
|
40
|
+
generateCondition(mode: any): Statistic;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFilterTemplateComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFilterTemplateComponent, "textarea-filter-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; "filterChange": "filterChange"; }, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -20,17 +20,28 @@ import * as i18 from "./components/private/spinner/spinner.component";
|
|
|
20
20
|
import * as i19 from "./components/private/add-formula-field/add-formula-field.component";
|
|
21
21
|
import * as i20 from "./components/private/form-records/repair-form-fields/repair-form-fields.component";
|
|
22
22
|
import * as i21 from "./components/private/form-records/list-view-form-record/single-record/single-record.component";
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "
|
|
25
|
-
import * as i24 from "
|
|
26
|
-
import * as i25 from "
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "
|
|
31
|
-
import * as i30 from "
|
|
23
|
+
import * as i22 from "./components/private/form-statistics/filter-form-statistic/filter-form-statistic.component";
|
|
24
|
+
import * as i23 from "./components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component";
|
|
25
|
+
import * as i24 from "./components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component";
|
|
26
|
+
import * as i25 from "./components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component";
|
|
27
|
+
import * as i26 from "./components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component";
|
|
28
|
+
import * as i27 from "./components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component";
|
|
29
|
+
import * as i28 from "./components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component";
|
|
30
|
+
import * as i29 from "./components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component";
|
|
31
|
+
import * as i30 from "./components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component";
|
|
32
|
+
import * as i31 from "./components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component";
|
|
33
|
+
import * as i32 from "./components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component";
|
|
34
|
+
import * as i33 from "./modules/material.module";
|
|
35
|
+
import * as i34 from "@angular/forms";
|
|
36
|
+
import * as i35 from "@angular/common";
|
|
37
|
+
import * as i36 from "@eqproject/eqp-table";
|
|
38
|
+
import * as i37 from "@eqproject/eqp-attachments";
|
|
39
|
+
import * as i38 from "@eqproject/eqp-select";
|
|
40
|
+
import * as i39 from "@eqproject/eqp-datetimepicker";
|
|
41
|
+
import * as i40 from "@eqproject/eqp-filters";
|
|
42
|
+
import * as i41 from "@eqproject/eqp-numeric";
|
|
32
43
|
export declare class EqpDynamicModuleModule {
|
|
33
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
|
|
34
|
-
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
|
|
45
|
+
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.MaterialModule, typeof i34.FormsModule, typeof i35.CommonModule, typeof i34.ReactiveFormsModule, typeof i36.EqpTableModule, typeof i37.EqpAttachmentsModule, typeof i38.EqpSelectModule, typeof i39.EqpDatetimepickerModule, typeof i40.EqpFiltersModule, typeof i41.EqpNumericModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent]>;
|
|
35
46
|
static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
|
|
36
47
|
}
|