html-validate 7.13.1 → 7.13.2
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/dist/cjs/core.js +3 -3
- package/dist/cjs/core.js.map +1 -1
- package/dist/es/core.js +3 -3
- package/dist/es/core.js.map +1 -1
- package/package.json +14 -14
package/dist/cjs/core.js
CHANGED
|
@@ -6063,7 +6063,7 @@ class EmptyTitle extends Rule {
|
|
|
6063
6063
|
|
|
6064
6064
|
const defaults$k = {
|
|
6065
6065
|
allowArrayBrackets: true,
|
|
6066
|
-
shared: ["radio"],
|
|
6066
|
+
shared: ["radio", "button", "reset"],
|
|
6067
6067
|
};
|
|
6068
6068
|
const UNIQUE_CACHE_KEY = Symbol("form-elements-unique");
|
|
6069
6069
|
const SHARED_CACHE_KEY = Symbol("form-elements-shared");
|
|
@@ -6104,7 +6104,7 @@ class FormDupName extends Rule {
|
|
|
6104
6104
|
shared: {
|
|
6105
6105
|
type: "array",
|
|
6106
6106
|
items: {
|
|
6107
|
-
enum: ["radio", "checkbox", "submit"],
|
|
6107
|
+
enum: ["radio", "checkbox", "submit", "button", "reset"],
|
|
6108
6108
|
},
|
|
6109
6109
|
},
|
|
6110
6110
|
};
|
|
@@ -11745,7 +11745,7 @@ class HtmlValidate {
|
|
|
11745
11745
|
/** @public */
|
|
11746
11746
|
const name = "html-validate";
|
|
11747
11747
|
/** @public */
|
|
11748
|
-
const version = "7.13.
|
|
11748
|
+
const version = "7.13.2";
|
|
11749
11749
|
/** @public */
|
|
11750
11750
|
const bugs = "https://gitlab.com/html-validate/html-validate/issues/new";
|
|
11751
11751
|
|