-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextarea.ts
95 lines (93 loc) · 4.2 KB
/
textarea.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
/**
* @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";
/**
* TextareaElementProps are the props for the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea>
*/
export interface TextareaElementProps extends GlobalAttributes {
/**
* `autocomplete` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#autocomplete>
*/
autocomplete?: string | undefined;
/**
* `cols` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#cols>
*/
cols?: string | undefined;
/**
* `dirname` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#dirname>
*/
dirname?: string | undefined;
/**
* `disabled` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#disabled>
*/
disabled?: string | undefined;
/**
* `form` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#form>
*/
form?: string | undefined;
/**
* `maxlength` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#maxlength>
*/
maxlength?: string | undefined;
/**
* `minlength` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#minlength>
*/
minlength?: string | undefined;
/**
* `name` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#name>
*/
name?: string | undefined;
/**
* `placeholder` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#placeholder>
*/
placeholder?: string | undefined;
/**
* `readonly` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#readonly>
*/
readonly?: string | undefined;
/**
* `required` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#required>
*/
required?: string | undefined;
/**
* `rows` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#rows>
*/
rows?: string | undefined;
/**
* `spellcheck` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#spellcheck>
*/
spellcheck?: string | undefined;
/**
* `wrap` is an attribute of the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea#wrap>
*/
wrap?: string | undefined;
}
/**
* textarea renders the [`textarea`](https://developer.mozilla.org/docs/Web/HTML/Element/textarea) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/textarea>
*/
export function textarea(
props?: TextareaElementProps,
...children: string[]
): string {
return renderElement("textarea", props as AnyProps, false, children);
}