@markuplint/html-spec 2.0.0-dev.20211227.0 → 2.0.0-dev.20220112.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.
Files changed (42) hide show
  1. package/index.json +16 -6
  2. package/package.json +3 -3
  3. package/src/aria-in-html/abbr.json +8 -0
  4. package/src/aria-in-html/address.json +8 -0
  5. package/src/aria-in-html/b.json +8 -0
  6. package/src/aria-in-html/base.json +8 -0
  7. package/src/aria-in-html/bdi.json +8 -0
  8. package/src/aria-in-html/bdo.json +8 -0
  9. package/src/aria-in-html/blockquote.json +8 -0
  10. package/src/aria-in-html/canvas.json +8 -0
  11. package/src/aria-in-html/caption.json +8 -0
  12. package/src/aria-in-html/cite.json +8 -0
  13. package/src/aria-in-html/code.json +8 -0
  14. package/src/aria-in-html/data.json +8 -0
  15. package/src/aria-in-html/del.json +8 -0
  16. package/src/aria-in-html/div.json +8 -0
  17. package/src/aria-in-html/em.json +8 -0
  18. package/src/aria-in-html/hgroup.json +8 -0
  19. package/src/aria-in-html/i.json +8 -0
  20. package/src/aria-in-html/ins.json +8 -0
  21. package/src/aria-in-html/kbd.json +8 -0
  22. package/src/aria-in-html/mark.json +8 -0
  23. package/src/aria-in-html/p.json +8 -0
  24. package/src/aria-in-html/pre.json +8 -0
  25. package/src/aria-in-html/q.json +8 -0
  26. package/src/aria-in-html/rp.json +8 -0
  27. package/src/aria-in-html/rt.json +8 -0
  28. package/src/aria-in-html/ruby.json +8 -0
  29. package/src/aria-in-html/s.json +8 -0
  30. package/src/aria-in-html/samp.json +8 -0
  31. package/src/aria-in-html/small.json +8 -0
  32. package/src/aria-in-html/span.json +8 -0
  33. package/src/aria-in-html/strong.json +8 -0
  34. package/src/aria-in-html/sub.json +8 -0
  35. package/src/aria-in-html/sup.json +8 -0
  36. package/src/aria-in-html/time.json +8 -0
  37. package/src/aria-in-html/u.json +8 -0
  38. package/src/aria-in-html/var.json +8 -0
  39. package/src/aria-in-html/wbr.json +8 -0
  40. package/src/attributes/abbr.json +11 -0
  41. package/src/attributes/hgroup.json +11 -0
  42. package/src/attributes/math.json +8 -0
package/index.json CHANGED
@@ -10592,7 +10592,12 @@
10592
10592
  "role": false
10593
10593
  },
10594
10594
  "omittion": false,
10595
- "globalAttrs": {},
10595
+ "globalAttrs": {
10596
+ "#ARIAAttrs": true,
10597
+ "#DocumentElementEventAttrs": true,
10598
+ "#GlobalEventAttrs": true,
10599
+ "#HTMLGlobalAttrs": true
10600
+ },
10596
10601
  "attributes": {}
10597
10602
  },
10598
10603
  {
@@ -13024,7 +13029,12 @@
13024
13029
  "role": false
13025
13030
  },
13026
13031
  "omittion": false,
13027
- "globalAttrs": {},
13032
+ "globalAttrs": {
13033
+ "#ARIAAttrs": true,
13034
+ "#DocumentElementEventAttrs": true,
13035
+ "#GlobalEventAttrs": true,
13036
+ "#HTMLGlobalAttrs": true
13037
+ },
13028
13038
  "attributes": {}
13029
13039
  },
13030
13040
  {
@@ -22504,28 +22514,28 @@
22504
22514
  "attributes": {
22505
22515
  "x1": {
22506
22516
  "ref": "https://svgwg.org/svg2-draft/pservers.html#LinearGradientElementX1Attribute",
22507
- "description": "This attribute defines the x coordinate of the starting point of the vector gradient along which the linear gradient is drawn. Value type: <length> ; Default value: 0%; Animatable: yes",
22517
+ "description": "This attribute defines the x coordinate of the starting point of the vector gradient along which the linear gradient is drawn. Value type: <length-percentage> | <number>; Default value: 0%; Animatable: yes",
22508
22518
  "type": ["<svg-length>", "<percentage>"],
22509
22519
  "defaultValue": "0%",
22510
22520
  "animatable": true
22511
22521
  },
22512
22522
  "y1": {
22513
22523
  "ref": "https://svgwg.org/svg2-draft/pservers.html#LinearGradientElementY1Attribute",
22514
- "description": "This attribute defines the y coordinate of the starting point of the vector gradient along which the linear gradient is drawn. Value type: <length> ; Default value: 0%; Animatable: yes",
22524
+ "description": "This attribute defines the y coordinate of the starting point of the vector gradient along which the linear gradient is drawn. Value type: <length-percentage> | <number>; Default value: 0%; Animatable: yes",
22515
22525
  "type": ["<svg-length>", "<percentage>"],
22516
22526
  "defaultValue": "0%",
22517
22527
  "animatable": true
22518
22528
  },
22519
22529
  "x2": {
22520
22530
  "ref": "https://svgwg.org/svg2-draft/pservers.html#LinearGradientElementX2Attribute",
22521
- "description": "This attribute defines the x coordinate of the ending point of the vector gradient along which the linear gradient is drawn. Value type: <length> ; Default value: 100%; Animatable: yes",
22531
+ "description": "This attribute defines the x coordinate of the ending point of the vector gradient along which the linear gradient is drawn. Value type: <length-percentage> | <number>; Default value: 100%; Animatable: yes",
22522
22532
  "type": ["<svg-length>", "<percentage>"],
22523
22533
  "defaultValue": "100%",
22524
22534
  "animatable": true
22525
22535
  },
22526
22536
  "y2": {
22527
22537
  "ref": "https://svgwg.org/svg2-draft/pservers.html#LinearGradientElementY2Attribute",
22528
- "description": "This attribute defines the y coordinate of the ending point of the vector gradient along which the linear gradient is drawn. Value type: <length> ; Default value: 0%; Animatable: yes",
22538
+ "description": "This attribute defines the y coordinate of the ending point of the vector gradient along which the linear gradient is drawn. Value type: <length-percentage> | <number>; Default value: 0%; Animatable: yes",
22529
22539
  "type": ["<svg-length>", "<percentage>"],
22530
22540
  "defaultValue": "0%",
22531
22541
  "animatable": true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "2.0.0-dev.20211227.0",
3
+ "version": "2.0.0-dev.20220112.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>",
@@ -26,7 +26,7 @@
26
26
  "node-fetch": "2"
27
27
  },
28
28
  "dependencies": {
29
- "@markuplint/ml-spec": "2.0.0-dev.20211227.0"
29
+ "@markuplint/ml-spec": "2.0.0-dev.20220112.0"
30
30
  },
31
- "gitHead": "20dec43c2303645a8c49cc409900a67cc9ce2a9d"
31
+ "gitHead": "3c49355372683eaac471c753374fba55b35ca59f"
32
32
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "permittedRoles": {
3
+ "roles": true
4
+ },
5
+ "implicitRole": {
6
+ "role": false
7
+ }
8
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "tag": "abbr",
3
+ "ref": "https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-abbr-element",
4
+ "global": {
5
+ "#HTMLGlobalAttrs": true,
6
+ "#GlobalEventAttrs": true,
7
+ "#DocumentElementEventAttrs": true,
8
+ "#ARIAAttrs": true
9
+ },
10
+ "attributes": {}
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "tag": "hgroup",
3
+ "ref": "https://html.spec.whatwg.org/multipage/sections.html#the-hgroup-element",
4
+ "global": {
5
+ "#HTMLGlobalAttrs": true,
6
+ "#GlobalEventAttrs": true,
7
+ "#DocumentElementEventAttrs": true,
8
+ "#ARIAAttrs": true
9
+ },
10
+ "attributes": {}
11
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "math",
3
+ "ref": "https://momdo.github.io/html/embedded-content-other.html#mathml",
4
+ "global": {
5
+ "#ARIAAttrs": true
6
+ },
7
+ "attributes": {}
8
+ }