@esfaenza/es-charts 11.2.5 → 11.2.6

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.
@@ -2,7 +2,7 @@
2
2
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@esfaenza/extensions'), require('@angular/common'), require('@amcharts/amcharts4/core'), require('@amcharts/amcharts4/charts')) :
3
3
  typeof define === 'function' && define.amd ? define('@esfaenza/es-charts', ['exports', '@angular/core', '@esfaenza/extensions', '@angular/common', '@amcharts/amcharts4/core', '@amcharts/amcharts4/charts'], factory) :
4
4
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.esfaenza = global.esfaenza || {}, global.esfaenza['es-charts'] = {}), global.ng.core, global.extensions, global.ng.common, global.am4core, global.am4charts));
5
- }(this, (function (exports, i0, extensions, common, am4core, am4charts) { 'use strict';
5
+ }(this, (function (exports, core, extensions, common, am4core, am4charts) { 'use strict';
6
6
 
7
7
  function _interopNamespace(e) {
8
8
  if (e && e.__esModule) return e;
@@ -24,7 +24,6 @@
24
24
  return Object.freeze(n);
25
25
  }
26
26
 
27
- var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
28
27
  var am4core__namespace = /*#__PURE__*/_interopNamespace(am4core);
29
28
  var am4charts__namespace = /*#__PURE__*/_interopNamespace(am4charts);
30
29
 
@@ -74,7 +73,7 @@
74
73
  return BaseAdapter;
75
74
  }());
76
75
  BaseAdapter.decorators = [
77
- { type: i0.Injectable }
76
+ { type: core.Injectable }
78
77
  ];
79
78
 
80
79
  /**
@@ -657,19 +656,19 @@
657
656
  /**
658
657
  * Token che identifica il Locale di default per tutti i grafici, può essere sovrascritto dalle impostazioni locali (Settings e Input)
659
658
  */
660
- var ESC_LOCALE = new i0.InjectionToken('ESC_LOCALE');
659
+ var ESC_LOCALE = new core.InjectionToken('ESC_LOCALE');
661
660
  /**
662
661
  * Token che identifica il default per l'utilizzo o meno delle Animazioni per tutti i grafici, può essere sovrascritto dalle impostazioni locali (Settings e Input)
663
662
  */
664
- var ESC_ANIMATIONS = new i0.InjectionToken('ESC_ANIMATIONS');
663
+ var ESC_ANIMATIONS = new core.InjectionToken('ESC_ANIMATIONS');
665
664
  /**
666
665
  * Token che identifica il Tema di default per tutti i grafici, può essere sovrascritto dalle impostazioni locali (Settings e Input)
667
666
  */
668
- var ESC_THEME = new i0.InjectionToken('ESC_THEME');
667
+ var ESC_THEME = new core.InjectionToken('ESC_THEME');
669
668
  /**
670
669
  * Token che identifica l'utilizzo o meno del sistema di Log per l'intera libreria
671
670
  */
672
- var ESC_LOGS = new i0.InjectionToken('ESC_LOG');
671
+ var ESC_LOGS = new core.InjectionToken('ESC_LOGS');
673
672
 
674
673
  /**
675
674
  * Classe che si occupa del dispatch delle operazioni di rendering dei grafici utilizzando una coda per permettere ad ogni grafico di avere temi e localizzazione custom
@@ -753,10 +752,10 @@
753
752
  return ChartDispatcher;
754
753
  }());
755
754
  ChartDispatcher.decorators = [
756
- { type: i0.Injectable }
755
+ { type: core.Injectable }
757
756
  ];
758
757
  ChartDispatcher.ctorParameters = function () { return [
759
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] }
758
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] }
760
759
  ]; };
761
760
 
762
761
  /** @ignore */
@@ -1099,12 +1098,11 @@
1099
1098
  };
1100
1099
  return ChartLoader;
1101
1100
  }());
1102
- ChartLoader.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function ChartLoader_Factory() { return new ChartLoader(i0__namespace.ɵɵinject(ESC_LOGS)); }, token: ChartLoader, providedIn: "root" });
1103
1101
  ChartLoader.decorators = [
1104
- { type: i0.Injectable, args: [{ providedIn: 'root' },] }
1102
+ { type: core.Injectable }
1105
1103
  ];
1106
1104
  ChartLoader.ctorParameters = function () { return [
1107
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] }
1105
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] }
1108
1106
  ]; };
1109
1107
 
1110
1108
  /**
@@ -1148,19 +1146,19 @@
1148
1146
  /**
1149
1147
  * Evento lanciato sulla selezione di un range di dati o dalla timeline o dal grafico. Valido per tutti i grafici che supportano serie basate sulle date
1150
1148
  */
1151
- this.onSelectionChanged = new i0.EventEmitter();
1149
+ this.onSelectionChanged = new core.EventEmitter();
1152
1150
  /**
1153
1151
  * Evento lanciato dal click di una serie dalla Legenda, a patto che l'Input **HideSeriesOnLabelClick** sia impostato a false
1154
1152
  */
1155
- this.onSeriesClicked = new i0.EventEmitter();
1153
+ this.onSeriesClicked = new core.EventEmitter();
1156
1154
  /**
1157
1155
  * Evento lanciato all'inizio del caricamento di una nuova pagina del grafico
1158
1156
  */
1159
- this.onLoadStart = new i0.EventEmitter();
1157
+ this.onLoadStart = new core.EventEmitter();
1160
1158
  /**
1161
1159
  * Evento lanciato al termine del caricamento di una nuova pagina del grafico
1162
1160
  */
1163
- this.onLoadEnd = new i0.EventEmitter();
1161
+ this.onLoadEnd = new core.EventEmitter();
1164
1162
  /**
1165
1163
  * Serve a decidere se sarà presente l'interfaccia di paginazione
1166
1164
  */
@@ -1385,12 +1383,12 @@
1385
1383
  return BaseChartComponent;
1386
1384
  }());
1387
1385
  BaseChartComponent.decorators = [
1388
- { type: i0.Directive }
1386
+ { type: core.Directive }
1389
1387
  ];
1390
1388
  BaseChartComponent.ctorParameters = function () { return [
1391
- { type: i0.ElementRef },
1389
+ { type: core.ElementRef },
1392
1390
  { type: Object },
1393
- { type: i0.NgZone },
1391
+ { type: core.NgZone },
1394
1392
  { type: ChartLoader },
1395
1393
  { type: ChartDispatcher },
1396
1394
  { type: Boolean },
@@ -1399,30 +1397,30 @@
1399
1397
  { type: String }
1400
1398
  ]; };
1401
1399
  BaseChartComponent.propDecorators = {
1402
- XTitle: [{ type: i0.Input }],
1403
- YTitle: [{ type: i0.Input }],
1404
- Settings: [{ type: i0.Input }],
1405
- Legend: [{ type: i0.Input }],
1406
- LegendPosition: [{ type: i0.Input }],
1407
- Timeline: [{ type: i0.Input }],
1408
- name: [{ type: i0.Input }],
1409
- Animations: [{ type: i0.Input }],
1410
- Theme: [{ type: i0.Input }],
1411
- Locale: [{ type: i0.Input }],
1412
- HideSeriesOnLabelClick: [{ type: i0.Input }],
1413
- MinGridDistance: [{ type: i0.Input }],
1414
- AdaptLabelSizeAndOrientation: [{ type: i0.Input }],
1415
- LegendPadding: [{ type: i0.Input }],
1416
- DataDtos: [{ type: i0.Input }],
1417
- DataDtoStartIndex: [{ type: i0.Input }],
1418
- DataRetrieve: [{ type: i0.Input }],
1419
- BrowseDelayMs: [{ type: i0.Input }],
1420
- header_tr: [{ type: i0.ContentChild, args: ['header', { static: false },] }],
1421
- loading_template: [{ type: i0.ContentChild, args: ['loading', { static: false },] }],
1422
- onSelectionChanged: [{ type: i0.Output }],
1423
- onSeriesClicked: [{ type: i0.Output }],
1424
- onLoadStart: [{ type: i0.Output }],
1425
- onLoadEnd: [{ type: i0.Output }]
1400
+ XTitle: [{ type: core.Input }],
1401
+ YTitle: [{ type: core.Input }],
1402
+ Settings: [{ type: core.Input }],
1403
+ Legend: [{ type: core.Input }],
1404
+ LegendPosition: [{ type: core.Input }],
1405
+ Timeline: [{ type: core.Input }],
1406
+ name: [{ type: core.Input }],
1407
+ Animations: [{ type: core.Input }],
1408
+ Theme: [{ type: core.Input }],
1409
+ Locale: [{ type: core.Input }],
1410
+ HideSeriesOnLabelClick: [{ type: core.Input }],
1411
+ MinGridDistance: [{ type: core.Input }],
1412
+ AdaptLabelSizeAndOrientation: [{ type: core.Input }],
1413
+ LegendPadding: [{ type: core.Input }],
1414
+ DataDtos: [{ type: core.Input }],
1415
+ DataDtoStartIndex: [{ type: core.Input }],
1416
+ DataRetrieve: [{ type: core.Input }],
1417
+ BrowseDelayMs: [{ type: core.Input }],
1418
+ header_tr: [{ type: core.ContentChild, args: ['header', { static: false },] }],
1419
+ loading_template: [{ type: core.ContentChild, args: ['loading', { static: false },] }],
1420
+ onSelectionChanged: [{ type: core.Output }],
1421
+ onSeriesClicked: [{ type: core.Output }],
1422
+ onLoadStart: [{ type: core.Output }],
1423
+ onLoadEnd: [{ type: core.Output }]
1426
1424
  };
1427
1425
 
1428
1426
  /**
@@ -2443,30 +2441,30 @@
2443
2441
  return EsChartComponent;
2444
2442
  }(BaseChartComponent));
2445
2443
  EsChartComponent.decorators = [
2446
- { type: i0.Component, args: [{
2444
+ { type: core.Component, args: [{
2447
2445
  selector: 'es-chart',
2448
2446
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2449
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2447
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2450
2448
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2451
2449
  },] }
2452
2450
  ];
2453
2451
  EsChartComponent.ctorParameters = function () { return [
2454
- { type: i0.ElementRef },
2452
+ { type: core.ElementRef },
2455
2453
  { type: ChartLoader },
2456
2454
  { type: ChartDispatcher },
2457
2455
  { type: extensions.DateService },
2458
2456
  { type: BaseAdapter },
2459
- { type: i0.NgZone },
2460
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2461
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2462
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2463
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2464
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2457
+ { type: core.NgZone },
2458
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2459
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2460
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2461
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2462
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2465
2463
  ]; };
2466
2464
  EsChartComponent.propDecorators = {
2467
- Type: [{ type: i0.Input }],
2468
- Data: [{ type: i0.Input }],
2469
- DataArray: [{ type: i0.Input }]
2465
+ Type: [{ type: core.Input }],
2466
+ Data: [{ type: core.Input }],
2467
+ DataArray: [{ type: core.Input }]
2470
2468
  };
2471
2469
 
2472
2470
  /**
@@ -2517,29 +2515,29 @@
2517
2515
  return EsAreaChartComponent;
2518
2516
  }(BaseChartComponent));
2519
2517
  EsAreaChartComponent.decorators = [
2520
- { type: i0.Component, args: [{
2518
+ { type: core.Component, args: [{
2521
2519
  selector: 'es-area-chart',
2522
2520
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2523
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2521
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2524
2522
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2525
2523
  },] }
2526
2524
  ];
2527
2525
  EsAreaChartComponent.ctorParameters = function () { return [
2528
- { type: i0.ElementRef },
2526
+ { type: core.ElementRef },
2529
2527
  { type: ChartLoader },
2530
2528
  { type: ChartDispatcher },
2531
2529
  { type: BaseAdapter },
2532
2530
  { type: extensions.DateService },
2533
- { type: i0.NgZone },
2534
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2535
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2536
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2537
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2538
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2531
+ { type: core.NgZone },
2532
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2533
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2534
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2535
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2536
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2539
2537
  ]; };
2540
2538
  EsAreaChartComponent.propDecorators = {
2541
- Data: [{ type: i0.Input }],
2542
- DataArray: [{ type: i0.Input }]
2539
+ Data: [{ type: core.Input }],
2540
+ DataArray: [{ type: core.Input }]
2543
2541
  };
2544
2542
 
2545
2543
  /**
@@ -2600,39 +2598,39 @@
2600
2598
  return EsLineChartComponent;
2601
2599
  }(BaseChartComponent));
2602
2600
  EsLineChartComponent.decorators = [
2603
- { type: i0.Component, args: [{
2601
+ { type: core.Component, args: [{
2604
2602
  selector: 'es-line-chart',
2605
2603
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2606
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2604
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2607
2605
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2608
2606
  },] }
2609
2607
  ];
2610
2608
  EsLineChartComponent.ctorParameters = function () { return [
2611
- { type: i0.ElementRef },
2609
+ { type: core.ElementRef },
2612
2610
  { type: ChartLoader },
2613
2611
  { type: ChartDispatcher },
2614
2612
  { type: BaseAdapter },
2615
2613
  { type: extensions.DateService },
2616
- { type: i0.NgZone },
2617
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2618
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2619
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2620
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2621
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2614
+ { type: core.NgZone },
2615
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2616
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2617
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2618
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2619
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2622
2620
  ]; };
2623
2621
  EsLineChartComponent.propDecorators = {
2624
- Data: [{ type: i0.Input }],
2625
- DataArray: [{ type: i0.Input }],
2626
- Step: [{ type: i0.Input }],
2627
- DataGroupBucketSize: [{ type: i0.Input }],
2628
- DataGroupingThreshold: [{ type: i0.Input }],
2629
- StrokeSize: [{ type: i0.Input }],
2630
- AllowGaps: [{ type: i0.Input }],
2631
- MergeDatasets: [{ type: i0.Input }],
2632
- FinalInstants: [{ type: i0.Input }],
2633
- Min: [{ type: i0.Input }],
2634
- Max: [{ type: i0.Input }],
2635
- Fill: [{ type: i0.Input }]
2622
+ Data: [{ type: core.Input }],
2623
+ DataArray: [{ type: core.Input }],
2624
+ Step: [{ type: core.Input }],
2625
+ DataGroupBucketSize: [{ type: core.Input }],
2626
+ DataGroupingThreshold: [{ type: core.Input }],
2627
+ StrokeSize: [{ type: core.Input }],
2628
+ AllowGaps: [{ type: core.Input }],
2629
+ MergeDatasets: [{ type: core.Input }],
2630
+ FinalInstants: [{ type: core.Input }],
2631
+ Min: [{ type: core.Input }],
2632
+ Max: [{ type: core.Input }],
2633
+ Fill: [{ type: core.Input }]
2636
2634
  };
2637
2635
 
2638
2636
  /**
@@ -2689,35 +2687,35 @@
2689
2687
  return EsPieChartComponent;
2690
2688
  }(BaseChartComponent));
2691
2689
  EsPieChartComponent.decorators = [
2692
- { type: i0.Component, args: [{
2690
+ { type: core.Component, args: [{
2693
2691
  selector: 'es-pie-chart',
2694
2692
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2695
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2693
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2696
2694
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2697
2695
  },] }
2698
2696
  ];
2699
2697
  EsPieChartComponent.ctorParameters = function () { return [
2700
- { type: i0.ElementRef },
2698
+ { type: core.ElementRef },
2701
2699
  { type: ChartLoader },
2702
2700
  { type: ChartDispatcher },
2703
2701
  { type: BaseAdapter },
2704
- { type: i0.NgZone },
2705
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2706
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2707
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2708
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2709
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2702
+ { type: core.NgZone },
2703
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2704
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2705
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2706
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2707
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2710
2708
  ]; };
2711
2709
  EsPieChartComponent.propDecorators = {
2712
- Data: [{ type: i0.Input }],
2713
- DataArray: [{ type: i0.Input }],
2714
- HideZeroes: [{ type: i0.Input }],
2715
- Mode3D: [{ type: i0.Input }],
2716
- DonutRadiusPercentage: [{ type: i0.Input }],
2717
- LabelsWrap: [{ type: i0.Input }],
2718
- LabelsTruncate: [{ type: i0.Input }],
2719
- LabelsWidth: [{ type: i0.Input }],
2720
- LabelsVisible: [{ type: i0.Input }]
2710
+ Data: [{ type: core.Input }],
2711
+ DataArray: [{ type: core.Input }],
2712
+ HideZeroes: [{ type: core.Input }],
2713
+ Mode3D: [{ type: core.Input }],
2714
+ DonutRadiusPercentage: [{ type: core.Input }],
2715
+ LabelsWrap: [{ type: core.Input }],
2716
+ LabelsTruncate: [{ type: core.Input }],
2717
+ LabelsWidth: [{ type: core.Input }],
2718
+ LabelsVisible: [{ type: core.Input }]
2721
2719
  };
2722
2720
 
2723
2721
  /**
@@ -2773,34 +2771,34 @@
2773
2771
  return EsVertical2DChartComponent;
2774
2772
  }(BaseChartComponent));
2775
2773
  EsVertical2DChartComponent.decorators = [
2776
- { type: i0.Component, args: [{
2774
+ { type: core.Component, args: [{
2777
2775
  selector: 'es-vertical-2d-chart',
2778
2776
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2779
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2777
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2780
2778
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2781
2779
  },] }
2782
2780
  ];
2783
2781
  EsVertical2DChartComponent.ctorParameters = function () { return [
2784
- { type: i0.ElementRef },
2782
+ { type: core.ElementRef },
2785
2783
  { type: ChartLoader },
2786
2784
  { type: ChartDispatcher },
2787
2785
  { type: BaseAdapter },
2788
- { type: i0.NgZone },
2789
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2790
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2791
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2792
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2793
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2786
+ { type: core.NgZone },
2787
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2788
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2789
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2790
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2791
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2794
2792
  ]; };
2795
2793
  EsVertical2DChartComponent.propDecorators = {
2796
- Data: [{ type: i0.Input }],
2797
- DataArray: [{ type: i0.Input }],
2798
- ColumnWidthPercentage: [{ type: i0.Input }],
2799
- GroupPaddingPercentage: [{ type: i0.Input }],
2800
- LabelWidth: [{ type: i0.Input }],
2801
- LabelVerticalOrientationCutoffWidth: [{ type: i0.Input }],
2802
- LabelRightWhenCompressed: [{ type: i0.Input }],
2803
- LabelTopWhenCompressed: [{ type: i0.Input }]
2794
+ Data: [{ type: core.Input }],
2795
+ DataArray: [{ type: core.Input }],
2796
+ ColumnWidthPercentage: [{ type: core.Input }],
2797
+ GroupPaddingPercentage: [{ type: core.Input }],
2798
+ LabelWidth: [{ type: core.Input }],
2799
+ LabelVerticalOrientationCutoffWidth: [{ type: core.Input }],
2800
+ LabelRightWhenCompressed: [{ type: core.Input }],
2801
+ LabelTopWhenCompressed: [{ type: core.Input }]
2804
2802
  };
2805
2803
 
2806
2804
  /**
@@ -2855,33 +2853,33 @@
2855
2853
  return EsVerticalChartComponent;
2856
2854
  }(BaseChartComponent));
2857
2855
  EsVerticalChartComponent.decorators = [
2858
- { type: i0.Component, args: [{
2856
+ { type: core.Component, args: [{
2859
2857
  selector: 'es-vertical-chart',
2860
2858
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2861
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2859
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2862
2860
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2863
2861
  },] }
2864
2862
  ];
2865
2863
  EsVerticalChartComponent.ctorParameters = function () { return [
2866
- { type: i0.ElementRef },
2864
+ { type: core.ElementRef },
2867
2865
  { type: ChartLoader },
2868
2866
  { type: ChartDispatcher },
2869
2867
  { type: BaseAdapter },
2870
- { type: i0.NgZone },
2871
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2872
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2873
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2874
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2875
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2868
+ { type: core.NgZone },
2869
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2870
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2871
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2872
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2873
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2876
2874
  ]; };
2877
2875
  EsVerticalChartComponent.propDecorators = {
2878
- Data: [{ type: i0.Input }],
2879
- DataArray: [{ type: i0.Input }],
2880
- ColumnWidthPercentage: [{ type: i0.Input }],
2881
- LabelWidth: [{ type: i0.Input }],
2882
- LabelVerticalOrientationCutoffWidth: [{ type: i0.Input }],
2883
- LabelRightWhenCompressed: [{ type: i0.Input }],
2884
- LabelTopWhenCompressed: [{ type: i0.Input }]
2876
+ Data: [{ type: core.Input }],
2877
+ DataArray: [{ type: core.Input }],
2878
+ ColumnWidthPercentage: [{ type: core.Input }],
2879
+ LabelWidth: [{ type: core.Input }],
2880
+ LabelVerticalOrientationCutoffWidth: [{ type: core.Input }],
2881
+ LabelRightWhenCompressed: [{ type: core.Input }],
2882
+ LabelTopWhenCompressed: [{ type: core.Input }]
2885
2883
  };
2886
2884
 
2887
2885
  /**
@@ -2936,33 +2934,33 @@
2936
2934
  return EsVerticalStackedChartComponent;
2937
2935
  }(BaseChartComponent));
2938
2936
  EsVerticalStackedChartComponent.decorators = [
2939
- { type: i0.Component, args: [{
2937
+ { type: core.Component, args: [{
2940
2938
  selector: 'es-vertical-stacked-chart',
2941
2939
  template: "<chart-pager *ngIf=\"isPaged\" (onPageChange)=\"changePage($event)\" [Items]=\"DataArray\" [Dtos]=\"DataDtos\" [StartIndex]=\"DataDtoStartIndex\"\r\n [BrowseDelayMs]=\"BrowseDelayMs\">\r\n <ng-template #header_inner let-headerItem>\r\n <ng-container *ngTemplateOutlet=\"header_tr; context : {$implicit: headerItem}\"></ng-container>\r\n </ng-template>\r\n</chart-pager>\r\n\r\n<ng-container *ngIf=\"loadingChart && loading_template\">\r\n <div style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <ng-container *ngTemplateOutlet=\"loading_template\"></ng-container>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"loadingChart && !loading_template\">\r\n <div class=\"esc-loading-overlay\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\">\r\n <p class=\"label\">Loading....</p>\r\n </div>\r\n</ng-container>\r\n\r\n<div [class.hide-block]=\"loadingChart\" id=\"{{name}}\" style=\"width: 100%;\" [style.height]=\"isPaged ? 'calc(100% - 44px)' : '100%'\"></div>",
2942
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
2940
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
2943
2941
  styles: [".esc-loading-overlay{background:hsla(0,0%,60%,.6);text-transform:uppercase;font-size:30px;font-weight:700;color:#fff;text-align:center;font-family:monospace}.esc-loading-overlay .label{margin:0;padding-top:7%}.hide-block{display:none}"]
2944
2942
  },] }
2945
2943
  ];
2946
2944
  EsVerticalStackedChartComponent.ctorParameters = function () { return [
2947
- { type: i0.ElementRef },
2945
+ { type: core.ElementRef },
2948
2946
  { type: ChartLoader },
2949
2947
  { type: ChartDispatcher },
2950
2948
  { type: BaseAdapter },
2951
- { type: i0.NgZone },
2952
- { type: Object, decorators: [{ type: i0.Inject, args: [i0.PLATFORM_ID,] }] },
2953
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_LOGS,] }] },
2954
- { type: Boolean, decorators: [{ type: i0.Inject, args: [ESC_ANIMATIONS,] }] },
2955
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_LOCALE,] }] },
2956
- { type: String, decorators: [{ type: i0.Inject, args: [ESC_THEME,] }] }
2949
+ { type: core.NgZone },
2950
+ { type: Object, decorators: [{ type: core.Inject, args: [core.PLATFORM_ID,] }] },
2951
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_LOGS,] }] },
2952
+ { type: Boolean, decorators: [{ type: core.Inject, args: [ESC_ANIMATIONS,] }] },
2953
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_LOCALE,] }] },
2954
+ { type: String, decorators: [{ type: core.Inject, args: [ESC_THEME,] }] }
2957
2955
  ]; };
2958
2956
  EsVerticalStackedChartComponent.propDecorators = {
2959
- Data: [{ type: i0.Input }],
2960
- DataArray: [{ type: i0.Input }],
2961
- ColumnWidthPercentage: [{ type: i0.Input }],
2962
- LabelWidth: [{ type: i0.Input }],
2963
- LabelVerticalOrientationCutoffWidth: [{ type: i0.Input }],
2964
- LabelRightWhenCompressed: [{ type: i0.Input }],
2965
- LabelTopWhenCompressed: [{ type: i0.Input }]
2957
+ Data: [{ type: core.Input }],
2958
+ DataArray: [{ type: core.Input }],
2959
+ ColumnWidthPercentage: [{ type: core.Input }],
2960
+ LabelWidth: [{ type: core.Input }],
2961
+ LabelVerticalOrientationCutoffWidth: [{ type: core.Input }],
2962
+ LabelRightWhenCompressed: [{ type: core.Input }],
2963
+ LabelTopWhenCompressed: [{ type: core.Input }]
2966
2964
  };
2967
2965
 
2968
2966
  /**
@@ -2996,7 +2994,7 @@
2996
2994
  *
2997
2995
  * Qualora la proprietà **data** fosse null indica un evento di "loading"
2998
2996
  */
2999
- this.onPageChange = new i0.EventEmitter();
2997
+ this.onPageChange = new core.EventEmitter();
3000
2998
  }
3001
2999
  /**
3002
3000
  * @ignore
@@ -3056,20 +3054,20 @@
3056
3054
  return PageChartSelector;
3057
3055
  }());
3058
3056
  PageChartSelector.decorators = [
3059
- { type: i0.Component, args: [{
3057
+ { type: core.Component, args: [{
3060
3058
  selector: "chart-pager",
3061
3059
  template: "<div *ngIf=\"(Items || Dtos) && (Items || Dtos).length > 0\" class=\"pcs-no-selection\">\r\n <div class=\"pcs-button pcs-backward\">\r\n <svg class=\"pcs-svg-header\">\r\n <g class=\"pcs-svg-button-container\" role=\"button\" (click)=\"currentpage != 1 && Previous(); $event.stopPropagation(); $event.preventDefault();\">\r\n <!--Pulsante e freccettina all'interno-->\r\n <g class=\"pcs-svg-button\" [style.cursor]=\"currentpage == 1 ? 'not-allowed' : 'pointer'\"><path d=\"M3,0 L53.027,0 a3,3 0 0 1 3,3 L56.027,36.817 a3,3 0 0 1 -3,3 L3,39.817 a3,3 0 0 1 -3,-3 L0,3 a3,3 0 0 1 3,-3 Z\"></path></g>\r\n <g class=\"pcs-svg-arrow pcs-svg-arrow-left\"><path d=\"M26,14H10l5.17-6.79A2,2,0,0,0,12,4.79l-7.62,10a2,2,0,0,0,0,2.42l7.62,10a2,2,0,0,0,3.18-2.42L10,18H26a2,2,0,0,0,0-4Z\"></path></g>\r\n </g>\r\n </svg>\r\n </div>\r\n <div class=\"pcs-infos\">\r\n <ng-container *ngIf=\"headerInner_tr\">\r\n <ng-container *ngTemplateOutlet=\"headerInner_tr; context : {$implicit: (Items || Dtos)[currentpage - 1]}\"></ng-container>\r\n </ng-container>\r\n </div>\r\n <div class=\"pcs-button pcs-forward\">\r\n <svg class=\"pcs-svg-header\">\r\n <g class=\"pcs-svg-button-container\" role=\"button\" (click)=\"(Items || Dtos).length != currentpage && Next(); $event.stopPropagation(); $event.preventDefault();\">\r\n <!--Pulsante e freccettina all'interno-->\r\n <g class=\"pcs-svg-button\" [style.cursor]=\"(Items || Dtos).length == currentpage ? 'not-allowed' : 'pointer'\"><path d=\"M3,0 L53.027,0 a3,3 0 0 1 3,3 L56.027,36.817 a3,3 0 0 1 -3,3 L3,39.817 a3,3 0 0 1 -3,-3 L0,3 a3,3 0 0 1 3,-3 Z\"></path></g>\r\n <g class=\"pcs-svg-arrow pcs-svg-arrow-right\"><path d=\"M26,14H10l5.17-6.79A2,2,0,0,0,12,4.79l-7.62,10a2,2,0,0,0,0,2.42l7.62,10a2,2,0,0,0,3.18-2.42L10,18H26a2,2,0,0,0,0-4Z\"></path></g>\r\n </g>\r\n </svg>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>",
3062
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
3060
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
3063
3061
  styles: [".pcs-button{width:60px}.pcs-forward{float:right;text-align:end}.pcs-backward{float:left}.pcs-svg-header{width:57px;height:40px}.pcs-svg-button-container{outline:medium none currentcolor}.pcs-svg-arrow{pointer-events:none;fill:#555}.pcs-svg-arrow-right{transform:translate(44px,36px) rotate(180deg)}.pcs-svg-arrow-left{transform:translate(13px,4px)}.pcs-svg-button{fill:#d9d9d9;stroke:#fff;fill-opacity:1;stroke-opacity:1}.pcs-svg-button:hover{fill:#a3a3a3;cursor:pointer}.pcs-infos{width:calc(100% - 120px);height:44px;float:left}.pcs-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}"]
3064
3062
  },] }
3065
3063
  ];
3066
3064
  PageChartSelector.propDecorators = {
3067
- Items: [{ type: i0.Input }],
3068
- Dtos: [{ type: i0.Input }],
3069
- BrowseDelayMs: [{ type: i0.Input }],
3070
- StartIndex: [{ type: i0.Input }],
3071
- onPageChange: [{ type: i0.Output }],
3072
- headerInner_tr: [{ type: i0.ContentChild, args: ['header_inner', { static: false },] }]
3065
+ Items: [{ type: core.Input }],
3066
+ Dtos: [{ type: core.Input }],
3067
+ BrowseDelayMs: [{ type: core.Input }],
3068
+ StartIndex: [{ type: core.Input }],
3069
+ onPageChange: [{ type: core.Output }],
3070
+ headerInner_tr: [{ type: core.ContentChild, args: ['header_inner', { static: false },] }]
3073
3071
  };
3074
3072
 
3075
3073
  /** Componenti esportati dal modulo */
@@ -3090,6 +3088,7 @@
3090
3088
  return {
3091
3089
  ngModule: EsChartsModule,
3092
3090
  providers: [
3091
+ { provide: ChartLoader },
3093
3092
  { provide: ESC_LOCALE, useValue: (config === null || config === void 0 ? void 0 : config.locale) || 'it-IT' },
3094
3093
  { provide: ESC_ANIMATIONS, useValue: (config === null || config === void 0 ? void 0 : config.animations) == null ? true : config === null || config === void 0 ? void 0 : config.animations },
3095
3094
  { provide: ESC_THEME, useValue: (config === null || config === void 0 ? void 0 : config.theme) || 'spiritedaway' },
@@ -3101,7 +3100,7 @@
3101
3100
  return EsChartsModule;
3102
3101
  }());
3103
3102
  EsChartsModule.decorators = [
3104
- { type: i0.NgModule, args: [{
3103
+ { type: core.NgModule, args: [{
3105
3104
  imports: [common.CommonModule],
3106
3105
  declarations: __spread(COMPONENTS),
3107
3106
  providers: [ChartDispatcher],