From 2b3990d1b94ccfba291bcb988caa3f098155162f Mon Sep 17 00:00:00 2001 From: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:32:28 -0800 Subject: [PATCH] update generated code --- button.ts | 12 ++++++++++++ lib/global_attributes.ts | 5 ++++- link.ts | 1 - script.ts | 1 - style.ts | 1 - 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/button.ts b/button.ts index 713c2ec..b330fe8 100644 --- a/button.ts +++ b/button.ts @@ -11,6 +11,18 @@ import { renderElement } from "./lib/mod.ts"; * @see */ export interface ButtonElementProps extends GlobalAttributes { + /** + * `command` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element. + * @see + * @experimental + */ + command?: string | undefined; + /** + * `commandfor` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element. + * @see + * @experimental + */ + commandfor?: string | undefined; /** * `disabled` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element. * @see diff --git a/lib/global_attributes.ts b/lib/global_attributes.ts index 3428802..075f4d0 100644 --- a/lib/global_attributes.ts +++ b/lib/global_attributes.ts @@ -12,7 +12,10 @@ export interface GlobalAttributes extends DataAttributes { anchor?: string | undefined; /** @see */ autocapitalize?: string | undefined; - /** @experimental */ + /** + * @see + * @experimental + */ autocorrect?: string | undefined; /** @see */ autofocus?: string | undefined; diff --git a/link.ts b/link.ts index c162c9a..0f2a5f1 100644 --- a/link.ts +++ b/link.ts @@ -19,7 +19,6 @@ export interface LinkElementProps extends GlobalAttributes { /** * `blocking` is an attribute of the [`link`](https://developer.mozilla.org/docs/Web/HTML/Element/link) element. * @see - * @experimental */ blocking?: string | undefined; /** diff --git a/script.ts b/script.ts index 1c021e9..a8ebfae 100644 --- a/script.ts +++ b/script.ts @@ -25,7 +25,6 @@ export interface ScriptElementProps extends GlobalAttributes { /** * `blocking` is an attribute of the [`script`](https://developer.mozilla.org/docs/Web/HTML/Element/script) element. * @see - * @experimental */ blocking?: string | undefined; /** diff --git a/style.ts b/style.ts index bf0b268..448bd24 100644 --- a/style.ts +++ b/style.ts @@ -14,7 +14,6 @@ export interface StyleElementProps extends GlobalAttributes { /** * `blocking` is an attribute of the [`style`](https://developer.mozilla.org/docs/Web/HTML/Element/style) element. * @see - * @experimental */ blocking?: string | undefined; /**