This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 0c82ead7253fc4c77958b81f289a1804eea5160d
Merge: d897fa2e5 81321a63a
Author: Wenli Zhang <zwl.s...@gmail.com>
AuthorDate: Thu Sep 29 17:53:07 2022 +0800

    Merge pull request #17716 from apache/master
    
    chore: merge 'master' branch into 'next'

 .eslintrc-common.yaml                           |    2 +-
 .github/workflows/ci.yml                        |    2 +-
 .github/workflows/stale.yml                     |    1 +
 .huskyrc                                        |    2 +-
 dist/echarts.common.js                          | 1207 +++++-----
 dist/echarts.common.js.map                      |    2 +-
 dist/echarts.common.min.js                      |    4 +-
 dist/echarts.esm.js                             | 1557 +++++++------
 dist/echarts.esm.js.map                         |    2 +-
 dist/echarts.esm.min.js                         |    4 +-
 dist/echarts.js                                 | 1557 +++++++------
 dist/echarts.js.map                             |    2 +-
 dist/echarts.min.js                             |    4 +-
 dist/echarts.simple.js                          | 1164 +++++-----
 dist/echarts.simple.js.map                      |    2 +-
 dist/echarts.simple.min.js                      |    4 +-
 dist/extension/bmap.js                          |   14 +-
 dist/extension/bmap.js.map                      |    2 +-
 extension-src/bmap/BMapCoordSys.ts              |   14 +
 extension-src/bmap/BMapModel.ts                 |    4 +-
 extension-src/bmap/README.md                    |   34 +-
 i18n/langUA-obj.js                              |  174 ++
 i18n/langUA.js                                  |  170 ++
 package-lock.json                               | 2811 +++++++++++------------
 package.json                                    |   14 +-
 src/animation/basicTransition.ts                |    8 +-
 src/animation/customGraphicKeyframeAnimation.ts |    4 +-
 src/chart/bar/BaseBarSeries.ts                  |   40 +-
 src/chart/boxplot/boxplotVisual.ts              |   26 -
 src/chart/boxplot/install.ts                    |    4 +-
 src/chart/custom/CustomView.ts                  |   73 +-
 src/chart/gauge/GaugeSeries.ts                  |    8 +-
 src/chart/gauge/GaugeView.ts                    |   68 +-
 src/chart/graph/GraphView.ts                    |    3 +-
 src/chart/helper/Symbol.ts                      |   20 +-
 src/chart/line/helper.ts                        |    4 +-
 src/chart/map/MapSeries.ts                      |    2 +-
 src/chart/pie/PieSeries.ts                      |   28 +-
 src/chart/pie/labelLayout.ts                    |    4 +
 src/chart/pie/pieLayout.ts                      |   17 +-
 src/chart/sankey/sankeyLayout.ts                |    2 +-
 src/chart/sunburst/sunburstAction.ts            |    6 +-
 src/chart/sunburst/sunburstLayout.ts            |    3 +-
 src/chart/tree/TreeSeries.ts                    |    2 +-
 src/chart/treemap/TreemapSeries.ts              |    4 +-
 src/component/axis/AxisBuilder.ts               |    6 +-
 src/component/axis/CartesianAxisView.ts         |   15 +-
 src/component/axis/SingleAxisView.ts            |   15 +-
 src/component/dataZoom/DataZoomModel.ts         |    2 +-
 src/component/dataZoom/SliderZoomView.ts        |    3 +-
 src/component/legend/LegendModel.ts             |    8 +-
 src/component/legend/LegendView.ts              |    2 +-
 src/component/marker/MarkAreaView.ts            |   41 +-
 src/component/marker/MarkLineModel.ts           |    2 +-
 src/component/marker/MarkLineView.ts            |   10 +-
 src/component/marker/MarkPointModel.ts          |    4 +-
 src/component/marker/MarkPointView.ts           |    2 +-
 src/component/marker/markerHelper.ts            |    6 +-
 src/component/timeline/SliderTimelineView.ts    |   11 +-
 src/coord/CoordinateSystem.ts                   |    2 +
 src/coord/axisHelper.ts                         |    2 +-
 src/coord/cartesian/Grid.ts                     |    4 +-
 src/coord/geo/GeoModel.ts                       |    4 +-
 src/coord/geo/GeoSVGResource.ts                 |    2 +-
 src/coord/geo/fix/textCoord.ts                  |    2 +-
 src/coord/geo/geoCreator.ts                     |    9 +-
 src/coord/single/Single.ts                      |    2 +-
 src/coord/single/SingleAxis.ts                  |    2 -
 src/core/echarts.ts                             |    4 +-
 src/core/task.ts                                |    2 +-
 src/export/api.ts                               |    6 +-
 src/export/core.ts                              |    1 +
 src/layout/barPolar.ts                          |    2 +-
 src/model/Series.ts                             |    6 +-
 src/scale/Interval.ts                           |    3 +-
 src/scale/Log.ts                                |    7 +-
 src/util/graphic.ts                             |   12 +-
 src/util/log.ts                                 |    2 +-
 src/util/number.ts                              |   23 +-
 src/util/states.ts                              |    3 +-
 src/util/types.ts                               |    3 +-
 test/bar-markArea.html                          |  184 ++
 test/bar-race.html                              |    5 +
 test/custom-update.html                         |  229 ++
 test/dataView.html                              |    6 +-
 test/gauge-case.html                            |  151 +-
 test/gauge-simple.html                          |    3 +-
 test/logScale.html                              |   33 +-
 test/pie-coordinate-system.html                 |  381 +++
 test/pie-label.html                             |  155 +-
 test/pie-percent.html                           |   91 +
 test/pie3.html                                  |    6 +-
 test/runTest/actions/__meta__.json              |    4 +
 test/runTest/actions/custom-update.json         |    1 +
 test/runTest/actions/pie-label.json             |    1 +
 test/runTest/actions/symbol.json                |    1 +
 test/runTest/actions/timeline-case.json         |    1 +
 test/runTest/runtime/ActionPlayback.js          |    7 +-
 test/symbol.html                                |   72 +-
 test/timeline-case.html                         |  113 +
 theme/infographic.js                            |   10 +-
 theme/macarons.js                               |    8 +-
 theme/macarons2.js                              |  119 +-
 theme/shine.js                                  |    4 +-
 theme/tech-blue.js                              |    8 +-
 theme/tool/option/area.js                       |   16 +-
 theme/tool/option/bar.js                        |   32 +-
 theme/tool/option/graph.js                      |  472 ++--
 theme/tool/option/map.js                        |   28 +-
 theme/tool/option/pie.js                        |   20 +-
 110 files changed, 6889 insertions(+), 4581 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to