@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
@@ -16,14 +16,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
16
16
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
17
17
  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); }
18
18
  /*
19
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
20
- * All rights reserved. This program and the accompanying materials
21
- * are made available under the terms of the Eclipse Public License v1.0
22
- * which accompanies this distribution, and is available at
23
- * https://www.eclipse.org/legal/epl-v10.html
19
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
24
20
  *
25
- * Contributors:
26
- * BSI Business Systems Integration AG - initial API and implementation
21
+ * This program and the accompanying materials are made
22
+ * available under the terms of the Eclipse Public License 2.0
23
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
24
+ *
25
+ * SPDX-License-Identifier: EPL-2.0
27
26
  */
28
27
  class AbstractChartRenderer {
29
28
  /** true while this.render() is executing */
@@ -193,14 +192,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
193
192
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
194
193
  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); }
195
194
  /*
196
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
197
- * All rights reserved. This program and the accompanying materials
198
- * are made available under the terms of the Eclipse Public License v1.0
199
- * which accompanies this distribution, and is available at
200
- * https://www.eclipse.org/legal/epl-v10.html
195
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
196
+ *
197
+ * This program and the accompanying materials are made
198
+ * available under the terms of the Eclipse Public License 2.0
199
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
201
200
  *
202
- * Contributors:
203
- * BSI Business Systems Integration AG - initial API and implementation
201
+ * SPDX-License-Identifier: EPL-2.0
204
202
  */
205
203
 
206
204
 
@@ -570,21 +568,23 @@ __webpack_require__.r(__webpack_exports__);
570
568
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./src/index.ts");
571
569
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
572
570
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__);
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
  /***/ }),
@@ -929,14 +939,13 @@ __webpack_require__.r(__webpack_exports__);
929
939
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
930
940
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
931
941
  /*
932
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
933
- * All rights reserved. This program and the accompanying materials
934
- * are made available under the terms of the Eclipse Public License v1.0
935
- * which accompanies this distribution, and is available at
936
- * https://www.eclipse.org/legal/epl-v10.html
942
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
943
+ *
944
+ * This program and the accompanying materials are made
945
+ * available under the terms of the Eclipse Public License 2.0
946
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
937
947
  *
938
- * Contributors:
939
- * BSI Business Systems Integration AG - initial API and implementation
948
+ * SPDX-License-Identifier: EPL-2.0
940
949
  */
941
950
 
942
951
  class ChartAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
@@ -988,14 +997,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
988
997
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
989
998
  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); }
990
999
  /*
991
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
992
- * All rights reserved. This program and the accompanying materials
993
- * are made available under the terms of the Eclipse Public License v1.0
994
- * which accompanies this distribution, and is available at
995
- * https://www.eclipse.org/legal/epl-v10.html
1000
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
1001
+ *
1002
+ * This program and the accompanying materials are made
1003
+ * available under the terms of the Eclipse Public License 2.0
1004
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
996
1005
  *
997
- * Contributors:
998
- * BSI Business Systems Integration AG - initial API and implementation
1006
+ * SPDX-License-Identifier: EPL-2.0
999
1007
  */
1000
1008
 
1001
1009
 
@@ -3450,14 +3458,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3450
3458
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3451
3459
  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); }
3452
3460
  /*
3453
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3454
- * All rights reserved. This program and the accompanying materials
3455
- * are made available under the terms of the Eclipse Public License v1.0
3456
- * which accompanies this distribution, and is available at
3457
- * https://www.eclipse.org/legal/epl-v10.html
3461
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3458
3462
  *
3459
- * Contributors:
3460
- * BSI Business Systems Integration AG - initial API and implementation
3463
+ * This program and the accompanying materials are made
3464
+ * available under the terms of the Eclipse Public License 2.0
3465
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3466
+ *
3467
+ * SPDX-License-Identifier: EPL-2.0
3461
3468
  */
3462
3469
 
3463
3470
 
@@ -3518,14 +3525,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3518
3525
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3519
3526
  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); }
3520
3527
  /*
3521
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3522
- * All rights reserved. This program and the accompanying materials
3523
- * are made available under the terms of the Eclipse Public License v1.0
3524
- * which accompanies this distribution, and is available at
3525
- * https://www.eclipse.org/legal/epl-v10.html
3528
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3529
+ *
3530
+ * This program and the accompanying materials are made
3531
+ * available under the terms of the Eclipse Public License 2.0
3532
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3526
3533
  *
3527
- * Contributors:
3528
- * BSI Business Systems Integration AG - initial API and implementation
3534
+ * SPDX-License-Identifier: EPL-2.0
3529
3535
  */
3530
3536
 
3531
3537
 
@@ -3701,14 +3707,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
3701
3707
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3702
3708
  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); }
3703
3709
  /*
3704
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
3705
- * All rights reserved. This program and the accompanying materials
3706
- * are made available under the terms of the Eclipse Public License v1.0
3707
- * which accompanies this distribution, and is available at
3708
- * https://www.eclipse.org/legal/epl-v10.html
3710
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
3711
+ *
3712
+ * This program and the accompanying materials are made
3713
+ * available under the terms of the Eclipse Public License 2.0
3714
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
3709
3715
  *
3710
- * Contributors:
3711
- * BSI Business Systems Integration AG - initial API and implementation
3716
+ * SPDX-License-Identifier: EPL-2.0
3712
3717
  */
3713
3718
 
3714
3719
 
@@ -4085,14 +4090,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4085
4090
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4086
4091
  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); }
4087
4092
  /*
4088
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4089
- * All rights reserved. This program and the accompanying materials
4090
- * are made available under the terms of the Eclipse Public License v1.0
4091
- * which accompanies this distribution, and is available at
4092
- * https://www.eclipse.org/legal/epl-v10.html
4093
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4093
4094
  *
4094
- * Contributors:
4095
- * BSI Business Systems Integration AG - initial API and implementation
4095
+ * This program and the accompanying materials are made
4096
+ * available under the terms of the Eclipse Public License 2.0
4097
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4098
+ *
4099
+ * SPDX-License-Identifier: EPL-2.0
4096
4100
  */
4097
4101
 
4098
4102
 
@@ -4464,14 +4468,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4464
4468
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4465
4469
  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); }
4466
4470
  /*
4467
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4468
- * All rights reserved. This program and the accompanying materials
4469
- * are made available under the terms of the Eclipse Public License v1.0
4470
- * which accompanies this distribution, and is available at
4471
- * https://www.eclipse.org/legal/epl-v10.html
4471
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4472
+ *
4473
+ * This program and the accompanying materials are made
4474
+ * available under the terms of the Eclipse Public License 2.0
4475
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4472
4476
  *
4473
- * Contributors:
4474
- * BSI Business Systems Integration AG - initial API and implementation
4477
+ * SPDX-License-Identifier: EPL-2.0
4475
4478
  */
4476
4479
  class VennAsync3Calculator {
4477
4480
  constructor(helper, venn1, venn2, venn3, u, v, w, uv, uw, vw, uvw, d12, d13, d23) {
@@ -4684,14 +4687,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
4684
4687
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4685
4688
  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); }
4686
4689
  /*
4687
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
4688
- * All rights reserved. This program and the accompanying materials
4689
- * are made available under the terms of the Eclipse Public License v1.0
4690
- * which accompanies this distribution, and is available at
4691
- * https://www.eclipse.org/legal/epl-v10.html
4690
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
4692
4691
  *
4693
- * Contributors:
4694
- * BSI Business Systems Integration AG - initial API and implementation
4692
+ * This program and the accompanying materials are made
4693
+ * available under the terms of the Eclipse Public License 2.0
4694
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
4695
+ *
4696
+ * SPDX-License-Identifier: EPL-2.0
4695
4697
  */
4696
4698
 
4697
4699
 
@@ -5060,14 +5062,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5060
5062
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5061
5063
  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); }
5062
5064
  /*
5063
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5064
- * All rights reserved. This program and the accompanying materials
5065
- * are made available under the terms of the Eclipse Public License v1.0
5066
- * which accompanies this distribution, and is available at
5067
- * https://www.eclipse.org/legal/epl-v10.html
5065
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5066
+ *
5067
+ * This program and the accompanying materials are made
5068
+ * available under the terms of the Eclipse Public License 2.0
5069
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5068
5070
  *
5069
- * Contributors:
5070
- * BSI Business Systems Integration AG - initial API and implementation
5071
+ * SPDX-License-Identifier: EPL-2.0
5071
5072
  */
5072
5073
  class VennCircle {
5073
5074
  constructor($circle) {
@@ -5210,14 +5211,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5210
5211
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5211
5212
  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); }
5212
5213
  /*
5213
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5214
- * All rights reserved. This program and the accompanying materials
5215
- * are made available under the terms of the Eclipse Public License v1.0
5216
- * which accompanies this distribution, and is available at
5217
- * https://www.eclipse.org/legal/epl-v10.html
5214
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5218
5215
  *
5219
- * Contributors:
5220
- * BSI Business Systems Integration AG - initial API and implementation
5216
+ * This program and the accompanying materials are made
5217
+ * available under the terms of the Eclipse Public License 2.0
5218
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5219
+ *
5220
+ * SPDX-License-Identifier: EPL-2.0
5221
5221
  */
5222
5222
 
5223
5223
  class ChartField extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormField {
@@ -5261,14 +5261,13 @@ __webpack_require__.r(__webpack_exports__);
5261
5261
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
5262
5262
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
5263
5263
  /*
5264
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5265
- * All rights reserved. This program and the accompanying materials
5266
- * are made available under the terms of the Eclipse Public License v1.0
5267
- * which accompanies this distribution, and is available at
5268
- * https://www.eclipse.org/legal/epl-v10.html
5264
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5265
+ *
5266
+ * This program and the accompanying materials are made
5267
+ * available under the terms of the Eclipse Public License 2.0
5268
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5269
5269
  *
5270
- * Contributors:
5271
- * BSI Business Systems Integration AG - initial API and implementation
5270
+ * SPDX-License-Identifier: EPL-2.0
5272
5271
  */
5273
5272
 
5274
5273
  class ChartFieldAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldAdapter {}
@@ -5349,14 +5348,13 @@ __webpack_require__.r(__webpack_exports__);
5349
5348
  /* harmony import */ var _table_controls_ChartTableControlLayout__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./table/controls/ChartTableControlLayout */ "./src/table/controls/ChartTableControlLayout.ts");
5350
5349
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./index */ "./src/index.ts");
5351
5350
  /*
5352
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5353
- * All rights reserved. This program and the accompanying materials
5354
- * are made available under the terms of the Eclipse Public License v1.0
5355
- * which accompanies this distribution, and is available at
5356
- * https://www.eclipse.org/legal/epl-v10.html
5351
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5352
+ *
5353
+ * This program and the accompanying materials are made
5354
+ * available under the terms of the Eclipse Public License 2.0
5355
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5357
5356
  *
5358
- * Contributors:
5359
- * BSI Business Systems Integration AG - initial API and implementation
5357
+ * SPDX-License-Identifier: EPL-2.0
5360
5358
  */
5361
5359
 
5362
5360
 
@@ -5412,14 +5410,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
5412
5410
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5413
5411
  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); }
5414
5412
  /*
5415
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5416
- * All rights reserved. This program and the accompanying materials
5417
- * are made available under the terms of the Eclipse Public License v1.0
5418
- * which accompanies this distribution, and is available at
5419
- * https://www.eclipse.org/legal/epl-v10.html
5413
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
5420
5414
  *
5421
- * Contributors:
5422
- * BSI Business Systems Integration AG - initial API and implementation
5415
+ * This program and the accompanying materials are made
5416
+ * available under the terms of the Eclipse Public License 2.0
5417
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
5418
+ *
5419
+ * SPDX-License-Identifier: EPL-2.0
5423
5420
  */
5424
5421
 
5425
5422
 
@@ -6498,14 +6495,13 @@ __webpack_require__.r(__webpack_exports__);
6498
6495
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
6499
6496
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
6500
6497
  /*
6501
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6502
- * All rights reserved. This program and the accompanying materials
6503
- * are made available under the terms of the Eclipse Public License v1.0
6504
- * which accompanies this distribution, and is available at
6505
- * https://www.eclipse.org/legal/epl-v10.html
6498
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6499
+ *
6500
+ * This program and the accompanying materials are made
6501
+ * available under the terms of the Eclipse Public License 2.0
6502
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6506
6503
  *
6507
- * Contributors:
6508
- * BSI Business Systems Integration AG - initial API and implementation
6504
+ * SPDX-License-Identifier: EPL-2.0
6509
6505
  */
6510
6506
 
6511
6507
  class ChartTableControlAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableControlAdapter {
@@ -6544,14 +6540,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6544
6540
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6545
6541
  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); }
6546
6542
  /*
6547
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6548
- * All rights reserved. This program and the accompanying materials
6549
- * are made available under the terms of the Eclipse Public License v1.0
6550
- * which accompanies this distribution, and is available at
6551
- * https://www.eclipse.org/legal/epl-v10.html
6543
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6544
+ *
6545
+ * This program and the accompanying materials are made
6546
+ * available under the terms of the Eclipse Public License 2.0
6547
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6552
6548
  *
6553
- * Contributors:
6554
- * BSI Business Systems Integration AG - initial API and implementation
6549
+ * SPDX-License-Identifier: EPL-2.0
6555
6550
  */
6556
6551
 
6557
6552
  class ChartTableControlLayout extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.AbstractLayout {
@@ -6600,14 +6595,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6600
6595
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6601
6596
  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); }
6602
6597
  /*
6603
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6604
- * All rights reserved. This program and the accompanying materials
6605
- * are made available under the terms of the Eclipse Public License v1.0
6606
- * which accompanies this distribution, and is available at
6607
- * https://www.eclipse.org/legal/epl-v10.html
6598
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6608
6599
  *
6609
- * Contributors:
6610
- * BSI Business Systems Integration AG - initial API and implementation
6600
+ * This program and the accompanying materials are made
6601
+ * available under the terms of the Eclipse Public License 2.0
6602
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6603
+ *
6604
+ * SPDX-License-Identifier: EPL-2.0
6611
6605
  */
6612
6606
 
6613
6607
  class ChartTableUserFilter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableUserFilter {
@@ -6696,14 +6690,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
6696
6690
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
6697
6691
  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); }
6698
6692
  /*
6699
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6700
- * All rights reserved. This program and the accompanying materials
6701
- * are made available under the terms of the Eclipse Public License v1.0
6702
- * which accompanies this distribution, and is available at
6703
- * https://www.eclipse.org/legal/epl-v10.html
6693
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6694
+ *
6695
+ * This program and the accompanying materials are made
6696
+ * available under the terms of the Eclipse Public License 2.0
6697
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6704
6698
  *
6705
- * Contributors:
6706
- * BSI Business Systems Integration AG - initial API and implementation
6699
+ * SPDX-License-Identifier: EPL-2.0
6707
6700
  */
6708
6701
 
6709
6702
  class ChartFieldTile extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTile {
@@ -6751,14 +6744,13 @@ __webpack_require__.r(__webpack_exports__);
6751
6744
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
6752
6745
  /* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
6753
6746
  /*
6754
- * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
6755
- * All rights reserved. This program and the accompanying materials
6756
- * are made available under the terms of the Eclipse Public License v1.0
6757
- * which accompanies this distribution, and is available at
6758
- * https://www.eclipse.org/legal/epl-v10.html
6747
+ * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
6748
+ *
6749
+ * This program and the accompanying materials are made
6750
+ * available under the terms of the Eclipse Public License 2.0
6751
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
6759
6752
  *
6760
- * Contributors:
6761
- * BSI Business Systems Integration AG - initial API and implementation
6753
+ * SPDX-License-Identifier: EPL-2.0
6762
6754
  */
6763
6755
 
6764
6756
  class ChartFieldTileAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTileAdapter {}