-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.ts
67 lines (65 loc) · 2.84 KB
/
form.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
/**
* @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";
/**
* FormElementProps are the props for the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form>
*/
export interface FormElementProps extends GlobalAttributes {
/**
* `accept-charset` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#accept-charset>
*/
"accept-charset"?: string | undefined;
/**
* `action` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#action>
*/
action?: string | undefined;
/**
* `autocomplete` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#autocomplete>
*/
autocomplete?: string | undefined;
/**
* `enctype` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#enctype>
*/
enctype?: string | undefined;
/**
* `method` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#method>
*/
method?: string | undefined;
/**
* `name` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#name>
*/
name?: string | undefined;
/**
* `novalidate` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#novalidate>
*/
novalidate?: string | undefined;
/**
* `rel` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#rel>
*/
rel?: string | undefined;
/**
* `target` is an attribute of the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form#target>
*/
target?: string | undefined;
}
/**
* form renders the [`form`](https://developer.mozilla.org/docs/Web/HTML/Element/form) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/form>
*/
export function form(props?: FormElementProps, ...children: string[]): string {
return renderElement("form", props as AnyProps, false, children);
}