-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.ts
97 lines (95 loc) · 4.21 KB
/
button.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
* @fileoverview
*
* This file was generated. Do not modify this file directly.
*/
import type { AnyProps, GlobalAttributes } from "./lib/mod.ts";
import { renderElement } from "./lib/mod.ts";
/**
* ButtonElementProps are the props for the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element.
* @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>
*/
disabled?: string | undefined;
/**
* `form` 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#form>
*/
form?: string | undefined;
/**
* `formaction` 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#formaction>
*/
formaction?: string | undefined;
/**
* `formenctype` 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#formenctype>
*/
formenctype?: string | undefined;
/**
* `formmethod` 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#formmethod>
*/
formmethod?: string | undefined;
/**
* `formnovalidate` 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#formnovalidate>
*/
formnovalidate?: string | undefined;
/**
* `formtarget` 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#formtarget>
*/
formtarget?: string | undefined;
/**
* `name` 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#name>
*/
name?: string | undefined;
/**
* `popovertarget` 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#popovertarget>
*/
popovertarget?: string | undefined;
/**
* `popovertargetaction` 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#popovertargetaction>
*/
popovertargetaction?: string | undefined;
/**
* `type` 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#type>
*/
type?: string | undefined;
/**
* `value` 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#value>
*/
value?: string | undefined;
}
/**
* button renders the [`button`](https://developer.mozilla.org/docs/Web/HTML/Element/button) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/button>
*/
export function button(
props?: ButtonElementProps,
...children: string[]
): string {
return renderElement("button", props as AnyProps, false, children);
}