@vue-jsx-vapor/runtime 2.6.1 → 2.6.3
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/block.d.ts +1 -1
- package/dist/{component-BHAqMOe7.cjs → component-CYhpM6xy.cjs} +10 -1
- package/dist/{component-DAbq6g1p.js → component-CpEIVhMJ.js} +10 -1
- package/dist/{component-CG7Pcj6B.d.ts → component-f-HDpT45.d.cts} +3 -3
- package/dist/component.cjs +1 -1
- package/dist/component.d.cts +1 -1
- package/dist/component.d.ts +1 -1
- package/dist/component.js +1 -1
- package/dist/{h-76H4kJgw.js → h-D8Dfh6Ov.js} +1 -1
- package/dist/{h-yXUW23HD.cjs → h-Dk0b-awG.cjs} +1 -1
- package/dist/{h-mLWlHa8R.d.cts → h-JmVbnDXf.d.cts} +8 -8
- package/dist/{h-DutSRaoO.d.ts → h-ZvZ1VCbf.d.ts} +9 -9
- package/dist/h.cjs +2 -2
- package/dist/h.d.cts +1 -1
- package/dist/h.d.ts +2 -2
- package/dist/h.js +2 -2
- package/dist/helpers.d.ts +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +8 -7
- package/dist/index.js +4 -3
- package/dist/{jsx-CRoDhX85.d.ts → jsx-Beo7WcCj.d.ts} +632 -632
- package/dist/{jsx-EFPAy-wt.d.cts → jsx-Dx2zpbtl.d.cts} +634 -634
- package/dist/jsx.d.cts +1 -1
- package/dist/jsx.d.ts +1 -1
- package/dist/node.d.ts +1 -1
- package/dist/vue-BvYJtxhH.d.ts +134 -0
- package/dist/vue-CLfSEbpD.js +13 -0
- package/dist/vue-CPpwobxQ.d.cts +134 -0
- package/dist/vue-DN14pNs9.cjs +19 -0
- package/dist/vue.cjs +3 -0
- package/dist/vue.d.cts +2 -0
- package/dist/vue.d.ts +2 -0
- package/dist/vue.js +3 -0
- package/package.json +1 -1
- /package/dist/{block-pPxpKsmV.d.ts → block-u07aeibz.d.ts} +0 -0
- /package/dist/{component-BkffHjyR.d.cts → component-DKpccT17.d.ts} +0 -0
- /package/dist/{helpers-BvOzWbq1.d.ts → helpers-B9BMZz0T.d.ts} +0 -0
- /package/dist/{node-DLEa8Cxk.d.ts → node-C2jZYT0Y.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue0 from "vue";
|
|
2
2
|
import * as CSS from "csstype";
|
|
3
3
|
|
|
4
4
|
//#region src/jsx.d.ts
|
|
@@ -18,189 +18,189 @@ type Numberish = number | string;
|
|
|
18
18
|
interface HTMLWebViewElement extends HTMLElement {}
|
|
19
19
|
interface AriaAttributes {
|
|
20
20
|
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
21
|
-
'aria-activedescendant'?: string;
|
|
21
|
+
'aria-activedescendant'?: string | undefined;
|
|
22
22
|
/** 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. */
|
|
23
|
-
'aria-atomic'?: Booleanish;
|
|
23
|
+
'aria-atomic'?: Booleanish | undefined;
|
|
24
24
|
/**
|
|
25
25
|
* 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
|
|
26
26
|
* presented if they are made.
|
|
27
27
|
*/
|
|
28
|
-
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
|
|
28
|
+
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both' | undefined;
|
|
29
29
|
/** 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. */
|
|
30
|
-
'aria-busy'?: Booleanish;
|
|
30
|
+
'aria-busy'?: Booleanish | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
|
|
33
33
|
* @see aria-pressed @see aria-selected.
|
|
34
34
|
*/
|
|
35
|
-
'aria-checked'?: Booleanish | 'mixed';
|
|
35
|
+
'aria-checked'?: Booleanish | 'mixed' | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* Defines the total number of columns in a table, grid, or treegrid.
|
|
38
38
|
* @see aria-colindex.
|
|
39
39
|
*/
|
|
40
|
-
'aria-colcount'?: Numberish;
|
|
40
|
+
'aria-colcount'?: Numberish | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
|
|
43
43
|
* @see aria-colcount @see aria-colspan.
|
|
44
44
|
*/
|
|
45
|
-
'aria-colindex'?: Numberish;
|
|
45
|
+
'aria-colindex'?: Numberish | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
48
48
|
* @see aria-colindex @see aria-rowspan.
|
|
49
49
|
*/
|
|
50
|
-
'aria-colspan'?: Numberish;
|
|
50
|
+
'aria-colspan'?: Numberish | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* Identifies the element (or elements) whose contents or presence are controlled by the current element.
|
|
53
53
|
* @see aria-owns.
|
|
54
54
|
*/
|
|
55
|
-
'aria-controls'?: string;
|
|
55
|
+
'aria-controls'?: string | undefined;
|
|
56
56
|
/** Indicates the element that represents the current item within a container or set of related elements. */
|
|
57
|
-
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time';
|
|
57
|
+
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time' | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* Identifies the element (or elements) that describes the object.
|
|
60
60
|
* @see aria-labelledby
|
|
61
61
|
*/
|
|
62
|
-
'aria-describedby'?: string;
|
|
62
|
+
'aria-describedby'?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* Identifies the element that provides a detailed, extended description for the object.
|
|
65
65
|
* @see aria-describedby.
|
|
66
66
|
*/
|
|
67
|
-
'aria-details'?: string;
|
|
67
|
+
'aria-details'?: string | undefined;
|
|
68
68
|
/**
|
|
69
69
|
* Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
|
|
70
70
|
* @see aria-hidden @see aria-readonly.
|
|
71
71
|
*/
|
|
72
|
-
'aria-disabled'?: Booleanish;
|
|
72
|
+
'aria-disabled'?: Booleanish | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* Indicates what functions can be performed when a dragged object is released on the drop target.
|
|
75
75
|
* @deprecated in ARIA 1.1
|
|
76
76
|
*/
|
|
77
|
-
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
|
|
77
|
+
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* Identifies the element that provides an error message for the object.
|
|
80
80
|
* @see aria-invalid @see aria-describedby.
|
|
81
81
|
*/
|
|
82
|
-
'aria-errormessage'?: string;
|
|
82
|
+
'aria-errormessage'?: string | undefined;
|
|
83
83
|
/** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
|
|
84
|
-
'aria-expanded'?: Booleanish;
|
|
84
|
+
'aria-expanded'?: Booleanish | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
87
87
|
* allows assistive technology to override the general default of reading in document source order.
|
|
88
88
|
*/
|
|
89
|
-
'aria-flowto'?: string;
|
|
89
|
+
'aria-flowto'?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* Indicates an element's "grabbed" state in a drag-and-drop operation.
|
|
92
92
|
* @deprecated in ARIA 1.1
|
|
93
93
|
*/
|
|
94
|
-
'aria-grabbed'?: Booleanish;
|
|
94
|
+
'aria-grabbed'?: Booleanish | undefined;
|
|
95
95
|
/** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
|
|
96
|
-
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';
|
|
96
|
+
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined;
|
|
97
97
|
/**
|
|
98
98
|
* Indicates whether the element is exposed to an accessibility API.
|
|
99
99
|
* @see aria-disabled.
|
|
100
100
|
*/
|
|
101
|
-
'aria-hidden'?: Booleanish;
|
|
101
|
+
'aria-hidden'?: Booleanish | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* Indicates the entered value does not conform to the format expected by the application.
|
|
104
104
|
* @see aria-errormessage.
|
|
105
105
|
*/
|
|
106
|
-
'aria-invalid'?: Booleanish | 'grammar' | 'spelling';
|
|
106
|
+
'aria-invalid'?: Booleanish | 'grammar' | 'spelling' | undefined;
|
|
107
107
|
/** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
|
|
108
|
-
'aria-keyshortcuts'?: string;
|
|
108
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* Defines a string value that labels the current element.
|
|
111
111
|
* @see aria-labelledby.
|
|
112
112
|
*/
|
|
113
|
-
'aria-label'?: string;
|
|
113
|
+
'aria-label'?: string | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* Identifies the element (or elements) that labels the current element.
|
|
116
116
|
* @see aria-describedby.
|
|
117
117
|
*/
|
|
118
|
-
'aria-labelledby'?: string;
|
|
118
|
+
'aria-labelledby'?: string | undefined;
|
|
119
119
|
/** Defines the hierarchical level of an element within a structure. */
|
|
120
|
-
'aria-level'?: Numberish;
|
|
120
|
+
'aria-level'?: Numberish | undefined;
|
|
121
121
|
/** 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. */
|
|
122
|
-
'aria-live'?: 'off' | 'assertive' | 'polite';
|
|
122
|
+
'aria-live'?: 'off' | 'assertive' | 'polite' | undefined;
|
|
123
123
|
/** Indicates whether an element is modal when displayed. */
|
|
124
|
-
'aria-modal'?: Booleanish;
|
|
124
|
+
'aria-modal'?: Booleanish | undefined;
|
|
125
125
|
/** Indicates whether a text box accepts multiple lines of input or only a single line. */
|
|
126
|
-
'aria-multiline'?: Booleanish;
|
|
126
|
+
'aria-multiline'?: Booleanish | undefined;
|
|
127
127
|
/** Indicates that the user may select more than one item from the current selectable descendants. */
|
|
128
|
-
'aria-multiselectable'?: Booleanish;
|
|
128
|
+
'aria-multiselectable'?: Booleanish | undefined;
|
|
129
129
|
/** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
|
|
130
|
-
'aria-orientation'?: 'horizontal' | 'vertical';
|
|
130
|
+
'aria-orientation'?: 'horizontal' | 'vertical' | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
133
133
|
* between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
|
|
134
134
|
* @see aria-controls.
|
|
135
135
|
*/
|
|
136
|
-
'aria-owns'?: string;
|
|
136
|
+
'aria-owns'?: string | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
139
139
|
* A hint could be a sample value or a brief description of the expected format.
|
|
140
140
|
*/
|
|
141
|
-
'aria-placeholder'?: string;
|
|
141
|
+
'aria-placeholder'?: string | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* 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.
|
|
144
144
|
* @see aria-setsize.
|
|
145
145
|
*/
|
|
146
|
-
'aria-posinset'?: Numberish;
|
|
146
|
+
'aria-posinset'?: Numberish | undefined;
|
|
147
147
|
/**
|
|
148
148
|
* Indicates the current "pressed" state of toggle buttons.
|
|
149
149
|
* @see aria-checked @see aria-selected.
|
|
150
150
|
*/
|
|
151
|
-
'aria-pressed'?: Booleanish | 'mixed';
|
|
151
|
+
'aria-pressed'?: Booleanish | 'mixed' | undefined;
|
|
152
152
|
/**
|
|
153
153
|
* Indicates that the element is not editable, but is otherwise operable.
|
|
154
154
|
* @see aria-disabled.
|
|
155
155
|
*/
|
|
156
|
-
'aria-readonly'?: Booleanish;
|
|
156
|
+
'aria-readonly'?: Booleanish | undefined;
|
|
157
157
|
/**
|
|
158
158
|
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
|
|
159
159
|
* @see aria-atomic.
|
|
160
160
|
*/
|
|
161
|
-
'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals';
|
|
161
|
+
'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined;
|
|
162
162
|
/** Indicates that user input is required on the element before a form may be submitted. */
|
|
163
|
-
'aria-required'?: Booleanish;
|
|
163
|
+
'aria-required'?: Booleanish | undefined;
|
|
164
164
|
/** Defines a human-readable, author-localized description for the role of an element. */
|
|
165
|
-
'aria-roledescription'?: string;
|
|
165
|
+
'aria-roledescription'?: string | undefined;
|
|
166
166
|
/**
|
|
167
167
|
* Defines the total number of rows in a table, grid, or treegrid.
|
|
168
168
|
* @see aria-rowindex.
|
|
169
169
|
*/
|
|
170
|
-
'aria-rowcount'?: Numberish;
|
|
170
|
+
'aria-rowcount'?: Numberish | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
|
|
173
173
|
* @see aria-rowcount @see aria-rowspan.
|
|
174
174
|
*/
|
|
175
|
-
'aria-rowindex'?: Numberish;
|
|
175
|
+
'aria-rowindex'?: Numberish | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
178
178
|
* @see aria-rowindex @see aria-colspan.
|
|
179
179
|
*/
|
|
180
|
-
'aria-rowspan'?: Numberish;
|
|
180
|
+
'aria-rowspan'?: Numberish | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* Indicates the current "selected" state of various widgets.
|
|
183
183
|
* @see aria-checked @see aria-pressed.
|
|
184
184
|
*/
|
|
185
|
-
'aria-selected'?: Booleanish;
|
|
185
|
+
'aria-selected'?: Booleanish | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* 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.
|
|
188
188
|
* @see aria-posinset.
|
|
189
189
|
*/
|
|
190
|
-
'aria-setsize'?: Numberish;
|
|
190
|
+
'aria-setsize'?: Numberish | undefined;
|
|
191
191
|
/** Indicates if items in a table or grid are sorted in ascending or descending order. */
|
|
192
|
-
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
|
|
192
|
+
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other' | undefined;
|
|
193
193
|
/** Defines the maximum allowed value for a range widget. */
|
|
194
|
-
'aria-valuemax'?: Numberish;
|
|
194
|
+
'aria-valuemax'?: Numberish | undefined;
|
|
195
195
|
/** Defines the minimum allowed value for a range widget. */
|
|
196
|
-
'aria-valuemin'?: Numberish;
|
|
196
|
+
'aria-valuemin'?: Numberish | undefined;
|
|
197
197
|
/**
|
|
198
198
|
* Defines the current value for a range widget.
|
|
199
199
|
* @see aria-valuetext.
|
|
200
200
|
*/
|
|
201
|
-
'aria-valuenow'?: Numberish;
|
|
201
|
+
'aria-valuenow'?: Numberish | undefined;
|
|
202
202
|
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
203
|
-
'aria-valuetext'?: string;
|
|
203
|
+
'aria-valuetext'?: string | undefined;
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
206
206
|
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin MDN}
|
|
@@ -208,194 +208,194 @@ interface AriaAttributes {
|
|
|
208
208
|
type CrossOrigin = 'anonymous' | 'use-credentials' | '';
|
|
209
209
|
type StyleValue = false | null | undefined | string | CSSProperties | Array<StyleValue>;
|
|
210
210
|
interface HTMLAttributes<T = HTMLElement> extends AriaAttributes, EventHandlers<Events<T>> {
|
|
211
|
-
innerHTML?: string;
|
|
212
|
-
class?: any;
|
|
213
|
-
style?: StyleValue;
|
|
214
|
-
accesskey?: string;
|
|
211
|
+
innerHTML?: string | undefined;
|
|
212
|
+
class?: any | undefined;
|
|
213
|
+
style?: StyleValue | undefined;
|
|
214
|
+
accesskey?: string | undefined;
|
|
215
215
|
autocapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters' | undefined | (string & {});
|
|
216
|
-
autofocus?: Booleanish;
|
|
217
|
-
contenteditable?: Booleanish | 'inherit' | 'plaintext-only';
|
|
218
|
-
contextmenu?: string;
|
|
219
|
-
dir?: string;
|
|
220
|
-
draggable?: Booleanish;
|
|
221
|
-
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
|
|
222
|
-
hidden?: Booleanish | '' | 'hidden' | 'until-found';
|
|
223
|
-
id?: string;
|
|
224
|
-
inert?: Booleanish;
|
|
225
|
-
lang?: string;
|
|
226
|
-
nonce?: string;
|
|
227
|
-
placeholder?: string;
|
|
228
|
-
spellcheck?: Booleanish;
|
|
229
|
-
tabindex?: Numberish;
|
|
230
|
-
title?: string;
|
|
231
|
-
translate?: 'yes' | 'no';
|
|
232
|
-
radiogroup?: string;
|
|
233
|
-
role?: string;
|
|
234
|
-
about?: string;
|
|
235
|
-
content?: string;
|
|
236
|
-
datatype?: string;
|
|
237
|
-
inlist?: any;
|
|
238
|
-
prefix?: string;
|
|
239
|
-
property?: string;
|
|
240
|
-
rel?: string;
|
|
241
|
-
resource?: string;
|
|
242
|
-
rev?: string;
|
|
243
|
-
typeof?: string;
|
|
244
|
-
vocab?: string;
|
|
245
|
-
autocorrect?: string;
|
|
246
|
-
autosave?: string;
|
|
247
|
-
color?: string;
|
|
248
|
-
itemprop?: string;
|
|
249
|
-
itemscope?: Booleanish;
|
|
250
|
-
itemtype?: string;
|
|
251
|
-
itemid?: string;
|
|
252
|
-
itemref?: string;
|
|
253
|
-
results?: Numberish;
|
|
254
|
-
security?: string;
|
|
255
|
-
unselectable?: 'on' | 'off';
|
|
216
|
+
autofocus?: Booleanish | undefined;
|
|
217
|
+
contenteditable?: Booleanish | 'inherit' | 'plaintext-only' | undefined;
|
|
218
|
+
contextmenu?: string | undefined;
|
|
219
|
+
dir?: string | undefined;
|
|
220
|
+
draggable?: Booleanish | undefined;
|
|
221
|
+
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
|
|
222
|
+
hidden?: Booleanish | '' | 'hidden' | 'until-found' | undefined;
|
|
223
|
+
id?: string | undefined;
|
|
224
|
+
inert?: Booleanish | undefined;
|
|
225
|
+
lang?: string | undefined;
|
|
226
|
+
nonce?: string | undefined;
|
|
227
|
+
placeholder?: string | undefined;
|
|
228
|
+
spellcheck?: Booleanish | undefined;
|
|
229
|
+
tabindex?: Numberish | undefined;
|
|
230
|
+
title?: string | undefined;
|
|
231
|
+
translate?: 'yes' | 'no' | undefined;
|
|
232
|
+
radiogroup?: string | undefined;
|
|
233
|
+
role?: string | undefined;
|
|
234
|
+
about?: string | undefined;
|
|
235
|
+
content?: string | undefined;
|
|
236
|
+
datatype?: string | undefined;
|
|
237
|
+
inlist?: any | undefined;
|
|
238
|
+
prefix?: string | undefined;
|
|
239
|
+
property?: string | undefined;
|
|
240
|
+
rel?: string | undefined;
|
|
241
|
+
resource?: string | undefined;
|
|
242
|
+
rev?: string | undefined;
|
|
243
|
+
typeof?: string | undefined;
|
|
244
|
+
vocab?: string | undefined;
|
|
245
|
+
autocorrect?: string | undefined;
|
|
246
|
+
autosave?: string | undefined;
|
|
247
|
+
color?: string | undefined;
|
|
248
|
+
itemprop?: string | undefined;
|
|
249
|
+
itemscope?: Booleanish | undefined;
|
|
250
|
+
itemtype?: string | undefined;
|
|
251
|
+
itemid?: string | undefined;
|
|
252
|
+
itemref?: string | undefined;
|
|
253
|
+
results?: Numberish | undefined;
|
|
254
|
+
security?: string | undefined;
|
|
255
|
+
unselectable?: 'on' | 'off' | undefined;
|
|
256
256
|
/**
|
|
257
257
|
* Hints at the type of data that might be entered by the user while editing the element or its contents
|
|
258
258
|
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
|
|
259
259
|
*/
|
|
260
|
-
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
260
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* Specify that a standard HTML element should behave like a defined custom built-in element
|
|
263
263
|
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
|
264
264
|
*/
|
|
265
|
-
is?: string;
|
|
265
|
+
is?: string | undefined;
|
|
266
266
|
}
|
|
267
267
|
type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
268
268
|
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
269
|
-
download?: any;
|
|
270
|
-
href?: string;
|
|
271
|
-
hreflang?: string;
|
|
272
|
-
media?: string;
|
|
273
|
-
ping?: string;
|
|
274
|
-
rel?: string;
|
|
275
|
-
target?: string;
|
|
276
|
-
type?: string;
|
|
277
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
269
|
+
download?: any | undefined;
|
|
270
|
+
href?: string | undefined;
|
|
271
|
+
hreflang?: string | undefined;
|
|
272
|
+
media?: string | undefined;
|
|
273
|
+
ping?: string | undefined;
|
|
274
|
+
rel?: string | undefined;
|
|
275
|
+
target?: string | undefined;
|
|
276
|
+
type?: string | undefined;
|
|
277
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
278
278
|
}
|
|
279
279
|
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
280
|
-
alt?: string;
|
|
281
|
-
coords?: string;
|
|
282
|
-
download?: any;
|
|
283
|
-
href?: string;
|
|
284
|
-
hreflang?: string;
|
|
285
|
-
media?: string;
|
|
286
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
287
|
-
shape?: string;
|
|
288
|
-
target?: string;
|
|
280
|
+
alt?: string | undefined;
|
|
281
|
+
coords?: string | undefined;
|
|
282
|
+
download?: any | undefined;
|
|
283
|
+
href?: string | undefined;
|
|
284
|
+
hreflang?: string | undefined;
|
|
285
|
+
media?: string | undefined;
|
|
286
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
287
|
+
shape?: string | undefined;
|
|
288
|
+
target?: string | undefined;
|
|
289
289
|
}
|
|
290
290
|
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
|
|
291
291
|
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
292
|
-
href?: string;
|
|
293
|
-
target?: string;
|
|
292
|
+
href?: string | undefined;
|
|
293
|
+
target?: string | undefined;
|
|
294
294
|
}
|
|
295
295
|
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
296
|
-
cite?: string;
|
|
296
|
+
cite?: string | undefined;
|
|
297
297
|
}
|
|
298
298
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
299
|
-
disabled?: Booleanish;
|
|
300
|
-
form?: string;
|
|
301
|
-
formaction?: string;
|
|
302
|
-
formenctype?: string;
|
|
303
|
-
formmethod?: string;
|
|
304
|
-
formnovalidate?: Booleanish;
|
|
305
|
-
formtarget?: string;
|
|
306
|
-
name?: string;
|
|
307
|
-
type?: 'submit' | 'reset' | 'button';
|
|
308
|
-
value?: string | ReadonlyArray<string> | number;
|
|
299
|
+
disabled?: Booleanish | undefined;
|
|
300
|
+
form?: string | undefined;
|
|
301
|
+
formaction?: string | undefined;
|
|
302
|
+
formenctype?: string | undefined;
|
|
303
|
+
formmethod?: string | undefined;
|
|
304
|
+
formnovalidate?: Booleanish | undefined;
|
|
305
|
+
formtarget?: string | undefined;
|
|
306
|
+
name?: string | undefined;
|
|
307
|
+
type?: 'submit' | 'reset' | 'button' | undefined;
|
|
308
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
309
309
|
}
|
|
310
310
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
311
|
-
height?: Numberish;
|
|
312
|
-
width?: Numberish;
|
|
311
|
+
height?: Numberish | undefined;
|
|
312
|
+
width?: Numberish | undefined;
|
|
313
313
|
}
|
|
314
314
|
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
315
|
-
span?: Numberish;
|
|
316
|
-
width?: Numberish;
|
|
315
|
+
span?: Numberish | undefined;
|
|
316
|
+
width?: Numberish | undefined;
|
|
317
317
|
}
|
|
318
318
|
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
319
|
-
span?: Numberish;
|
|
319
|
+
span?: Numberish | undefined;
|
|
320
320
|
}
|
|
321
321
|
interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
322
|
-
value?: string | ReadonlyArray<string> | number;
|
|
322
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
323
323
|
}
|
|
324
324
|
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
325
|
-
name?: string;
|
|
326
|
-
open?: Booleanish;
|
|
327
|
-
onToggle?: (payload: ToggleEvent) => void;
|
|
325
|
+
name?: string | undefined;
|
|
326
|
+
open?: Booleanish | undefined;
|
|
328
327
|
}
|
|
329
328
|
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
330
|
-
cite?: string;
|
|
331
|
-
datetime?: string;
|
|
329
|
+
cite?: string | undefined;
|
|
330
|
+
datetime?: string | undefined;
|
|
332
331
|
}
|
|
333
332
|
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
334
|
-
|
|
335
|
-
onClose?:
|
|
333
|
+
onCancel?: EventHandler<SyntheticEvent<T>> | undefined;
|
|
334
|
+
onClose?: EventHandler<SyntheticEvent<T>> | undefined;
|
|
335
|
+
open?: boolean | undefined;
|
|
336
336
|
}
|
|
337
337
|
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
338
|
-
height?: Numberish;
|
|
339
|
-
src?: string;
|
|
340
|
-
type?: string;
|
|
341
|
-
width?: Numberish;
|
|
338
|
+
height?: Numberish | undefined;
|
|
339
|
+
src?: string | undefined;
|
|
340
|
+
type?: string | undefined;
|
|
341
|
+
width?: Numberish | undefined;
|
|
342
342
|
}
|
|
343
343
|
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
344
|
-
disabled?: Booleanish;
|
|
345
|
-
form?: string;
|
|
346
|
-
name?: string;
|
|
344
|
+
disabled?: Booleanish | undefined;
|
|
345
|
+
form?: string | undefined;
|
|
346
|
+
name?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
349
|
-
acceptcharset?: string;
|
|
350
|
-
action?: string;
|
|
351
|
-
autocomplete?: string;
|
|
352
|
-
enctype?: string;
|
|
353
|
-
method?: string;
|
|
354
|
-
name?: string;
|
|
355
|
-
novalidate?: Booleanish;
|
|
356
|
-
target?: string;
|
|
349
|
+
acceptcharset?: string | undefined;
|
|
350
|
+
action?: string | undefined;
|
|
351
|
+
autocomplete?: string | undefined;
|
|
352
|
+
enctype?: string | undefined;
|
|
353
|
+
method?: string | undefined;
|
|
354
|
+
name?: string | undefined;
|
|
355
|
+
novalidate?: Booleanish | undefined;
|
|
356
|
+
target?: string | undefined;
|
|
357
357
|
}
|
|
358
358
|
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
359
|
-
manifest?: string;
|
|
359
|
+
manifest?: string | undefined;
|
|
360
360
|
}
|
|
361
361
|
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
362
|
-
allow?: string;
|
|
363
|
-
allowfullscreen?: Booleanish;
|
|
364
|
-
allowtransparency?: Booleanish;
|
|
362
|
+
allow?: string | undefined;
|
|
363
|
+
allowfullscreen?: Booleanish | undefined;
|
|
364
|
+
allowtransparency?: Booleanish | undefined;
|
|
365
365
|
/** @deprecated */
|
|
366
|
-
frameborder?: Numberish;
|
|
367
|
-
height?: Numberish;
|
|
368
|
-
loading?: 'eager' | 'lazy';
|
|
366
|
+
frameborder?: Numberish | undefined;
|
|
367
|
+
height?: Numberish | undefined;
|
|
368
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
369
369
|
/** @deprecated */
|
|
370
|
-
marginheight?: Numberish;
|
|
370
|
+
marginheight?: Numberish | undefined;
|
|
371
371
|
/** @deprecated */
|
|
372
|
-
marginwidth?: Numberish;
|
|
373
|
-
name?: string;
|
|
374
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
375
|
-
sandbox?: string;
|
|
372
|
+
marginwidth?: Numberish | undefined;
|
|
373
|
+
name?: string | undefined;
|
|
374
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
375
|
+
sandbox?: string | undefined;
|
|
376
376
|
/** @deprecated */
|
|
377
|
-
scrolling?: string;
|
|
378
|
-
seamless?: Booleanish;
|
|
379
|
-
src?: string;
|
|
380
|
-
srcdoc?: string;
|
|
381
|
-
width?: Numberish;
|
|
377
|
+
scrolling?: string | undefined;
|
|
378
|
+
seamless?: Booleanish | undefined;
|
|
379
|
+
src?: string | undefined;
|
|
380
|
+
srcdoc?: string | undefined;
|
|
381
|
+
width?: Numberish | undefined;
|
|
382
382
|
}
|
|
383
383
|
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
384
|
-
alt?: string;
|
|
385
|
-
crossorigin?: CrossOrigin;
|
|
386
|
-
decoding?: 'async' | 'auto' | 'sync';
|
|
387
|
-
height?: Numberish;
|
|
388
|
-
loading?: 'eager' | 'lazy';
|
|
389
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
390
|
-
sizes?: string;
|
|
391
|
-
src?: string;
|
|
392
|
-
srcset?: string;
|
|
393
|
-
usemap?: string;
|
|
394
|
-
width?: Numberish;
|
|
384
|
+
alt?: string | undefined;
|
|
385
|
+
crossorigin?: CrossOrigin | undefined;
|
|
386
|
+
decoding?: 'async' | 'auto' | 'sync' | undefined;
|
|
387
|
+
height?: Numberish | undefined;
|
|
388
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
389
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
390
|
+
sizes?: string | undefined;
|
|
391
|
+
src?: string | undefined;
|
|
392
|
+
srcset?: string | undefined;
|
|
393
|
+
usemap?: string | undefined;
|
|
394
|
+
width?: Numberish | undefined;
|
|
395
395
|
}
|
|
396
396
|
interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
397
|
-
cite?: string;
|
|
398
|
-
datetime?: string;
|
|
397
|
+
cite?: string | undefined;
|
|
398
|
+
datetime?: string | undefined;
|
|
399
399
|
}
|
|
400
400
|
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
401
|
type AutoFillAddressKind = 'billing' | 'shipping';
|
|
@@ -411,522 +411,522 @@ type AutoFillSection = `section-${string}`;
|
|
|
411
411
|
type AutoFill = AutoFillBase | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<AutoFillAddressKind>}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
|
|
412
412
|
type HTMLInputAutoCompleteAttribute = AutoFill | (string & {});
|
|
413
413
|
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
414
|
-
accept?: string;
|
|
415
|
-
alt?: string;
|
|
416
|
-
autocomplete?: HTMLInputAutoCompleteAttribute;
|
|
414
|
+
accept?: string | undefined;
|
|
415
|
+
alt?: string | undefined;
|
|
416
|
+
autocomplete?: HTMLInputAutoCompleteAttribute | undefined;
|
|
417
417
|
capture?: boolean | 'user' | 'environment';
|
|
418
418
|
checked?: Booleanish | any[] | Set<any>;
|
|
419
|
-
disabled?: Booleanish;
|
|
420
|
-
form?: string;
|
|
421
|
-
formaction?: string;
|
|
422
|
-
formenctype?: string;
|
|
423
|
-
formmethod?: string;
|
|
424
|
-
formnovalidate?: Booleanish;
|
|
425
|
-
formtarget?: string;
|
|
426
|
-
height?: Numberish;
|
|
427
|
-
indeterminate?: boolean;
|
|
428
|
-
list?: string;
|
|
429
|
-
max?: Numberish;
|
|
430
|
-
maxlength?: Numberish;
|
|
431
|
-
min?: Numberish;
|
|
432
|
-
minlength?: Numberish;
|
|
433
|
-
multiple?: Booleanish;
|
|
434
|
-
name?: string;
|
|
435
|
-
pattern?: string;
|
|
436
|
-
placeholder?: string;
|
|
437
|
-
readonly?: Booleanish;
|
|
438
|
-
required?: Booleanish;
|
|
439
|
-
size?: Numberish;
|
|
440
|
-
src?: string;
|
|
441
|
-
step?: Numberish;
|
|
442
|
-
type?: InputTypeHTMLAttribute;
|
|
419
|
+
disabled?: Booleanish | undefined;
|
|
420
|
+
form?: string | undefined;
|
|
421
|
+
formaction?: string | undefined;
|
|
422
|
+
formenctype?: string | undefined;
|
|
423
|
+
formmethod?: string | undefined;
|
|
424
|
+
formnovalidate?: Booleanish | undefined;
|
|
425
|
+
formtarget?: string | undefined;
|
|
426
|
+
height?: Numberish | undefined;
|
|
427
|
+
indeterminate?: boolean | undefined;
|
|
428
|
+
list?: string | undefined;
|
|
429
|
+
max?: Numberish | undefined;
|
|
430
|
+
maxlength?: Numberish | undefined;
|
|
431
|
+
min?: Numberish | undefined;
|
|
432
|
+
minlength?: Numberish | undefined;
|
|
433
|
+
multiple?: Booleanish | undefined;
|
|
434
|
+
name?: string | undefined;
|
|
435
|
+
pattern?: string | undefined;
|
|
436
|
+
placeholder?: string | undefined;
|
|
437
|
+
readonly?: Booleanish | undefined;
|
|
438
|
+
required?: Booleanish | undefined;
|
|
439
|
+
size?: Numberish | undefined;
|
|
440
|
+
src?: string | undefined;
|
|
441
|
+
step?: Numberish | undefined;
|
|
442
|
+
type?: InputTypeHTMLAttribute | undefined;
|
|
443
443
|
value?: any;
|
|
444
|
-
width?: Numberish;
|
|
444
|
+
width?: Numberish | undefined;
|
|
445
445
|
}
|
|
446
446
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
447
|
-
challenge?: string;
|
|
448
|
-
disabled?: Booleanish;
|
|
449
|
-
form?: string;
|
|
450
|
-
keytype?: string;
|
|
451
|
-
keyparams?: string;
|
|
452
|
-
name?: string;
|
|
447
|
+
challenge?: string | undefined;
|
|
448
|
+
disabled?: Booleanish | undefined;
|
|
449
|
+
form?: string | undefined;
|
|
450
|
+
keytype?: string | undefined;
|
|
451
|
+
keyparams?: string | undefined;
|
|
452
|
+
name?: string | undefined;
|
|
453
453
|
}
|
|
454
454
|
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
455
|
-
for?: string;
|
|
456
|
-
form?: string;
|
|
455
|
+
for?: string | undefined;
|
|
456
|
+
form?: string | undefined;
|
|
457
457
|
}
|
|
458
458
|
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
459
|
-
value?: string | ReadonlyArray<string> | number;
|
|
459
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
460
460
|
}
|
|
461
461
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
462
|
-
as?: string;
|
|
463
|
-
crossorigin?: CrossOrigin;
|
|
464
|
-
fetchPriority?: 'high' | 'low' | 'auto';
|
|
465
|
-
href?: string;
|
|
466
|
-
hreflang?: string;
|
|
467
|
-
integrity?: string;
|
|
468
|
-
media?: string;
|
|
469
|
-
imageSrcSet?: string;
|
|
470
|
-
imageSizes?: string;
|
|
471
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
472
|
-
sizes?: string;
|
|
473
|
-
type?: string;
|
|
474
|
-
charset?: string;
|
|
462
|
+
as?: string | undefined;
|
|
463
|
+
crossorigin?: CrossOrigin | undefined;
|
|
464
|
+
fetchPriority?: 'high' | 'low' | 'auto' | undefined;
|
|
465
|
+
href?: string | undefined;
|
|
466
|
+
hreflang?: string | undefined;
|
|
467
|
+
integrity?: string | undefined;
|
|
468
|
+
media?: string | undefined;
|
|
469
|
+
imageSrcSet?: string | undefined;
|
|
470
|
+
imageSizes?: string | undefined;
|
|
471
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
472
|
+
sizes?: string | undefined;
|
|
473
|
+
type?: string | undefined;
|
|
474
|
+
charset?: string | undefined;
|
|
475
475
|
}
|
|
476
476
|
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
477
|
-
name?: string;
|
|
477
|
+
name?: string | undefined;
|
|
478
478
|
}
|
|
479
479
|
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
480
|
-
type?: string;
|
|
480
|
+
type?: string | undefined;
|
|
481
481
|
}
|
|
482
482
|
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
483
|
-
autoplay?: Booleanish;
|
|
484
|
-
controls?: Booleanish;
|
|
485
|
-
controlslist?: string;
|
|
486
|
-
crossorigin?: CrossOrigin;
|
|
487
|
-
loop?: Booleanish;
|
|
488
|
-
mediagroup?: string;
|
|
489
|
-
muted?: Booleanish;
|
|
490
|
-
playsinline?: Booleanish;
|
|
491
|
-
preload?: string;
|
|
492
|
-
src?: string;
|
|
483
|
+
autoplay?: Booleanish | undefined;
|
|
484
|
+
controls?: Booleanish | undefined;
|
|
485
|
+
controlslist?: string | undefined;
|
|
486
|
+
crossorigin?: CrossOrigin | undefined;
|
|
487
|
+
loop?: Booleanish | undefined;
|
|
488
|
+
mediagroup?: string | undefined;
|
|
489
|
+
muted?: Booleanish | undefined;
|
|
490
|
+
playsinline?: Booleanish | undefined;
|
|
491
|
+
preload?: string | undefined;
|
|
492
|
+
src?: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
495
|
-
charset?: string;
|
|
496
|
-
content?: string;
|
|
497
|
-
httpequiv?: string;
|
|
498
|
-
media?: string | undefined;
|
|
499
|
-
name?: string;
|
|
495
|
+
charset?: string | undefined;
|
|
496
|
+
content?: string | undefined;
|
|
497
|
+
httpequiv?: string | undefined;
|
|
498
|
+
media?: string | undefined | undefined;
|
|
499
|
+
name?: string | undefined;
|
|
500
500
|
}
|
|
501
501
|
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
502
|
-
form?: string;
|
|
503
|
-
high?: Numberish;
|
|
504
|
-
low?: Numberish;
|
|
505
|
-
max?: Numberish;
|
|
506
|
-
min?: Numberish;
|
|
507
|
-
optimum?: Numberish;
|
|
508
|
-
value?: string | ReadonlyArray<string> | number;
|
|
502
|
+
form?: string | undefined;
|
|
503
|
+
high?: Numberish | undefined;
|
|
504
|
+
low?: Numberish | undefined;
|
|
505
|
+
max?: Numberish | undefined;
|
|
506
|
+
min?: Numberish | undefined;
|
|
507
|
+
optimum?: Numberish | undefined;
|
|
508
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
509
509
|
}
|
|
510
510
|
interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
511
|
-
cite?: string;
|
|
511
|
+
cite?: string | undefined;
|
|
512
512
|
}
|
|
513
513
|
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
514
|
-
classid?: string;
|
|
515
|
-
data?: string;
|
|
516
|
-
form?: string;
|
|
517
|
-
height?: Numberish;
|
|
518
|
-
name?: string;
|
|
519
|
-
type?: string;
|
|
520
|
-
usemap?: string;
|
|
521
|
-
width?: Numberish;
|
|
522
|
-
wmode?: string;
|
|
514
|
+
classid?: string | undefined;
|
|
515
|
+
data?: string | undefined;
|
|
516
|
+
form?: string | undefined;
|
|
517
|
+
height?: Numberish | undefined;
|
|
518
|
+
name?: string | undefined;
|
|
519
|
+
type?: string | undefined;
|
|
520
|
+
usemap?: string | undefined;
|
|
521
|
+
width?: Numberish | undefined;
|
|
522
|
+
wmode?: string | undefined;
|
|
523
523
|
}
|
|
524
524
|
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
525
|
-
reversed?: Booleanish;
|
|
526
|
-
start?: Numberish;
|
|
527
|
-
type?: '1' | 'a' | 'A' | 'i' | 'I';
|
|
525
|
+
reversed?: Booleanish | undefined;
|
|
526
|
+
start?: Numberish | undefined;
|
|
527
|
+
type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined;
|
|
528
528
|
}
|
|
529
529
|
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
530
|
-
disabled?: Booleanish;
|
|
531
|
-
label?: string;
|
|
530
|
+
disabled?: Booleanish | undefined;
|
|
531
|
+
label?: string | undefined;
|
|
532
532
|
}
|
|
533
533
|
interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
534
|
-
disabled?: Booleanish;
|
|
535
|
-
label?: string;
|
|
536
|
-
selected?: Booleanish;
|
|
534
|
+
disabled?: Booleanish | undefined;
|
|
535
|
+
label?: string | undefined;
|
|
536
|
+
selected?: Booleanish | undefined;
|
|
537
537
|
value?: any;
|
|
538
538
|
}
|
|
539
539
|
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
540
|
-
for?: string;
|
|
541
|
-
form?: string;
|
|
542
|
-
name?: string;
|
|
540
|
+
for?: string | undefined;
|
|
541
|
+
form?: string | undefined;
|
|
542
|
+
name?: string | undefined;
|
|
543
543
|
}
|
|
544
544
|
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
545
|
-
name?: string;
|
|
546
|
-
value?: string | ReadonlyArray<string> | number;
|
|
545
|
+
name?: string | undefined;
|
|
546
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
547
547
|
}
|
|
548
548
|
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
549
|
-
max?: Numberish;
|
|
550
|
-
value?: string | ReadonlyArray<string> | number;
|
|
549
|
+
max?: Numberish | undefined;
|
|
550
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
551
551
|
}
|
|
552
552
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
553
|
-
async?: Booleanish;
|
|
553
|
+
async?: Booleanish | undefined;
|
|
554
554
|
/** @deprecated */
|
|
555
|
-
charset?: string;
|
|
556
|
-
crossorigin?: CrossOrigin;
|
|
557
|
-
defer?: Booleanish;
|
|
558
|
-
integrity?: string;
|
|
559
|
-
nomodule?: Booleanish;
|
|
560
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
561
|
-
src?: string;
|
|
562
|
-
type?: string;
|
|
555
|
+
charset?: string | undefined;
|
|
556
|
+
crossorigin?: CrossOrigin | undefined;
|
|
557
|
+
defer?: Booleanish | undefined;
|
|
558
|
+
integrity?: string | undefined;
|
|
559
|
+
nomodule?: Booleanish | undefined;
|
|
560
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
561
|
+
src?: string | undefined;
|
|
562
|
+
type?: string | undefined;
|
|
563
563
|
}
|
|
564
564
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
565
|
-
autocomplete?: string;
|
|
566
|
-
disabled?: Booleanish;
|
|
567
|
-
form?: string;
|
|
568
|
-
multiple?: Booleanish;
|
|
569
|
-
name?: string;
|
|
570
|
-
required?: Booleanish;
|
|
571
|
-
size?: Numberish;
|
|
565
|
+
autocomplete?: string | undefined;
|
|
566
|
+
disabled?: Booleanish | undefined;
|
|
567
|
+
form?: string | undefined;
|
|
568
|
+
multiple?: Booleanish | undefined;
|
|
569
|
+
name?: string | undefined;
|
|
570
|
+
required?: Booleanish | undefined;
|
|
571
|
+
size?: Numberish | undefined;
|
|
572
572
|
value?: any;
|
|
573
573
|
}
|
|
574
574
|
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
575
|
-
height?: number;
|
|
576
|
-
media?: string;
|
|
577
|
-
sizes?: string;
|
|
578
|
-
src?: string;
|
|
579
|
-
srcset?: string;
|
|
580
|
-
type?: string;
|
|
581
|
-
width?: number;
|
|
575
|
+
height?: number | undefined;
|
|
576
|
+
media?: string | undefined;
|
|
577
|
+
sizes?: string | undefined;
|
|
578
|
+
src?: string | undefined;
|
|
579
|
+
srcset?: string | undefined;
|
|
580
|
+
type?: string | undefined;
|
|
581
|
+
width?: number | undefined;
|
|
582
582
|
}
|
|
583
583
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
584
|
-
media?: string;
|
|
585
|
-
scoped?: Booleanish;
|
|
586
|
-
type?: string;
|
|
584
|
+
media?: string | undefined;
|
|
585
|
+
scoped?: Booleanish | undefined;
|
|
586
|
+
type?: string | undefined;
|
|
587
587
|
}
|
|
588
588
|
interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
589
|
-
align?: 'left' | 'center' | 'right';
|
|
590
|
-
bgcolor?: string;
|
|
591
|
-
border?: number;
|
|
592
|
-
cellpadding?: Numberish;
|
|
593
|
-
cellspacing?: Numberish;
|
|
594
|
-
frame?: Booleanish;
|
|
595
|
-
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all';
|
|
596
|
-
summary?: string;
|
|
597
|
-
width?: Numberish;
|
|
589
|
+
align?: 'left' | 'center' | 'right' | undefined;
|
|
590
|
+
bgcolor?: string | undefined;
|
|
591
|
+
border?: number | undefined;
|
|
592
|
+
cellpadding?: Numberish | undefined;
|
|
593
|
+
cellspacing?: Numberish | undefined;
|
|
594
|
+
frame?: Booleanish | undefined;
|
|
595
|
+
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined;
|
|
596
|
+
summary?: string | undefined;
|
|
597
|
+
width?: Numberish | undefined;
|
|
598
598
|
}
|
|
599
599
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
600
|
-
autocomplete?: string;
|
|
601
|
-
cols?: Numberish;
|
|
602
|
-
dirname?: string;
|
|
603
|
-
disabled?: Booleanish;
|
|
604
|
-
form?: string;
|
|
605
|
-
maxlength?: Numberish;
|
|
606
|
-
minlength?: Numberish;
|
|
607
|
-
name?: string;
|
|
608
|
-
placeholder?: string;
|
|
609
|
-
readonly?: Booleanish;
|
|
610
|
-
required?: Booleanish;
|
|
611
|
-
rows?: Numberish;
|
|
612
|
-
value?: string | ReadonlyArray<string> | number | null;
|
|
613
|
-
wrap?: string;
|
|
600
|
+
autocomplete?: string | undefined;
|
|
601
|
+
cols?: Numberish | undefined;
|
|
602
|
+
dirname?: string | undefined;
|
|
603
|
+
disabled?: Booleanish | undefined;
|
|
604
|
+
form?: string | undefined;
|
|
605
|
+
maxlength?: Numberish | undefined;
|
|
606
|
+
minlength?: Numberish | undefined;
|
|
607
|
+
name?: string | undefined;
|
|
608
|
+
placeholder?: string | undefined;
|
|
609
|
+
readonly?: Booleanish | undefined;
|
|
610
|
+
required?: Booleanish | undefined;
|
|
611
|
+
rows?: Numberish | undefined;
|
|
612
|
+
value?: string | ReadonlyArray<string> | number | null | undefined;
|
|
613
|
+
wrap?: string | undefined;
|
|
614
614
|
}
|
|
615
615
|
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
616
|
-
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
617
|
-
colspan?: Numberish;
|
|
618
|
-
headers?: string;
|
|
619
|
-
rowspan?: Numberish;
|
|
620
|
-
scope?: string;
|
|
621
|
-
abbr?: string;
|
|
622
|
-
height?: Numberish;
|
|
623
|
-
width?: Numberish;
|
|
624
|
-
valign?: 'top' | 'middle' | 'bottom' | 'baseline';
|
|
616
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
617
|
+
colspan?: Numberish | undefined;
|
|
618
|
+
headers?: string | undefined;
|
|
619
|
+
rowspan?: Numberish | undefined;
|
|
620
|
+
scope?: string | undefined;
|
|
621
|
+
abbr?: string | undefined;
|
|
622
|
+
height?: Numberish | undefined;
|
|
623
|
+
width?: Numberish | undefined;
|
|
624
|
+
valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined;
|
|
625
625
|
}
|
|
626
626
|
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
627
|
-
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
628
|
-
colspan?: Numberish;
|
|
629
|
-
headers?: string;
|
|
630
|
-
rowspan?: Numberish;
|
|
631
|
-
scope?: string;
|
|
632
|
-
abbr?: string;
|
|
627
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
628
|
+
colspan?: Numberish | undefined;
|
|
629
|
+
headers?: string | undefined;
|
|
630
|
+
rowspan?: Numberish | undefined;
|
|
631
|
+
scope?: string | undefined;
|
|
632
|
+
abbr?: string | undefined;
|
|
633
633
|
}
|
|
634
634
|
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
635
|
-
datetime?: string;
|
|
635
|
+
datetime?: string | undefined;
|
|
636
636
|
}
|
|
637
637
|
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
638
|
-
default?: Booleanish;
|
|
639
|
-
kind?: string;
|
|
640
|
-
label?: string;
|
|
641
|
-
src?: string;
|
|
642
|
-
srclang?: string;
|
|
638
|
+
default?: Booleanish | undefined;
|
|
639
|
+
kind?: string | undefined;
|
|
640
|
+
label?: string | undefined;
|
|
641
|
+
src?: string | undefined;
|
|
642
|
+
srclang?: string | undefined;
|
|
643
643
|
}
|
|
644
644
|
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
645
|
-
height?: Numberish;
|
|
646
|
-
playsinline?: Booleanish;
|
|
647
|
-
poster?: string;
|
|
648
|
-
width?: Numberish;
|
|
649
|
-
disablePictureInPicture?: Booleanish;
|
|
650
|
-
disableRemotePlayback?: Booleanish;
|
|
645
|
+
height?: Numberish | undefined;
|
|
646
|
+
playsinline?: Booleanish | undefined;
|
|
647
|
+
poster?: string | undefined;
|
|
648
|
+
width?: Numberish | undefined;
|
|
649
|
+
disablePictureInPicture?: Booleanish | undefined;
|
|
650
|
+
disableRemotePlayback?: Booleanish | undefined;
|
|
651
651
|
}
|
|
652
652
|
interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
653
|
-
allowfullscreen?: Booleanish;
|
|
654
|
-
allowpopups?: Booleanish;
|
|
655
|
-
autosize?: Booleanish;
|
|
656
|
-
blinkfeatures?: string;
|
|
657
|
-
disableblinkfeatures?: string;
|
|
658
|
-
disableguestresize?: Booleanish;
|
|
659
|
-
disablewebsecurity?: Booleanish;
|
|
660
|
-
guestinstance?: string;
|
|
661
|
-
httpreferrer?: string;
|
|
662
|
-
nodeintegration?: Booleanish;
|
|
663
|
-
partition?: string;
|
|
664
|
-
plugins?: Booleanish;
|
|
665
|
-
preload?: string;
|
|
666
|
-
src?: string;
|
|
667
|
-
useragent?: string;
|
|
668
|
-
webpreferences?: string;
|
|
653
|
+
allowfullscreen?: Booleanish | undefined;
|
|
654
|
+
allowpopups?: Booleanish | undefined;
|
|
655
|
+
autosize?: Booleanish | undefined;
|
|
656
|
+
blinkfeatures?: string | undefined;
|
|
657
|
+
disableblinkfeatures?: string | undefined;
|
|
658
|
+
disableguestresize?: Booleanish | undefined;
|
|
659
|
+
disablewebsecurity?: Booleanish | undefined;
|
|
660
|
+
guestinstance?: string | undefined;
|
|
661
|
+
httpreferrer?: string | undefined;
|
|
662
|
+
nodeintegration?: Booleanish | undefined;
|
|
663
|
+
partition?: string | undefined;
|
|
664
|
+
plugins?: Booleanish | undefined;
|
|
665
|
+
preload?: string | undefined;
|
|
666
|
+
src?: string | undefined;
|
|
667
|
+
useragent?: string | undefined;
|
|
668
|
+
webpreferences?: string | undefined;
|
|
669
669
|
}
|
|
670
670
|
interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
671
|
-
innerHTML?: string;
|
|
671
|
+
innerHTML?: string | undefined;
|
|
672
672
|
/**
|
|
673
673
|
* SVG Styling Attributes
|
|
674
674
|
* @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
|
|
675
675
|
*/
|
|
676
|
-
class?: any;
|
|
677
|
-
style?: StyleValue;
|
|
678
|
-
color?: string;
|
|
679
|
-
height?: Numberish;
|
|
680
|
-
id?: string;
|
|
681
|
-
lang?: string;
|
|
682
|
-
max?: Numberish;
|
|
683
|
-
media?: string;
|
|
684
|
-
method?: string;
|
|
685
|
-
min?: Numberish;
|
|
686
|
-
name?: string;
|
|
687
|
-
target?: string;
|
|
688
|
-
type?: string;
|
|
689
|
-
width?: Numberish;
|
|
690
|
-
role?: string;
|
|
691
|
-
tabindex?: Numberish;
|
|
692
|
-
crossOrigin?: CrossOrigin;
|
|
693
|
-
'accent-height'?: Numberish;
|
|
694
|
-
accumulate?: 'none' | 'sum';
|
|
695
|
-
additive?: 'replace' | 'sum';
|
|
696
|
-
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
697
|
-
allowReorder?: 'no' | 'yes';
|
|
698
|
-
alphabetic?: Numberish;
|
|
699
|
-
amplitude?: Numberish;
|
|
700
|
-
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
701
|
-
ascent?: Numberish;
|
|
702
|
-
attributeName?: string;
|
|
703
|
-
attributeType?: string;
|
|
704
|
-
autoReverse?: Numberish;
|
|
705
|
-
azimuth?: Numberish;
|
|
706
|
-
baseFrequency?: Numberish;
|
|
707
|
-
'baseline-shift'?: Numberish;
|
|
708
|
-
baseProfile?: Numberish;
|
|
709
|
-
bbox?: Numberish;
|
|
710
|
-
begin?: Numberish;
|
|
711
|
-
bias?: Numberish;
|
|
712
|
-
by?: Numberish;
|
|
713
|
-
calcMode?: Numberish;
|
|
714
|
-
'cap-height'?: Numberish;
|
|
715
|
-
clip?: Numberish;
|
|
716
|
-
'clip-path'?: string;
|
|
717
|
-
clipPathUnits?: Numberish;
|
|
718
|
-
'clip-rule'?: Numberish;
|
|
719
|
-
'color-interpolation'?: Numberish;
|
|
720
|
-
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
721
|
-
'color-profile'?: Numberish;
|
|
722
|
-
'color-rendering'?: Numberish;
|
|
723
|
-
contentScriptType?: Numberish;
|
|
724
|
-
contentStyleType?: Numberish;
|
|
725
|
-
cursor?: Numberish;
|
|
726
|
-
cx?: Numberish;
|
|
727
|
-
cy?: Numberish;
|
|
728
|
-
d?: string;
|
|
729
|
-
decelerate?: Numberish;
|
|
730
|
-
descent?: Numberish;
|
|
731
|
-
diffuseConstant?: Numberish;
|
|
732
|
-
direction?: Numberish;
|
|
733
|
-
display?: Numberish;
|
|
734
|
-
divisor?: Numberish;
|
|
735
|
-
'dominant-baseline'?: Numberish;
|
|
736
|
-
dur?: Numberish;
|
|
737
|
-
dx?: Numberish;
|
|
738
|
-
dy?: Numberish;
|
|
739
|
-
edgeMode?: Numberish;
|
|
740
|
-
elevation?: Numberish;
|
|
741
|
-
'enable-background'?: Numberish;
|
|
742
|
-
end?: Numberish;
|
|
743
|
-
exponent?: Numberish;
|
|
744
|
-
externalResourcesRequired?: Numberish;
|
|
745
|
-
fill?: string;
|
|
746
|
-
'fill-opacity'?: Numberish;
|
|
747
|
-
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
748
|
-
filter?: string;
|
|
749
|
-
filterRes?: Numberish;
|
|
750
|
-
filterUnits?: Numberish;
|
|
751
|
-
'flood-color'?: Numberish;
|
|
752
|
-
'flood-opacity'?: Numberish;
|
|
753
|
-
focusable?: Numberish;
|
|
754
|
-
'font-family'?: string;
|
|
755
|
-
'font-size'?: Numberish;
|
|
756
|
-
'font-size-adjust'?: Numberish;
|
|
757
|
-
'font-stretch'?: Numberish;
|
|
758
|
-
'font-style'?: Numberish;
|
|
759
|
-
'font-variant'?: Numberish;
|
|
760
|
-
'font-weight'?: Numberish;
|
|
761
|
-
format?: Numberish;
|
|
762
|
-
from?: Numberish;
|
|
763
|
-
fx?: Numberish;
|
|
764
|
-
fy?: Numberish;
|
|
765
|
-
g1?: Numberish;
|
|
766
|
-
g2?: Numberish;
|
|
767
|
-
'glyph-name'?: Numberish;
|
|
768
|
-
'glyph-orientation-horizontal'?: Numberish;
|
|
769
|
-
'glyph-orientation-vertical'?: Numberish;
|
|
770
|
-
glyphRef?: Numberish;
|
|
771
|
-
gradientTransform?: string;
|
|
772
|
-
gradientUnits?: string;
|
|
773
|
-
hanging?: Numberish;
|
|
774
|
-
'horiz-adv-x'?: Numberish;
|
|
775
|
-
'horiz-origin-x'?: Numberish;
|
|
776
|
-
href?: string;
|
|
777
|
-
ideographic?: Numberish;
|
|
778
|
-
'image-rendering'?: Numberish;
|
|
779
|
-
in2?: Numberish;
|
|
780
|
-
in?: string;
|
|
781
|
-
intercept?: Numberish;
|
|
782
|
-
k1?: Numberish;
|
|
783
|
-
k2?: Numberish;
|
|
784
|
-
k3?: Numberish;
|
|
785
|
-
k4?: Numberish;
|
|
786
|
-
k?: Numberish;
|
|
787
|
-
kernelMatrix?: Numberish;
|
|
788
|
-
kernelUnitLength?: Numberish;
|
|
789
|
-
kerning?: Numberish;
|
|
790
|
-
keyPoints?: Numberish;
|
|
791
|
-
keySplines?: Numberish;
|
|
792
|
-
keyTimes?: Numberish;
|
|
793
|
-
lengthAdjust?: Numberish;
|
|
794
|
-
'letter-spacing'?: Numberish;
|
|
795
|
-
'lighting-color'?: Numberish;
|
|
796
|
-
limitingConeAngle?: Numberish;
|
|
797
|
-
local?: Numberish;
|
|
798
|
-
'marker-end'?: string;
|
|
799
|
-
markerHeight?: Numberish;
|
|
800
|
-
'marker-mid'?: string;
|
|
801
|
-
'marker-start'?: string;
|
|
802
|
-
markerUnits?: Numberish;
|
|
803
|
-
markerWidth?: Numberish;
|
|
804
|
-
mask?: string;
|
|
805
|
-
maskContentUnits?: Numberish;
|
|
806
|
-
maskUnits?: Numberish;
|
|
807
|
-
mathematical?: Numberish;
|
|
808
|
-
mode?: Numberish;
|
|
809
|
-
numOctaves?: Numberish;
|
|
810
|
-
offset?: Numberish;
|
|
811
|
-
opacity?: Numberish;
|
|
812
|
-
operator?: Numberish;
|
|
813
|
-
order?: Numberish;
|
|
814
|
-
orient?: Numberish;
|
|
815
|
-
orientation?: Numberish;
|
|
816
|
-
origin?: Numberish;
|
|
817
|
-
overflow?: Numberish;
|
|
818
|
-
'overline-position'?: Numberish;
|
|
819
|
-
'overline-thickness'?: Numberish;
|
|
820
|
-
'paint-order'?: Numberish;
|
|
821
|
-
'panose-1'?: Numberish;
|
|
822
|
-
pathLength?: Numberish;
|
|
823
|
-
patternContentUnits?: string;
|
|
824
|
-
patternTransform?: Numberish;
|
|
825
|
-
patternUnits?: string;
|
|
826
|
-
'pointer-events'?: Numberish;
|
|
827
|
-
points?: string;
|
|
828
|
-
pointsAtX?: Numberish;
|
|
829
|
-
pointsAtY?: Numberish;
|
|
830
|
-
pointsAtZ?: Numberish;
|
|
831
|
-
preserveAlpha?: Numberish;
|
|
832
|
-
preserveAspectRatio?: string;
|
|
833
|
-
primitiveUnits?: Numberish;
|
|
834
|
-
r?: Numberish;
|
|
835
|
-
radius?: Numberish;
|
|
836
|
-
refX?: Numberish;
|
|
837
|
-
refY?: Numberish;
|
|
838
|
-
renderingIntent?: Numberish;
|
|
839
|
-
repeatCount?: Numberish;
|
|
840
|
-
repeatDur?: Numberish;
|
|
841
|
-
requiredExtensions?: Numberish;
|
|
842
|
-
requiredFeatures?: Numberish;
|
|
843
|
-
restart?: Numberish;
|
|
844
|
-
result?: string;
|
|
845
|
-
rotate?: Numberish;
|
|
846
|
-
rx?: Numberish;
|
|
847
|
-
ry?: Numberish;
|
|
848
|
-
scale?: Numberish;
|
|
849
|
-
seed?: Numberish;
|
|
850
|
-
'shape-rendering'?: Numberish;
|
|
851
|
-
slope?: Numberish;
|
|
852
|
-
spacing?: Numberish;
|
|
853
|
-
specularConstant?: Numberish;
|
|
854
|
-
specularExponent?: Numberish;
|
|
855
|
-
speed?: Numberish;
|
|
856
|
-
spreadMethod?: string;
|
|
857
|
-
startOffset?: Numberish;
|
|
858
|
-
stdDeviation?: Numberish;
|
|
859
|
-
stemh?: Numberish;
|
|
860
|
-
stemv?: Numberish;
|
|
861
|
-
stitchTiles?: Numberish;
|
|
862
|
-
'stop-color'?: string;
|
|
863
|
-
'stop-opacity'?: Numberish;
|
|
864
|
-
'strikethrough-position'?: Numberish;
|
|
865
|
-
'strikethrough-thickness'?: Numberish;
|
|
866
|
-
string?: Numberish;
|
|
867
|
-
stroke?: string;
|
|
868
|
-
'stroke-dasharray'?: Numberish;
|
|
869
|
-
'stroke-dashoffset'?: Numberish;
|
|
870
|
-
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
871
|
-
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
872
|
-
'stroke-miterlimit'?: Numberish;
|
|
873
|
-
'stroke-opacity'?: Numberish;
|
|
874
|
-
'stroke-width'?: Numberish;
|
|
875
|
-
surfaceScale?: Numberish;
|
|
876
|
-
systemLanguage?: Numberish;
|
|
877
|
-
tableValues?: Numberish;
|
|
878
|
-
targetX?: Numberish;
|
|
879
|
-
targetY?: Numberish;
|
|
880
|
-
'text-anchor'?: string;
|
|
881
|
-
'text-decoration'?: Numberish;
|
|
882
|
-
textLength?: Numberish;
|
|
883
|
-
'text-rendering'?: Numberish;
|
|
884
|
-
to?: Numberish;
|
|
885
|
-
transform?: string;
|
|
886
|
-
u1?: Numberish;
|
|
887
|
-
u2?: Numberish;
|
|
888
|
-
'underline-position'?: Numberish;
|
|
889
|
-
'underline-thickness'?: Numberish;
|
|
890
|
-
unicode?: Numberish;
|
|
891
|
-
'unicode-bidi'?: Numberish;
|
|
892
|
-
'unicode-range'?: Numberish;
|
|
893
|
-
'unitsPer-em'?: Numberish;
|
|
894
|
-
'v-alphabetic'?: Numberish;
|
|
895
|
-
values?: string;
|
|
896
|
-
'vector-effect'?: Numberish;
|
|
897
|
-
version?: string;
|
|
898
|
-
'vert-adv-y'?: Numberish;
|
|
899
|
-
'vert-origin-x'?: Numberish;
|
|
900
|
-
'vert-origin-y'?: Numberish;
|
|
901
|
-
'v-hanging'?: Numberish;
|
|
902
|
-
'v-ideographic'?: Numberish;
|
|
903
|
-
viewBox?: string;
|
|
904
|
-
viewTarget?: Numberish;
|
|
905
|
-
visibility?: Numberish;
|
|
906
|
-
'v-mathematical'?: Numberish;
|
|
907
|
-
widths?: Numberish;
|
|
908
|
-
'word-spacing'?: Numberish;
|
|
909
|
-
'writing-mode'?: Numberish;
|
|
910
|
-
x1?: Numberish;
|
|
911
|
-
x2?: Numberish;
|
|
912
|
-
x?: Numberish;
|
|
913
|
-
xChannelSelector?: string;
|
|
914
|
-
'x-height'?: Numberish;
|
|
915
|
-
xlinkActuate?: string;
|
|
916
|
-
xlinkArcrole?: string;
|
|
917
|
-
xlinkHref?: string;
|
|
918
|
-
xlinkRole?: string;
|
|
919
|
-
xlinkShow?: string;
|
|
920
|
-
xlinkTitle?: string;
|
|
921
|
-
xlinkType?: string;
|
|
922
|
-
xmlns?: string;
|
|
923
|
-
xmlnsXlink?: string;
|
|
924
|
-
y1?: Numberish;
|
|
925
|
-
y2?: Numberish;
|
|
926
|
-
y?: Numberish;
|
|
927
|
-
yChannelSelector?: string;
|
|
928
|
-
z?: Numberish;
|
|
929
|
-
zoomAndPan?: string;
|
|
676
|
+
class?: any | undefined;
|
|
677
|
+
style?: StyleValue | undefined;
|
|
678
|
+
color?: string | undefined;
|
|
679
|
+
height?: Numberish | undefined;
|
|
680
|
+
id?: string | undefined;
|
|
681
|
+
lang?: string | undefined;
|
|
682
|
+
max?: Numberish | undefined;
|
|
683
|
+
media?: string | undefined;
|
|
684
|
+
method?: string | undefined;
|
|
685
|
+
min?: Numberish | undefined;
|
|
686
|
+
name?: string | undefined;
|
|
687
|
+
target?: string | undefined;
|
|
688
|
+
type?: string | undefined;
|
|
689
|
+
width?: Numberish | undefined;
|
|
690
|
+
role?: string | undefined;
|
|
691
|
+
tabindex?: Numberish | undefined;
|
|
692
|
+
crossOrigin?: CrossOrigin | undefined;
|
|
693
|
+
'accent-height'?: Numberish | undefined;
|
|
694
|
+
accumulate?: 'none' | 'sum' | undefined;
|
|
695
|
+
additive?: 'replace' | 'sum' | undefined;
|
|
696
|
+
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit' | undefined;
|
|
697
|
+
allowReorder?: 'no' | 'yes' | undefined;
|
|
698
|
+
alphabetic?: Numberish | undefined;
|
|
699
|
+
amplitude?: Numberish | undefined;
|
|
700
|
+
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated' | undefined;
|
|
701
|
+
ascent?: Numberish | undefined;
|
|
702
|
+
attributeName?: string | undefined;
|
|
703
|
+
attributeType?: string | undefined;
|
|
704
|
+
autoReverse?: Numberish | undefined;
|
|
705
|
+
azimuth?: Numberish | undefined;
|
|
706
|
+
baseFrequency?: Numberish | undefined;
|
|
707
|
+
'baseline-shift'?: Numberish | undefined;
|
|
708
|
+
baseProfile?: Numberish | undefined;
|
|
709
|
+
bbox?: Numberish | undefined;
|
|
710
|
+
begin?: Numberish | undefined;
|
|
711
|
+
bias?: Numberish | undefined;
|
|
712
|
+
by?: Numberish | undefined;
|
|
713
|
+
calcMode?: Numberish | undefined;
|
|
714
|
+
'cap-height'?: Numberish | undefined;
|
|
715
|
+
clip?: Numberish | undefined;
|
|
716
|
+
'clip-path'?: string | undefined;
|
|
717
|
+
clipPathUnits?: Numberish | undefined;
|
|
718
|
+
'clip-rule'?: Numberish | undefined;
|
|
719
|
+
'color-interpolation'?: Numberish | undefined;
|
|
720
|
+
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit' | undefined;
|
|
721
|
+
'color-profile'?: Numberish | undefined;
|
|
722
|
+
'color-rendering'?: Numberish | undefined;
|
|
723
|
+
contentScriptType?: Numberish | undefined;
|
|
724
|
+
contentStyleType?: Numberish | undefined;
|
|
725
|
+
cursor?: Numberish | undefined;
|
|
726
|
+
cx?: Numberish | undefined;
|
|
727
|
+
cy?: Numberish | undefined;
|
|
728
|
+
d?: string | undefined;
|
|
729
|
+
decelerate?: Numberish | undefined;
|
|
730
|
+
descent?: Numberish | undefined;
|
|
731
|
+
diffuseConstant?: Numberish | undefined;
|
|
732
|
+
direction?: Numberish | undefined;
|
|
733
|
+
display?: Numberish | undefined;
|
|
734
|
+
divisor?: Numberish | undefined;
|
|
735
|
+
'dominant-baseline'?: Numberish | undefined;
|
|
736
|
+
dur?: Numberish | undefined;
|
|
737
|
+
dx?: Numberish | undefined;
|
|
738
|
+
dy?: Numberish | undefined;
|
|
739
|
+
edgeMode?: Numberish | undefined;
|
|
740
|
+
elevation?: Numberish | undefined;
|
|
741
|
+
'enable-background'?: Numberish | undefined;
|
|
742
|
+
end?: Numberish | undefined;
|
|
743
|
+
exponent?: Numberish | undefined;
|
|
744
|
+
externalResourcesRequired?: Numberish | undefined;
|
|
745
|
+
fill?: string | undefined;
|
|
746
|
+
'fill-opacity'?: Numberish | undefined;
|
|
747
|
+
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit' | undefined;
|
|
748
|
+
filter?: string | undefined;
|
|
749
|
+
filterRes?: Numberish | undefined;
|
|
750
|
+
filterUnits?: Numberish | undefined;
|
|
751
|
+
'flood-color'?: Numberish | undefined;
|
|
752
|
+
'flood-opacity'?: Numberish | undefined;
|
|
753
|
+
focusable?: Numberish | undefined;
|
|
754
|
+
'font-family'?: string | undefined;
|
|
755
|
+
'font-size'?: Numberish | undefined;
|
|
756
|
+
'font-size-adjust'?: Numberish | undefined;
|
|
757
|
+
'font-stretch'?: Numberish | undefined;
|
|
758
|
+
'font-style'?: Numberish | undefined;
|
|
759
|
+
'font-variant'?: Numberish | undefined;
|
|
760
|
+
'font-weight'?: Numberish | undefined;
|
|
761
|
+
format?: Numberish | undefined;
|
|
762
|
+
from?: Numberish | undefined;
|
|
763
|
+
fx?: Numberish | undefined;
|
|
764
|
+
fy?: Numberish | undefined;
|
|
765
|
+
g1?: Numberish | undefined;
|
|
766
|
+
g2?: Numberish | undefined;
|
|
767
|
+
'glyph-name'?: Numberish | undefined;
|
|
768
|
+
'glyph-orientation-horizontal'?: Numberish | undefined;
|
|
769
|
+
'glyph-orientation-vertical'?: Numberish | undefined;
|
|
770
|
+
glyphRef?: Numberish | undefined;
|
|
771
|
+
gradientTransform?: string | undefined;
|
|
772
|
+
gradientUnits?: string | undefined;
|
|
773
|
+
hanging?: Numberish | undefined;
|
|
774
|
+
'horiz-adv-x'?: Numberish | undefined;
|
|
775
|
+
'horiz-origin-x'?: Numberish | undefined;
|
|
776
|
+
href?: string | undefined;
|
|
777
|
+
ideographic?: Numberish | undefined;
|
|
778
|
+
'image-rendering'?: Numberish | undefined;
|
|
779
|
+
in2?: Numberish | undefined;
|
|
780
|
+
in?: string | undefined;
|
|
781
|
+
intercept?: Numberish | undefined;
|
|
782
|
+
k1?: Numberish | undefined;
|
|
783
|
+
k2?: Numberish | undefined;
|
|
784
|
+
k3?: Numberish | undefined;
|
|
785
|
+
k4?: Numberish | undefined;
|
|
786
|
+
k?: Numberish | undefined;
|
|
787
|
+
kernelMatrix?: Numberish | undefined;
|
|
788
|
+
kernelUnitLength?: Numberish | undefined;
|
|
789
|
+
kerning?: Numberish | undefined;
|
|
790
|
+
keyPoints?: Numberish | undefined;
|
|
791
|
+
keySplines?: Numberish | undefined;
|
|
792
|
+
keyTimes?: Numberish | undefined;
|
|
793
|
+
lengthAdjust?: Numberish | undefined;
|
|
794
|
+
'letter-spacing'?: Numberish | undefined;
|
|
795
|
+
'lighting-color'?: Numberish | undefined;
|
|
796
|
+
limitingConeAngle?: Numberish | undefined;
|
|
797
|
+
local?: Numberish | undefined;
|
|
798
|
+
'marker-end'?: string | undefined;
|
|
799
|
+
markerHeight?: Numberish | undefined;
|
|
800
|
+
'marker-mid'?: string | undefined;
|
|
801
|
+
'marker-start'?: string | undefined;
|
|
802
|
+
markerUnits?: Numberish | undefined;
|
|
803
|
+
markerWidth?: Numberish | undefined;
|
|
804
|
+
mask?: string | undefined;
|
|
805
|
+
maskContentUnits?: Numberish | undefined;
|
|
806
|
+
maskUnits?: Numberish | undefined;
|
|
807
|
+
mathematical?: Numberish | undefined;
|
|
808
|
+
mode?: Numberish | undefined;
|
|
809
|
+
numOctaves?: Numberish | undefined;
|
|
810
|
+
offset?: Numberish | undefined;
|
|
811
|
+
opacity?: Numberish | undefined;
|
|
812
|
+
operator?: Numberish | undefined;
|
|
813
|
+
order?: Numberish | undefined;
|
|
814
|
+
orient?: Numberish | undefined;
|
|
815
|
+
orientation?: Numberish | undefined;
|
|
816
|
+
origin?: Numberish | undefined;
|
|
817
|
+
overflow?: Numberish | undefined;
|
|
818
|
+
'overline-position'?: Numberish | undefined;
|
|
819
|
+
'overline-thickness'?: Numberish | undefined;
|
|
820
|
+
'paint-order'?: Numberish | undefined;
|
|
821
|
+
'panose-1'?: Numberish | undefined;
|
|
822
|
+
pathLength?: Numberish | undefined;
|
|
823
|
+
patternContentUnits?: string | undefined;
|
|
824
|
+
patternTransform?: Numberish | undefined;
|
|
825
|
+
patternUnits?: string | undefined;
|
|
826
|
+
'pointer-events'?: Numberish | undefined;
|
|
827
|
+
points?: string | undefined;
|
|
828
|
+
pointsAtX?: Numberish | undefined;
|
|
829
|
+
pointsAtY?: Numberish | undefined;
|
|
830
|
+
pointsAtZ?: Numberish | undefined;
|
|
831
|
+
preserveAlpha?: Numberish | undefined;
|
|
832
|
+
preserveAspectRatio?: string | undefined;
|
|
833
|
+
primitiveUnits?: Numberish | undefined;
|
|
834
|
+
r?: Numberish | undefined;
|
|
835
|
+
radius?: Numberish | undefined;
|
|
836
|
+
refX?: Numberish | undefined;
|
|
837
|
+
refY?: Numberish | undefined;
|
|
838
|
+
renderingIntent?: Numberish | undefined;
|
|
839
|
+
repeatCount?: Numberish | undefined;
|
|
840
|
+
repeatDur?: Numberish | undefined;
|
|
841
|
+
requiredExtensions?: Numberish | undefined;
|
|
842
|
+
requiredFeatures?: Numberish | undefined;
|
|
843
|
+
restart?: Numberish | undefined;
|
|
844
|
+
result?: string | undefined;
|
|
845
|
+
rotate?: Numberish | undefined;
|
|
846
|
+
rx?: Numberish | undefined;
|
|
847
|
+
ry?: Numberish | undefined;
|
|
848
|
+
scale?: Numberish | undefined;
|
|
849
|
+
seed?: Numberish | undefined;
|
|
850
|
+
'shape-rendering'?: Numberish | undefined;
|
|
851
|
+
slope?: Numberish | undefined;
|
|
852
|
+
spacing?: Numberish | undefined;
|
|
853
|
+
specularConstant?: Numberish | undefined;
|
|
854
|
+
specularExponent?: Numberish | undefined;
|
|
855
|
+
speed?: Numberish | undefined;
|
|
856
|
+
spreadMethod?: string | undefined;
|
|
857
|
+
startOffset?: Numberish | undefined;
|
|
858
|
+
stdDeviation?: Numberish | undefined;
|
|
859
|
+
stemh?: Numberish | undefined;
|
|
860
|
+
stemv?: Numberish | undefined;
|
|
861
|
+
stitchTiles?: Numberish | undefined;
|
|
862
|
+
'stop-color'?: string | undefined;
|
|
863
|
+
'stop-opacity'?: Numberish | undefined;
|
|
864
|
+
'strikethrough-position'?: Numberish | undefined;
|
|
865
|
+
'strikethrough-thickness'?: Numberish | undefined;
|
|
866
|
+
string?: Numberish | undefined;
|
|
867
|
+
stroke?: string | undefined;
|
|
868
|
+
'stroke-dasharray'?: Numberish | undefined;
|
|
869
|
+
'stroke-dashoffset'?: Numberish | undefined;
|
|
870
|
+
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit' | undefined;
|
|
871
|
+
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit' | undefined;
|
|
872
|
+
'stroke-miterlimit'?: Numberish | undefined;
|
|
873
|
+
'stroke-opacity'?: Numberish | undefined;
|
|
874
|
+
'stroke-width'?: Numberish | undefined;
|
|
875
|
+
surfaceScale?: Numberish | undefined;
|
|
876
|
+
systemLanguage?: Numberish | undefined;
|
|
877
|
+
tableValues?: Numberish | undefined;
|
|
878
|
+
targetX?: Numberish | undefined;
|
|
879
|
+
targetY?: Numberish | undefined;
|
|
880
|
+
'text-anchor'?: string | undefined;
|
|
881
|
+
'text-decoration'?: Numberish | undefined;
|
|
882
|
+
textLength?: Numberish | undefined;
|
|
883
|
+
'text-rendering'?: Numberish | undefined;
|
|
884
|
+
to?: Numberish | undefined;
|
|
885
|
+
transform?: string | undefined;
|
|
886
|
+
u1?: Numberish | undefined;
|
|
887
|
+
u2?: Numberish | undefined;
|
|
888
|
+
'underline-position'?: Numberish | undefined;
|
|
889
|
+
'underline-thickness'?: Numberish | undefined;
|
|
890
|
+
unicode?: Numberish | undefined;
|
|
891
|
+
'unicode-bidi'?: Numberish | undefined;
|
|
892
|
+
'unicode-range'?: Numberish | undefined;
|
|
893
|
+
'unitsPer-em'?: Numberish | undefined;
|
|
894
|
+
'v-alphabetic'?: Numberish | undefined;
|
|
895
|
+
values?: string | undefined;
|
|
896
|
+
'vector-effect'?: Numberish | undefined;
|
|
897
|
+
version?: string | undefined;
|
|
898
|
+
'vert-adv-y'?: Numberish | undefined;
|
|
899
|
+
'vert-origin-x'?: Numberish | undefined;
|
|
900
|
+
'vert-origin-y'?: Numberish | undefined;
|
|
901
|
+
'v-hanging'?: Numberish | undefined;
|
|
902
|
+
'v-ideographic'?: Numberish | undefined;
|
|
903
|
+
viewBox?: string | undefined;
|
|
904
|
+
viewTarget?: Numberish | undefined;
|
|
905
|
+
visibility?: Numberish | undefined;
|
|
906
|
+
'v-mathematical'?: Numberish | undefined;
|
|
907
|
+
widths?: Numberish | undefined;
|
|
908
|
+
'word-spacing'?: Numberish | undefined;
|
|
909
|
+
'writing-mode'?: Numberish | undefined;
|
|
910
|
+
x1?: Numberish | undefined;
|
|
911
|
+
x2?: Numberish | undefined;
|
|
912
|
+
x?: Numberish | undefined;
|
|
913
|
+
xChannelSelector?: string | undefined;
|
|
914
|
+
'x-height'?: Numberish | undefined;
|
|
915
|
+
xlinkActuate?: string | undefined;
|
|
916
|
+
xlinkArcrole?: string | undefined;
|
|
917
|
+
xlinkHref?: string | undefined;
|
|
918
|
+
xlinkRole?: string | undefined;
|
|
919
|
+
xlinkShow?: string | undefined;
|
|
920
|
+
xlinkTitle?: string | undefined;
|
|
921
|
+
xlinkType?: string | undefined;
|
|
922
|
+
xmlns?: string | undefined;
|
|
923
|
+
xmlnsXlink?: string | undefined;
|
|
924
|
+
y1?: Numberish | undefined;
|
|
925
|
+
y2?: Numberish | undefined;
|
|
926
|
+
y?: Numberish | undefined;
|
|
927
|
+
yChannelSelector?: string | undefined;
|
|
928
|
+
z?: Numberish | undefined;
|
|
929
|
+
zoomAndPan?: string | undefined;
|
|
930
930
|
}
|
|
931
931
|
interface IntrinsicElementAttributes {
|
|
932
932
|
a: AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
@@ -1191,9 +1191,9 @@ interface Events<T = Element> {
|
|
|
1191
1191
|
onTransitionstart: TransitionEventHandler<T>;
|
|
1192
1192
|
}
|
|
1193
1193
|
type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
|
|
1194
|
-
type _ReservedProps =
|
|
1195
|
-
interface ReservedProps extends _ReservedProps {}
|
|
1196
|
-
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps };
|
|
1194
|
+
type _ReservedProps = vue0.ReservedProps;
|
|
1195
|
+
interface ReservedProps$1 extends _ReservedProps {}
|
|
1196
|
+
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps$1 };
|
|
1197
1197
|
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
|
|
1198
1198
|
nativeEvent: E;
|
|
1199
1199
|
currentTarget: C;
|
|
@@ -1323,4 +1323,4 @@ interface TransitionEvent<T = Element> extends SyntheticEvent<T, globalThis.Tran
|
|
|
1323
1323
|
}
|
|
1324
1324
|
type TransitionEventHandler<T = Element> = EventHandler<TransitionEvent<T>>;
|
|
1325
1325
|
//#endregion
|
|
1326
|
-
export { AbstractView, AnchorHTMLAttributes, AnimationEvent, AnimationEventHandler, AreaHTMLAttributes, AriaAttributes, AudioHTMLAttributes, BaseEventHandler, BaseHTMLAttributes, BaseSyntheticEvent, BlockquoteHTMLAttributes, ButtonHTMLAttributes, CSSProperties, CanvasHTMLAttributes, ChangeEvent, ChangeEventHandler, ClipboardEvent, ClipboardEventHandler, ColHTMLAttributes, ColgroupHTMLAttributes, CompositionEvent, CompositionEventHandler, DataHTMLAttributes, DelHTMLAttributes, DetailsHTMLAttributes, DialogHTMLAttributes, DragEvent, DragEventHandler, EmbedHTMLAttributes, EventHandler, EventHandlers, Events, FieldsetHTMLAttributes, FocusEvent, FocusEventHandler, FormEvent, FormEventHandler, FormHTMLAttributes, HTMLAttributes, HtmlHTMLAttributes, IframeHTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, InputTypeHTMLAttribute, InsHTMLAttributes, IntrinsicElementAttributes, KeyboardEvent, KeyboardEventHandler, KeygenHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, LinkHTMLAttributes, MapHTMLAttributes, MediaHTMLAttributes, MenuHTMLAttributes, MetaHTMLAttributes, MeterHTMLAttributes, ModifierKey, MouseEvent, MouseEventHandler, NativeElements, ObjectHTMLAttributes, OlHTMLAttributes, OptgroupHTMLAttributes, OptionHTMLAttributes, OutputHTMLAttributes, ParamHTMLAttributes, ProgressHTMLAttributes, QuoteHTMLAttributes, ReservedProps, SVGAttributes, ScriptHTMLAttributes, SelectHTMLAttributes, SourceHTMLAttributes, StyleHTMLAttributes, StyleValue, SyntheticEvent, TableHTMLAttributes, TdHTMLAttributes, TextareaHTMLAttributes, ThHTMLAttributes, TimeHTMLAttributes, TrackHTMLAttributes, TransitionEvent, TransitionEventHandler, UIEvent, UIEventHandler, VideoHTMLAttributes, WebViewHTMLAttributes, WheelEvent, WheelEventHandler };
|
|
1326
|
+
export { AbstractView, AnchorHTMLAttributes, AnimationEvent, AnimationEventHandler, AreaHTMLAttributes, AriaAttributes, AudioHTMLAttributes, BaseEventHandler, BaseHTMLAttributes, BaseSyntheticEvent, BlockquoteHTMLAttributes, ButtonHTMLAttributes, CSSProperties, CanvasHTMLAttributes, ChangeEvent, ChangeEventHandler, ClipboardEvent, ClipboardEventHandler, ColHTMLAttributes, ColgroupHTMLAttributes, CompositionEvent, CompositionEventHandler, DataHTMLAttributes, DelHTMLAttributes, DetailsHTMLAttributes, DialogHTMLAttributes, DragEvent, DragEventHandler, EmbedHTMLAttributes, EventHandler, EventHandlers, Events, FieldsetHTMLAttributes, FocusEvent, FocusEventHandler, FormEvent, FormEventHandler, FormHTMLAttributes, HTMLAttributes, HtmlHTMLAttributes, IframeHTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, InputTypeHTMLAttribute, InsHTMLAttributes, IntrinsicElementAttributes, KeyboardEvent, KeyboardEventHandler, KeygenHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, LinkHTMLAttributes, MapHTMLAttributes, MediaHTMLAttributes, MenuHTMLAttributes, MetaHTMLAttributes, MeterHTMLAttributes, ModifierKey, MouseEvent, MouseEventHandler, NativeElements, ObjectHTMLAttributes, OlHTMLAttributes, OptgroupHTMLAttributes, OptionHTMLAttributes, OutputHTMLAttributes, ParamHTMLAttributes, ProgressHTMLAttributes, QuoteHTMLAttributes, ReservedProps$1 as ReservedProps, SVGAttributes, ScriptHTMLAttributes, SelectHTMLAttributes, SourceHTMLAttributes, StyleHTMLAttributes, StyleValue, SyntheticEvent, TableHTMLAttributes, TdHTMLAttributes, TextareaHTMLAttributes, ThHTMLAttributes, TimeHTMLAttributes, TrackHTMLAttributes, TransitionEvent, TransitionEventHandler, UIEvent, UIEventHandler, VideoHTMLAttributes, WebViewHTMLAttributes, WheelEvent, WheelEventHandler };
|