@eclipse-scout/chart 23.1.0-beta.4 → 23.1.1
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.
- package/LICENSE +277 -210
- package/README.md +4 -8
- package/dist/d.ts/chart/AbstractChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/AbstractSvgChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/Chart.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartAdapter.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartEventMap.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartJsRenderer.d.ts +19 -20
- package/dist/d.ts/chart/ChartJsRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartLayout.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartModel.d.ts.map +1 -1
- package/dist/d.ts/chart/FulfillmentChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/SalesfunnelChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/SpeedoChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/VennAsync3Calculator.d.ts.map +1 -1
- package/dist/d.ts/chart/VennChartRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/VennCircle.d.ts.map +1 -1
- package/dist/d.ts/chart/VennCircleHelper.d.ts.map +1 -1
- package/dist/d.ts/form/fields/chartfield/ChartField.d.ts.map +1 -1
- package/dist/d.ts/form/fields/chartfield/ChartFieldAdapter.d.ts.map +1 -1
- package/dist/d.ts/form/fields/chartfield/ChartFieldModel.d.ts.map +1 -1
- package/dist/d.ts/index.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControl.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControlAdapter.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControlEventMap.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControlLayout.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControlModel.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableUserFilter.d.ts +1 -2
- package/dist/d.ts/table/controls/ChartTableUserFilter.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableUserFilterModel.d.ts.map +1 -1
- package/dist/d.ts/tile/ChartFieldTile.d.ts.map +1 -1
- package/dist/d.ts/tile/ChartFieldTileAdapter.d.ts.map +1 -1
- package/dist/d.ts/tile/ChartFieldTileModel.d.ts.map +1 -1
- package/dist/eclipse-scout-chart-fae6f958a044232e659c.min.js.map +1 -1
- package/dist/eclipse-scout-chart-theme-56ba6667e592ef147869.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark-593955eea95984c5aa62.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark.css +52 -58
- package/dist/eclipse-scout-chart-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-chart-theme.css +40 -44
- package/dist/eclipse-scout-chart-theme.css.map +1 -1
- package/dist/eclipse-scout-chart.esm-2119cfea86a9d6f34a35.min.js.map +1 -1
- package/dist/eclipse-scout-chart.esm.js +126 -147
- package/dist/eclipse-scout-chart.esm.js.map +1 -1
- package/dist/eclipse-scout-chart.js +126 -147
- package/dist/eclipse-scout-chart.js.map +1 -1
- package/dist/file-list +2 -2
- package/package.json +4 -4
- package/src/chart/AbstractChartRenderer.ts +6 -7
- package/src/chart/AbstractSvgChartRenderer.ts +6 -7
- package/src/chart/Chart.less +8 -8
- package/src/chart/Chart.ts +6 -7
- package/src/chart/ChartAdapter.ts +6 -7
- package/src/chart/ChartEventMap.ts +6 -7
- package/src/chart/ChartJsRenderer.ts +26 -27
- package/src/chart/ChartLayout.ts +6 -7
- package/src/chart/ChartModel.ts +6 -7
- package/src/chart/FulfillmentChartRenderer.ts +6 -7
- package/src/chart/SalesfunnelChartRenderer.ts +6 -7
- package/src/chart/SpeedoChartRenderer.ts +6 -7
- package/src/chart/VennAsync3Calculator.ts +6 -7
- package/src/chart/VennChartRenderer.ts +6 -7
- package/src/chart/VennCircle.ts +6 -7
- package/src/chart/VennCircleHelper.ts +6 -7
- package/src/eclipse-scout-chart-theme-dark.less +7 -8
- package/src/eclipse-scout-chart-theme.less +7 -8
- package/src/form/fields/chartfield/ChartField.ts +6 -7
- package/src/form/fields/chartfield/ChartFieldAdapter.ts +6 -7
- package/src/form/fields/chartfield/ChartFieldModel.ts +6 -7
- package/src/index-dark.less +6 -7
- package/src/index.less +6 -7
- package/src/index.ts +6 -7
- package/src/style/colors-dark.less +7 -8
- package/src/style/colors.less +6 -7
- package/src/table/controls/ChartTableControl.less +6 -7
- package/src/table/controls/ChartTableControl.ts +6 -7
- package/src/table/controls/ChartTableControlAdapter.ts +6 -7
- package/src/table/controls/ChartTableControlEventMap.ts +6 -7
- package/src/table/controls/ChartTableControlLayout.ts +6 -7
- package/src/table/controls/ChartTableControlModel.ts +6 -7
- package/src/table/controls/ChartTableUserFilter.ts +7 -8
- package/src/table/controls/ChartTableUserFilterModel.ts +6 -7
- package/src/tile/ChartFieldTile.less +6 -7
- package/src/tile/ChartFieldTile.ts +6 -7
- package/src/tile/ChartFieldTileAdapter.ts +6 -7
- package/src/tile/ChartFieldTileModel.ts +6 -7
- package/dist/eclipse-scout-chart-theme-dark-89bcf2022056cbf8e371.min.css +0 -1
- package/dist/eclipse-scout-chart-theme-e25b5923d4dba5f5ca7e.min.css +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
|
|
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
|
-
*
|
|
26
|
-
*
|
|
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
|
|
197
|
-
*
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
* https://www.eclipse.org/legal/epl-
|
|
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
|
-
*
|
|
203
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
201
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
204
202
|
*/
|
|
205
203
|
|
|
206
204
|
|
|
@@ -574,14 +572,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
574
572
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
575
573
|
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
574
|
/*
|
|
577
|
-
* Copyright (c) 2010
|
|
578
|
-
*
|
|
579
|
-
*
|
|
580
|
-
*
|
|
581
|
-
* https://www.eclipse.org/legal/epl-
|
|
575
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
576
|
+
*
|
|
577
|
+
* This program and the accompanying materials are made
|
|
578
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
579
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
582
580
|
*
|
|
583
|
-
*
|
|
584
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
581
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
585
582
|
*/
|
|
586
583
|
|
|
587
584
|
|
|
@@ -929,14 +926,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
929
926
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
|
|
930
927
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
|
|
931
928
|
/*
|
|
932
|
-
* Copyright (c) 2010
|
|
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
|
|
929
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
937
930
|
*
|
|
938
|
-
*
|
|
939
|
-
*
|
|
931
|
+
* This program and the accompanying materials are made
|
|
932
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
933
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
934
|
+
*
|
|
935
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
940
936
|
*/
|
|
941
937
|
|
|
942
938
|
class ChartAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
|
|
@@ -988,14 +984,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
988
984
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
989
985
|
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
986
|
/*
|
|
991
|
-
* Copyright (c) 2010
|
|
992
|
-
*
|
|
993
|
-
*
|
|
994
|
-
*
|
|
995
|
-
* https://www.eclipse.org/legal/epl-
|
|
987
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
988
|
+
*
|
|
989
|
+
* This program and the accompanying materials are made
|
|
990
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
991
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
996
992
|
*
|
|
997
|
-
*
|
|
998
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
993
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
999
994
|
*/
|
|
1000
995
|
|
|
1001
996
|
|
|
@@ -3450,14 +3445,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
3450
3445
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
3451
3446
|
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
3447
|
/*
|
|
3453
|
-
* Copyright (c) 2010
|
|
3454
|
-
*
|
|
3455
|
-
*
|
|
3456
|
-
*
|
|
3457
|
-
* https://www.eclipse.org/legal/epl-
|
|
3448
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
3449
|
+
*
|
|
3450
|
+
* This program and the accompanying materials are made
|
|
3451
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
3452
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
3458
3453
|
*
|
|
3459
|
-
*
|
|
3460
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
3454
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
3461
3455
|
*/
|
|
3462
3456
|
|
|
3463
3457
|
|
|
@@ -3518,14 +3512,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
3518
3512
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
3519
3513
|
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
3514
|
/*
|
|
3521
|
-
* Copyright (c) 2010
|
|
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
|
|
3515
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
3526
3516
|
*
|
|
3527
|
-
*
|
|
3528
|
-
*
|
|
3517
|
+
* This program and the accompanying materials are made
|
|
3518
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
3519
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
3520
|
+
*
|
|
3521
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
3529
3522
|
*/
|
|
3530
3523
|
|
|
3531
3524
|
|
|
@@ -3701,14 +3694,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
3701
3694
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
3702
3695
|
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
3696
|
/*
|
|
3704
|
-
* Copyright (c) 2010
|
|
3705
|
-
*
|
|
3706
|
-
*
|
|
3707
|
-
*
|
|
3708
|
-
* https://www.eclipse.org/legal/epl-
|
|
3697
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
3698
|
+
*
|
|
3699
|
+
* This program and the accompanying materials are made
|
|
3700
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
3701
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
3709
3702
|
*
|
|
3710
|
-
*
|
|
3711
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
3703
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
3712
3704
|
*/
|
|
3713
3705
|
|
|
3714
3706
|
|
|
@@ -4085,14 +4077,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
4085
4077
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
4086
4078
|
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
4079
|
/*
|
|
4088
|
-
* Copyright (c) 2010
|
|
4089
|
-
*
|
|
4090
|
-
*
|
|
4091
|
-
*
|
|
4092
|
-
* https://www.eclipse.org/legal/epl-
|
|
4080
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
4081
|
+
*
|
|
4082
|
+
* This program and the accompanying materials are made
|
|
4083
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
4084
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
4093
4085
|
*
|
|
4094
|
-
*
|
|
4095
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
4086
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
4096
4087
|
*/
|
|
4097
4088
|
|
|
4098
4089
|
|
|
@@ -4464,14 +4455,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
4464
4455
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
4465
4456
|
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
4457
|
/*
|
|
4467
|
-
* Copyright (c) 2010
|
|
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
|
|
4458
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
4472
4459
|
*
|
|
4473
|
-
*
|
|
4474
|
-
*
|
|
4460
|
+
* This program and the accompanying materials are made
|
|
4461
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
4462
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
4463
|
+
*
|
|
4464
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
4475
4465
|
*/
|
|
4476
4466
|
class VennAsync3Calculator {
|
|
4477
4467
|
constructor(helper, venn1, venn2, venn3, u, v, w, uv, uw, vw, uvw, d12, d13, d23) {
|
|
@@ -4684,14 +4674,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
4684
4674
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
4685
4675
|
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
4676
|
/*
|
|
4687
|
-
* Copyright (c) 2010
|
|
4688
|
-
*
|
|
4689
|
-
*
|
|
4690
|
-
*
|
|
4691
|
-
* https://www.eclipse.org/legal/epl-
|
|
4677
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
4678
|
+
*
|
|
4679
|
+
* This program and the accompanying materials are made
|
|
4680
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
4681
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
4692
4682
|
*
|
|
4693
|
-
*
|
|
4694
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
4683
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
4695
4684
|
*/
|
|
4696
4685
|
|
|
4697
4686
|
|
|
@@ -5060,14 +5049,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
5060
5049
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
5061
5050
|
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
5051
|
/*
|
|
5063
|
-
* Copyright (c) 2010
|
|
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
|
|
5052
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
5068
5053
|
*
|
|
5069
|
-
*
|
|
5070
|
-
*
|
|
5054
|
+
* This program and the accompanying materials are made
|
|
5055
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
5056
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
5057
|
+
*
|
|
5058
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
5071
5059
|
*/
|
|
5072
5060
|
class VennCircle {
|
|
5073
5061
|
constructor($circle) {
|
|
@@ -5210,14 +5198,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
5210
5198
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
5211
5199
|
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
5200
|
/*
|
|
5213
|
-
* Copyright (c) 2010
|
|
5214
|
-
*
|
|
5215
|
-
*
|
|
5216
|
-
*
|
|
5217
|
-
* https://www.eclipse.org/legal/epl-
|
|
5201
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
5202
|
+
*
|
|
5203
|
+
* This program and the accompanying materials are made
|
|
5204
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
5205
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
5218
5206
|
*
|
|
5219
|
-
*
|
|
5220
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
5207
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
5221
5208
|
*/
|
|
5222
5209
|
|
|
5223
5210
|
class ChartField extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormField {
|
|
@@ -5261,14 +5248,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5261
5248
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
|
|
5262
5249
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
|
|
5263
5250
|
/*
|
|
5264
|
-
* Copyright (c) 2010
|
|
5265
|
-
*
|
|
5266
|
-
*
|
|
5267
|
-
*
|
|
5268
|
-
* https://www.eclipse.org/legal/epl-
|
|
5251
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
5252
|
+
*
|
|
5253
|
+
* This program and the accompanying materials are made
|
|
5254
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
5255
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
5269
5256
|
*
|
|
5270
|
-
*
|
|
5271
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
5257
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
5272
5258
|
*/
|
|
5273
5259
|
|
|
5274
5260
|
class ChartFieldAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldAdapter {}
|
|
@@ -5349,14 +5335,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5349
5335
|
/* harmony import */ var _table_controls_ChartTableControlLayout__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./table/controls/ChartTableControlLayout */ "./src/table/controls/ChartTableControlLayout.ts");
|
|
5350
5336
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./index */ "./src/index.ts");
|
|
5351
5337
|
/*
|
|
5352
|
-
* Copyright (c) 2010
|
|
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
|
|
5338
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
5357
5339
|
*
|
|
5358
|
-
*
|
|
5359
|
-
*
|
|
5340
|
+
* This program and the accompanying materials are made
|
|
5341
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
5342
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
5343
|
+
*
|
|
5344
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
5360
5345
|
*/
|
|
5361
5346
|
|
|
5362
5347
|
|
|
@@ -5412,14 +5397,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
5412
5397
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
5413
5398
|
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
5399
|
/*
|
|
5415
|
-
* Copyright (c) 2010
|
|
5416
|
-
*
|
|
5417
|
-
*
|
|
5418
|
-
*
|
|
5419
|
-
* https://www.eclipse.org/legal/epl-
|
|
5400
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
5401
|
+
*
|
|
5402
|
+
* This program and the accompanying materials are made
|
|
5403
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
5404
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
5420
5405
|
*
|
|
5421
|
-
*
|
|
5422
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
5406
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
5423
5407
|
*/
|
|
5424
5408
|
|
|
5425
5409
|
|
|
@@ -6498,14 +6482,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6498
6482
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
|
|
6499
6483
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
|
|
6500
6484
|
/*
|
|
6501
|
-
* Copyright (c) 2010
|
|
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
|
|
6485
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
6506
6486
|
*
|
|
6507
|
-
*
|
|
6508
|
-
*
|
|
6487
|
+
* This program and the accompanying materials are made
|
|
6488
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
6489
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
6490
|
+
*
|
|
6491
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
6509
6492
|
*/
|
|
6510
6493
|
|
|
6511
6494
|
class ChartTableControlAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableControlAdapter {
|
|
@@ -6544,14 +6527,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
6544
6527
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
6545
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); }
|
|
6546
6529
|
/*
|
|
6547
|
-
* Copyright (c) 2010
|
|
6548
|
-
*
|
|
6549
|
-
*
|
|
6550
|
-
*
|
|
6551
|
-
* https://www.eclipse.org/legal/epl-
|
|
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/
|
|
6552
6535
|
*
|
|
6553
|
-
*
|
|
6554
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
6536
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
6555
6537
|
*/
|
|
6556
6538
|
|
|
6557
6539
|
class ChartTableControlLayout extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.AbstractLayout {
|
|
@@ -6600,14 +6582,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
6600
6582
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
6601
6583
|
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
6584
|
/*
|
|
6603
|
-
* Copyright (c) 2010
|
|
6604
|
-
*
|
|
6605
|
-
*
|
|
6606
|
-
*
|
|
6607
|
-
* https://www.eclipse.org/legal/epl-
|
|
6585
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
6586
|
+
*
|
|
6587
|
+
* This program and the accompanying materials are made
|
|
6588
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
6589
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
6608
6590
|
*
|
|
6609
|
-
*
|
|
6610
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
6591
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
6611
6592
|
*/
|
|
6612
6593
|
|
|
6613
6594
|
class ChartTableUserFilter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.TableUserFilter {
|
|
@@ -6696,14 +6677,13 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
6696
6677
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
6697
6678
|
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
6679
|
/*
|
|
6699
|
-
* Copyright (c) 2010
|
|
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
|
|
6680
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
6704
6681
|
*
|
|
6705
|
-
*
|
|
6706
|
-
*
|
|
6682
|
+
* This program and the accompanying materials are made
|
|
6683
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
6684
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
6685
|
+
*
|
|
6686
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
6707
6687
|
*/
|
|
6708
6688
|
|
|
6709
6689
|
class ChartFieldTile extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTile {
|
|
@@ -6751,14 +6731,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6751
6731
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @eclipse-scout/core */ "@eclipse-scout/core");
|
|
6752
6732
|
/* harmony import */ var _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__);
|
|
6753
6733
|
/*
|
|
6754
|
-
* Copyright (c) 2010
|
|
6755
|
-
*
|
|
6756
|
-
*
|
|
6757
|
-
*
|
|
6758
|
-
* https://www.eclipse.org/legal/epl-
|
|
6734
|
+
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
|
|
6735
|
+
*
|
|
6736
|
+
* This program and the accompanying materials are made
|
|
6737
|
+
* available under the terms of the Eclipse Public License 2.0
|
|
6738
|
+
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
6759
6739
|
*
|
|
6760
|
-
*
|
|
6761
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
6740
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
6762
6741
|
*/
|
|
6763
6742
|
|
|
6764
6743
|
class ChartFieldTileAdapter extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_0__.FormFieldTileAdapter {}
|