praxis-kit 6.2.3 → 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.
@@ -65,6 +65,10 @@ declare enum DiagnosticCode {
65
65
  HtmlInputStepIgnoredForType = "HTML3109",
66
66
  HtmlInputAcceptIgnoredForType = "HTML3110",
67
67
  HtmlInputCaptureIgnoredForType = "HTML3111",
68
+ HtmlInputSizeIgnoredForType = "HTML3112",
69
+ HtmlInputAltIgnoredForType = "HTML3113",
70
+ HtmlInputHeightIgnoredForType = "HTML3114",
71
+ HtmlInputWidthIgnoredForType = "HTML3115",
68
72
  A11yInputMissingAccessibleName = "A11Y8100",
69
73
  A11yInputPlaceholderNotLabel = "A11Y8101",
70
74
  A11yInputPasswordAutocomplete = "A11Y8102",
@@ -237,6 +237,7 @@ type AriaResult = ValidResult | AriaInvalidResult;
237
237
 
238
238
  type AriaRule<C extends AriaContext = AriaContext> = ((context: C) => readonly AriaResult[]) & {
239
239
  readonly readsProps?: readonly string[];
240
+ readonly tags?: readonly string[];
240
241
  };
241
242
 
242
243
  type PropNormalizer = (props: Readonly<AnyRecord & IntrinsicProps>) => Partial<AnyRecord & IntrinsicProps>;