@vaadin/charts 24.8.8 → 24.8.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/charts",
3
- "version": "24.8.8",
3
+ "version": "24.8.10",
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.8.8",
41
- "@vaadin/vaadin-lumo-styles": "~24.8.8",
42
- "@vaadin/vaadin-material-styles": "~24.8.8",
43
- "@vaadin/vaadin-themable-mixin": "~24.8.8",
40
+ "@vaadin/component-base": "~24.8.10",
41
+ "@vaadin/vaadin-lumo-styles": "~24.8.10",
42
+ "@vaadin/vaadin-material-styles": "~24.8.10",
43
+ "@vaadin/vaadin-themable-mixin": "~24.8.10",
44
44
  "highcharts": "9.2.2",
45
45
  "lit": "^3.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@vaadin/chai-plugins": "~24.8.8",
49
- "@vaadin/test-runner-commands": "~24.8.8",
48
+ "@vaadin/chai-plugins": "~24.8.10",
49
+ "@vaadin/test-runner-commands": "~24.8.10",
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": "992c7e745638819544e6814dd54d108c15f8163b"
58
+ "gitHead": "b593e9997cb03b254fce449b2b00758abe4bac04"
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.__reflow();
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/charts",
4
- "version": "24.8.8",
4
+ "version": "24.8.10",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/charts",
4
- "version": "24.8.8",
4
+ "version": "24.8.10",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {