myio-js-library 0.1.139 → 0.1.140

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/dist/index.cjs CHANGED
@@ -10944,8 +10944,11 @@ var EnergyModalView = class {
10944
10944
  */
10945
10945
  reRenderChart() {
10946
10946
  const mode = this.config.params.mode || "single";
10947
+ console.log("[EnergyModalView] reRenderChart called, mode:", mode, "barMode:", this.currentBarMode, "theme:", this.currentTheme);
10947
10948
  if (mode === "comparison") {
10948
- this.renderComparisonChart();
10949
+ console.log("[EnergyModalView] Calling renderComparisonChart...");
10950
+ const result = this.renderComparisonChart();
10951
+ console.log("[EnergyModalView] renderComparisonChart result:", result);
10949
10952
  } else {
10950
10953
  if (this.currentEnergyData) {
10951
10954
  this.renderChart(this.currentEnergyData);
package/dist/index.js CHANGED
@@ -10848,8 +10848,11 @@ var EnergyModalView = class {
10848
10848
  */
10849
10849
  reRenderChart() {
10850
10850
  const mode = this.config.params.mode || "single";
10851
+ console.log("[EnergyModalView] reRenderChart called, mode:", mode, "barMode:", this.currentBarMode, "theme:", this.currentTheme);
10851
10852
  if (mode === "comparison") {
10852
- this.renderComparisonChart();
10853
+ console.log("[EnergyModalView] Calling renderComparisonChart...");
10854
+ const result = this.renderComparisonChart();
10855
+ console.log("[EnergyModalView] renderComparisonChart result:", result);
10853
10856
  } else {
10854
10857
  if (this.currentEnergyData) {
10855
10858
  this.renderChart(this.currentEnergyData);
@@ -10713,8 +10713,11 @@ ${rangeText}`;
10713
10713
  */
10714
10714
  reRenderChart() {
10715
10715
  const mode = this.config.params.mode || "single";
10716
+ console.log("[EnergyModalView] reRenderChart called, mode:", mode, "barMode:", this.currentBarMode, "theme:", this.currentTheme);
10716
10717
  if (mode === "comparison") {
10717
- this.renderComparisonChart();
10718
+ console.log("[EnergyModalView] Calling renderComparisonChart...");
10719
+ const result = this.renderComparisonChart();
10720
+ console.log("[EnergyModalView] renderComparisonChart result:", result);
10718
10721
  } else {
10719
10722
  if (this.currentEnergyData) {
10720
10723
  this.renderChart(this.currentEnergyData);