Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: merge master into next #20100

Merged
merged 45 commits into from
Jul 1, 2024
Merged
Changes from 4 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
0c013fe
feat(axis): custom axis tick/label positions. close #13627
dvdkon Nov 17, 2020
aaa2a48
feat: barSeries.startValue added
jiawulin001 May 21, 2022
7eae814
extra testcases added
jiawulin001 Jun 13, 2022
323eca7
feat: rewrite changes to make dataZoom work
jiawulin001 Jun 14, 2022
0d3a289
fix: fix the build bug caused by changes
jiawulin001 Jun 14, 2022
f74ede1
fix: fix the build bug caused by changes
jiawulin001 Jun 14, 2022
0e862ce
Merge branch 'issue#17077' of https://github.com/jiawulin001/echarts …
jiawulin001 Jun 14, 2022
57b8c97
feat(treemap): add scaleLimit to limit the zooming. close #14599
Feb 23, 2023
8921fec
feat(treemap): add scaleLimit to limit the zooming. close #14599
Apr 11, 2023
9f1d4fb
fix: prototype _onZoom not effect
Apr 20, 2023
0c5d5e7
feat(treemap):remove coordinateSystem
Apr 21, 2023
4f0bb65
feat(treemap): add scaleLimit with controllerHost
Apr 21, 2023
b0f77e8
feat(treemap): onZoom without controllerHost
Apr 21, 2023
4dbfcfa
fix: custom onZoom
Apr 25, 2023
9168031
feat(treemap): reset zoom when chart restore
May 4, 2023
952fa45
chore: merge
Ovilia May 10, 2024
0c90824
fix: fix failed test cases and improve code
Ovilia May 10, 2024
a4db0d4
Merge pull request #17078 from jiawulin001/issue#17077
Ovilia May 21, 2024
4b2d52f
Merge pull request #18304 from liuyizhou/fix-14599
Ovilia Jun 11, 2024
7faa2e1
test(treemap): update test case for #18304
Ovilia Jun 11, 2024
0ee9498
test(treemap): record test visual action for #18304
Ovilia Jun 11, 2024
71541f8
fix: In users' .d.ts `import('echarts/types/dist/shared')` can not vi…
100pah Jun 13, 2024
a209486
Merge branch 'master' into fix/ts-type-visibility
100pah Jun 13, 2024
b61f6c0
Merge pull request #20030 from apache/fix/ts-type-visibility
Ovilia Jun 14, 2024
0ab5f72
Merge pull request #20020 from apache/feat-treemap-test
pissang Jun 17, 2024
a282471
Merge pull request #19919 from apache/dvdkon-fix-13627
pissang Jun 17, 2024
9557620
Merge pull request #20037 from apache/master
pissang Jun 17, 2024
ca9ed74
chore: release 5.6.0
pissang Jun 17, 2024
486f24f
change version from 5.6.0 to 5.5.1
pissang Jun 18, 2024
4c015dd
chore(deps-dev): bump ws from 7.5.7 to 7.5.10
dependabot[bot] Jun 18, 2024
ad947d6
fix(tooltip): fix tooltip XSS issue when legend name is HTML string
plainheart Jun 18, 2024
9d2bab0
Merge pull request #20044 from apache/dependabot/npm_and_yarn/ws-7.5.10
plainheart Jun 18, 2024
c1727a6
refactor(tooltip): add `encodeHTMLContent` option to specify whether …
plainheart Jun 19, 2024
6221076
test(tooltip): update test case for tooltip xss
plainheart Jun 19, 2024
efa3e5a
Merge pull request #20045 from apache/fix/tooltip-xss
plainheart Jun 19, 2024
34889d9
build release
pissang Jun 19, 2024
2caf684
Merge pull request #20039 from apache/release-dev
pissang Jun 19, 2024
d3d974f
feat: add role region to div tag when aria: true
ViniciusCestarii Jun 19, 2024
562889e
chore(workflow): use forked workflow deps for timely update & fix typo
plainheart Jun 20, 2024
40c2870
Merge pull request #20051 from apache/wokflow-deps
Ovilia Jun 20, 2024
b15b918
fix: change ARIA role from region to img for accessibility
ViniciusCestarii Jun 20, 2024
64539fe
refactor: move dom.setAttribute('role', 'img') to reduce duplication
ViniciusCestarii Jun 21, 2024
32eeb07
Merge pull request #20050 from ViniciusCestarii/aria-role
Ovilia Jun 24, 2024
a6d0463
Merge pull request #20084 from apache/release
plainheart Jun 27, 2024
369cb03
fix(custom): grid area clipping in custom series #19993 (#20043)
fandi-1205 Jun 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/visual/aria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ export default function ariaVisual(ecModel: GlobalModel, api: ExtensionAPI) {
return;
}

dom.setAttribute('role', 'img');

if (labelModel.get('description')) {
dom.setAttribute('aria-label', labelModel.get('description'));
return;
Expand Down
Loading