@vaadin/charts 23.1.2 → 23.2.0-dev.48e5e3967
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/package.json +4 -5
- package/src/vaadin-chart.js +0 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/charts",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.2.0-dev.48e5e3967",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,9 +35,8 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@polymer/polymer": "^3.0.0",
|
|
38
|
-
"@vaadin/component-base": "
|
|
39
|
-
"@vaadin/vaadin-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "^23.1.2",
|
|
38
|
+
"@vaadin/component-base": "23.2.0-dev.48e5e3967",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "23.2.0-dev.48e5e3967",
|
|
41
40
|
"highcharts": "9.2.2"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
@@ -45,5 +44,5 @@
|
|
|
45
44
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
46
45
|
"sinon": "^13.0.2"
|
|
47
46
|
},
|
|
48
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "961bc4ae5b707c3c02f12b99819b3c12c9b478aa"
|
|
49
48
|
}
|
package/src/vaadin-chart.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2015 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Commercial Vaadin Developer License 4.0, available at https://vaadin.com/license/cvdl-4.0.
|
|
5
5
|
*/
|
|
6
|
-
import '@vaadin/vaadin-license-checker/vaadin-license-checker.js';
|
|
7
6
|
import 'highcharts/es-modules/masters/highstock.src.js';
|
|
8
7
|
import 'highcharts/es-modules/masters/modules/accessibility.src.js';
|
|
9
8
|
import 'highcharts/es-modules/masters/highcharts-more.src.js';
|
|
@@ -478,20 +477,6 @@ class Chart extends ResizeMixin(ElementMixin(ThemableMixin(PolymerElement))) {
|
|
|
478
477
|
];
|
|
479
478
|
}
|
|
480
479
|
|
|
481
|
-
/**
|
|
482
|
-
* @protected
|
|
483
|
-
*/
|
|
484
|
-
static _finalizeClass() {
|
|
485
|
-
super._finalizeClass();
|
|
486
|
-
|
|
487
|
-
const devModeCallback = window.Vaadin.developmentModeCallback;
|
|
488
|
-
const licenseChecker = devModeCallback && devModeCallback['vaadin-license-checker'];
|
|
489
|
-
/* c8 ignore next 3 */
|
|
490
|
-
if (typeof licenseChecker === 'function') {
|
|
491
|
-
licenseChecker(Chart);
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
|
|
495
480
|
constructor() {
|
|
496
481
|
super();
|
|
497
482
|
|