@markuplint/html-spec 2.0.0-alpha.0 → 2.0.0-dev.2021117.0

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/index.json CHANGED
@@ -16670,15 +16670,19 @@
16670
16670
  "roles": true,
16671
16671
  "conditions": [
16672
16672
  {
16673
- "condition": ":closest(table[role=table], table[role=grid], table[role=treegrid])",
16673
+ "condition": ":closest(table, table[role=table], table[role=grid], table[role=treegrid])",
16674
16674
  "roles": false
16675
16675
  }
16676
16676
  ]
16677
16677
  },
16678
16678
  "implicitRole": {
16679
16679
  "summary": "cell if a descendant of a <table> element",
16680
- "role": "cell",
16680
+ "role": false,
16681
16681
  "conditions": [
16682
+ {
16683
+ "condition": ":closest(table, table[role=table])",
16684
+ "role": "cell"
16685
+ },
16682
16686
  {
16683
16687
  "condition": ":closest(table[role=grid], table[role=treegrid])",
16684
16688
  "role": "gridcell"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "2.0.0-alpha.0",
3
+ "version": "2.0.0-dev.2021117.0",
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>",
@@ -24,7 +24,7 @@
24
24
  "node-fetch": "2"
25
25
  },
26
26
  "dependencies": {
27
- "@markuplint/ml-spec": "^2.0.0-alpha.0"
27
+ "@markuplint/ml-spec": "2.0.0-dev.20211115.0"
28
28
  },
29
- "gitHead": "2e5b7e616411588b01c098deb35c6aa0470dfadb"
29
+ "gitHead": "b872c1ffbb2a6a05209ac48d851eb8c2e21b5830"
30
30
  }
@@ -3,14 +3,18 @@
3
3
  "roles": true,
4
4
  "conditions": [
5
5
  {
6
- "condition": ":closest(table[role=table], table[role=grid], table[role=treegrid])",
6
+ "condition": ":closest(table, table[role=table], table[role=grid], table[role=treegrid])",
7
7
  "roles": false
8
8
  }
9
9
  ]
10
10
  },
11
11
  "implicitRole": {
12
- "role": "cell",
12
+ "role": false,
13
13
  "conditions": [
14
+ {
15
+ "condition": ":closest(table, table[role=table])",
16
+ "role": "cell"
17
+ },
14
18
  {
15
19
  "condition": ":closest(table[role=grid], table[role=treegrid])",
16
20
  "role": "gridcell"