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/es/core.js
CHANGED
|
@@ -6031,7 +6031,7 @@ class EmptyTitle extends Rule {
|
|
|
6031
6031
|
|
|
6032
6032
|
const defaults$k = {
|
|
6033
6033
|
allowArrayBrackets: true,
|
|
6034
|
-
shared: ["radio"],
|
|
6034
|
+
shared: ["radio", "button", "reset"],
|
|
6035
6035
|
};
|
|
6036
6036
|
const UNIQUE_CACHE_KEY = Symbol("form-elements-unique");
|
|
6037
6037
|
const SHARED_CACHE_KEY = Symbol("form-elements-shared");
|
|
@@ -6072,7 +6072,7 @@ class FormDupName extends Rule {
|
|
|
6072
6072
|
shared: {
|
|
6073
6073
|
type: "array",
|
|
6074
6074
|
items: {
|
|
6075
|
-
enum: ["radio", "checkbox", "submit"],
|
|
6075
|
+
enum: ["radio", "checkbox", "submit", "button", "reset"],
|
|
6076
6076
|
},
|
|
6077
6077
|
},
|
|
6078
6078
|
};
|
|
@@ -11713,7 +11713,7 @@ class HtmlValidate {
|
|
|
11713
11713
|
/** @public */
|
|
11714
11714
|
const name = "html-validate";
|
|
11715
11715
|
/** @public */
|
|
11716
|
-
const version = "7.13.
|
|
11716
|
+
const version = "7.13.2";
|
|
11717
11717
|
/** @public */
|
|
11718
11718
|
const bugs = "https://gitlab.com/html-validate/html-validate/issues/new";
|
|
11719
11719
|
|