praxis-kit 6.2.1 → 6.5.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/dist/_shared/diagnostics.d.ts +20 -0
- package/dist/_shared/diagnostics.js +20 -0
- package/dist/{chunk-4YVNOMUS.js → chunk-AM5J6PY3.js} +839 -198
- package/dist/contract/index.d.ts +1 -0
- package/dist/lit/index.d.ts +1 -0
- package/dist/lit/index.js +828 -187
- package/dist/preact/index.d.ts +1 -0
- package/dist/preact/index.js +839 -198
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +1 -1
- package/dist/react/legacy.d.ts +2 -2
- package/dist/react/legacy.js +1 -1
- package/dist/{react-options-DQTX4YS_.d.ts → react-options-DoFNqNdY.d.ts} +1 -0
- package/dist/solid/index.d.ts +1 -0
- package/dist/solid/index.js +839 -198
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +839 -198
- package/dist/utils/index.d.ts +15 -0
- package/dist/utils/index.js +15 -0
- package/dist/vite-plugin/index.d.ts +20 -0
- package/dist/vue/index.d.ts +1 -0
- package/dist/vue/index.js +839 -198
- package/dist/web/index.d.ts +1 -0
- package/dist/web/index.js +828 -187
- package/package.json +13 -6
|
@@ -48,6 +48,26 @@ 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
|
+
HtmlInputSizeIgnoredForType = "HTML3112",
|
|
64
|
+
HtmlInputAltIgnoredForType = "HTML3113",
|
|
65
|
+
HtmlInputHeightIgnoredForType = "HTML3114",
|
|
66
|
+
HtmlInputWidthIgnoredForType = "HTML3115",
|
|
67
|
+
A11yInputMissingAccessibleName = "A11Y8100",
|
|
68
|
+
A11yInputPlaceholderNotLabel = "A11Y8101",
|
|
69
|
+
A11yInputPasswordAutocomplete = "A11Y8102",
|
|
70
|
+
A11yInputRequiredReadOnlyConflict = "A11Y8103",
|
|
51
71
|
InvalidRenderingTarget = "RENDER4001",
|
|
52
72
|
LintDeadCompoundKey = "LINT5001",
|
|
53
73
|
LintDeadCompoundValue = "LINT5002",
|
|
@@ -49,6 +49,26 @@ 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["HtmlInputSizeIgnoredForType"] = "HTML3112";
|
|
65
|
+
DiagnosticCode2["HtmlInputAltIgnoredForType"] = "HTML3113";
|
|
66
|
+
DiagnosticCode2["HtmlInputHeightIgnoredForType"] = "HTML3114";
|
|
67
|
+
DiagnosticCode2["HtmlInputWidthIgnoredForType"] = "HTML3115";
|
|
68
|
+
DiagnosticCode2["A11yInputMissingAccessibleName"] = "A11Y8100";
|
|
69
|
+
DiagnosticCode2["A11yInputPlaceholderNotLabel"] = "A11Y8101";
|
|
70
|
+
DiagnosticCode2["A11yInputPasswordAutocomplete"] = "A11Y8102";
|
|
71
|
+
DiagnosticCode2["A11yInputRequiredReadOnlyConflict"] = "A11Y8103";
|
|
52
72
|
DiagnosticCode2["InvalidRenderingTarget"] = "RENDER4001";
|
|
53
73
|
DiagnosticCode2["LintDeadCompoundKey"] = "LINT5001";
|
|
54
74
|
DiagnosticCode2["LintDeadCompoundValue"] = "LINT5002";
|