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

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


    from 0c82ead72 Merge pull request #17716 from apache/master
     add 96f859c92 fix: #17667 EChartsInitOpts type error about height and width
     add db0f92abd Merge pull request #17727 from MainHou/master
     add 049533132 chore: fix some typos
     add a80fec3f8 fix(pie): fix percent isn't updated when the legend is 
changed
     add 8c8a1a2b8 refactor(pie): mount `seats` on data inner
     add a840d4639 Merge pull request #17734 from apache/fix/pie-percent
     add e79b4d40a Fix spelling mistake 'unkown' to 'unknown'
     add 672c7240b Merge pull request #17750 from 
mountainash/fix/unkown-spelling
     add d7ff8c564 chore: update deprecated nodejs v12 in favor of v16 and 
update action dependency version.
     add c61494fcf Merge pull request #17764 from apache/action-node-version
     add 069b69295 fix: incorrect dataGroupId for old data items in 
universalTransition (#17559)
     add 3f093f715 feat(sankey): `sankey` support `edgeLabel`
     add ed36fbd8f feat(sankey): set edge style to sankeyVisual
     add 69ec4c85d Merge branch 'master' into 7233
     add 1a23b9da6 feat(sankey): `edgeLabel` only supports `inside`
     add 79dffe615 Merge pull request #16767 from susiwen8/7233
     add 28812d168 chore: fix some typos
     add 788e09112 Merge pull request #17776 from striezel-stash/fix-typos
     add 728cf4e81 feat(candlestick): provide borderColorDoji option for custom 
doji color
     add 004c3fa90 Merge pull request #17717 from apache/fix-11042
     add 5cdbdd2de chore: fix a few typos
     add 06ccd5c3d Merge pull request #17782 from striezel-stash/fix-typos
     add 5309444d6 chore(workflow): always install the latest nightly version 
of zrender when publishing nightly echarts
     add cd7ec4cc6 fix(nightly-build): update echarts & zrender version to real 
nightly version
     add 5d6910f30 Merge pull request #17779 from apache/nightly-build
     new 7a12c0ba8 Merge pull request #17796 from apache/master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci.yml                           |   4 +-
 .github/workflows/nightly-next.yml                 |  11 +-
 .github/workflows/nightly.yml                      |  11 +-
 .github/workflows/source-release.yml               |  28 +--
 .github/workflows/stale.yml                        |   2 +-
 .../actions/update.js => build/nightly/post.js     |  22 +-
 build/{prepareNightly.js => nightly/prepare.js}    |   7 +-
 src/animation/customGraphicTransition.ts           |   6 +-
 src/animation/universalTransition.ts               |  49 +++--
 src/chart/candlestick/CandlestickSeries.ts         |   2 +
 src/chart/candlestick/CandlestickView.ts           |  13 +-
 src/chart/candlestick/candlestickLayout.ts         |  37 +++-
 src/chart/candlestick/candlestickVisual.ts         |   6 +-
 src/chart/lines/LinesSeries.ts                     |   2 +-
 src/chart/pie/PieSeries.ts                         |  35 ++--
 src/chart/sankey/SankeySeries.ts                   |  10 +
 src/chart/sankey/SankeyView.ts                     |  10 +
 src/chart/sankey/sankeyVisual.ts                   |   9 +-
 src/component/dataZoom/roams.ts                    |   4 +-
 src/component/helper/MapDraw.ts                    |   4 +-
 src/coord/View.ts                                  |   4 +-
 src/coord/axisHelper.ts                            |   2 +-
 src/coord/geo/GeoSVGResource.ts                    |   2 +-
 src/coord/geo/Region.ts                            |   2 +-
 src/core/CoordinateSystem.ts                       |   4 +-
 src/core/Scheduler.ts                              |  16 +-
 src/core/echarts.ts                                |  38 ++--
 src/core/impl.ts                                   |   4 +-
 src/core/task.ts                                   |   6 +-
 src/data/DataStore.ts                              |   2 +-
 src/data/SeriesData.ts                             |  44 ++--
 src/data/helper/SeriesDataSchema.ts                |   4 +-
 src/data/helper/transform.ts                       |   8 +-
 src/export/api.ts                                  |   4 +-
 src/export/api/helper.ts                           |  12 +-
 src/export/charts.ts                               |   4 +-
 src/layout/barGrid.ts                              |   2 +-
 src/model/Component.ts                             |   8 +-
 src/model/Global.ts                                |  14 +-
 src/model/Model.ts                                 |   2 +-
 src/model/OptionManager.ts                         |  16 +-
 src/model/Series.ts                                |  10 +-
 src/model/internalComponentCreator.ts              |   6 +-
 src/model/mixin/dataFormat.ts                      |   4 +-
 src/scale/Interval.ts                              |   4 +-
 src/scale/Time.ts                                  |  10 +-
 src/util/types.ts                                  |   2 +-
 src/view/Chart.ts                                  |   2 +-
 src/view/Component.ts                              |   2 +-
 src/visual/VisualMapping.ts                        |   4 +-
 src/visual/aria.ts                                 |   2 +-
 src/visual/helper.ts                               |   4 +-
 src/visual/style.ts                                |   4 +-
 test/candlestick-doji.html                         | 223 ++++++++++++++++++---
 test/pie-percent.html                              | 126 +++++++++++-
 test/runTest/actions/__meta__.json                 |   1 +
 test/runTest/actions/pie-percent.json              |   1 +
 test/sankey-depth.html                             |   5 +
 test/universalTransition2.html                     |   2 +-
 59 files changed, 632 insertions(+), 250 deletions(-)
 copy test/runTest/actions/update.js => build/nightly/post.js (57%)
 rename build/{prepareNightly.js => nightly/prepare.js} (95%)
 create mode 100644 test/runTest/actions/pie-percent.json


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

Reply via email to