Skip to content

Commit d53ee79

Browse files
release: 0.4.4 (#202)
1 parent d578329 commit d53ee79

File tree

8 files changed

+43
-57
lines changed

8 files changed

+43
-57
lines changed

.changeset/afraid-chefs-melt.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/many-waves-hear.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pink-lizards-push.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/poor-ways-film.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/strange-hotels-build.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/unlucky-pumas-deliver.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# dom-accessibility-api changelog
22

3+
## 0.4.4
4+
5+
### Patch Changes
6+
7+
- [`e79f620`](https://github.com/eps1lon/dom-accessibility-api/commit/e79f6209667b3b2de656a73dec0eea37c65d48a9) [#208](https://github.com/eps1lon/dom-accessibility-api/pull/208) Thanks [@eps1lon](https://github.com/eps1lon)! - Add support for node 14
8+
9+
* [`2c6a23b`](https://github.com/eps1lon/dom-accessibility-api/commit/2c6a23b3ec3e514d7db631e393749fac0ab33b5b) [#200](https://github.com/eps1lon/dom-accessibility-api/pull/200) Thanks [@eps1lon](https://github.com/eps1lon)! - Add `module` field
10+
11+
- [`737dfae`](https://github.com/eps1lon/dom-accessibility-api/commit/737dfae2b88a4ce94d59144a6aabf69f0a671edc) [#234](https://github.com/eps1lon/dom-accessibility-api/pull/234) Thanks [@willamzv](https://github.com/willamzv)! - Consider `<legend>` for the name of its `<fieldset>` element.
12+
13+
```html
14+
<fieldset>
15+
<legend><em>my</em> fieldset</legend>
16+
</fieldset>
17+
```
18+
19+
Computing the name for this fieldset would've returned an empty string previously. It now correctly computes `my fieldset` following the [accessible name computation for `fieldset` elements](https://w3c.github.io/html-aam/#fieldset-and-legend-elements)
20+
21+
* [`969da7d`](https://github.com/eps1lon/dom-accessibility-api/commit/969da7d454b3d83dc7259d910f40e7e16a6eb560) [#240](https://github.com/eps1lon/dom-accessibility-api/pull/240) Thanks [@eps1lon](https://github.com/eps1lon)! - Reduce over-transpilation
22+
23+
Switched from
24+
25+
- `for-of` to `.forEach` or a basic `for` loop
26+
- `array.push(...otherArray)` to `push.apply(array, otherArray)`
27+
28+
This removed a bunch of babel junk that wasn't needed.
29+
30+
- [`d578329`](https://github.com/eps1lon/dom-accessibility-api/commit/d5783292ca49ae947bd95559030aa2c93c04565f) [#248](https://github.com/eps1lon/dom-accessibility-api/pull/248) Thanks [@eps1lon](https://github.com/eps1lon)! - Consider `<caption>` for the name of its `<table>` element.
31+
32+
```html
33+
<table>
34+
<caption>
35+
<em>my</em>
36+
table
37+
</caption>
38+
</table>
39+
```
40+
41+
Computing the name for this table would've returned an empty string previously. It now correctly computes `my table` following the [accessible name computation for `table` elements](https://w3c.github.io/html-aam/#table-element)
42+
43+
* [`f1b2bd0`](https://github.com/eps1lon/dom-accessibility-api/commit/f1b2bd0434cafe65812acfb0e3a2942309eb9726) [#237](https://github.com/eps1lon/dom-accessibility-api/pull/237) Thanks [@eps1lon](https://github.com/eps1lon)! - Use nodeType and tagName for element type checks
44+
345
## 0.4.3
446

547
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dom-accessibility-api",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"main": "dist/index.js",
55
"module": "dist/index.mjs",
66
"type": "commonjs",

0 commit comments

Comments
 (0)