@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
@@ -18,14 +18,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
18
18
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
19
19
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
20
20
  /*
21
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
22
- * All rights reserved. This program and the accompanying materials
23
- * are made available under the terms of the Eclipse Public License v1.0
24
- * which accompanies this distribution, and is available at
25
- * https://www.eclipse.org/legal/epl-v10.html
21
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
26
22
  *
27
- * Contributors:
28
- * BSI Business Systems Integration AG - initial API and implementation
23
+ * This program and the accompanying materials are made
24
+ * available under the terms of the Eclipse Public License 2.0
25
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
26
+ *
27
+ * SPDX-License-Identifier: EPL-2.0
29
28
  */
30
29
  class AbstractChartRenderer {
31
30
  /** true while this.render() is executing */
@@ -194,14 +193,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
194
193
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
195
194
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
196
195
  /*
197
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
198
- * All rights reserved. This program and the accompanying materials
199
- * are made available under the terms of the Eclipse Public License v1.0
200
- * which accompanies this distribution, and is available at
201
- * https://www.eclipse.org/legal/epl-v10.html
196
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
197
+ *
198
+ * This program and the accompanying materials are made
199
+ * available under the terms of the Eclipse Public License 2.0
200
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
202
201
  *
203
- * Contributors:
204
- * BSI Business Systems Integration AG - initial API and implementation
202
+ * SPDX-License-Identifier: EPL-2.0
205
203
  */
206
204
 
207
205
 
@@ -570,21 +568,23 @@ __webpack_require__.r(__webpack_exports__);
570
568
  /* harmony export */ });
571
569
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./src/index.ts");
572
570
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
571
+ /* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! jquery */ "jquery");
572
+ /* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_2__);
573
573
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
574
574
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
575
575
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
576
576
  /*
577
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
578
- * All rights reserved. This program and the accompanying materials
579
- * are made available under the terms of the Eclipse Public License v1.0
580
- * which accompanies this distribution, and is available at
581
- * https://www.eclipse.org/legal/epl-v10.html
577
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
582
578
  *
583
- * Contributors:
584
- * BSI Business Systems Integration AG - initial API and implementation
579
+ * This program and the accompanying materials are made
580
+ * available under the terms of the Eclipse Public License 2.0
581
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
582
+ *
583
+ * SPDX-License-Identifier: EPL-2.0
585
584
  */
586
585
 
587
586
 
587
+
588
588
  class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
589
589
  /** @internal */
590
590
 
@@ -612,6 +612,7 @@ class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
612
612
  _init(model) {
613
613
  super._init(model);
614
614
  this.setConfig(this.config);
615
+ this._setData(this.data);
615
616
  }
616
617
  _render() {
617
618
  this.$container = this.$parent.appendDiv('chart');
@@ -635,7 +636,7 @@ class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
635
636
  }
636
637
  _renderOnAttach() {
637
638
  super._renderOnAttach();
638
- this._updateChartOptsWhileNotAttached.splice(0).forEach(opts => this.updateChart($.extend(true, {}, opts, {
639
+ this._updateChartOptsWhileNotAttached.splice(0).forEach(opts => this.updateChart(jquery__WEBPACK_IMPORTED_MODULE_2___default().extend(true, {}, opts, {
639
640
  debounce: true
640
641
  })));
641
642
  }
@@ -650,6 +651,14 @@ class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
650
651
  this.setProperty('data', data);
651
652
  this.setCheckedItems(this.checkedItems);
652
653
  }
654
+ _setData(data) {
655
+ if (data) {
656
+ data = jquery__WEBPACK_IMPORTED_MODULE_2___default().extend({
657
+ axes: []
658
+ }, data);
659
+ }
660
+ this._setProperty('data', data);
661
+ }
653
662
  _renderData() {
654
663
  this.updateChart({
655
664
  requestAnimation: true,
@@ -686,13 +695,13 @@ class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
686
695
  }
687
696
  }
688
697
  };
689
- config = $.extend(true, {}, defaultConfig, config);
698
+ config = jquery__WEBPACK_IMPORTED_MODULE_2___default().extend(true, {}, defaultConfig, config);
690
699
  config.options.colorScheme = _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.colorSchemes.ensureColorScheme(config.options.colorScheme);
691
700
  if (_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.objects.equalsRecursive(this.config, config)) {
692
701
  return;
693
702
  }
694
703
  // check if only data has changed
695
- let oldConfigWithNewData = $.extend(true, {}, this.config);
704
+ let oldConfigWithNewData = jquery__WEBPACK_IMPORTED_MODULE_2___default().extend(true, {}, this.config);
696
705
  if (config.data) {
697
706
  oldConfigWithNewData.data = config.data;
698
707
  } else {
@@ -912,6 +921,7 @@ _defineProperty(Chart, "Position", {
912
921
  CENTER: 'center'
913
922
  });
914
923
  _defineProperty(Chart, "DEFAULT_ANIMATION_DURATION", 600);
924
+ // ms
915
925
  _defineProperty(Chart, "DEFAULT_DEBOUNCE_TIMEOUT", 100);
916
926
 
917
927
  /***/ }),
@@ -928,14 +938,13 @@ __webpack_require__.r(__webpack_exports__);
928
938
  /* harmony export */ });
929
939
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
930
940
  /*
931
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
932
- * All rights reserved. This program and the accompanying materials
933
- * are made available under the terms of the Eclipse Public License v1.0
934
- * which accompanies this distribution, and is available at
935
- * https://www.eclipse.org/legal/epl-v10.html
941
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
942
+ *
943
+ * This program and the accompanying materials are made
944
+ * available under the terms of the Eclipse Public License 2.0
945
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
936
946
  *
937
- * Contributors:
938
- * BSI Business Systems Integration AG - initial API and implementation
947
+ * SPDX-License-Identifier: EPL-2.0
939
948
  */
940
949
 
941
950
  class ChartAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
@@ -985,14 +994,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
985
994
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
986
995
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
987
996
  /*
988
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
989
- * All rights reserved. This program and the accompanying materials
990
- * are made available under the terms of the Eclipse Public License v1.0
991
- * which accompanies this distribution, and is available at
992
- * https://www.eclipse.org/legal/epl-v10.html
997
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
998
+ *
999
+ * This program and the accompanying materials are made
1000
+ * available under the terms of the Eclipse Public License 2.0
1001
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
993
1002
  *
994
- * Contributors:
995
- * BSI Business Systems Integration AG - initial API and implementation
1003
+ * SPDX-License-Identifier: EPL-2.0
996
1004
  */
997
1005
 
998
1006
 
@@ -3446,14 +3454,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3446
3454
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3447
3455
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
3448
3456
  /*
3449
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3450
- * All rights reserved. This program and the accompanying materials
3451
- * are made available under the terms of the Eclipse Public License v1.0
3452
- * which accompanies this distribution, and is available at
3453
- * https://www.eclipse.org/legal/epl-v10.html
3457
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3454
3458
  *
3455
- * Contributors:
3456
- * BSI Business Systems Integration AG - initial API and implementation
3459
+ * This program and the accompanying materials are made
3460
+ * available under the terms of the Eclipse Public License 2.0
3461
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3462
+ *
3463
+ * SPDX-License-Identifier: EPL-2.0
3457
3464
  */
3458
3465
 
3459
3466
 
@@ -3513,14 +3520,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3513
3520
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3514
3521
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
3515
3522
  /*
3516
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3517
- * All rights reserved. This program and the accompanying materials
3518
- * are made available under the terms of the Eclipse Public License v1.0
3519
- * which accompanies this distribution, and is available at
3520
- * https://www.eclipse.org/legal/epl-v10.html
3523
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3524
+ *
3525
+ * This program and the accompanying materials are made
3526
+ * available under the terms of the Eclipse Public License 2.0
3527
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3521
3528
  *
3522
- * Contributors:
3523
- * BSI Business Systems Integration AG - initial API and implementation
3529
+ * SPDX-License-Identifier: EPL-2.0
3524
3530
  */
3525
3531
 
3526
3532
 
@@ -3695,14 +3701,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3695
3701
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3696
3702
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
3697
3703
  /*
3698
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3699
- * All rights reserved. This program and the accompanying materials
3700
- * are made available under the terms of the Eclipse Public License v1.0
3701
- * which accompanies this distribution, and is available at
3702
- * https://www.eclipse.org/legal/epl-v10.html
3704
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3705
+ *
3706
+ * This program and the accompanying materials are made
3707
+ * available under the terms of the Eclipse Public License 2.0
3708
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3703
3709
  *
3704
- * Contributors:
3705
- * BSI Business Systems Integration AG - initial API and implementation
3710
+ * SPDX-License-Identifier: EPL-2.0
3706
3711
  */
3707
3712
 
3708
3713
 
@@ -4078,14 +4083,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4078
4083
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4079
4084
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4080
4085
  /*
4081
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4082
- * All rights reserved. This program and the accompanying materials
4083
- * are made available under the terms of the Eclipse Public License v1.0
4084
- * which accompanies this distribution, and is available at
4085
- * https://www.eclipse.org/legal/epl-v10.html
4086
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4086
4087
  *
4087
- * Contributors:
4088
- * BSI Business Systems Integration AG - initial API and implementation
4088
+ * This program and the accompanying materials are made
4089
+ * available under the terms of the Eclipse Public License 2.0
4090
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4091
+ *
4092
+ * SPDX-License-Identifier: EPL-2.0
4089
4093
  */
4090
4094
 
4091
4095
 
@@ -4457,14 +4461,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4457
4461
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4458
4462
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4459
4463
  /*
4460
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4461
- * All rights reserved. This program and the accompanying materials
4462
- * are made available under the terms of the Eclipse Public License v1.0
4463
- * which accompanies this distribution, and is available at
4464
- * https://www.eclipse.org/legal/epl-v10.html
4464
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4465
+ *
4466
+ * This program and the accompanying materials are made
4467
+ * available under the terms of the Eclipse Public License 2.0
4468
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4465
4469
  *
4466
- * Contributors:
4467
- * BSI Business Systems Integration AG - initial API and implementation
4470
+ * SPDX-License-Identifier: EPL-2.0
4468
4471
  */
4469
4472
  class VennAsync3Calculator {
4470
4473
  constructor(helper, venn1, venn2, venn3, u, v, w, uv, uw, vw, uvw, d12, d13, d23) {
@@ -4677,14 +4680,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4677
4680
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4678
4681
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4679
4682
  /*
4680
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4681
- * All rights reserved. This program and the accompanying materials
4682
- * are made available under the terms of the Eclipse Public License v1.0
4683
- * which accompanies this distribution, and is available at
4684
- * https://www.eclipse.org/legal/epl-v10.html
4683
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4685
4684
  *
4686
- * Contributors:
4687
- * BSI Business Systems Integration AG - initial API and implementation
4685
+ * This program and the accompanying materials are made
4686
+ * available under the terms of the Eclipse Public License 2.0
4687
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4688
+ *
4689
+ * SPDX-License-Identifier: EPL-2.0
4688
4690
  */
4689
4691
 
4690
4692
 
@@ -5053,14 +5055,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5053
5055
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5054
5056
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5055
5057
  /*
5056
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5057
- * All rights reserved. This program and the accompanying materials
5058
- * are made available under the terms of the Eclipse Public License v1.0
5059
- * which accompanies this distribution, and is available at
5060
- * https://www.eclipse.org/legal/epl-v10.html
5058
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5059
+ *
5060
+ * This program and the accompanying materials are made
5061
+ * available under the terms of the Eclipse Public License 2.0
5062
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5061
5063
  *
5062
- * Contributors:
5063
- * BSI Business Systems Integration AG - initial API and implementation
5064
+ * SPDX-License-Identifier: EPL-2.0
5064
5065
  */
5065
5066
  class VennCircle {
5066
5067
  constructor($circle) {
@@ -5202,14 +5203,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5202
5203
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5203
5204
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5204
5205
  /*
5205
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5206
- * All rights reserved. This program and the accompanying materials
5207
- * are made available under the terms of the Eclipse Public License v1.0
5208
- * which accompanies this distribution, and is available at
5209
- * https://www.eclipse.org/legal/epl-v10.html
5206
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5210
5207
  *
5211
- * Contributors:
5212
- * BSI Business Systems Integration AG - initial API and implementation
5208
+ * This program and the accompanying materials are made
5209
+ * available under the terms of the Eclipse Public License 2.0
5210
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5211
+ *
5212
+ * SPDX-License-Identifier: EPL-2.0
5213
5213
  */
5214
5214
 
5215
5215
  class ChartField extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormField {
@@ -5252,14 +5252,13 @@ __webpack_require__.r(__webpack_exports__);
5252
5252
  /* harmony export */ });
5253
5253
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
5254
5254
  /*
5255
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5256
- * All rights reserved. This program and the accompanying materials
5257
- * are made available under the terms of the Eclipse Public License v1.0
5258
- * which accompanies this distribution, and is available at
5259
- * https://www.eclipse.org/legal/epl-v10.html
5255
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5256
+ *
5257
+ * This program and the accompanying materials are made
5258
+ * available under the terms of the Eclipse Public License 2.0
5259
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5260
5260
  *
5261
- * Contributors:
5262
- * BSI Business Systems Integration AG - initial API and implementation
5261
+ * SPDX-License-Identifier: EPL-2.0
5263
5262
  */
5264
5263
 
5265
5264
  class ChartFieldAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldAdapter {}
@@ -5339,14 +5338,13 @@ __webpack_require__.r(__webpack_exports__);
5339
5338
  /* harmony import */ var _table_controls_ChartTableControlLayout__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./table/controls/ChartTableControlLayout */ "./src/table/controls/ChartTableControlLayout.ts");
5340
5339
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./index */ "./src/index.ts");
5341
5340
  /*
5342
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5343
- * All rights reserved. This program and the accompanying materials
5344
- * are made available under the terms of the Eclipse Public License v1.0
5345
- * which accompanies this distribution, and is available at
5346
- * https://www.eclipse.org/legal/epl-v10.html
5341
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5342
+ *
5343
+ * This program and the accompanying materials are made
5344
+ * available under the terms of the Eclipse Public License 2.0
5345
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5347
5346
  *
5348
- * Contributors:
5349
- * BSI Business Systems Integration AG - initial API and implementation
5347
+ * SPDX-License-Identifier: EPL-2.0
5350
5348
  */
5351
5349
 
5352
5350
 
@@ -5401,14 +5399,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5401
5399
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5402
5400
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5403
5401
  /*
5404
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5405
- * All rights reserved. This program and the accompanying materials
5406
- * are made available under the terms of the Eclipse Public License v1.0
5407
- * which accompanies this distribution, and is available at
5408
- * https://www.eclipse.org/legal/epl-v10.html
5402
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5409
5403
  *
5410
- * Contributors:
5411
- * BSI Business Systems Integration AG - initial API and implementation
5404
+ * This program and the accompanying materials are made
5405
+ * available under the terms of the Eclipse Public License 2.0
5406
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5407
+ *
5408
+ * SPDX-License-Identifier: EPL-2.0
5412
5409
  */
5413
5410
 
5414
5411
 
@@ -6486,14 +6483,13 @@ __webpack_require__.r(__webpack_exports__);
6486
6483
  /* harmony export */ });
6487
6484
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
6488
6485
  /*
6489
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6490
- * All rights reserved. This program and the accompanying materials
6491
- * are made available under the terms of the Eclipse Public License v1.0
6492
- * which accompanies this distribution, and is available at
6493
- * https://www.eclipse.org/legal/epl-v10.html
6486
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6487
+ *
6488
+ * This program and the accompanying materials are made
6489
+ * available under the terms of the Eclipse Public License 2.0
6490
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6494
6491
  *
6495
- * Contributors:
6496
- * BSI Business Systems Integration AG - initial API and implementation
6492
+ * SPDX-License-Identifier: EPL-2.0
6497
6493
  */
6498
6494
 
6499
6495
  class ChartTableControlAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableControlAdapter {
@@ -6531,14 +6527,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6531
6527
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6532
6528
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
6533
6529
  /*
6534
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6535
- * All rights reserved. This program and the accompanying materials
6536
- * are made available under the terms of the Eclipse Public License v1.0
6537
- * which accompanies this distribution, and is available at
6538
- * https://www.eclipse.org/legal/epl-v10.html
6530
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6531
+ *
6532
+ * This program and the accompanying materials are made
6533
+ * available under the terms of the Eclipse Public License 2.0
6534
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6539
6535
  *
6540
- * Contributors:
6541
- * BSI Business Systems Integration AG - initial API and implementation
6536
+ * SPDX-License-Identifier: EPL-2.0
6542
6537
  */
6543
6538
 
6544
6539
  class ChartTableControlLayout extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.AbstractLayout {
@@ -6586,14 +6581,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6586
6581
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6587
6582
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
6588
6583
  /*
6589
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6590
- * All rights reserved. This program and the accompanying materials
6591
- * are made available under the terms of the Eclipse Public License v1.0
6592
- * which accompanies this distribution, and is available at
6593
- * https://www.eclipse.org/legal/epl-v10.html
6584
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6594
6585
  *
6595
- * Contributors:
6596
- * BSI Business Systems Integration AG - initial API and implementation
6586
+ * This program and the accompanying materials are made
6587
+ * available under the terms of the Eclipse Public License 2.0
6588
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6589
+ *
6590
+ * SPDX-License-Identifier: EPL-2.0
6597
6591
  */
6598
6592
 
6599
6593
  class ChartTableUserFilter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableUserFilter {
@@ -6681,14 +6675,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6681
6675
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6682
6676
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
6683
6677
  /*
6684
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6685
- * All rights reserved. This program and the accompanying materials
6686
- * are made available under the terms of the Eclipse Public License v1.0
6687
- * which accompanies this distribution, and is available at
6688
- * https://www.eclipse.org/legal/epl-v10.html
6678
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6679
+ *
6680
+ * This program and the accompanying materials are made
6681
+ * available under the terms of the Eclipse Public License 2.0
6682
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6689
6683
  *
6690
- * Contributors:
6691
- * BSI Business Systems Integration AG - initial API and implementation
6684
+ * SPDX-License-Identifier: EPL-2.0
6692
6685
  */
6693
6686
 
6694
6687
  class ChartFieldTile extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTile {
@@ -6735,14 +6728,13 @@ __webpack_require__.r(__webpack_exports__);
6735
6728
  /* harmony export */ });
6736
6729
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
6737
6730
  /*
6738
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6739
- * All rights reserved. This program and the accompanying materials
6740
- * are made available under the terms of the Eclipse Public License v1.0
6741
- * which accompanies this distribution, and is available at
6742
- * https://www.eclipse.org/legal/epl-v10.html
6731
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6732
+ *
6733
+ * This program and the accompanying materials are made
6734
+ * available under the terms of the Eclipse Public License 2.0
6735
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6743
6736
  *
6744
- * Contributors:
6745
- * BSI Business Systems Integration AG - initial API and implementation
6737
+ * SPDX-License-Identifier: EPL-2.0
6746
6738
  */
6747
6739
 
6748
6740
  class ChartFieldTileAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTileAdapter {}