@mpen/jsxhtml 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classnames.d.ts +11 -0
- package/dist/custom/C.d.ts +6 -0
- package/dist/custom/Checkbox.d.ts +5 -0
- package/dist/custom/ColorInput.d.ts +5 -0
- package/dist/custom/DateInput.d.ts +5 -0
- package/dist/custom/DocType.d.ts +6 -0
- package/dist/custom/EmailInput.d.ts +5 -0
- package/dist/custom/Empty.d.ts +4 -0
- package/dist/custom/FileInput.d.ts +5 -0
- package/dist/custom/HtmlDocument.d.ts +5 -0
- package/dist/custom/NumberInput.d.ts +5 -0
- package/dist/custom/PasswordInput.d.ts +5 -0
- package/dist/custom/RadioButton.d.ts +5 -0
- package/dist/custom/RangeInput.d.ts +5 -0
- package/dist/custom/RawHtml.d.ts +6 -0
- package/dist/custom/SearchInput.d.ts +5 -0
- package/dist/custom/TelephoneInput.d.ts +5 -0
- package/dist/custom/TextInput.d.ts +5 -0
- package/dist/custom/TimeInput.d.ts +5 -0
- package/dist/custom/UrlInput.d.ts +5 -0
- package/dist/custom/WeekInput.d.ts +5 -0
- package/dist/custom/index.d.ts +20 -0
- package/dist/custom-components.d.ts +1 -23
- package/dist/htmlspec/IntrinsicElements.d.ts +240 -398
- package/dist/htmlspec/attributes/AriaAttributes.d.ts +11 -0
- package/dist/htmlspec/attributes/ElementAttributes.d.ts +28 -0
- package/dist/htmlspec/attributes/EventHandlers.d.ts +102 -0
- package/dist/htmlspec/attributes/GlobalAttributes.d.ts +11 -0
- package/dist/htmlspec/{GlobalAttributes.d.ts → attributes/StandardGlobalAttributes.d.ts} +26 -107
- package/dist/htmlspec/attributes/index.d.ts +7 -0
- package/dist/htmlspec/elements/a.d.ts +71 -0
- package/dist/htmlspec/elements/abbr.d.ts +4 -0
- package/dist/htmlspec/elements/address.d.ts +4 -0
- package/dist/htmlspec/elements/area.d.ts +66 -0
- package/dist/htmlspec/elements/article.d.ts +4 -0
- package/dist/htmlspec/elements/aside.d.ts +4 -0
- package/dist/htmlspec/elements/audio.d.ts +45 -0
- package/dist/htmlspec/elements/b.d.ts +4 -0
- package/dist/htmlspec/elements/base.d.ts +18 -0
- package/dist/htmlspec/elements/bdi.d.ts +4 -0
- package/dist/htmlspec/elements/bdo.d.ts +4 -0
- package/dist/htmlspec/elements/blockquote.d.ts +8 -0
- package/dist/htmlspec/elements/body.d.ts +92 -0
- package/dist/htmlspec/elements/br.d.ts +4 -0
- package/dist/htmlspec/elements/button.d.ts +103 -0
- package/dist/htmlspec/elements/canvas.d.ts +13 -0
- package/dist/htmlspec/elements/caption.d.ts +4 -0
- package/dist/htmlspec/elements/cite.d.ts +4 -0
- package/dist/htmlspec/elements/code.d.ts +4 -0
- package/dist/htmlspec/elements/col.d.ts +9 -0
- package/dist/htmlspec/elements/colgroup.d.ts +9 -0
- package/dist/htmlspec/elements/data.d.ts +9 -0
- package/dist/htmlspec/elements/datalist.d.ts +4 -0
- package/dist/htmlspec/elements/dd.d.ts +4 -0
- package/dist/htmlspec/elements/del.d.ts +12 -0
- package/dist/htmlspec/elements/details.d.ts +12 -0
- package/dist/htmlspec/elements/dfn.d.ts +4 -0
- package/dist/htmlspec/elements/dialog.d.ts +17 -0
- package/dist/htmlspec/elements/div.d.ts +4 -0
- package/dist/htmlspec/elements/dl.d.ts +4 -0
- package/dist/htmlspec/elements/dt.d.ts +4 -0
- package/dist/htmlspec/elements/element-types.d.ts +1 -0
- package/dist/htmlspec/elements/em.d.ts +4 -0
- package/dist/htmlspec/elements/embed.d.ts +21 -0
- package/dist/htmlspec/elements/fencedframe.d.ts +23 -0
- package/dist/htmlspec/elements/fieldset.d.ts +16 -0
- package/dist/htmlspec/elements/figcaption.d.ts +4 -0
- package/dist/htmlspec/elements/figure.d.ts +4 -0
- package/dist/htmlspec/elements/footer.d.ts +4 -0
- package/dist/htmlspec/elements/form.d.ts +61 -0
- package/dist/htmlspec/elements/h1.d.ts +4 -0
- package/dist/htmlspec/elements/h2.d.ts +4 -0
- package/dist/htmlspec/elements/h3.d.ts +4 -0
- package/dist/htmlspec/elements/h4.d.ts +4 -0
- package/dist/htmlspec/elements/h5.d.ts +4 -0
- package/dist/htmlspec/elements/h6.d.ts +4 -0
- package/dist/htmlspec/elements/head.d.ts +4 -0
- package/dist/htmlspec/elements/header.d.ts +4 -0
- package/dist/htmlspec/elements/hgroup.d.ts +4 -0
- package/dist/htmlspec/elements/hr.d.ts +4 -0
- package/dist/htmlspec/elements/html.d.ts +8 -0
- package/dist/htmlspec/elements/i.d.ts +4 -0
- package/dist/htmlspec/elements/iframe.d.ts +82 -0
- package/dist/htmlspec/elements/img.d.ts +90 -0
- package/dist/htmlspec/elements/index.d.ts +114 -0
- package/dist/htmlspec/elements/input.d.ts +189 -0
- package/dist/htmlspec/elements/ins.d.ts +12 -0
- package/dist/htmlspec/elements/kbd.d.ts +4 -0
- package/dist/htmlspec/elements/label.d.ts +8 -0
- package/dist/htmlspec/elements/legend.d.ts +4 -0
- package/dist/htmlspec/elements/li.d.ts +19 -0
- package/dist/htmlspec/elements/link.d.ts +77 -0
- package/dist/htmlspec/elements/main.d.ts +4 -0
- package/dist/htmlspec/elements/map.d.ts +8 -0
- package/dist/htmlspec/elements/mark.d.ts +4 -0
- package/dist/htmlspec/elements/menu.d.ts +4 -0
- package/dist/htmlspec/elements/meta.d.ts +24 -0
- package/dist/htmlspec/elements/meter.d.ts +29 -0
- package/dist/htmlspec/elements/nav.d.ts +4 -0
- package/dist/htmlspec/elements/noscript.d.ts +4 -0
- package/dist/htmlspec/elements/object.d.ts +29 -0
- package/dist/htmlspec/elements/ol.d.ts +24 -0
- package/dist/htmlspec/elements/optgroup.d.ts +12 -0
- package/dist/htmlspec/elements/option.d.ts +21 -0
- package/dist/htmlspec/elements/output.d.ts +16 -0
- package/dist/htmlspec/elements/p.d.ts +4 -0
- package/dist/htmlspec/elements/picture.d.ts +4 -0
- package/dist/htmlspec/elements/pre.d.ts +4 -0
- package/dist/htmlspec/elements/progress.d.ts +13 -0
- package/dist/htmlspec/elements/q.d.ts +8 -0
- package/dist/htmlspec/elements/rp.d.ts +4 -0
- package/dist/htmlspec/elements/rt.d.ts +4 -0
- package/dist/htmlspec/elements/ruby.d.ts +4 -0
- package/dist/htmlspec/elements/s.d.ts +4 -0
- package/dist/htmlspec/elements/samp.d.ts +4 -0
- package/dist/htmlspec/elements/script.d.ts +57 -0
- package/dist/htmlspec/elements/search.d.ts +4 -0
- package/dist/htmlspec/elements/section.d.ts +4 -0
- package/dist/htmlspec/elements/select.d.ts +37 -0
- package/dist/htmlspec/elements/selectedcontent.d.ts +7 -0
- package/dist/htmlspec/elements/slot.d.ts +8 -0
- package/dist/htmlspec/elements/small.d.ts +4 -0
- package/dist/htmlspec/elements/source.d.ts +33 -0
- package/dist/htmlspec/elements/span.d.ts +4 -0
- package/dist/htmlspec/elements/strong.d.ts +4 -0
- package/dist/htmlspec/elements/style.d.ts +21 -0
- package/dist/htmlspec/elements/sub.d.ts +4 -0
- package/dist/htmlspec/elements/summary.d.ts +4 -0
- package/dist/htmlspec/elements/sup.d.ts +4 -0
- package/dist/htmlspec/elements/table.d.ts +4 -0
- package/dist/htmlspec/elements/tbody.d.ts +4 -0
- package/dist/htmlspec/elements/td.d.ts +17 -0
- package/dist/htmlspec/elements/template.d.ts +29 -0
- package/dist/htmlspec/elements/textarea.d.ts +66 -0
- package/dist/htmlspec/elements/tfoot.d.ts +4 -0
- package/dist/htmlspec/elements/th.d.ts +31 -0
- package/dist/htmlspec/elements/thead.d.ts +4 -0
- package/dist/htmlspec/elements/time.d.ts +8 -0
- package/dist/htmlspec/elements/title.d.ts +4 -0
- package/dist/htmlspec/elements/tr.d.ts +4 -0
- package/dist/htmlspec/elements/track.d.ts +31 -0
- package/dist/htmlspec/elements/u.d.ts +4 -0
- package/dist/htmlspec/elements/ul.d.ts +12 -0
- package/dist/htmlspec/elements/var.d.ts +4 -0
- package/dist/htmlspec/elements/video.d.ts +66 -0
- package/dist/htmlspec/elements/wbr.d.ts +4 -0
- package/dist/index.cjs +142 -7
- package/dist/index.mjs +114 -9
- package/dist/internal/dev.d.ts +1 -0
- package/dist/internal/kitchen-sink-dev.d.ts +7 -0
- package/dist/internal/kitchen-sink.d.ts +2 -0
- package/dist/internal/type-assert.d.ts +39 -0
- package/dist/jsx-dev-runtime.cjs +1 -2
- package/dist/jsx-dev-runtime.mjs +2 -3
- package/dist/{jsx-runtime-cimCxEOU.js → jsx-runtime-BQPDXeiv.js} +27 -13
- package/dist/{jsx-runtime-Dh9PxNQe.js → jsx-runtime-DlHYwToA.js} +28 -14
- package/dist/jsx-runtime.cjs +1 -1
- package/dist/jsx-runtime.mjs +1 -1
- package/dist/jsx-types.d.ts +6 -26
- package/package.json +93 -86
- package/dist/htmlspec/AnchorElement.d.ts +0 -83
- package/dist/htmlspec/ButtonElement.d.ts +0 -55
- package/dist/htmlspec/InputAttributes.d.ts +0 -221
- package/dist/htmlspec/ScriptElement.d.ts +0 -38
- package/dist/htmlspec/StyleAttributes.d.ts +0 -19
- /package/dist/{dev.d.ts → classnames.test.d.ts} +0 -0
- /package/dist/{log.d.ts → internal/log.d.ts} +0 -0
|
@@ -1,731 +1,573 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { AnchorElement } from './AnchorElement';
|
|
3
|
-
import type { ScriptElementAttributes } from './ScriptElement';
|
|
4
|
-
import type { ButtonAttributes } from './ButtonElement';
|
|
5
|
-
import type { StyleHTMLAttributes } from './StyleAttributes';
|
|
6
|
-
import { InputAttributes } from './InputAttributes';
|
|
1
|
+
import type { AAttributes, AbbrAttributes, AddressAttributes, AreaAttributes, ArticleAttributes, AsideAttributes, AudioAttributes, BAttributes, BaseAttributes, BdiAttributes, BdoAttributes, BlockquoteAttributes, BodyAttributes, BrAttributes, ButtonAttributes, CanvasAttributes, CaptionAttributes, CiteAttributes, CodeAttributes, ColAttributes, ColgroupAttributes, DataAttributes, DatalistAttributes, DdAttributes, DelAttributes, DetailsAttributes, DfnAttributes, DialogAttributes, DivAttributes, DlAttributes, DtAttributes, EmAttributes, EmbedAttributes, FencedframeAttributes, FieldsetAttributes, FigcaptionAttributes, FigureAttributes, FooterAttributes, FormAttributes, H1Attributes, H2Attributes, H3Attributes, H4Attributes, H5Attributes, H6Attributes, HeadAttributes, HeaderAttributes, HgroupAttributes, HrAttributes, HtmlAttributes, IAttributes, IframeAttributes, ImgAttributes, InputAttributes, InsAttributes, KbdAttributes, LabelAttributes, LegendAttributes, LiAttributes, LinkAttributes, MainAttributes, MapAttributes, MarkAttributes, MenuAttributes, MetaAttributes, MeterAttributes, NavAttributes, NoscriptAttributes, ObjectAttributes, OlAttributes, OptgroupAttributes, OptionAttributes, OutputAttributes, PAttributes, PictureAttributes, PreAttributes, ProgressAttributes, QAttributes, RpAttributes, RtAttributes, RubyAttributes, SAttributes, SampAttributes, ScriptAttributes, SearchAttributes, SectionAttributes, SelectAttributes, SelectedcontentAttributes, SlotAttributes, SmallAttributes, SourceAttributes, SpanAttributes, StrongAttributes, StyleAttributes, SubAttributes, SummaryAttributes, SupAttributes, TableAttributes, TbodyAttributes, TdAttributes, TemplateAttributes, TextareaAttributes, TfootAttributes, ThAttributes, TheadAttributes, TimeAttributes, TitleAttributes, TrAttributes, TrackAttributes, UAttributes, UlAttributes, VarAttributes, VideoAttributes, WbrAttributes } from './elements';
|
|
7
2
|
export type IntrinsicElements = {
|
|
8
3
|
/**
|
|
9
|
-
* The <a> HTML element (or
|
|
10
|
-
* email addresses, locations in the same page, or anything else a URL can address.
|
|
11
|
-
*
|
|
4
|
+
* The <a> HTML element (or _anchor_ element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.
|
|
12
5
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
|
|
13
6
|
*/
|
|
14
|
-
a:
|
|
7
|
+
a: AAttributes;
|
|
15
8
|
/**
|
|
16
9
|
* The <abbr> HTML element represents an abbreviation or acronym.
|
|
17
10
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
|
|
18
11
|
*/
|
|
19
|
-
abbr:
|
|
12
|
+
abbr: AbbrAttributes;
|
|
20
13
|
/**
|
|
21
|
-
*
|
|
22
|
-
*/
|
|
23
|
-
acronym: AnyAttributes;
|
|
24
|
-
/**
|
|
25
|
-
* The <address> HTML element indicates that the enclosed HTML provides contact information for a person or people,
|
|
26
|
-
* or for an organization. [9]
|
|
14
|
+
* The <address> HTML element indicates that the enclosed HTML provides contact information for a person or people, or for an organization.
|
|
27
15
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
|
|
28
16
|
*/
|
|
29
|
-
address:
|
|
17
|
+
address: AddressAttributes;
|
|
30
18
|
/**
|
|
31
|
-
* The <area> HTML element defines an area inside an image map that has predefined clickable areas.
|
|
19
|
+
* The <area> HTML element defines an area inside an image map that has predefined clickable areas. An _image map_ allows geometric areas on an image to be associated with hypertext links.
|
|
32
20
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
|
|
33
21
|
*/
|
|
34
|
-
area:
|
|
22
|
+
area: AreaAttributes;
|
|
35
23
|
/**
|
|
36
|
-
* The <article> HTML element represents a self-contained composition in a document, page, application, or site,
|
|
37
|
-
* which is intended to be independently distributable or reusable (e.g., in syndication).
|
|
24
|
+
* The <article> HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples include: a forum post, a magazine or newspaper article, or a blog entry, a product card, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.
|
|
38
25
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
|
|
39
26
|
*/
|
|
40
|
-
article:
|
|
27
|
+
article: ArticleAttributes;
|
|
41
28
|
/**
|
|
42
|
-
* The <aside> HTML element represents a portion of a document whose content is only indirectly related to the
|
|
43
|
-
* document's main content.
|
|
29
|
+
* The <aside> HTML element represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.
|
|
44
30
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
|
|
45
31
|
*/
|
|
46
|
-
aside:
|
|
32
|
+
aside: AsideAttributes;
|
|
47
33
|
/**
|
|
48
|
-
* The <audio> HTML element is used to embed sound content in documents. It may contain one or more audio sources,
|
|
49
|
-
* represented using the src attribute or the <source> element: the browser will choose the most suitable one.
|
|
34
|
+
* The <audio> HTML element is used to embed sound content in documents. It may contain one or more audio sources, represented using the src attribute or the <source> element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a MediaStream.
|
|
50
35
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
|
|
51
36
|
*/
|
|
52
|
-
audio:
|
|
37
|
+
audio: AudioAttributes;
|
|
53
38
|
/**
|
|
54
|
-
* The <b> HTML element is used to draw the reader's attention to the element's contents, which are not otherwise
|
|
55
|
-
* granted any special importance.
|
|
39
|
+
* The <b> HTML element is used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use <b> for styling text or granting importance. If you wish to create boldface text, you should use the CSS font-weight property. If you wish to indicate an element is of special importance, you should use the <strong> element.
|
|
56
40
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
|
|
57
41
|
*/
|
|
58
|
-
b:
|
|
42
|
+
b: BAttributes;
|
|
59
43
|
/**
|
|
60
|
-
* The <base> HTML element specifies the base URL to use for all
|
|
44
|
+
* The <base> HTML element specifies the base URL to use for all _relative_ URLs in a document. There can be only one <base> element in a document.
|
|
61
45
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
62
46
|
*/
|
|
63
|
-
base:
|
|
47
|
+
base: BaseAttributes;
|
|
64
48
|
/**
|
|
65
|
-
* The <bdi> HTML element tells the browser's bidirectional algorithm to treat the text it contains in isolation
|
|
66
|
-
* from its surroundings. [4]
|
|
49
|
+
* The <bdi> HTML element tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text. It's particularly useful when a website dynamically inserts some text and doesn't know the directionality of the text being inserted.
|
|
67
50
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
|
|
68
51
|
*/
|
|
69
|
-
bdi:
|
|
52
|
+
bdi: BdiAttributes;
|
|
70
53
|
/**
|
|
71
|
-
* The <bdo> HTML element overrides the current directionality of text, so that the text within is rendered in a
|
|
72
|
-
* different direction. [18]
|
|
54
|
+
* The <bdo> HTML element overrides the current directionality of text, so that the text within is rendered in a different direction.
|
|
73
55
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
|
|
74
56
|
*/
|
|
75
|
-
bdo:
|
|
76
|
-
/**
|
|
77
|
-
* @deprecated
|
|
78
|
-
*/
|
|
79
|
-
big: AnyAttributes;
|
|
57
|
+
bdo: BdoAttributes;
|
|
80
58
|
/**
|
|
81
|
-
* The <blockquote> HTML element indicates that the enclosed text is an extended quotation.
|
|
59
|
+
* The <blockquote> HTML element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.
|
|
82
60
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
|
|
83
61
|
*/
|
|
84
|
-
blockquote:
|
|
62
|
+
blockquote: BlockquoteAttributes;
|
|
85
63
|
/**
|
|
86
|
-
* The <body> HTML element represents the content of an HTML document. There can be only one <body> element in a
|
|
87
|
-
* document.
|
|
64
|
+
* The <body> HTML element represents the content of an HTML document. There can be only one <body> element in a document.
|
|
88
65
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
|
|
89
66
|
*/
|
|
90
|
-
body:
|
|
67
|
+
body: BodyAttributes;
|
|
91
68
|
/**
|
|
92
|
-
* The <br> HTML element produces a line break in text (carriage-return).
|
|
69
|
+
* The <br> HTML element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.
|
|
93
70
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
|
|
94
71
|
*/
|
|
95
|
-
br:
|
|
72
|
+
br: BrAttributes;
|
|
96
73
|
/**
|
|
97
|
-
* The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice
|
|
98
|
-
*
|
|
99
|
-
* opening a dialog.
|
|
100
|
-
*
|
|
101
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/button
|
|
74
|
+
* The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it then performs an action, such as submitting a form or opening a dialog.
|
|
75
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
|
|
102
76
|
*/
|
|
103
|
-
button: ButtonAttributes
|
|
77
|
+
button: ButtonAttributes;
|
|
104
78
|
/**
|
|
105
|
-
*
|
|
79
|
+
* Use the HTML <canvas> element with either the canvas scripting API or the WebGL API to draw graphics and animations.
|
|
106
80
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
|
|
107
81
|
*/
|
|
108
|
-
canvas:
|
|
82
|
+
canvas: CanvasAttributes;
|
|
109
83
|
/**
|
|
110
|
-
* The <caption> HTML element specifies the caption (or title) of a table.
|
|
84
|
+
* The <caption> HTML element specifies the caption (or title) of a table, providing the table an accessible name or accessible description.
|
|
111
85
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
|
|
112
86
|
*/
|
|
113
|
-
caption:
|
|
114
|
-
/**
|
|
115
|
-
* @deprecated
|
|
116
|
-
*/
|
|
117
|
-
center: AnyAttributes;
|
|
87
|
+
caption: CaptionAttributes;
|
|
118
88
|
/**
|
|
119
|
-
* The <cite> HTML element is used to
|
|
120
|
-
* that work. [4]
|
|
89
|
+
* The <cite> HTML element is used to mark up the title of a creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.
|
|
121
90
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
|
|
122
91
|
*/
|
|
123
|
-
cite:
|
|
92
|
+
cite: CiteAttributes;
|
|
124
93
|
/**
|
|
125
|
-
* The <code> HTML element displays its contents styled in a fashion intended to indicate that the text is a short
|
|
126
|
-
* fragment of computer code.
|
|
94
|
+
* The <code> HTML element displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code. By default, the content text is displayed using the user agent's default monospace font.
|
|
127
95
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
|
|
128
96
|
*/
|
|
129
|
-
code:
|
|
97
|
+
code: CodeAttributes;
|
|
130
98
|
/**
|
|
131
|
-
* The <col> HTML element defines a column
|
|
132
|
-
* cells. It is generally found within a <colgroup> element.
|
|
99
|
+
* The <col> HTML element defines one or more columns in a column group represented by its parent <colgroup> element. The <col> element is only valid as a child of a <colgroup> element that has no span attribute defined.
|
|
133
100
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
|
|
134
101
|
*/
|
|
135
|
-
col:
|
|
102
|
+
col: ColAttributes;
|
|
136
103
|
/**
|
|
137
104
|
* The <colgroup> HTML element defines a group of columns within a table.
|
|
138
105
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
|
|
139
106
|
*/
|
|
140
|
-
colgroup:
|
|
107
|
+
colgroup: ColgroupAttributes;
|
|
141
108
|
/**
|
|
142
|
-
* The <data> HTML element links a given piece of content with a machine-readable translation.
|
|
109
|
+
* The <data> HTML element links a given piece of content with a machine-readable translation. If the content is time- or date-related, the <time> element must be used.
|
|
143
110
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
|
|
144
111
|
*/
|
|
145
|
-
data:
|
|
112
|
+
data: DataAttributes;
|
|
146
113
|
/**
|
|
147
|
-
* The <datalist> HTML element contains a set of <option> elements that represent the permissible or recommended
|
|
148
|
-
* options available to choose from within other controls.
|
|
114
|
+
* The <datalist> HTML element contains a set of <option> elements that represent the permissible or recommended options available to choose from within other controls.
|
|
149
115
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
|
|
150
116
|
*/
|
|
151
|
-
datalist:
|
|
117
|
+
datalist: DatalistAttributes;
|
|
152
118
|
/**
|
|
153
|
-
* The <dd> HTML element provides the description, definition, or value for the preceding term (<dt>) in a
|
|
154
|
-
* description list (<dl>). [17]
|
|
119
|
+
* The <dd> HTML element provides the description, definition, or value for the preceding term (<dt>) in a description list (<dl>).
|
|
155
120
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
|
|
156
121
|
*/
|
|
157
|
-
dd:
|
|
122
|
+
dd: DdAttributes;
|
|
158
123
|
/**
|
|
159
|
-
* The <del> HTML element represents a range of text that has been deleted from a document.
|
|
124
|
+
* The <del> HTML element represents a range of text that has been deleted from a document. This can be used when rendering "track changes" or source code diff information, for example. The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.
|
|
160
125
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
|
|
161
126
|
*/
|
|
162
|
-
del:
|
|
127
|
+
del: DelAttributes;
|
|
163
128
|
/**
|
|
164
|
-
* The <details> HTML element creates a disclosure widget in which information is visible only when the widget is
|
|
165
|
-
* toggled into an "open" state.
|
|
129
|
+
* The <details> HTML element creates a disclosure widget in which information is visible only when the widget is toggled into an open state. A summary or label must be provided using the <summary> element.
|
|
166
130
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
|
|
167
131
|
*/
|
|
168
|
-
details:
|
|
132
|
+
details: DetailsAttributes;
|
|
169
133
|
/**
|
|
170
|
-
* The <dfn> HTML element
|
|
171
|
-
* sentence. [15]
|
|
134
|
+
* The <dfn> HTML element indicates a term to be defined. The <dfn> element should be used in a complete definition statement, where the full definition of the term can be one of the following:
|
|
172
135
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
|
|
173
136
|
*/
|
|
174
|
-
dfn:
|
|
137
|
+
dfn: DfnAttributes;
|
|
175
138
|
/**
|
|
176
|
-
* The <dialog> HTML element represents a dialog box or other interactive component, such as a dismissible alert,
|
|
177
|
-
* inspector, or subwindow.
|
|
139
|
+
* The <dialog> HTML element represents a modal or non-modal dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.
|
|
178
140
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
|
|
179
141
|
*/
|
|
180
|
-
dialog:
|
|
142
|
+
dialog: DialogAttributes;
|
|
181
143
|
/**
|
|
182
|
-
* The
|
|
183
|
-
* @deprecated Use the `<ul>` element instead.
|
|
184
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dir
|
|
185
|
-
*/
|
|
186
|
-
dir: AnyAttributes<HTMLDirectoryElement>;
|
|
187
|
-
/**
|
|
188
|
-
* The <div> HTML element is the generic container for flow content. It has no effect on the content or layout
|
|
189
|
-
* until styled using CSS. [3]
|
|
144
|
+
* The <div> HTML element is the generic container for flow content. It has no effect on the content or layout until styled in some way using CSS (e.g., styling is directly applied to it, or some kind of layout model like Flexbox is applied to its parent element).
|
|
190
145
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
|
|
191
146
|
*/
|
|
192
|
-
div:
|
|
147
|
+
div: DivAttributes;
|
|
193
148
|
/**
|
|
194
|
-
* The <dl> HTML element represents a description list. The element encloses a list of groups of terms (specified
|
|
195
|
-
* using the <dt> element) and descriptions (provided by <dd> elements). [19]
|
|
149
|
+
* The <dl> HTML element represents a description list. The element encloses a list of groups of terms (specified using the <dt> element) and descriptions (provided by <dd> elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).
|
|
196
150
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
|
|
197
151
|
*/
|
|
198
|
-
dl:
|
|
152
|
+
dl: DlAttributes;
|
|
199
153
|
/**
|
|
200
|
-
* The <dt> HTML element specifies a term in a description or definition list, and as such must be used inside a
|
|
201
|
-
* <dl> element. [12]
|
|
154
|
+
* The <dt> HTML element specifies a term in a description or definition list, and as such must be used inside a <dl> element. It is usually followed by a <dd> element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next <dd> element.
|
|
202
155
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
|
|
203
156
|
*/
|
|
204
|
-
dt:
|
|
157
|
+
dt: DtAttributes;
|
|
205
158
|
/**
|
|
206
|
-
* The <em> HTML element marks text that has stress emphasis.
|
|
159
|
+
* The <em> HTML element marks text that has stress emphasis. The <em> element can be nested, with each level of nesting indicating a greater degree of emphasis.
|
|
207
160
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
|
|
208
161
|
*/
|
|
209
|
-
em:
|
|
162
|
+
em: EmAttributes;
|
|
210
163
|
/**
|
|
211
|
-
* The <embed> HTML element embeds external content at the specified point in the document. This content is
|
|
212
|
-
* provided by an external application or other source of interactive content such as a browser plug-in.
|
|
164
|
+
* The <embed> HTML element embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.
|
|
213
165
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
|
|
214
166
|
*/
|
|
215
|
-
embed:
|
|
167
|
+
embed: EmbedAttributes;
|
|
168
|
+
/**
|
|
169
|
+
* The <fencedframe> HTML element represents a nested browsing context, embedding another HTML page into the current one. <fencedframe>s are very similar to <iframe> elements in form and function, except that:
|
|
170
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fencedframe
|
|
171
|
+
*/
|
|
172
|
+
fencedframe: FencedframeAttributes;
|
|
216
173
|
/**
|
|
217
174
|
* The <fieldset> HTML element is used to group several controls as well as labels (<label>) within a web form.
|
|
218
175
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
|
|
219
176
|
*/
|
|
220
|
-
fieldset:
|
|
177
|
+
fieldset: FieldsetAttributes;
|
|
221
178
|
/**
|
|
222
|
-
* The <figcaption> HTML element represents a caption or legend describing the rest of the contents of its parent
|
|
223
|
-
* <figure> element. [12]
|
|
179
|
+
* The <figcaption> HTML element represents a caption or legend describing the rest of the contents of its parent <figure> element, providing the <figure> an accessible name.
|
|
224
180
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
|
|
225
181
|
*/
|
|
226
|
-
figcaption:
|
|
182
|
+
figcaption: FigcaptionAttributes;
|
|
227
183
|
/**
|
|
228
|
-
* The <figure> HTML element represents self-contained content, potentially with an optional caption, which is
|
|
229
|
-
* specified using the (<figcaption>) element. [7]
|
|
184
|
+
* The <figure> HTML element represents self-contained content, potentially with an optional caption, which is specified using the <figcaption> element. The figure, its caption, and its contents are referenced as a single unit.
|
|
230
185
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
|
|
231
186
|
*/
|
|
232
|
-
figure:
|
|
233
|
-
/**
|
|
234
|
-
* @deprecated
|
|
235
|
-
*/
|
|
236
|
-
font: AnyAttributes<HTMLFontElement>;
|
|
187
|
+
figure: FigureAttributes;
|
|
237
188
|
/**
|
|
238
|
-
* The <footer> HTML element represents a footer for its nearest sectioning content or sectioning root element. A
|
|
239
|
-
* <footer> typically contains information about the author of the section, copyright data or links to related
|
|
240
|
-
* documents.
|
|
189
|
+
* The <footer> HTML element represents a footer for its nearest ancestor sectioning content or sectioning root element. A <footer> typically contains information about the author of the section, copyright data or links to related documents.
|
|
241
190
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
|
|
242
191
|
*/
|
|
243
|
-
footer:
|
|
192
|
+
footer: FooterAttributes;
|
|
244
193
|
/**
|
|
245
194
|
* The <form> HTML element represents a document section containing interactive controls for submitting information.
|
|
246
195
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
|
|
247
196
|
*/
|
|
248
|
-
form:
|
|
197
|
+
form: FormAttributes;
|
|
249
198
|
/**
|
|
250
|
-
* The
|
|
251
|
-
*
|
|
252
|
-
* @deprecated Use `<iframe>` instead.
|
|
253
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frame
|
|
199
|
+
* The <h1> HTML element.
|
|
200
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
|
|
254
201
|
*/
|
|
255
|
-
|
|
202
|
+
h1: H1Attributes;
|
|
256
203
|
/**
|
|
257
|
-
* The
|
|
258
|
-
* @
|
|
259
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frameset
|
|
204
|
+
* The <h2> HTML element.
|
|
205
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
|
|
260
206
|
*/
|
|
261
|
-
|
|
207
|
+
h2: H2Attributes;
|
|
262
208
|
/**
|
|
263
|
-
* The <
|
|
264
|
-
*
|
|
265
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements
|
|
209
|
+
* The <h3> HTML element.
|
|
210
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
|
|
266
211
|
*/
|
|
267
|
-
|
|
268
|
-
h2: AnyAttributes<HTMLHeadingElement>;
|
|
269
|
-
h3: AnyAttributes<HTMLHeadingElement>;
|
|
270
|
-
h4: AnyAttributes<HTMLHeadingElement>;
|
|
271
|
-
h5: AnyAttributes<HTMLHeadingElement>;
|
|
272
|
-
h6: AnyAttributes<HTMLHeadingElement>;
|
|
212
|
+
h3: H3Attributes;
|
|
273
213
|
/**
|
|
274
|
-
* The <
|
|
275
|
-
*
|
|
214
|
+
* The <h4> HTML element.
|
|
215
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
|
|
216
|
+
*/
|
|
217
|
+
h4: H4Attributes;
|
|
218
|
+
/**
|
|
219
|
+
* The <h5> HTML element.
|
|
220
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
|
|
221
|
+
*/
|
|
222
|
+
h5: H5Attributes;
|
|
223
|
+
/**
|
|
224
|
+
* The <h6> HTML element.
|
|
225
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
|
|
226
|
+
*/
|
|
227
|
+
h6: H6Attributes;
|
|
228
|
+
/**
|
|
229
|
+
* The <head> HTML element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets. There can be only one <head> element in an HTML document.
|
|
276
230
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
|
|
277
231
|
*/
|
|
278
|
-
head:
|
|
232
|
+
head: HeadAttributes;
|
|
279
233
|
/**
|
|
280
|
-
* The <header> HTML element represents introductory content, typically a group of introductory or navigational
|
|
281
|
-
* aids. It may contain some heading elements but also a logo, a search form, an author name, and other elements.
|
|
234
|
+
* The <header> HTML element represents introductory content, typically a group of introductory or navigational aids. It may contain some heading elements but also a logo, a search form, an author name, and other elements.
|
|
282
235
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
|
|
283
236
|
*/
|
|
284
|
-
header:
|
|
237
|
+
header: HeaderAttributes;
|
|
285
238
|
/**
|
|
286
|
-
* The <hgroup> HTML element represents a
|
|
287
|
-
* <h1>–<h6> elements.
|
|
239
|
+
* The <hgroup> HTML element represents a heading and related content. It groups a single <h1>–<h6> element with one or more <p>.
|
|
288
240
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
|
|
289
241
|
*/
|
|
290
|
-
hgroup:
|
|
242
|
+
hgroup: HgroupAttributes;
|
|
291
243
|
/**
|
|
292
|
-
* The <hr> HTML element represents a thematic break between paragraph-level elements: for example, a change of
|
|
293
|
-
* scene in a story, or a shift of topic within a section. [10]
|
|
244
|
+
* The <hr> HTML element represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section.
|
|
294
245
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
|
|
295
246
|
*/
|
|
296
|
-
hr:
|
|
247
|
+
hr: HrAttributes;
|
|
297
248
|
/**
|
|
298
|
-
* The <html> HTML element represents the root (top-level element) of an HTML document, so it is also referred to
|
|
299
|
-
* as the root element. [1]
|
|
249
|
+
* The <html> HTML element represents the root (top-level element) of an HTML document, so it is also referred to as the _root element_. All other elements must be descendants of this element. There can be only one <html> element in a document.
|
|
300
250
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
|
|
301
251
|
*/
|
|
302
|
-
html:
|
|
252
|
+
html: HtmlAttributes;
|
|
303
253
|
/**
|
|
304
|
-
* The <i> HTML element represents a range of text that is set off from the normal text for some reason, such as
|
|
305
|
-
* idiomatic text, technical terms, taxonomical designations, among others. [11]
|
|
254
|
+
* The <i> HTML element represents a range of text that is set off from the normal text for some reason, such as idiomatic text, technical terms, taxonomical designations, among others. Historically, these have been presented using italicized type, which is the original source of the <i> naming of this element.
|
|
306
255
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
|
|
307
256
|
*/
|
|
308
|
-
i:
|
|
257
|
+
i: IAttributes;
|
|
309
258
|
/**
|
|
310
259
|
* The <iframe> HTML element represents a nested browsing context, embedding another HTML page into the current one.
|
|
311
260
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
|
|
312
261
|
*/
|
|
313
|
-
iframe:
|
|
262
|
+
iframe: IframeAttributes;
|
|
314
263
|
/**
|
|
315
264
|
* The <img> HTML element embeds an image into the document.
|
|
316
265
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
317
266
|
*/
|
|
318
|
-
img:
|
|
267
|
+
img: ImgAttributes;
|
|
319
268
|
/**
|
|
320
|
-
* The
|
|
321
|
-
*
|
|
322
|
-
* and user agent. The `<input>` element is one of the most powerful and complex in all of HTML due to the sheer
|
|
323
|
-
* number of combinations of input types and attributes.
|
|
269
|
+
* The <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.
|
|
270
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
|
|
324
271
|
*/
|
|
325
|
-
input: InputAttributes
|
|
272
|
+
input: InputAttributes;
|
|
326
273
|
/**
|
|
327
|
-
* The <ins> HTML element represents a range of text that has been added to a document.
|
|
274
|
+
* The <ins> HTML element represents a range of text that has been added to a document. You can use the <del> element to similarly represent a range of text that has been deleted from the document.
|
|
328
275
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
|
|
329
276
|
*/
|
|
330
|
-
ins:
|
|
277
|
+
ins: InsAttributes;
|
|
331
278
|
/**
|
|
332
|
-
* The <kbd> HTML element represents a span of inline text denoting textual user input from a keyboard, voice
|
|
333
|
-
* input, or any other text entry device. [8]
|
|
279
|
+
* The <kbd> HTML element represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device. By convention, the user agent defaults to rendering the contents of a <kbd> element using its default monospace font, although this is not mandated by the HTML standard.
|
|
334
280
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
|
|
335
281
|
*/
|
|
336
|
-
kbd:
|
|
282
|
+
kbd: KbdAttributes;
|
|
337
283
|
/**
|
|
338
|
-
*
|
|
339
|
-
*/
|
|
340
|
-
keygen: AnyAttributes;
|
|
341
|
-
/**
|
|
342
|
-
* The <label> HTML element represents a caption for an item in a user interface. [3]
|
|
284
|
+
* The <label> HTML element represents a caption for an item in a user interface.
|
|
343
285
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
344
286
|
*/
|
|
345
|
-
label:
|
|
287
|
+
label: LabelAttributes;
|
|
346
288
|
/**
|
|
347
|
-
* The <legend> HTML element represents a caption for the content of its parent <fieldset>.
|
|
289
|
+
* The <legend> HTML element represents a caption for the content of its parent <fieldset>.
|
|
348
290
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
|
|
349
291
|
*/
|
|
350
|
-
legend:
|
|
292
|
+
legend: LegendAttributes;
|
|
351
293
|
/**
|
|
352
|
-
* The <li> HTML element is used to represent an item in a list.
|
|
294
|
+
* The <li> HTML element is used to represent an item in a list. It must be contained in a parent element: an ordered list (<ol>), an unordered list (<ul>), or a menu (<menu>). In menus and unordered lists, list items are usually displayed using bullet points. In ordered lists, they are usually displayed with an ascending counter on the left, such as a number or letter.
|
|
353
295
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
|
|
354
296
|
*/
|
|
355
|
-
li:
|
|
297
|
+
li: LiAttributes;
|
|
356
298
|
/**
|
|
357
|
-
* The <link> HTML element specifies relationships between the current document and an external resource. This
|
|
358
|
-
* element is most commonly used to link to stylesheets, but is also used to establish site icons. [3]
|
|
299
|
+
* The <link> HTML element specifies relationships between the current document and an external resource. This element is most commonly used to link to stylesheets, but is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things.
|
|
359
300
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
|
|
360
301
|
*/
|
|
361
|
-
link:
|
|
302
|
+
link: LinkAttributes;
|
|
362
303
|
/**
|
|
363
|
-
* The <main> HTML element represents the dominant content of the <body> of a document.
|
|
304
|
+
* The <main> HTML element represents the dominant content of the <body> of a document. The main content area consists of content that is directly related to or expands upon the central topic of a document, or the central functionality of an application.
|
|
364
305
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
|
|
365
306
|
*/
|
|
366
|
-
main:
|
|
307
|
+
main: MainAttributes;
|
|
367
308
|
/**
|
|
368
309
|
* The <map> HTML element is used with <area> elements to define an image map (a clickable link area).
|
|
369
310
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
|
|
370
311
|
*/
|
|
371
|
-
map:
|
|
312
|
+
map: MapAttributes;
|
|
372
313
|
/**
|
|
373
|
-
* The <mark> HTML element represents text which is marked or highlighted for reference or notation purposes
|
|
374
|
-
* to the marked passage's relevance or importance in the enclosing context.
|
|
314
|
+
* The <mark> HTML element represents text which is marked or highlighted for reference or notation purposes due to the marked passage's relevance in the enclosing context.
|
|
375
315
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
|
|
376
316
|
*/
|
|
377
|
-
mark:
|
|
317
|
+
mark: MarkAttributes;
|
|
378
318
|
/**
|
|
379
|
-
* The
|
|
380
|
-
* @deprecated Use CSS animations instead.
|
|
381
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee
|
|
382
|
-
*/
|
|
383
|
-
marquee: AnyAttributes<HTMLMarqueeElement>;
|
|
384
|
-
/**
|
|
385
|
-
* The <menu> HTML element is a semantic alternative to <ul>. It represents an unordered list of items (which are
|
|
386
|
-
* represented by <li> elements).
|
|
319
|
+
* The <menu> HTML element is described in the HTML specification as a semantic alternative to <ul>, but treated by browsers (and exposed through the accessibility tree) as no different than <ul>. It represents an unordered list of items (which are represented by <li> elements).
|
|
387
320
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
|
|
388
321
|
*/
|
|
389
|
-
menu:
|
|
390
|
-
/**
|
|
391
|
-
* The `<menuitem>` HTML element defines a command/menu item that the user can invoke from a popup menu.
|
|
392
|
-
* @deprecated
|
|
393
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
|
|
394
|
-
*/
|
|
395
|
-
menuitem: AnyAttributes;
|
|
322
|
+
menu: MenuAttributes;
|
|
396
323
|
/**
|
|
397
|
-
* The <meta> HTML element represents metadata that cannot be represented by other
|
|
398
|
-
* <base>, <link>, <script>, <style> or <title>. [3]
|
|
324
|
+
* The <meta> HTML element represents metadata that cannot be represented by other meta-related elements, such as <base>, <link>, <script>, <style>, or <title>.
|
|
399
325
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
|
|
400
326
|
*/
|
|
401
|
-
meta:
|
|
327
|
+
meta: MetaAttributes;
|
|
402
328
|
/**
|
|
403
|
-
* The <meter> HTML element represents either a scalar value within a known range or a fractional value.
|
|
329
|
+
* The <meter> HTML element represents either a scalar value within a known range or a fractional value.
|
|
404
330
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
|
|
405
331
|
*/
|
|
406
|
-
meter:
|
|
332
|
+
meter: MeterAttributes;
|
|
407
333
|
/**
|
|
408
|
-
* The <nav> HTML element represents a section of a page whose purpose is to provide navigation links, either
|
|
409
|
-
* within the current document or to other documents. Common examples of navigation sections are menus, tables of
|
|
410
|
-
* contents, and indexes.
|
|
334
|
+
* The <nav> HTML element represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.
|
|
411
335
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
|
|
412
336
|
*/
|
|
413
|
-
nav:
|
|
414
|
-
/**
|
|
415
|
-
* @deprecated
|
|
416
|
-
*/
|
|
417
|
-
nobr: AnyAttributes;
|
|
418
|
-
/**
|
|
419
|
-
* The `<noembed>` HTML element is an obsolete, non-standard way to provide alternative, or "fallback", content for
|
|
420
|
-
* browsers that do not support the `<embed>` element.
|
|
421
|
-
* @deprecated Use the `<object>` element instead.
|
|
422
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noembed
|
|
423
|
-
*/
|
|
424
|
-
noembed: AnyAttributes;
|
|
425
|
-
/**
|
|
426
|
-
* The `<noframes>` element provides content to be displayed in browsers that do not support, or are configured not
|
|
427
|
-
* to support, the `<frame>` element.
|
|
428
|
-
* @deprecated
|
|
429
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noframes
|
|
430
|
-
*/
|
|
431
|
-
noframes: AnyAttributes;
|
|
337
|
+
nav: NavAttributes;
|
|
432
338
|
/**
|
|
433
|
-
* The <noscript> HTML element defines a section of HTML to be inserted if a script type on the page is unsupported
|
|
434
|
-
* or if scripting is currently turned off in the browser.
|
|
339
|
+
* The <noscript> HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.
|
|
435
340
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
|
|
436
341
|
*/
|
|
437
|
-
noscript:
|
|
342
|
+
noscript: NoscriptAttributes;
|
|
438
343
|
/**
|
|
439
|
-
* The <object> HTML element represents an external resource, which can be treated as an image, a nested browsing
|
|
440
|
-
* context, or a resource to be handled by a plugin.
|
|
344
|
+
* The <object> HTML element represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
|
|
441
345
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
|
|
442
346
|
*/
|
|
443
|
-
object:
|
|
347
|
+
object: ObjectAttributes;
|
|
444
348
|
/**
|
|
445
349
|
* The <ol> HTML element represents an ordered list of items — typically rendered as a numbered list.
|
|
446
350
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
|
447
351
|
*/
|
|
448
|
-
ol:
|
|
352
|
+
ol: OlAttributes;
|
|
449
353
|
/**
|
|
450
|
-
* The <optgroup> HTML element creates a grouping of options within a <select> element.
|
|
354
|
+
* The <optgroup> HTML element creates a grouping of options within a <select> element.
|
|
451
355
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
|
|
452
356
|
*/
|
|
453
|
-
optgroup:
|
|
357
|
+
optgroup: OptgroupAttributes;
|
|
454
358
|
/**
|
|
455
|
-
* The <option> HTML element is used to define an item contained in a <select>, an <optgroup>, or a <datalist>
|
|
456
|
-
* element. As such, <option> can represent menu items in popups and other lists of items in an HTML document. [3]
|
|
359
|
+
* The <option> HTML element is used to define an item contained in a <select>, an <optgroup>, or a <datalist> element. As such, <option> can represent menu items in popups and other lists of items in an HTML document.
|
|
457
360
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
|
458
361
|
*/
|
|
459
|
-
option:
|
|
362
|
+
option: OptionAttributes;
|
|
460
363
|
/**
|
|
461
|
-
* The <output> HTML element is a container element into which a site or app can inject the results of a
|
|
462
|
-
* calculation or the outcome of a user action.
|
|
364
|
+
* The <output> HTML element is a container element into which a site or app can inject the results of a calculation or the outcome of a user action.
|
|
463
365
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
|
|
464
366
|
*/
|
|
465
|
-
output:
|
|
367
|
+
output: OutputAttributes;
|
|
466
368
|
/**
|
|
467
|
-
* The <p> HTML element represents a paragraph.
|
|
369
|
+
* The <p> HTML element represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields.
|
|
468
370
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
|
|
469
371
|
*/
|
|
470
|
-
p:
|
|
471
|
-
/**
|
|
472
|
-
* The `<param>` HTML element defines parameters for an `<object>` element.
|
|
473
|
-
* @deprecated
|
|
474
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
|
|
475
|
-
*/
|
|
476
|
-
param: AnyAttributes<HTMLParamElement>;
|
|
372
|
+
p: PAttributes;
|
|
477
373
|
/**
|
|
478
|
-
* The <picture> HTML element contains zero or more <source> elements and one <img> element to offer alternative
|
|
479
|
-
* versions of an image for different display/device scenarios.
|
|
374
|
+
* The <picture> HTML element contains zero or more <source> elements and one <img> element to offer alternative versions of an image for different display/device scenarios.
|
|
480
375
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
|
|
481
376
|
*/
|
|
482
|
-
picture:
|
|
377
|
+
picture: PictureAttributes;
|
|
483
378
|
/**
|
|
484
|
-
* The
|
|
485
|
-
* HTML.
|
|
486
|
-
* @deprecated Use the `<pre>` or `<code>` element instead, or serve a text file with the `text/plain` MIME type.
|
|
487
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/plaintext
|
|
488
|
-
*/
|
|
489
|
-
plaintext: AnyAttributes;
|
|
490
|
-
/**
|
|
491
|
-
* The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML
|
|
492
|
-
* file. [3]
|
|
379
|
+
* The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or monospaced font.
|
|
493
380
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
|
|
494
381
|
*/
|
|
495
|
-
pre:
|
|
382
|
+
pre: PreAttributes;
|
|
496
383
|
/**
|
|
497
|
-
* The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed
|
|
498
|
-
* as a progress bar.
|
|
384
|
+
* The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
|
|
499
385
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
|
|
500
386
|
*/
|
|
501
|
-
progress:
|
|
387
|
+
progress: ProgressAttributes;
|
|
502
388
|
/**
|
|
503
|
-
* The <q> HTML element indicates that the enclosed text is a short inline quotation.
|
|
389
|
+
* The <q> HTML element indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks. This element is intended for short quotations that don't require paragraph breaks; for long quotations use the <blockquote> element.
|
|
504
390
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
|
|
505
391
|
*/
|
|
506
|
-
q:
|
|
392
|
+
q: QAttributes;
|
|
507
393
|
/**
|
|
508
|
-
* The
|
|
509
|
-
* @deprecated
|
|
510
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rb
|
|
511
|
-
*/
|
|
512
|
-
rb: AnyAttributes;
|
|
513
|
-
/**
|
|
514
|
-
* The <rp> HTML element is used to provide fall-back parentheses for browsers that do not support the display of
|
|
515
|
-
* ruby annotations using the <ruby> element. [9]
|
|
394
|
+
* The <rp> HTML element is used to provide fall-back parentheses for browsers that do not support display of ruby annotations using the <ruby> element. One <rp> element should enclose each of the opening and closing parentheses that wrap the <rt> element that contains the annotation's text.
|
|
516
395
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
|
|
517
396
|
*/
|
|
518
|
-
rp:
|
|
397
|
+
rp: RpAttributes;
|
|
519
398
|
/**
|
|
520
|
-
* The <rt> HTML element specifies the ruby text component of a ruby annotation, which is used to provide
|
|
521
|
-
* pronunciation, translation, or transliteration information for East Asian typography. The <rt> element must
|
|
522
|
-
* always be contained within a <ruby> element.
|
|
399
|
+
* The <rt> HTML element specifies the ruby text component of a ruby annotation, which is used to provide pronunciation, translation, or transliteration information for East Asian typography. The <rt> element must always be contained within a <ruby> element.
|
|
523
400
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
|
|
524
401
|
*/
|
|
525
|
-
rt:
|
|
526
|
-
/**
|
|
527
|
-
* @deprecated
|
|
528
|
-
*/
|
|
529
|
-
rtc: AnyAttributes;
|
|
402
|
+
rt: RtAttributes;
|
|
530
403
|
/**
|
|
531
|
-
* The <ruby> HTML element represents small annotations that are rendered above, below, or next to base text,
|
|
532
|
-
* usually used for showing the pronunciation of East Asian characters. [14]
|
|
404
|
+
* The <ruby> HTML element represents small annotations that are rendered above, below, or next to base text, usually used for showing the pronunciation of East Asian characters. It can also be used for annotating other kinds of text, but this usage is less common.
|
|
533
405
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
|
|
534
406
|
*/
|
|
535
|
-
ruby:
|
|
407
|
+
ruby: RubyAttributes;
|
|
536
408
|
/**
|
|
537
|
-
* The <s> HTML element renders text with a strikethrough, or a line through it. Use the <s> element to represent
|
|
538
|
-
* things that are no longer relevant or no longer accurate. [14]
|
|
409
|
+
* The <s> HTML element renders text with a strikethrough, or a line through it. Use the <s> element to represent things that are no longer relevant or no longer accurate. However, <s> is not appropriate when indicating document edits; for that, use the <del> and <ins> elements, as appropriate.
|
|
539
410
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
|
|
540
411
|
*/
|
|
541
|
-
s:
|
|
412
|
+
s: SAttributes;
|
|
542
413
|
/**
|
|
543
|
-
* The <samp> HTML element is used to enclose inline text which represents sample (or quoted) output from a
|
|
544
|
-
* computer program. [20]
|
|
414
|
+
* The <samp> HTML element is used to enclose inline text which represents sample (or quoted) output from a computer program. Its contents are typically rendered using the browser's default monospaced font (such as Courier>) or Lucida Console).
|
|
545
415
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
|
|
546
416
|
*/
|
|
547
|
-
samp:
|
|
417
|
+
samp: SampAttributes;
|
|
548
418
|
/**
|
|
549
|
-
* The <script> HTML element is used to embed executable code or data; this is typically used to embed or refer to
|
|
550
|
-
*
|
|
551
|
-
* programming language and JSON.
|
|
419
|
+
* The <script> HTML element is used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script> element can also be used with other languages, such as WebGL's GLSL shader programming language and JSON.
|
|
420
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
|
|
552
421
|
*/
|
|
553
|
-
script:
|
|
422
|
+
script: ScriptAttributes;
|
|
554
423
|
/**
|
|
555
|
-
* The <search> HTML element is a container
|
|
556
|
-
* other content related to performing a search or filtering operation.
|
|
424
|
+
* The <search> HTML element is a container representing the parts of the document or application with form controls or other content related to performing a search or filtering operation. The <search> element semantically identifies the purpose of the element's contents as having search or filtering capabilities. The search or filtering functionality can be for the website or application, the current web page or document, or the entire Internet or subsection thereof.
|
|
557
425
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
|
|
558
426
|
*/
|
|
559
|
-
search:
|
|
427
|
+
search: SearchAttributes;
|
|
560
428
|
/**
|
|
561
|
-
* The <section> HTML element represents a generic standalone section of a document, which doesn't have a more
|
|
562
|
-
* specific semantic element to represent it.
|
|
429
|
+
* The <section> HTML element represents a generic standalone section of a document, which doesn't have a more specific semantic element to represent it. Sections should always have a heading, with very few exceptions.
|
|
563
430
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
|
|
564
431
|
*/
|
|
565
|
-
section:
|
|
432
|
+
section: SectionAttributes;
|
|
566
433
|
/**
|
|
567
434
|
* The <select> HTML element represents a control that provides a menu of options.
|
|
568
435
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
|
|
569
436
|
*/
|
|
570
|
-
select:
|
|
437
|
+
select: SelectAttributes;
|
|
571
438
|
/**
|
|
572
|
-
* The <
|
|
573
|
-
*
|
|
439
|
+
* The <selectedcontent> HTML is used inside a <select> element to display the contents of its currently selected <option> within its first child <button>. This enables you to style all parts of a <select> element, referred to as "customizable selects".
|
|
440
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/selectedcontent
|
|
441
|
+
*/
|
|
442
|
+
selectedcontent: SelectedcontentAttributes;
|
|
443
|
+
/**
|
|
444
|
+
* The <slot> HTML element—part of the Web Components technology suite—is a placeholder inside a web component that you can fill with your own markup, which lets you create separate DOM trees and present them together.
|
|
574
445
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
|
|
575
446
|
*/
|
|
576
|
-
slot:
|
|
447
|
+
slot: SlotAttributes;
|
|
577
448
|
/**
|
|
578
|
-
* The <small> HTML element represents side-comments and small print, like copyright and legal text, independent of
|
|
579
|
-
* its styled presentation. [7]
|
|
449
|
+
* The <small> HTML element represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font-size smaller, such as from small to x-small.
|
|
580
450
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
|
|
581
451
|
*/
|
|
582
|
-
small:
|
|
452
|
+
small: SmallAttributes;
|
|
583
453
|
/**
|
|
584
|
-
* The <source> HTML element specifies
|
|
585
|
-
* <video> element.
|
|
454
|
+
* The <source> HTML element specifies one or more media resources for the <picture>, <audio>, and <video> elements. It is a void element, which means that it has no content and does not require a closing tag. This element is commonly used to offer the same media content in multiple file formats in order to provide compatibility with a broad range of browsers given their differing support for image file formats and media file formats.
|
|
586
455
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
|
|
587
456
|
*/
|
|
588
|
-
source:
|
|
457
|
+
source: SourceAttributes;
|
|
589
458
|
/**
|
|
590
|
-
* The <span> HTML element is a generic inline container for phrasing content, which does not inherently represent
|
|
591
|
-
* anything. It can be used to group elements for styling purposes (using the class or id attributes), or because
|
|
592
|
-
* they share attribute values, such as lang.
|
|
459
|
+
* The <span> HTML element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element is appropriate. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline-level element.
|
|
593
460
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
|
|
594
461
|
*/
|
|
595
|
-
span:
|
|
462
|
+
span: SpanAttributes;
|
|
596
463
|
/**
|
|
597
|
-
*
|
|
598
|
-
*/
|
|
599
|
-
strike: AnyAttributes;
|
|
600
|
-
/**
|
|
601
|
-
* The <strong> HTML element indicates that its contents have strong importance, seriousness, or urgency. Browsers
|
|
602
|
-
* typically render the contents in bold type.
|
|
464
|
+
* The <strong> HTML element indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.
|
|
603
465
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
|
|
604
466
|
*/
|
|
605
|
-
strong:
|
|
467
|
+
strong: StrongAttributes;
|
|
606
468
|
/**
|
|
607
|
-
* The <style> HTML element contains style information for a document, or part of a document.
|
|
469
|
+
* The <style> HTML element contains style information for a document, or part of a document. It contains CSS, which is applied to the contents of the document containing the <style> element.
|
|
608
470
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
|
|
609
471
|
*/
|
|
610
|
-
style:
|
|
472
|
+
style: StyleAttributes;
|
|
611
473
|
/**
|
|
612
|
-
* The <sub> HTML element specifies inline text which should be displayed as subscript for solely typographical
|
|
613
|
-
* reasons.
|
|
474
|
+
* The <sub> HTML element specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.
|
|
614
475
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
|
|
615
476
|
*/
|
|
616
|
-
sub:
|
|
477
|
+
sub: SubAttributes;
|
|
617
478
|
/**
|
|
618
|
-
* The <summary> HTML element specifies a summary, caption, or legend for a <details> element's disclosure box.
|
|
479
|
+
* The <summary> HTML element specifies a summary, caption, or legend for a <details> element's disclosure box. Clicking the <summary> element toggles the state of the parent <details> element open and closed.
|
|
619
480
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
|
|
620
481
|
*/
|
|
621
|
-
summary:
|
|
482
|
+
summary: SummaryAttributes;
|
|
622
483
|
/**
|
|
623
|
-
* The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical
|
|
624
|
-
* reasons.
|
|
484
|
+
* The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.
|
|
625
485
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
|
|
626
486
|
*/
|
|
627
|
-
sup:
|
|
487
|
+
sup: SupAttributes;
|
|
628
488
|
/**
|
|
629
|
-
* The <table> HTML element represents tabular data
|
|
630
|
-
* comprised of rows and columns of cells containing data.
|
|
489
|
+
* The <table> HTML element represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
|
|
631
490
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
|
|
632
491
|
*/
|
|
633
|
-
table:
|
|
492
|
+
table: TableAttributes;
|
|
634
493
|
/**
|
|
635
|
-
* The <tbody> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the
|
|
636
|
-
* body of the table (<table>).
|
|
494
|
+
* The <tbody> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the body of a table's (main) data.
|
|
637
495
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
|
|
638
496
|
*/
|
|
639
|
-
tbody:
|
|
497
|
+
tbody: TbodyAttributes;
|
|
640
498
|
/**
|
|
641
|
-
* The <td> HTML element defines a cell of a table that contains data.
|
|
499
|
+
* The <td> HTML element defines a cell of a table that contains data and may be used as a child of the <tr> element.
|
|
642
500
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
|
|
643
501
|
*/
|
|
644
|
-
td:
|
|
502
|
+
td: TdAttributes;
|
|
645
503
|
/**
|
|
646
|
-
* The <template> HTML element
|
|
647
|
-
* is loaded but may be instantiated subsequently during runtime using JavaScript.
|
|
504
|
+
* The <template> HTML element serves as a mechanism for holding HTML fragments, which can either be used later via JavaScript or generated immediately into shadow DOM.
|
|
648
505
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
|
|
649
506
|
*/
|
|
650
|
-
template:
|
|
507
|
+
template: TemplateAttributes;
|
|
651
508
|
/**
|
|
652
|
-
* The <textarea> HTML element represents a multi-line plain-text editing control, useful when you want to allow
|
|
653
|
-
* users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.
|
|
509
|
+
* The <textarea> HTML element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.
|
|
654
510
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
|
|
655
511
|
*/
|
|
656
|
-
textarea:
|
|
512
|
+
textarea: TextareaAttributes;
|
|
657
513
|
/**
|
|
658
|
-
* The <tfoot> HTML element
|
|
514
|
+
* The <tfoot> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the foot of a table with information about the table's columns. This is usually a summary of the columns, e.g., a sum of the given numbers in a column.
|
|
659
515
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
|
|
660
516
|
*/
|
|
661
|
-
tfoot:
|
|
517
|
+
tfoot: TfootAttributes;
|
|
662
518
|
/**
|
|
663
|
-
* The <th> HTML element defines a cell as header of a group of table cells.
|
|
519
|
+
* The <th> HTML element defines a cell as the header of a group of table cells and may be used as a child of the <tr> element. The exact nature of this group is defined by the scope and headers attributes.
|
|
664
520
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
665
521
|
*/
|
|
666
|
-
th:
|
|
522
|
+
th: ThAttributes;
|
|
667
523
|
/**
|
|
668
|
-
* The <thead> HTML element
|
|
524
|
+
* The <thead> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the head of a table with information about the table's columns. This is usually in the form of column headers (<th> elements).
|
|
669
525
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
|
|
670
526
|
*/
|
|
671
|
-
thead:
|
|
527
|
+
thead: TheadAttributes;
|
|
672
528
|
/**
|
|
673
|
-
* The <time> HTML element represents a specific period in time.
|
|
529
|
+
* The <time> HTML element represents a specific period in time. It may include the datetime attribute to translate dates into machine-readable format, allowing for better search engine results or custom features such as reminders.
|
|
674
530
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
|
|
675
531
|
*/
|
|
676
|
-
time:
|
|
532
|
+
time: TimeAttributes;
|
|
677
533
|
/**
|
|
678
|
-
* The <title> HTML element defines the document's title that is shown in a browser's title bar or a page's tab.
|
|
534
|
+
* The <title> HTML element defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text; HTML tags within the element, if any, are also treated as plain text.
|
|
679
535
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
|
|
680
536
|
*/
|
|
681
|
-
title:
|
|
537
|
+
title: TitleAttributes;
|
|
682
538
|
/**
|
|
683
|
-
* The <tr> HTML element defines a row of cells in a table.
|
|
539
|
+
* The <tr> HTML element defines a row of cells in a table. The row's cells can then be established using a mix of <td> (data cell) and <th> (header cell) elements.
|
|
684
540
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
|
|
685
541
|
*/
|
|
686
|
-
tr:
|
|
542
|
+
tr: TrAttributes;
|
|
687
543
|
/**
|
|
688
|
-
* The <track> HTML element is used as a child of the media elements, <audio> and <video>.
|
|
689
|
-
* timed text tracks (or time-based data), for example to automatically handle subtitles.
|
|
544
|
+
* The <track> HTML element is used as a child of the media elements, <audio> and <video>. Each track element lets you specify a timed text track (or time-based data) that can be displayed in parallel with the media element, for example to overlay subtitles or closed captions on top of a video or alongside audio tracks.
|
|
690
545
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
|
|
691
546
|
*/
|
|
692
|
-
track:
|
|
693
|
-
/**
|
|
694
|
-
* @deprecated Use the `<code>` element or CSS for monospaced text instead.
|
|
695
|
-
*/
|
|
696
|
-
tt: AnyAttributes;
|
|
547
|
+
track: TrackAttributes;
|
|
697
548
|
/**
|
|
698
|
-
* The <u> HTML element represents a span of inline text which should be rendered in a way that indicates that it
|
|
699
|
-
* has a non-textual annotation.
|
|
549
|
+
* The <u> HTML element represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation. This is rendered by default as a single solid underline, but may be altered using CSS.
|
|
700
550
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
|
|
701
551
|
*/
|
|
702
|
-
u:
|
|
552
|
+
u: UAttributes;
|
|
703
553
|
/**
|
|
704
554
|
* The <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list.
|
|
705
555
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
|
|
706
556
|
*/
|
|
707
|
-
ul:
|
|
557
|
+
ul: UlAttributes;
|
|
708
558
|
/**
|
|
709
|
-
* The <var> HTML element represents the name of a variable in a mathematical expression or a programming context.
|
|
559
|
+
* The <var> HTML element represents the name of a variable in a mathematical expression or a programming context. It's typically presented using an italicized version of the current typeface, although that behavior is browser-dependent.
|
|
710
560
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
|
|
711
561
|
*/
|
|
712
|
-
var:
|
|
562
|
+
var: VarAttributes;
|
|
713
563
|
/**
|
|
714
|
-
* The <video> HTML element embeds a media player which supports video playback into the document.
|
|
564
|
+
* The <video> HTML element embeds a media player which supports video playback into the document. You can use <video> for audio content as well, but the <audio> element may provide a more appropriate user experience.
|
|
715
565
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
|
|
716
566
|
*/
|
|
717
|
-
video:
|
|
567
|
+
video: VideoAttributes;
|
|
718
568
|
/**
|
|
719
|
-
* The <wbr> HTML element represents a word break opportunity—a position within text where the browser may
|
|
720
|
-
* optionally break a line, though its line-breaking rules would not otherwise create a break at that location.
|
|
569
|
+
* The <wbr> HTML element represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location.
|
|
721
570
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
|
|
722
571
|
*/
|
|
723
|
-
wbr:
|
|
724
|
-
/**
|
|
725
|
-
* The `<xmp>` HTML element renders text between the start and end tags without interpreting the HTML in between
|
|
726
|
-
* and using a monospaced font.
|
|
727
|
-
* @deprecated Use the `<pre>` or `<code>` element instead.
|
|
728
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/xmp
|
|
729
|
-
*/
|
|
730
|
-
xmp: AnyAttributes<HTMLPreElement>;
|
|
572
|
+
wbr: WbrAttributes;
|
|
731
573
|
};
|