vue-jsx-vapor 2.3.6 → 2.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/api.cjs +2 -2
- package/dist/api.d.cts +3 -3
- package/dist/api.d.ts +3 -3
- package/dist/astro.cjs +4 -5
- package/dist/astro.d.cts +6 -8
- package/dist/astro.d.ts +6 -8
- package/dist/astro.js +2 -2
- package/dist/{chunk-BCwAaXi7.cjs → chunk-CUT6urMc.cjs} +0 -1
- package/dist/{core-B29W1zp3.cjs → core-BEqRwfoK.cjs} +1 -2
- package/dist/esbuild.cjs +4 -5
- package/dist/esbuild.d.cts +3 -3
- package/dist/esbuild.d.ts +3 -3
- package/dist/esbuild.js +2 -2
- package/dist/index.cjs +46 -5
- package/dist/index.d.cts +34 -2
- package/dist/index.d.ts +34 -2
- package/dist/index.js +43 -3
- package/dist/jsx-runtime.cjs +5 -6
- package/dist/jsx-runtime.d.cts +1171 -1178
- package/dist/jsx-runtime.d.ts +1171 -1178
- package/dist/nuxt.cjs +7 -8
- package/dist/nuxt.d.cts +4 -5
- package/dist/nuxt.d.ts +4 -5
- package/dist/nuxt.js +4 -4
- package/dist/options-BRfDD5qB.d.cts +18 -0
- package/dist/options-CeDGvYqS.d.ts +18 -0
- package/dist/options.d.cts +1 -2
- package/dist/options.d.ts +1 -2
- package/dist/{raw-CPEhZ9Wr.cjs → raw-BY1njZIx.cjs} +3 -4
- package/dist/{raw-D5n6wETp.js → raw-DecHkpC5.js} +1 -1
- package/dist/raw.cjs +3 -3
- package/dist/raw.d.cts +1 -1
- package/dist/raw.d.ts +1 -1
- package/dist/raw.js +1 -1
- package/dist/rolldown.cjs +5 -6
- package/dist/rolldown.d.cts +3 -3
- package/dist/rolldown.d.ts +3 -3
- package/dist/rolldown.js +2 -2
- package/dist/rollup.cjs +4 -5
- package/dist/rollup.d.cts +3 -3
- package/dist/rollup.d.ts +3 -3
- package/dist/rollup.js +2 -2
- package/dist/rspack.cjs +4 -5
- package/dist/rspack.d.cts +1 -1
- package/dist/rspack.d.ts +1 -1
- package/dist/rspack.js +2 -2
- package/dist/{unplugin-O-j6KrDW.js → unplugin-DeYNxSzL.js} +1 -1
- package/dist/{unplugin-BE5nHMyo.cjs → unplugin-JV7CydWf.cjs} +2 -3
- package/dist/unplugin.cjs +6 -6
- package/dist/unplugin.d.cts +4 -3
- package/dist/unplugin.d.ts +4 -3
- package/dist/unplugin.js +2 -2
- package/dist/vite-C2WptbyG.js +7 -0
- package/dist/{vite-CnMq6-74.cjs → vite-CVR2C-Wy.cjs} +1 -2
- package/dist/vite.cjs +5 -5
- package/dist/vite.d.cts +3 -3
- package/dist/vite.d.ts +3 -3
- package/dist/vite.js +3 -3
- package/dist/volar.cjs +3 -4
- package/dist/volar.d.cts +1 -1
- package/dist/volar.d.ts +1 -1
- package/dist/volar.js +1 -1
- package/dist/{webpack-DjBty3ZC.cjs → webpack-DWlp7dxs.cjs} +1 -2
- package/dist/{webpack-BnYgbUqF.js → webpack-mKQ7x4tg.js} +1 -1
- package/dist/webpack.cjs +5 -5
- package/dist/webpack.d.cts +3 -3
- package/dist/webpack.d.ts +3 -3
- package/dist/webpack.js +3 -3
- package/package.json +35 -91
- package/dist/options.d-BAyccQwr.d.ts +0 -20
- package/dist/options.d-CA70vgwp.d.cts +0 -20
- package/dist/vite-B8-AEirI.js +0 -7
package/dist/jsx-runtime.d.cts
CHANGED
|
@@ -1,401 +1,402 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as vue20 from "vue";
|
|
2
|
+
import * as vue0 from "vue";
|
|
3
|
+
import { Fragment, h } from "vue";
|
|
2
4
|
import * as CSS from "csstype";
|
|
3
5
|
|
|
4
6
|
//#region src/jsx-runtime/dom.d.ts
|
|
5
7
|
interface CSSProperties extends CSS.Properties<string | number>, CSS.PropertiesHyphen<string | number> {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
/**
|
|
9
|
+
* The index signature was removed to enable closed typing for style
|
|
10
|
+
* using CSSType. You're able to use type assertion or module augmentation
|
|
11
|
+
* to add properties or an index signature of your own.
|
|
12
|
+
*
|
|
13
|
+
* For examples and more information, visit:
|
|
14
|
+
* https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
|
|
15
|
+
*/
|
|
16
|
+
[v: `--${string}`]: string | number | undefined;
|
|
15
17
|
}
|
|
16
18
|
type Booleanish = boolean | 'true' | 'false';
|
|
17
19
|
type Numberish = number | string;
|
|
18
20
|
interface AriaAttributes {
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
21
|
+
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
22
|
+
'aria-activedescendant'?: string;
|
|
23
|
+
/** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
|
|
24
|
+
'aria-atomic'?: Booleanish;
|
|
25
|
+
/**
|
|
26
|
+
* Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
27
|
+
* presented if they are made.
|
|
28
|
+
*/
|
|
29
|
+
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
|
|
30
|
+
/** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
|
|
31
|
+
'aria-busy'?: Booleanish;
|
|
32
|
+
/**
|
|
33
|
+
* Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
|
|
34
|
+
* @see aria-pressed @see aria-selected.
|
|
35
|
+
*/
|
|
36
|
+
'aria-checked'?: Booleanish | 'mixed';
|
|
37
|
+
/**
|
|
38
|
+
* Defines the total number of columns in a table, grid, or treegrid.
|
|
39
|
+
* @see aria-colindex.
|
|
40
|
+
*/
|
|
41
|
+
'aria-colcount'?: Numberish;
|
|
42
|
+
/**
|
|
43
|
+
* Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
|
|
44
|
+
* @see aria-colcount @see aria-colspan.
|
|
45
|
+
*/
|
|
46
|
+
'aria-colindex'?: Numberish;
|
|
47
|
+
/**
|
|
48
|
+
* Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
49
|
+
* @see aria-colindex @see aria-rowspan.
|
|
50
|
+
*/
|
|
51
|
+
'aria-colspan'?: Numberish;
|
|
52
|
+
/**
|
|
53
|
+
* Identifies the element (or elements) whose contents or presence are controlled by the current element.
|
|
54
|
+
* @see aria-owns.
|
|
55
|
+
*/
|
|
56
|
+
'aria-controls'?: string;
|
|
57
|
+
/** Indicates the element that represents the current item within a container or set of related elements. */
|
|
58
|
+
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time';
|
|
59
|
+
/**
|
|
60
|
+
* Identifies the element (or elements) that describes the object.
|
|
61
|
+
* @see aria-labelledby
|
|
62
|
+
*/
|
|
63
|
+
'aria-describedby'?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Identifies the element that provides a detailed, extended description for the object.
|
|
66
|
+
* @see aria-describedby.
|
|
67
|
+
*/
|
|
68
|
+
'aria-details'?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
|
|
71
|
+
* @see aria-hidden @see aria-readonly.
|
|
72
|
+
*/
|
|
73
|
+
'aria-disabled'?: Booleanish;
|
|
74
|
+
/**
|
|
75
|
+
* Indicates what functions can be performed when a dragged object is released on the drop target.
|
|
76
|
+
* @deprecated in ARIA 1.1
|
|
77
|
+
*/
|
|
78
|
+
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
|
|
79
|
+
/**
|
|
80
|
+
* Identifies the element that provides an error message for the object.
|
|
81
|
+
* @see aria-invalid @see aria-describedby.
|
|
82
|
+
*/
|
|
83
|
+
'aria-errormessage'?: string;
|
|
84
|
+
/** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
|
|
85
|
+
'aria-expanded'?: Booleanish;
|
|
86
|
+
/**
|
|
87
|
+
* Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
88
|
+
* allows assistive technology to override the general default of reading in document source order.
|
|
89
|
+
*/
|
|
90
|
+
'aria-flowto'?: string;
|
|
91
|
+
/**
|
|
92
|
+
* Indicates an element's "grabbed" state in a drag-and-drop operation.
|
|
93
|
+
* @deprecated in ARIA 1.1
|
|
94
|
+
*/
|
|
95
|
+
'aria-grabbed'?: Booleanish;
|
|
96
|
+
/** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
|
|
97
|
+
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';
|
|
98
|
+
/**
|
|
99
|
+
* Indicates whether the element is exposed to an accessibility API.
|
|
100
|
+
* @see aria-disabled.
|
|
101
|
+
*/
|
|
102
|
+
'aria-hidden'?: Booleanish;
|
|
103
|
+
/**
|
|
104
|
+
* Indicates the entered value does not conform to the format expected by the application.
|
|
105
|
+
* @see aria-errormessage.
|
|
106
|
+
*/
|
|
107
|
+
'aria-invalid'?: Booleanish | 'grammar' | 'spelling';
|
|
108
|
+
/** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
|
|
109
|
+
'aria-keyshortcuts'?: string;
|
|
110
|
+
/**
|
|
111
|
+
* Defines a string value that labels the current element.
|
|
112
|
+
* @see aria-labelledby.
|
|
113
|
+
*/
|
|
114
|
+
'aria-label'?: string;
|
|
115
|
+
/**
|
|
116
|
+
* Identifies the element (or elements) that labels the current element.
|
|
117
|
+
* @see aria-describedby.
|
|
118
|
+
*/
|
|
119
|
+
'aria-labelledby'?: string;
|
|
120
|
+
/** Defines the hierarchical level of an element within a structure. */
|
|
121
|
+
'aria-level'?: Numberish;
|
|
122
|
+
/** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
|
|
123
|
+
'aria-live'?: 'off' | 'assertive' | 'polite';
|
|
124
|
+
/** Indicates whether an element is modal when displayed. */
|
|
125
|
+
'aria-modal'?: Booleanish;
|
|
126
|
+
/** Indicates whether a text box accepts multiple lines of input or only a single line. */
|
|
127
|
+
'aria-multiline'?: Booleanish;
|
|
128
|
+
/** Indicates that the user may select more than one item from the current selectable descendants. */
|
|
129
|
+
'aria-multiselectable'?: Booleanish;
|
|
130
|
+
/** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
|
|
131
|
+
'aria-orientation'?: 'horizontal' | 'vertical';
|
|
132
|
+
/**
|
|
133
|
+
* Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
134
|
+
* between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
|
|
135
|
+
* @see aria-controls.
|
|
136
|
+
*/
|
|
137
|
+
'aria-owns'?: string;
|
|
138
|
+
/**
|
|
139
|
+
* Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
140
|
+
* A hint could be a sample value or a brief description of the expected format.
|
|
141
|
+
*/
|
|
142
|
+
'aria-placeholder'?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
|
|
145
|
+
* @see aria-setsize.
|
|
146
|
+
*/
|
|
147
|
+
'aria-posinset'?: Numberish;
|
|
148
|
+
/**
|
|
149
|
+
* Indicates the current "pressed" state of toggle buttons.
|
|
150
|
+
* @see aria-checked @see aria-selected.
|
|
151
|
+
*/
|
|
152
|
+
'aria-pressed'?: Booleanish | 'mixed';
|
|
153
|
+
/**
|
|
154
|
+
* Indicates that the element is not editable, but is otherwise operable.
|
|
155
|
+
* @see aria-disabled.
|
|
156
|
+
*/
|
|
157
|
+
'aria-readonly'?: Booleanish;
|
|
158
|
+
/**
|
|
159
|
+
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
|
|
160
|
+
* @see aria-atomic.
|
|
161
|
+
*/
|
|
162
|
+
'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals';
|
|
163
|
+
/** Indicates that user input is required on the element before a form may be submitted. */
|
|
164
|
+
'aria-required'?: Booleanish;
|
|
165
|
+
/** Defines a human-readable, author-localized description for the role of an element. */
|
|
166
|
+
'aria-roledescription'?: string;
|
|
167
|
+
/**
|
|
168
|
+
* Defines the total number of rows in a table, grid, or treegrid.
|
|
169
|
+
* @see aria-rowindex.
|
|
170
|
+
*/
|
|
171
|
+
'aria-rowcount'?: Numberish;
|
|
172
|
+
/**
|
|
173
|
+
* Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
|
|
174
|
+
* @see aria-rowcount @see aria-rowspan.
|
|
175
|
+
*/
|
|
176
|
+
'aria-rowindex'?: Numberish;
|
|
177
|
+
/**
|
|
178
|
+
* Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
179
|
+
* @see aria-rowindex @see aria-colspan.
|
|
180
|
+
*/
|
|
181
|
+
'aria-rowspan'?: Numberish;
|
|
182
|
+
/**
|
|
183
|
+
* Indicates the current "selected" state of various widgets.
|
|
184
|
+
* @see aria-checked @see aria-pressed.
|
|
185
|
+
*/
|
|
186
|
+
'aria-selected'?: Booleanish;
|
|
187
|
+
/**
|
|
188
|
+
* Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
|
|
189
|
+
* @see aria-posinset.
|
|
190
|
+
*/
|
|
191
|
+
'aria-setsize'?: Numberish;
|
|
192
|
+
/** Indicates if items in a table or grid are sorted in ascending or descending order. */
|
|
193
|
+
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
|
|
194
|
+
/** Defines the maximum allowed value for a range widget. */
|
|
195
|
+
'aria-valuemax'?: Numberish;
|
|
196
|
+
/** Defines the minimum allowed value for a range widget. */
|
|
197
|
+
'aria-valuemin'?: Numberish;
|
|
198
|
+
/**
|
|
199
|
+
* Defines the current value for a range widget.
|
|
200
|
+
* @see aria-valuetext.
|
|
201
|
+
*/
|
|
202
|
+
'aria-valuenow'?: Numberish;
|
|
203
|
+
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
204
|
+
'aria-valuetext'?: string;
|
|
203
205
|
}
|
|
204
206
|
/**
|
|
205
|
-
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin MDN}
|
|
206
|
-
*/
|
|
207
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin MDN}
|
|
208
|
+
*/
|
|
207
209
|
type CrossOrigin = 'anonymous' | 'use-credentials' | '';
|
|
208
210
|
type StyleValue = false | null | undefined | string | CSSProperties | Array<StyleValue>;
|
|
209
211
|
interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, EventHandlers<Events<T>> {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
212
|
+
innerHTML?: string;
|
|
213
|
+
class?: any;
|
|
214
|
+
style?: StyleValue;
|
|
215
|
+
accesskey?: string;
|
|
216
|
+
autocapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters' | undefined | (string & {});
|
|
217
|
+
autofocus?: Booleanish;
|
|
218
|
+
contenteditable?: Booleanish | 'inherit' | 'plaintext-only';
|
|
219
|
+
contextmenu?: string;
|
|
220
|
+
dir?: string;
|
|
221
|
+
draggable?: Booleanish;
|
|
222
|
+
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
|
|
223
|
+
hidden?: Booleanish | '' | 'hidden' | 'until-found';
|
|
224
|
+
id?: string;
|
|
225
|
+
inert?: Booleanish;
|
|
226
|
+
lang?: string;
|
|
227
|
+
nonce?: string;
|
|
228
|
+
placeholder?: string;
|
|
229
|
+
spellcheck?: Booleanish;
|
|
230
|
+
tabindex?: Numberish;
|
|
231
|
+
title?: string;
|
|
232
|
+
translate?: 'yes' | 'no';
|
|
233
|
+
radiogroup?: string;
|
|
234
|
+
role?: string;
|
|
235
|
+
about?: string;
|
|
236
|
+
content?: string;
|
|
237
|
+
datatype?: string;
|
|
238
|
+
inlist?: any;
|
|
239
|
+
prefix?: string;
|
|
240
|
+
property?: string;
|
|
241
|
+
rel?: string;
|
|
242
|
+
resource?: string;
|
|
243
|
+
rev?: string;
|
|
244
|
+
typeof?: string;
|
|
245
|
+
vocab?: string;
|
|
246
|
+
autocorrect?: string;
|
|
247
|
+
autosave?: string;
|
|
248
|
+
color?: string;
|
|
249
|
+
itemprop?: string;
|
|
250
|
+
itemscope?: Booleanish;
|
|
251
|
+
itemtype?: string;
|
|
252
|
+
itemid?: string;
|
|
253
|
+
itemref?: string;
|
|
254
|
+
results?: Numberish;
|
|
255
|
+
security?: string;
|
|
256
|
+
unselectable?: 'on' | 'off';
|
|
257
|
+
/**
|
|
258
|
+
* Hints at the type of data that might be entered by the user while editing the element or its contents
|
|
259
|
+
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
|
|
260
|
+
*/
|
|
261
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
262
|
+
/**
|
|
263
|
+
* Specify that a standard HTML element should behave like a defined custom built-in element
|
|
264
|
+
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
|
265
|
+
*/
|
|
266
|
+
is?: string;
|
|
265
267
|
}
|
|
266
268
|
type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
267
269
|
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
270
|
+
download?: any;
|
|
271
|
+
href?: string;
|
|
272
|
+
hreflang?: string;
|
|
273
|
+
media?: string;
|
|
274
|
+
ping?: string;
|
|
275
|
+
rel?: string;
|
|
276
|
+
target?: string;
|
|
277
|
+
type?: string;
|
|
278
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
277
279
|
}
|
|
278
280
|
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
}
|
|
289
|
-
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
290
|
-
}
|
|
281
|
+
alt?: string;
|
|
282
|
+
coords?: string;
|
|
283
|
+
download?: any;
|
|
284
|
+
href?: string;
|
|
285
|
+
hreflang?: string;
|
|
286
|
+
media?: string;
|
|
287
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
288
|
+
shape?: string;
|
|
289
|
+
target?: string;
|
|
290
|
+
}
|
|
291
|
+
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
|
|
291
292
|
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
292
|
-
|
|
293
|
-
|
|
293
|
+
href?: string;
|
|
294
|
+
target?: string;
|
|
294
295
|
}
|
|
295
296
|
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
296
|
-
|
|
297
|
+
cite?: string;
|
|
297
298
|
}
|
|
298
299
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
300
|
+
disabled?: Booleanish;
|
|
301
|
+
form?: string;
|
|
302
|
+
formaction?: string;
|
|
303
|
+
formenctype?: string;
|
|
304
|
+
formmethod?: string;
|
|
305
|
+
formnovalidate?: Booleanish;
|
|
306
|
+
formtarget?: string;
|
|
307
|
+
name?: string;
|
|
308
|
+
type?: 'submit' | 'reset' | 'button';
|
|
309
|
+
value?: string | ReadonlyArray<string> | number;
|
|
309
310
|
}
|
|
310
311
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
311
|
-
|
|
312
|
-
|
|
312
|
+
height?: Numberish;
|
|
313
|
+
width?: Numberish;
|
|
313
314
|
}
|
|
314
315
|
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
315
|
-
|
|
316
|
-
|
|
316
|
+
span?: Numberish;
|
|
317
|
+
width?: Numberish;
|
|
317
318
|
}
|
|
318
319
|
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
319
|
-
|
|
320
|
+
span?: Numberish;
|
|
320
321
|
}
|
|
321
322
|
interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
322
|
-
|
|
323
|
+
value?: string | ReadonlyArray<string> | number;
|
|
323
324
|
}
|
|
324
325
|
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
326
|
+
name?: string;
|
|
327
|
+
open?: Booleanish;
|
|
328
|
+
onToggle?: (payload: ToggleEvent) => void;
|
|
328
329
|
}
|
|
329
330
|
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
330
|
-
|
|
331
|
-
|
|
331
|
+
cite?: string;
|
|
332
|
+
datetime?: string;
|
|
332
333
|
}
|
|
333
334
|
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
334
|
-
|
|
335
|
-
|
|
335
|
+
open?: Booleanish;
|
|
336
|
+
onClose?: (payload: Event) => void;
|
|
336
337
|
}
|
|
337
338
|
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
339
|
+
height?: Numberish;
|
|
340
|
+
src?: string;
|
|
341
|
+
type?: string;
|
|
342
|
+
width?: Numberish;
|
|
342
343
|
}
|
|
343
344
|
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
345
|
+
disabled?: Booleanish;
|
|
346
|
+
form?: string;
|
|
347
|
+
name?: string;
|
|
347
348
|
}
|
|
348
349
|
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
350
|
+
acceptcharset?: string;
|
|
351
|
+
action?: string;
|
|
352
|
+
autocomplete?: string;
|
|
353
|
+
enctype?: string;
|
|
354
|
+
method?: string;
|
|
355
|
+
name?: string;
|
|
356
|
+
novalidate?: Booleanish;
|
|
357
|
+
target?: string;
|
|
357
358
|
}
|
|
358
359
|
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
359
|
-
|
|
360
|
+
manifest?: string;
|
|
360
361
|
}
|
|
361
362
|
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
363
|
+
allow?: string;
|
|
364
|
+
allowfullscreen?: Booleanish;
|
|
365
|
+
allowtransparency?: Booleanish;
|
|
366
|
+
/** @deprecated */
|
|
367
|
+
frameborder?: Numberish;
|
|
368
|
+
height?: Numberish;
|
|
369
|
+
loading?: 'eager' | 'lazy';
|
|
370
|
+
/** @deprecated */
|
|
371
|
+
marginheight?: Numberish;
|
|
372
|
+
/** @deprecated */
|
|
373
|
+
marginwidth?: Numberish;
|
|
374
|
+
name?: string;
|
|
375
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
376
|
+
sandbox?: string;
|
|
377
|
+
/** @deprecated */
|
|
378
|
+
scrolling?: string;
|
|
379
|
+
seamless?: Booleanish;
|
|
380
|
+
src?: string;
|
|
381
|
+
srcdoc?: string;
|
|
382
|
+
width?: Numberish;
|
|
382
383
|
}
|
|
383
384
|
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
385
|
+
alt?: string;
|
|
386
|
+
crossorigin?: CrossOrigin;
|
|
387
|
+
decoding?: 'async' | 'auto' | 'sync';
|
|
388
|
+
height?: Numberish;
|
|
389
|
+
loading?: 'eager' | 'lazy';
|
|
390
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
391
|
+
sizes?: string;
|
|
392
|
+
src?: string;
|
|
393
|
+
srcset?: string;
|
|
394
|
+
usemap?: string;
|
|
395
|
+
width?: Numberish;
|
|
395
396
|
}
|
|
396
397
|
interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
397
|
-
|
|
398
|
-
|
|
398
|
+
cite?: string;
|
|
399
|
+
datetime?: string;
|
|
399
400
|
}
|
|
400
401
|
type InputTypeHTMLAttribute = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | (string & {});
|
|
401
402
|
type AutoFillAddressKind = 'billing' | 'shipping';
|
|
@@ -411,951 +412,943 @@ type AutoFillSection = `section-${string}`;
|
|
|
411
412
|
type AutoFill = AutoFillBase | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<AutoFillAddressKind>}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
|
|
412
413
|
type HTMLInputAutoCompleteAttribute = AutoFill | (string & {});
|
|
413
414
|
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
415
|
+
accept?: string;
|
|
416
|
+
alt?: string;
|
|
417
|
+
autocomplete?: HTMLInputAutoCompleteAttribute;
|
|
418
|
+
capture?: boolean | 'user' | 'environment';
|
|
419
|
+
checked?: Booleanish | any[] | Set<any>;
|
|
420
|
+
disabled?: Booleanish;
|
|
421
|
+
form?: string;
|
|
422
|
+
formaction?: string;
|
|
423
|
+
formenctype?: string;
|
|
424
|
+
formmethod?: string;
|
|
425
|
+
formnovalidate?: Booleanish;
|
|
426
|
+
formtarget?: string;
|
|
427
|
+
height?: Numberish;
|
|
428
|
+
indeterminate?: boolean;
|
|
429
|
+
list?: string;
|
|
430
|
+
max?: Numberish;
|
|
431
|
+
maxlength?: Numberish;
|
|
432
|
+
min?: Numberish;
|
|
433
|
+
minlength?: Numberish;
|
|
434
|
+
multiple?: Booleanish;
|
|
435
|
+
name?: string;
|
|
436
|
+
pattern?: string;
|
|
437
|
+
placeholder?: string;
|
|
438
|
+
readonly?: Booleanish;
|
|
439
|
+
required?: Booleanish;
|
|
440
|
+
size?: Numberish;
|
|
441
|
+
src?: string;
|
|
442
|
+
step?: Numberish;
|
|
443
|
+
type?: InputTypeHTMLAttribute;
|
|
444
|
+
value?: any;
|
|
445
|
+
width?: Numberish;
|
|
445
446
|
}
|
|
446
447
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
448
|
+
challenge?: string;
|
|
449
|
+
disabled?: Booleanish;
|
|
450
|
+
form?: string;
|
|
451
|
+
keytype?: string;
|
|
452
|
+
keyparams?: string;
|
|
453
|
+
name?: string;
|
|
453
454
|
}
|
|
454
455
|
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
455
|
-
|
|
456
|
-
|
|
456
|
+
for?: string;
|
|
457
|
+
form?: string;
|
|
457
458
|
}
|
|
458
459
|
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
459
|
-
|
|
460
|
+
value?: string | ReadonlyArray<string> | number;
|
|
460
461
|
}
|
|
461
462
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
463
|
+
as?: string;
|
|
464
|
+
crossorigin?: CrossOrigin;
|
|
465
|
+
fetchPriority?: 'high' | 'low' | 'auto';
|
|
466
|
+
href?: string;
|
|
467
|
+
hreflang?: string;
|
|
468
|
+
integrity?: string;
|
|
469
|
+
media?: string;
|
|
470
|
+
imageSrcSet?: string;
|
|
471
|
+
imageSizes?: string;
|
|
472
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
473
|
+
sizes?: string;
|
|
474
|
+
type?: string;
|
|
475
|
+
charset?: string;
|
|
475
476
|
}
|
|
476
477
|
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
477
|
-
|
|
478
|
+
name?: string;
|
|
478
479
|
}
|
|
479
480
|
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
480
|
-
|
|
481
|
+
type?: string;
|
|
481
482
|
}
|
|
482
483
|
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
484
|
+
autoplay?: Booleanish;
|
|
485
|
+
controls?: Booleanish;
|
|
486
|
+
controlslist?: string;
|
|
487
|
+
crossorigin?: CrossOrigin;
|
|
488
|
+
loop?: Booleanish;
|
|
489
|
+
mediagroup?: string;
|
|
490
|
+
muted?: Booleanish;
|
|
491
|
+
playsinline?: Booleanish;
|
|
492
|
+
preload?: string;
|
|
493
|
+
src?: string;
|
|
493
494
|
}
|
|
494
495
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
496
|
+
charset?: string;
|
|
497
|
+
content?: string;
|
|
498
|
+
httpequiv?: string;
|
|
499
|
+
media?: string | undefined;
|
|
500
|
+
name?: string;
|
|
500
501
|
}
|
|
501
502
|
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
503
|
+
form?: string;
|
|
504
|
+
high?: Numberish;
|
|
505
|
+
low?: Numberish;
|
|
506
|
+
max?: Numberish;
|
|
507
|
+
min?: Numberish;
|
|
508
|
+
optimum?: Numberish;
|
|
509
|
+
value?: string | ReadonlyArray<string> | number;
|
|
509
510
|
}
|
|
510
511
|
interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
511
|
-
|
|
512
|
+
cite?: string;
|
|
512
513
|
}
|
|
513
514
|
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
515
|
+
classid?: string;
|
|
516
|
+
data?: string;
|
|
517
|
+
form?: string;
|
|
518
|
+
height?: Numberish;
|
|
519
|
+
name?: string;
|
|
520
|
+
type?: string;
|
|
521
|
+
usemap?: string;
|
|
522
|
+
width?: Numberish;
|
|
523
|
+
wmode?: string;
|
|
523
524
|
}
|
|
524
525
|
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
526
|
+
reversed?: Booleanish;
|
|
527
|
+
start?: Numberish;
|
|
528
|
+
type?: '1' | 'a' | 'A' | 'i' | 'I';
|
|
528
529
|
}
|
|
529
530
|
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
530
|
-
|
|
531
|
-
|
|
531
|
+
disabled?: Booleanish;
|
|
532
|
+
label?: string;
|
|
532
533
|
}
|
|
533
534
|
interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
535
|
+
disabled?: Booleanish;
|
|
536
|
+
label?: string;
|
|
537
|
+
selected?: Booleanish;
|
|
538
|
+
value?: any;
|
|
538
539
|
}
|
|
539
540
|
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
541
|
+
for?: string;
|
|
542
|
+
form?: string;
|
|
543
|
+
name?: string;
|
|
543
544
|
}
|
|
544
545
|
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
545
|
-
|
|
546
|
-
|
|
546
|
+
name?: string;
|
|
547
|
+
value?: string | ReadonlyArray<string> | number;
|
|
547
548
|
}
|
|
548
549
|
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
549
|
-
|
|
550
|
-
|
|
550
|
+
max?: Numberish;
|
|
551
|
+
value?: string | ReadonlyArray<string> | number;
|
|
551
552
|
}
|
|
552
553
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
554
|
+
async?: Booleanish;
|
|
555
|
+
/** @deprecated */
|
|
556
|
+
charset?: string;
|
|
557
|
+
crossorigin?: CrossOrigin;
|
|
558
|
+
defer?: Booleanish;
|
|
559
|
+
integrity?: string;
|
|
560
|
+
nomodule?: Booleanish;
|
|
561
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
562
|
+
src?: string;
|
|
563
|
+
type?: string;
|
|
563
564
|
}
|
|
564
565
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
566
|
+
autocomplete?: string;
|
|
567
|
+
disabled?: Booleanish;
|
|
568
|
+
form?: string;
|
|
569
|
+
multiple?: Booleanish;
|
|
570
|
+
name?: string;
|
|
571
|
+
required?: Booleanish;
|
|
572
|
+
size?: Numberish;
|
|
573
|
+
value?: any;
|
|
573
574
|
}
|
|
574
575
|
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
576
|
+
height?: number;
|
|
577
|
+
media?: string;
|
|
578
|
+
sizes?: string;
|
|
579
|
+
src?: string;
|
|
580
|
+
srcset?: string;
|
|
581
|
+
type?: string;
|
|
582
|
+
width?: number;
|
|
582
583
|
}
|
|
583
584
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
585
|
+
media?: string;
|
|
586
|
+
scoped?: Booleanish;
|
|
587
|
+
type?: string;
|
|
587
588
|
}
|
|
588
589
|
interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
590
|
+
align?: 'left' | 'center' | 'right';
|
|
591
|
+
bgcolor?: string;
|
|
592
|
+
border?: number;
|
|
593
|
+
cellpadding?: Numberish;
|
|
594
|
+
cellspacing?: Numberish;
|
|
595
|
+
frame?: Booleanish;
|
|
596
|
+
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all';
|
|
597
|
+
summary?: string;
|
|
598
|
+
width?: Numberish;
|
|
598
599
|
}
|
|
599
600
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
601
|
+
autocomplete?: string;
|
|
602
|
+
cols?: Numberish;
|
|
603
|
+
dirname?: string;
|
|
604
|
+
disabled?: Booleanish;
|
|
605
|
+
form?: string;
|
|
606
|
+
maxlength?: Numberish;
|
|
607
|
+
minlength?: Numberish;
|
|
608
|
+
name?: string;
|
|
609
|
+
placeholder?: string;
|
|
610
|
+
readonly?: Booleanish;
|
|
611
|
+
required?: Booleanish;
|
|
612
|
+
rows?: Numberish;
|
|
613
|
+
value?: string | ReadonlyArray<string> | number | null;
|
|
614
|
+
wrap?: string;
|
|
614
615
|
}
|
|
615
616
|
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
617
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
618
|
+
colspan?: Numberish;
|
|
619
|
+
headers?: string;
|
|
620
|
+
rowspan?: Numberish;
|
|
621
|
+
scope?: string;
|
|
622
|
+
abbr?: string;
|
|
623
|
+
height?: Numberish;
|
|
624
|
+
width?: Numberish;
|
|
625
|
+
valign?: 'top' | 'middle' | 'bottom' | 'baseline';
|
|
625
626
|
}
|
|
626
627
|
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
628
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
629
|
+
colspan?: Numberish;
|
|
630
|
+
headers?: string;
|
|
631
|
+
rowspan?: Numberish;
|
|
632
|
+
scope?: string;
|
|
633
|
+
abbr?: string;
|
|
633
634
|
}
|
|
634
635
|
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
635
|
-
|
|
636
|
+
datetime?: string;
|
|
636
637
|
}
|
|
637
638
|
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
639
|
+
default?: Booleanish;
|
|
640
|
+
kind?: string;
|
|
641
|
+
label?: string;
|
|
642
|
+
src?: string;
|
|
643
|
+
srclang?: string;
|
|
643
644
|
}
|
|
644
645
|
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
646
|
+
height?: Numberish;
|
|
647
|
+
playsinline?: Booleanish;
|
|
648
|
+
poster?: string;
|
|
649
|
+
width?: Numberish;
|
|
650
|
+
disablePictureInPicture?: Booleanish;
|
|
651
|
+
disableRemotePlayback?: Booleanish;
|
|
651
652
|
}
|
|
652
653
|
interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
654
|
+
allowfullscreen?: Booleanish;
|
|
655
|
+
allowpopups?: Booleanish;
|
|
656
|
+
autosize?: Booleanish;
|
|
657
|
+
blinkfeatures?: string;
|
|
658
|
+
disableblinkfeatures?: string;
|
|
659
|
+
disableguestresize?: Booleanish;
|
|
660
|
+
disablewebsecurity?: Booleanish;
|
|
661
|
+
guestinstance?: string;
|
|
662
|
+
httpreferrer?: string;
|
|
663
|
+
nodeintegration?: Booleanish;
|
|
664
|
+
partition?: string;
|
|
665
|
+
plugins?: Booleanish;
|
|
666
|
+
preload?: string;
|
|
667
|
+
src?: string;
|
|
668
|
+
useragent?: string;
|
|
669
|
+
webpreferences?: string;
|
|
669
670
|
}
|
|
670
671
|
interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
672
|
+
innerHTML?: string;
|
|
673
|
+
/**
|
|
674
|
+
* SVG Styling Attributes
|
|
675
|
+
* @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
|
|
676
|
+
*/
|
|
677
|
+
class?: any;
|
|
678
|
+
style?: StyleValue;
|
|
679
|
+
color?: string;
|
|
680
|
+
height?: Numberish;
|
|
681
|
+
id?: string;
|
|
682
|
+
lang?: string;
|
|
683
|
+
max?: Numberish;
|
|
684
|
+
media?: string;
|
|
685
|
+
method?: string;
|
|
686
|
+
min?: Numberish;
|
|
687
|
+
name?: string;
|
|
688
|
+
target?: string;
|
|
689
|
+
type?: string;
|
|
690
|
+
width?: Numberish;
|
|
691
|
+
role?: string;
|
|
692
|
+
tabindex?: Numberish;
|
|
693
|
+
crossOrigin?: CrossOrigin;
|
|
694
|
+
'accent-height'?: Numberish;
|
|
695
|
+
accumulate?: 'none' | 'sum';
|
|
696
|
+
additive?: 'replace' | 'sum';
|
|
697
|
+
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
698
|
+
allowReorder?: 'no' | 'yes';
|
|
699
|
+
alphabetic?: Numberish;
|
|
700
|
+
amplitude?: Numberish;
|
|
701
|
+
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
702
|
+
ascent?: Numberish;
|
|
703
|
+
attributeName?: string;
|
|
704
|
+
attributeType?: string;
|
|
705
|
+
autoReverse?: Numberish;
|
|
706
|
+
azimuth?: Numberish;
|
|
707
|
+
baseFrequency?: Numberish;
|
|
708
|
+
'baseline-shift'?: Numberish;
|
|
709
|
+
baseProfile?: Numberish;
|
|
710
|
+
bbox?: Numberish;
|
|
711
|
+
begin?: Numberish;
|
|
712
|
+
bias?: Numberish;
|
|
713
|
+
by?: Numberish;
|
|
714
|
+
calcMode?: Numberish;
|
|
715
|
+
'cap-height'?: Numberish;
|
|
716
|
+
clip?: Numberish;
|
|
717
|
+
'clip-path'?: string;
|
|
718
|
+
clipPathUnits?: Numberish;
|
|
719
|
+
'clip-rule'?: Numberish;
|
|
720
|
+
'color-interpolation'?: Numberish;
|
|
721
|
+
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
722
|
+
'color-profile'?: Numberish;
|
|
723
|
+
'color-rendering'?: Numberish;
|
|
724
|
+
contentScriptType?: Numberish;
|
|
725
|
+
contentStyleType?: Numberish;
|
|
726
|
+
cursor?: Numberish;
|
|
727
|
+
cx?: Numberish;
|
|
728
|
+
cy?: Numberish;
|
|
729
|
+
d?: string;
|
|
730
|
+
decelerate?: Numberish;
|
|
731
|
+
descent?: Numberish;
|
|
732
|
+
diffuseConstant?: Numberish;
|
|
733
|
+
direction?: Numberish;
|
|
734
|
+
display?: Numberish;
|
|
735
|
+
divisor?: Numberish;
|
|
736
|
+
'dominant-baseline'?: Numberish;
|
|
737
|
+
dur?: Numberish;
|
|
738
|
+
dx?: Numberish;
|
|
739
|
+
dy?: Numberish;
|
|
740
|
+
edgeMode?: Numberish;
|
|
741
|
+
elevation?: Numberish;
|
|
742
|
+
'enable-background'?: Numberish;
|
|
743
|
+
end?: Numberish;
|
|
744
|
+
exponent?: Numberish;
|
|
745
|
+
externalResourcesRequired?: Numberish;
|
|
746
|
+
fill?: string;
|
|
747
|
+
'fill-opacity'?: Numberish;
|
|
748
|
+
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
749
|
+
filter?: string;
|
|
750
|
+
filterRes?: Numberish;
|
|
751
|
+
filterUnits?: Numberish;
|
|
752
|
+
'flood-color'?: Numberish;
|
|
753
|
+
'flood-opacity'?: Numberish;
|
|
754
|
+
focusable?: Numberish;
|
|
755
|
+
'font-family'?: string;
|
|
756
|
+
'font-size'?: Numberish;
|
|
757
|
+
'font-size-adjust'?: Numberish;
|
|
758
|
+
'font-stretch'?: Numberish;
|
|
759
|
+
'font-style'?: Numberish;
|
|
760
|
+
'font-variant'?: Numberish;
|
|
761
|
+
'font-weight'?: Numberish;
|
|
762
|
+
format?: Numberish;
|
|
763
|
+
from?: Numberish;
|
|
764
|
+
fx?: Numberish;
|
|
765
|
+
fy?: Numberish;
|
|
766
|
+
g1?: Numberish;
|
|
767
|
+
g2?: Numberish;
|
|
768
|
+
'glyph-name'?: Numberish;
|
|
769
|
+
'glyph-orientation-horizontal'?: Numberish;
|
|
770
|
+
'glyph-orientation-vertical'?: Numberish;
|
|
771
|
+
glyphRef?: Numberish;
|
|
772
|
+
gradientTransform?: string;
|
|
773
|
+
gradientUnits?: string;
|
|
774
|
+
hanging?: Numberish;
|
|
775
|
+
'horiz-adv-x'?: Numberish;
|
|
776
|
+
'horiz-origin-x'?: Numberish;
|
|
777
|
+
href?: string;
|
|
778
|
+
ideographic?: Numberish;
|
|
779
|
+
'image-rendering'?: Numberish;
|
|
780
|
+
in2?: Numberish;
|
|
781
|
+
in?: string;
|
|
782
|
+
intercept?: Numberish;
|
|
783
|
+
k1?: Numberish;
|
|
784
|
+
k2?: Numberish;
|
|
785
|
+
k3?: Numberish;
|
|
786
|
+
k4?: Numberish;
|
|
787
|
+
k?: Numberish;
|
|
788
|
+
kernelMatrix?: Numberish;
|
|
789
|
+
kernelUnitLength?: Numberish;
|
|
790
|
+
kerning?: Numberish;
|
|
791
|
+
keyPoints?: Numberish;
|
|
792
|
+
keySplines?: Numberish;
|
|
793
|
+
keyTimes?: Numberish;
|
|
794
|
+
lengthAdjust?: Numberish;
|
|
795
|
+
'letter-spacing'?: Numberish;
|
|
796
|
+
'lighting-color'?: Numberish;
|
|
797
|
+
limitingConeAngle?: Numberish;
|
|
798
|
+
local?: Numberish;
|
|
799
|
+
'marker-end'?: string;
|
|
800
|
+
markerHeight?: Numberish;
|
|
801
|
+
'marker-mid'?: string;
|
|
802
|
+
'marker-start'?: string;
|
|
803
|
+
markerUnits?: Numberish;
|
|
804
|
+
markerWidth?: Numberish;
|
|
805
|
+
mask?: string;
|
|
806
|
+
maskContentUnits?: Numberish;
|
|
807
|
+
maskUnits?: Numberish;
|
|
808
|
+
mathematical?: Numberish;
|
|
809
|
+
mode?: Numberish;
|
|
810
|
+
numOctaves?: Numberish;
|
|
811
|
+
offset?: Numberish;
|
|
812
|
+
opacity?: Numberish;
|
|
813
|
+
operator?: Numberish;
|
|
814
|
+
order?: Numberish;
|
|
815
|
+
orient?: Numberish;
|
|
816
|
+
orientation?: Numberish;
|
|
817
|
+
origin?: Numberish;
|
|
818
|
+
overflow?: Numberish;
|
|
819
|
+
'overline-position'?: Numberish;
|
|
820
|
+
'overline-thickness'?: Numberish;
|
|
821
|
+
'paint-order'?: Numberish;
|
|
822
|
+
'panose-1'?: Numberish;
|
|
823
|
+
pathLength?: Numberish;
|
|
824
|
+
patternContentUnits?: string;
|
|
825
|
+
patternTransform?: Numberish;
|
|
826
|
+
patternUnits?: string;
|
|
827
|
+
'pointer-events'?: Numberish;
|
|
828
|
+
points?: string;
|
|
829
|
+
pointsAtX?: Numberish;
|
|
830
|
+
pointsAtY?: Numberish;
|
|
831
|
+
pointsAtZ?: Numberish;
|
|
832
|
+
preserveAlpha?: Numberish;
|
|
833
|
+
preserveAspectRatio?: string;
|
|
834
|
+
primitiveUnits?: Numberish;
|
|
835
|
+
r?: Numberish;
|
|
836
|
+
radius?: Numberish;
|
|
837
|
+
refX?: Numberish;
|
|
838
|
+
refY?: Numberish;
|
|
839
|
+
renderingIntent?: Numberish;
|
|
840
|
+
repeatCount?: Numberish;
|
|
841
|
+
repeatDur?: Numberish;
|
|
842
|
+
requiredExtensions?: Numberish;
|
|
843
|
+
requiredFeatures?: Numberish;
|
|
844
|
+
restart?: Numberish;
|
|
845
|
+
result?: string;
|
|
846
|
+
rotate?: Numberish;
|
|
847
|
+
rx?: Numberish;
|
|
848
|
+
ry?: Numberish;
|
|
849
|
+
scale?: Numberish;
|
|
850
|
+
seed?: Numberish;
|
|
851
|
+
'shape-rendering'?: Numberish;
|
|
852
|
+
slope?: Numberish;
|
|
853
|
+
spacing?: Numberish;
|
|
854
|
+
specularConstant?: Numberish;
|
|
855
|
+
specularExponent?: Numberish;
|
|
856
|
+
speed?: Numberish;
|
|
857
|
+
spreadMethod?: string;
|
|
858
|
+
startOffset?: Numberish;
|
|
859
|
+
stdDeviation?: Numberish;
|
|
860
|
+
stemh?: Numberish;
|
|
861
|
+
stemv?: Numberish;
|
|
862
|
+
stitchTiles?: Numberish;
|
|
863
|
+
'stop-color'?: string;
|
|
864
|
+
'stop-opacity'?: Numberish;
|
|
865
|
+
'strikethrough-position'?: Numberish;
|
|
866
|
+
'strikethrough-thickness'?: Numberish;
|
|
867
|
+
string?: Numberish;
|
|
868
|
+
stroke?: string;
|
|
869
|
+
'stroke-dasharray'?: Numberish;
|
|
870
|
+
'stroke-dashoffset'?: Numberish;
|
|
871
|
+
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
872
|
+
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
873
|
+
'stroke-miterlimit'?: Numberish;
|
|
874
|
+
'stroke-opacity'?: Numberish;
|
|
875
|
+
'stroke-width'?: Numberish;
|
|
876
|
+
surfaceScale?: Numberish;
|
|
877
|
+
systemLanguage?: Numberish;
|
|
878
|
+
tableValues?: Numberish;
|
|
879
|
+
targetX?: Numberish;
|
|
880
|
+
targetY?: Numberish;
|
|
881
|
+
'text-anchor'?: string;
|
|
882
|
+
'text-decoration'?: Numberish;
|
|
883
|
+
textLength?: Numberish;
|
|
884
|
+
'text-rendering'?: Numberish;
|
|
885
|
+
to?: Numberish;
|
|
886
|
+
transform?: string;
|
|
887
|
+
u1?: Numberish;
|
|
888
|
+
u2?: Numberish;
|
|
889
|
+
'underline-position'?: Numberish;
|
|
890
|
+
'underline-thickness'?: Numberish;
|
|
891
|
+
unicode?: Numberish;
|
|
892
|
+
'unicode-bidi'?: Numberish;
|
|
893
|
+
'unicode-range'?: Numberish;
|
|
894
|
+
'unitsPer-em'?: Numberish;
|
|
895
|
+
'v-alphabetic'?: Numberish;
|
|
896
|
+
values?: string;
|
|
897
|
+
'vector-effect'?: Numberish;
|
|
898
|
+
version?: string;
|
|
899
|
+
'vert-adv-y'?: Numberish;
|
|
900
|
+
'vert-origin-x'?: Numberish;
|
|
901
|
+
'vert-origin-y'?: Numberish;
|
|
902
|
+
'v-hanging'?: Numberish;
|
|
903
|
+
'v-ideographic'?: Numberish;
|
|
904
|
+
viewBox?: string;
|
|
905
|
+
viewTarget?: Numberish;
|
|
906
|
+
visibility?: Numberish;
|
|
907
|
+
'v-mathematical'?: Numberish;
|
|
908
|
+
widths?: Numberish;
|
|
909
|
+
'word-spacing'?: Numberish;
|
|
910
|
+
'writing-mode'?: Numberish;
|
|
911
|
+
x1?: Numberish;
|
|
912
|
+
x2?: Numberish;
|
|
913
|
+
x?: Numberish;
|
|
914
|
+
xChannelSelector?: string;
|
|
915
|
+
'x-height'?: Numberish;
|
|
916
|
+
xlinkActuate?: string;
|
|
917
|
+
xlinkArcrole?: string;
|
|
918
|
+
xlinkHref?: string;
|
|
919
|
+
xlinkRole?: string;
|
|
920
|
+
xlinkShow?: string;
|
|
921
|
+
xlinkTitle?: string;
|
|
922
|
+
xlinkType?: string;
|
|
923
|
+
xmlns?: string;
|
|
924
|
+
xmlnsXlink?: string;
|
|
925
|
+
y1?: Numberish;
|
|
926
|
+
y2?: Numberish;
|
|
927
|
+
y?: Numberish;
|
|
928
|
+
yChannelSelector?: string;
|
|
929
|
+
z?: Numberish;
|
|
930
|
+
zoomAndPan?: string;
|
|
930
931
|
}
|
|
931
932
|
interface IntrinsicElementAttributes {
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
933
|
+
a: AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
934
|
+
abbr: HTMLAttributes<HTMLElement>;
|
|
935
|
+
address: HTMLAttributes<HTMLElement>;
|
|
936
|
+
area: AreaHTMLAttributes<HTMLAreaElement>;
|
|
937
|
+
article: HTMLAttributes<HTMLElement>;
|
|
938
|
+
aside: HTMLAttributes<HTMLElement>;
|
|
939
|
+
audio: AudioHTMLAttributes<HTMLAudioElement>;
|
|
940
|
+
b: HTMLAttributes<HTMLElement>;
|
|
941
|
+
base: BaseHTMLAttributes<HTMLBaseElement>;
|
|
942
|
+
bdi: HTMLAttributes<HTMLElement>;
|
|
943
|
+
bdo: HTMLAttributes<HTMLElement>;
|
|
944
|
+
big: HTMLAttributes<HTMLElement>;
|
|
945
|
+
blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
|
|
946
|
+
body: HTMLAttributes<HTMLBodyElement>;
|
|
947
|
+
br: HTMLAttributes<HTMLBRElement>;
|
|
948
|
+
button: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
949
|
+
canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
950
|
+
caption: HTMLAttributes<HTMLElement>;
|
|
951
|
+
cite: HTMLAttributes<HTMLElement>;
|
|
952
|
+
code: HTMLAttributes<HTMLElement>;
|
|
953
|
+
col: ColHTMLAttributes<HTMLTableColElement>;
|
|
954
|
+
colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
955
|
+
data: DataHTMLAttributes<HTMLDataElement>;
|
|
956
|
+
datalist: HTMLAttributes<HTMLDataListElement>;
|
|
957
|
+
dd: HTMLAttributes<HTMLElement>;
|
|
958
|
+
del: DelHTMLAttributes<HTMLModElement>;
|
|
959
|
+
details: DetailsHTMLAttributes<HTMLDetailsElement>;
|
|
960
|
+
dfn: HTMLAttributes<HTMLElement>;
|
|
961
|
+
dialog: DialogHTMLAttributes<HTMLDialogElement>;
|
|
962
|
+
div: HTMLAttributes<HTMLDivElement>;
|
|
963
|
+
dl: HTMLAttributes<HTMLDListElement>;
|
|
964
|
+
dt: HTMLAttributes<HTMLElement>;
|
|
965
|
+
em: HTMLAttributes<HTMLElement>;
|
|
966
|
+
embed: EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
967
|
+
fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
968
|
+
figcaption: HTMLAttributes<HTMLElement>;
|
|
969
|
+
figure: HTMLAttributes<HTMLElement>;
|
|
970
|
+
footer: HTMLAttributes<HTMLElement>;
|
|
971
|
+
form: FormHTMLAttributes<HTMLFormElement>;
|
|
972
|
+
h1: HTMLAttributes<HTMLHeadingElement>;
|
|
973
|
+
h2: HTMLAttributes<HTMLHeadingElement>;
|
|
974
|
+
h3: HTMLAttributes<HTMLHeadingElement>;
|
|
975
|
+
h4: HTMLAttributes<HTMLHeadingElement>;
|
|
976
|
+
h5: HTMLAttributes<HTMLHeadingElement>;
|
|
977
|
+
h6: HTMLAttributes<HTMLHeadingElement>;
|
|
978
|
+
head: HTMLAttributes<HTMLHeadElement>;
|
|
979
|
+
header: HTMLAttributes<HTMLElement>;
|
|
980
|
+
hgroup: HTMLAttributes<HTMLElement>;
|
|
981
|
+
hr: HTMLAttributes<HTMLHRElement>;
|
|
982
|
+
html: HtmlHTMLAttributes<HTMLHtmlElement>;
|
|
983
|
+
i: HTMLAttributes<HTMLElement>;
|
|
984
|
+
iframe: IframeHTMLAttributes<HTMLIFrameElement>;
|
|
985
|
+
img: ImgHTMLAttributes<HTMLImageElement>;
|
|
986
|
+
input: InputHTMLAttributes<HTMLInputElement>;
|
|
987
|
+
ins: InsHTMLAttributes<HTMLModElement>;
|
|
988
|
+
kbd: HTMLAttributes<HTMLElement>;
|
|
989
|
+
keygen: KeygenHTMLAttributes<HTMLElement>;
|
|
990
|
+
label: LabelHTMLAttributes<HTMLLabelElement>;
|
|
991
|
+
legend: HTMLAttributes<HTMLLegendElement>;
|
|
992
|
+
li: LiHTMLAttributes<HTMLLIElement>;
|
|
993
|
+
link: LinkHTMLAttributes<HTMLLinkElement>;
|
|
994
|
+
main: HTMLAttributes<HTMLElement>;
|
|
995
|
+
map: MapHTMLAttributes<HTMLMapElement>;
|
|
996
|
+
mark: HTMLAttributes<HTMLElement>;
|
|
997
|
+
menu: MenuHTMLAttributes<HTMLElement>;
|
|
998
|
+
menuitem: HTMLAttributes<HTMLElement>;
|
|
999
|
+
meta: MetaHTMLAttributes<HTMLMetaElement>;
|
|
1000
|
+
meter: MeterHTMLAttributes<HTMLMeterElement>;
|
|
1001
|
+
nav: HTMLAttributes<HTMLElement>;
|
|
1002
|
+
noindex: HTMLAttributes<HTMLElement>;
|
|
1003
|
+
noscript: HTMLAttributes<HTMLObjectElement>;
|
|
1004
|
+
object: ObjectHTMLAttributes<HTMLObjectElement>;
|
|
1005
|
+
ol: OlHTMLAttributes<HTMLOListElement>;
|
|
1006
|
+
optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
1007
|
+
option: OptionHTMLAttributes<HTMLOptionElement>;
|
|
1008
|
+
output: OutputHTMLAttributes<HTMLOutputElement>;
|
|
1009
|
+
p: HTMLAttributes<HTMLParagraphElement>;
|
|
1010
|
+
param: ParamHTMLAttributes<HTMLParamElement>;
|
|
1011
|
+
picture: HTMLAttributes<HTMLElement>;
|
|
1012
|
+
pre: HTMLAttributes<HTMLPreElement>;
|
|
1013
|
+
progress: ProgressHTMLAttributes<HTMLProgressElement>;
|
|
1014
|
+
q: QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
1015
|
+
rp: HTMLAttributes<HTMLElement>;
|
|
1016
|
+
rt: HTMLAttributes<HTMLElement>;
|
|
1017
|
+
ruby: HTMLAttributes<HTMLElement>;
|
|
1018
|
+
s: HTMLAttributes<HTMLElement>;
|
|
1019
|
+
samp: HTMLAttributes<HTMLElement>;
|
|
1020
|
+
search: HTMLAttributes<HTMLElement>;
|
|
1021
|
+
script: ScriptHTMLAttributes<HTMLScriptElement>;
|
|
1022
|
+
section: HTMLAttributes<HTMLElement>;
|
|
1023
|
+
select: SelectHTMLAttributes<HTMLSelectElement>;
|
|
1024
|
+
small: HTMLAttributes<HTMLElement>;
|
|
1025
|
+
source: SourceHTMLAttributes<HTMLSourceElement>;
|
|
1026
|
+
span: HTMLAttributes<HTMLSpanElement>;
|
|
1027
|
+
strong: HTMLAttributes<HTMLElement>;
|
|
1028
|
+
style: StyleHTMLAttributes<HTMLStyleElement>;
|
|
1029
|
+
sub: HTMLAttributes<HTMLElement>;
|
|
1030
|
+
summary: HTMLAttributes<HTMLElement>;
|
|
1031
|
+
sup: HTMLAttributes<HTMLElement>;
|
|
1032
|
+
table: TableHTMLAttributes<HTMLTableElement>;
|
|
1033
|
+
template: HTMLAttributes<HTMLTemplateElement>;
|
|
1034
|
+
tbody: HTMLAttributes<HTMLTableSectionElement>;
|
|
1035
|
+
td: TdHTMLAttributes<HTMLTableDataCellElement>;
|
|
1036
|
+
textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
1037
|
+
tfoot: HTMLAttributes<HTMLTableSectionElement>;
|
|
1038
|
+
th: ThHTMLAttributes<HTMLTableHeaderCellElement>;
|
|
1039
|
+
thead: HTMLAttributes<HTMLTableSectionElement>;
|
|
1040
|
+
time: TimeHTMLAttributes<HTMLTimeElement>;
|
|
1041
|
+
title: HTMLAttributes<HTMLTitleElement>;
|
|
1042
|
+
tr: HTMLAttributes<HTMLTableRowElement>;
|
|
1043
|
+
track: TrackHTMLAttributes<HTMLTrackElement>;
|
|
1044
|
+
u: HTMLAttributes<HTMLElement>;
|
|
1045
|
+
ul: HTMLAttributes<HTMLUListElement>;
|
|
1046
|
+
var: HTMLAttributes<HTMLElement>;
|
|
1047
|
+
video: VideoHTMLAttributes<HTMLVideoElement>;
|
|
1048
|
+
wbr: HTMLAttributes<HTMLElement>;
|
|
1049
|
+
webview: WebViewHTMLAttributes<HTMLWebViewElement>;
|
|
1050
|
+
svg: SVGAttributes;
|
|
1051
|
+
animate: SVGAttributes;
|
|
1052
|
+
animateMotion: SVGAttributes;
|
|
1053
|
+
animateTransform: SVGAttributes;
|
|
1054
|
+
circle: SVGAttributes;
|
|
1055
|
+
clipPath: SVGAttributes;
|
|
1056
|
+
defs: SVGAttributes;
|
|
1057
|
+
desc: SVGAttributes;
|
|
1058
|
+
ellipse: SVGAttributes;
|
|
1059
|
+
feBlend: SVGAttributes;
|
|
1060
|
+
feColorMatrix: SVGAttributes;
|
|
1061
|
+
feComponentTransfer: SVGAttributes;
|
|
1062
|
+
feComposite: SVGAttributes;
|
|
1063
|
+
feConvolveMatrix: SVGAttributes;
|
|
1064
|
+
feDiffuseLighting: SVGAttributes;
|
|
1065
|
+
feDisplacementMap: SVGAttributes;
|
|
1066
|
+
feDistantLight: SVGAttributes;
|
|
1067
|
+
feDropShadow: SVGAttributes;
|
|
1068
|
+
feFlood: SVGAttributes;
|
|
1069
|
+
feFuncA: SVGAttributes;
|
|
1070
|
+
feFuncB: SVGAttributes;
|
|
1071
|
+
feFuncG: SVGAttributes;
|
|
1072
|
+
feFuncR: SVGAttributes;
|
|
1073
|
+
feGaussianBlur: SVGAttributes;
|
|
1074
|
+
feImage: SVGAttributes;
|
|
1075
|
+
feMerge: SVGAttributes;
|
|
1076
|
+
feMergeNode: SVGAttributes;
|
|
1077
|
+
feMorphology: SVGAttributes;
|
|
1078
|
+
feOffset: SVGAttributes;
|
|
1079
|
+
fePointLight: SVGAttributes;
|
|
1080
|
+
feSpecularLighting: SVGAttributes;
|
|
1081
|
+
feSpotLight: SVGAttributes;
|
|
1082
|
+
feTile: SVGAttributes;
|
|
1083
|
+
feTurbulence: SVGAttributes;
|
|
1084
|
+
filter: SVGAttributes;
|
|
1085
|
+
foreignObject: SVGAttributes;
|
|
1086
|
+
g: SVGAttributes;
|
|
1087
|
+
image: SVGAttributes;
|
|
1088
|
+
line: SVGAttributes;
|
|
1089
|
+
linearGradient: SVGAttributes;
|
|
1090
|
+
marker: SVGAttributes;
|
|
1091
|
+
mask: SVGAttributes;
|
|
1092
|
+
metadata: SVGAttributes;
|
|
1093
|
+
mpath: SVGAttributes;
|
|
1094
|
+
path: SVGAttributes;
|
|
1095
|
+
pattern: SVGAttributes;
|
|
1096
|
+
polygon: SVGAttributes;
|
|
1097
|
+
polyline: SVGAttributes;
|
|
1098
|
+
radialGradient: SVGAttributes;
|
|
1099
|
+
rect: SVGAttributes;
|
|
1100
|
+
stop: SVGAttributes;
|
|
1101
|
+
switch: SVGAttributes;
|
|
1102
|
+
symbol: SVGAttributes;
|
|
1103
|
+
text: SVGAttributes;
|
|
1104
|
+
textPath: SVGAttributes;
|
|
1105
|
+
tspan: SVGAttributes;
|
|
1106
|
+
use: SVGAttributes;
|
|
1107
|
+
view: SVGAttributes;
|
|
1107
1108
|
}
|
|
1108
1109
|
interface Events<T = Element> {
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
}
|
|
1193
|
-
type EventHandlers<E> = {
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
ref_for?: boolean;
|
|
1200
|
-
ref_key?: string;
|
|
1201
|
-
};
|
|
1202
|
-
type NativeElements = {
|
|
1203
|
-
[K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps$2;
|
|
1110
|
+
onCopy: ClipboardEventHandler<T>;
|
|
1111
|
+
onCut: ClipboardEventHandler<T>;
|
|
1112
|
+
onPaste: ClipboardEventHandler<T>;
|
|
1113
|
+
onCompositionend: CompositionEventHandler<T>;
|
|
1114
|
+
onCompositionstart: CompositionEventHandler<T>;
|
|
1115
|
+
onCompositionupdate: CompositionEventHandler<T>;
|
|
1116
|
+
onDrag: DragEventHandler<T>;
|
|
1117
|
+
onDragend: DragEventHandler<T>;
|
|
1118
|
+
onDragenter: DragEventHandler<T>;
|
|
1119
|
+
onDragexit: DragEventHandler<T>;
|
|
1120
|
+
onDragleave: DragEventHandler<T>;
|
|
1121
|
+
onDragover: DragEventHandler<T>;
|
|
1122
|
+
onDragstart: DragEventHandler<T>;
|
|
1123
|
+
onDrop: DragEventHandler<T>;
|
|
1124
|
+
onFocus: FocusEventHandler<T>;
|
|
1125
|
+
onFocusin: FocusEventHandler<T>;
|
|
1126
|
+
onFocusout: FocusEventHandler<T>;
|
|
1127
|
+
onBlur: FocusEventHandler<T>;
|
|
1128
|
+
onChange: ChangeEventHandler<T>;
|
|
1129
|
+
onBeforeinput: FormEventHandler<T>;
|
|
1130
|
+
onInput: FormEventHandler<T>;
|
|
1131
|
+
onReset: FormEventHandler<T>;
|
|
1132
|
+
onSubmit: FormEventHandler<T>;
|
|
1133
|
+
onInvalid: FormEventHandler<T>;
|
|
1134
|
+
onLoad: BaseEventHandler<T>;
|
|
1135
|
+
onError: BaseEventHandler<T>;
|
|
1136
|
+
onKeydown: KeyboardEventHandler<T>;
|
|
1137
|
+
onKeypress: KeyboardEventHandler<T>;
|
|
1138
|
+
onKeyup: KeyboardEventHandler;
|
|
1139
|
+
onAuxclick: MouseEventHandler<T>;
|
|
1140
|
+
onClick: MouseEventHandler<T>;
|
|
1141
|
+
onContextmenu: MouseEventHandler<T>;
|
|
1142
|
+
onDblclick: MouseEventHandler<T>;
|
|
1143
|
+
onMousedown: MouseEventHandler<T>;
|
|
1144
|
+
onMouseenter: MouseEventHandler<T>;
|
|
1145
|
+
onMouseleave: MouseEventHandler<T>;
|
|
1146
|
+
onMousemove: MouseEventHandler<T>;
|
|
1147
|
+
onMouseout: MouseEventHandler<T>;
|
|
1148
|
+
onMouseover: MouseEventHandler<T>;
|
|
1149
|
+
onMouseup: MouseEventHandler<T>;
|
|
1150
|
+
onAbort: BaseEventHandler<T>;
|
|
1151
|
+
onCanplay: BaseEventHandler<T>;
|
|
1152
|
+
onCanplaythrough: BaseEventHandler<T>;
|
|
1153
|
+
onDurationchange: BaseEventHandler<T>;
|
|
1154
|
+
onEmptied: BaseEventHandler<T>;
|
|
1155
|
+
onEncrypted: BaseEventHandler<T>;
|
|
1156
|
+
onEnded: BaseEventHandler<T>;
|
|
1157
|
+
onLoadeddata: BaseEventHandler<T>;
|
|
1158
|
+
onLoadedmetadata: BaseEventHandler<T>;
|
|
1159
|
+
onLoadstart: BaseEventHandler<T>;
|
|
1160
|
+
onPause: BaseEventHandler<T>;
|
|
1161
|
+
onPlay: BaseEventHandler<T>;
|
|
1162
|
+
onPlaying: BaseEventHandler<T>;
|
|
1163
|
+
onProgress: BaseEventHandler<T>;
|
|
1164
|
+
onRatechange: BaseEventHandler<T>;
|
|
1165
|
+
onSeeked: BaseEventHandler<T>;
|
|
1166
|
+
onSeeking: BaseEventHandler<T>;
|
|
1167
|
+
onStalled: BaseEventHandler<T>;
|
|
1168
|
+
onSuspend: BaseEventHandler<T>;
|
|
1169
|
+
onTimeupdate: BaseEventHandler<T>;
|
|
1170
|
+
onVolumechange: BaseEventHandler<T>;
|
|
1171
|
+
onWaiting: BaseEventHandler<T>;
|
|
1172
|
+
onSelect: BaseEventHandler<T>;
|
|
1173
|
+
onScroll: UIEventHandler<T>;
|
|
1174
|
+
onScrollend: UIEventHandler<T>;
|
|
1175
|
+
onTouchcancel: TouchEvent;
|
|
1176
|
+
onTouchend: TouchEvent;
|
|
1177
|
+
onTouchmove: TouchEvent;
|
|
1178
|
+
onTouchstart: TouchEvent;
|
|
1179
|
+
onPointerdown: PointerEvent;
|
|
1180
|
+
onPointermove: PointerEvent;
|
|
1181
|
+
onPointerup: PointerEvent;
|
|
1182
|
+
onPointercancel: PointerEvent;
|
|
1183
|
+
onPointerenter: PointerEvent;
|
|
1184
|
+
onPointerleave: PointerEvent;
|
|
1185
|
+
onPointerover: PointerEvent;
|
|
1186
|
+
onPointerout: PointerEvent;
|
|
1187
|
+
onWheel: WheelEventHandler<T>;
|
|
1188
|
+
onAnimationstart: AnimationEventHandler<T>;
|
|
1189
|
+
onAnimationend: AnimationEventHandler<T>;
|
|
1190
|
+
onAnimationiteration: AnimationEventHandler<T>;
|
|
1191
|
+
onTransitionend: TransitionEventHandler<T>;
|
|
1192
|
+
onTransitionstart: TransitionEventHandler<T>;
|
|
1193
|
+
}
|
|
1194
|
+
type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
|
|
1195
|
+
type ReservedProps$1 = {
|
|
1196
|
+
key?: PropertyKey;
|
|
1197
|
+
ref?: vue20.VNodeRef;
|
|
1198
|
+
ref_for?: boolean;
|
|
1199
|
+
ref_key?: string;
|
|
1204
1200
|
};
|
|
1201
|
+
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps$1 & vue20.HTMLAttributes };
|
|
1205
1202
|
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1203
|
+
nativeEvent: E;
|
|
1204
|
+
currentTarget: C;
|
|
1205
|
+
target: T;
|
|
1206
|
+
bubbles: boolean;
|
|
1207
|
+
cancelable: boolean;
|
|
1208
|
+
defaultPrevented: boolean;
|
|
1209
|
+
eventPhase: number;
|
|
1210
|
+
isTrusted: boolean;
|
|
1211
|
+
preventDefault: () => void;
|
|
1212
|
+
isDefaultPrevented: () => boolean;
|
|
1213
|
+
stopPropagation: () => void;
|
|
1214
|
+
isPropagationStopped: () => boolean;
|
|
1215
|
+
persist: () => void;
|
|
1216
|
+
timeStamp: number;
|
|
1217
|
+
type: string;
|
|
1221
1218
|
}
|
|
1222
1219
|
/**
|
|
1223
|
-
* currentTarget - a reference to the element on which the event listener is registered.
|
|
1224
|
-
*
|
|
1225
|
-
* target - a reference to the element from which the event was originally dispatched.
|
|
1226
|
-
* This might be a child element to the element on which the event listener is registered.
|
|
1227
|
-
* If you thought this should be `EventTarget & T`, see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/11508#issuecomment-256045682
|
|
1228
|
-
*/
|
|
1229
|
-
interface SyntheticEvent<T = Element, E = Event> extends BaseSyntheticEvent<E, EventTarget & T, EventTarget> {
|
|
1230
|
-
}
|
|
1220
|
+
* currentTarget - a reference to the element on which the event listener is registered.
|
|
1221
|
+
*
|
|
1222
|
+
* target - a reference to the element from which the event was originally dispatched.
|
|
1223
|
+
* This might be a child element to the element on which the event listener is registered.
|
|
1224
|
+
* If you thought this should be `EventTarget & T`, see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/11508#issuecomment-256045682
|
|
1225
|
+
*/
|
|
1226
|
+
interface SyntheticEvent<T = Element, E = Event> extends BaseSyntheticEvent<E, EventTarget & T, EventTarget> {}
|
|
1231
1227
|
type EventHandler<E extends SyntheticEvent<any>> = {
|
|
1232
|
-
|
|
1228
|
+
bivarianceHack: (event: E) => void;
|
|
1233
1229
|
}['bivarianceHack'];
|
|
1234
1230
|
type BaseEventHandler<T = Element> = EventHandler<SyntheticEvent<T>>;
|
|
1235
1231
|
interface ClipboardEvent<T = Element> extends SyntheticEvent<T, globalThis.ClipboardEvent> {
|
|
1236
|
-
|
|
1232
|
+
clipboardData: DataTransfer;
|
|
1237
1233
|
}
|
|
1238
1234
|
type ClipboardEventHandler<T = Element> = EventHandler<ClipboardEvent<T>>;
|
|
1239
1235
|
interface CompositionEvent<T = Element> extends SyntheticEvent<T, globalThis.CompositionEvent> {
|
|
1240
|
-
|
|
1236
|
+
data: string;
|
|
1241
1237
|
}
|
|
1242
1238
|
type CompositionEventHandler<T = Element> = EventHandler<CompositionEvent<T>>;
|
|
1243
1239
|
interface DragEvent<T = Element> extends MouseEvent<T, globalThis.DragEvent> {
|
|
1244
|
-
|
|
1240
|
+
dataTransfer: DataTransfer;
|
|
1245
1241
|
}
|
|
1246
1242
|
type DragEventHandler<T = Element> = EventHandler<DragEvent<T>>;
|
|
1247
1243
|
interface FocusEvent<Target = Element, RelatedTarget = Element> extends SyntheticEvent<Target, globalThis.FocusEvent> {
|
|
1248
|
-
|
|
1249
|
-
|
|
1244
|
+
relatedTarget: (EventTarget & RelatedTarget) | null;
|
|
1245
|
+
target: EventTarget & Target;
|
|
1250
1246
|
}
|
|
1251
1247
|
type FocusEventHandler<T = Element> = EventHandler<FocusEvent<T>>;
|
|
1252
|
-
interface FormEvent<T = Element> extends SyntheticEvent<T> {
|
|
1253
|
-
}
|
|
1248
|
+
interface FormEvent<T = Element> extends SyntheticEvent<T> {}
|
|
1254
1249
|
type FormEventHandler<T = Element> = EventHandler<FormEvent<T>>;
|
|
1255
1250
|
interface ChangeEvent<T = Element> extends SyntheticEvent<T> {
|
|
1256
|
-
|
|
1251
|
+
target: EventTarget & T;
|
|
1257
1252
|
}
|
|
1258
1253
|
type ChangeEventHandler<T = Element> = EventHandler<ChangeEvent<T>>;
|
|
1259
1254
|
interface KeyboardEvent<T = Element> extends UIEvent<T, globalThis.KeyboardEvent> {
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1255
|
+
altKey: boolean;
|
|
1256
|
+
/** @deprecated */
|
|
1257
|
+
charCode: number;
|
|
1258
|
+
ctrlKey: boolean;
|
|
1259
|
+
code: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
|
|
1262
|
+
*/
|
|
1263
|
+
getModifierState: (key: ModifierKey) => boolean;
|
|
1264
|
+
/**
|
|
1265
|
+
* See the [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#named-key-attribute-values). for possible values
|
|
1266
|
+
*/
|
|
1267
|
+
key: string;
|
|
1268
|
+
/** @deprecated */
|
|
1269
|
+
keyCode: number;
|
|
1270
|
+
locale: string;
|
|
1271
|
+
location: number;
|
|
1272
|
+
metaKey: boolean;
|
|
1273
|
+
repeat: boolean;
|
|
1274
|
+
shiftKey: boolean;
|
|
1275
|
+
/** @deprecated */
|
|
1276
|
+
which: number;
|
|
1282
1277
|
}
|
|
1283
1278
|
type KeyboardEventHandler<T = Element> = EventHandler<KeyboardEvent<T>>;
|
|
1284
1279
|
type ModifierKey = 'Alt' | 'AltGraph' | 'CapsLock' | 'Control' | 'Fn' | 'FnLock' | 'Hyper' | 'Meta' | 'NumLock' | 'ScrollLock' | 'Shift' | 'Super' | 'Symbol' | 'SymbolLock';
|
|
1285
1280
|
interface MouseEvent<T = Element, E = globalThis.MouseEvent> extends UIEvent<T, E> {
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1281
|
+
altKey: boolean;
|
|
1282
|
+
button: number;
|
|
1283
|
+
buttons: number;
|
|
1284
|
+
clientX: number;
|
|
1285
|
+
clientY: number;
|
|
1286
|
+
ctrlKey: boolean;
|
|
1287
|
+
/**
|
|
1288
|
+
* See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
|
|
1289
|
+
*/
|
|
1290
|
+
getModifierState: (key: ModifierKey) => boolean;
|
|
1291
|
+
metaKey: boolean;
|
|
1292
|
+
movementX: number;
|
|
1293
|
+
movementY: number;
|
|
1294
|
+
pageX: number;
|
|
1295
|
+
pageY: number;
|
|
1296
|
+
relatedTarget: EventTarget | null;
|
|
1297
|
+
screenX: number;
|
|
1298
|
+
screenY: number;
|
|
1299
|
+
shiftKey: boolean;
|
|
1305
1300
|
}
|
|
1306
1301
|
type MouseEventHandler<T = Element> = EventHandler<MouseEvent<T>>;
|
|
1307
1302
|
interface AbstractView {
|
|
1308
|
-
|
|
1309
|
-
|
|
1303
|
+
styleMedia: StyleMedia;
|
|
1304
|
+
document: Document;
|
|
1310
1305
|
}
|
|
1311
1306
|
interface UIEvent<T = Element, E = globalThis.UIEvent> extends SyntheticEvent<T, E> {
|
|
1312
|
-
|
|
1313
|
-
|
|
1307
|
+
detail: number;
|
|
1308
|
+
view: AbstractView;
|
|
1314
1309
|
}
|
|
1315
1310
|
type UIEventHandler<T = Element> = EventHandler<UIEvent<T>>;
|
|
1316
1311
|
interface WheelEvent<T = Element> extends MouseEvent<T, globalThis.WheelEvent> {
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1312
|
+
deltaMode: number;
|
|
1313
|
+
deltaX: number;
|
|
1314
|
+
deltaY: number;
|
|
1315
|
+
deltaZ: number;
|
|
1321
1316
|
}
|
|
1322
1317
|
type WheelEventHandler<T = Element> = EventHandler<WheelEvent<T>>;
|
|
1323
1318
|
interface AnimationEvent<T = Element> extends SyntheticEvent<T, globalThis.AnimationEvent> {
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1319
|
+
animationName: string;
|
|
1320
|
+
elapsedTime: number;
|
|
1321
|
+
pseudoElement: string;
|
|
1327
1322
|
}
|
|
1328
1323
|
type AnimationEventHandler<T = Element> = EventHandler<AnimationEvent<T>>;
|
|
1329
1324
|
interface TransitionEvent<T = Element> extends SyntheticEvent<T, globalThis.TransitionEvent> {
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1325
|
+
elapsedTime: number;
|
|
1326
|
+
propertyName: string;
|
|
1327
|
+
pseudoElement: string;
|
|
1333
1328
|
}
|
|
1334
1329
|
type TransitionEventHandler<T = Element> = EventHandler<TransitionEvent<T>>;
|
|
1335
1330
|
|
|
1336
1331
|
//#endregion
|
|
1337
1332
|
//#region src/jsx-runtime.d.ts
|
|
1338
1333
|
declare function jsx(type: any, props: any, key: any): ReturnType<typeof h>;
|
|
1339
|
-
type VNode
|
|
1340
|
-
type ReservedProps
|
|
1341
|
-
type AllowedComponentProps
|
|
1342
|
-
type ComponentCustomProps
|
|
1334
|
+
type VNode = vue0.VNode;
|
|
1335
|
+
type ReservedProps = vue0.ReservedProps;
|
|
1336
|
+
type AllowedComponentProps = vue0.AllowedComponentProps;
|
|
1337
|
+
type ComponentCustomProps = vue0.ComponentCustomProps;
|
|
1343
1338
|
declare global {
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
[name: string]: any;
|
|
1355
|
-
}
|
|
1356
|
-
interface IntrinsicAttributes extends ReservedProps$1, AllowedComponentProps$1, ComponentCustomProps$1 {
|
|
1357
|
-
}
|
|
1339
|
+
namespace JSX {
|
|
1340
|
+
interface Element extends VNode {}
|
|
1341
|
+
interface ElementClass {
|
|
1342
|
+
$props: {};
|
|
1343
|
+
}
|
|
1344
|
+
interface ElementAttributesProperty {
|
|
1345
|
+
$props: {};
|
|
1346
|
+
}
|
|
1347
|
+
interface IntrinsicElements extends NativeElements {
|
|
1348
|
+
[name: string]: any;
|
|
1358
1349
|
}
|
|
1350
|
+
interface IntrinsicAttributes extends ReservedProps, AllowedComponentProps, ComponentCustomProps {}
|
|
1351
|
+
}
|
|
1359
1352
|
}
|
|
1360
1353
|
|
|
1361
1354
|
//#endregion
|