@carbon/charts-angular 1.11.20 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/esm2022/lib/charts/alluvial-chart.component.mjs +3 -3
  3. package/esm2022/lib/charts/area-chart-stacked.component.mjs +3 -3
  4. package/esm2022/lib/charts/area-chart.component.mjs +3 -3
  5. package/esm2022/lib/charts/bar-chart-grouped.component.mjs +3 -3
  6. package/esm2022/lib/charts/bar-chart-simple.component.mjs +3 -3
  7. package/esm2022/lib/charts/bar-chart-stacked.component.mjs +3 -3
  8. package/esm2022/lib/charts/base-chart.component.mjs +3 -3
  9. package/esm2022/lib/charts/boxplot-chart.component.mjs +3 -3
  10. package/esm2022/lib/charts/bubble-chart.component.mjs +3 -3
  11. package/esm2022/lib/charts/bullet-chart.component.mjs +3 -3
  12. package/esm2022/lib/charts/charts.module.mjs +4 -4
  13. package/esm2022/lib/charts/choropleth.component.mjs +3 -3
  14. package/esm2022/lib/charts/circle-pack-chart.component.mjs +3 -3
  15. package/esm2022/lib/charts/combo-chart.component.mjs +3 -3
  16. package/esm2022/lib/charts/donut-chart.component.mjs +3 -3
  17. package/esm2022/lib/charts/gauge-chart.component.mjs +3 -3
  18. package/esm2022/lib/charts/heatmap-chart.component.mjs +3 -3
  19. package/esm2022/lib/charts/histogram-chart.component.mjs +3 -3
  20. package/esm2022/lib/charts/line-chart.component.mjs +3 -3
  21. package/esm2022/lib/charts/lollipop-chart.component.mjs +3 -3
  22. package/esm2022/lib/charts/meter-chart.component.mjs +3 -3
  23. package/esm2022/lib/charts/pie-chart.component.mjs +3 -3
  24. package/esm2022/lib/charts/radar-chart.component.mjs +3 -3
  25. package/esm2022/lib/charts/scatter-chart.component.mjs +3 -3
  26. package/esm2022/lib/charts/tree-chart.component.mjs +3 -3
  27. package/esm2022/lib/charts/treemap-chart.component.mjs +3 -3
  28. package/esm2022/lib/charts/wordcloud-chart.component.mjs +3 -3
  29. package/esm2022/lib/diagrams/edges/edge.component.mjs +3 -3
  30. package/esm2022/lib/diagrams/edges/edge.module.mjs +4 -4
  31. package/esm2022/lib/diagrams/edges/marker/marker.component.mjs +21 -21
  32. package/esm2022/lib/diagrams/edges/marker/marker.module.mjs +4 -4
  33. package/esm2022/lib/diagrams/nodes/cards/card-node-column.component.mjs +3 -3
  34. package/esm2022/lib/diagrams/nodes/cards/card-node-label.component.mjs +3 -3
  35. package/esm2022/lib/diagrams/nodes/cards/card-node-subtitle.component.mjs +3 -3
  36. package/esm2022/lib/diagrams/nodes/cards/card-node-title.component.mjs +3 -3
  37. package/esm2022/lib/diagrams/nodes/cards/card-node.component.mjs +3 -3
  38. package/esm2022/lib/diagrams/nodes/cards/card-node.module.mjs +4 -4
  39. package/esm2022/lib/diagrams/nodes/shape/shape-node.component.mjs +3 -3
  40. package/esm2022/lib/diagrams/nodes/shape/shape-node.module.mjs +4 -4
  41. package/fesm2022/carbon-charts-angular.mjs +140 -140
  42. package/package.json +5 -5
  43. package/styles.css +4249 -781
  44. package/styles.css.map +1 -1
  45. package/styles.min.css +1 -1
  46. package/styles.min.css.map +1 -1
@@ -57,10 +57,10 @@ class BaseChartComponent {
57
57
  ngAfterViewInit() {
58
58
  console.log('Class that extended BaseChartComponent did not implement ngAfterViewInit().');
59
59
  }
60
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BaseChartComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
61
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: BaseChartComponent, selector: "ibm-base-chart", inputs: { data: "data", options: "options", width: "width", height: "height" }, ngImport: i0, template: ``, isInline: true }); }
60
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BaseChartComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
61
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: BaseChartComponent, selector: "ibm-base-chart", inputs: { data: "data", options: "options", width: "width", height: "height" }, ngImport: i0, template: ``, isInline: true }); }
62
62
  }
63
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BaseChartComponent, decorators: [{
63
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BaseChartComponent, decorators: [{
64
64
  type: Component,
65
65
  args: [{
66
66
  selector: 'ibm-base-chart',
@@ -92,10 +92,10 @@ class AlluvialChartComponent extends BaseChartComponent {
92
92
  });
93
93
  Object.assign(this, this.chart);
94
94
  }
95
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: AlluvialChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
96
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: AlluvialChartComponent, selector: "ibm-alluvial-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
95
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: AlluvialChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
96
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: AlluvialChartComponent, selector: "ibm-alluvial-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
97
97
  }
98
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: AlluvialChartComponent, decorators: [{
98
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: AlluvialChartComponent, decorators: [{
99
99
  type: Component,
100
100
  args: [{
101
101
  selector: 'ibm-alluvial-chart',
@@ -119,10 +119,10 @@ class AreaChartComponent extends BaseChartComponent {
119
119
  });
120
120
  Object.assign(this, this.chart);
121
121
  }
122
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: AreaChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
123
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: AreaChartComponent, selector: "ibm-area-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
122
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: AreaChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
123
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: AreaChartComponent, selector: "ibm-area-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
124
124
  }
125
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: AreaChartComponent, decorators: [{
125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: AreaChartComponent, decorators: [{
126
126
  type: Component,
127
127
  args: [{
128
128
  selector: 'ibm-area-chart',
@@ -146,10 +146,10 @@ class BoxplotChartComponent extends BaseChartComponent {
146
146
  });
147
147
  Object.assign(this, this.chart);
148
148
  }
149
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BoxplotChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
150
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: BoxplotChartComponent, selector: "ibm-boxplot-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
149
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BoxplotChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
150
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: BoxplotChartComponent, selector: "ibm-boxplot-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
151
151
  }
152
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BoxplotChartComponent, decorators: [{
152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BoxplotChartComponent, decorators: [{
153
153
  type: Component,
154
154
  args: [{
155
155
  selector: 'ibm-boxplot-chart',
@@ -173,10 +173,10 @@ class BubbleChartComponent extends BaseChartComponent {
173
173
  });
174
174
  Object.assign(this, this.chart);
175
175
  }
176
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BubbleChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
177
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: BubbleChartComponent, selector: "ibm-bubble-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BubbleChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
177
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: BubbleChartComponent, selector: "ibm-bubble-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
178
178
  }
179
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BubbleChartComponent, decorators: [{
179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BubbleChartComponent, decorators: [{
180
180
  type: Component,
181
181
  args: [{
182
182
  selector: 'ibm-bubble-chart',
@@ -200,10 +200,10 @@ class BulletChartComponent extends BaseChartComponent {
200
200
  });
201
201
  Object.assign(this, this.chart);
202
202
  }
203
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BulletChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
204
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: BulletChartComponent, selector: "ibm-bullet-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
203
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BulletChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
204
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: BulletChartComponent, selector: "ibm-bullet-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
205
205
  }
206
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: BulletChartComponent, decorators: [{
206
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: BulletChartComponent, decorators: [{
207
207
  type: Component,
208
208
  args: [{
209
209
  selector: 'ibm-bullet-chart',
@@ -227,10 +227,10 @@ class CirclePackChartComponent extends BaseChartComponent {
227
227
  });
228
228
  Object.assign(this, this.chart);
229
229
  }
230
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CirclePackChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
231
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CirclePackChartComponent, selector: "ibm-circle-pack-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
230
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CirclePackChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
231
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CirclePackChartComponent, selector: "ibm-circle-pack-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
232
232
  }
233
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CirclePackChartComponent, decorators: [{
233
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CirclePackChartComponent, decorators: [{
234
234
  type: Component,
235
235
  args: [{
236
236
  selector: 'ibm-circle-pack-chart',
@@ -254,10 +254,10 @@ class ComboChartComponent extends BaseChartComponent {
254
254
  });
255
255
  Object.assign(this, this.chart);
256
256
  }
257
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ComboChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
258
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: ComboChartComponent, selector: "ibm-combo-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
257
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
258
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ComboChartComponent, selector: "ibm-combo-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
259
259
  }
260
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ComboChartComponent, decorators: [{
260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboChartComponent, decorators: [{
261
261
  type: Component,
262
262
  args: [{
263
263
  selector: 'ibm-combo-chart',
@@ -281,10 +281,10 @@ class DonutChartComponent extends BaseChartComponent {
281
281
  });
282
282
  Object.assign(this, this.chart);
283
283
  }
284
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: DonutChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
285
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: DonutChartComponent, selector: "ibm-donut-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
284
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: DonutChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
285
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: DonutChartComponent, selector: "ibm-donut-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
286
286
  }
287
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: DonutChartComponent, decorators: [{
287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: DonutChartComponent, decorators: [{
288
288
  type: Component,
289
289
  args: [{
290
290
  selector: 'ibm-donut-chart',
@@ -308,10 +308,10 @@ class ExperimentalChoroplethChartComponent extends BaseChartComponent {
308
308
  });
309
309
  Object.assign(this, this.chart);
310
310
  }
311
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ExperimentalChoroplethChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
312
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: ExperimentalChoroplethChartComponent, selector: "ibm-experimental-choropleth-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
311
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ExperimentalChoroplethChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
312
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ExperimentalChoroplethChartComponent, selector: "ibm-experimental-choropleth-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
313
313
  }
314
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ExperimentalChoroplethChartComponent, decorators: [{
314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ExperimentalChoroplethChartComponent, decorators: [{
315
315
  type: Component,
316
316
  args: [{
317
317
  selector: 'ibm-experimental-choropleth-chart',
@@ -335,10 +335,10 @@ class GaugeChartComponent extends BaseChartComponent {
335
335
  });
336
336
  Object.assign(this, this.chart);
337
337
  }
338
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: GaugeChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
339
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: GaugeChartComponent, selector: "ibm-gauge-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
338
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: GaugeChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
339
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: GaugeChartComponent, selector: "ibm-gauge-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
340
340
  }
341
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: GaugeChartComponent, decorators: [{
341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: GaugeChartComponent, decorators: [{
342
342
  type: Component,
343
343
  args: [{
344
344
  selector: 'ibm-gauge-chart',
@@ -362,10 +362,10 @@ class GroupedBarChartComponent extends BaseChartComponent {
362
362
  });
363
363
  Object.assign(this, this.chart);
364
364
  }
365
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: GroupedBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
366
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: GroupedBarChartComponent, selector: "ibm-grouped-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
365
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: GroupedBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
366
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: GroupedBarChartComponent, selector: "ibm-grouped-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
367
367
  }
368
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: GroupedBarChartComponent, decorators: [{
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: GroupedBarChartComponent, decorators: [{
369
369
  type: Component,
370
370
  args: [{
371
371
  selector: 'ibm-grouped-bar-chart',
@@ -389,10 +389,10 @@ class HeatmapChartComponent extends BaseChartComponent {
389
389
  });
390
390
  Object.assign(this, this.chart);
391
391
  }
392
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: HeatmapChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
393
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: HeatmapChartComponent, selector: "ibm-heatmap-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
392
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: HeatmapChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
393
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: HeatmapChartComponent, selector: "ibm-heatmap-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
394
394
  }
395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: HeatmapChartComponent, decorators: [{
395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: HeatmapChartComponent, decorators: [{
396
396
  type: Component,
397
397
  args: [{
398
398
  selector: 'ibm-heatmap-chart',
@@ -416,10 +416,10 @@ class HistogramChartComponent extends BaseChartComponent {
416
416
  });
417
417
  Object.assign(this, this.chart);
418
418
  }
419
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: HistogramChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
420
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: HistogramChartComponent, selector: "ibm-histogram-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
419
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: HistogramChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
420
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: HistogramChartComponent, selector: "ibm-histogram-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
421
421
  }
422
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: HistogramChartComponent, decorators: [{
422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: HistogramChartComponent, decorators: [{
423
423
  type: Component,
424
424
  args: [{
425
425
  selector: 'ibm-histogram-chart',
@@ -443,10 +443,10 @@ class LineChartComponent extends BaseChartComponent {
443
443
  });
444
444
  Object.assign(this, this.chart);
445
445
  }
446
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: LineChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
447
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: LineChartComponent, selector: "ibm-line-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
446
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: LineChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
447
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: LineChartComponent, selector: "ibm-line-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
448
448
  }
449
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: LineChartComponent, decorators: [{
449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: LineChartComponent, decorators: [{
450
450
  type: Component,
451
451
  args: [{
452
452
  selector: 'ibm-line-chart',
@@ -470,10 +470,10 @@ class LollipopChartComponent extends BaseChartComponent {
470
470
  });
471
471
  Object.assign(this, this.chart);
472
472
  }
473
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: LollipopChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
474
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: LollipopChartComponent, selector: "ibm-lollipop-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
473
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: LollipopChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
474
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: LollipopChartComponent, selector: "ibm-lollipop-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
475
475
  }
476
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: LollipopChartComponent, decorators: [{
476
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: LollipopChartComponent, decorators: [{
477
477
  type: Component,
478
478
  args: [{
479
479
  selector: 'ibm-lollipop-chart',
@@ -497,10 +497,10 @@ class MeterChartComponent extends BaseChartComponent {
497
497
  });
498
498
  Object.assign(this, this.chart);
499
499
  }
500
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MeterChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
501
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MeterChartComponent, selector: "ibm-meter-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
500
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MeterChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
501
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MeterChartComponent, selector: "ibm-meter-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
502
502
  }
503
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MeterChartComponent, decorators: [{
503
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MeterChartComponent, decorators: [{
504
504
  type: Component,
505
505
  args: [{
506
506
  selector: 'ibm-meter-chart',
@@ -524,10 +524,10 @@ class PieChartComponent extends BaseChartComponent {
524
524
  });
525
525
  Object.assign(this, this.chart);
526
526
  }
527
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: PieChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
528
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: PieChartComponent, selector: "ibm-pie-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
527
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: PieChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
528
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: PieChartComponent, selector: "ibm-pie-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
529
529
  }
530
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: PieChartComponent, decorators: [{
530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: PieChartComponent, decorators: [{
531
531
  type: Component,
532
532
  args: [{
533
533
  selector: 'ibm-pie-chart',
@@ -551,10 +551,10 @@ class RadarChartComponent extends BaseChartComponent {
551
551
  });
552
552
  Object.assign(this, this.chart);
553
553
  }
554
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: RadarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
555
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: RadarChartComponent, selector: "ibm-radar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
554
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: RadarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
555
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: RadarChartComponent, selector: "ibm-radar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
556
556
  }
557
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: RadarChartComponent, decorators: [{
557
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: RadarChartComponent, decorators: [{
558
558
  type: Component,
559
559
  args: [{
560
560
  selector: 'ibm-radar-chart',
@@ -578,10 +578,10 @@ class ScatterChartComponent extends BaseChartComponent {
578
578
  });
579
579
  Object.assign(this, this.chart);
580
580
  }
581
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ScatterChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
582
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: ScatterChartComponent, selector: "ibm-scatter-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
581
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ScatterChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
582
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ScatterChartComponent, selector: "ibm-scatter-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
583
583
  }
584
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ScatterChartComponent, decorators: [{
584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ScatterChartComponent, decorators: [{
585
585
  type: Component,
586
586
  args: [{
587
587
  selector: 'ibm-scatter-chart',
@@ -605,10 +605,10 @@ class SimpleBarChartComponent extends BaseChartComponent {
605
605
  });
606
606
  Object.assign(this, this.chart);
607
607
  }
608
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: SimpleBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
609
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: SimpleBarChartComponent, selector: "ibm-simple-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
608
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: SimpleBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
609
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: SimpleBarChartComponent, selector: "ibm-simple-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
610
610
  }
611
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: SimpleBarChartComponent, decorators: [{
611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: SimpleBarChartComponent, decorators: [{
612
612
  type: Component,
613
613
  args: [{
614
614
  selector: 'ibm-simple-bar-chart',
@@ -632,10 +632,10 @@ class StackedAreaChartComponent extends BaseChartComponent {
632
632
  });
633
633
  Object.assign(this, this.chart);
634
634
  }
635
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: StackedAreaChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
636
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: StackedAreaChartComponent, selector: "ibm-stacked-area-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
635
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: StackedAreaChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
636
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: StackedAreaChartComponent, selector: "ibm-stacked-area-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
637
637
  }
638
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: StackedAreaChartComponent, decorators: [{
638
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: StackedAreaChartComponent, decorators: [{
639
639
  type: Component,
640
640
  args: [{
641
641
  selector: 'ibm-stacked-area-chart',
@@ -659,10 +659,10 @@ class StackedBarChartComponent extends BaseChartComponent {
659
659
  });
660
660
  Object.assign(this, this.chart);
661
661
  }
662
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: StackedBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
663
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: StackedBarChartComponent, selector: "ibm-stacked-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
662
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: StackedBarChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
663
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: StackedBarChartComponent, selector: "ibm-stacked-bar-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
664
664
  }
665
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: StackedBarChartComponent, decorators: [{
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: StackedBarChartComponent, decorators: [{
666
666
  type: Component,
667
667
  args: [{
668
668
  selector: 'ibm-stacked-bar-chart',
@@ -686,10 +686,10 @@ class TreeChartComponent extends BaseChartComponent {
686
686
  });
687
687
  Object.assign(this, this.chart);
688
688
  }
689
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: TreeChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
690
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: TreeChartComponent, selector: "ibm-tree-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
689
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: TreeChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
690
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: TreeChartComponent, selector: "ibm-tree-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
691
691
  }
692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: TreeChartComponent, decorators: [{
692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: TreeChartComponent, decorators: [{
693
693
  type: Component,
694
694
  args: [{
695
695
  selector: 'ibm-tree-chart',
@@ -713,10 +713,10 @@ class TreemapChartComponent extends BaseChartComponent {
713
713
  });
714
714
  Object.assign(this, this.chart);
715
715
  }
716
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: TreemapChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
717
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: TreemapChartComponent, selector: "ibm-treemap-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
716
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: TreemapChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
717
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: TreemapChartComponent, selector: "ibm-treemap-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
718
718
  }
719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: TreemapChartComponent, decorators: [{
719
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: TreemapChartComponent, decorators: [{
720
720
  type: Component,
721
721
  args: [{
722
722
  selector: 'ibm-treemap-chart',
@@ -740,10 +740,10 @@ class WordCloudChartComponent extends BaseChartComponent {
740
740
  });
741
741
  Object.assign(this, this.chart);
742
742
  }
743
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: WordCloudChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
744
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: WordCloudChartComponent, selector: "ibm-wordcloud-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
743
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: WordCloudChartComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
744
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: WordCloudChartComponent, selector: "ibm-wordcloud-chart", usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
745
745
  }
746
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: WordCloudChartComponent, decorators: [{
746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: WordCloudChartComponent, decorators: [{
747
747
  type: Component,
748
748
  args: [{
749
749
  selector: 'ibm-wordcloud-chart',
@@ -752,8 +752,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
752
752
  }] });
753
753
 
754
754
  class ChartsModule {
755
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ChartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
756
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.0", ngImport: i0, type: ChartsModule, declarations: [BaseChartComponent,
755
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ChartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
756
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.2", ngImport: i0, type: ChartsModule, declarations: [BaseChartComponent,
757
757
  AlluvialChartComponent,
758
758
  AreaChartComponent,
759
759
  StackedAreaChartComponent,
@@ -804,9 +804,9 @@ class ChartsModule {
804
804
  TreemapChartComponent,
805
805
  CirclePackChartComponent,
806
806
  WordCloudChartComponent] }); }
807
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ChartsModule, imports: [CommonModule] }); }
807
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ChartsModule, imports: [CommonModule] }); }
808
808
  }
809
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ChartsModule, decorators: [{
809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ChartsModule, decorators: [{
810
810
  type: NgModule,
811
811
  args: [{
812
812
  declarations: [
@@ -907,10 +907,10 @@ class MarkerComponent {
907
907
  this.refY = this.refY || yPos;
908
908
  };
909
909
  }
910
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
911
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerComponent, selector: "ibm-graph-marker,[ibm-graph-marker]", inputs: { d: "d", color: "color", id: "id", orient: "orient", height: "height", width: "width", refX: "refX", refY: "refY", position: "position" }, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
910
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
911
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerComponent, selector: "ibm-graph-marker,[ibm-graph-marker]", inputs: { d: "d", color: "color", id: "id", orient: "orient", height: "height", width: "width", refX: "refX", refY: "refY", position: "position" }, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
912
912
  }
913
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerComponent, decorators: [{
913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerComponent, decorators: [{
914
914
  type: Component,
915
915
  args: [{
916
916
  selector: 'ibm-graph-marker,[ibm-graph-marker]',
@@ -939,10 +939,10 @@ class MarkerArrowLeftComponent extends MarkerComponent {
939
939
  ngOnInit() {
940
940
  this.setAttributes({ ...arrowLeft });
941
941
  }
942
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerArrowLeftComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
943
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerArrowLeftComponent, selector: "ibm-graph-marker-arrow-left,[ibm-graph-marker-arrow-left]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
942
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerArrowLeftComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
943
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerArrowLeftComponent, selector: "ibm-graph-marker-arrow-left,[ibm-graph-marker-arrow-left]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
944
944
  }
945
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerArrowLeftComponent, decorators: [{
945
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerArrowLeftComponent, decorators: [{
946
946
  type: Component,
947
947
  args: [{
948
948
  selector: 'ibm-graph-marker-arrow-left,[ibm-graph-marker-arrow-left]',
@@ -953,10 +953,10 @@ class MarkerArrowRightComponent extends MarkerComponent {
953
953
  ngOnInit() {
954
954
  this.setAttributes({ ...arrowRight });
955
955
  }
956
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerArrowRightComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
957
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerArrowRightComponent, selector: "ibm-graph-marker-arrow-right,[ibm-graph-marker-arrow-right]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
956
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerArrowRightComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
957
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerArrowRightComponent, selector: "ibm-graph-marker-arrow-right,[ibm-graph-marker-arrow-right]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
958
958
  }
959
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerArrowRightComponent, decorators: [{
959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerArrowRightComponent, decorators: [{
960
960
  type: Component,
961
961
  args: [{
962
962
  selector: 'ibm-graph-marker-arrow-right,[ibm-graph-marker-arrow-right]',
@@ -967,10 +967,10 @@ class MarkerShapeNodeComponent extends MarkerComponent {
967
967
  ngOnInit() {
968
968
  this.setAttributes({ ...circle });
969
969
  }
970
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerShapeNodeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
971
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerShapeNodeComponent, selector: "ibm-graph-marker-circle,[ibm-graph-marker-circle]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
970
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerShapeNodeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
971
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerShapeNodeComponent, selector: "ibm-graph-marker-circle,[ibm-graph-marker-circle]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
972
972
  }
973
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerShapeNodeComponent, decorators: [{
973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerShapeNodeComponent, decorators: [{
974
974
  type: Component,
975
975
  args: [{
976
976
  selector: 'ibm-graph-marker-circle,[ibm-graph-marker-circle]',
@@ -981,10 +981,10 @@ class MarkerDiamondComponent extends MarkerComponent {
981
981
  ngOnInit() {
982
982
  this.setAttributes({ ...diamond });
983
983
  }
984
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerDiamondComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
985
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerDiamondComponent, selector: "ibm-graph-marker-diamond,[ibm-graph-marker-diamond]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
984
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerDiamondComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
985
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerDiamondComponent, selector: "ibm-graph-marker-diamond,[ibm-graph-marker-diamond]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
986
986
  }
987
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerDiamondComponent, decorators: [{
987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerDiamondComponent, decorators: [{
988
988
  type: Component,
989
989
  args: [{
990
990
  selector: 'ibm-graph-marker-diamond,[ibm-graph-marker-diamond]',
@@ -995,10 +995,10 @@ class MarkerSquareComponent extends MarkerComponent {
995
995
  ngOnInit() {
996
996
  this.setAttributes({ ...square });
997
997
  }
998
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerSquareComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
999
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerSquareComponent, selector: "ibm-graph-marker-square,[ibm-graph-marker-square]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
998
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerSquareComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
999
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerSquareComponent, selector: "ibm-graph-marker-square,[ibm-graph-marker-square]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
1000
1000
  }
1001
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerSquareComponent, decorators: [{
1001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerSquareComponent, decorators: [{
1002
1002
  type: Component,
1003
1003
  args: [{
1004
1004
  selector: 'ibm-graph-marker-square,[ibm-graph-marker-square]',
@@ -1009,10 +1009,10 @@ class MarkerTeeComponent extends MarkerComponent {
1009
1009
  ngOnInit() {
1010
1010
  this.setAttributes({ ...tee });
1011
1011
  }
1012
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerTeeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1013
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: MarkerTeeComponent, selector: "ibm-graph-marker-tee,[ibm-graph-marker-tee]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
1012
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerTeeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1013
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: MarkerTeeComponent, selector: "ibm-graph-marker-tee,[ibm-graph-marker-tee]", usesInheritance: true, ngImport: i0, template: "\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n", isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
1014
1014
  }
1015
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerTeeComponent, decorators: [{
1015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerTeeComponent, decorators: [{
1016
1016
  type: Component,
1017
1017
  args: [{
1018
1018
  selector: 'ibm-graph-marker-tee,[ibm-graph-marker-tee]',
@@ -1021,8 +1021,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
1021
1021
  }] });
1022
1022
 
1023
1023
  class MarkerModule {
1024
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1025
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.0", ngImport: i0, type: MarkerModule, declarations: [MarkerComponent,
1024
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1025
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.2", ngImport: i0, type: MarkerModule, declarations: [MarkerComponent,
1026
1026
  MarkerArrowLeftComponent,
1027
1027
  MarkerArrowRightComponent,
1028
1028
  MarkerShapeNodeComponent,
@@ -1035,9 +1035,9 @@ class MarkerModule {
1035
1035
  MarkerDiamondComponent,
1036
1036
  MarkerSquareComponent,
1037
1037
  MarkerTeeComponent] }); }
1038
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerModule, imports: [CommonModule] }); }
1038
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerModule, imports: [CommonModule] }); }
1039
1039
  }
1040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: MarkerModule, decorators: [{
1040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: MarkerModule, decorators: [{
1041
1041
  type: NgModule,
1042
1042
  args: [{
1043
1043
  declarations: [
@@ -1074,8 +1074,8 @@ class EdgeComponent {
1074
1074
  this.namespace = `${carbonPrefix}--cc--edge`;
1075
1075
  this.straight = buildStraightPathString;
1076
1076
  }
1077
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: EdgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1078
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: EdgeComponent, selector: "ibm-graph-edge, [ibm-graph-edge]", inputs: { color: "color", markerEnd: "markerEnd", markerStart: "markerStart", source: "source", target: "target", variant: "variant", path: "path" }, ngImport: i0, template: `
1077
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: EdgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1078
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: EdgeComponent, selector: "ibm-graph-edge, [ibm-graph-edge]", inputs: { color: "color", markerEnd: "markerEnd", markerStart: "markerStart", source: "source", target: "target", variant: "variant", path: "path" }, ngImport: i0, template: `
1079
1079
  <svg:g [ngClass]="[namespace, variant ? namespace + '--' + variant : '']">
1080
1080
  <svg:path
1081
1081
  [ngClass]="namespace + '__container'"
@@ -1092,7 +1092,7 @@ class EdgeComponent {
1092
1092
  </svg:g>
1093
1093
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
1094
1094
  }
1095
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: EdgeComponent, decorators: [{
1095
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: EdgeComponent, decorators: [{
1096
1096
  type: Component,
1097
1097
  args: [{
1098
1098
  selector: 'ibm-graph-edge, [ibm-graph-edge]',
@@ -1130,11 +1130,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
1130
1130
  }] } });
1131
1131
 
1132
1132
  class EdgeModule {
1133
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: EdgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1134
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.0", ngImport: i0, type: EdgeModule, declarations: [EdgeComponent], imports: [CommonModule], exports: [EdgeComponent] }); }
1135
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: EdgeModule, imports: [CommonModule] }); }
1133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: EdgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1134
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.2", ngImport: i0, type: EdgeModule, declarations: [EdgeComponent], imports: [CommonModule], exports: [EdgeComponent] }); }
1135
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: EdgeModule, imports: [CommonModule] }); }
1136
1136
  }
1137
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: EdgeModule, decorators: [{
1137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: EdgeModule, decorators: [{
1138
1138
  type: NgModule,
1139
1139
  args: [{
1140
1140
  declarations: [EdgeComponent],
@@ -1168,8 +1168,8 @@ class CardNodeComponent {
1168
1168
  this.component = this.as;
1169
1169
  }
1170
1170
  }
1171
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1172
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CardNodeComponent, selector: "ibm-diagram-card-node", inputs: { as: "as", href: "href", color: "color", stacked: "stacked", position: "position" }, outputs: { click: "click", mouseEnter: "mouseEnter", mouseOver: "mouseOver", mouseOut: "mouseOut", mouseLeave: "mouseLeave", mouseMove: "mouseMove" }, ngImport: i0, template: `
1171
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1172
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CardNodeComponent, selector: "ibm-diagram-card-node", inputs: { as: "as", href: "href", color: "color", stacked: "stacked", position: "position" }, outputs: { click: "click", mouseEnter: "mouseEnter", mouseOver: "mouseOver", mouseOut: "mouseOut", mouseLeave: "mouseLeave", mouseMove: "mouseMove" }, ngImport: i0, template: `
1173
1173
  <ng-container [ngSwitch]="component">
1174
1174
  <xhtml:div
1175
1175
  *ngSwitchCase="'div'"
@@ -1235,7 +1235,7 @@ class CardNodeComponent {
1235
1235
  </ng-template>
1236
1236
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }] }); }
1237
1237
  }
1238
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeComponent, decorators: [{
1238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeComponent, decorators: [{
1239
1239
  type: Component,
1240
1240
  args: [{
1241
1241
  selector: 'ibm-diagram-card-node',
@@ -1339,14 +1339,14 @@ class CardNodeColumnComponent {
1339
1339
  : '';
1340
1340
  return `${carbonPrefix}--cc--card-node__column ${farsideClassName}`;
1341
1341
  }
1342
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1343
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CardNodeColumnComponent, selector: "ibm-diagram-card-node-column", inputs: { farsideColumn: "farsideColumn" }, host: { properties: { "class": "this.class" } }, ngImport: i0, template: `
1342
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1343
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CardNodeColumnComponent, selector: "ibm-diagram-card-node-column", inputs: { farsideColumn: "farsideColumn" }, host: { properties: { "class": "this.class" } }, ngImport: i0, template: `
1344
1344
  <xhtml:div>
1345
1345
  <ng-content></ng-content>
1346
1346
  </xhtml:div>
1347
1347
  `, isInline: true }); }
1348
1348
  }
1349
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeColumnComponent, decorators: [{
1349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeColumnComponent, decorators: [{
1350
1350
  type: Component,
1351
1351
  args: [{
1352
1352
  selector: 'ibm-diagram-card-node-column',
@@ -1367,14 +1367,14 @@ class CardNodeLabelComponent {
1367
1367
  constructor() {
1368
1368
  this.namespace = `${carbonPrefix}--cc--card-node__label`;
1369
1369
  }
1370
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1371
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CardNodeLabelComponent, selector: "ibm-diagram-card-node-label", ngImport: i0, template: `
1370
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1371
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CardNodeLabelComponent, selector: "ibm-diagram-card-node-label", ngImport: i0, template: `
1372
1372
  <xhtml:label [ngClass]="namespace">
1373
1373
  <ng-content></ng-content>
1374
1374
  </xhtml:label>
1375
1375
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
1376
1376
  }
1377
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeLabelComponent, decorators: [{
1377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeLabelComponent, decorators: [{
1378
1378
  type: Component,
1379
1379
  args: [{
1380
1380
  selector: 'ibm-diagram-card-node-label',
@@ -1390,14 +1390,14 @@ class CardNodeSubtitleComponent {
1390
1390
  constructor() {
1391
1391
  this.namespace = `${carbonPrefix}--cc--card-node__subtitle`;
1392
1392
  }
1393
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeSubtitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1394
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CardNodeSubtitleComponent, selector: "ibm-diagram-card-node-subtitle", ngImport: i0, template: `
1393
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeSubtitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1394
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CardNodeSubtitleComponent, selector: "ibm-diagram-card-node-subtitle", ngImport: i0, template: `
1395
1395
  <xhtml:div [ngClass]="namespace">
1396
1396
  <ng-content></ng-content>
1397
1397
  </xhtml:div>
1398
1398
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
1399
1399
  }
1400
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeSubtitleComponent, decorators: [{
1400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeSubtitleComponent, decorators: [{
1401
1401
  type: Component,
1402
1402
  args: [{
1403
1403
  selector: 'ibm-diagram-card-node-subtitle',
@@ -1413,14 +1413,14 @@ class CardNodeTitleComponent {
1413
1413
  constructor() {
1414
1414
  this.namespace = `${carbonPrefix}--cc--card-node__title`;
1415
1415
  }
1416
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1417
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: CardNodeTitleComponent, selector: "ibm-diagram-card-node-title", ngImport: i0, template: `
1416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1417
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: CardNodeTitleComponent, selector: "ibm-diagram-card-node-title", ngImport: i0, template: `
1418
1418
  <xhtml:div [ngClass]="namespace">
1419
1419
  <ng-content></ng-content>
1420
1420
  </xhtml:div>
1421
1421
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
1422
1422
  }
1423
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeTitleComponent, decorators: [{
1423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeTitleComponent, decorators: [{
1424
1424
  type: Component,
1425
1425
  args: [{
1426
1426
  selector: 'ibm-diagram-card-node-title',
@@ -1433,8 +1433,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
1433
1433
  }] });
1434
1434
 
1435
1435
  class CardNodeModule {
1436
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1437
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.0", ngImport: i0, type: CardNodeModule, declarations: [CardNodeComponent,
1436
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1437
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.2", ngImport: i0, type: CardNodeModule, declarations: [CardNodeComponent,
1438
1438
  CardNodeColumnComponent,
1439
1439
  CardNodeLabelComponent,
1440
1440
  CardNodeSubtitleComponent,
@@ -1443,9 +1443,9 @@ class CardNodeModule {
1443
1443
  CardNodeLabelComponent,
1444
1444
  CardNodeSubtitleComponent,
1445
1445
  CardNodeTitleComponent] }); }
1446
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeModule, imports: [CommonModule] }); }
1446
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeModule, imports: [CommonModule] }); }
1447
1447
  }
1448
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: CardNodeModule, decorators: [{
1448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: CardNodeModule, decorators: [{
1449
1449
  type: NgModule,
1450
1450
  args: [{
1451
1451
  declarations: [
@@ -1495,8 +1495,8 @@ class ShapeNodeComponent {
1495
1495
  this.component = this.as;
1496
1496
  }
1497
1497
  }
1498
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1499
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.0", type: ShapeNodeComponent, selector: "ibm-diagram-shape-node", inputs: { as: "as", href: "href", renderIcon: "renderIcon", size: "size", stacked: "stacked", shape: "shape", subtitle: "subtitle", title: "title", position: "position", bodyPosition: "bodyPosition" }, outputs: { click: "click", mouseEnter: "mouseEnter", mouseOver: "mouseOver", mouseOut: "mouseOut", mouseLeave: "mouseLeave", mouseMove: "mouseMove" }, ngImport: i0, template: `
1498
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1499
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ShapeNodeComponent, selector: "ibm-diagram-shape-node", inputs: { as: "as", href: "href", renderIcon: "renderIcon", size: "size", stacked: "stacked", shape: "shape", subtitle: "subtitle", title: "title", position: "position", bodyPosition: "bodyPosition" }, outputs: { click: "click", mouseEnter: "mouseEnter", mouseOver: "mouseOver", mouseOut: "mouseOut", mouseLeave: "mouseLeave", mouseMove: "mouseMove" }, ngImport: i0, template: `
1500
1500
  <ng-container [ngSwitch]="component">
1501
1501
  <xhtml:div
1502
1502
  *ngSwitchCase="'div'"
@@ -1580,7 +1580,7 @@ class ShapeNodeComponent {
1580
1580
  </ng-template>
1581
1581
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }] }); }
1582
1582
  }
1583
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeComponent, decorators: [{
1583
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeComponent, decorators: [{
1584
1584
  type: Component,
1585
1585
  args: [{
1586
1586
  selector: 'ibm-diagram-shape-node',
@@ -1703,11 +1703,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
1703
1703
  }] } });
1704
1704
 
1705
1705
  class ShapeNodeModule {
1706
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1707
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeModule, declarations: [ShapeNodeComponent], imports: [CommonModule], exports: [ShapeNodeComponent] }); }
1708
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeModule, imports: [CommonModule] }); }
1706
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1707
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeModule, declarations: [ShapeNodeComponent], imports: [CommonModule], exports: [ShapeNodeComponent] }); }
1708
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeModule, imports: [CommonModule] }); }
1709
1709
  }
1710
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImport: i0, type: ShapeNodeModule, decorators: [{
1710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ShapeNodeModule, decorators: [{
1711
1711
  type: NgModule,
1712
1712
  args: [{
1713
1713
  declarations: [ShapeNodeComponent],