@eqproject/eqp-dynamic-module 2.3.31 → 2.3.33
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 +3 -3
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +4 -8
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +3 -11
- 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 +4 -12
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +4 -13
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +3 -17
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +5 -13
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +4 -12
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +20 -165
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -13
- package/esm2020/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.mjs +3 -11
- package/esm2020/lib/components/private/form-records/view-form-record/view-form-record.component.mjs +4 -12
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +4 -12
- package/esm2020/lib/components/private/graphs/graphs.component.mjs +3 -11
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +317 -562
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +316 -561
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +0 -1
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +1 -3
- package/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.d.ts +1 -3
- package/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.d.ts +1 -3
- package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +1 -2
- package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +1 -3
- package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts +1 -3
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -19
- package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +1 -3
- package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts +1 -3
- package/lib/components/private/form-records/view-form-record/view-form-record.component.d.ts +1 -3
- package/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.d.ts +1 -3
- package/lib/components/private/graphs/graphs.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -17,7 +17,6 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
17
17
|
private utilityHelperService;
|
|
18
18
|
private sanitizer;
|
|
19
19
|
debugMode: boolean;
|
|
20
|
-
debugLog(message: string, element?: any): void;
|
|
21
20
|
configurations: DynamicModuleConfiguratorConfig;
|
|
22
21
|
formID: string;
|
|
23
22
|
viewMode: string;
|
|
@@ -17,8 +17,6 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
17
17
|
private enumHelper;
|
|
18
18
|
private dialog;
|
|
19
19
|
private cdr;
|
|
20
|
-
debugMode: boolean;
|
|
21
|
-
debugLog(message: string, element?: any): void;
|
|
22
20
|
field: BaseField | any;
|
|
23
21
|
indexField: number;
|
|
24
22
|
formFieldsGroups: Array<FormFieldGroup>;
|
|
@@ -205,5 +203,5 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
205
203
|
*/
|
|
206
204
|
private restoreBaseFieldProperties;
|
|
207
205
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormFieldComponent, never>;
|
|
208
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormFieldComponent, "eqp-dynamic-module-add-form-field", never, { "
|
|
206
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormFieldComponent, "eqp-dynamic-module-add-form-field", never, { "field": "field"; "indexField": "indexField"; "formFieldsGroups": "formFieldsGroups"; "availableFields": "availableFields"; "fieldTypesToExclude": "fieldTypesToExclude"; }, { "saveFieldEvent": "saveFieldEvent"; }, never, never, false, never>;
|
|
209
207
|
}
|
|
@@ -9,8 +9,6 @@ import { ListFormRecordComponent } from '../form-records/list-form-record/list-f
|
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class DynamicModuleFieldFixComponent implements OnInit, IBaseFieldComponent {
|
|
11
11
|
private dialog;
|
|
12
|
-
debugMode: boolean;
|
|
13
|
-
debugLog(message: string, element?: any): void;
|
|
14
12
|
field: BaseField;
|
|
15
13
|
form: Form;
|
|
16
14
|
record: Record;
|
|
@@ -58,5 +56,5 @@ export declare class DynamicModuleFieldFixComponent implements OnInit, IBaseFiel
|
|
|
58
56
|
*/
|
|
59
57
|
onSaveInnerFormRecord(record: Record): void;
|
|
60
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicModuleFieldFixComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicModuleFieldFixComponent, "dynamic-module-field-fix", never, { "
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicModuleFieldFixComponent, "dynamic-module-field-fix", never, { "field": "field"; "form": "form"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
62
60
|
}
|
|
@@ -4,8 +4,6 @@ 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;
|
|
9
7
|
field: ListValueField;
|
|
10
8
|
record: Record;
|
|
11
9
|
recordChange: EventEmitter<Record>;
|
|
@@ -57,5 +55,5 @@ export declare class ListValueFieldTemplateComponent implements OnInit, OnChange
|
|
|
57
55
|
private setFormControlValue;
|
|
58
56
|
private stringToValuePairs;
|
|
59
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListValueFieldTemplateComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListValueFieldTemplateComponent, "list-value-field-template", never, { "
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListValueFieldTemplateComponent, "list-value-field-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
61
59
|
}
|
|
@@ -5,7 +5,6 @@ import { NumericField } from '../../../../models/fields/numericField.model';
|
|
|
5
5
|
import { IBaseFieldComponent } from '../../../../interfaces/iBaseFieldComponent.interface';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class NumericFieldTemplateComponent implements OnInit, OnChanges, IBaseFieldComponent {
|
|
8
|
-
debugMode: boolean;
|
|
9
8
|
field: NumericField;
|
|
10
9
|
record: Record;
|
|
11
10
|
recordChange: EventEmitter<Record>;
|
|
@@ -36,5 +35,5 @@ export declare class NumericFieldTemplateComponent implements OnInit, OnChanges,
|
|
|
36
35
|
private configureControllers;
|
|
37
36
|
setDirty(): void;
|
|
38
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericFieldTemplateComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFieldTemplateComponent, "numeric-field-template", never, { "
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFieldTemplateComponent, "numeric-field-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
40
39
|
}
|
|
@@ -11,8 +11,6 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export declare class AddFormRecordComponent implements OnInit {
|
|
12
12
|
private cdr;
|
|
13
13
|
utilityService: UtilityHelperService;
|
|
14
|
-
debugMode: boolean;
|
|
15
|
-
debugLog(message: string, element?: any): void;
|
|
16
14
|
configurations: DynamicModuleCompileConfig;
|
|
17
15
|
endPointConfiguration: EndPointConfiguration;
|
|
18
16
|
userID: string;
|
|
@@ -85,5 +83,5 @@ export declare class AddFormRecordComponent implements OnInit {
|
|
|
85
83
|
private getResponseTemplate;
|
|
86
84
|
private replaceTemplatePlaceholdersWithValues;
|
|
87
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormRecordComponent, never>;
|
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "
|
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; "additionalParams": "additionalParams"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
89
87
|
}
|
package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts
CHANGED
|
@@ -10,8 +10,6 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class ListFormRecordComponent implements OnInit, OnChanges {
|
|
11
11
|
private utilityHelperService;
|
|
12
12
|
private changeDetector;
|
|
13
|
-
debugMode: boolean;
|
|
14
|
-
debugLog(message: string, element?: any): void;
|
|
15
13
|
configurations: DynamicModuleListConfig;
|
|
16
14
|
endPointConfiguration: EndPointConfiguration;
|
|
17
15
|
formID: string;
|
|
@@ -81,5 +79,5 @@ export declare class ListFormRecordComponent implements OnInit, OnChanges {
|
|
|
81
79
|
*/
|
|
82
80
|
private reloadTables;
|
|
83
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListFormRecordComponent, never>;
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordComponent, "list-form-record", never, { "
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListFormRecordComponent, "list-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>;
|
|
85
83
|
}
|
|
@@ -21,8 +21,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
21
21
|
private changeDetector;
|
|
22
22
|
private dialog;
|
|
23
23
|
private router;
|
|
24
|
-
debugMode: boolean;
|
|
25
|
-
debugLog(message: string, element?: any): void;
|
|
26
24
|
configurations: DynamicModuleListConfig;
|
|
27
25
|
compileConfigurations: DynamicModuleCompileConfig;
|
|
28
26
|
outCompileConfigurations: DynamicModuleCompileConfig;
|
|
@@ -51,6 +49,8 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
51
49
|
popupLoader: boolean;
|
|
52
50
|
openAddDialog: TemplateRef<any>;
|
|
53
51
|
openAddDialogRef: MatDialogRef<TemplateRef<any>>;
|
|
52
|
+
openGraphDialog: TemplateRef<any>;
|
|
53
|
+
openGraphDialogRef: MatDialogRef<TemplateRef<any>>;
|
|
54
54
|
onAddViewEditRecord: EventEmitter<{
|
|
55
55
|
record: Record;
|
|
56
56
|
onlyView: boolean;
|
|
@@ -77,10 +77,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
77
77
|
getRecordsByFormID(): Promise<void>;
|
|
78
78
|
private generateAnswersArray;
|
|
79
79
|
togglePanel(panel: any, record: Record): void;
|
|
80
|
-
/**
|
|
81
|
-
* Metodo per aggiungere nella colonna "action" della eqp-table le azioni sui record
|
|
82
|
-
* definite dall'utente all'interno della Form.
|
|
83
|
-
*/
|
|
84
80
|
/**
|
|
85
81
|
* Metodo che scatena l'evento di Output per mostrare o modificare il record
|
|
86
82
|
* selezionato sulla eqp-table.
|
|
@@ -101,18 +97,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
101
97
|
* @param record Record da eliminare selezionato sulla eqp-table.
|
|
102
98
|
*/
|
|
103
99
|
deleteRecord(record: Record, ev: Event): void;
|
|
104
|
-
/**
|
|
105
|
-
* Metodo per creare la configurazione delle colonne per la eqp-table.
|
|
106
|
-
* Individua i BaseField da mostrare e li usa per creare le ConfigColumn.
|
|
107
|
-
* Le colonne vengono create per i BaseField con il flag InListView a TRUE
|
|
108
|
-
* oppure, nel caso non siano stati specificati i campi da visualizzare,
|
|
109
|
-
* seleziona i primi 6.
|
|
110
|
-
*/
|
|
111
|
-
/**
|
|
112
|
-
* Metodo per creare l'oggetto ConfigureColumn che rappresenta il BaseField passato in input.
|
|
113
|
-
* @param field BaseField per cui creare la colonna nella eqp-table
|
|
114
|
-
* @returns Restituisce una ConfigColumn per la eqp-table
|
|
115
|
-
*/
|
|
116
100
|
/**
|
|
117
101
|
* Metodo per ricaricare i dati della eqp-table.
|
|
118
102
|
*/
|
|
@@ -137,9 +121,10 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
|
|
|
137
121
|
}): void;
|
|
138
122
|
openAddPopup(): void;
|
|
139
123
|
openGraphs(): void;
|
|
124
|
+
closeGraphs(): void;
|
|
140
125
|
onAddSaveRecord(record: Record): void;
|
|
141
126
|
onAddAfterSaveRecord(record: Record): void;
|
|
142
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
|
|
143
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "
|
|
128
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
144
129
|
}
|
|
145
130
|
export {};
|
|
@@ -8,8 +8,6 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
type PageState = null | 'visualizzaContenuto' | 'modificaContenuto';
|
|
9
9
|
export declare class SingleRecordComponent implements OnInit {
|
|
10
10
|
private utilityHelperService;
|
|
11
|
-
debugMode: boolean;
|
|
12
|
-
debugLog(message: string, element?: any): void;
|
|
13
11
|
endPointConfiguration: EndPointConfiguration;
|
|
14
12
|
record: any;
|
|
15
13
|
pageState: PageState;
|
|
@@ -29,6 +27,6 @@ export declare class SingleRecordComponent implements OnInit {
|
|
|
29
27
|
saveOrExitForm(record: Record): void;
|
|
30
28
|
onAfterSaveRecord(event: any): void;
|
|
31
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleRecordComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SingleRecordComponent, "lib-single-record", never, { "
|
|
30
|
+
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"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
|
|
33
31
|
}
|
|
34
32
|
export {};
|
package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts
CHANGED
|
@@ -5,8 +5,6 @@ import { UtilityHelperService } from '../../../../services/utilityHelper.service
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class RepairFormFieldsComponent implements OnInit {
|
|
7
7
|
private utilityHelperService;
|
|
8
|
-
debugMode: boolean;
|
|
9
|
-
debugLog(message: string, element?: any): void;
|
|
10
8
|
configurations: DynamicModuleRepairConfig;
|
|
11
9
|
formID: string;
|
|
12
10
|
endPointConfiguration: EndPointConfiguration;
|
|
@@ -18,5 +16,5 @@ export declare class RepairFormFieldsComponent implements OnInit {
|
|
|
18
16
|
getFormByID(id?: string): void;
|
|
19
17
|
saveJson(): void;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepairFormFieldsComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RepairFormFieldsComponent, "repair-form-fields", never, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RepairFormFieldsComponent, "repair-form-fields", never, { "configurations": "configurations"; "formID": "formID"; "endPointConfiguration": "endPointConfiguration"; }, { "onSaveJson": "onSaveJson"; }, never, never, false, never>;
|
|
22
20
|
}
|
package/lib/components/private/form-records/view-form-record/view-form-record.component.d.ts
CHANGED
|
@@ -10,8 +10,6 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class ViewFormRecordComponent implements OnInit {
|
|
11
11
|
utilityService: UtilityHelperService;
|
|
12
12
|
domSanitizer: DomSanitizer;
|
|
13
|
-
debugMode: boolean;
|
|
14
|
-
debugLog(message: string, element?: any): void;
|
|
15
13
|
endPointConfiguration: EndPointConfiguration;
|
|
16
14
|
record: string | DynRecord;
|
|
17
15
|
showBackButton: boolean;
|
|
@@ -34,5 +32,5 @@ export declare class ViewFormRecordComponent implements OnInit {
|
|
|
34
32
|
*/
|
|
35
33
|
private createOutput;
|
|
36
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewFormRecordComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewFormRecordComponent, "view-form-record", never, { "
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewFormRecordComponent, "view-form-record", never, { "endPointConfiguration": "endPointConfiguration"; "record": "record"; "showBackButton": "showBackButton"; }, { "goBackEvent": "goBackEvent"; }, never, never, false, never>;
|
|
38
36
|
}
|
|
@@ -16,8 +16,6 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
export declare class FilterFormStatisticComponent {
|
|
17
17
|
private cdr;
|
|
18
18
|
utilityService: UtilityHelperService;
|
|
19
|
-
debugMode: boolean;
|
|
20
|
-
debugLog(message: string, element?: any): void;
|
|
21
19
|
configurations: DynamicModuleCompileConfig;
|
|
22
20
|
endPointConfiguration: EndPointConfiguration;
|
|
23
21
|
userID: string;
|
|
@@ -107,5 +105,5 @@ export declare class FilterFormStatisticComponent {
|
|
|
107
105
|
private getResponseTemplate;
|
|
108
106
|
private replaceTemplatePlaceholdersWithValues;
|
|
109
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterFormStatisticComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterFormStatisticComponent, "filter-form-statistic", never, { "
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterFormStatisticComponent, "filter-form-statistic", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "externalButtons": "externalButtons"; "formID": "formID"; "form": "form"; "record": "record"; "onlyView": "onlyView"; "defaultListActions": "defaultListActions"; "filterResultViewMode": "filterResultViewMode"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "afterFilter": "afterFilter"; }, never, never, false, never>;
|
|
111
109
|
}
|
|
@@ -12,8 +12,6 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
export declare class GraphsComponent implements OnInit {
|
|
13
13
|
private utilityHelperService;
|
|
14
14
|
private datePipe;
|
|
15
|
-
debugMode: boolean;
|
|
16
|
-
debugLog(message: string, element?: any): void;
|
|
17
15
|
configurations: DynamicModuleCompileConfig;
|
|
18
16
|
endPointConfiguration: EndPointConfiguration;
|
|
19
17
|
userID: string;
|
|
@@ -43,5 +41,5 @@ export declare class GraphsComponent implements OnInit {
|
|
|
43
41
|
generateGraph(): void;
|
|
44
42
|
getEligibleAnswers(): void;
|
|
45
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<GraphsComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GraphsComponent, "graphs", never, { "
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GraphsComponent, "graphs", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; }, {}, never, never, false, never>;
|
|
47
45
|
}
|