Skip to content

Commit

Permalink
release: 5.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
100pah committed Aug 17, 2020
1 parent abc421b commit 7cde546
Show file tree
Hide file tree
Showing 17 changed files with 988 additions and 672 deletions.
457 changes: 260 additions & 197 deletions dist/echarts.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.common.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.common.min.js

Large diffs are not rendered by default.

769 changes: 456 additions & 313 deletions dist/echarts.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.min.js

Large diffs are not rendered by default.

374 changes: 236 additions & 138 deletions dist/echarts.simple.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.simple.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts.simple.min.js

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions dist/extension/bmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,10 @@
coordSys.setMapOffset(mapOffset);
bMapModel.__mapOffset = mapOffset;
api.dispatchAction({
type: 'bmapRoam'
type: 'bmapRoam',
animation: {
duration: 0
}
});
};

Expand All @@ -328,7 +331,10 @@
}

api.dispatchAction({
type: 'bmapRoam'
type: 'bmapRoam',
animation: {
duration: 0
}
});
}

Expand Down
2 changes: 1 addition & 1 deletion dist/extension/bmap.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/extension/bmap.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions dist/extension/dataTool.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,7 @@
return children;
}

var gexf =
/*#__PURE__*/
Object.freeze({
var gexf = /*#__PURE__*/Object.freeze({
__proto__: null,
parse: parse
});
Expand Down
2 changes: 1 addition & 1 deletion dist/extension/dataTool.js.map

Large diffs are not rendered by default.

20 changes: 14 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echarts",
"version": "5.0.0-alpha.1",
"version": "5.0.0-alpha.2",
"description": "A powerful charting and visualization library for browser",
"license": "Apache-2.0",
"keywords": [
Expand Down Expand Up @@ -34,7 +34,7 @@
"lint:dist": "echo 'It might take a while. Please wait ...' && ./node_modules/.bin/jshint --config .jshintrc-dist dist/echarts.js"
},
"dependencies": {
"zrender": "5.0.0-alpha.1"
"zrender": "5.0.0-alpha.2"
},
"devDependencies": {
"@babel/core": "7.3.4",
Expand Down
4 changes: 2 additions & 2 deletions src/echarts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ const each = zrUtil.each;
const isFunction = zrUtil.isFunction;
const isObject = zrUtil.isObject;

export const version = '5.0.0-alpha.1';
export const version = '5.0.0-alpha.2';

export const dependencies = {
zrender: '5.0.0-alpha.1'
zrender: '5.0.0-alpha.2'
};

const TEST_FRAME_REMAIN_TIME = 1;
Expand Down

0 comments on commit 7cde546

Please sign in to comment.