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.
@@ -218,6 +218,7 @@ type AriaPhase = 'evaluate' | 'fix';
218
218
 
219
219
  type AriaRule<C extends AriaContext = AriaContext> = ((context: C) => readonly AriaResult[]) & {
220
220
  readonly readsProps?: readonly string[];
221
+ readonly tags?: readonly string[];
221
222
  };
222
223
 
223
224
  type PropNormalizer = (props: Readonly<AnyRecord & IntrinsicProps>) => Partial<AnyRecord & IntrinsicProps>;
@@ -219,6 +219,7 @@ type AriaResult = ValidResult | AriaInvalidResult;
219
219
 
220
220
  type AriaRule<C extends AriaContext = AriaContext> = ((context: C) => readonly AriaResult[]) & {
221
221
  readonly readsProps?: readonly string[];
222
+ readonly tags?: readonly string[];
222
223
  };
223
224
 
224
225
  type PropNormalizer = (props: Readonly<AnyRecord & IntrinsicProps>) => Partial<AnyRecord & IntrinsicProps>;