@vaadin/charts 24.9.2 → 24.9.4
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 +4 -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.9.
|
|
3
|
+
"version": "24.9.4",
|
|
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.9.
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "~24.9.
|
|
42
|
-
"@vaadin/vaadin-material-styles": "~24.9.
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "~24.9.
|
|
40
|
+
"@vaadin/component-base": "~24.9.4",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "~24.9.4",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "~24.9.4",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "~24.9.4",
|
|
44
44
|
"highcharts": "9.2.2",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/chai-plugins": "~24.9.
|
|
49
|
-
"@vaadin/test-runner-commands": "~24.9.
|
|
48
|
+
"@vaadin/chai-plugins": "~24.9.4",
|
|
49
|
+
"@vaadin/test-runner-commands": "~24.9.4",
|
|
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": "7084e972641ef2355ffc281cbd932c070f998ed1"
|
|
59
59
|
}
|
|
@@ -756,7 +756,10 @@ export const ChartMixin = (superClass) =>
|
|
|
756
756
|
// Detect if the chart had already been initialized. This might happen in
|
|
757
757
|
// environments where the chart is lazily attached (e.g Grid).
|
|
758
758
|
if (this.configuration) {
|
|
759
|
-
this.
|
|
759
|
+
const { height } = this.$.chart.style;
|
|
760
|
+
this.$.chart.style.height = '0';
|
|
761
|
+
this.configuration.setSize(null, null, false);
|
|
762
|
+
this.$.chart.style.height = height;
|
|
760
763
|
return;
|
|
761
764
|
}
|
|
762
765
|
|
package/web-types.json
CHANGED