@markuplint/html-spec 3.4.0 → 3.6.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 +39 -4
- package/package.json +5 -4
package/index.json
CHANGED
|
@@ -110,6 +110,7 @@
|
|
|
110
110
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s",
|
|
111
111
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp",
|
|
112
112
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script",
|
|
113
|
+
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search",
|
|
113
114
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section",
|
|
114
115
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select",
|
|
115
116
|
"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot",
|
|
@@ -22176,6 +22177,7 @@
|
|
|
22176
22177
|
"s",
|
|
22177
22178
|
"samp",
|
|
22178
22179
|
"script",
|
|
22180
|
+
"search",
|
|
22179
22181
|
"section",
|
|
22180
22182
|
"select",
|
|
22181
22183
|
"slot",
|
|
@@ -22342,6 +22344,7 @@
|
|
|
22342
22344
|
"ruby",
|
|
22343
22345
|
"s",
|
|
22344
22346
|
"samp",
|
|
22347
|
+
"search",
|
|
22345
22348
|
"section",
|
|
22346
22349
|
"select",
|
|
22347
22350
|
"small",
|
|
@@ -23459,7 +23462,7 @@
|
|
|
23459
23462
|
"description": "This Boolean attribute specifies that the button should have input focus when the page loads. Only one element in a document can have this attribute."
|
|
23460
23463
|
},
|
|
23461
23464
|
"disabled": {
|
|
23462
|
-
"description": "This Boolean attribute prevents the user from interacting with the button: it cannot be pressed or focused. Firefox, unlike other browsers, persists the dynamic disabled state of a <button> across page loads.
|
|
23465
|
+
"description": "This Boolean attribute prevents the user from interacting with the button: it cannot be pressed or focused. Firefox, unlike other browsers, persists the dynamic disabled state of a <button> across page loads. To control this feature, use the [autocomplete]] (#autocomplete) attribute."
|
|
23463
23466
|
},
|
|
23464
23467
|
"form": {
|
|
23465
23468
|
"description": "The <form> element to associate the button with (its form owner). The value of this attribute must be the id of a <form> in the same document. (If this attribute is not set, the <button> is associated with its ancestor <form> element, if any.) This attribute lets you associate <button> elements to <form>s anywhere in the document, not just inside a <form>. It can also override an ancestor <form> element."
|
|
@@ -23677,7 +23680,7 @@
|
|
|
23677
23680
|
"deprecated": true
|
|
23678
23681
|
},
|
|
23679
23682
|
"char": {
|
|
23680
|
-
"description": "This attribute
|
|
23683
|
+
"description": "This attribute sets the character to align the cells in a column on. Typical values for this include a period (.) when attempting to align numbers or monetary values. If align is not set to char, this attribute is ignored.",
|
|
23681
23684
|
"deprecated": true
|
|
23682
23685
|
},
|
|
23683
23686
|
"charoff": {
|
|
@@ -25756,6 +25759,10 @@
|
|
|
25756
25759
|
"type": "Any",
|
|
25757
25760
|
"condition": "[type='image' i]"
|
|
25758
25761
|
},
|
|
25762
|
+
"autocapitalize": {
|
|
25763
|
+
"description": "(Safari only). A string which indicates how auto-capitalization should be applied while the user is editing this field. Permitted values are: none Do not automatically capitalize any text sentences Automatically capitalize the first character of each sentence. words Automatically capitalize the first character of each word. characters Automatically capitalize every character.",
|
|
25764
|
+
"nonStandard": true
|
|
25765
|
+
},
|
|
25759
25766
|
"autocomplete": {
|
|
25760
25767
|
"condition": [
|
|
25761
25768
|
":not([type])",
|
|
@@ -27835,6 +27842,34 @@
|
|
|
27835
27842
|
}
|
|
27836
27843
|
}
|
|
27837
27844
|
},
|
|
27845
|
+
{
|
|
27846
|
+
"name": "search",
|
|
27847
|
+
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search",
|
|
27848
|
+
"description": "",
|
|
27849
|
+
"categories": [],
|
|
27850
|
+
"contentModel": {
|
|
27851
|
+
"contents": [
|
|
27852
|
+
{
|
|
27853
|
+
"oneOrMore": ":model(flow)"
|
|
27854
|
+
}
|
|
27855
|
+
]
|
|
27856
|
+
},
|
|
27857
|
+
"aria": {
|
|
27858
|
+
"implicitRole": "search",
|
|
27859
|
+
"permittedRoles": ["form", "group", "none", "presentation", "region"],
|
|
27860
|
+
"properties": {
|
|
27861
|
+
"global": true,
|
|
27862
|
+
"role": "search"
|
|
27863
|
+
}
|
|
27864
|
+
},
|
|
27865
|
+
"omission": false,
|
|
27866
|
+
"globalAttrs": {
|
|
27867
|
+
"#ARIAAttrs": true,
|
|
27868
|
+
"#GlobalEventAttrs": true,
|
|
27869
|
+
"#HTMLGlobalAttrs": true
|
|
27870
|
+
},
|
|
27871
|
+
"attributes": {}
|
|
27872
|
+
},
|
|
27838
27873
|
{
|
|
27839
27874
|
"name": "section",
|
|
27840
27875
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section",
|
|
@@ -28729,7 +28764,7 @@
|
|
|
28729
28764
|
{
|
|
28730
28765
|
"name": "th",
|
|
28731
28766
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th",
|
|
28732
|
-
"description": "The <th> HTML element defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.",
|
|
28767
|
+
"description": "The <th> HTML element defines a cell as the header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.",
|
|
28733
28768
|
"categories": [],
|
|
28734
28769
|
"contentModel": {
|
|
28735
28770
|
"contents": [
|
|
@@ -28965,7 +29000,7 @@
|
|
|
28965
29000
|
"deprecated": true
|
|
28966
29001
|
},
|
|
28967
29002
|
"char": {
|
|
28968
|
-
"description": "A string
|
|
29003
|
+
"description": "A string that sets the character to align the cells in each row's columns (each row's centering that uses the same character gets aligned with others using the same character. Typical values for this include a period (\".\") or comma (\",\") when attempting to align numbers or monetary values. If align is not set to char, this attribute is ignored. Note: This attribute is obsolete and rarely implemented anyway. To achieve the same effect as the char attribute, set the CSS text-align property to the same string you would specify for the char property, such as text-align: \".\".",
|
|
28969
29004
|
"deprecated": true
|
|
28970
29005
|
},
|
|
28971
29006
|
"charoff": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.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,10 +24,11 @@
|
|
|
24
24
|
"fast-xml-parser": "^4.0.12",
|
|
25
25
|
"glob": "^9.2.1",
|
|
26
26
|
"node-fetch": "2",
|
|
27
|
-
"strip-json-comments": "3"
|
|
27
|
+
"strip-json-comments": "3",
|
|
28
|
+
"type-fest": "^3.7.0"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"@markuplint/ml-spec": "3.
|
|
31
|
+
"@markuplint/ml-spec": "3.6.0"
|
|
31
32
|
},
|
|
32
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "715dd53d3b1064a9bcf616c1533921cad9e3b187"
|
|
33
34
|
}
|