@eqproject/eqp-dynamic-module 2.3.19 → 2.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/private/graphs/graph/graph.component.mjs +58 -0
- package/esm2020/lib/components/private/graphs/graphs.component.mjs +7 -6
- package/esm2020/lib/eqp-dynamic-module.module.mjs +13 -6
- package/esm2020/lib/models/dynamicModuleListFormRecordActionsDefault.mjs +1 -1
- package/esm2020/lib/models/graph.model.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +71 -10
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +71 -10
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/graphs/graph/graph.component.d.ts +33 -0
- package/lib/eqp-dynamic-module.module.d.ts +12 -10
- package/lib/models/graph.model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -45,6 +45,8 @@ import { EqpSelectModule } from '@eqproject/eqp-select';
|
|
|
45
45
|
import * as i3$2 from '@eqproject/eqp-attachments';
|
|
46
46
|
import { AttachmentType, EqpAttachmentsModule } from '@eqproject/eqp-attachments';
|
|
47
47
|
import * as i2$4 from '@angular/platform-browser';
|
|
48
|
+
import * as i2$5 from '@canvasjs/angular-stockcharts';
|
|
49
|
+
import { CanvasJSAngularStockChartsModule } from '@canvasjs/angular-stockcharts';
|
|
48
50
|
import * as i8 from '@angular/material/autocomplete';
|
|
49
51
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
50
52
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
@@ -5400,6 +5402,60 @@ class GraphField {
|
|
|
5400
5402
|
class Coords {
|
|
5401
5403
|
}
|
|
5402
5404
|
|
|
5405
|
+
class GraphComponent {
|
|
5406
|
+
constructor() {
|
|
5407
|
+
this.data = new Array();
|
|
5408
|
+
this.title = "";
|
|
5409
|
+
this.stockChartOptions = {
|
|
5410
|
+
width: 1000,
|
|
5411
|
+
height: 500,
|
|
5412
|
+
title: {
|
|
5413
|
+
text: ""
|
|
5414
|
+
},
|
|
5415
|
+
theme: "light2",
|
|
5416
|
+
charts: [{
|
|
5417
|
+
data: [{
|
|
5418
|
+
xValueType: "dateTime",
|
|
5419
|
+
type: "line",
|
|
5420
|
+
dataPoints: []
|
|
5421
|
+
}]
|
|
5422
|
+
}],
|
|
5423
|
+
navigator: {
|
|
5424
|
+
slider: {
|
|
5425
|
+
minimum: new Date("2018-07-01"),
|
|
5426
|
+
maximum: new Date("2019-06-30")
|
|
5427
|
+
}
|
|
5428
|
+
}
|
|
5429
|
+
};
|
|
5430
|
+
this.loaded = false;
|
|
5431
|
+
}
|
|
5432
|
+
ngOnInit() {
|
|
5433
|
+
// Aggiustamento e scrittura dati
|
|
5434
|
+
if (this.data.length > 0) {
|
|
5435
|
+
var lastvalue = this.data[0];
|
|
5436
|
+
var firstvalue = this.data[this.data.length - 1];
|
|
5437
|
+
this.stockChartOptions.navigator.slider.minimum = new Date(firstvalue.x);
|
|
5438
|
+
this.stockChartOptions.navigator.slider.maximum = new Date(lastvalue.x);
|
|
5439
|
+
this.stockChartOptions.title.text = this.title;
|
|
5440
|
+
this.stockChartOptions.charts[0].data[0].dataPoints = this.data;
|
|
5441
|
+
console.log(this.title, this.stockChartOptions);
|
|
5442
|
+
this.loaded = true;
|
|
5443
|
+
}
|
|
5444
|
+
}
|
|
5445
|
+
}
|
|
5446
|
+
GraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5447
|
+
GraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: GraphComponent, selector: "graph", inputs: { data: "data", title: "title" }, ngImport: i0, template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\">Nessun dato trovato nell'intervallo specificato!</div>", styles: [""], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$5.CanvasJSStockChart, selector: "canvasjs-stockchart", inputs: ["options", "styles"], outputs: ["stockChartInstance"] }] });
|
|
5448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GraphComponent, decorators: [{
|
|
5449
|
+
type: Component,
|
|
5450
|
+
args: [{ selector: 'graph', template: "<canvasjs-stockchart *ngIf=\"loaded\" [options]=\"stockChartOptions\"></canvasjs-stockchart>\r\n<div class=\"error\" *ngIf=\"!loaded\">Nessun dato trovato nell'intervallo specificato!</div>" }]
|
|
5451
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
5452
|
+
type: Input,
|
|
5453
|
+
args: ["data"]
|
|
5454
|
+
}], title: [{
|
|
5455
|
+
type: Input,
|
|
5456
|
+
args: ["title"]
|
|
5457
|
+
}] } });
|
|
5458
|
+
|
|
5403
5459
|
class GraphsComponent {
|
|
5404
5460
|
debugLog(message, element) {
|
|
5405
5461
|
if (this.debugMode) {
|
|
@@ -5500,6 +5556,7 @@ class GraphsComponent {
|
|
|
5500
5556
|
}
|
|
5501
5557
|
}
|
|
5502
5558
|
generateGraph() {
|
|
5559
|
+
this.generated = false;
|
|
5503
5560
|
this.getEligibleAnswers();
|
|
5504
5561
|
}
|
|
5505
5562
|
getEligibleAnswers() {
|
|
@@ -5520,24 +5577,23 @@ class GraphsComponent {
|
|
|
5520
5577
|
this.eligibleAnswers.forEach((answer) => {
|
|
5521
5578
|
var answervalues = JSON.parse(answer.SerializedValues);
|
|
5522
5579
|
this.selectedFields.forEach((field) => {
|
|
5523
|
-
debugger;
|
|
5524
5580
|
if (answervalues[field.Name] != null) {
|
|
5525
5581
|
var coords = new Coords();
|
|
5526
|
-
coords.x = answer.AnswerDate.split("T")[0];
|
|
5582
|
+
coords.x = new Date(answer.AnswerDate.split("T")[0]);
|
|
5527
5583
|
coords.y = parseFloat(answervalues[field.Name]);
|
|
5528
5584
|
field.Coords.push(coords);
|
|
5529
5585
|
}
|
|
5530
5586
|
});
|
|
5531
5587
|
});
|
|
5532
|
-
this.generated = true;
|
|
5588
|
+
setTimeout(() => { this.generated = true; }, 1000);
|
|
5533
5589
|
console.log("FINAL COORDS", this.selectedFields);
|
|
5534
5590
|
}
|
|
5535
5591
|
}
|
|
5536
5592
|
GraphsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GraphsComponent, deps: [{ token: UtilityHelperService }, { token: i6.DatePipe }], target: i0.ɵɵFactoryTarget.Component });
|
|
5537
|
-
GraphsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: GraphsComponent, selector: "graphs", inputs: { debugMode: "debugMode", configurations: "configurations", endPointConfiguration: "endPointConfiguration", userID: "userID", formID: "formID", form: "form" }, ngImport: i0, template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedFields\">\r\n <div [hidden]=\"!selectedField.Visible\">\r\n
|
|
5593
|
+
GraphsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: GraphsComponent, selector: "graphs", inputs: { debugMode: "debugMode", configurations: "configurations", endPointConfiguration: "endPointConfiguration", userID: "userID", formID: "formID", form: "form" }, ngImport: i0, template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedFields\">\r\n <div class=\"generation_divider\" [hidden]=\"!selectedField.Visible\">\r\n <graph [data]=\"selectedField.Coords\" [title]=\"selectedField.Name\"></graph>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </mat-card-content>\r\n <mat-card-footer>\r\n </mat-card-footer>\r\n </mat-card>", styles: [".btn-graph-generate{height:56px;width:100%}.generation_box .generation_divider{margin-bottom:10px;padding-bottom:10px;border-bottom:2px solid black;width:100%;height:600px}.generation_box .generation_divider>*{width:100%;height:400px}\n"], dependencies: [{ kind: "component", type: i1.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "component", type: i2$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i5$1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i5$1.MatCardContent, selector: "mat-card-content" }, { kind: "directive", type: i5$1.MatCardFooter, selector: "mat-card-footer" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i7.EqpSelectComponent, selector: "eqp-select", inputs: ["placeholder", "enumData", "enumDataToExclude", "arrayData", "arrayKeyProperty", "arrayValueProperty", "ngModelOptions", "ngModelInput", "formGroupInput", "formControlNameInput", "isRequired", "isDisabled", "isMultiLanguage", "multilanguagePrefixKey", "isAlphabeticalOrderable", "suffixIcon", "prefixIcon", "isMultiSelect", "includeFullObject", "showCancelButton", "isSearchable", "searchText", "noResultSearchText", "data"], outputs: ["ngModelInputChange"] }, { kind: "component", type: i1$1.EqpDateTimePickerComponent, selector: "eqp-datetimepicker", inputs: ["placeholder", "ngModelInput", "UTCDate", "timeType", "pickerMode", "formControlNameInput", "formGroupInput", "isRequired", "minDate", "maxDate", "readonlyInput", "disabled", "showSpinners", "showSeconds", "disableMinute", "defaultTime", "stepHour", "stepMinute", "stepSecond", "color", "enableMeridian", "touchUi", "customDateFormat"], outputs: ["ngModelInputChange", "onDateChange"] }, { kind: "component", type: GraphComponent, selector: "graph", inputs: ["data", "title"] }] });
|
|
5538
5594
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GraphsComponent, decorators: [{
|
|
5539
5595
|
type: Component,
|
|
5540
|
-
args: [{ selector: 'graphs', template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedFields\">\r\n <div [hidden]=\"!selectedField.Visible\">\r\n
|
|
5596
|
+
args: [{ selector: 'graphs', template: "<mat-card class=\"list-view-form-record\" *ngIf=\"loaded\">\r\n <mat-card-content>\r\n \r\n\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo inizio'\"\r\n [(ngModelInput)]=\"minperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div>\r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-datetimepicker class=\"date\" [placeholder]=\"'Periodo fine'\"\r\n [(ngModelInput)]=\"maxperiod\"\r\n [pickerMode]=\"pickerModeEnum.DATE\" [UTCDate]=\"true\" [showSeconds]=\"false\">\r\n </eqp-datetimepicker>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <eqp-select [arrayData]=\"fields\" [(ngModelInput)]=\"selectedFields\" [placeholder]=\"'Selezione dei campi'\"\r\n [arrayKeyProperty]=\"'Name'\" [arrayValueProperty]=\"'Name'\" [isMultiSelect]=\"true\">\r\n </eqp-select>\r\n </div> \r\n <div class=\"col-sm-12 col-md-3 mt-2\">\r\n <button\r\n [disabled]=\"selectedFields == null || selectedFields.length == 0\"\r\n class=\"btn btn-graph-generate button-next me-2\"\r\n mat-raised-button\r\n color=\"primary\"\r\n (click)=\"generateGraph()\"\r\n >\r\n Genera\r\n </button>\r\n </div> \r\n </div>\r\n\r\n <div class=\"generation_box\" *ngIf=\"generated\">\r\n <div class=\"row\">\r\n <div class=\"col-3\">\r\n <div class=\"generation_options\" *ngFor=\"let selectedField of selectedFields\">\r\n <mat-checkbox class=\"mr-2\" [(ngModel)]=\"selectedField.Visible\">\r\n {{selectedField.Name}}\r\n </mat-checkbox>\r\n </div>\r\n </div>\r\n <div class=\"col-9\">\r\n <div class=\"generation_graph\" *ngFor=\"let selectedField of selectedFields\">\r\n <div class=\"generation_divider\" [hidden]=\"!selectedField.Visible\">\r\n <graph [data]=\"selectedField.Coords\" [title]=\"selectedField.Name\"></graph>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </mat-card-content>\r\n <mat-card-footer>\r\n </mat-card-footer>\r\n </mat-card>", styles: [".btn-graph-generate{height:56px;width:100%}.generation_box .generation_divider{margin-bottom:10px;padding-bottom:10px;border-bottom:2px solid black;width:100%;height:600px}.generation_box .generation_divider>*{width:100%;height:400px}\n"] }]
|
|
5541
5597
|
}], ctorParameters: function () { return [{ type: UtilityHelperService }, { type: i6.DatePipe }]; }, propDecorators: { debugMode: [{
|
|
5542
5598
|
type: Input
|
|
5543
5599
|
}], configurations: [{
|
|
@@ -8512,7 +8568,8 @@ EqpDynamicModuleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
8512
8568
|
AttachmentFilterTemplateComponent,
|
|
8513
8569
|
ImageFilterTemplateComponent,
|
|
8514
8570
|
ListFormRecordFilterTemplateComponent,
|
|
8515
|
-
GraphsComponent
|
|
8571
|
+
GraphsComponent,
|
|
8572
|
+
GraphComponent], imports: [MaterialModule,
|
|
8516
8573
|
FormsModule,
|
|
8517
8574
|
CommonModule,
|
|
8518
8575
|
ReactiveFormsModule,
|
|
@@ -8521,7 +8578,8 @@ EqpDynamicModuleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
8521
8578
|
EqpSelectModule,
|
|
8522
8579
|
EqpDatetimepickerModule,
|
|
8523
8580
|
EqpFiltersModule,
|
|
8524
|
-
EqpNumericModule
|
|
8581
|
+
EqpNumericModule,
|
|
8582
|
+
CanvasJSAngularStockChartsModule], exports: [EqpDynamicModuleComponent,
|
|
8525
8583
|
EqpDynamicModuleConfiguratorComponent] });
|
|
8526
8584
|
EqpDynamicModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EqpDynamicModuleModule, imports: [MaterialModule,
|
|
8527
8585
|
FormsModule,
|
|
@@ -8532,7 +8590,8 @@ EqpDynamicModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
8532
8590
|
EqpSelectModule,
|
|
8533
8591
|
EqpDatetimepickerModule,
|
|
8534
8592
|
EqpFiltersModule,
|
|
8535
|
-
EqpNumericModule
|
|
8593
|
+
EqpNumericModule,
|
|
8594
|
+
CanvasJSAngularStockChartsModule] });
|
|
8536
8595
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EqpDynamicModuleModule, decorators: [{
|
|
8537
8596
|
type: NgModule,
|
|
8538
8597
|
args: [{
|
|
@@ -8570,7 +8629,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
8570
8629
|
AttachmentFilterTemplateComponent,
|
|
8571
8630
|
ImageFilterTemplateComponent,
|
|
8572
8631
|
ListFormRecordFilterTemplateComponent,
|
|
8573
|
-
GraphsComponent
|
|
8632
|
+
GraphsComponent,
|
|
8633
|
+
GraphComponent
|
|
8574
8634
|
],
|
|
8575
8635
|
imports: [
|
|
8576
8636
|
MaterialModule,
|
|
@@ -8582,7 +8642,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
8582
8642
|
EqpSelectModule,
|
|
8583
8643
|
EqpDatetimepickerModule,
|
|
8584
8644
|
EqpFiltersModule,
|
|
8585
|
-
EqpNumericModule
|
|
8645
|
+
EqpNumericModule,
|
|
8646
|
+
CanvasJSAngularStockChartsModule
|
|
8586
8647
|
],
|
|
8587
8648
|
exports: [
|
|
8588
8649
|
EqpDynamicModuleComponent,
|