praxis-kit 6.2.1 → 6.2.3
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/_shared/diagnostics.d.ts +16 -0
- package/dist/_shared/diagnostics.js +16 -0
- package/dist/{chunk-4YVNOMUS.js → chunk-H3D2JA3J.js} +491 -26
- package/dist/lit/index.js +480 -15
- package/dist/preact/index.js +491 -26
- package/dist/react/index.js +1 -1
- package/dist/react/legacy.js +1 -1
- package/dist/solid/index.js +491 -26
- package/dist/svelte/index.js +491 -26
- package/dist/utils/index.d.ts +15 -0
- package/dist/utils/index.js +15 -0
- package/dist/vite-plugin/index.d.ts +16 -0
- package/dist/vue/index.js +491 -26
- package/dist/web/index.js +480 -15
- package/package.json +11 -4
|
@@ -48,6 +48,22 @@ declare enum DiagnosticCode {
|
|
|
48
48
|
HtmlStandaloneRegionOverride = "HTML3005",
|
|
49
49
|
HtmlLandmarkRoleOverride = "HTML3006",
|
|
50
50
|
HtmlInvalidChild = "HTML3007",
|
|
51
|
+
HtmlRoleNotPermitted = "HTML3008",
|
|
52
|
+
HtmlInputUnsupportedType = "HTML3101",
|
|
53
|
+
HtmlInputCheckedIgnoredForType = "HTML3102",
|
|
54
|
+
HtmlInputMultipleIgnoredForType = "HTML3103",
|
|
55
|
+
HtmlInputMaxLengthIgnoredForType = "HTML3104",
|
|
56
|
+
HtmlInputMinLengthIgnoredForType = "HTML3105",
|
|
57
|
+
HtmlInputPatternIgnoredForType = "HTML3106",
|
|
58
|
+
HtmlInputMinIgnoredForType = "HTML3107",
|
|
59
|
+
HtmlInputMaxIgnoredForType = "HTML3108",
|
|
60
|
+
HtmlInputStepIgnoredForType = "HTML3109",
|
|
61
|
+
HtmlInputAcceptIgnoredForType = "HTML3110",
|
|
62
|
+
HtmlInputCaptureIgnoredForType = "HTML3111",
|
|
63
|
+
A11yInputMissingAccessibleName = "A11Y8100",
|
|
64
|
+
A11yInputPlaceholderNotLabel = "A11Y8101",
|
|
65
|
+
A11yInputPasswordAutocomplete = "A11Y8102",
|
|
66
|
+
A11yInputRequiredReadOnlyConflict = "A11Y8103",
|
|
51
67
|
InvalidRenderingTarget = "RENDER4001",
|
|
52
68
|
LintDeadCompoundKey = "LINT5001",
|
|
53
69
|
LintDeadCompoundValue = "LINT5002",
|
|
@@ -49,6 +49,22 @@ var DiagnosticCode = /* @__PURE__ */ ((DiagnosticCode2) => {
|
|
|
49
49
|
DiagnosticCode2["HtmlStandaloneRegionOverride"] = "HTML3005";
|
|
50
50
|
DiagnosticCode2["HtmlLandmarkRoleOverride"] = "HTML3006";
|
|
51
51
|
DiagnosticCode2["HtmlInvalidChild"] = "HTML3007";
|
|
52
|
+
DiagnosticCode2["HtmlRoleNotPermitted"] = "HTML3008";
|
|
53
|
+
DiagnosticCode2["HtmlInputUnsupportedType"] = "HTML3101";
|
|
54
|
+
DiagnosticCode2["HtmlInputCheckedIgnoredForType"] = "HTML3102";
|
|
55
|
+
DiagnosticCode2["HtmlInputMultipleIgnoredForType"] = "HTML3103";
|
|
56
|
+
DiagnosticCode2["HtmlInputMaxLengthIgnoredForType"] = "HTML3104";
|
|
57
|
+
DiagnosticCode2["HtmlInputMinLengthIgnoredForType"] = "HTML3105";
|
|
58
|
+
DiagnosticCode2["HtmlInputPatternIgnoredForType"] = "HTML3106";
|
|
59
|
+
DiagnosticCode2["HtmlInputMinIgnoredForType"] = "HTML3107";
|
|
60
|
+
DiagnosticCode2["HtmlInputMaxIgnoredForType"] = "HTML3108";
|
|
61
|
+
DiagnosticCode2["HtmlInputStepIgnoredForType"] = "HTML3109";
|
|
62
|
+
DiagnosticCode2["HtmlInputAcceptIgnoredForType"] = "HTML3110";
|
|
63
|
+
DiagnosticCode2["HtmlInputCaptureIgnoredForType"] = "HTML3111";
|
|
64
|
+
DiagnosticCode2["A11yInputMissingAccessibleName"] = "A11Y8100";
|
|
65
|
+
DiagnosticCode2["A11yInputPlaceholderNotLabel"] = "A11Y8101";
|
|
66
|
+
DiagnosticCode2["A11yInputPasswordAutocomplete"] = "A11Y8102";
|
|
67
|
+
DiagnosticCode2["A11yInputRequiredReadOnlyConflict"] = "A11Y8103";
|
|
52
68
|
DiagnosticCode2["InvalidRenderingTarget"] = "RENDER4001";
|
|
53
69
|
DiagnosticCode2["LintDeadCompoundKey"] = "LINT5001";
|
|
54
70
|
DiagnosticCode2["LintDeadCompoundValue"] = "LINT5002";
|