@eclipse-scout/chart 23.1.0-beta.4 → 23.1.2

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 (94) hide show
  1. package/LICENSE +277 -210
  2. package/README.md +4 -8
  3. package/dist/d.ts/chart/AbstractChartRenderer.d.ts.map +1 -1
  4. package/dist/d.ts/chart/AbstractSvgChartRenderer.d.ts.map +1 -1
  5. package/dist/d.ts/chart/Chart.d.ts +2 -1
  6. package/dist/d.ts/chart/Chart.d.ts.map +1 -1
  7. package/dist/d.ts/chart/ChartAdapter.d.ts.map +1 -1
  8. package/dist/d.ts/chart/ChartEventMap.d.ts.map +1 -1
  9. package/dist/d.ts/chart/ChartJsRenderer.d.ts +19 -20
  10. package/dist/d.ts/chart/ChartJsRenderer.d.ts.map +1 -1
  11. package/dist/d.ts/chart/ChartLayout.d.ts.map +1 -1
  12. package/dist/d.ts/chart/ChartModel.d.ts.map +1 -1
  13. package/dist/d.ts/chart/FulfillmentChartRenderer.d.ts.map +1 -1
  14. package/dist/d.ts/chart/SalesfunnelChartRenderer.d.ts.map +1 -1
  15. package/dist/d.ts/chart/SpeedoChartRenderer.d.ts.map +1 -1
  16. package/dist/d.ts/chart/VennAsync3Calculator.d.ts.map +1 -1
  17. package/dist/d.ts/chart/VennChartRenderer.d.ts.map +1 -1
  18. package/dist/d.ts/chart/VennCircle.d.ts.map +1 -1
  19. package/dist/d.ts/chart/VennCircleHelper.d.ts.map +1 -1
  20. package/dist/d.ts/form/fields/chartfield/ChartField.d.ts.map +1 -1
  21. package/dist/d.ts/form/fields/chartfield/ChartFieldAdapter.d.ts.map +1 -1
  22. package/dist/d.ts/form/fields/chartfield/ChartFieldModel.d.ts.map +1 -1
  23. package/dist/d.ts/index.d.ts.map +1 -1
  24. package/dist/d.ts/table/controls/ChartTableControl.d.ts.map +1 -1
  25. package/dist/d.ts/table/controls/ChartTableControlAdapter.d.ts.map +1 -1
  26. package/dist/d.ts/table/controls/ChartTableControlEventMap.d.ts.map +1 -1
  27. package/dist/d.ts/table/controls/ChartTableControlLayout.d.ts.map +1 -1
  28. package/dist/d.ts/table/controls/ChartTableControlModel.d.ts.map +1 -1
  29. package/dist/d.ts/table/controls/ChartTableUserFilter.d.ts +1 -2
  30. package/dist/d.ts/table/controls/ChartTableUserFilter.d.ts.map +1 -1
  31. package/dist/d.ts/table/controls/ChartTableUserFilterModel.d.ts.map +1 -1
  32. package/dist/d.ts/tile/ChartFieldTile.d.ts.map +1 -1
  33. package/dist/d.ts/tile/ChartFieldTileAdapter.d.ts.map +1 -1
  34. package/dist/d.ts/tile/ChartFieldTileModel.d.ts.map +1 -1
  35. package/dist/eclipse-scout-chart-dee874ed46aaa3d247de.min.js +3 -0
  36. package/dist/eclipse-scout-chart-dee874ed46aaa3d247de.min.js.map +1 -0
  37. package/dist/eclipse-scout-chart-theme-56ba6667e592ef147869.min.css +1 -0
  38. package/dist/eclipse-scout-chart-theme-dark-593955eea95984c5aa62.min.css +1 -0
  39. package/dist/eclipse-scout-chart-theme-dark.css +52 -58
  40. package/dist/eclipse-scout-chart-theme-dark.css.map +1 -1
  41. package/dist/eclipse-scout-chart-theme.css +40 -44
  42. package/dist/eclipse-scout-chart-theme.css.map +1 -1
  43. package/dist/eclipse-scout-chart.esm-558d382efe651ca2215b.min.js +3 -0
  44. package/dist/eclipse-scout-chart.esm-558d382efe651ca2215b.min.js.map +1 -0
  45. package/dist/eclipse-scout-chart.esm.js +142 -150
  46. package/dist/eclipse-scout-chart.esm.js.map +1 -1
  47. package/dist/eclipse-scout-chart.js +142 -150
  48. package/dist/eclipse-scout-chart.js.map +1 -1
  49. package/dist/file-list +6 -6
  50. package/package.json +4 -4
  51. package/src/chart/AbstractChartRenderer.ts +6 -7
  52. package/src/chart/AbstractSvgChartRenderer.ts +6 -7
  53. package/src/chart/Chart.less +8 -8
  54. package/src/chart/Chart.ts +16 -8
  55. package/src/chart/ChartAdapter.ts +6 -7
  56. package/src/chart/ChartEventMap.ts +6 -7
  57. package/src/chart/ChartJsRenderer.ts +26 -27
  58. package/src/chart/ChartLayout.ts +6 -7
  59. package/src/chart/ChartModel.ts +6 -7
  60. package/src/chart/FulfillmentChartRenderer.ts +6 -7
  61. package/src/chart/SalesfunnelChartRenderer.ts +6 -7
  62. package/src/chart/SpeedoChartRenderer.ts +6 -7
  63. package/src/chart/VennAsync3Calculator.ts +6 -7
  64. package/src/chart/VennChartRenderer.ts +6 -7
  65. package/src/chart/VennCircle.ts +6 -7
  66. package/src/chart/VennCircleHelper.ts +6 -7
  67. package/src/eclipse-scout-chart-theme-dark.less +7 -8
  68. package/src/eclipse-scout-chart-theme.less +7 -8
  69. package/src/form/fields/chartfield/ChartField.ts +6 -7
  70. package/src/form/fields/chartfield/ChartFieldAdapter.ts +6 -7
  71. package/src/form/fields/chartfield/ChartFieldModel.ts +6 -7
  72. package/src/index-dark.less +6 -7
  73. package/src/index.less +6 -7
  74. package/src/index.ts +6 -7
  75. package/src/style/colors-dark.less +7 -8
  76. package/src/style/colors.less +6 -7
  77. package/src/table/controls/ChartTableControl.less +6 -7
  78. package/src/table/controls/ChartTableControl.ts +6 -7
  79. package/src/table/controls/ChartTableControlAdapter.ts +6 -7
  80. package/src/table/controls/ChartTableControlEventMap.ts +6 -7
  81. package/src/table/controls/ChartTableControlLayout.ts +6 -7
  82. package/src/table/controls/ChartTableControlModel.ts +6 -7
  83. package/src/table/controls/ChartTableUserFilter.ts +7 -8
  84. package/src/table/controls/ChartTableUserFilterModel.ts +6 -7
  85. package/src/tile/ChartFieldTile.less +6 -7
  86. package/src/tile/ChartFieldTile.ts +6 -7
  87. package/src/tile/ChartFieldTileAdapter.ts +6 -7
  88. package/src/tile/ChartFieldTileModel.ts +6 -7
  89. package/dist/eclipse-scout-chart-fae6f958a044232e659c.min.js +0 -3
  90. package/dist/eclipse-scout-chart-fae6f958a044232e659c.min.js.map +0 -1
  91. package/dist/eclipse-scout-chart-theme-dark-89bcf2022056cbf8e371.min.css +0 -1
  92. package/dist/eclipse-scout-chart-theme-e25b5923d4dba5f5ca7e.min.css +0 -1
  93. package/dist/eclipse-scout-chart.esm-2119cfea86a9d6f34a35.min.js +0 -3
  94. package/dist/eclipse-scout-chart.esm-2119cfea86a9d6f34a35.min.js.map +0 -1
package/src/index.ts CHANGED
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {ObjectFactory} from '@eclipse-scout/core';
12
11
 
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * http://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
 
12
11
  @chart-alternative-line-label-background-color: @chart-line-label-color;
@@ -60,4 +59,4 @@
60
59
  @speedo-chart-dark-green: @palette-green-3;
61
60
  @speedo-chart-green: @palette-green-2;
62
61
  @speedo-chart-yellow: @palette-orange-2;
63
- @speedo-chart-red: @palette-red-2;
62
+ @speedo-chart-red: @palette-red-2;
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * http://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
 
12
11
  @chart-axis-line-color: @border-color;
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * http://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  .chart-table-control-content {
12
11
  padding: @table-control-content-padding;
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {
12
11
  arrays, Column, DateColumn, Event, EventListener, Icon, IconDesc, icons, InitModelOf, NumberColumn, objects, scout, scrollbars, strings, styles, Table, TableControl, TableMatrix, TableMatrixDateGroup, TableMatrixKeyAxis,
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {TableControlAdapter} from '@eclipse-scout/core';
12
11
 
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {ActionEventMap, PropertyChangeEvent} from '@eclipse-scout/core';
12
11
  import {TableControlChartAggregation, TableControlChartGroup, TableControlChartType} from './ChartTableControl';
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {AbstractLayout, scrollbars} from '@eclipse-scout/core';
12
11
  import {ChartTableControl} from '../../index';
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {TableControlModel} from '@eclipse-scout/core';
12
11
  import {TableControlChartAggregation, TableControlChartGroup, TableControlChartType} from './ChartTableControl';
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {arrays, TableMatrix, TableMatrixKeyAxis, TableRow, TableUserFilter, TableUserFilterAddedEventData} from '@eclipse-scout/core';
12
11
  import {ChartTableUserFilterModel} from '../../index';
@@ -78,7 +77,7 @@ export class ChartTableUserFilter extends TableUserFilter implements ChartTableU
78
77
  }
79
78
  }
80
79
 
81
- type ChartTableUserFilterAddedEventData = TableUserFilterAddedEventData & {
80
+ export type ChartTableUserFilterAddedEventData = TableUserFilterAddedEventData & {
82
81
  filters?: { deterministicKey: TableControlDeterministicKey }[];
83
82
  columnIdX?: string;
84
83
  columnIdY?: string;
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {TableMatrixKeyAxis, TableUserFilterModel} from '@eclipse-scout/core';
12
11
  import {TableControlDeterministicKey} from './ChartTableControl';
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2020 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * http://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  .tile.dashboard > .chart-field {
12
11
  .compact& {
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {FormFieldTile, PropertyChangeEvent} from '@eclipse-scout/core';
12
11
  import {Chart, ChartField, ChartFieldTileModel} from '../index';
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {FormFieldTileAdapter} from '@eclipse-scout/core';
12
11
 
@@ -1,12 +1,11 @@
1
1
  /*
2
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3
- * All rights reserved. This program and the accompanying materials
4
- * are made available under the terms of the Eclipse Public License v1.0
5
- * which accompanies this distribution, and is available at
6
- * https://www.eclipse.org/legal/epl-v10.html
2
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
7
3
  *
8
- * Contributors:
9
- * BSI Business Systems Integration AG - initial API and implementation
4
+ * This program and the accompanying materials are made
5
+ * available under the terms of the Eclipse Public License 2.0
6
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
10
9
  */
11
10
  import {ChartField} from '../index';
12
11
  import {WidgetTileModel} from '@eclipse-scout/core';