@vaadin/charts 24.7.0-alpha9 → 24.7.0-beta1
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 +8 -8
- package/src/vaadin-chart-mixin.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/charts",
|
|
3
|
-
"version": "24.7.0-
|
|
3
|
+
"version": "24.7.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/component-base": "24.7.0-
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "24.7.0-
|
|
42
|
-
"@vaadin/vaadin-material-styles": "24.7.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "24.7.0-
|
|
40
|
+
"@vaadin/component-base": "24.7.0-beta1",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.7.0-beta1",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.7.0-beta1",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.7.0-beta1",
|
|
44
44
|
"highcharts": "9.2.2",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/chai-plugins": "24.7.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "24.7.0-
|
|
48
|
+
"@vaadin/chai-plugins": "24.7.0-beta1",
|
|
49
|
+
"@vaadin/test-runner-commands": "24.7.0-beta1",
|
|
50
50
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
51
51
|
"sinon": "^18.0.0"
|
|
52
52
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "4043c518ef9b915cde612d2907ddc9bd10e5af17"
|
|
59
59
|
}
|
|
@@ -44,7 +44,7 @@ import { deepMerge, inflateFunctions } from './helpers.js';
|
|
|
44
44
|
Highcharts.fireEvent(this, 'afterExport');
|
|
45
45
|
return result;
|
|
46
46
|
});
|
|
47
|
-
/* eslint-enable no-invalid-this */
|
|
47
|
+
/* eslint-enable @typescript-eslint/no-invalid-this, prefer-arrow-callback */
|
|
48
48
|
});
|
|
49
49
|
|
|
50
50
|
// Monkeypatch the onDocumentMouseMove method to fix the check for the source of the event
|
package/web-types.json
CHANGED