@markuplint/html-spec 5.0.0-alpha.0 → 5.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-alpha.1](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.0...v5.0.0-alpha.1) (2026-02-22)
7
+
8
+ ### Features
9
+
10
+ - **html-spec:** add conditional aside role mapping for ARIA 1.3 ([f3315b7](https://github.com/markuplint/markuplint/commit/f3315b7352d17308c8d6edfc0831da3cb33a0922))
11
+
6
12
  # [5.0.0-alpha.0](https://github.com/markuplint/markuplint/compare/v4.14.1...v5.0.0-alpha.0) (2026-02-20)
7
13
 
8
14
  ### Bug Fixes
package/index.json CHANGED
@@ -48976,7 +48976,22 @@
48976
48976
  },
48977
48977
  "aria": {
48978
48978
  "implicitRole": "complementary",
48979
- "permittedRoles": ["feed", "none", "note", "presentation", "region", "search"]
48979
+ "permittedRoles": ["feed", "none", "note", "presentation", "region", "search"],
48980
+ "conditions": {
48981
+ ":is(article, aside, nav, section, blockquote, details, dialog, fieldset, figure, td) *": {
48982
+ "implicitRole": "generic",
48983
+ "namingProhibited": true
48984
+ },
48985
+ ":is(article, aside, nav, section, blockquote, details, dialog, fieldset, figure, td) *:aria(has name)": {
48986
+ "implicitRole": "complementary"
48987
+ }
48988
+ },
48989
+ "1.2": {
48990
+ "conditions": false
48991
+ },
48992
+ "1.1": {
48993
+ "conditions": false
48994
+ }
48980
48995
  },
48981
48996
  "omission": false,
48982
48997
  "globalAttrs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "5.0.0-alpha.0",
3
+ "version": "5.0.0-alpha.1",
4
4
  "description": "A specification of HTML Living Standard for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -29,12 +29,12 @@
29
29
  "gen:prettier": "npx prettier --write index.json"
30
30
  },
31
31
  "devDependencies": {
32
- "@markuplint/spec-generator": "5.0.0-alpha.0",
33
- "@markuplint/test-tools": "5.0.0-alpha.0",
32
+ "@markuplint/spec-generator": "5.0.0-alpha.1",
33
+ "@markuplint/test-tools": "5.0.0-alpha.1",
34
34
  "jsonc-parser": "3.3.1"
35
35
  },
36
36
  "dependencies": {
37
- "@markuplint/ml-spec": "5.0.0-alpha.0"
37
+ "@markuplint/ml-spec": "5.0.0-alpha.1"
38
38
  },
39
- "gitHead": "13dcfc84ec83d87360c720e253383b60767e1b56"
39
+ "gitHead": "78a295e73a097a1ce09c777c06fa21ab68136387"
40
40
  }