@eqproject/eqp-dynamic-module 2.6.3 → 2.6.5

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.
Files changed (44) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +9 -3
  2. package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +80 -3
  3. package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
  4. package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +84 -4
  5. package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +13 -3
  6. package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +9 -3
  7. package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +1 -1
  8. package/esm2020/lib/components/private/graphs/graphs.component.mjs +3 -3
  9. package/esm2020/lib/components/private/trigger-creator/dynamic-module-trigger-fix/dynamic-module-trigger-fix.component.mjs +68 -0
  10. package/esm2020/lib/components/private/trigger-creator/trigger-creator.component.mjs +142 -0
  11. package/esm2020/lib/components/private/trigger-creator/trigger-templates/boolean-trigger-template/boolean-trigger-template.component.mjs +86 -0
  12. package/esm2020/lib/components/private/trigger-creator/trigger-templates/date-trigger-template/date-trigger-template.component.mjs +86 -0
  13. package/esm2020/lib/components/private/trigger-creator/trigger-templates/list-form-record-trigger-template/list-form-record-trigger-template.component.mjs +60 -0
  14. package/esm2020/lib/components/private/trigger-creator/trigger-templates/list-value-trigger-template/list-value-trigger-template.component.mjs +136 -0
  15. package/esm2020/lib/components/private/trigger-creator/trigger-templates/numeric-trigger-template/numeric-trigger-template.component.mjs +102 -0
  16. package/esm2020/lib/components/private/trigger-creator/trigger-templates/text-trigger-template/text-trigger-template.component.mjs +116 -0
  17. package/esm2020/lib/components/private/trigger-creator/trigger-templates/textarea-trigger-template/textarea-trigger-template.component.mjs +116 -0
  18. package/esm2020/lib/eqp-dynamic-module.module.mjs +29 -2
  19. package/esm2020/lib/models/form.model.mjs +1 -1
  20. package/esm2020/lib/models/logicOperator.model.mjs +14 -1
  21. package/esm2020/lib/models/trigger.model.mjs +31 -0
  22. package/fesm2015/eqproject-eqp-dynamic-module.mjs +1228 -182
  23. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  24. package/fesm2020/eqproject-eqp-dynamic-module.mjs +1228 -182
  25. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  26. package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +4 -1
  27. package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +14 -1
  28. package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +4 -1
  29. package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -1
  30. package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +4 -1
  31. package/lib/components/private/trigger-creator/dynamic-module-trigger-fix/dynamic-module-trigger-fix.component.d.ts +42 -0
  32. package/lib/components/private/trigger-creator/trigger-creator.component.d.ts +34 -0
  33. package/lib/components/private/trigger-creator/trigger-templates/boolean-trigger-template/boolean-trigger-template.component.d.ts +34 -0
  34. package/lib/components/private/trigger-creator/trigger-templates/date-trigger-template/date-trigger-template.component.d.ts +34 -0
  35. package/lib/components/private/trigger-creator/trigger-templates/list-form-record-trigger-template/list-form-record-trigger-template.component.d.ts +24 -0
  36. package/lib/components/private/trigger-creator/trigger-templates/list-value-trigger-template/list-value-trigger-template.component.d.ts +50 -0
  37. package/lib/components/private/trigger-creator/trigger-templates/numeric-trigger-template/numeric-trigger-template.component.d.ts +37 -0
  38. package/lib/components/private/trigger-creator/trigger-templates/text-trigger-template/text-trigger-template.component.d.ts +41 -0
  39. package/lib/components/private/trigger-creator/trigger-templates/textarea-trigger-template/textarea-trigger-template.component.d.ts +41 -0
  40. package/lib/eqp-dynamic-module.module.d.ts +42 -33
  41. package/lib/models/form.model.d.ts +6 -0
  42. package/lib/models/logicOperator.model.d.ts +12 -0
  43. package/lib/models/trigger.model.d.ts +39 -0
  44. package/package.json +1 -1
@@ -12,6 +12,7 @@ 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
14
  import { eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
15
+ import { FireTrigger } from "../../../models/trigger.model";
15
16
  import * as i0 from "@angular/core";
16
17
  export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit {
17
18
  private utilityHelperService;
@@ -77,6 +78,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
77
78
  dragStarted: EventEmitter<Record>;
78
79
  dragReleased: EventEmitter<void>;
79
80
  out: EventEmitter<eventOut>;
81
+ fireTrigger: EventEmitter<FireTrigger>;
80
82
  form: Form;
81
83
  lastform: Form;
82
84
  FormTypeEnum: typeof FormTypeEnum;
@@ -152,6 +154,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
152
154
  onDragStarted(el: any): void;
153
155
  onDragReleased(): void;
154
156
  onExternalComponentOut(ev: eventOut): void;
157
+ onFireTrigger(ev: FireTrigger): void;
155
158
  static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
156
- static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "orgaID": "orgaID"; "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>;
159
+ static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "orgaID": "orgaID"; "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"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
157
160
  }
@@ -11,6 +11,7 @@ import { DynamicModuleCompileConfig } from "../../../models/dynamicModuleCompile
11
11
  import { DynamicModuleConfiguratorConfig } from "../../../models/dynamicModuleConfiguratorConfig.model";
12
12
  import { DomSanitizer } from "@angular/platform-browser";
13
13
  import { DynamicLoaderDirectiveData, eventOut } from "../../../directives/dynamic-loader/dynamic-loader.directive";
14
+ import { Trigger } from "../../../models/trigger.model";
14
15
  import * as i0 from "@angular/core";
15
16
  export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
16
17
  private formBuilder;
@@ -23,6 +24,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
23
24
  ProjectName: string;
24
25
  viewMode: string;
25
26
  QueryEditorComponent: DynamicLoaderDirectiveData;
27
+ triggers: any;
26
28
  loader: boolean;
27
29
  /**
28
30
  * Token da usare negli endpoint da chiamare per recuperare o salvare i record.
@@ -94,6 +96,11 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
94
96
  */
95
97
  afterSaveFormEvent: EventEmitter<Form>;
96
98
  out: EventEmitter<eventOut>;
99
+ dialogTriggersRef: MatDialogRef<TemplateRef<any>>;
100
+ dialogTriggers: TemplateRef<any>;
101
+ selectedTrigger: Trigger;
102
+ triggersColumns: Array<ConfigColumn>;
103
+ triggersTable: EqpTableComponent;
97
104
  constructor(formBuilder: UntypedFormBuilder, dialog: MatDialog, utilityHelperService: UtilityHelperService, sanitizer: DomSanitizer);
98
105
  ngOnInit(): void;
99
106
  /**
@@ -273,6 +280,12 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
273
280
  */
274
281
  private reloadActionsOnRecordTable;
275
282
  onExternalComponentOut(ev: eventOut): void;
283
+ /**
284
+ * TRIGGERS
285
+ */
286
+ openTriggersDialog(ev?: Trigger): void;
287
+ saveTrigger(element: Trigger): void;
288
+ deleteTrigger(element: Trigger): void;
276
289
  static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleConfiguratorComponent, 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>;
290
+ static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "ProjectName": "ProjectName"; "viewMode": "viewMode"; "QueryEditorComponent": "QueryEditorComponent"; "triggers": "triggers"; }, { "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; "out": "out"; }, never, never, false, never>;
278
291
  }
@@ -8,6 +8,7 @@ import { UtilityHelperService } from '../../../../services/utilityHelper.service
8
8
  import { DynamicModuleFieldFixComponent } from '../../dynamic-module-field-fix/dynamic-module-field.component';
9
9
  import { EndPointConfiguration } from './../../../../models/endPointConfiguration.model';
10
10
  import { DynamicLoaderDirectiveData, eventOut } from "../../../../directives/dynamic-loader/dynamic-loader.directive";
11
+ import { FireTrigger } from '../../../../models/trigger.model';
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class AddFormRecordComponent implements OnInit {
13
14
  private cdr;
@@ -26,6 +27,7 @@ export declare class AddFormRecordComponent implements OnInit {
26
27
  saveRecordEvent: EventEmitter<Record>;
27
28
  afterSaveRecordEvent: EventEmitter<Record>;
28
29
  out: EventEmitter<eventOut>;
30
+ fireTrigger: EventEmitter<FireTrigger>;
29
31
  showTitle: boolean;
30
32
  showSaveButton: boolean;
31
33
  showBackButton: boolean;
@@ -91,6 +93,7 @@ export declare class AddFormRecordComponent implements OnInit {
91
93
  delay(ms: number): Promise<unknown>;
92
94
  private resizeBase64Image;
93
95
  setDataGetter(form: any): void;
96
+ checkTriggers(record: Record): void;
94
97
  static ɵfac: i0.ɵɵFactoryDeclaration<AddFormRecordComponent, never>;
95
- static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "orgaID": "orgaID"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; "inConfig": "inConfig"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "out": "out"; }, never, never, false, never>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "orgaID": "orgaID"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; "inConfig": "inConfig"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
96
99
  }
@@ -10,6 +10,7 @@ import { EndPointConfiguration } from "./../../../../models/endPointConfiguratio
10
10
  import { MatDialog, MatDialogRef } from "@angular/material/dialog";
11
11
  import { Router } from "@angular/router";
12
12
  import { DynamicLoaderDirectiveData, eventOut } from "../../../../directives/dynamic-loader/dynamic-loader.directive";
13
+ import { FireTrigger } from '../../../../models/trigger.model';
13
14
  import * as i0 from "@angular/core";
14
15
  type Panel = {
15
16
  record: Record;
@@ -66,6 +67,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
66
67
  dragStarted: EventEmitter<any>;
67
68
  dragReleased: EventEmitter<void>;
68
69
  out: EventEmitter<eventOut>;
70
+ fireTrigger: EventEmitter<FireTrigger>;
69
71
  constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef, dialog: MatDialog, router: Router);
70
72
  ngOnInit(): void;
71
73
  ngOnChanges(changes: SimpleChanges): void;
@@ -136,7 +138,8 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
136
138
  onDragStarted(el: any): void;
137
139
  onDragReleased(): void;
138
140
  onExternalComponentOut(ev: eventOut): void;
141
+ onFireTrigger(ev: FireTrigger): void;
139
142
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
140
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "orgaID": "orgaID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; "QueryEditorComponent": "QueryEditorComponent"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "out": "out"; }, never, never, false, never>;
143
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "orgaID": "orgaID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; "QueryEditorComponent": "QueryEditorComponent"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "dragStarted": "dragStarted"; "dragReleased": "dragReleased"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
141
144
  }
142
145
  export {};
@@ -5,6 +5,7 @@ import { Form } from '../../../../../models/form.model';
5
5
  import { Record } from "../../../../../models/record.model";
6
6
  import { UtilityHelperService } from '../../../../../services/utilityHelper.services';
7
7
  import { DynamicLoaderDirectiveData, eventOut } from '../../../../../directives/dynamic-loader/dynamic-loader.directive';
8
+ import { FireTrigger } from '../../../../../models/trigger.model';
8
9
  import * as i0 from "@angular/core";
9
10
  type PageState = null | 'visualizzaContenuto' | 'modificaContenuto';
10
11
  export declare class SingleRecordComponent implements OnInit {
@@ -21,6 +22,7 @@ export declare class SingleRecordComponent implements OnInit {
21
22
  saveRecordEvent: EventEmitter<Record>;
22
23
  afterSaveRecordEvent: EventEmitter<Record>;
23
24
  out: EventEmitter<eventOut>;
25
+ fireTrigger: EventEmitter<FireTrigger>;
24
26
  loaded: boolean;
25
27
  constructor(utilityHelperService: UtilityHelperService);
26
28
  ngOnInit(): void;
@@ -30,7 +32,8 @@ export declare class SingleRecordComponent implements OnInit {
30
32
  saveOrExitForm(record: Record): void;
31
33
  onAfterSaveRecord(event: any): void;
32
34
  onExternalComponentOut(ev: eventOut): void;
35
+ onFireTrigger(ev: FireTrigger): void;
33
36
  static ɵfac: i0.ɵɵFactoryDeclaration<SingleRecordComponent, 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>;
37
+ 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"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
35
38
  }
36
39
  export {};
@@ -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 { TriggerCondition } from '../../../../models/trigger.model';
11
+ import * as i0 from "@angular/core";
12
+ export declare class DynamicModuleTriggerFixComponent {
13
+ private dialog;
14
+ condition: TriggerCondition;
15
+ form: Form;
16
+ triggerChange: 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
+ onTriggerChange(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<DynamicModuleTriggerFixComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicModuleTriggerFixComponent, "dynamic-module-trigger-fix", never, { "condition": "condition"; "form": "form"; }, { "triggerChange": "triggerChange"; }, never, never, false, never>;
42
+ }
@@ -0,0 +1,34 @@
1
+ import { EventEmitter, TemplateRef } from '@angular/core';
2
+ import { Form } from '../../../models/form.model';
3
+ import { Condition, Trigger, TriggerCondition } from '../../../models/trigger.model';
4
+ import { BaseField, FieldTypeEnum } from '../../../models/baseField.model';
5
+ import { PickerModeEnum } from '@eqproject/eqp-datetimepicker';
6
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
7
+ import * as i0 from "@angular/core";
8
+ export declare class TriggerCreatorComponent {
9
+ private dialog;
10
+ form: Form;
11
+ trigger: Trigger;
12
+ formulas: any;
13
+ onSaveRecord: EventEmitter<Trigger>;
14
+ FieldTypeEnum: typeof FieldTypeEnum;
15
+ isSaving: boolean;
16
+ selectedFormula: any;
17
+ formulaKeys: Array<any>;
18
+ formulaFieldsStructure: Array<any>;
19
+ pickerModeEnum: typeof PickerModeEnum;
20
+ dialogFormulaRef: MatDialogRef<TemplateRef<any>>;
21
+ dialogFormula: TemplateRef<any>;
22
+ constructor(dialog: MatDialog);
23
+ ngOnInit(): void;
24
+ onTriggerChange(outputCondition: Condition, TriggerCondition: TriggerCondition): void;
25
+ addCondition(): void;
26
+ deleteCondition(element: TriggerCondition): void;
27
+ onFieldTypeChange(ev: BaseField, condition: TriggerCondition): void;
28
+ saveOrExitForm(exit: boolean): void;
29
+ onChangeFormula(formula: any): void;
30
+ onFormulaFieldChange(formulaField: any): void;
31
+ openFormulaDialog(formulaField: any): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<TriggerCreatorComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<TriggerCreatorComponent, "trigger-creator", never, { "form": "form"; "trigger": "trigger"; "formulas": "formulas"; }, { "onSaveRecord": "onSaveRecord"; }, never, never, false, never>;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { LogicOperatorBoolean } from '../../../../../models/logicOperator.model';
3
+ import { BooleanField } from '../../../../../models/fields/booleanField.model';
4
+ import { TriggerCondition, BooleanLogicOperatorType } from '../../../../../models/trigger.model';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BooleanTriggerTemplateComponent {
7
+ condition: TriggerCondition;
8
+ triggerChange: EventEmitter<any>;
9
+ field: BooleanField;
10
+ validatorsArray: any[];
11
+ logicOperatorBoolean: typeof LogicOperatorBoolean;
12
+ selectedLogicOperator: LogicOperatorBoolean;
13
+ activeCondition: boolean;
14
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
15
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
16
+ FieldstyleObj: any;
17
+ LabelstyleObj: any;
18
+ constructor();
19
+ ngOnInit(): void;
20
+ initStyles(): void;
21
+ /**
22
+ * Metodo per emettere l'evento che il valore del record è cambiato.
23
+ */
24
+ onTriggerChange(): void;
25
+ /**
26
+ * Metodo per configurare eqp-numeric
27
+ */
28
+ /**
29
+ * Metodo di aggiunta dei validator dell'input
30
+ */
31
+ private configureControllers;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<BooleanTriggerTemplateComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<BooleanTriggerTemplateComponent, "boolean-trigger-template", never, { "condition": "condition"; }, { "triggerChange": "triggerChange"; }, never, never, false, never>;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DateField } from '../../../../../models/fields/dateField.model';
3
+ import { LogicOperatorDate } from '../../../../../models/logicOperator.model';
4
+ import { ModeEnum, TimeTypeEnum } from 'tmw-picker';
5
+ import { TriggerCondition, BooleanLogicOperatorType } from '../../../../../models/trigger.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class DateTriggerTemplateComponent {
8
+ condition: TriggerCondition;
9
+ triggerChange: EventEmitter<any>;
10
+ field: DateField;
11
+ logicOperatorDate: typeof LogicOperatorDate;
12
+ selectedLogicOperator: LogicOperatorDate;
13
+ activeCondition: boolean;
14
+ modes: typeof ModeEnum;
15
+ timeType: typeof TimeTypeEnum;
16
+ mode: ModeEnum;
17
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
18
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
19
+ outputFormat: string;
20
+ constructor();
21
+ ngOnInit(): void;
22
+ /**
23
+ * In base al formato della data richiesta nel DateField (solo data, solo orario o data e ora)
24
+ * imposta la visualizzazione corretta del componente eqp-datetimepicker.
25
+ */
26
+ private setTimeType;
27
+ /**
28
+ * Metodo per emettere l'evento che il valore del record è cambiato.
29
+ */
30
+ onTriggerChange(): void;
31
+ setOutputFormat(): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateTriggerTemplateComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateTriggerTemplateComponent, "date-trigger-template", never, { "condition": "condition"; }, { "triggerChange": "triggerChange"; }, never, never, false, never>;
34
+ }
@@ -0,0 +1,24 @@
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 { BooleanLogicOperatorType } from '../../../../../models/trigger.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ListFormRecordTriggerTemplateComponent {
9
+ field: TextField;
10
+ record: Record;
11
+ filterChange: EventEmitter<any>;
12
+ logicOperatorText: typeof LogicOperatorText;
13
+ selectedLogicOperator: LogicOperatorText;
14
+ activeCondition: boolean;
15
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
16
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
17
+ onTriggerChange(): void;
18
+ /**
19
+ * Metodo che genera l'oggetto da inviare all'esterno
20
+ */
21
+ generateCondition(mode: any): Statistic;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListFormRecordTriggerTemplateComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordTriggerTemplateComponent, "list-form-record-trigger-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
24
+ }
@@ -0,0 +1,50 @@
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 { BooleanLogicOperatorType } from '../../../../../models/trigger.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ListValueTriggerTemplateComponent {
9
+ field: ListValueField;
10
+ record: Record;
11
+ filterChange: EventEmitter<Statistic>;
12
+ validatorsArray: any[];
13
+ logicOperatorListValue: typeof LogicOperatorListValue;
14
+ selectedLogicOperator: LogicOperatorListValue;
15
+ activeCondition: boolean;
16
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
17
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
18
+ FieldstyleObj: any;
19
+ LabelstyleObj: any;
20
+ arrayData: {
21
+ Key: string;
22
+ Value: any;
23
+ Selected?: boolean;
24
+ ImgUrl?: string;
25
+ }[];
26
+ constructor();
27
+ ngOnInit(): void;
28
+ initStyles(): void;
29
+ /**
30
+ * Metodo per emettere l'evento che il valore del record è cambiato.
31
+ */
32
+ onTriggerChange(): void;
33
+ /**
34
+ * Metodo che genera l'oggetto da inviare all'esterno
35
+ */
36
+ generateCondition(mode: any): Statistic;
37
+ /**
38
+ * Metodo di aggiunta dei validator dell'input
39
+ */
40
+ private configureControllers;
41
+ /**
42
+ * Metodo per creare un array di oggetti del tipo { Key: string, Value: any } da usare come sorgente dati per la eqp-select.
43
+ */
44
+ private setArrayData;
45
+ prepareValuePairs(): void;
46
+ private createArrayDataElement;
47
+ private createNumberArrayDataElement;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListValueTriggerTemplateComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListValueTriggerTemplateComponent, "list-value-trigger-template", never, { "field": "field"; "record": "record"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
50
+ }
@@ -0,0 +1,37 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { NumericMaskConfig } from '@eqproject/eqp-numeric';
3
+ import { NumericField } from '../../../../../models/fields/numericField.model';
4
+ import { LogicOperatorNumeric } from '../../../../../models/logicOperator.model';
5
+ import { TriggerCondition, BooleanLogicOperatorType } from '../../../../../models/trigger.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class NumericTriggerTemplateComponent implements OnInit {
8
+ condition: TriggerCondition;
9
+ triggerChange: EventEmitter<any>;
10
+ validatorsArray: any[];
11
+ eqpNumericOptions: Partial<NumericMaskConfig>;
12
+ logicOperatorNumeric: typeof LogicOperatorNumeric;
13
+ selectedLogicOperator: LogicOperatorNumeric;
14
+ activeCondition: boolean;
15
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
16
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
17
+ field: NumericField;
18
+ FieldstyleObj: any;
19
+ LabelstyleObj: any;
20
+ constructor();
21
+ ngOnInit(): void;
22
+ initStyles(): void;
23
+ /**
24
+ * Metodo per emettere l'evento che il valore del record è cambiato.
25
+ */
26
+ onTriggerChange(): void;
27
+ /**
28
+ * Metodo per configurare eqp-numeric
29
+ */
30
+ private configureEqpNumericOptions;
31
+ /**
32
+ * Metodo di aggiunta dei validator dell'input
33
+ */
34
+ private configureControllers;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTriggerTemplateComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumericTriggerTemplateComponent, "numeric-trigger-template", never, { "condition": "condition"; }, { "triggerChange": "triggerChange"; }, never, never, false, never>;
37
+ }
@@ -0,0 +1,41 @@
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 { BooleanLogicOperatorType, TriggerCondition } from '../../../../../models/trigger.model';
8
+ import * as i0 from "@angular/core";
9
+ export declare class TextTriggerTemplateComponent {
10
+ voiceservice: VoiceRecognitionService;
11
+ condition: TriggerCondition;
12
+ recordChange: EventEmitter<Record>;
13
+ triggerChange: EventEmitter<any>;
14
+ isStillRecoginze: boolean;
15
+ source: import("rxjs").Observable<number>;
16
+ newtext: string;
17
+ subscription: Subscription;
18
+ STT: boolean;
19
+ FieldstyleObj: any;
20
+ LabelstyleObj: any;
21
+ InputMaskEnum: typeof TextMaskEnum;
22
+ logicOperatorText: typeof LogicOperatorText;
23
+ selectedLogicOperator: LogicOperatorText;
24
+ activeCondition: boolean;
25
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
26
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
27
+ field: TextField;
28
+ constructor(voiceservice: VoiceRecognitionService);
29
+ ngOnInit(): void;
30
+ initStyles(): void;
31
+ ttsClick(): void;
32
+ getInputType(): "text" | "email" | "password" | "tel" | "url";
33
+ updateRTVoiceField(): void;
34
+ updateVoiceField(): void;
35
+ /**
36
+ * Metodo per emettere l'evento che il valore del record è cambiato.
37
+ */
38
+ onTriggerChange(): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextTriggerTemplateComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextTriggerTemplateComponent, "text-trigger-template", never, { "condition": "condition"; }, { "recordChange": "recordChange"; "triggerChange": "triggerChange"; }, never, never, false, never>;
41
+ }
@@ -0,0 +1,41 @@
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 { TriggerCondition, BooleanLogicOperatorType } from '../../../../../models/trigger.model';
8
+ import * as i0 from "@angular/core";
9
+ export declare class TextareaTriggerTemplateComponent {
10
+ voiceservice: VoiceRecognitionService;
11
+ condition: TriggerCondition;
12
+ recordChange: EventEmitter<Record>;
13
+ triggerChange: EventEmitter<any>;
14
+ field: TextField;
15
+ isStillRecoginze: boolean;
16
+ source: import("rxjs").Observable<number>;
17
+ newtext: string;
18
+ subscription: Subscription;
19
+ STT: boolean;
20
+ FieldstyleObj: any;
21
+ LabelstyleObj: any;
22
+ InputMaskEnum: typeof TextMaskEnum;
23
+ logicOperatorText: typeof LogicOperatorText;
24
+ selectedLogicOperator: LogicOperatorText;
25
+ activeCondition: boolean;
26
+ booleanLogicOperatorType: typeof BooleanLogicOperatorType;
27
+ selectedBooleanLogicOperator: BooleanLogicOperatorType;
28
+ constructor(voiceservice: VoiceRecognitionService);
29
+ ngOnInit(): void;
30
+ initStyles(): void;
31
+ ttsClick(): void;
32
+ getInputType(): "text" | "email" | "password" | "tel" | "url";
33
+ updateRTVoiceField(): void;
34
+ updateVoiceField(): void;
35
+ /**
36
+ * Metodo per emettere l'evento che il valore del record è cambiato.
37
+ */
38
+ onTriggerChange(): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextareaTriggerTemplateComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextareaTriggerTemplateComponent, "textarea-trigger-template", never, { "condition": "condition"; }, { "recordChange": "recordChange"; "triggerChange": "triggerChange"; }, never, never, false, never>;
41
+ }
@@ -23,38 +23,47 @@ import * as i20 from "./components/private/form-records/repair-form-fields/repai
23
23
  import * as i21 from "./components/private/form-records/list-view-form-record/single-record/single-record.component";
24
24
  import * as i22 from "./components/private/form-statistics/filter-form-statistic/filter-form-statistic.component";
25
25
  import * as i23 from "./components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component";
26
- import * as i24 from "./components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component";
27
- import * as i25 from "./components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component";
28
- import * as i26 from "./components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component";
29
- import * as i27 from "./components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component";
30
- import * as i28 from "./components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component";
31
- import * as i29 from "./components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component";
32
- import * as i30 from "./components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component";
33
- import * as i31 from "./components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component";
34
- import * as i32 from "./components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component";
35
- import * as i33 from "./components/private/graphs/graphs.component";
36
- import * as i34 from "./components/private/graphs/graph/graph.component";
37
- import * as i35 from "./components/private/field-templates/image-field-selector-template/image-field-selector-template.component";
38
- import * as i36 from "./components/private/field-templates/label-field-template/label-field-template.component";
39
- import * as i37 from "./components/private/form-statistics/filter-templates/image-selector-filter-template/image-selector-filter-template.component";
40
- import * as i38 from "./components/private/tmw-image-drawer/tmw-image-drawer.component";
41
- import * as i39 from "./components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component";
42
- import * as i40 from "./components/private/tmw-image-marker/tmw-image-marker.component";
43
- import * as i41 from "./directives/dynamic-loader/dynamic-loader.directive";
44
- import * as i42 from "./components/private/dbgetter/dbgetter.component";
45
- import * as i43 from "./modules/material.module";
46
- import * as i44 from "@angular/forms";
47
- import * as i45 from "@angular/common";
48
- import * as i46 from "@eqproject/eqp-table";
49
- import * as i47 from "@eqproject/eqp-attachments";
50
- import * as i48 from "@eqproject/eqp-select";
51
- import * as i49 from "@eqproject/eqp-datetimepicker";
52
- import * as i50 from "@eqproject/eqp-filters";
53
- import * as i51 from "@eqproject/eqp-img-drawing";
54
- import * as i52 from "@angular/cdk/drag-drop";
55
- import * as i53 from "@eqproject/eqp-numeric";
56
- import * as i54 from "@canvasjs/angular-stockcharts";
57
- import * as i55 from "tmw-picker";
26
+ import * as i24 from "./components/private/trigger-creator/dynamic-module-trigger-fix/dynamic-module-trigger-fix.component";
27
+ import * as i25 from "./components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component";
28
+ import * as i26 from "./components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component";
29
+ import * as i27 from "./components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component";
30
+ import * as i28 from "./components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component";
31
+ import * as i29 from "./components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component";
32
+ import * as i30 from "./components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component";
33
+ import * as i31 from "./components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component";
34
+ import * as i32 from "./components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component";
35
+ import * as i33 from "./components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component";
36
+ import * as i34 from "./components/private/graphs/graphs.component";
37
+ import * as i35 from "./components/private/graphs/graph/graph.component";
38
+ import * as i36 from "./components/private/field-templates/image-field-selector-template/image-field-selector-template.component";
39
+ import * as i37 from "./components/private/field-templates/label-field-template/label-field-template.component";
40
+ import * as i38 from "./components/private/form-statistics/filter-templates/image-selector-filter-template/image-selector-filter-template.component";
41
+ import * as i39 from "./components/private/tmw-image-drawer/tmw-image-drawer.component";
42
+ import * as i40 from "./components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component";
43
+ import * as i41 from "./components/private/tmw-image-marker/tmw-image-marker.component";
44
+ import * as i42 from "./directives/dynamic-loader/dynamic-loader.directive";
45
+ import * as i43 from "./components/private/dbgetter/dbgetter.component";
46
+ import * as i44 from "./components/private/trigger-creator/trigger-creator.component";
47
+ import * as i45 from "./components/private/trigger-creator/trigger-templates/text-trigger-template/text-trigger-template.component";
48
+ import * as i46 from "./components/private/trigger-creator/trigger-templates/numeric-trigger-template/numeric-trigger-template.component";
49
+ import * as i47 from "./components/private/trigger-creator/trigger-templates/boolean-trigger-template/boolean-trigger-template.component";
50
+ import * as i48 from "./components/private/trigger-creator/trigger-templates/date-trigger-template/date-trigger-template.component";
51
+ import * as i49 from "./components/private/trigger-creator/trigger-templates/list-value-trigger-template/list-value-trigger-template.component";
52
+ import * as i50 from "./components/private/trigger-creator/trigger-templates/textarea-trigger-template/textarea-trigger-template.component";
53
+ import * as i51 from "./components/private/trigger-creator/trigger-templates/list-form-record-trigger-template/list-form-record-trigger-template.component";
54
+ import * as i52 from "./modules/material.module";
55
+ import * as i53 from "@angular/forms";
56
+ import * as i54 from "@angular/common";
57
+ import * as i55 from "@eqproject/eqp-table";
58
+ import * as i56 from "@eqproject/eqp-attachments";
59
+ import * as i57 from "@eqproject/eqp-select";
60
+ import * as i58 from "@eqproject/eqp-datetimepicker";
61
+ import * as i59 from "@eqproject/eqp-filters";
62
+ import * as i60 from "@eqproject/eqp-img-drawing";
63
+ import * as i61 from "@angular/cdk/drag-drop";
64
+ import * as i62 from "@eqproject/eqp-numeric";
65
+ import * as i63 from "@canvasjs/angular-stockcharts";
66
+ import * as i64 from "tmw-picker";
58
67
  export declare const customNumericMaskConfig: {
59
68
  align: string;
60
69
  allowNegative: boolean;
@@ -71,6 +80,6 @@ export declare const customNumericMaskConfig: {
71
80
  };
72
81
  export declare class EqpDynamicModuleModule {
73
82
  static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
74
- 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.DbgetterComponent], [typeof i43.MaterialModule, typeof i44.FormsModule, typeof i45.CommonModule, typeof i44.ReactiveFormsModule, typeof i46.EqpTableModule, typeof i47.EqpAttachmentsModule, typeof i48.EqpSelectModule, typeof i49.EqpDatetimepickerModule, typeof i50.EqpFiltersModule, typeof i51.EqpImgDrawingModule, typeof i52.DragDropModule, typeof i53.EqpNumericModule, typeof i54.CanvasJSAngularStockChartsModule, typeof i55.TmwPickerModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i52.DragDropModule, typeof i54.CanvasJSChart, typeof i54.CanvasJSStockChart, typeof i41.DynamicLoaderDirective, typeof i55.TmwPickerModule]>;
83
+ 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.DynamicModuleTriggerFixComponent, typeof i25.TextFilterTemplateComponent, typeof i26.NumericFilterTemplateComponent, typeof i27.BooleanFilterTemplateComponent, typeof i28.DateFilterTemplateComponent, typeof i29.ListValueFilterTemplateComponent, typeof i30.TextareaFilterTemplateComponent, typeof i31.AttachmentFilterTemplateComponent, typeof i32.ImageFilterTemplateComponent, typeof i33.ListFormRecordFilterTemplateComponent, typeof i34.GraphsComponent, typeof i35.GraphComponent, typeof i36.ImageFieldSelectorTemplateComponent, typeof i37.LabelFieldTemplateComponent, typeof i38.ImageSelectorFilterTemplateComponent, typeof i39.TmwImageDrawerComponent, typeof i40.ImageWithMarkersFieldTemplateComponent, typeof i41.TmwImageMarkerComponent, typeof i42.DynamicLoaderDirective, typeof i43.DbgetterComponent, typeof i44.TriggerCreatorComponent, typeof i45.TextTriggerTemplateComponent, typeof i46.NumericTriggerTemplateComponent, typeof i47.BooleanTriggerTemplateComponent, typeof i48.DateTriggerTemplateComponent, typeof i49.ListValueTriggerTemplateComponent, typeof i50.TextareaTriggerTemplateComponent, typeof i51.ListFormRecordTriggerTemplateComponent], [typeof i52.MaterialModule, typeof i53.FormsModule, typeof i54.CommonModule, typeof i53.ReactiveFormsModule, typeof i55.EqpTableModule, typeof i56.EqpAttachmentsModule, typeof i57.EqpSelectModule, typeof i58.EqpDatetimepickerModule, typeof i59.EqpFiltersModule, typeof i60.EqpImgDrawingModule, typeof i61.DragDropModule, typeof i62.EqpNumericModule, typeof i63.CanvasJSAngularStockChartsModule, typeof i64.TmwPickerModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i61.DragDropModule, typeof i63.CanvasJSChart, typeof i63.CanvasJSStockChart, typeof i42.DynamicLoaderDirective, typeof i64.TmwPickerModule]>;
75
84
  static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
76
85
  }