Skip to content

Commit

Permalink
update generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Nov 5, 2024
1 parent d7fe843 commit 2b3990d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ import { renderElement } from "./lib/mod.ts";
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/button>
*/
export interface ButtonElementProps extends GlobalAttributes {
/**
* `command` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/button#command>
* @experimental
*/
command?: string | undefined;
/**
* `commandfor` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/button#commandfor>
* @experimental
*/
commandfor?: string | undefined;
/**
* `disabled` is an attribute of the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/button#disabled>
Expand Down
5 changes: 4 additions & 1 deletion lib/global_attributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ export interface GlobalAttributes extends DataAttributes {
anchor?: string | undefined;
/** @see <https://developer.mozilla.org/docs/Web/HTML/Global_attributes/autocapitalize> */
autocapitalize?: string | undefined;
/** @experimental */
/**
* @see <https://developer.mozilla.org/docs/Web/HTML/Global_attributes/autocorrect>
* @experimental
*/
autocorrect?: string | undefined;
/** @see <https://developer.mozilla.org/docs/Web/HTML/Global_attributes/autofocus> */
autofocus?: string | undefined;
Expand Down
1 change: 0 additions & 1 deletion link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://developer.mozilla.org/docs/Web/HTML/Element/link#blocking>
* @experimental
*/
blocking?: string | undefined;
/**
Expand Down
1 change: 0 additions & 1 deletion script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://developer.mozilla.org/docs/Web/HTML/Element/script#blocking>
* @experimental
*/
blocking?: string | undefined;
/**
Expand Down
1 change: 0 additions & 1 deletion style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://developer.mozilla.org/docs/Web/HTML/Element/style#blocking>
* @experimental
*/
blocking?: string | undefined;
/**
Expand Down

0 comments on commit 2b3990d

Please sign in to comment.