@markuplint/html-spec 4.9.2 → 4.10.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/CHANGELOG.md +15 -2
- package/index.json +23 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,13 +3,26 @@
|
|
|
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
|
-
|
|
6
|
+
# [4.10.0](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.9.3...@markuplint/html-spec@4.10.0) (2024-10-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **html-spec:** add the `alpha` attr to `<input type=color>` ([fd877fc](https://github.com/markuplint/markuplint/commit/fd877fc5213212e266068488bdf6d18d6d356574))
|
|
12
|
+
* **html-spec:** add the `autocorrect` global attribute ([8035fbd](https://github.com/markuplint/markuplint/commit/8035fbd183c3eb1ab722eb7093a8e5916cf4ba25))
|
|
13
|
+
* **html-spec:** add the `colorspace` attr to `<input type=color>` ([93b8c2b](https://github.com/markuplint/markuplint/commit/93b8c2b53d59f27bb608e31e49ae3c4b315579ae))
|
|
7
14
|
|
|
8
|
-
**Note:** Version bump only for package @markuplint/html-spec
|
|
9
15
|
|
|
10
16
|
|
|
11
17
|
|
|
12
18
|
|
|
19
|
+
## [4.9.3](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.9.2...@markuplint/html-spec@4.9.3) (2024-10-15)
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @markuplint/html-spec
|
|
22
|
+
|
|
23
|
+
## [4.9.2](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.9.1...@markuplint/html-spec@4.9.2) (2024-10-14)
|
|
24
|
+
|
|
25
|
+
**Note:** Version bump only for package @markuplint/html-spec
|
|
13
26
|
|
|
14
27
|
## [4.9.1](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.9.0...@markuplint/html-spec@4.9.1) (2024-09-23)
|
|
15
28
|
|
package/index.json
CHANGED
|
@@ -247,6 +247,17 @@
|
|
|
247
247
|
}
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
|
+
"autocorrect": {
|
|
251
|
+
"type": {
|
|
252
|
+
"enum": ["", "on", "off"],
|
|
253
|
+
"disallowToSurroundBySpaces": true,
|
|
254
|
+
"invalidValueDefault": "on",
|
|
255
|
+
"missingValueDefault": "on",
|
|
256
|
+
"sameStates": {
|
|
257
|
+
"on": [""]
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
},
|
|
250
261
|
"autofocus": {
|
|
251
262
|
"type": "Boolean"
|
|
252
263
|
},
|
|
@@ -38196,6 +38207,10 @@
|
|
|
38196
38207
|
},
|
|
38197
38208
|
"condition": "[type='file' i]"
|
|
38198
38209
|
},
|
|
38210
|
+
"alpha": {
|
|
38211
|
+
"type": "Boolean",
|
|
38212
|
+
"condition": "[type='color' i]"
|
|
38213
|
+
},
|
|
38199
38214
|
"alt": {
|
|
38200
38215
|
"type": "Any",
|
|
38201
38216
|
"condition": "[type='image' i]"
|
|
@@ -38237,6 +38252,14 @@
|
|
|
38237
38252
|
"type": "Boolean",
|
|
38238
38253
|
"condition": ["[type='checkbox' i]", "[type='radio' i]"]
|
|
38239
38254
|
},
|
|
38255
|
+
"colorspace": {
|
|
38256
|
+
"type": {
|
|
38257
|
+
"enum": ["limited-srgb", "display-p3"],
|
|
38258
|
+
"invalidValueDefault": "limited-srgb",
|
|
38259
|
+
"missingValueDefault": "limited-srgb"
|
|
38260
|
+
},
|
|
38261
|
+
"condition": "[type='color' i]"
|
|
38262
|
+
},
|
|
38240
38263
|
"dirname": {
|
|
38241
38264
|
"condition": [
|
|
38242
38265
|
":not([type])",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.10.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>",
|
|
@@ -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.10",
|
|
31
|
+
"@markuplint/test-tools": "4.5.10"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@markuplint/ml-spec": "4.
|
|
34
|
+
"@markuplint/ml-spec": "4.8.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "fab5b494f0bdc491aa83cb2c8722738d557fbefd"
|
|
37
37
|
}
|