From 372298f1eddacd9d3877a4d7694d8e173c6737b6 Mon Sep 17 00:00:00 2001 From: Shiba <44804845+DeepDoge@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:49:08 +0000 Subject: [PATCH] fix(StrictARIA): Oops forgot to remove some (string & {}) types --- lib/aria.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/aria.ts b/lib/aria.ts index 2b5497e..6d2ee32 100644 --- a/lib/aria.ts +++ b/lib/aria.ts @@ -62,7 +62,6 @@ export namespace StrictARIA { | "time" | "true" | "false" - | (string & {}) | null ariaDisabled: "true" | "false" | null ariaExpanded: "true" | "false" | "undefined" | null @@ -74,7 +73,6 @@ export namespace StrictARIA { | "tree" | "grid" | "dialog" - | (string & {}) | null ariaHidden: "true" | "false" | "undefined" | null ariaInvalid: "true" | "false" | "grammar" | "spelling" | null @@ -83,12 +81,7 @@ export namespace StrictARIA { ariaModal: "true" | "false" | null ariaMultiLine: "true" | "false" | null ariaMultiSelectable: "true" | "false" | null - ariaOrientation: - | "horizontal" - | "vertical" - | "undefined" - | (string & {}) - | null + ariaOrientation: "horizontal" | "vertical" | "undefined" | null ariaPosInSet: `${bigint}` | null ariaPressed: "true" | "false" | "mixed" | "undefined" | null ariaReadOnly: "true" | "false" | null