@eqproject/eqp-dynamic-module 2.8.23 → 2.8.25
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 +11 -10
- package/esm2020/lib/components/private/form-records/hlist-form-record/hlist-form-record.component.mjs +653 -0
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +102 -100
- package/esm2020/lib/eqp-dynamic-module.module.mjs +4 -1
- package/esm2020/lib/models/dynamicModuleViewModeEnum.mjs +2 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +818 -170
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +812 -170
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/form-records/hlist-form-record/hlist-form-record.component.d.ts +107 -0
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -2
- package/lib/eqp-dynamic-module.module.d.ts +54 -53
- package/lib/models/dynamicModuleViewModeEnum.d.ts +2 -1
- package/package.json +1 -1
package/lib/components/private/form-records/hlist-form-record/hlist-form-record.component.d.ts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { OnInit, EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from "@angular/core";
|
|
2
|
+
import { ConfigColumn, EqpTableComponent } from "@eqproject/eqp-table";
|
|
3
|
+
import { Form } from "../../../../models/form.model";
|
|
4
|
+
import { Record, RecordButton } from "../../../../models/record.model";
|
|
5
|
+
import { UtilityHelperService } from "../../../../services/utilityHelper.services";
|
|
6
|
+
import { DynamicModuleListFormRecordActionsDefault } from "../../../../models/dynamicModuleListFormRecordActionsDefault";
|
|
7
|
+
import { DynamicModuleListConfig } from "../../../../models/dynamicModuleListConfig.model";
|
|
8
|
+
import { EndPointConfiguration } from "../../../../models/endPointConfiguration.model";
|
|
9
|
+
import { ModeEnum } from "tmw-picker";
|
|
10
|
+
import { DatePipe } from "@angular/common";
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class HListFormRecordComponent implements OnInit, OnChanges {
|
|
13
|
+
private utilityHelperService;
|
|
14
|
+
private changeDetector;
|
|
15
|
+
private datepipe;
|
|
16
|
+
configurations: DynamicModuleListConfig;
|
|
17
|
+
endPointConfiguration: EndPointConfiguration;
|
|
18
|
+
formID: string;
|
|
19
|
+
form: Form;
|
|
20
|
+
externalButtons: Array<RecordButton>;
|
|
21
|
+
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
22
|
+
showTitle: boolean;
|
|
23
|
+
tableRecords: EqpTableComponent;
|
|
24
|
+
columns: ConfigColumn[];
|
|
25
|
+
loadedFilters: boolean;
|
|
26
|
+
loadedTable: boolean;
|
|
27
|
+
onViewRecord: EventEmitter<Record>;
|
|
28
|
+
onAddViewEditRecord: EventEmitter<{
|
|
29
|
+
record: Record;
|
|
30
|
+
onlyView: boolean;
|
|
31
|
+
}>;
|
|
32
|
+
onDeleteRecord: EventEmitter<Record>;
|
|
33
|
+
onAfterDeleteRecord: EventEmitter<Record>;
|
|
34
|
+
modes: typeof ModeEnum;
|
|
35
|
+
minDate: Date;
|
|
36
|
+
maxDate: Date;
|
|
37
|
+
properties: any[];
|
|
38
|
+
propertiesLabel: any[];
|
|
39
|
+
selectedProperties: string[];
|
|
40
|
+
filteredAnswers: any;
|
|
41
|
+
displayedColumns: any[];
|
|
42
|
+
constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef, datepipe: DatePipe);
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
45
|
+
getFormByID(id?: string): Promise<void>;
|
|
46
|
+
/**
|
|
47
|
+
* Metodo per recuperare tutti i record salvati per una particolare Form.
|
|
48
|
+
* La chiamata viene effettuata solo se è stato configurato l'endPoint da usare.
|
|
49
|
+
* La risposta della chiamata deve essere un array di oggetti di tipo "DynRecord"
|
|
50
|
+
* a partire dai quali vengono ricreati i Record usati nel client.
|
|
51
|
+
*/
|
|
52
|
+
getRecordsByFormID(): Promise<void>;
|
|
53
|
+
/**
|
|
54
|
+
* Metodo per configurare le colonne della eqp-table.
|
|
55
|
+
*/
|
|
56
|
+
private configureColumns;
|
|
57
|
+
/**
|
|
58
|
+
* Metodo per aggiungere nella colonna "action" della eqp-table le azioni sui record
|
|
59
|
+
* definite dall'utente all'interno della Form.
|
|
60
|
+
*/
|
|
61
|
+
private createAdditionalActions;
|
|
62
|
+
/**
|
|
63
|
+
* Metodo per creare la configurazione delle colonne per la eqp-table.
|
|
64
|
+
* Individua i BaseField da mostrare e li usa per creare le ConfigColumn.
|
|
65
|
+
* Le colonne vengono create per i BaseField con il flag InListView a TRUE
|
|
66
|
+
* oppure, nel caso non siano stati specificati i campi da visualizzare,
|
|
67
|
+
* seleziona i primi 6.
|
|
68
|
+
*/
|
|
69
|
+
private createColumnsFromFormFields;
|
|
70
|
+
/**
|
|
71
|
+
* Metodo per creare l'oggetto ConfigureColumn che rappresenta il BaseField passato in input.
|
|
72
|
+
* @param field BaseField per cui creare la colonna nella eqp-table
|
|
73
|
+
* @returns Restituisce una ConfigColumn per la eqp-table
|
|
74
|
+
*/
|
|
75
|
+
viewRecord(record: Record): void;
|
|
76
|
+
/**
|
|
77
|
+
* Metodo che scatena l'evento di Output per mostrare o modificare il record
|
|
78
|
+
* selezionato sulla eqp-table.
|
|
79
|
+
* @param record Record da visualizzare o modificare selezionato sulla eqp-table.
|
|
80
|
+
* @param onlyView Se TRUE viene mostrato il componente add-form-record in sola lettura.
|
|
81
|
+
*/
|
|
82
|
+
private viewOrEditRecord;
|
|
83
|
+
/**
|
|
84
|
+
* Metodo per eliminare un record dalla lista.
|
|
85
|
+
* @param record Record da eliminare selezionato sulla eqp-table.
|
|
86
|
+
*/
|
|
87
|
+
deleteRecord(record: Record): void;
|
|
88
|
+
/**
|
|
89
|
+
* Metodo per ricaricare i dati della eqp-table.
|
|
90
|
+
*/
|
|
91
|
+
private reloadTables;
|
|
92
|
+
/**
|
|
93
|
+
* Funzione che viene chiamata al cambio di selezione dei parametri da mostrare
|
|
94
|
+
* aggiorna la lista delle proprietà selezionate che gestisce le righe mostrate per ogni risposta
|
|
95
|
+
* @param selectedProperties
|
|
96
|
+
*/
|
|
97
|
+
onSelectionChange(selectedProperties: any): void;
|
|
98
|
+
/**
|
|
99
|
+
* funzione che filtra le risposte in base al range di date basandosi sul campo fisso AnswerDate per il paragone
|
|
100
|
+
*/
|
|
101
|
+
filterDataAnswers(): void;
|
|
102
|
+
setMinMaxDates(): void;
|
|
103
|
+
printValue(fieldType: any, value: any, fieldconfig: any): any;
|
|
104
|
+
private resizeBase64Image;
|
|
105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HListFormRecordComponent, never>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HListFormRecordComponent, "hlist-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "formID": "formID"; "form": "form"; "externalButtons": "externalButtons"; }, { "onViewRecord": "onViewRecord"; "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onAfterDeleteRecord": "onAfterDeleteRecord"; }, never, never, false, never>;
|
|
107
|
+
}
|
|
@@ -92,8 +92,11 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
92
92
|
constructor(utilityHelperService: UtilityHelperService, changeDetector: ChangeDetectorRef, dialog: MatDialog, router: Router, dbDateService: dbDateService, datePipe: DatePipe);
|
|
93
93
|
ngOnInit(): void;
|
|
94
94
|
ngOnChanges(changes: SimpleChanges): void;
|
|
95
|
+
/**
|
|
96
|
+
* funzione di apertura dell'accordion
|
|
97
|
+
* @param indice
|
|
98
|
+
*/
|
|
95
99
|
onOpening(indice: number): void;
|
|
96
|
-
generateTabellar(): void;
|
|
97
100
|
configureListviewButtons(): void;
|
|
98
101
|
openTabellar(): void;
|
|
99
102
|
openListView(): void;
|
|
@@ -102,7 +105,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
102
105
|
* Metodo per configurare le colonne della eqp-table.
|
|
103
106
|
*/
|
|
104
107
|
private configureColumns;
|
|
105
|
-
private configureTabellarColumns;
|
|
106
108
|
/**
|
|
107
109
|
* Metodo per creare l'oggetto ConfigureColumn che rappresenta il BaseField passato in input.
|
|
108
110
|
* @param field BaseField per cui creare la colonna nella eqp-table
|
|
@@ -12,58 +12,59 @@ import * as i9 from "./components/private/field-templates/list-value-field-templ
|
|
|
12
12
|
import * as i10 from "./components/private/field-templates/attachment-field-template/attachment-field-template.component";
|
|
13
13
|
import * as i11 from "./components/private/field-templates/image-field-template/image-field-template.component";
|
|
14
14
|
import * as i12 from "./components/private/form-records/list-form-record/list-form-record.component";
|
|
15
|
-
import * as i13 from "./components/private/form-records/
|
|
16
|
-
import * as i14 from "./components/private/form-records/
|
|
17
|
-
import * as i15 from "./components/private/form-records/
|
|
18
|
-
import * as i16 from "./components/private/
|
|
19
|
-
import * as i17 from "./components/private/
|
|
20
|
-
import * as i18 from "./components/private/
|
|
21
|
-
import * as i19 from "./components/private/
|
|
22
|
-
import * as i20 from "./components/private/form-records/
|
|
23
|
-
import * as i21 from "./components/private/form-
|
|
24
|
-
import * as i22 from "./components/private/form-statistics/
|
|
25
|
-
import * as i23 from "./components/private/
|
|
26
|
-
import * as i24 from "./components/private/
|
|
27
|
-
import * as i25 from "./components/private/form-statistics/filter-templates/
|
|
28
|
-
import * as i26 from "./components/private/form-statistics/filter-templates/
|
|
29
|
-
import * as i27 from "./components/private/form-statistics/filter-templates/
|
|
30
|
-
import * as i28 from "./components/private/form-statistics/filter-templates/
|
|
31
|
-
import * as i29 from "./components/private/form-statistics/filter-templates/
|
|
32
|
-
import * as i30 from "./components/private/form-statistics/filter-templates/
|
|
33
|
-
import * as i31 from "./components/private/form-statistics/filter-templates/
|
|
34
|
-
import * as i32 from "./components/private/form-statistics/filter-templates/
|
|
35
|
-
import * as i33 from "./components/private/
|
|
36
|
-
import * as i34 from "./components/private/graphs/
|
|
37
|
-
import * as i35 from "./components/private/
|
|
38
|
-
import * as i36 from "./components/private/field-templates/
|
|
39
|
-
import * as i37 from "./components/private/
|
|
40
|
-
import * as i38 from "./components/private/
|
|
41
|
-
import * as i39 from "./components/private/
|
|
42
|
-
import * as i40 from "./components/private/
|
|
43
|
-
import * as i41 from "./
|
|
44
|
-
import * as i42 from "./
|
|
45
|
-
import * as i43 from "./components/private/
|
|
46
|
-
import * as i44 from "./components/private/trigger-creator/trigger-
|
|
47
|
-
import * as i45 from "./components/private/trigger-creator/trigger-templates/
|
|
48
|
-
import * as i46 from "./components/private/trigger-creator/trigger-templates/
|
|
49
|
-
import * as i47 from "./components/private/trigger-creator/trigger-templates/
|
|
50
|
-
import * as i48 from "./components/private/trigger-creator/trigger-templates/
|
|
51
|
-
import * as i49 from "./components/private/trigger-creator/trigger-templates/
|
|
52
|
-
import * as i50 from "./components/private/trigger-creator/trigger-templates/
|
|
53
|
-
import * as i51 from "./
|
|
54
|
-
import * as i52 from "./
|
|
55
|
-
import * as i53 from "
|
|
56
|
-
import * as i54 from "@angular/
|
|
57
|
-
import * as i55 from "@
|
|
58
|
-
import * as i56 from "@eqproject/eqp-
|
|
59
|
-
import * as i57 from "@eqproject/eqp-
|
|
60
|
-
import * as i58 from "@eqproject/eqp-
|
|
61
|
-
import * as i59 from "@eqproject/eqp-
|
|
62
|
-
import * as i60 from "@eqproject/eqp-
|
|
63
|
-
import * as i61 from "@
|
|
64
|
-
import * as i62 from "@
|
|
65
|
-
import * as i63 from "@
|
|
66
|
-
import * as i64 from "
|
|
15
|
+
import * as i13 from "./components/private/form-records/hlist-form-record/hlist-form-record.component";
|
|
16
|
+
import * as i14 from "./components/private/form-records/list-view-form-record/list-view-form-record.component";
|
|
17
|
+
import * as i15 from "./components/private/form-records/add-form-record/add-form-record.component";
|
|
18
|
+
import * as i16 from "./components/private/form-records/view-form-record/view-form-record.component";
|
|
19
|
+
import * as i17 from "./components/private/dynamic-module-field-fix/dynamic-module-field.component";
|
|
20
|
+
import * as i18 from "./components/private/spinner/spinner.component";
|
|
21
|
+
import * as i19 from "./components/private/add-formula-field/add-formula-field.component";
|
|
22
|
+
import * as i20 from "./components/private/form-records/repair-form-fields/repair-form-fields.component";
|
|
23
|
+
import * as i21 from "./components/private/form-records/list-view-form-record/single-record/single-record.component";
|
|
24
|
+
import * as i22 from "./components/private/form-statistics/filter-form-statistic/filter-form-statistic.component";
|
|
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/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 "./directives/speech-to-text/speech-to-text.directive";
|
|
55
|
+
import * as i53 from "./modules/material.module";
|
|
56
|
+
import * as i54 from "@angular/forms";
|
|
57
|
+
import * as i55 from "@angular/common";
|
|
58
|
+
import * as i56 from "@eqproject/eqp-table";
|
|
59
|
+
import * as i57 from "@eqproject/eqp-attachments";
|
|
60
|
+
import * as i58 from "@eqproject/eqp-select";
|
|
61
|
+
import * as i59 from "@eqproject/eqp-datetimepicker";
|
|
62
|
+
import * as i60 from "@eqproject/eqp-filters";
|
|
63
|
+
import * as i61 from "@eqproject/eqp-img-drawing";
|
|
64
|
+
import * as i62 from "@angular/cdk/drag-drop";
|
|
65
|
+
import * as i63 from "@eqproject/eqp-numeric";
|
|
66
|
+
import * as i64 from "@canvasjs/angular-stockcharts";
|
|
67
|
+
import * as i65 from "tmw-picker";
|
|
67
68
|
export declare const customNumericMaskConfig: {
|
|
68
69
|
align: string;
|
|
69
70
|
allowNegative: boolean;
|
|
@@ -80,6 +81,6 @@ export declare const customNumericMaskConfig: {
|
|
|
80
81
|
};
|
|
81
82
|
export declare class EqpDynamicModuleModule {
|
|
82
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
|
|
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.
|
|
84
|
+
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.HListFormRecordComponent, typeof i14.ListViewFormRecordComponent, typeof i15.AddFormRecordComponent, typeof i16.ViewFormRecordComponent, 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.SpeechToTextDirective], [typeof i53.MaterialModule, typeof i54.FormsModule, typeof i55.CommonModule, typeof i54.ReactiveFormsModule, typeof i56.EqpTableModule, typeof i57.EqpAttachmentsModule, typeof i58.EqpSelectModule, typeof i59.EqpDatetimepickerModule, typeof i60.EqpFiltersModule, typeof i61.EqpImgDrawingModule, typeof i62.DragDropModule, typeof i63.EqpNumericModule, typeof i64.CanvasJSAngularStockChartsModule, typeof i65.TmwPickerModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i62.DragDropModule, typeof i64.CanvasJSChart, typeof i64.CanvasJSStockChart, typeof i42.DynamicLoaderDirective, typeof i65.TmwPickerModule]>;
|
|
84
85
|
static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
|
|
85
86
|
}
|