@opentinyvue/vue-huicharts-core 3.21.0 → 3.22.1

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -7
  2. package/package.json +3 -2
package/lib/index.js CHANGED
@@ -7,6 +7,7 @@ function _extends() {
7
7
  return n;
8
8
  }, _extends.apply(null, arguments);
9
9
  }
10
+ import { isObject as isObject$1 } from "@opentinyvue/utils";
10
11
  import cloneDeep$1 from "@opentiny/huicharts/util/cloneDeep";
11
12
  import IntegrateChart from "@opentiny/huicharts";
12
13
  import BaiduMapChart from "@opentiny/huicharts/components/BaiduMapChart";
@@ -168,12 +169,7 @@ extend$2 = function extend$22() {
168
169
  }
169
170
  return target;
170
171
  };
171
- var ABBR = {
172
- th: 3,
173
- mi: 6,
174
- bi: 9,
175
- tr: 12
176
- };
172
+ var ABBR = {};
177
173
  var abbrLabel = {
178
174
  th: "k",
179
175
  mi: "m",
@@ -1033,7 +1029,7 @@ var Core = {
1033
1029
  series.forEach(function(item) {
1034
1030
  setMark(item, marks);
1035
1031
  });
1036
- } else if (isObject(series)) {
1032
+ } else if (isObject$1(series)) {
1037
1033
  setMark(series, marks);
1038
1034
  }
1039
1035
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-huicharts-core",
3
- "version": "3.21.0",
3
+ "version": "3.22.1",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",
@@ -9,7 +9,8 @@
9
9
  "dependencies": {
10
10
  "echarts": "5.4.1",
11
11
  "@opentiny/huicharts": "1.0.1",
12
- "@opentinyvue/vue-theme": "~3.21.0"
12
+ "@opentinyvue/vue-theme": "~3.22.0",
13
+ "@opentinyvue/utils": "~3.22.0"
13
14
  },
14
15
  "license": "MIT",
15
16
  "types": "index.d.ts",