@markuplint/html-spec 4.13.0 → 4.14.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 +15 -0
- package/index.json +5 -5
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
## [4.14.1](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.14.0...@markuplint/html-spec@4.14.1) (2025-03-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @markuplint/html-spec
|
|
9
|
+
|
|
10
|
+
# [4.14.0](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.13.0...@markuplint/html-spec@4.14.0) (2025-02-27)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **html-spec:** apply missing flag removal for Invoker Commands API ([98a196d](https://github.com/markuplint/markuplint/commit/98a196d99b6b9e84f46716c760523040b657e98b))
|
|
15
|
+
- **html-spec:** fix required attrs and conditional attrs of the `picture` element ([60f9089](https://github.com/markuplint/markuplint/commit/60f908979238d98950a7141cf74b6925f829283e))
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- **html-spec:** remove experimental flag for Invoker Commands API ([8df79ab](https://github.com/markuplint/markuplint/commit/8df79ab42d2c0a6eb6708ac8a50786aad6f630b6))
|
|
20
|
+
|
|
6
21
|
# [4.13.0](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.12.0...@markuplint/html-spec@4.13.0) (2025-02-11)
|
|
7
22
|
|
|
8
23
|
### Features
|
package/index.json
CHANGED
|
@@ -36124,12 +36124,10 @@
|
|
|
36124
36124
|
"missingValueDefault": "unknown"
|
|
36125
36125
|
},
|
|
36126
36126
|
"ValidCustomCommand"
|
|
36127
|
-
]
|
|
36128
|
-
"experimental": true
|
|
36127
|
+
]
|
|
36129
36128
|
},
|
|
36130
36129
|
"commandfor": {
|
|
36131
|
-
"type": "DOMID"
|
|
36132
|
-
"experimental": true
|
|
36130
|
+
"type": "DOMID"
|
|
36133
36131
|
},
|
|
36134
36132
|
"disabled": {
|
|
36135
36133
|
"description": "This Boolean attribute prevents the user from interacting with the button: it cannot be pressed or focused."
|
|
@@ -40748,9 +40746,11 @@
|
|
|
40748
40746
|
},
|
|
40749
40747
|
"src": {
|
|
40750
40748
|
"type": "URL",
|
|
40751
|
-
"required": ":is(video, audio) > source"
|
|
40749
|
+
"required": ":is(video, audio) > source",
|
|
40750
|
+
"condition": ":is(video, audio) > source"
|
|
40752
40751
|
},
|
|
40753
40752
|
"srcset": {
|
|
40753
|
+
"required": "picture > source",
|
|
40754
40754
|
"condition": "picture > source"
|
|
40755
40755
|
},
|
|
40756
40756
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.14.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>",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"gen:prettier": "prettier --write index.json"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@markuplint/spec-generator": "4.6.
|
|
31
|
-
"@markuplint/test-tools": "4.5.
|
|
30
|
+
"@markuplint/spec-generator": "4.6.18",
|
|
31
|
+
"@markuplint/test-tools": "4.5.18"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@markuplint/ml-spec": "4.9.
|
|
34
|
+
"@markuplint/ml-spec": "4.9.5"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "04924b5471e60820d28c1f48c2f09a537a1e9825"
|
|
37
37
|
}
|