@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/es5/index.js +1 -1
- package/build/index.js +2 -2
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/component/tooltip/handler/utils/common.js +1 -1
- package/cjs/component/tooltip/handler/utils/common.js.map +1 -1
- package/cjs/constant/base.js +1 -2
- package/cjs/constant/waterfall.js +2 -1
- package/cjs/core/index.d.ts +1 -1
- package/cjs/core/index.js +1 -1
- package/cjs/core/index.js.map +1 -1
- package/esm/component/tooltip/handler/utils/common.js +1 -1
- package/esm/component/tooltip/handler/utils/common.js.map +1 -1
- package/esm/constant/base.js +1 -2
- package/esm/constant/waterfall.js +2 -1
- package/esm/core/index.d.ts +1 -1
- package/esm/core/index.js +1 -1
- package/esm/core/index.js.map +1 -1
- package/package.json +4 -4
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
|
|
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];
|