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

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


    from a861bef15 Merge pull request #19937 from apache/master
     add aaa2a48b9 feat: barSeries.startValue added
     add 7eae8148b extra testcases added
     add 323eca770 feat: rewrite changes to make dataZoom work
     add f74ede1e6 fix: fix the build bug caused by changes
     add 0d3a28962 fix: fix the build bug caused by changes
     add 0e862ce71 Merge branch 'issue#17077' of 
https://github.com/jiawulin001/echarts into issue#17077
     add a4db0d4f7 Merge pull request #17078 from jiawulin001/issue#17077
     add 71541f85a fix: In users' .d.ts `import('echarts/types/dist/shared')` 
can not visit `'echarts/types/dist/shared.d.ts'` since v5.5.0. Fix it. Fix 
#19663.
     add 57b8c9752 feat(treemap): add scaleLimit to limit the zooming. close 
#14599
     add 8921fec4b feat(treemap): add scaleLimit to limit the zooming. close 
#14599
     add 9f1d4fb14 fix: prototype _onZoom not effect
     add 0c5d5e791 feat(treemap):remove coordinateSystem
     add 4f0bb6527 feat(treemap): add scaleLimit with controllerHost
     add b0f77e880 feat(treemap): onZoom without controllerHost
     add 4dbfcfaa5 fix: custom onZoom
     add 91680313c feat(treemap): reset zoom when chart restore
     add 4b2d52fd0 Merge pull request #18304 from liuyizhou/fix-14599
     add a20948618 Merge branch 'master' into fix/ts-type-visibility
     add b61f6c028 Merge pull request #20030 from apache/fix/ts-type-visibility
     add 7faa2e176 test(treemap): update test case for #18304
     add 0ee94981f test(treemap): record test visual action for #18304
     add 0ab5f7264 Merge pull request #20020 from apache/feat-treemap-test
     add 0c013fe71 feat(axis): custom axis tick/label positions. close #13627
     add 952fa4523 chore: merge
     add 0c908241d fix: fix failed test cases and improve code
     add a2824713a Merge pull request #19919 from apache/dvdkon-fix-13627
     add 562889eed chore(workflow): use forked workflow deps for timely update 
& fix typo
     add 40c2870d3 Merge pull request #20051 from apache/wokflow-deps
     add d3d974f7c feat: add role region to div tag when aria: true
     add b15b918b1 fix: change ARIA role from region to img for accessibility
     add 64539fed9 refactor: move dom.setAttribute('role', 'img') to reduce 
duplication
     add 32eeb07c7 Merge pull request #20050 from ViniciusCestarii/aria-role
     add 955762035 Merge pull request #20037 from apache/master
     add ca9ed741e chore: release 5.6.0
     add 486f24f6d change version from 5.6.0 to 5.5.1
     add 4c015dd9f chore(deps-dev): bump ws from 7.5.7 to 7.5.10
     add 9d2bab0ea Merge pull request #20044 from 
apache/dependabot/npm_and_yarn/ws-7.5.10
     add ad947d661 fix(tooltip): fix tooltip XSS issue when legend name is HTML 
string
     add c1727a65f refactor(tooltip): add `encodeHTMLContent` option to specify 
whether the content should be encoded by default
     add 62210761d test(tooltip): update test case for tooltip xss
     add efa3e5a8e Merge pull request #20045 from apache/fix/tooltip-xss
     add 34889d934 build release
     add 2caf68489 Merge pull request #20039 from apache/release-dev
     add a6d046302 Merge pull request #20084 from apache/release
     add 369cb0350 fix(custom): grid area clipping in custom series #19993 
(#20043)
     new fdf2e4dcc Merge pull request #20100 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/pr-preview.yml               |   7 +-
 .github/workflows/teardown-pr-preview.yml      |   2 +-
 dist/echarts.common.js                         | 114 ++++++++++---
 dist/echarts.common.js.map                     |   2 +-
 dist/echarts.common.min.js                     |   4 +-
 dist/echarts.esm.js                            | 157 ++++++++++++++---
 dist/echarts.esm.js.map                        |   2 +-
 dist/echarts.esm.min.js                        |   4 +-
 dist/echarts.esm.min.mjs                       |   4 +-
 dist/echarts.esm.mjs                           | 157 ++++++++++++++---
 dist/echarts.esm.mjs.map                       |   2 +-
 dist/echarts.js                                | 157 ++++++++++++++---
 dist/echarts.js.map                            |   2 +-
 dist/echarts.min.js                            |   4 +-
 dist/echarts.simple.js                         |  90 ++++++++--
 dist/echarts.simple.js.map                     |   2 +-
 dist/echarts.simple.min.js                     |   4 +-
 package-lock.json                              |  30 ++--
 package.README.md                              |   5 +-
 package.json                                   |  12 +-
 src/chart/bar/BarSeries.ts                     |   2 +
 src/chart/helper/createClipPathFromCoordSys.ts |   2 +-
 src/chart/treemap/TreemapSeries.ts             |   8 +
 src/chart/treemap/TreemapView.ts               |  43 ++++-
 src/component/tooltip/TooltipView.ts           |  14 +-
 src/coord/axisCommonTypes.ts                   |  10 +-
 src/coord/axisTickLabelBuilder.ts              |  32 ++++
 src/coord/scaleRawExtentInfo.ts                |   6 +-
 src/core/echarts.ts                            |   4 +-
 src/layout/barGrid.ts                          |  19 ++-
 src/layout/barPolar.ts                         |   6 +-
 src/util/graphic.ts                            |   2 +-
 src/util/types.ts                              |   6 +
 src/visual/aria.ts                             |   2 +
 test/axis-customTicks.html                     | 202 ++++++++++++++++++++++
 test/bar-startValue.html                       | 225 +++++++++++++++++++++++++
 test/clip-custom.html                          | 127 ++++++++++++++
 test/runTest/actions/__meta__.json             |   3 +-
 test/runTest/actions/tooltip.json              |   2 +-
 test/runTest/actions/treemap-scaleLimit.json   |   1 +
 test/tooltip.html                              |  76 ++++++---
 test/treemap-scaleLimit.html                   | 185 ++++++++++++++++++++
 42 files changed, 1556 insertions(+), 182 deletions(-)
 create mode 100644 test/axis-customTicks.html
 create mode 100644 test/bar-startValue.html
 create mode 100644 test/clip-custom.html
 create mode 100644 test/runTest/actions/treemap-scaleLimit.json
 create mode 100644 test/treemap-scaleLimit.html


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

Reply via email to