@siemens/charts-ng 47.6.0 → 47.7.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 (29) hide show
  1. package/README.md +5 -2
  2. package/components/index.d.ts +1 -1
  3. package/components/si-chart/index.d.ts +1 -1
  4. package/components/si-chart/si-chart.component.d.ts +1 -1
  5. package/components/si-chart/si-chart.interfaces.d.ts +2 -2
  6. package/components/si-chart-cartesian/index.d.ts +1 -1
  7. package/components/si-chart-cartesian/si-chart-cartesian.component.d.ts +1 -1
  8. package/components/si-chart-cartesian/si-chart-cartesian.interfaces.d.ts +2 -1
  9. package/components/si-chart-circle/index.d.ts +1 -1
  10. package/components/si-chart-circle/si-chart-circle.interface.d.ts +1 -1
  11. package/components/si-chart-gauge/index.d.ts +1 -1
  12. package/components/si-chart-gauge/si-chart-gauge.component.d.ts +1 -1
  13. package/components/si-chart-gauge/si-chart-gauge.interface.d.ts +1 -1
  14. package/components/si-chart-progress/index.d.ts +1 -1
  15. package/components/si-chart-progress/si-chart-progress.interface.d.ts +1 -1
  16. package/components/si-chart-progress-bar/index.d.ts +1 -1
  17. package/components/si-chart-progress-bar/si-chart-progress-bar.interface.d.ts +1 -1
  18. package/components/si-chart-sankey/index.d.ts +1 -1
  19. package/components/si-chart-sunburst/index.d.ts +1 -1
  20. package/components/si-custom-legend/index.d.ts +1 -1
  21. package/components/si-custom-legend/si-custom-legend.component.d.ts +1 -1
  22. package/components/si-custom-legend/si-custom-legend.interface.d.ts +1 -1
  23. package/fesm2022/siemens-charts-ng.mjs +26 -26
  24. package/fesm2022/siemens-charts-ng.mjs.map +1 -1
  25. package/package.json +1 -1
  26. package/projects/charts-ng/README.md +5 -2
  27. package/public-api.d.ts +1 -1
  28. package/shared/echarts.model.d.ts +1 -1
  29. package/shared/index.d.ts +1 -1
package/README.md CHANGED
@@ -42,6 +42,9 @@ You can set a seed for running the tests in a specific using an environment vari
42
42
 
43
43
  ## License
44
44
 
45
- Code and documentation copyright 2018-2024 Siemens AG.
45
+ The following applies for code and documentation of the git repository,
46
+ unless explicitly mentioned.
46
47
 
47
- See [LICENSE.md](https://github.com/siemens/element/blob/main/LICENSE.md).
48
+ Copyright (c) Siemens 2016 - 2025
49
+
50
+ MIT, see [LICENSE.md](LICENSE.md).
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart/index';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { AfterViewInit, ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export type AxisType = 'value' | 'category' | 'time' | 'log';
@@ -94,4 +94,4 @@ export interface SiSeriesOption {
94
94
  customLegendToolTip?: string;
95
95
  visible?: boolean;
96
96
  }
97
- export {};
97
+ export type { SiSeriesOption as SimplSeriesOption };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-cartesian.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { OnChanges, SimpleChanges } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { BarSeriesOption, CandlestickSeriesOption, HeatmapSeriesOption, LineSeriesOption, MarkAreaComponentOption, MarkLineComponentOption, MarkPointComponentOption, ScatterSeriesOption } from '../../shared/echarts.model';
@@ -33,3 +33,4 @@ export type CartesianChartSeries = SiBarSeriesOption | SiLineSeriesOption | SiHe
33
33
  export type MarkAreaData = NonNullable<MarkAreaComponentOption['data']>;
34
34
  export type MarkPointData = NonNullable<MarkPointComponentOption['data']>;
35
35
  export type MarkLineData = NonNullable<MarkLineComponentOption['data']>;
36
+ export type { SiLineSeriesOption as SimplLineSeriesOption, SiBarSeriesOption as SimplBarSeriesOption, SiHeatmapSeriesOption as SimplHeatmapSeriesOption, SiScatterSeriesOption as SimplScatterSeriesOption, SiCandlestickSeriesOption as SimplCandlestickSeriesOption };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-circle.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { PieSeriesOption } from 'echarts';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-gauge.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { OnChanges, SimpleChanges } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export interface GaugeChartSeries {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-progress.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export interface ProgressChartSeries {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-progress-bar.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export interface ProgressBarChartSeries {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-sankey.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-chart-sunburst.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export * from './si-custom-legend.component';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  import { ElementRef } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright Siemens 2016 - 2025.
2
+ * Copyright (c) Siemens 2016 - 2025
3
3
  * SPDX-License-Identifier: MIT
4
4
  */
5
5
  export interface CustomLegend {
@@ -9,7 +9,7 @@ import { CanvasRenderer, SVGRenderer } from 'echarts/renderers';
9
9
  import { CommonModule } from '@angular/common';
10
10
 
11
11
  /**
12
- * Copyright Siemens 2016 - 2025.
12
+ * Copyright (c) Siemens 2016 - 2025
13
13
  * SPDX-License-Identifier: MIT
14
14
  */
15
15
  echarts.use([
@@ -48,7 +48,7 @@ echarts.use([
48
48
  ]);
49
49
 
50
50
  /**
51
- * Copyright Siemens 2016 - 2025.
51
+ * Copyright (c) Siemens 2016 - 2025
52
52
  * SPDX-License-Identifier: MIT
53
53
  */
54
54
  const getProp = (style, prop) => {
@@ -545,7 +545,7 @@ const themeElement = {
545
545
  };
546
546
 
547
547
  /**
548
- * Copyright Siemens 2016 - 2025.
548
+ * Copyright (c) Siemens 2016 - 2025
549
549
  * SPDX-License-Identifier: MIT
550
550
  */
551
551
  const themeSupport = {
@@ -571,7 +571,7 @@ const themeSupport = {
571
571
  };
572
572
 
573
573
  /**
574
- * Copyright Siemens 2016 - 2025.
574
+ * Copyright (c) Siemens 2016 - 2025
575
575
  * SPDX-License-Identifier: MIT
576
576
  */
577
577
  class SiChartLoadingSpinnerComponent {
@@ -584,7 +584,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
584
584
  }] });
585
585
 
586
586
  /**
587
- * Copyright Siemens 2016 - 2025.
587
+ * Copyright (c) Siemens 2016 - 2025
588
588
  * SPDX-License-Identifier: MIT
589
589
  */
590
590
  class SiCustomLegendComponent {
@@ -617,7 +617,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
617
617
  }] });
618
618
 
619
619
  /**
620
- * Copyright Siemens 2016 - 2025.
620
+ * Copyright (c) Siemens 2016 - 2025
621
621
  * SPDX-License-Identifier: MIT
622
622
  */
623
623
  class SiChartComponent {
@@ -2323,12 +2323,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
2323
2323
  }] } });
2324
2324
 
2325
2325
  /**
2326
- * Copyright Siemens 2016 - 2025.
2326
+ * Copyright (c) Siemens 2016 - 2025
2327
2327
  * SPDX-License-Identifier: MIT
2328
2328
  */
2329
2329
 
2330
2330
  /**
2331
- * Copyright Siemens 2016 - 2025.
2331
+ * Copyright (c) Siemens 2016 - 2025
2332
2332
  * SPDX-License-Identifier: MIT
2333
2333
  */
2334
2334
  class SiChartCartesianComponent extends SiChartComponent {
@@ -2659,12 +2659,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
2659
2659
  }] });
2660
2660
 
2661
2661
  /**
2662
- * Copyright Siemens 2016 - 2025.
2662
+ * Copyright (c) Siemens 2016 - 2025
2663
2663
  * SPDX-License-Identifier: MIT
2664
2664
  */
2665
2665
 
2666
2666
  /**
2667
- * Copyright Siemens 2016 - 2025.
2667
+ * Copyright (c) Siemens 2016 - 2025
2668
2668
  * SPDX-License-Identifier: MIT
2669
2669
  */
2670
2670
  class SiChartCircleComponent extends SiChartComponent {
@@ -2733,12 +2733,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
2733
2733
  }] });
2734
2734
 
2735
2735
  /**
2736
- * Copyright Siemens 2016 - 2025.
2736
+ * Copyright (c) Siemens 2016 - 2025
2737
2737
  * SPDX-License-Identifier: MIT
2738
2738
  */
2739
2739
 
2740
2740
  /**
2741
- * Copyright Siemens 2016 - 2025.
2741
+ * Copyright (c) Siemens 2016 - 2025
2742
2742
  * SPDX-License-Identifier: MIT
2743
2743
  */
2744
2744
  class SiChartGaugeComponent extends SiChartComponent {
@@ -3075,12 +3075,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3075
3075
  }] });
3076
3076
 
3077
3077
  /**
3078
- * Copyright Siemens 2016 - 2025.
3078
+ * Copyright (c) Siemens 2016 - 2025
3079
3079
  * SPDX-License-Identifier: MIT
3080
3080
  */
3081
3081
 
3082
3082
  /**
3083
- * Copyright Siemens 2016 - 2025.
3083
+ * Copyright (c) Siemens 2016 - 2025
3084
3084
  * SPDX-License-Identifier: MIT
3085
3085
  */
3086
3086
  class SiChartProgressComponent extends SiChartComponent {
@@ -3277,12 +3277,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3277
3277
  }] });
3278
3278
 
3279
3279
  /**
3280
- * Copyright Siemens 2016 - 2025.
3280
+ * Copyright (c) Siemens 2016 - 2025
3281
3281
  * SPDX-License-Identifier: MIT
3282
3282
  */
3283
3283
 
3284
3284
  /**
3285
- * Copyright Siemens 2016 - 2025.
3285
+ * Copyright (c) Siemens 2016 - 2025
3286
3286
  * SPDX-License-Identifier: MIT
3287
3287
  */
3288
3288
  class SiChartProgressBarComponent extends SiChartComponent {
@@ -3428,17 +3428,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3428
3428
  }] });
3429
3429
 
3430
3430
  /**
3431
- * Copyright Siemens 2016 - 2025.
3431
+ * Copyright (c) Siemens 2016 - 2025
3432
3432
  * SPDX-License-Identifier: MIT
3433
3433
  */
3434
3434
 
3435
3435
  /**
3436
- * Copyright Siemens 2016 - 2025.
3436
+ * Copyright (c) Siemens 2016 - 2025
3437
3437
  * SPDX-License-Identifier: MIT
3438
3438
  */
3439
3439
 
3440
3440
  /**
3441
- * Copyright Siemens 2016 - 2025.
3441
+ * Copyright (c) Siemens 2016 - 2025
3442
3442
  * SPDX-License-Identifier: MIT
3443
3443
  */
3444
3444
  class SiChartSankeyComponent extends SiChartComponent {
@@ -3462,12 +3462,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3462
3462
  }] });
3463
3463
 
3464
3464
  /**
3465
- * Copyright Siemens 2016 - 2025.
3465
+ * Copyright (c) Siemens 2016 - 2025
3466
3466
  * SPDX-License-Identifier: MIT
3467
3467
  */
3468
3468
 
3469
3469
  /**
3470
- * Copyright Siemens 2016 - 2025.
3470
+ * Copyright (c) Siemens 2016 - 2025
3471
3471
  * SPDX-License-Identifier: MIT
3472
3472
  */
3473
3473
  class SiChartSunburstComponent extends SiChartComponent {
@@ -3491,22 +3491,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3491
3491
  }] });
3492
3492
 
3493
3493
  /**
3494
- * Copyright Siemens 2016 - 2025.
3494
+ * Copyright (c) Siemens 2016 - 2025
3495
3495
  * SPDX-License-Identifier: MIT
3496
3496
  */
3497
3497
 
3498
3498
  /**
3499
- * Copyright Siemens 2016 - 2025.
3499
+ * Copyright (c) Siemens 2016 - 2025
3500
3500
  * SPDX-License-Identifier: MIT
3501
3501
  */
3502
3502
 
3503
3503
  /**
3504
- * Copyright Siemens 2016 - 2025.
3504
+ * Copyright (c) Siemens 2016 - 2025
3505
3505
  * SPDX-License-Identifier: MIT
3506
3506
  */
3507
3507
 
3508
3508
  /**
3509
- * Copyright Siemens 2016 - 2025.
3509
+ * Copyright (c) Siemens 2016 - 2025
3510
3510
  * SPDX-License-Identifier: MIT
3511
3511
  */
3512
3512
  class SiChartsNgModule {
@@ -3563,7 +3563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.6", ngImpor
3563
3563
  }] });
3564
3564
 
3565
3565
  /**
3566
- * Copyright Siemens 2016 - 2025.
3566
+ * Copyright (c) Siemens 2016 - 2025
3567
3567
  * SPDX-License-Identifier: MIT
3568
3568
  */
3569
3569
  // Public API Surface