@visactor/vchart 1.5.4-alpha.0 → 1.5.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/build/index.js CHANGED
@@ -58378,7 +58378,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
58378
58378
  };
58379
58379
  registerVChartCore();
58380
58380
 
58381
- const version = "1.5.4-alpha.0";
58381
+ const version = "1.5.4";
58382
58382
 
58383
58383
  class ChartData {
58384
58384
  get dataList() {
@@ -82607,7 +82607,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
82607
82607
  let textLines;
82608
82608
  if (style.multiLine) {
82609
82609
  textLines = text.split('\n');
82610
- textLines.map((line, i) => (i < textLines.length - 1 ? line + '\n' : line));
82610
+ textLines = textLines.map((line, i) => (i < textLines.length - 1 ? line + '\n' : line));
82611
82611
  }
82612
82612
  else {
82613
82613
  textLines = [text];