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

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

commit f996884b0b8a371da677e7bbeb30b977eba2d35a
Merge: 18b361adf 6b8fae82e
Author: Wenli Zhang <[email protected]>
AuthorDate: Tue Jan 23 14:00:40 2024 +0800

    Merge pull request #19532 from apache/master
    
    Merge master to release for v5.5.0

 .eslintrc-common.yaml                              |    2 +-
 .github/workflows/.scripts/update-notice-year.js   |   93 ++
 .github/workflows/ci.yml                           |    8 +-
 .github/workflows/nightly-next.yml                 |    4 +-
 .github/workflows/nightly.yml                      |    4 +-
 .github/workflows/source-release.yml               |   11 +-
 .github/workflows/update-notice-year.yml           |   24 +
 .gitignore                                         |    4 +
 .npmignore                                         |    1 +
 NOTICE                                             |    4 +-
 build/build.js                                     |    6 +
 build/config.js                                    |   18 +-
 build/package.json                                 |    3 +
 build/pre-publish.js                               |   51 +-
 build/template/ssr/client/index.d.ts               |   20 +
 build/template/ssr/client/index.js                 |   20 +
 dist/package.json                                  |    3 +
 i18n/package.json                                  |    3 +
 package-lock.json                                  |  807 +++++++------
 package.json                                       |   53 +-
 src/animation/universalTransition.ts               |  174 ++-
 src/chart/bar/BaseBarSeries.ts                     |    7 +-
 src/chart/bar/PictorialBarSeries.ts                |    6 +
 src/chart/bar/PictorialBarView.ts                  |   13 +
 src/chart/graph/GraphSeries.ts                     |    2 +-
 src/chart/graph/GraphView.ts                       |    8 +-
 src/chart/helper/createClipPathFromCoordSys.ts     |   10 +-
 src/chart/line/LineView.ts                         |    2 +-
 src/chart/pie/PieSeries.ts                         |    5 +
 src/chart/pie/pieLayout.ts                         |   92 +-
 src/chart/scatter/ScatterView.ts                   |    9 +-
 src/chart/sunburst/SunburstPiece.ts                |   46 +-
 src/component/axis/AngleAxisView.ts                |   13 +-
 src/component/axis/AxisBuilder.ts                  |   40 +-
 src/component/axis/RadiusAxisView.ts               |   12 +-
 src/component/legend/LegendView.ts                 |   20 +-
 src/component/toolbox/ToolboxView.ts               |   10 +-
 src/component/toolbox/featureManager.ts            |    4 +
 src/component/tooltip/TooltipHTMLContent.ts        |   67 +-
 src/component/tooltip/TooltipModel.ts              |   12 +-
 src/component/tooltip/TooltipView.ts               |    6 +-
 src/component/tooltip/seriesFormatTooltip.ts       |    8 +-
 src/component/tooltip/tooltipMarkup.ts             |   25 +-
 src/component/visualMap/ContinuousView.ts          |   23 +-
 src/coord/CoordinateSystem.ts                      |    2 +-
 src/coord/axisCommonTypes.ts                       |   11 +-
 src/coord/cartesian/Cartesian2D.ts                 |   12 +-
 src/coord/polar/AxisModel.ts                       |    1 +
 src/coord/polar/polarCreator.ts                    |    3 +-
 src/core/echarts.ts                                |   34 +-
 src/core/locale.ts                                 |    2 +-
 src/data/Source.ts                                 |    2 +-
 src/data/helper/sourceHelper.ts                    |    2 +-
 src/export/core.ts                                 |   43 +-
 src/i18n/langAR.ts                                 |  147 +++
 src/i18n/langCS.ts                                 |    4 +-
 src/i18n/langDE.ts                                 |    4 +-
 src/i18n/langEN.ts                                 |    4 +-
 src/i18n/langES.ts                                 |   60 +
 src/i18n/langFI.ts                                 |   60 +
 src/i18n/langFR.ts                                 |    4 +-
 src/i18n/langHU.ts                                 |    4 +-
 src/i18n/langIT.ts                                 |    4 +-
 src/i18n/langJA.ts                                 |    4 +-
 src/i18n/langKO.ts                                 |    4 +-
 src/i18n/langNL.ts                                 |  144 +++
 src/i18n/langPL.ts                                 |    4 +-
 src/i18n/langPT-br.ts                              |    4 +-
 src/i18n/langRO.ts                                 |    4 +-
 src/i18n/langRU.ts                                 |    4 +-
 src/i18n/langSI.ts                                 |    4 +-
 src/i18n/langTH.ts                                 |   60 +
 src/i18n/langTR.ts                                 |    4 +-
 src/i18n/langUK.ts                                 |    4 +-
 src/i18n/langVI.ts                                 |    4 +-
 src/i18n/langZH.ts                                 |    4 +-
 src/label/labelGuideHelper.ts                      |    4 +-
 src/model/mixin/dataFormat.ts                      |    2 +
 src/processor/dataSample.ts                        |   18 +-
 src/util/format.ts                                 |    8 +-
 src/util/graphic.ts                                |    2 +-
 src/util/innerStore.ts                             |    6 +
 src/util/states.ts                                 |   32 +-
 src/util/types.ts                                  |   12 +-
 src/visual/aria.ts                                 |    3 +-
 ssr/client/dist/index.js                           |  106 ++
 ssr/client/dist/index.js.map                       |    1 +
 ssr/client/dist/package.json                       |    3 +
 ssr/client/src/.eslintrc.yaml                      |   48 +
 ssr/client/src/index.ts                            |   94 ++
 test/axis-align-lastLabel.html                     |  150 +++
 test/clip-line-cap.html                            |   93 ++
 test/clip.html                                     |    8 +-
 test/clip2.html                                    |  157 +++
 test/dataset-source-two-typed-array.html           |  271 +++++
 test/graph-case.html                               |   57 +-
 test/lib/config.js                                 |    1 +
 test/lib/testHelper.js                             |    3 +
 test/line-sampling.html                            |  113 ++
 test/manual-svg-color-bug-202311.html              |  184 +++
 test/markArea.html                                 |  308 ++++-
 test/package.json                                  |    3 +
 test/pictorial-single.html                         |  101 ++
 test/pie-endAngle.html                             |   90 ++
 test/pie-pad-angle.html                            |  133 +++
 test/polar-end-angle.html                          |   85 ++
 test/roseType-labeline.html                        |  120 ++
 test/runTest/actions/__meta__.json                 |    9 +-
 test/runTest/actions/clip2.json                    |    1 +
 test/runTest/actions/graph-case.json               |    2 +-
 test/runTest/actions/pie-endAngle.json             |    1 +
 test/runTest/actions/roseType-labeline.json        |    1 +
 test/runTest/actions/tooltip-opacity.json          |    1 +
 .../actions/visualMap-multi-continuous.json        |    1 +
 test/ssr.html                                      |  208 ++++
 test/sunburst-label-align.html                     | 1197 ++++++++++++++++++++
 test/sunburst-label.html                           |    7 +-
 test/svg-ssr.html                                  |   38 +-
 test/toolbox-textStyle.html                        |  122 +-
 test/tooltip-appendTo.html                         |  550 +++++++++
 test/tooltip-opacity.html                          |  144 +++
 test/tooltip-valueFormatter.html                   |   39 +-
 test/universalTransition-multiLevelDrillDown.html  |  476 ++++++++
 test/visualMap-multi-continuous.html               |  319 ++++++
 theme/package.json                                 |    3 +
 tsconfig.json                                      |    1 +
 126 files changed, 7001 insertions(+), 739 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to