solid-js 1.9.4 → 1.9.6
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/LICENSE +1 -1
- package/dist/dev.cjs +57 -42
- package/dist/dev.js +65 -50
- package/dist/solid.cjs +38 -34
- package/dist/solid.js +49 -41
- package/h/jsx-runtime/types/jsx.d.ts +2975 -1021
- package/html/dist/html.cjs +5 -5
- package/html/dist/html.js +5 -5
- package/package.json +1 -1
- package/store/types/store.d.ts +1 -0
- package/types/index.d.ts +3 -0
- package/types/jsx.d.ts +2126 -281
- package/types/reactive/observable.d.ts +11 -11
- package/types/reactive/signal.d.ts +4 -0
- package/types/server/reactive.d.ts +6 -1
- package/universal/dist/dev.cjs +3 -1
- package/universal/dist/dev.js +4 -2
- package/universal/dist/universal.cjs +3 -1
- package/universal/dist/universal.js +4 -2
- package/web/dist/dev.cjs +21 -14
- package/web/dist/dev.js +25 -12
- package/web/dist/server.cjs +18 -11
- package/web/dist/server.js +22 -8
- package/web/dist/web.cjs +21 -14
- package/web/dist/web.js +23 -10
- package/web/types/core.d.ts +1 -1
- package/web/types/index.d.ts +16 -0
package/types/jsx.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
THIS FILE IS GENERATED BY `./jsx-update.mjs`.
|
|
3
|
+
PLEASE UPDATE `jsx-h.d.ts` INSTEAD AND RUN `node jsx-update.mjs`.
|
|
4
|
+
*/
|
|
5
|
+
|
|
1
6
|
import * as csstype from "csstype";
|
|
2
7
|
|
|
3
8
|
/**
|
|
@@ -5,12 +10,28 @@ import * as csstype from "csstype";
|
|
|
5
10
|
*
|
|
6
11
|
* https://github.com/adamhaile/surplus/blob/master/index.d.ts
|
|
7
12
|
* https://github.com/infernojs/inferno/blob/master/packages/inferno/src/core/types.ts
|
|
13
|
+
*
|
|
14
|
+
* MathML typings coming mostly from Preact
|
|
15
|
+
* https://github.com/preactjs/preact/blob/07dc9f324e58569ce66634aa03fe8949b4190358/src/jsx.d.ts#L2575
|
|
16
|
+
*
|
|
17
|
+
* Checked against other frameworks via the following table:
|
|
18
|
+
* https://potahtml.github.io/namespace-jsx-project/index.html
|
|
8
19
|
*/
|
|
9
20
|
type DOMElement = Element;
|
|
10
21
|
|
|
11
22
|
export namespace JSX {
|
|
23
|
+
// START - difference between `jsx.d.ts` and `jsx-h.d.ts`
|
|
24
|
+
|
|
25
|
+
type FunctionMaybe<T = unknown> = { (): T } | T;
|
|
26
|
+
interface FunctionElement {
|
|
27
|
+
(): Element;
|
|
28
|
+
}
|
|
29
|
+
|
|
12
30
|
type Element = Node | ArrayElement | (string & {}) | number | boolean | null | undefined;
|
|
31
|
+
// END - difference between `jsx.d.ts` and `jsx-h.d.ts`
|
|
32
|
+
|
|
13
33
|
interface ArrayElement extends Array<Element> {}
|
|
34
|
+
|
|
14
35
|
interface ElementClass {
|
|
15
36
|
// empty, libs can define requirements downstream
|
|
16
37
|
}
|
|
@@ -20,6 +41,9 @@ export namespace JSX {
|
|
|
20
41
|
interface ElementChildrenAttribute {
|
|
21
42
|
children: {};
|
|
22
43
|
}
|
|
44
|
+
|
|
45
|
+
// Event handlers
|
|
46
|
+
|
|
23
47
|
interface EventHandler<T, E extends Event> {
|
|
24
48
|
(
|
|
25
49
|
e: E & {
|
|
@@ -101,6 +125,7 @@ export namespace JSX {
|
|
|
101
125
|
E,
|
|
102
126
|
FocusEventHandler<T, E>
|
|
103
127
|
>;
|
|
128
|
+
// end event handlers
|
|
104
129
|
|
|
105
130
|
const SERIALIZABLE: unique symbol;
|
|
106
131
|
interface SerializableAttributeValue {
|
|
@@ -168,78 +193,118 @@ export namespace JSX {
|
|
|
168
193
|
CustomCaptureEvents[Key]
|
|
169
194
|
>;
|
|
170
195
|
};
|
|
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
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
196
|
+
|
|
197
|
+
// events
|
|
198
|
+
interface ElementEventMap<T> {
|
|
199
|
+
onFullscreenChange?: EventHandlerUnion<T, Event> | undefined;
|
|
200
|
+
onFullscreenError?: EventHandlerUnion<T, Event> | undefined;
|
|
201
|
+
|
|
202
|
+
"on:fullscreenchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
203
|
+
"on:fullscreenerror"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
204
|
+
|
|
205
|
+
onfullscreenchange?: EventHandlerUnion<T, Event> | undefined;
|
|
206
|
+
onfullscreenerror?: EventHandlerUnion<T, Event> | undefined;
|
|
207
|
+
}
|
|
208
|
+
interface WindowEventMap<T> {
|
|
209
|
+
onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
|
|
210
|
+
onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
|
|
211
|
+
onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
|
|
212
|
+
onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
213
|
+
onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
214
|
+
onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
|
|
215
|
+
onLanguageChange?: EventHandlerUnion<T, Event> | undefined;
|
|
216
|
+
onMessage?: EventHandlerUnion<T, MessageEvent> | undefined;
|
|
217
|
+
onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
|
|
218
|
+
onOffline?: EventHandlerUnion<T, Event> | undefined;
|
|
219
|
+
onOnline?: EventHandlerUnion<T, Event> | undefined;
|
|
220
|
+
onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
221
|
+
// TODO `PageRevealEvent` is currently undefined on TS
|
|
222
|
+
onPageReveal?: EventHandlerUnion<T, Event> | undefined;
|
|
223
|
+
onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
224
|
+
// TODO `PageSwapEvent` is currently undefined on TS
|
|
225
|
+
onPageSwap?: EventHandlerUnion<T, Event> | undefined;
|
|
226
|
+
onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
|
|
227
|
+
onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
|
|
228
|
+
onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
|
|
229
|
+
onUnhandledRejection?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
|
|
230
|
+
onUnload?: EventHandlerUnion<T, Event> | undefined;
|
|
231
|
+
|
|
232
|
+
onafterprint?: EventHandlerUnion<T, Event> | undefined;
|
|
233
|
+
onbeforeprint?: EventHandlerUnion<T, Event> | undefined;
|
|
234
|
+
onbeforeunload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
|
|
235
|
+
ongamepadconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
236
|
+
ongamepaddisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
237
|
+
onhashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
|
|
238
|
+
onlanguagechange?: EventHandlerUnion<T, Event> | undefined;
|
|
239
|
+
onmessage?: EventHandlerUnion<T, MessageEvent> | undefined;
|
|
240
|
+
onmessageerror?: EventHandlerUnion<T, MessageEvent> | undefined;
|
|
241
|
+
onoffline?: EventHandlerUnion<T, Event> | undefined;
|
|
242
|
+
ononline?: EventHandlerUnion<T, Event> | undefined;
|
|
243
|
+
onpagehide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
244
|
+
// TODO `PageRevealEvent` is currently undefined in TS
|
|
245
|
+
onpagereveal?: EventHandlerUnion<T, Event> | undefined;
|
|
246
|
+
onpageshow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
247
|
+
// TODO `PageSwapEvent` is currently undefined in TS
|
|
248
|
+
onpageswap?: EventHandlerUnion<T, Event> | undefined;
|
|
249
|
+
onpopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
|
|
250
|
+
onrejectionhandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
|
|
251
|
+
onstorage?: EventHandlerUnion<T, StorageEvent> | undefined;
|
|
252
|
+
onunhandledrejection?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
|
|
253
|
+
onunload?: EventHandlerUnion<T, Event> | undefined;
|
|
254
|
+
|
|
255
|
+
"on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
256
|
+
"on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
257
|
+
"on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
|
|
258
|
+
"on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
|
|
259
|
+
"on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
|
|
260
|
+
"on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
|
|
261
|
+
"on:languagechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
262
|
+
"on:message"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
|
|
263
|
+
"on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
|
|
264
|
+
"on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
265
|
+
"on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
266
|
+
"on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
|
|
267
|
+
// TODO `PageRevealEvent` is currently undefined in TS
|
|
268
|
+
"on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
269
|
+
"on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
|
|
270
|
+
// TODO `PageSwapEvent` is currently undefined in TS
|
|
271
|
+
"on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
272
|
+
"on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
|
|
273
|
+
"on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
|
|
274
|
+
"on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
|
|
275
|
+
"on:unhandledrejection"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
|
|
276
|
+
"on:unload"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
224
277
|
}
|
|
278
|
+
|
|
225
279
|
interface CustomEventHandlersCamelCase<T> {
|
|
226
|
-
onAbort?: EventHandlerUnion<T,
|
|
280
|
+
onAbort?: EventHandlerUnion<T, UIEvent> | undefined;
|
|
281
|
+
onAnimationCancel?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
227
282
|
onAnimationEnd?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
228
283
|
onAnimationIteration?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
229
284
|
onAnimationStart?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
230
|
-
onAuxClick?: EventHandlerUnion<T,
|
|
285
|
+
onAuxClick?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
231
286
|
onBeforeInput?: InputEventHandlerUnion<T, InputEvent> | undefined;
|
|
232
287
|
onBeforeToggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
|
|
233
288
|
onBlur?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
289
|
+
onCancel?: EventHandlerUnion<T, Event> | undefined;
|
|
234
290
|
onCanPlay?: EventHandlerUnion<T, Event> | undefined;
|
|
235
291
|
onCanPlayThrough?: EventHandlerUnion<T, Event> | undefined;
|
|
236
292
|
onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
|
|
237
293
|
onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
238
|
-
|
|
294
|
+
// TODO `CommandEvent` is currently undefined in TS
|
|
295
|
+
onCommand?: EventHandlerUnion<T, Event> | undefined;
|
|
296
|
+
onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
297
|
+
onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
298
|
+
onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
299
|
+
onContextMenu?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
300
|
+
onCopy?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
301
|
+
onCueChange?: EventHandlerUnion<T, Event> | undefined;
|
|
302
|
+
onCut?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
239
303
|
onDblClick?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
240
304
|
onDrag?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
241
305
|
onDragEnd?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
242
306
|
onDragEnter?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
307
|
+
onDragExit?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
243
308
|
onDragLeave?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
244
309
|
onDragOver?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
245
310
|
onDragStart?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
@@ -247,8 +312,10 @@ export namespace JSX {
|
|
|
247
312
|
onDurationChange?: EventHandlerUnion<T, Event> | undefined;
|
|
248
313
|
onEmptied?: EventHandlerUnion<T, Event> | undefined;
|
|
249
314
|
onEnded?: EventHandlerUnion<T, Event> | undefined;
|
|
250
|
-
onError?: EventHandlerUnion<T,
|
|
315
|
+
onError?: EventHandlerUnion<T, ErrorEvent> | undefined;
|
|
251
316
|
onFocus?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
317
|
+
onFocusIn?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
318
|
+
onFocusOut?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
252
319
|
onGotPointerCapture?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
253
320
|
onInput?: InputEventHandlerUnion<T, InputEvent> | undefined;
|
|
254
321
|
onInvalid?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -267,6 +334,7 @@ export namespace JSX {
|
|
|
267
334
|
onMouseOut?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
268
335
|
onMouseOver?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
269
336
|
onMouseUp?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
337
|
+
onPaste?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
270
338
|
onPause?: EventHandlerUnion<T, Event> | undefined;
|
|
271
339
|
onPlay?: EventHandlerUnion<T, Event> | undefined;
|
|
272
340
|
onPlaying?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -281,11 +349,15 @@ export namespace JSX {
|
|
|
281
349
|
onProgress?: EventHandlerUnion<T, ProgressEvent> | undefined;
|
|
282
350
|
onRateChange?: EventHandlerUnion<T, Event> | undefined;
|
|
283
351
|
onReset?: EventHandlerUnion<T, Event> | undefined;
|
|
352
|
+
onResize?: EventHandlerUnion<T, UIEvent> | undefined;
|
|
284
353
|
onScroll?: EventHandlerUnion<T, Event> | undefined;
|
|
285
354
|
onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
|
|
355
|
+
onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
|
|
286
356
|
onSeeked?: EventHandlerUnion<T, Event> | undefined;
|
|
287
357
|
onSeeking?: EventHandlerUnion<T, Event> | undefined;
|
|
288
358
|
onSelect?: EventHandlerUnion<T, Event> | undefined;
|
|
359
|
+
onSelectionChange?: EventHandlerUnion<T, Event> | undefined;
|
|
360
|
+
onSlotChange?: EventHandlerUnion<T, Event> | undefined;
|
|
289
361
|
onStalled?: EventHandlerUnion<T, Event> | undefined;
|
|
290
362
|
onSubmit?: EventHandlerUnion<T, SubmitEvent> | undefined;
|
|
291
363
|
onSuspend?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -295,33 +367,44 @@ export namespace JSX {
|
|
|
295
367
|
onTouchEnd?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
296
368
|
onTouchMove?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
297
369
|
onTouchStart?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
298
|
-
|
|
370
|
+
onTransitionCancel?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
299
371
|
onTransitionEnd?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
300
372
|
onTransitionRun?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
301
|
-
|
|
373
|
+
onTransitionStart?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
302
374
|
onVolumeChange?: EventHandlerUnion<T, Event> | undefined;
|
|
303
375
|
onWaiting?: EventHandlerUnion<T, Event> | undefined;
|
|
304
376
|
onWheel?: EventHandlerUnion<T, WheelEvent> | undefined;
|
|
305
377
|
}
|
|
306
378
|
/** @type {GlobalEventHandlers} */
|
|
307
379
|
interface CustomEventHandlersLowerCase<T> {
|
|
308
|
-
onabort?: EventHandlerUnion<T,
|
|
380
|
+
onabort?: EventHandlerUnion<T, UIEvent> | undefined;
|
|
381
|
+
onanimationcancel?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
309
382
|
onanimationend?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
310
383
|
onanimationiteration?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
311
384
|
onanimationstart?: EventHandlerUnion<T, AnimationEvent> | undefined;
|
|
312
|
-
onauxclick?: EventHandlerUnion<T,
|
|
385
|
+
onauxclick?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
313
386
|
onbeforeinput?: InputEventHandlerUnion<T, InputEvent> | undefined;
|
|
314
387
|
onbeforetoggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
|
|
315
388
|
onblur?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
389
|
+
oncancel?: EventHandlerUnion<T, Event> | undefined;
|
|
316
390
|
oncanplay?: EventHandlerUnion<T, Event> | undefined;
|
|
317
391
|
oncanplaythrough?: EventHandlerUnion<T, Event> | undefined;
|
|
318
392
|
onchange?: ChangeEventHandlerUnion<T, Event> | undefined;
|
|
319
393
|
onclick?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
320
|
-
|
|
394
|
+
// TODO `CommandEvent` is currently undefined in TS
|
|
395
|
+
oncommand?: EventHandlerUnion<T, Event> | undefined;
|
|
396
|
+
oncompositionend?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
397
|
+
oncompositionstart?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
398
|
+
oncompositionupdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
399
|
+
oncontextmenu?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
400
|
+
oncopy?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
401
|
+
oncuechange?: EventHandlerUnion<T, Event> | undefined;
|
|
402
|
+
oncut?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
321
403
|
ondblclick?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
322
404
|
ondrag?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
323
405
|
ondragend?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
324
406
|
ondragenter?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
407
|
+
ondragexit?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
325
408
|
ondragleave?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
326
409
|
ondragover?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
327
410
|
ondragstart?: EventHandlerUnion<T, DragEvent> | undefined;
|
|
@@ -329,8 +412,10 @@ export namespace JSX {
|
|
|
329
412
|
ondurationchange?: EventHandlerUnion<T, Event> | undefined;
|
|
330
413
|
onemptied?: EventHandlerUnion<T, Event> | undefined;
|
|
331
414
|
onended?: EventHandlerUnion<T, Event> | undefined;
|
|
332
|
-
onerror?: EventHandlerUnion<T,
|
|
415
|
+
onerror?: EventHandlerUnion<T, ErrorEvent> | undefined;
|
|
333
416
|
onfocus?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
417
|
+
onfocusin?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
418
|
+
onfocusout?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
|
|
334
419
|
ongotpointercapture?: EventHandlerUnion<T, PointerEvent> | undefined;
|
|
335
420
|
oninput?: InputEventHandlerUnion<T, InputEvent> | undefined;
|
|
336
421
|
oninvalid?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -349,6 +434,7 @@ export namespace JSX {
|
|
|
349
434
|
onmouseout?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
350
435
|
onmouseover?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
351
436
|
onmouseup?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
437
|
+
onpaste?: EventHandlerUnion<T, ClipboardEvent> | undefined;
|
|
352
438
|
onpause?: EventHandlerUnion<T, Event> | undefined;
|
|
353
439
|
onplay?: EventHandlerUnion<T, Event> | undefined;
|
|
354
440
|
onplaying?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -363,11 +449,15 @@ export namespace JSX {
|
|
|
363
449
|
onprogress?: EventHandlerUnion<T, ProgressEvent> | undefined;
|
|
364
450
|
onratechange?: EventHandlerUnion<T, Event> | undefined;
|
|
365
451
|
onreset?: EventHandlerUnion<T, Event> | undefined;
|
|
452
|
+
onresize?: EventHandlerUnion<T, UIEvent> | undefined;
|
|
366
453
|
onscroll?: EventHandlerUnion<T, Event> | undefined;
|
|
367
454
|
onscrollend?: EventHandlerUnion<T, Event> | undefined;
|
|
455
|
+
onsecuritypolicyviolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
|
|
368
456
|
onseeked?: EventHandlerUnion<T, Event> | undefined;
|
|
369
457
|
onseeking?: EventHandlerUnion<T, Event> | undefined;
|
|
370
458
|
onselect?: EventHandlerUnion<T, Event> | undefined;
|
|
459
|
+
onselectionchange?: EventHandlerUnion<T, Event> | undefined;
|
|
460
|
+
onslotchange?: EventHandlerUnion<T, Event> | undefined;
|
|
371
461
|
onstalled?: EventHandlerUnion<T, Event> | undefined;
|
|
372
462
|
onsubmit?: EventHandlerUnion<T, SubmitEvent> | undefined;
|
|
373
463
|
onsuspend?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -377,20 +467,22 @@ export namespace JSX {
|
|
|
377
467
|
ontouchend?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
378
468
|
ontouchmove?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
379
469
|
ontouchstart?: EventHandlerUnion<T, TouchEvent> | undefined;
|
|
380
|
-
|
|
470
|
+
ontransitioncancel?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
381
471
|
ontransitionend?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
382
472
|
ontransitionrun?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
383
|
-
|
|
473
|
+
ontransitionstart?: EventHandlerUnion<T, TransitionEvent> | undefined;
|
|
384
474
|
onvolumechange?: EventHandlerUnion<T, Event> | undefined;
|
|
385
475
|
onwaiting?: EventHandlerUnion<T, Event> | undefined;
|
|
386
476
|
onwheel?: EventHandlerUnion<T, WheelEvent> | undefined;
|
|
387
477
|
}
|
|
478
|
+
|
|
388
479
|
interface CustomEventHandlersNamespaced<T> {
|
|
389
|
-
"on:abort"?: EventHandlerWithOptionsUnion<T,
|
|
480
|
+
"on:abort"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
|
|
481
|
+
"on:animationcancel"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
|
|
390
482
|
"on:animationend"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
|
|
391
483
|
"on:animationiteration"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
|
|
392
484
|
"on:animationstart"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
|
|
393
|
-
"on:auxclick"?: EventHandlerWithOptionsUnion<T,
|
|
485
|
+
"on:auxclick"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
|
|
394
486
|
"on:beforeinput"?:
|
|
395
487
|
| EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
|
|
396
488
|
| undefined;
|
|
@@ -398,15 +490,25 @@ export namespace JSX {
|
|
|
398
490
|
"on:blur"?:
|
|
399
491
|
| EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
|
|
400
492
|
| undefined;
|
|
493
|
+
"on:cancel"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
401
494
|
"on:canplay"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
402
495
|
"on:canplaythrough"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
403
496
|
"on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
|
|
404
497
|
"on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
405
|
-
|
|
498
|
+
// TODO `CommandEvent` is currently undefined in TS
|
|
499
|
+
"on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
500
|
+
"on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
501
|
+
"on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
502
|
+
"on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
503
|
+
"on:contextmenu"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
|
|
504
|
+
"on:copy"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
|
|
505
|
+
"on:cuechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
506
|
+
"on:cut"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
|
|
406
507
|
"on:dblclick"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
407
508
|
"on:drag"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
408
509
|
"on:dragend"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
409
510
|
"on:dragenter"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
511
|
+
"on:dragexit"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
410
512
|
"on:dragleave"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
411
513
|
"on:dragover"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
412
514
|
"on:dragstart"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
|
|
@@ -414,10 +516,16 @@ export namespace JSX {
|
|
|
414
516
|
"on:durationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
415
517
|
"on:emptied"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
416
518
|
"on:ended"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
417
|
-
"on:error"?: EventHandlerWithOptionsUnion<T,
|
|
519
|
+
"on:error"?: EventHandlerWithOptionsUnion<T, ErrorEvent> | undefined;
|
|
418
520
|
"on:focus"?:
|
|
419
521
|
| EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
|
|
420
522
|
| undefined;
|
|
523
|
+
"on:focusin"?:
|
|
524
|
+
| EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
|
|
525
|
+
| undefined;
|
|
526
|
+
"on:focusout"?:
|
|
527
|
+
| EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
|
|
528
|
+
| undefined;
|
|
421
529
|
"on:gotpointercapture"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
|
|
422
530
|
"on:input"?:
|
|
423
531
|
| EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
|
|
@@ -438,6 +546,7 @@ export namespace JSX {
|
|
|
438
546
|
"on:mouseout"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
439
547
|
"on:mouseover"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
440
548
|
"on:mouseup"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
549
|
+
"on:paste"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
|
|
441
550
|
"on:pause"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
442
551
|
"on:play"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
443
552
|
"on:playing"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
@@ -452,11 +561,17 @@ export namespace JSX {
|
|
|
452
561
|
"on:progress"?: EventHandlerWithOptionsUnion<T, ProgressEvent> | undefined;
|
|
453
562
|
"on:ratechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
454
563
|
"on:reset"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
564
|
+
"on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
|
|
455
565
|
"on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
456
566
|
"on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
567
|
+
"on:securitypolicyviolation"?:
|
|
568
|
+
| EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
|
|
569
|
+
| undefined;
|
|
457
570
|
"on:seeked"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
458
571
|
"on:seeking"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
459
572
|
"on:select"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
573
|
+
"on:selectionchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
574
|
+
"on:slotchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
460
575
|
"on:stalled"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
461
576
|
"on:submit"?: EventHandlerWithOptionsUnion<T, SubmitEvent> | undefined;
|
|
462
577
|
"on:suspend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
@@ -466,15 +581,33 @@ export namespace JSX {
|
|
|
466
581
|
"on:touchend"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
|
|
467
582
|
"on:touchmove"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
|
|
468
583
|
"on:touchstart"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
|
|
469
|
-
"on:
|
|
584
|
+
"on:transitioncancel"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
|
|
470
585
|
"on:transitionend"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
|
|
471
586
|
"on:transitionrun"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
|
|
472
|
-
"on:
|
|
587
|
+
"on:transitionstart"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
|
|
473
588
|
"on:volumechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
474
589
|
"on:waiting"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
475
590
|
"on:wheel"?: EventHandlerWithOptionsUnion<T, WheelEvent> | undefined;
|
|
476
591
|
}
|
|
477
592
|
|
|
593
|
+
interface DOMAttributes<T>
|
|
594
|
+
extends CustomAttributes<T>,
|
|
595
|
+
DirectiveAttributes,
|
|
596
|
+
DirectiveFunctionAttributes<T>,
|
|
597
|
+
PropAttributes,
|
|
598
|
+
AttrAttributes,
|
|
599
|
+
BoolAttributes,
|
|
600
|
+
OnAttributes<T>,
|
|
601
|
+
OnCaptureAttributes<T>,
|
|
602
|
+
CustomEventHandlersCamelCase<T>,
|
|
603
|
+
CustomEventHandlersLowerCase<T>,
|
|
604
|
+
CustomEventHandlersNamespaced<T> {
|
|
605
|
+
children?: Element | undefined;
|
|
606
|
+
innerHTML?: string;
|
|
607
|
+
innerText?: string | number;
|
|
608
|
+
textContent?: string | number;
|
|
609
|
+
}
|
|
610
|
+
|
|
478
611
|
interface CSSProperties extends csstype.PropertiesHyphen {
|
|
479
612
|
// Override
|
|
480
613
|
[key: `-${string}`]: string | number | undefined;
|
|
@@ -536,6 +669,27 @@ export namespace JSX {
|
|
|
536
669
|
* region based on the change notifications defined by the aria-relevant attribute.
|
|
537
670
|
*/
|
|
538
671
|
"aria-atomic"?: boolean | "false" | "true" | undefined;
|
|
672
|
+
/**
|
|
673
|
+
* Similar to the global aria-label. Defines a string value that labels the current element,
|
|
674
|
+
* which is intended to be converted into Braille.
|
|
675
|
+
*
|
|
676
|
+
* @see aria-label.
|
|
677
|
+
*/
|
|
678
|
+
"aria-braillelabel"?: string | undefined;
|
|
679
|
+
/**
|
|
680
|
+
* Defines a human-readable, author-localized abbreviated description for the role of an element
|
|
681
|
+
* intended to be converted into Braille. Braille is not a one-to-one transliteration of letters
|
|
682
|
+
* and numbers, but rather it includes various abbreviations, contractions, and characters that
|
|
683
|
+
* represent words (known as logograms).
|
|
684
|
+
*
|
|
685
|
+
* Instead of converting long role descriptions to Braille, the aria-brailleroledescription
|
|
686
|
+
* attribute allows for providing an abbreviated version of the aria-roledescription value,
|
|
687
|
+
* which is a human-readable, author-localized description for the role of an element, for
|
|
688
|
+
* improved user experience with braille interfaces.
|
|
689
|
+
*
|
|
690
|
+
* @see aria-roledescription.
|
|
691
|
+
*/
|
|
692
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
539
693
|
/**
|
|
540
694
|
* Indicates whether inputting text could trigger display of one or more predictions of the
|
|
541
695
|
* user's intended value for an input and specifies how predictions would be presented if they
|
|
@@ -566,6 +720,8 @@ export namespace JSX {
|
|
|
566
720
|
* @see aria-colcount @see aria-colspan.
|
|
567
721
|
*/
|
|
568
722
|
"aria-colindex"?: number | string | undefined;
|
|
723
|
+
/** Defines a human-readable text alternative of the numeric aria-colindex. */
|
|
724
|
+
"aria-colindextext"?: number | string | undefined;
|
|
569
725
|
/**
|
|
570
726
|
* Defines the number of columns spanned by a cell or gridcell within a table, grid, or
|
|
571
727
|
* treegrid.
|
|
@@ -600,6 +756,12 @@ export namespace JSX {
|
|
|
600
756
|
* @see aria-labelledby
|
|
601
757
|
*/
|
|
602
758
|
"aria-describedby"?: string | undefined;
|
|
759
|
+
/**
|
|
760
|
+
* Defines a string value that describes or annotates the current element.
|
|
761
|
+
*
|
|
762
|
+
* @see aria-describedby
|
|
763
|
+
*/
|
|
764
|
+
"aria-description"?: string | undefined;
|
|
603
765
|
/**
|
|
604
766
|
* Identifies the element that provides a detailed, extended description for the object.
|
|
605
767
|
*
|
|
@@ -772,6 +934,8 @@ export namespace JSX {
|
|
|
772
934
|
* @see aria-rowcount @see aria-rowspan.
|
|
773
935
|
*/
|
|
774
936
|
"aria-rowindex"?: number | string | undefined;
|
|
937
|
+
/** Defines a human-readable text alternative of aria-rowindex. */
|
|
938
|
+
"aria-rowindextext"?: number | string | undefined;
|
|
775
939
|
/**
|
|
776
940
|
* Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
777
941
|
*
|
|
@@ -889,60 +1053,56 @@ export namespace JSX {
|
|
|
889
1053
|
|
|
890
1054
|
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
891
1055
|
// [key: ClassKeys]: boolean;
|
|
892
|
-
|
|
1056
|
+
about?: string | undefined;
|
|
1057
|
+
accesskey?: string | undefined;
|
|
1058
|
+
autocapitalize?: HTMLAutocapitalize | undefined;
|
|
893
1059
|
class?: string | undefined;
|
|
894
|
-
|
|
1060
|
+
color?: string | undefined;
|
|
1061
|
+
contenteditable?: "true" | "false" | boolean | "plaintext-only" | "inherit" | undefined;
|
|
895
1062
|
contextmenu?: string | undefined;
|
|
1063
|
+
datatype?: string | undefined;
|
|
896
1064
|
dir?: HTMLDir | undefined;
|
|
897
1065
|
draggable?: boolean | "false" | "true" | undefined;
|
|
1066
|
+
exportparts?: string | undefined;
|
|
898
1067
|
hidden?: boolean | "hidden" | "until-found" | undefined;
|
|
899
1068
|
id?: string | undefined;
|
|
900
|
-
is?: string | undefined;
|
|
901
1069
|
inert?: boolean | undefined;
|
|
902
|
-
lang?: string | undefined;
|
|
903
|
-
spellcheck?: boolean | undefined;
|
|
904
|
-
style?: CSSProperties | string | undefined;
|
|
905
|
-
tabindex?: number | string | undefined;
|
|
906
|
-
title?: string | undefined;
|
|
907
|
-
translate?: "yes" | "no" | undefined;
|
|
908
|
-
about?: string | undefined;
|
|
909
|
-
datatype?: string | undefined;
|
|
910
1070
|
inlist?: any | undefined;
|
|
1071
|
+
inputmode?:
|
|
1072
|
+
| "decimal"
|
|
1073
|
+
| "email"
|
|
1074
|
+
| "none"
|
|
1075
|
+
| "numeric"
|
|
1076
|
+
| "search"
|
|
1077
|
+
| "tel"
|
|
1078
|
+
| "text"
|
|
1079
|
+
| "url"
|
|
1080
|
+
| undefined;
|
|
1081
|
+
is?: string | undefined;
|
|
1082
|
+
itemid?: string | undefined;
|
|
1083
|
+
itemprop?: string | undefined;
|
|
1084
|
+
itemref?: string | undefined;
|
|
1085
|
+
itemscope?: boolean | undefined;
|
|
1086
|
+
itemtype?: string | undefined;
|
|
1087
|
+
lang?: string | undefined;
|
|
1088
|
+
part?: string | undefined;
|
|
911
1089
|
popover?: boolean | "manual" | "auto" | undefined;
|
|
912
1090
|
prefix?: string | undefined;
|
|
913
1091
|
property?: string | undefined;
|
|
914
1092
|
resource?: string | undefined;
|
|
1093
|
+
slot?: string | undefined;
|
|
1094
|
+
spellcheck?: "true" | "false" | boolean | undefined;
|
|
1095
|
+
style?: CSSProperties | string | undefined;
|
|
1096
|
+
tabindex?: number | string | undefined;
|
|
1097
|
+
title?: string | undefined;
|
|
1098
|
+
translate?: "yes" | "no" | undefined;
|
|
915
1099
|
typeof?: string | undefined;
|
|
916
1100
|
vocab?: string | undefined;
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
itemprop?: string | undefined;
|
|
921
|
-
itemscope?: boolean | undefined;
|
|
922
|
-
itemtype?: string | undefined;
|
|
923
|
-
itemid?: string | undefined;
|
|
924
|
-
itemref?: string | undefined;
|
|
925
|
-
part?: string | undefined;
|
|
926
|
-
exportparts?: string | undefined;
|
|
927
|
-
inputmode?:
|
|
928
|
-
| "none"
|
|
929
|
-
| "text"
|
|
930
|
-
| "tel"
|
|
931
|
-
| "url"
|
|
932
|
-
| "email"
|
|
933
|
-
| "numeric"
|
|
934
|
-
| "decimal"
|
|
935
|
-
| "search"
|
|
936
|
-
| undefined;
|
|
1101
|
+
|
|
1102
|
+
accessKey?: string | undefined;
|
|
1103
|
+
autoCapitalize?: HTMLAutocapitalize | undefined;
|
|
937
1104
|
contentEditable?: boolean | "plaintext-only" | "inherit" | undefined;
|
|
938
1105
|
contextMenu?: string | undefined;
|
|
939
|
-
tabIndex?: number | string | undefined;
|
|
940
|
-
autoCapitalize?: HTMLAutocapitalize | undefined;
|
|
941
|
-
itemProp?: string | undefined;
|
|
942
|
-
itemScope?: boolean | undefined;
|
|
943
|
-
itemType?: string | undefined;
|
|
944
|
-
itemId?: string | undefined;
|
|
945
|
-
itemRef?: string | undefined;
|
|
946
1106
|
exportParts?: string | undefined;
|
|
947
1107
|
inputMode?:
|
|
948
1108
|
| "none"
|
|
@@ -954,40 +1114,70 @@ export namespace JSX {
|
|
|
954
1114
|
| "decimal"
|
|
955
1115
|
| "search"
|
|
956
1116
|
| undefined;
|
|
1117
|
+
itemId?: string | undefined;
|
|
1118
|
+
itemProp?: string | undefined;
|
|
1119
|
+
itemRef?: string | undefined;
|
|
1120
|
+
itemScope?: boolean | undefined;
|
|
1121
|
+
itemType?: string | undefined;
|
|
1122
|
+
tabIndex?: number | string | undefined;
|
|
957
1123
|
}
|
|
958
1124
|
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
959
|
-
download?:
|
|
1125
|
+
download?: string | undefined;
|
|
960
1126
|
href?: string | undefined;
|
|
961
1127
|
hreflang?: string | undefined;
|
|
962
|
-
media?: string | undefined;
|
|
963
1128
|
ping?: string | undefined;
|
|
964
1129
|
referrerpolicy?: HTMLReferrerPolicy | undefined;
|
|
965
1130
|
rel?: string | undefined;
|
|
966
|
-
target?: string | undefined;
|
|
1131
|
+
target?: "_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined;
|
|
967
1132
|
type?: string | undefined;
|
|
1133
|
+
|
|
1134
|
+
/** @experimental */
|
|
1135
|
+
attributionsrc?: string | undefined;
|
|
1136
|
+
|
|
968
1137
|
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1138
|
+
|
|
1139
|
+
/** @deprecated */
|
|
1140
|
+
charset?: string | undefined;
|
|
1141
|
+
/** @deprecated */
|
|
1142
|
+
coords?: string | undefined;
|
|
1143
|
+
/** @deprecated */
|
|
1144
|
+
name?: string | undefined;
|
|
1145
|
+
/** @deprecated */
|
|
1146
|
+
rev?: string | undefined;
|
|
1147
|
+
/** @deprecated */
|
|
1148
|
+
shape?: "rect" | "circle" | "poly" | "default" | undefined;
|
|
969
1149
|
}
|
|
970
1150
|
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
|
|
971
1151
|
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
972
1152
|
alt?: string | undefined;
|
|
973
1153
|
coords?: string | undefined;
|
|
974
|
-
download?:
|
|
1154
|
+
download?: string | undefined;
|
|
975
1155
|
href?: string | undefined;
|
|
976
|
-
hreflang?: string | undefined;
|
|
977
1156
|
ping?: string | undefined;
|
|
978
1157
|
referrerpolicy?: HTMLReferrerPolicy | undefined;
|
|
979
1158
|
rel?: string | undefined;
|
|
980
1159
|
shape?: "rect" | "circle" | "poly" | "default" | undefined;
|
|
981
|
-
target?: string | undefined;
|
|
1160
|
+
target?: "_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined;
|
|
1161
|
+
|
|
1162
|
+
/** @experimental */
|
|
1163
|
+
attributionsrc?: string | undefined;
|
|
1164
|
+
|
|
982
1165
|
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1166
|
+
|
|
1167
|
+
/** @deprecated */
|
|
1168
|
+
nohref?: boolean | undefined;
|
|
983
1169
|
}
|
|
984
1170
|
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
985
1171
|
href?: string | undefined;
|
|
986
|
-
target?: string | undefined;
|
|
1172
|
+
target?: "_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined;
|
|
987
1173
|
}
|
|
988
1174
|
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
989
1175
|
cite?: string | undefined;
|
|
990
1176
|
}
|
|
1177
|
+
interface BodyHTMLAttributes<T>
|
|
1178
|
+
extends HTMLAttributes<T>,
|
|
1179
|
+
WindowEventMap<T>,
|
|
1180
|
+
ElementEventMap<T> {}
|
|
991
1181
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
992
1182
|
autofocus?: boolean | undefined;
|
|
993
1183
|
disabled?: boolean | undefined;
|
|
@@ -996,12 +1186,25 @@ export namespace JSX {
|
|
|
996
1186
|
formenctype?: HTMLFormEncType | undefined;
|
|
997
1187
|
formmethod?: HTMLFormMethod | undefined;
|
|
998
1188
|
formnovalidate?: boolean | undefined;
|
|
999
|
-
formtarget?: string | undefined;
|
|
1189
|
+
formtarget?: "_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined;
|
|
1190
|
+
name?: string | undefined;
|
|
1000
1191
|
popovertarget?: string | undefined;
|
|
1001
1192
|
popovertargetaction?: "hide" | "show" | "toggle" | undefined;
|
|
1002
|
-
|
|
1003
|
-
type?: "submit" | "reset" | "button" | undefined;
|
|
1193
|
+
type?: "submit" | "reset" | "button" | "menu" | undefined;
|
|
1004
1194
|
value?: string | undefined;
|
|
1195
|
+
|
|
1196
|
+
/** @experimental */
|
|
1197
|
+
command?:
|
|
1198
|
+
| "show-modal"
|
|
1199
|
+
| "close"
|
|
1200
|
+
| "show-popover"
|
|
1201
|
+
| "hide-popover"
|
|
1202
|
+
| "toggle-popover"
|
|
1203
|
+
| (string & {})
|
|
1204
|
+
| undefined;
|
|
1205
|
+
/** @experimental */
|
|
1206
|
+
commandfor?: string | undefined;
|
|
1207
|
+
|
|
1005
1208
|
formAction?: string | SerializableAttributeValue | undefined;
|
|
1006
1209
|
formEnctype?: HTMLFormEncType | undefined;
|
|
1007
1210
|
formMethod?: HTMLFormMethod | undefined;
|
|
@@ -1011,34 +1214,95 @@ export namespace JSX {
|
|
|
1011
1214
|
popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
|
|
1012
1215
|
}
|
|
1013
1216
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1014
|
-
width?: number | string | undefined;
|
|
1015
1217
|
height?: number | string | undefined;
|
|
1218
|
+
width?: number | string | undefined;
|
|
1219
|
+
|
|
1220
|
+
onContextLost?: EventHandlerUnion<T, Event> | undefined;
|
|
1221
|
+
"on:contextlost"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
1222
|
+
oncontextlost?: EventHandlerUnion<T, Event> | undefined;
|
|
1223
|
+
|
|
1224
|
+
onContextRestored?: EventHandlerUnion<T, Event> | undefined;
|
|
1225
|
+
"on:contextrestored"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
1226
|
+
oncontextrestored?: EventHandlerUnion<T, Event> | undefined;
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* @deprecated
|
|
1230
|
+
* @non-standard
|
|
1231
|
+
*/
|
|
1232
|
+
"moz-opaque"?: boolean | undefined;
|
|
1233
|
+
}
|
|
1234
|
+
interface CaptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1235
|
+
/** @deprecated */
|
|
1236
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1016
1237
|
}
|
|
1017
1238
|
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1018
1239
|
span?: number | string | undefined;
|
|
1240
|
+
|
|
1241
|
+
/** @deprecated */
|
|
1242
|
+
align?: "left" | "center" | "right" | "justify" | "char" | undefined;
|
|
1243
|
+
/** @deprecated */
|
|
1244
|
+
bgcolor?: string | undefined;
|
|
1245
|
+
/** @deprecated */
|
|
1246
|
+
char?: string | undefined;
|
|
1247
|
+
/** @deprecated */
|
|
1248
|
+
charoff?: string | undefined;
|
|
1249
|
+
/** @deprecated */
|
|
1250
|
+
valign?: "baseline" | "bottom" | "middle" | "top" | undefined;
|
|
1251
|
+
/** @deprecated */
|
|
1019
1252
|
width?: number | string | undefined;
|
|
1020
1253
|
}
|
|
1021
1254
|
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1022
1255
|
span?: number | string | undefined;
|
|
1256
|
+
|
|
1257
|
+
/** @deprecated */
|
|
1258
|
+
align?: "left" | "center" | "right" | "justify" | "char" | undefined;
|
|
1259
|
+
/** @deprecated */
|
|
1260
|
+
bgcolor?: string | undefined;
|
|
1261
|
+
/** @deprecated */
|
|
1262
|
+
char?: string | undefined;
|
|
1263
|
+
/** @deprecated */
|
|
1264
|
+
charoff?: string | undefined;
|
|
1265
|
+
/** @deprecated */
|
|
1266
|
+
valign?: "baseline" | "bottom" | "middle" | "top" | undefined;
|
|
1267
|
+
/** @deprecated */
|
|
1268
|
+
width?: number | string | undefined;
|
|
1023
1269
|
}
|
|
1024
1270
|
interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1025
1271
|
value?: string | string[] | number | undefined;
|
|
1026
1272
|
}
|
|
1027
1273
|
interface DetailsHtmlAttributes<T> extends HTMLAttributes<T> {
|
|
1274
|
+
name?: string | undefined;
|
|
1028
1275
|
open?: boolean | undefined;
|
|
1029
|
-
onToggle?: EventHandlerUnion<T, Event> | undefined;
|
|
1030
|
-
ontoggle?: EventHandlerUnion<T, Event> | undefined;
|
|
1031
1276
|
}
|
|
1032
1277
|
interface DialogHtmlAttributes<T> extends HTMLAttributes<T> {
|
|
1033
1278
|
open?: boolean | undefined;
|
|
1279
|
+
/**
|
|
1280
|
+
* Do not add the tabindex property to the <dialog> element as it is not interactive and does
|
|
1281
|
+
* not receive focus. The dialog's contents, including the close button contained in the dialog,
|
|
1282
|
+
* can receive focus and be interactive.
|
|
1283
|
+
*
|
|
1284
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#usage_notes
|
|
1285
|
+
*/
|
|
1286
|
+
tabindex?: never;
|
|
1287
|
+
|
|
1034
1288
|
onClose?: EventHandlerUnion<T, Event> | undefined;
|
|
1289
|
+
"on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
1290
|
+
onclose?: EventHandlerUnion<T, Event> | undefined;
|
|
1291
|
+
|
|
1035
1292
|
onCancel?: EventHandlerUnion<T, Event> | undefined;
|
|
1293
|
+
"on:cancel"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
1294
|
+
oncancel?: EventHandlerUnion<T, Event> | undefined;
|
|
1036
1295
|
}
|
|
1037
1296
|
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1038
1297
|
height?: number | string | undefined;
|
|
1039
1298
|
src?: string | undefined;
|
|
1040
1299
|
type?: string | undefined;
|
|
1041
1300
|
width?: number | string | undefined;
|
|
1301
|
+
|
|
1302
|
+
/** @deprecated */
|
|
1303
|
+
align?: "left" | "right" | "justify" | "center" | undefined;
|
|
1304
|
+
/** @deprecated */
|
|
1305
|
+
name?: string | undefined;
|
|
1042
1306
|
}
|
|
1043
1307
|
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1044
1308
|
disabled?: boolean | undefined;
|
|
@@ -1048,14 +1312,23 @@ export namespace JSX {
|
|
|
1048
1312
|
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1049
1313
|
"accept-charset"?: string | undefined;
|
|
1050
1314
|
action?: string | SerializableAttributeValue | undefined;
|
|
1051
|
-
autocomplete?:
|
|
1315
|
+
autocomplete?: "on" | "off" | undefined;
|
|
1052
1316
|
encoding?: HTMLFormEncType | undefined;
|
|
1053
1317
|
enctype?: HTMLFormEncType | undefined;
|
|
1054
1318
|
method?: HTMLFormMethod | undefined;
|
|
1055
1319
|
name?: string | undefined;
|
|
1056
1320
|
novalidate?: boolean | undefined;
|
|
1057
|
-
|
|
1321
|
+
rel?: string | undefined;
|
|
1322
|
+
target?: "_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined;
|
|
1323
|
+
|
|
1324
|
+
onFormData?: EventHandlerUnion<T, FormDataEvent> | undefined;
|
|
1325
|
+
"on:formdata"?: EventHandlerWithOptionsUnion<T, FormDataEvent> | undefined;
|
|
1326
|
+
onformdata?: EventHandlerUnion<T, FormDataEvent> | undefined;
|
|
1327
|
+
|
|
1058
1328
|
noValidate?: boolean | undefined;
|
|
1329
|
+
|
|
1330
|
+
/** @deprecated */
|
|
1331
|
+
accept?: string | undefined;
|
|
1059
1332
|
}
|
|
1060
1333
|
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1061
1334
|
allow?: string | undefined;
|
|
@@ -1068,38 +1341,165 @@ export namespace JSX {
|
|
|
1068
1341
|
src?: string | undefined;
|
|
1069
1342
|
srcdoc?: string | undefined;
|
|
1070
1343
|
width?: number | string | undefined;
|
|
1344
|
+
|
|
1071
1345
|
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1346
|
+
|
|
1347
|
+
/** @experimental */
|
|
1348
|
+
adauctionheaders?: boolean | undefined;
|
|
1349
|
+
/**
|
|
1350
|
+
* @non-standard
|
|
1351
|
+
* @experimental
|
|
1352
|
+
*/
|
|
1353
|
+
browsingtopics?: boolean | undefined;
|
|
1354
|
+
/** @experimental */
|
|
1355
|
+
credentialless?: boolean | undefined;
|
|
1356
|
+
/** @experimental */
|
|
1357
|
+
csp?: string | undefined;
|
|
1358
|
+
/** @experimental */
|
|
1359
|
+
privatetoken?: string | undefined;
|
|
1360
|
+
/** @experimental */
|
|
1361
|
+
sharedstoragewritable?: boolean | undefined;
|
|
1362
|
+
|
|
1363
|
+
/** @deprecated */
|
|
1364
|
+
align?: string | undefined;
|
|
1365
|
+
/**
|
|
1366
|
+
* @deprecated
|
|
1367
|
+
* @non-standard
|
|
1368
|
+
*/
|
|
1369
|
+
allowpaymentrequest?: boolean | undefined;
|
|
1370
|
+
/** @deprecated */
|
|
1371
|
+
allowtransparency?: boolean | undefined;
|
|
1372
|
+
/** @deprecated */
|
|
1373
|
+
frameborder?: number | string | undefined;
|
|
1374
|
+
/** @deprecated */
|
|
1375
|
+
longdesc?: string | undefined;
|
|
1376
|
+
/** @deprecated */
|
|
1377
|
+
marginheight?: number | string | undefined;
|
|
1378
|
+
/** @deprecated */
|
|
1379
|
+
marginwidth?: number | string | undefined;
|
|
1380
|
+
/** @deprecated */
|
|
1381
|
+
scrolling?: "yes" | "no" | "auto" | undefined;
|
|
1382
|
+
/** @deprecated */
|
|
1383
|
+
seamless?: boolean | undefined;
|
|
1384
|
+
}
|
|
1385
|
+
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1386
|
+
alt?: string | undefined;
|
|
1075
1387
|
crossorigin?: HTMLCrossorigin | undefined;
|
|
1076
1388
|
decoding?: "sync" | "async" | "auto" | undefined;
|
|
1389
|
+
elementtiming?: string | undefined;
|
|
1390
|
+
fetchpriority?: "high" | "low" | "auto" | undefined;
|
|
1077
1391
|
height?: number | string | undefined;
|
|
1078
1392
|
ismap?: boolean | undefined;
|
|
1079
|
-
isMap?: boolean | undefined;
|
|
1080
1393
|
loading?: "eager" | "lazy" | undefined;
|
|
1081
1394
|
referrerpolicy?: HTMLReferrerPolicy | undefined;
|
|
1082
|
-
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1083
1395
|
sizes?: string | undefined;
|
|
1084
1396
|
src?: string | undefined;
|
|
1085
1397
|
srcset?: string | undefined;
|
|
1086
|
-
srcSet?: string | undefined;
|
|
1087
1398
|
usemap?: string | undefined;
|
|
1088
|
-
useMap?: string | undefined;
|
|
1089
1399
|
width?: number | string | undefined;
|
|
1400
|
+
|
|
1401
|
+
/** @experimental */
|
|
1402
|
+
attributionsrc?: string | undefined;
|
|
1403
|
+
/** @experimental */
|
|
1404
|
+
sharedstoragewritable?: boolean | undefined;
|
|
1405
|
+
|
|
1090
1406
|
crossOrigin?: HTMLCrossorigin | undefined;
|
|
1091
|
-
|
|
1092
|
-
|
|
1407
|
+
isMap?: boolean | undefined;
|
|
1408
|
+
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1409
|
+
srcSet?: string | undefined;
|
|
1410
|
+
useMap?: string | undefined;
|
|
1411
|
+
|
|
1412
|
+
/** @deprecated */
|
|
1413
|
+
align?: "top" | "middle" | "bottom" | "left" | "right" | undefined;
|
|
1414
|
+
/** @deprecated */
|
|
1415
|
+
border?: string | undefined;
|
|
1416
|
+
/** @deprecated */
|
|
1417
|
+
hspace?: number | string | undefined;
|
|
1418
|
+
/** @deprecated */
|
|
1419
|
+
intrinsicsize?: string | undefined;
|
|
1420
|
+
/** @deprecated */
|
|
1421
|
+
longdesc?: string | undefined;
|
|
1422
|
+
/** @deprecated */
|
|
1423
|
+
lowsrc?: string | undefined;
|
|
1424
|
+
/** @deprecated */
|
|
1425
|
+
name?: string | undefined;
|
|
1426
|
+
/** @deprecated */
|
|
1427
|
+
vspace?: number | string | undefined;
|
|
1093
1428
|
}
|
|
1094
1429
|
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1095
1430
|
accept?: string | undefined;
|
|
1096
1431
|
alt?: string | undefined;
|
|
1097
|
-
autocomplete?:
|
|
1432
|
+
autocomplete?:
|
|
1433
|
+
| "additional-name"
|
|
1434
|
+
| "address-level1"
|
|
1435
|
+
| "address-level2"
|
|
1436
|
+
| "address-level3"
|
|
1437
|
+
| "address-level4"
|
|
1438
|
+
| "address-line1"
|
|
1439
|
+
| "address-line2"
|
|
1440
|
+
| "address-line3"
|
|
1441
|
+
| "bday"
|
|
1442
|
+
| "bday-day"
|
|
1443
|
+
| "bday-month"
|
|
1444
|
+
| "bday-year"
|
|
1445
|
+
| "billing"
|
|
1446
|
+
| "cc-additional-name"
|
|
1447
|
+
| "cc-csc"
|
|
1448
|
+
| "cc-exp"
|
|
1449
|
+
| "cc-exp-month"
|
|
1450
|
+
| "cc-exp-year"
|
|
1451
|
+
| "cc-family-name"
|
|
1452
|
+
| "cc-given-name"
|
|
1453
|
+
| "cc-name"
|
|
1454
|
+
| "cc-number"
|
|
1455
|
+
| "cc-type"
|
|
1456
|
+
| "country"
|
|
1457
|
+
| "country-name"
|
|
1458
|
+
| "current-password"
|
|
1459
|
+
| "email"
|
|
1460
|
+
| "family-name"
|
|
1461
|
+
| "fax"
|
|
1462
|
+
| "given-name"
|
|
1463
|
+
| "home"
|
|
1464
|
+
| "honorific-prefix"
|
|
1465
|
+
| "honorific-suffix"
|
|
1466
|
+
| "impp"
|
|
1467
|
+
| "language"
|
|
1468
|
+
| "mobile"
|
|
1469
|
+
| "name"
|
|
1470
|
+
| "new-password"
|
|
1471
|
+
| "nickname"
|
|
1472
|
+
| "off"
|
|
1473
|
+
| "on"
|
|
1474
|
+
| "organization"
|
|
1475
|
+
| "organization-title"
|
|
1476
|
+
| "pager"
|
|
1477
|
+
| "photo"
|
|
1478
|
+
| "postal-code"
|
|
1479
|
+
| "sex"
|
|
1480
|
+
| "shipping"
|
|
1481
|
+
| "street-address"
|
|
1482
|
+
| "tel"
|
|
1483
|
+
| "tel-area-code"
|
|
1484
|
+
| "tel-country-code"
|
|
1485
|
+
| "tel-extension"
|
|
1486
|
+
| "tel-local"
|
|
1487
|
+
| "tel-local-prefix"
|
|
1488
|
+
| "tel-local-suffix"
|
|
1489
|
+
| "tel-national"
|
|
1490
|
+
| "transaction-amount"
|
|
1491
|
+
| "transaction-currency"
|
|
1492
|
+
| "url"
|
|
1493
|
+
| "username"
|
|
1494
|
+
| "work"
|
|
1495
|
+
| (string & {})
|
|
1496
|
+
| undefined;
|
|
1098
1497
|
autocorrect?: "on" | "off" | undefined;
|
|
1099
1498
|
autofocus?: boolean | undefined;
|
|
1100
|
-
capture?:
|
|
1499
|
+
capture?: "user" | "environment" | undefined;
|
|
1101
1500
|
checked?: boolean | undefined;
|
|
1102
1501
|
crossorigin?: HTMLCrossorigin | undefined;
|
|
1502
|
+
dirname?: string | undefined;
|
|
1103
1503
|
disabled?: boolean | undefined;
|
|
1104
1504
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
1105
1505
|
form?: string | undefined;
|
|
@@ -1109,7 +1509,6 @@ export namespace JSX {
|
|
|
1109
1509
|
formnovalidate?: boolean | undefined;
|
|
1110
1510
|
formtarget?: string | undefined;
|
|
1111
1511
|
height?: number | string | undefined;
|
|
1112
|
-
incremental?: boolean | undefined;
|
|
1113
1512
|
list?: string | undefined;
|
|
1114
1513
|
max?: number | string | undefined;
|
|
1115
1514
|
maxlength?: number | string | undefined;
|
|
@@ -1119,15 +1518,46 @@ export namespace JSX {
|
|
|
1119
1518
|
name?: string | undefined;
|
|
1120
1519
|
pattern?: string | undefined;
|
|
1121
1520
|
placeholder?: string | undefined;
|
|
1521
|
+
popovertarget?: string | undefined;
|
|
1522
|
+
popovertargetaction?: "hide" | "show" | "toggle" | undefined;
|
|
1122
1523
|
readonly?: boolean | undefined;
|
|
1123
|
-
results?: number | undefined;
|
|
1124
1524
|
required?: boolean | undefined;
|
|
1525
|
+
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search#results
|
|
1526
|
+
results?: number | undefined;
|
|
1125
1527
|
size?: number | string | undefined;
|
|
1126
1528
|
src?: string | undefined;
|
|
1127
1529
|
step?: number | string | undefined;
|
|
1128
|
-
type?:
|
|
1530
|
+
type?:
|
|
1531
|
+
| "button"
|
|
1532
|
+
| "checkbox"
|
|
1533
|
+
| "color"
|
|
1534
|
+
| "date"
|
|
1535
|
+
| "datetime-local"
|
|
1536
|
+
| "email"
|
|
1537
|
+
| "file"
|
|
1538
|
+
| "hidden"
|
|
1539
|
+
| "image"
|
|
1540
|
+
| "month"
|
|
1541
|
+
| "number"
|
|
1542
|
+
| "password"
|
|
1543
|
+
| "radio"
|
|
1544
|
+
| "range"
|
|
1545
|
+
| "reset"
|
|
1546
|
+
| "search"
|
|
1547
|
+
| "submit"
|
|
1548
|
+
| "tel"
|
|
1549
|
+
| "text"
|
|
1550
|
+
| "time"
|
|
1551
|
+
| "url"
|
|
1552
|
+
| "week"
|
|
1553
|
+
| (string & {})
|
|
1554
|
+
| undefined;
|
|
1129
1555
|
value?: string | string[] | number | undefined;
|
|
1130
1556
|
width?: number | string | undefined;
|
|
1557
|
+
|
|
1558
|
+
/** @non-standard */
|
|
1559
|
+
incremental?: boolean | undefined;
|
|
1560
|
+
|
|
1131
1561
|
crossOrigin?: HTMLCrossorigin | undefined;
|
|
1132
1562
|
formAction?: string | SerializableAttributeValue | undefined;
|
|
1133
1563
|
formEnctype?: HTMLFormEncType | undefined;
|
|
@@ -1137,18 +1567,32 @@ export namespace JSX {
|
|
|
1137
1567
|
maxLength?: number | string | undefined;
|
|
1138
1568
|
minLength?: number | string | undefined;
|
|
1139
1569
|
readOnly?: boolean | undefined;
|
|
1570
|
+
|
|
1571
|
+
/** @deprecated */
|
|
1572
|
+
align?: string | undefined;
|
|
1573
|
+
/** @deprecated */
|
|
1574
|
+
usemap?: string | undefined;
|
|
1140
1575
|
}
|
|
1141
|
-
interface
|
|
1576
|
+
interface ModHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1142
1577
|
cite?: string | undefined;
|
|
1578
|
+
datetime?: string | undefined;
|
|
1579
|
+
|
|
1143
1580
|
dateTime?: string | undefined;
|
|
1144
1581
|
}
|
|
1145
1582
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1583
|
+
/** @deprecated */
|
|
1146
1584
|
autofocus?: boolean | undefined;
|
|
1585
|
+
/** @deprecated */
|
|
1147
1586
|
challenge?: string | undefined;
|
|
1587
|
+
/** @deprecated */
|
|
1148
1588
|
disabled?: boolean | undefined;
|
|
1589
|
+
/** @deprecated */
|
|
1149
1590
|
form?: string | undefined;
|
|
1150
|
-
|
|
1591
|
+
/** @deprecated */
|
|
1151
1592
|
keyparams?: string | undefined;
|
|
1593
|
+
/** @deprecated */
|
|
1594
|
+
keytype?: string | undefined;
|
|
1595
|
+
/** @deprecated */
|
|
1152
1596
|
name?: string | undefined;
|
|
1153
1597
|
}
|
|
1154
1598
|
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
@@ -1157,9 +1601,13 @@ export namespace JSX {
|
|
|
1157
1601
|
}
|
|
1158
1602
|
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1159
1603
|
value?: number | string | undefined;
|
|
1604
|
+
|
|
1605
|
+
/** @deprecated */
|
|
1606
|
+
type?: "1" | "a" | "A" | "i" | "I" | undefined;
|
|
1160
1607
|
}
|
|
1161
1608
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1162
1609
|
as?: HTMLLinkAs | undefined;
|
|
1610
|
+
blocking?: "render" | undefined;
|
|
1163
1611
|
crossorigin?: HTMLCrossorigin | undefined;
|
|
1164
1612
|
disabled?: boolean | undefined;
|
|
1165
1613
|
fetchpriority?: "high" | "low" | "auto" | undefined;
|
|
@@ -1173,34 +1621,74 @@ export namespace JSX {
|
|
|
1173
1621
|
rel?: string | undefined;
|
|
1174
1622
|
sizes?: string | undefined;
|
|
1175
1623
|
type?: string | undefined;
|
|
1624
|
+
|
|
1176
1625
|
crossOrigin?: HTMLCrossorigin | undefined;
|
|
1177
1626
|
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1627
|
+
|
|
1628
|
+
/** @deprecated */
|
|
1629
|
+
charset?: string | undefined;
|
|
1630
|
+
/** @deprecated */
|
|
1631
|
+
rev?: string | undefined;
|
|
1632
|
+
/** @deprecated */
|
|
1633
|
+
target?: string | undefined;
|
|
1178
1634
|
}
|
|
1179
1635
|
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1180
1636
|
name?: string | undefined;
|
|
1181
1637
|
}
|
|
1182
|
-
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1638
|
+
interface MediaHTMLAttributes<T> extends HTMLAttributes<T>, ElementEventMap<T> {
|
|
1183
1639
|
autoplay?: boolean | undefined;
|
|
1184
1640
|
controls?: boolean | undefined;
|
|
1641
|
+
controlslist?:
|
|
1642
|
+
| "nodownload"
|
|
1643
|
+
| "nofullscreen"
|
|
1644
|
+
| "noplaybackrate"
|
|
1645
|
+
| "noremoteplayback"
|
|
1646
|
+
| (string & {})
|
|
1647
|
+
| undefined;
|
|
1185
1648
|
crossorigin?: HTMLCrossorigin | undefined;
|
|
1649
|
+
disableremoteplayback?: boolean | undefined;
|
|
1186
1650
|
loop?: boolean | undefined;
|
|
1187
|
-
mediagroup?: string | undefined;
|
|
1188
1651
|
muted?: boolean | undefined;
|
|
1189
1652
|
preload?: "none" | "metadata" | "auto" | "" | undefined;
|
|
1190
1653
|
src?: string | undefined;
|
|
1654
|
+
|
|
1655
|
+
onEncrypted?: EventHandlerUnion<T, MediaEncryptedEvent> | undefined;
|
|
1656
|
+
"on:encrypted"?: EventHandlerWithOptionsUnion<T, MediaEncryptedEvent> | undefined;
|
|
1657
|
+
onencrypted?: EventHandlerUnion<T, MediaEncryptedEvent> | undefined;
|
|
1658
|
+
|
|
1659
|
+
onWaitingForKey?: EventHandlerUnion<T, Event> | undefined;
|
|
1660
|
+
"on:waitingforkey"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
1661
|
+
onwaitingforkey?: EventHandlerUnion<T, Event> | undefined;
|
|
1662
|
+
|
|
1191
1663
|
crossOrigin?: HTMLCrossorigin | undefined;
|
|
1664
|
+
|
|
1192
1665
|
mediaGroup?: string | undefined;
|
|
1666
|
+
/** @deprecated */
|
|
1667
|
+
mediagroup?: string | undefined;
|
|
1193
1668
|
}
|
|
1194
1669
|
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1670
|
+
/** @deprecated */
|
|
1671
|
+
compact?: boolean | undefined;
|
|
1672
|
+
/** @deprecated */
|
|
1195
1673
|
label?: string | undefined;
|
|
1674
|
+
/** @deprecated */
|
|
1196
1675
|
type?: "context" | "toolbar" | undefined;
|
|
1197
1676
|
}
|
|
1198
1677
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1678
|
+
"http-equiv"?:
|
|
1679
|
+
| "content-security-policy"
|
|
1680
|
+
| "content-type"
|
|
1681
|
+
| "default-style"
|
|
1682
|
+
| "x-ua-compatible"
|
|
1683
|
+
| "refresh"
|
|
1684
|
+
| undefined;
|
|
1199
1685
|
charset?: string | undefined;
|
|
1200
1686
|
content?: string | undefined;
|
|
1201
|
-
"http-equiv"?: string | undefined;
|
|
1202
|
-
name?: string | undefined;
|
|
1203
1687
|
media?: string | undefined;
|
|
1688
|
+
name?: string | undefined;
|
|
1689
|
+
|
|
1690
|
+
/** @deprecated */
|
|
1691
|
+
scheme?: string | undefined;
|
|
1204
1692
|
}
|
|
1205
1693
|
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1206
1694
|
form?: string | undefined;
|
|
@@ -1220,14 +1708,47 @@ export namespace JSX {
|
|
|
1220
1708
|
height?: number | string | undefined;
|
|
1221
1709
|
name?: string | undefined;
|
|
1222
1710
|
type?: string | undefined;
|
|
1223
|
-
usemap?: string | undefined;
|
|
1224
1711
|
width?: number | string | undefined;
|
|
1712
|
+
|
|
1225
1713
|
useMap?: string | undefined;
|
|
1714
|
+
|
|
1715
|
+
/** @deprecated */
|
|
1716
|
+
align?: string | undefined;
|
|
1717
|
+
/** @deprecated */
|
|
1718
|
+
archive?: string | undefined;
|
|
1719
|
+
/** @deprecated */
|
|
1720
|
+
border?: string | undefined;
|
|
1721
|
+
/** @deprecated */
|
|
1722
|
+
classid?: string | undefined;
|
|
1723
|
+
/** @deprecated */
|
|
1724
|
+
code?: string | undefined;
|
|
1725
|
+
/** @deprecated */
|
|
1726
|
+
codebase?: string | undefined;
|
|
1727
|
+
/** @deprecated */
|
|
1728
|
+
codetype?: string | undefined;
|
|
1729
|
+
/** @deprecated */
|
|
1730
|
+
declare?: boolean | undefined;
|
|
1731
|
+
/** @deprecated */
|
|
1732
|
+
hspace?: number | string | undefined;
|
|
1733
|
+
/** @deprecated */
|
|
1734
|
+
standby?: string | undefined;
|
|
1735
|
+
/** @deprecated */
|
|
1736
|
+
usemap?: string | undefined;
|
|
1737
|
+
/** @deprecated */
|
|
1738
|
+
vspace?: number | string | undefined;
|
|
1739
|
+
/** @deprecated */
|
|
1740
|
+
typemustmatch?: boolean | undefined;
|
|
1226
1741
|
}
|
|
1227
1742
|
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1228
1743
|
reversed?: boolean | undefined;
|
|
1229
1744
|
start?: number | string | undefined;
|
|
1230
1745
|
type?: "1" | "a" | "A" | "i" | "I" | undefined;
|
|
1746
|
+
|
|
1747
|
+
/**
|
|
1748
|
+
* @deprecated
|
|
1749
|
+
* @non-standard
|
|
1750
|
+
*/
|
|
1751
|
+
compact?: boolean | undefined;
|
|
1231
1752
|
}
|
|
1232
1753
|
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1233
1754
|
disabled?: boolean | undefined;
|
|
@@ -1240,13 +1761,19 @@ export namespace JSX {
|
|
|
1240
1761
|
value?: string | string[] | number | undefined;
|
|
1241
1762
|
}
|
|
1242
1763
|
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1243
|
-
form?: string | undefined;
|
|
1244
1764
|
for?: string | undefined;
|
|
1765
|
+
form?: string | undefined;
|
|
1245
1766
|
name?: string | undefined;
|
|
1246
1767
|
}
|
|
1247
1768
|
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1769
|
+
/** @deprecated */
|
|
1248
1770
|
name?: string | undefined;
|
|
1249
|
-
|
|
1771
|
+
/** @deprecated */
|
|
1772
|
+
type?: string | undefined;
|
|
1773
|
+
/** @deprecated */
|
|
1774
|
+
value?: string | number | undefined;
|
|
1775
|
+
/** @deprecated */
|
|
1776
|
+
valuetype?: "data" | "ref" | "object" | undefined;
|
|
1250
1777
|
}
|
|
1251
1778
|
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1252
1779
|
max?: number | string | undefined;
|
|
@@ -1254,18 +1781,30 @@ export namespace JSX {
|
|
|
1254
1781
|
}
|
|
1255
1782
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1256
1783
|
async?: boolean | undefined;
|
|
1257
|
-
|
|
1784
|
+
blocking?: "render" | undefined;
|
|
1258
1785
|
crossorigin?: HTMLCrossorigin | undefined;
|
|
1259
1786
|
defer?: boolean | undefined;
|
|
1787
|
+
fetchpriority?: "high" | "low" | "auto" | undefined;
|
|
1260
1788
|
integrity?: string | undefined;
|
|
1261
1789
|
nomodule?: boolean | undefined;
|
|
1262
1790
|
nonce?: string | undefined;
|
|
1263
1791
|
referrerpolicy?: HTMLReferrerPolicy | undefined;
|
|
1264
1792
|
src?: string | undefined;
|
|
1265
|
-
type?: string | undefined;
|
|
1793
|
+
type?: "importmap" | "module" | "speculationrules" | (string & {}) | undefined;
|
|
1794
|
+
|
|
1795
|
+
/** @experimental */
|
|
1796
|
+
attributionsrc?: string | undefined;
|
|
1797
|
+
|
|
1266
1798
|
crossOrigin?: HTMLCrossorigin | undefined;
|
|
1267
1799
|
noModule?: boolean | undefined;
|
|
1268
1800
|
referrerPolicy?: HTMLReferrerPolicy | undefined;
|
|
1801
|
+
|
|
1802
|
+
/** @deprecated */
|
|
1803
|
+
charset?: string | undefined;
|
|
1804
|
+
/** @deprecated */
|
|
1805
|
+
event?: string | undefined;
|
|
1806
|
+
/** @deprecated */
|
|
1807
|
+
language?: string | undefined;
|
|
1269
1808
|
}
|
|
1270
1809
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1271
1810
|
autocomplete?: string | undefined;
|
|
@@ -1278,36 +1817,137 @@ export namespace JSX {
|
|
|
1278
1817
|
size?: number | string | undefined;
|
|
1279
1818
|
value?: string | string[] | number | undefined;
|
|
1280
1819
|
}
|
|
1281
|
-
interface HTMLSlotElementAttributes<T
|
|
1820
|
+
interface HTMLSlotElementAttributes<T> extends HTMLAttributes<T> {
|
|
1282
1821
|
name?: string | undefined;
|
|
1283
1822
|
}
|
|
1284
1823
|
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1824
|
+
height?: number | string | undefined;
|
|
1285
1825
|
media?: string | undefined;
|
|
1286
1826
|
sizes?: string | undefined;
|
|
1287
1827
|
src?: string | undefined;
|
|
1288
1828
|
srcset?: string | undefined;
|
|
1289
1829
|
type?: string | undefined;
|
|
1290
1830
|
width?: number | string | undefined;
|
|
1291
|
-
height?: number | string | undefined;
|
|
1292
1831
|
}
|
|
1293
1832
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1833
|
+
blocking?: "render" | undefined;
|
|
1294
1834
|
media?: string | undefined;
|
|
1295
1835
|
nonce?: string | undefined;
|
|
1836
|
+
|
|
1837
|
+
/** @deprecated */
|
|
1296
1838
|
scoped?: boolean | undefined;
|
|
1839
|
+
/** @deprecated */
|
|
1297
1840
|
type?: string | undefined;
|
|
1298
1841
|
}
|
|
1299
1842
|
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1300
1843
|
colspan?: number | string | undefined;
|
|
1301
1844
|
headers?: string | undefined;
|
|
1302
1845
|
rowspan?: number | string | undefined;
|
|
1846
|
+
|
|
1303
1847
|
colSpan?: number | string | undefined;
|
|
1304
1848
|
rowSpan?: number | string | undefined;
|
|
1849
|
+
|
|
1850
|
+
/** @deprecated */
|
|
1851
|
+
abbr?: string | undefined;
|
|
1852
|
+
/** @deprecated */
|
|
1853
|
+
align?: "left" | "center" | "right" | "justify" | "char" | undefined;
|
|
1854
|
+
/** @deprecated */
|
|
1855
|
+
axis?: string | undefined;
|
|
1856
|
+
/** @deprecated */
|
|
1857
|
+
bgcolor?: string | undefined;
|
|
1858
|
+
/** @deprecated */
|
|
1859
|
+
char?: string | undefined;
|
|
1860
|
+
/** @deprecated */
|
|
1861
|
+
charoff?: string | undefined;
|
|
1862
|
+
/** @deprecated */
|
|
1863
|
+
height?: number | string | undefined;
|
|
1864
|
+
/** @deprecated */
|
|
1865
|
+
nowrap?: boolean | undefined;
|
|
1866
|
+
/** @deprecated */
|
|
1867
|
+
scope?: "col" | "row" | "rowgroup" | "colgroup" | undefined;
|
|
1868
|
+
/** @deprecated */
|
|
1869
|
+
valign?: "baseline" | "bottom" | "middle" | "top" | undefined;
|
|
1870
|
+
/** @deprecated */
|
|
1871
|
+
width?: number | string | undefined;
|
|
1305
1872
|
}
|
|
1306
|
-
interface TemplateHTMLAttributes<T
|
|
1873
|
+
interface TemplateHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1874
|
+
shadowrootclonable?: boolean | undefined;
|
|
1875
|
+
shadowrootdelegatesfocus?: boolean | undefined;
|
|
1876
|
+
shadowrootmode?: "open" | "closed" | undefined;
|
|
1877
|
+
|
|
1878
|
+
/** @experimental */
|
|
1879
|
+
shadowrootserializable?: boolean | undefined;
|
|
1880
|
+
|
|
1881
|
+
/** @deprecated */
|
|
1307
1882
|
content?: DocumentFragment | undefined;
|
|
1308
1883
|
}
|
|
1309
1884
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1310
|
-
autocomplete?:
|
|
1885
|
+
autocomplete?:
|
|
1886
|
+
| "additional-name"
|
|
1887
|
+
| "address-level1"
|
|
1888
|
+
| "address-level2"
|
|
1889
|
+
| "address-level3"
|
|
1890
|
+
| "address-level4"
|
|
1891
|
+
| "address-line1"
|
|
1892
|
+
| "address-line2"
|
|
1893
|
+
| "address-line3"
|
|
1894
|
+
| "bday"
|
|
1895
|
+
| "bday-day"
|
|
1896
|
+
| "bday-month"
|
|
1897
|
+
| "bday-year"
|
|
1898
|
+
| "billing"
|
|
1899
|
+
| "cc-additional-name"
|
|
1900
|
+
| "cc-csc"
|
|
1901
|
+
| "cc-exp"
|
|
1902
|
+
| "cc-exp-month"
|
|
1903
|
+
| "cc-exp-year"
|
|
1904
|
+
| "cc-family-name"
|
|
1905
|
+
| "cc-given-name"
|
|
1906
|
+
| "cc-name"
|
|
1907
|
+
| "cc-number"
|
|
1908
|
+
| "cc-type"
|
|
1909
|
+
| "country"
|
|
1910
|
+
| "country-name"
|
|
1911
|
+
| "current-password"
|
|
1912
|
+
| "email"
|
|
1913
|
+
| "family-name"
|
|
1914
|
+
| "fax"
|
|
1915
|
+
| "given-name"
|
|
1916
|
+
| "home"
|
|
1917
|
+
| "honorific-prefix"
|
|
1918
|
+
| "honorific-suffix"
|
|
1919
|
+
| "impp"
|
|
1920
|
+
| "language"
|
|
1921
|
+
| "mobile"
|
|
1922
|
+
| "name"
|
|
1923
|
+
| "new-password"
|
|
1924
|
+
| "nickname"
|
|
1925
|
+
| "off"
|
|
1926
|
+
| "on"
|
|
1927
|
+
| "organization"
|
|
1928
|
+
| "organization-title"
|
|
1929
|
+
| "pager"
|
|
1930
|
+
| "photo"
|
|
1931
|
+
| "postal-code"
|
|
1932
|
+
| "sex"
|
|
1933
|
+
| "shipping"
|
|
1934
|
+
| "street-address"
|
|
1935
|
+
| "tel"
|
|
1936
|
+
| "tel-area-code"
|
|
1937
|
+
| "tel-country-code"
|
|
1938
|
+
| "tel-extension"
|
|
1939
|
+
| "tel-local"
|
|
1940
|
+
| "tel-local-prefix"
|
|
1941
|
+
| "tel-local-suffix"
|
|
1942
|
+
| "tel-national"
|
|
1943
|
+
| "transaction-amount"
|
|
1944
|
+
| "transaction-currency"
|
|
1945
|
+
| "url"
|
|
1946
|
+
| "username"
|
|
1947
|
+
| "work"
|
|
1948
|
+
| (string & {})
|
|
1949
|
+
| undefined;
|
|
1950
|
+
autocorrect?: "on" | "off" | undefined;
|
|
1311
1951
|
autofocus?: boolean | undefined;
|
|
1312
1952
|
cols?: number | string | undefined;
|
|
1313
1953
|
dirname?: string | undefined;
|
|
@@ -1323,36 +1963,111 @@ export namespace JSX {
|
|
|
1323
1963
|
rows?: number | string | undefined;
|
|
1324
1964
|
value?: string | string[] | number | undefined;
|
|
1325
1965
|
wrap?: "hard" | "soft" | "off" | undefined;
|
|
1966
|
+
|
|
1326
1967
|
maxLength?: number | string | undefined;
|
|
1327
1968
|
minLength?: number | string | undefined;
|
|
1328
1969
|
readOnly?: boolean | undefined;
|
|
1329
1970
|
}
|
|
1330
1971
|
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1972
|
+
abbr?: string | undefined;
|
|
1331
1973
|
colspan?: number | string | undefined;
|
|
1332
1974
|
headers?: string | undefined;
|
|
1333
1975
|
rowspan?: number | string | undefined;
|
|
1976
|
+
scope?: "col" | "row" | "rowgroup" | "colgroup" | undefined;
|
|
1977
|
+
|
|
1334
1978
|
colSpan?: number | string | undefined;
|
|
1335
1979
|
rowSpan?: number | string | undefined;
|
|
1336
|
-
|
|
1980
|
+
|
|
1981
|
+
/** @deprecated */
|
|
1982
|
+
align?: "left" | "center" | "right" | "justify" | "char" | undefined;
|
|
1983
|
+
/** @deprecated */
|
|
1984
|
+
axis?: string | undefined;
|
|
1985
|
+
/** @deprecated */
|
|
1986
|
+
bgcolor?: string | undefined;
|
|
1987
|
+
/** @deprecated */
|
|
1988
|
+
char?: string | undefined;
|
|
1989
|
+
/** @deprecated */
|
|
1990
|
+
charoff?: string | undefined;
|
|
1991
|
+
/** @deprecated */
|
|
1992
|
+
height?: string | undefined;
|
|
1993
|
+
/** @deprecated */
|
|
1994
|
+
nowrap?: boolean | undefined;
|
|
1995
|
+
/** @deprecated */
|
|
1996
|
+
valign?: "baseline" | "bottom" | "middle" | "top" | undefined;
|
|
1997
|
+
/** @deprecated */
|
|
1998
|
+
width?: number | string | undefined;
|
|
1337
1999
|
}
|
|
1338
2000
|
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1339
2001
|
datetime?: string | undefined;
|
|
2002
|
+
|
|
1340
2003
|
dateTime?: string | undefined;
|
|
1341
2004
|
}
|
|
1342
2005
|
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1343
2006
|
default?: boolean | undefined;
|
|
1344
|
-
kind?:
|
|
2007
|
+
kind?:
|
|
2008
|
+
| "alternative"
|
|
2009
|
+
| "descriptions"
|
|
2010
|
+
| "main"
|
|
2011
|
+
| "main-desc"
|
|
2012
|
+
| "translation"
|
|
2013
|
+
| "commentary"
|
|
2014
|
+
| "subtitles"
|
|
2015
|
+
| "captions"
|
|
2016
|
+
| "chapters"
|
|
2017
|
+
| "metadata"
|
|
2018
|
+
| undefined;
|
|
1345
2019
|
label?: string | undefined;
|
|
1346
2020
|
src?: string | undefined;
|
|
1347
2021
|
srclang?: string | undefined;
|
|
2022
|
+
|
|
2023
|
+
mediaGroup?: string | undefined;
|
|
2024
|
+
/** @deprecated */
|
|
2025
|
+
mediagroup?: string | undefined;
|
|
1348
2026
|
}
|
|
1349
2027
|
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
2028
|
+
disablepictureinpicture?: boolean | undefined;
|
|
1350
2029
|
height?: number | string | undefined;
|
|
1351
2030
|
playsinline?: boolean | undefined;
|
|
1352
2031
|
poster?: string | undefined;
|
|
1353
2032
|
width?: number | string | undefined;
|
|
1354
|
-
|
|
2033
|
+
|
|
2034
|
+
onEnterPictureInPicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
|
|
2035
|
+
"on:enterpictureinpicture"?: EventHandlerWithOptionsUnion<T, PictureInPictureEvent> | undefined;
|
|
2036
|
+
onenterpictureinpicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
|
|
2037
|
+
|
|
2038
|
+
onLeavePictureInPicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
|
|
2039
|
+
"on:leavepictureinpicture"?: EventHandlerWithOptionsUnion<T, PictureInPictureEvent> | undefined;
|
|
2040
|
+
onleavepictureinpicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
2044
|
+
allowpopups?: boolean | undefined;
|
|
2045
|
+
disableblinkfeatures?: string | undefined;
|
|
2046
|
+
disablewebsecurity?: boolean | undefined;
|
|
2047
|
+
enableblinkfeatures?: string | undefined;
|
|
2048
|
+
httpreferrer?: string | undefined;
|
|
2049
|
+
nodeintegration?: boolean | undefined;
|
|
2050
|
+
nodeintegrationinsubframes?: boolean | undefined;
|
|
2051
|
+
partition?: string | undefined;
|
|
2052
|
+
plugins?: boolean | undefined;
|
|
2053
|
+
preload?: string | undefined;
|
|
2054
|
+
src?: string | undefined;
|
|
2055
|
+
useragent?: string | undefined;
|
|
2056
|
+
webpreferences?: string | undefined;
|
|
2057
|
+
|
|
2058
|
+
// does this exists?
|
|
2059
|
+
allowfullscreen?: boolean | undefined;
|
|
2060
|
+
autofocus?: boolean | undefined;
|
|
2061
|
+
autosize?: boolean | undefined;
|
|
2062
|
+
|
|
2063
|
+
/** @deprecated */
|
|
2064
|
+
blinkfeatures?: string | undefined;
|
|
2065
|
+
/** @deprecated */
|
|
2066
|
+
disableguestresize?: boolean | undefined;
|
|
2067
|
+
/** @deprecated */
|
|
2068
|
+
guestinstance?: string | undefined;
|
|
1355
2069
|
}
|
|
2070
|
+
|
|
1356
2071
|
type SVGPreserveAspectRatio =
|
|
1357
2072
|
| "none"
|
|
1358
2073
|
| "xMinYMin"
|
|
@@ -1416,8 +2131,9 @@ export namespace JSX {
|
|
|
1416
2131
|
interface CoreSVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
1417
2132
|
id?: string | undefined;
|
|
1418
2133
|
lang?: string | undefined;
|
|
1419
|
-
tabIndex?: number | string | undefined;
|
|
1420
2134
|
tabindex?: number | string | undefined;
|
|
2135
|
+
|
|
2136
|
+
tabIndex?: number | string | undefined;
|
|
1421
2137
|
}
|
|
1422
2138
|
interface StylableSVGAttributes {
|
|
1423
2139
|
class?: string | undefined;
|
|
@@ -1438,26 +2154,26 @@ export namespace JSX {
|
|
|
1438
2154
|
begin?: string | undefined;
|
|
1439
2155
|
dur?: string | undefined;
|
|
1440
2156
|
end?: string | undefined;
|
|
1441
|
-
|
|
2157
|
+
fill?: "freeze" | "remove" | undefined;
|
|
1442
2158
|
max?: string | undefined;
|
|
1443
|
-
|
|
2159
|
+
min?: string | undefined;
|
|
1444
2160
|
repeatCount?: number | "indefinite" | undefined;
|
|
1445
2161
|
repeatDur?: string | undefined;
|
|
1446
|
-
|
|
2162
|
+
restart?: "always" | "whenNotActive" | "never" | undefined;
|
|
1447
2163
|
}
|
|
1448
2164
|
interface AnimationValueSVGAttributes {
|
|
2165
|
+
by?: number | string | undefined;
|
|
1449
2166
|
calcMode?: "discrete" | "linear" | "paced" | "spline" | undefined;
|
|
1450
|
-
values?: string | undefined;
|
|
1451
|
-
keyTimes?: string | undefined;
|
|
1452
|
-
keySplines?: string | undefined;
|
|
1453
2167
|
from?: number | string | undefined;
|
|
2168
|
+
keySplines?: string | undefined;
|
|
2169
|
+
keyTimes?: string | undefined;
|
|
1454
2170
|
to?: number | string | undefined;
|
|
1455
|
-
|
|
2171
|
+
values?: string | undefined;
|
|
1456
2172
|
}
|
|
1457
2173
|
interface AnimationAdditionSVGAttributes {
|
|
1458
|
-
attributeName?: string | undefined;
|
|
1459
|
-
additive?: "replace" | "sum" | undefined;
|
|
1460
2174
|
accumulate?: "none" | "sum" | undefined;
|
|
2175
|
+
additive?: "replace" | "sum" | undefined;
|
|
2176
|
+
attributeName?: string | undefined;
|
|
1461
2177
|
}
|
|
1462
2178
|
interface AnimationAttributeTargetSVGAttributes {
|
|
1463
2179
|
attributeName?: string | undefined;
|
|
@@ -1480,17 +2196,12 @@ export namespace JSX {
|
|
|
1480
2196
|
| "inherit"
|
|
1481
2197
|
| undefined;
|
|
1482
2198
|
"baseline-shift"?: number | string | undefined;
|
|
1483
|
-
clip?: string | undefined;
|
|
1484
2199
|
"clip-path"?: string | undefined;
|
|
1485
2200
|
"clip-rule"?: "nonzero" | "evenodd" | "inherit" | undefined;
|
|
1486
|
-
color?: string | undefined;
|
|
1487
2201
|
"color-interpolation"?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
|
|
1488
2202
|
"color-interpolation-filters"?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
|
|
1489
2203
|
"color-profile"?: string | undefined;
|
|
1490
2204
|
"color-rendering"?: "auto" | "optimizeSpeed" | "optimizeQuality" | "inherit" | undefined;
|
|
1491
|
-
cursor?: string | undefined;
|
|
1492
|
-
direction?: "ltr" | "rtl" | "inherit" | undefined;
|
|
1493
|
-
display?: string | undefined;
|
|
1494
2205
|
"dominant-baseline"?:
|
|
1495
2206
|
| "auto"
|
|
1496
2207
|
| "text-bottom"
|
|
@@ -1504,10 +2215,8 @@ export namespace JSX {
|
|
|
1504
2215
|
| "inherit"
|
|
1505
2216
|
| undefined;
|
|
1506
2217
|
"enable-background"?: string | undefined;
|
|
1507
|
-
fill?: string | undefined;
|
|
1508
2218
|
"fill-opacity"?: number | string | "inherit" | undefined;
|
|
1509
2219
|
"fill-rule"?: "nonzero" | "evenodd" | "inherit" | undefined;
|
|
1510
|
-
filter?: string | undefined;
|
|
1511
2220
|
"flood-color"?: string | undefined;
|
|
1512
2221
|
"flood-opacity"?: number | string | "inherit" | undefined;
|
|
1513
2222
|
"font-family"?: string | undefined;
|
|
@@ -1520,16 +2229,11 @@ export namespace JSX {
|
|
|
1520
2229
|
"glyph-orientation-horizontal"?: string | undefined;
|
|
1521
2230
|
"glyph-orientation-vertical"?: string | undefined;
|
|
1522
2231
|
"image-rendering"?: "auto" | "optimizeQuality" | "optimizeSpeed" | "inherit" | undefined;
|
|
1523
|
-
kerning?: string | undefined;
|
|
1524
2232
|
"letter-spacing"?: number | string | undefined;
|
|
1525
2233
|
"lighting-color"?: string | undefined;
|
|
1526
2234
|
"marker-end"?: string | undefined;
|
|
1527
2235
|
"marker-mid"?: string | undefined;
|
|
1528
2236
|
"marker-start"?: string | undefined;
|
|
1529
|
-
mask?: string | undefined;
|
|
1530
|
-
opacity?: number | string | "inherit" | undefined;
|
|
1531
|
-
overflow?: "visible" | "hidden" | "scroll" | "auto" | "inherit" | undefined;
|
|
1532
|
-
pathLength?: string | number | undefined;
|
|
1533
2237
|
"pointer-events"?:
|
|
1534
2238
|
| "bounding-box"
|
|
1535
2239
|
| "visiblePainted"
|
|
@@ -1553,7 +2257,6 @@ export namespace JSX {
|
|
|
1553
2257
|
| undefined;
|
|
1554
2258
|
"stop-color"?: string | undefined;
|
|
1555
2259
|
"stop-opacity"?: number | string | "inherit" | undefined;
|
|
1556
|
-
stroke?: string | undefined;
|
|
1557
2260
|
"stroke-dasharray"?: string | undefined;
|
|
1558
2261
|
"stroke-dashoffset"?: number | string | undefined;
|
|
1559
2262
|
"stroke-linecap"?: "butt" | "round" | "square" | "inherit" | undefined;
|
|
@@ -1578,9 +2281,22 @@ export namespace JSX {
|
|
|
1578
2281
|
| "inherit"
|
|
1579
2282
|
| undefined;
|
|
1580
2283
|
"unicode-bidi"?: string | undefined;
|
|
1581
|
-
visibility?: "visible" | "hidden" | "collapse" | "inherit" | undefined;
|
|
1582
2284
|
"word-spacing"?: number | string | undefined;
|
|
1583
2285
|
"writing-mode"?: "lr-tb" | "rl-tb" | "tb-rl" | "lr" | "rl" | "tb" | "inherit" | undefined;
|
|
2286
|
+
clip?: string | undefined;
|
|
2287
|
+
color?: string | undefined;
|
|
2288
|
+
cursor?: string | undefined;
|
|
2289
|
+
direction?: "ltr" | "rtl" | "inherit" | undefined;
|
|
2290
|
+
display?: string | undefined;
|
|
2291
|
+
fill?: string | undefined;
|
|
2292
|
+
filter?: string | undefined;
|
|
2293
|
+
kerning?: string | undefined;
|
|
2294
|
+
mask?: string | undefined;
|
|
2295
|
+
opacity?: number | string | "inherit" | undefined;
|
|
2296
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "inherit" | undefined;
|
|
2297
|
+
pathLength?: string | number | undefined;
|
|
2298
|
+
stroke?: string | undefined;
|
|
2299
|
+
visibility?: "visible" | "hidden" | "collapse" | "inherit" | undefined;
|
|
1584
2300
|
}
|
|
1585
2301
|
interface AnimationElementSVGAttributes<T>
|
|
1586
2302
|
extends CoreSVGAttributes<T>,
|
|
@@ -1603,11 +2319,11 @@ export namespace JSX {
|
|
|
1603
2319
|
interface FilterPrimitiveElementSVGAttributes<T>
|
|
1604
2320
|
extends CoreSVGAttributes<T>,
|
|
1605
2321
|
Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
|
|
1606
|
-
x?: number | string | undefined;
|
|
1607
|
-
y?: number | string | undefined;
|
|
1608
|
-
width?: number | string | undefined;
|
|
1609
2322
|
height?: number | string | undefined;
|
|
1610
2323
|
result?: string | undefined;
|
|
2324
|
+
width?: number | string | undefined;
|
|
2325
|
+
x?: number | string | undefined;
|
|
2326
|
+
y?: number | string | undefined;
|
|
1611
2327
|
}
|
|
1612
2328
|
interface SingleInputFilterSVGAttributes {
|
|
1613
2329
|
in?: string | undefined;
|
|
@@ -1617,17 +2333,17 @@ export namespace JSX {
|
|
|
1617
2333
|
in2?: string | undefined;
|
|
1618
2334
|
}
|
|
1619
2335
|
interface FitToViewBoxSVGAttributes {
|
|
1620
|
-
viewBox?: string | undefined;
|
|
1621
2336
|
preserveAspectRatio?: SVGPreserveAspectRatio | undefined;
|
|
2337
|
+
viewBox?: string | undefined;
|
|
1622
2338
|
}
|
|
1623
2339
|
interface GradientElementSVGAttributes<T>
|
|
1624
2340
|
extends CoreSVGAttributes<T>,
|
|
1625
2341
|
ExternalResourceSVGAttributes,
|
|
1626
2342
|
StylableSVGAttributes {
|
|
1627
|
-
gradientUnits?: SVGUnits | undefined;
|
|
1628
2343
|
gradientTransform?: string | undefined;
|
|
1629
|
-
|
|
2344
|
+
gradientUnits?: SVGUnits | undefined;
|
|
1630
2345
|
href?: string | undefined;
|
|
2346
|
+
spreadMethod?: "pad" | "reflect" | "repeat" | undefined;
|
|
1631
2347
|
}
|
|
1632
2348
|
interface GraphicsElementSVGAttributes<T>
|
|
1633
2349
|
extends CoreSVGAttributes<T>,
|
|
@@ -1704,6 +2420,10 @@ export namespace JSX {
|
|
|
1704
2420
|
| "stroke-opacity"
|
|
1705
2421
|
> {}
|
|
1706
2422
|
interface ZoomAndPanSVGAttributes {
|
|
2423
|
+
/**
|
|
2424
|
+
* @deprecated
|
|
2425
|
+
* @non-standard
|
|
2426
|
+
*/
|
|
1707
2427
|
zoomAndPan?: "disable" | "magnify" | undefined;
|
|
1708
2428
|
}
|
|
1709
2429
|
interface AnimateSVGAttributes<T>
|
|
@@ -1718,10 +2438,10 @@ export namespace JSX {
|
|
|
1718
2438
|
AnimationTimingSVGAttributes,
|
|
1719
2439
|
AnimationValueSVGAttributes,
|
|
1720
2440
|
AnimationAdditionSVGAttributes {
|
|
1721
|
-
path?: string | undefined;
|
|
1722
2441
|
keyPoints?: string | undefined;
|
|
1723
|
-
rotate?: number | string | "auto" | "auto-reverse" | undefined;
|
|
1724
2442
|
origin?: "default" | undefined;
|
|
2443
|
+
path?: string | undefined;
|
|
2444
|
+
rotate?: number | string | "auto" | "auto-reverse" | undefined;
|
|
1725
2445
|
}
|
|
1726
2446
|
interface AnimateTransformSVGAttributes<T>
|
|
1727
2447
|
extends AnimationElementSVGAttributes<T>,
|
|
@@ -1736,7 +2456,8 @@ export namespace JSX {
|
|
|
1736
2456
|
ShapeElementSVGAttributes<T>,
|
|
1737
2457
|
ConditionalProcessingSVGAttributes,
|
|
1738
2458
|
StylableSVGAttributes,
|
|
1739
|
-
TransformableSVGAttributes
|
|
2459
|
+
TransformableSVGAttributes,
|
|
2460
|
+
Pick<PresentationSVGAttributes, "clip-path"> {
|
|
1740
2461
|
cx?: number | string | undefined;
|
|
1741
2462
|
cy?: number | string | undefined;
|
|
1742
2463
|
r?: number | string | undefined;
|
|
@@ -1763,7 +2484,8 @@ export namespace JSX {
|
|
|
1763
2484
|
ConditionalProcessingSVGAttributes,
|
|
1764
2485
|
ExternalResourceSVGAttributes,
|
|
1765
2486
|
StylableSVGAttributes,
|
|
1766
|
-
TransformableSVGAttributes
|
|
2487
|
+
TransformableSVGAttributes,
|
|
2488
|
+
Pick<PresentationSVGAttributes, "clip-path"> {
|
|
1767
2489
|
cx?: number | string | undefined;
|
|
1768
2490
|
cy?: number | string | undefined;
|
|
1769
2491
|
rx?: number | string | undefined;
|
|
@@ -1790,34 +2512,34 @@ export namespace JSX {
|
|
|
1790
2512
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
1791
2513
|
DoubleInputFilterSVGAttributes,
|
|
1792
2514
|
StylableSVGAttributes {
|
|
1793
|
-
operator?: "over" | "in" | "out" | "atop" | "xor" | "arithmetic" | undefined;
|
|
1794
2515
|
k1?: number | string | undefined;
|
|
1795
2516
|
k2?: number | string | undefined;
|
|
1796
2517
|
k3?: number | string | undefined;
|
|
1797
2518
|
k4?: number | string | undefined;
|
|
2519
|
+
operator?: "over" | "in" | "out" | "atop" | "xor" | "arithmetic" | undefined;
|
|
1798
2520
|
}
|
|
1799
2521
|
interface FeConvolveMatrixSVGAttributes<T>
|
|
1800
2522
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
1801
2523
|
SingleInputFilterSVGAttributes,
|
|
1802
2524
|
StylableSVGAttributes {
|
|
1803
|
-
order?: number | string | undefined;
|
|
1804
|
-
kernelMatrix?: string | undefined;
|
|
1805
|
-
divisor?: number | string | undefined;
|
|
1806
2525
|
bias?: number | string | undefined;
|
|
1807
|
-
|
|
1808
|
-
targetY?: number | string | undefined;
|
|
2526
|
+
divisor?: number | string | undefined;
|
|
1809
2527
|
edgeMode?: "duplicate" | "wrap" | "none" | undefined;
|
|
2528
|
+
kernelMatrix?: string | undefined;
|
|
1810
2529
|
kernelUnitLength?: number | string | undefined;
|
|
2530
|
+
order?: number | string | undefined;
|
|
1811
2531
|
preserveAlpha?: "true" | "false" | undefined;
|
|
2532
|
+
targetX?: number | string | undefined;
|
|
2533
|
+
targetY?: number | string | undefined;
|
|
1812
2534
|
}
|
|
1813
2535
|
interface FeDiffuseLightingSVGAttributes<T>
|
|
1814
2536
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
1815
2537
|
SingleInputFilterSVGAttributes,
|
|
1816
2538
|
StylableSVGAttributes,
|
|
1817
2539
|
Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
|
|
1818
|
-
surfaceScale?: number | string | undefined;
|
|
1819
2540
|
diffuseConstant?: number | string | undefined;
|
|
1820
2541
|
kernelUnitLength?: number | string | undefined;
|
|
2542
|
+
surfaceScale?: number | string | undefined;
|
|
1821
2543
|
}
|
|
1822
2544
|
interface FeDisplacementMapSVGAttributes<T>
|
|
1823
2545
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
@@ -1845,13 +2567,13 @@ export namespace JSX {
|
|
|
1845
2567
|
StylableSVGAttributes,
|
|
1846
2568
|
Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
|
|
1847
2569
|
interface FeFuncSVGAttributes<T> extends CoreSVGAttributes<T> {
|
|
1848
|
-
type?: "identity" | "table" | "discrete" | "linear" | "gamma" | undefined;
|
|
1849
|
-
tableValues?: string | undefined;
|
|
1850
|
-
slope?: number | string | undefined;
|
|
1851
|
-
intercept?: number | string | undefined;
|
|
1852
2570
|
amplitude?: number | string | undefined;
|
|
1853
2571
|
exponent?: number | string | undefined;
|
|
2572
|
+
intercept?: number | string | undefined;
|
|
1854
2573
|
offset?: number | string | undefined;
|
|
2574
|
+
slope?: number | string | undefined;
|
|
2575
|
+
tableValues?: string | undefined;
|
|
2576
|
+
type?: "identity" | "table" | "discrete" | "linear" | "gamma" | undefined;
|
|
1855
2577
|
}
|
|
1856
2578
|
interface FeGaussianBlurSVGAttributes<T>
|
|
1857
2579
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
@@ -1863,8 +2585,8 @@ export namespace JSX {
|
|
|
1863
2585
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
1864
2586
|
ExternalResourceSVGAttributes,
|
|
1865
2587
|
StylableSVGAttributes {
|
|
1866
|
-
preserveAspectRatio?: SVGPreserveAspectRatio | undefined;
|
|
1867
2588
|
href?: string | undefined;
|
|
2589
|
+
preserveAspectRatio?: SVGPreserveAspectRatio | undefined;
|
|
1868
2590
|
}
|
|
1869
2591
|
interface FeMergeSVGAttributes<T>
|
|
1870
2592
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
@@ -1896,20 +2618,20 @@ export namespace JSX {
|
|
|
1896
2618
|
SingleInputFilterSVGAttributes,
|
|
1897
2619
|
StylableSVGAttributes,
|
|
1898
2620
|
Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
|
|
1899
|
-
|
|
2621
|
+
kernelUnitLength?: number | string | undefined;
|
|
1900
2622
|
specularConstant?: string | undefined;
|
|
1901
2623
|
specularExponent?: string | undefined;
|
|
1902
|
-
|
|
2624
|
+
surfaceScale?: string | undefined;
|
|
1903
2625
|
}
|
|
1904
2626
|
interface FeSpotLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
|
|
1905
|
-
|
|
1906
|
-
y?: number | string | undefined;
|
|
1907
|
-
z?: number | string | undefined;
|
|
2627
|
+
limitingConeAngle?: number | string | undefined;
|
|
1908
2628
|
pointsAtX?: number | string | undefined;
|
|
1909
2629
|
pointsAtY?: number | string | undefined;
|
|
1910
2630
|
pointsAtZ?: number | string | undefined;
|
|
1911
2631
|
specularExponent?: number | string | undefined;
|
|
1912
|
-
|
|
2632
|
+
x?: number | string | undefined;
|
|
2633
|
+
y?: number | string | undefined;
|
|
2634
|
+
z?: number | string | undefined;
|
|
1913
2635
|
}
|
|
1914
2636
|
interface FeTileSVGAttributes<T>
|
|
1915
2637
|
extends FilterPrimitiveElementSVGAttributes<T>,
|
|
@@ -1928,13 +2650,13 @@ export namespace JSX {
|
|
|
1928
2650
|
extends CoreSVGAttributes<T>,
|
|
1929
2651
|
ExternalResourceSVGAttributes,
|
|
1930
2652
|
StylableSVGAttributes {
|
|
2653
|
+
filterRes?: number | string | undefined;
|
|
1931
2654
|
filterUnits?: SVGUnits | undefined;
|
|
2655
|
+
height?: number | string | undefined;
|
|
1932
2656
|
primitiveUnits?: SVGUnits | undefined;
|
|
2657
|
+
width?: number | string | undefined;
|
|
1933
2658
|
x?: number | string | undefined;
|
|
1934
2659
|
y?: number | string | undefined;
|
|
1935
|
-
width?: number | string | undefined;
|
|
1936
|
-
height?: number | string | undefined;
|
|
1937
|
-
filterRes?: number | string | undefined;
|
|
1938
2660
|
}
|
|
1939
2661
|
interface ForeignObjectSVGAttributes<T>
|
|
1940
2662
|
extends NewViewportSVGAttributes<T>,
|
|
@@ -1943,10 +2665,10 @@ export namespace JSX {
|
|
|
1943
2665
|
StylableSVGAttributes,
|
|
1944
2666
|
TransformableSVGAttributes,
|
|
1945
2667
|
Pick<PresentationSVGAttributes, "display" | "visibility"> {
|
|
2668
|
+
height?: number | string | undefined;
|
|
2669
|
+
width?: number | string | undefined;
|
|
1946
2670
|
x?: number | string | undefined;
|
|
1947
2671
|
y?: number | string | undefined;
|
|
1948
|
-
width?: number | string | undefined;
|
|
1949
|
-
height?: number | string | undefined;
|
|
1950
2672
|
}
|
|
1951
2673
|
interface GSVGAttributes<T>
|
|
1952
2674
|
extends ContainerElementSVGAttributes<T>,
|
|
@@ -1954,21 +2676,21 @@ export namespace JSX {
|
|
|
1954
2676
|
ExternalResourceSVGAttributes,
|
|
1955
2677
|
StylableSVGAttributes,
|
|
1956
2678
|
TransformableSVGAttributes,
|
|
1957
|
-
Pick<PresentationSVGAttributes, "display" | "visibility"> {}
|
|
2679
|
+
Pick<PresentationSVGAttributes, "clip-path" | "display" | "visibility"> {}
|
|
1958
2680
|
interface ImageSVGAttributes<T>
|
|
1959
2681
|
extends NewViewportSVGAttributes<T>,
|
|
1960
2682
|
GraphicsElementSVGAttributes<T>,
|
|
1961
2683
|
ConditionalProcessingSVGAttributes,
|
|
1962
2684
|
StylableSVGAttributes,
|
|
1963
2685
|
TransformableSVGAttributes,
|
|
1964
|
-
Pick<PresentationSVGAttributes, "color-profile" | "image-rendering"> {
|
|
1965
|
-
x?: number | string | undefined;
|
|
1966
|
-
y?: number | string | undefined;
|
|
1967
|
-
width?: number | string | undefined;
|
|
2686
|
+
Pick<PresentationSVGAttributes, "clip-path" | "color-profile" | "image-rendering"> {
|
|
1968
2687
|
height?: number | string | undefined;
|
|
1969
|
-
preserveAspectRatio?: ImagePreserveAspectRatio | undefined;
|
|
1970
2688
|
href?: string | undefined;
|
|
1971
|
-
|
|
2689
|
+
preserveAspectRatio?: ImagePreserveAspectRatio | undefined;
|
|
2690
|
+
width?: number | string | undefined;
|
|
2691
|
+
x?: number | string | undefined;
|
|
2692
|
+
y?: number | string | undefined;
|
|
2693
|
+
}
|
|
1972
2694
|
interface LineSVGAttributes<T>
|
|
1973
2695
|
extends GraphicsElementSVGAttributes<T>,
|
|
1974
2696
|
ShapeElementSVGAttributes<T>,
|
|
@@ -1976,10 +2698,10 @@ export namespace JSX {
|
|
|
1976
2698
|
ExternalResourceSVGAttributes,
|
|
1977
2699
|
StylableSVGAttributes,
|
|
1978
2700
|
TransformableSVGAttributes,
|
|
1979
|
-
Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
|
|
2701
|
+
Pick<PresentationSVGAttributes, "clip-path" | "marker-start" | "marker-mid" | "marker-end"> {
|
|
1980
2702
|
x1?: number | string | undefined;
|
|
1981
|
-
y1?: number | string | undefined;
|
|
1982
2703
|
x2?: number | string | undefined;
|
|
2704
|
+
y1?: number | string | undefined;
|
|
1983
2705
|
y2?: number | string | undefined;
|
|
1984
2706
|
}
|
|
1985
2707
|
interface LinearGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
|
|
@@ -1993,25 +2715,26 @@ export namespace JSX {
|
|
|
1993
2715
|
ExternalResourceSVGAttributes,
|
|
1994
2716
|
StylableSVGAttributes,
|
|
1995
2717
|
FitToViewBoxSVGAttributes,
|
|
1996
|
-
Pick<PresentationSVGAttributes, "overflow" | "clip"> {
|
|
2718
|
+
Pick<PresentationSVGAttributes, "clip-path" | "overflow" | "clip"> {
|
|
2719
|
+
markerHeight?: number | string | undefined;
|
|
1997
2720
|
markerUnits?: "strokeWidth" | "userSpaceOnUse" | undefined;
|
|
1998
|
-
refX?: number | string | undefined;
|
|
1999
|
-
refY?: number | string | undefined;
|
|
2000
2721
|
markerWidth?: number | string | undefined;
|
|
2001
|
-
markerHeight?: number | string | undefined;
|
|
2002
2722
|
orient?: string | undefined;
|
|
2723
|
+
refX?: number | string | undefined;
|
|
2724
|
+
refY?: number | string | undefined;
|
|
2003
2725
|
}
|
|
2004
2726
|
interface MaskSVGAttributes<T>
|
|
2005
2727
|
extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
|
|
2006
2728
|
ConditionalProcessingSVGAttributes,
|
|
2007
2729
|
ExternalResourceSVGAttributes,
|
|
2008
|
-
StylableSVGAttributes
|
|
2009
|
-
|
|
2730
|
+
StylableSVGAttributes,
|
|
2731
|
+
Pick<PresentationSVGAttributes, "clip-path"> {
|
|
2732
|
+
height?: number | string | undefined;
|
|
2010
2733
|
maskContentUnits?: SVGUnits | undefined;
|
|
2734
|
+
maskUnits?: SVGUnits | undefined;
|
|
2735
|
+
width?: number | string | undefined;
|
|
2011
2736
|
x?: number | string | undefined;
|
|
2012
2737
|
y?: number | string | undefined;
|
|
2013
|
-
width?: number | string | undefined;
|
|
2014
|
-
height?: number | string | undefined;
|
|
2015
2738
|
}
|
|
2016
2739
|
interface MetadataSVGAttributes<T> extends CoreSVGAttributes<T> {}
|
|
2017
2740
|
interface MPathSVGAttributes<T> extends CoreSVGAttributes<T> {}
|
|
@@ -2022,7 +2745,7 @@ export namespace JSX {
|
|
|
2022
2745
|
ExternalResourceSVGAttributes,
|
|
2023
2746
|
StylableSVGAttributes,
|
|
2024
2747
|
TransformableSVGAttributes,
|
|
2025
|
-
Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
|
|
2748
|
+
Pick<PresentationSVGAttributes, "clip-path" | "marker-start" | "marker-mid" | "marker-end"> {
|
|
2026
2749
|
d?: string | undefined;
|
|
2027
2750
|
pathLength?: number | string | undefined;
|
|
2028
2751
|
}
|
|
@@ -2032,15 +2755,15 @@ export namespace JSX {
|
|
|
2032
2755
|
ExternalResourceSVGAttributes,
|
|
2033
2756
|
StylableSVGAttributes,
|
|
2034
2757
|
FitToViewBoxSVGAttributes,
|
|
2035
|
-
Pick<PresentationSVGAttributes, "overflow" | "clip"> {
|
|
2036
|
-
x?: number | string | undefined;
|
|
2037
|
-
y?: number | string | undefined;
|
|
2038
|
-
width?: number | string | undefined;
|
|
2758
|
+
Pick<PresentationSVGAttributes, "clip-path" | "overflow" | "clip"> {
|
|
2039
2759
|
height?: number | string | undefined;
|
|
2040
|
-
|
|
2760
|
+
href?: string | undefined;
|
|
2041
2761
|
patternContentUnits?: SVGUnits | undefined;
|
|
2042
2762
|
patternTransform?: string | undefined;
|
|
2043
|
-
|
|
2763
|
+
patternUnits?: SVGUnits | undefined;
|
|
2764
|
+
width?: number | string | undefined;
|
|
2765
|
+
x?: number | string | undefined;
|
|
2766
|
+
y?: number | string | undefined;
|
|
2044
2767
|
}
|
|
2045
2768
|
interface PolygonSVGAttributes<T>
|
|
2046
2769
|
extends GraphicsElementSVGAttributes<T>,
|
|
@@ -2049,7 +2772,7 @@ export namespace JSX {
|
|
|
2049
2772
|
ExternalResourceSVGAttributes,
|
|
2050
2773
|
StylableSVGAttributes,
|
|
2051
2774
|
TransformableSVGAttributes,
|
|
2052
|
-
Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
|
|
2775
|
+
Pick<PresentationSVGAttributes, "clip-path" | "marker-start" | "marker-mid" | "marker-end"> {
|
|
2053
2776
|
points?: string | undefined;
|
|
2054
2777
|
}
|
|
2055
2778
|
interface PolylineSVGAttributes<T>
|
|
@@ -2059,15 +2782,15 @@ export namespace JSX {
|
|
|
2059
2782
|
ExternalResourceSVGAttributes,
|
|
2060
2783
|
StylableSVGAttributes,
|
|
2061
2784
|
TransformableSVGAttributes,
|
|
2062
|
-
Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
|
|
2785
|
+
Pick<PresentationSVGAttributes, "clip-path" | "marker-start" | "marker-mid" | "marker-end"> {
|
|
2063
2786
|
points?: string | undefined;
|
|
2064
2787
|
}
|
|
2065
2788
|
interface RadialGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
|
|
2066
2789
|
cx?: number | string | undefined;
|
|
2067
2790
|
cy?: number | string | undefined;
|
|
2068
|
-
r?: number | string | undefined;
|
|
2069
2791
|
fx?: number | string | undefined;
|
|
2070
2792
|
fy?: number | string | undefined;
|
|
2793
|
+
r?: number | string | undefined;
|
|
2071
2794
|
}
|
|
2072
2795
|
interface RectSVGAttributes<T>
|
|
2073
2796
|
extends GraphicsElementSVGAttributes<T>,
|
|
@@ -2075,13 +2798,14 @@ export namespace JSX {
|
|
|
2075
2798
|
ConditionalProcessingSVGAttributes,
|
|
2076
2799
|
ExternalResourceSVGAttributes,
|
|
2077
2800
|
StylableSVGAttributes,
|
|
2078
|
-
TransformableSVGAttributes
|
|
2079
|
-
|
|
2080
|
-
y?: number | string | undefined;
|
|
2081
|
-
width?: number | string | undefined;
|
|
2801
|
+
TransformableSVGAttributes,
|
|
2802
|
+
Pick<PresentationSVGAttributes, "clip-path"> {
|
|
2082
2803
|
height?: number | string | undefined;
|
|
2083
2804
|
rx?: number | string | undefined;
|
|
2084
2805
|
ry?: number | string | undefined;
|
|
2806
|
+
width?: number | string | undefined;
|
|
2807
|
+
x?: number | string | undefined;
|
|
2808
|
+
y?: number | string | undefined;
|
|
2085
2809
|
}
|
|
2086
2810
|
interface SetSVGAttributes<T>
|
|
2087
2811
|
extends CoreSVGAttributes<T>,
|
|
@@ -2101,17 +2825,22 @@ export namespace JSX {
|
|
|
2101
2825
|
StylableSVGAttributes,
|
|
2102
2826
|
FitToViewBoxSVGAttributes,
|
|
2103
2827
|
ZoomAndPanSVGAttributes,
|
|
2104
|
-
PresentationSVGAttributes
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
y?: number | string | undefined;
|
|
2109
|
-
width?: number | string | undefined;
|
|
2110
|
-
height?: number | string | undefined;
|
|
2828
|
+
PresentationSVGAttributes,
|
|
2829
|
+
WindowEventMap<T>,
|
|
2830
|
+
ElementEventMap<T> {
|
|
2831
|
+
"xmlns:xlink"?: string | undefined;
|
|
2111
2832
|
contentScriptType?: string | undefined;
|
|
2112
2833
|
contentStyleType?: string | undefined;
|
|
2834
|
+
height?: number | string | undefined;
|
|
2835
|
+
width?: number | string | undefined;
|
|
2836
|
+
x?: number | string | undefined;
|
|
2113
2837
|
xmlns?: string | undefined;
|
|
2114
|
-
|
|
2838
|
+
y?: number | string | undefined;
|
|
2839
|
+
|
|
2840
|
+
/** @deprecated */
|
|
2841
|
+
baseProfile?: string | undefined;
|
|
2842
|
+
/** @deprecated */
|
|
2843
|
+
version?: string | undefined;
|
|
2115
2844
|
}
|
|
2116
2845
|
interface SwitchSVGAttributes<T>
|
|
2117
2846
|
extends ContainerElementSVGAttributes<T>,
|
|
@@ -2125,13 +2854,14 @@ export namespace JSX {
|
|
|
2125
2854
|
NewViewportSVGAttributes<T>,
|
|
2126
2855
|
ExternalResourceSVGAttributes,
|
|
2127
2856
|
StylableSVGAttributes,
|
|
2128
|
-
FitToViewBoxSVGAttributes
|
|
2129
|
-
|
|
2857
|
+
FitToViewBoxSVGAttributes,
|
|
2858
|
+
Pick<PresentationSVGAttributes, "clip-path"> {
|
|
2130
2859
|
height?: number | string | undefined;
|
|
2131
2860
|
preserveAspectRatio?: SVGPreserveAspectRatio | undefined;
|
|
2132
2861
|
refX?: number | string | undefined;
|
|
2133
2862
|
refY?: number | string | undefined;
|
|
2134
2863
|
viewBox?: string | undefined;
|
|
2864
|
+
width?: number | string | undefined;
|
|
2135
2865
|
x?: number | string | undefined;
|
|
2136
2866
|
y?: number | string | undefined;
|
|
2137
2867
|
}
|
|
@@ -2142,14 +2872,14 @@ export namespace JSX {
|
|
|
2142
2872
|
ExternalResourceSVGAttributes,
|
|
2143
2873
|
StylableSVGAttributes,
|
|
2144
2874
|
TransformableSVGAttributes,
|
|
2145
|
-
Pick<PresentationSVGAttributes, "writing-mode" | "text-rendering"> {
|
|
2146
|
-
x?: number | string | undefined;
|
|
2147
|
-
y?: number | string | undefined;
|
|
2875
|
+
Pick<PresentationSVGAttributes, "clip-path" | "writing-mode" | "text-rendering"> {
|
|
2148
2876
|
dx?: number | string | undefined;
|
|
2149
2877
|
dy?: number | string | undefined;
|
|
2878
|
+
lengthAdjust?: "spacing" | "spacingAndGlyphs" | undefined;
|
|
2150
2879
|
rotate?: number | string | undefined;
|
|
2151
2880
|
textLength?: number | string | undefined;
|
|
2152
|
-
|
|
2881
|
+
x?: number | string | undefined;
|
|
2882
|
+
y?: number | string | undefined;
|
|
2153
2883
|
}
|
|
2154
2884
|
interface TextPathSVGAttributes<T>
|
|
2155
2885
|
extends TextContentElementSVGAttributes<T>,
|
|
@@ -2160,10 +2890,10 @@ export namespace JSX {
|
|
|
2160
2890
|
PresentationSVGAttributes,
|
|
2161
2891
|
"alignment-baseline" | "baseline-shift" | "display" | "visibility"
|
|
2162
2892
|
> {
|
|
2163
|
-
|
|
2893
|
+
href?: string | undefined;
|
|
2164
2894
|
method?: "align" | "stretch" | undefined;
|
|
2165
2895
|
spacing?: "auto" | "exact" | undefined;
|
|
2166
|
-
|
|
2896
|
+
startOffset?: number | string | undefined;
|
|
2167
2897
|
}
|
|
2168
2898
|
interface TSpanSVGAttributes<T>
|
|
2169
2899
|
extends TextContentElementSVGAttributes<T>,
|
|
@@ -2174,13 +2904,13 @@ export namespace JSX {
|
|
|
2174
2904
|
PresentationSVGAttributes,
|
|
2175
2905
|
"alignment-baseline" | "baseline-shift" | "display" | "visibility"
|
|
2176
2906
|
> {
|
|
2177
|
-
x?: number | string | undefined;
|
|
2178
|
-
y?: number | string | undefined;
|
|
2179
2907
|
dx?: number | string | undefined;
|
|
2180
2908
|
dy?: number | string | undefined;
|
|
2909
|
+
lengthAdjust?: "spacing" | "spacingAndGlyphs" | undefined;
|
|
2181
2910
|
rotate?: number | string | undefined;
|
|
2182
2911
|
textLength?: number | string | undefined;
|
|
2183
|
-
|
|
2912
|
+
x?: number | string | undefined;
|
|
2913
|
+
y?: number | string | undefined;
|
|
2184
2914
|
}
|
|
2185
2915
|
/** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
|
|
2186
2916
|
interface UseSVGAttributes<T>
|
|
@@ -2191,11 +2921,11 @@ export namespace JSX {
|
|
|
2191
2921
|
PresentationSVGAttributes,
|
|
2192
2922
|
ExternalResourceSVGAttributes,
|
|
2193
2923
|
TransformableSVGAttributes {
|
|
2194
|
-
x?: number | string | undefined;
|
|
2195
|
-
y?: number | string | undefined;
|
|
2196
|
-
width?: number | string | undefined;
|
|
2197
2924
|
height?: number | string | undefined;
|
|
2198
2925
|
href?: string | undefined;
|
|
2926
|
+
width?: number | string | undefined;
|
|
2927
|
+
x?: number | string | undefined;
|
|
2928
|
+
y?: number | string | undefined;
|
|
2199
2929
|
}
|
|
2200
2930
|
interface ViewSVGAttributes<T>
|
|
2201
2931
|
extends CoreSVGAttributes<T>,
|
|
@@ -2204,190 +2934,1305 @@ export namespace JSX {
|
|
|
2204
2934
|
ZoomAndPanSVGAttributes {
|
|
2205
2935
|
viewTarget?: string | undefined;
|
|
2206
2936
|
}
|
|
2937
|
+
|
|
2938
|
+
interface MathMLAttributes<T> extends HTMLAttributes<T> {
|
|
2939
|
+
displaystyle?: boolean | undefined;
|
|
2940
|
+
/** @deprecated */
|
|
2941
|
+
href?: string | undefined;
|
|
2942
|
+
/** @deprecated */
|
|
2943
|
+
mathbackground?: string | undefined;
|
|
2944
|
+
/** @deprecated */
|
|
2945
|
+
mathcolor?: string | undefined;
|
|
2946
|
+
/** @deprecated */
|
|
2947
|
+
mathsize?: string | undefined;
|
|
2948
|
+
nonce?: string | undefined;
|
|
2949
|
+
scriptlevel?: string | undefined;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
interface MathMLAnnotationElementAttributes<T> extends MathMLAttributes<T> {
|
|
2953
|
+
encoding?: string | undefined;
|
|
2954
|
+
|
|
2955
|
+
/** @deprecated */
|
|
2956
|
+
src?: string | undefined;
|
|
2957
|
+
}
|
|
2958
|
+
interface MathMLAnnotationXmlElementAttributes<T> extends MathMLAttributes<T> {
|
|
2959
|
+
encoding?: string | undefined;
|
|
2960
|
+
|
|
2961
|
+
/** @deprecated */
|
|
2962
|
+
src?: string | undefined;
|
|
2963
|
+
}
|
|
2964
|
+
interface MathMLMactionElementAttributes<T> extends MathMLAttributes<T> {
|
|
2965
|
+
/**
|
|
2966
|
+
* @deprecated
|
|
2967
|
+
* @non-standard
|
|
2968
|
+
*/
|
|
2969
|
+
actiontype?: "statusline" | "toggle" | undefined;
|
|
2970
|
+
/**
|
|
2971
|
+
* @deprecated
|
|
2972
|
+
* @non-standard
|
|
2973
|
+
*/
|
|
2974
|
+
selection?: string | undefined;
|
|
2975
|
+
}
|
|
2976
|
+
interface MathMLMathElementAttributes<T> extends MathMLAttributes<T> {
|
|
2977
|
+
display?: "block" | "inline" | undefined;
|
|
2978
|
+
}
|
|
2979
|
+
interface MathMLMerrorElementAttributes<T> extends MathMLAttributes<T> {}
|
|
2980
|
+
interface MathMLMfracElementAttributes<T> extends MathMLAttributes<T> {
|
|
2981
|
+
linethickness?: string | undefined;
|
|
2982
|
+
|
|
2983
|
+
/**
|
|
2984
|
+
* @deprecated
|
|
2985
|
+
* @non-standard
|
|
2986
|
+
*/
|
|
2987
|
+
denomalign?: "center" | "left" | "right" | undefined;
|
|
2988
|
+
/**
|
|
2989
|
+
* @deprecated
|
|
2990
|
+
* @non-standard
|
|
2991
|
+
*/
|
|
2992
|
+
numalign?: "center" | "left" | "right" | undefined;
|
|
2993
|
+
}
|
|
2994
|
+
interface MathMLMiElementAttributes<T> extends MathMLAttributes<T> {
|
|
2995
|
+
mathvariant?: "normal" | undefined;
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
interface MathMLMmultiscriptsElementAttributes<T> extends MathMLAttributes<T> {
|
|
2999
|
+
/**
|
|
3000
|
+
* @deprecated
|
|
3001
|
+
* @non-standard
|
|
3002
|
+
*/
|
|
3003
|
+
subscriptshift?: string | undefined;
|
|
3004
|
+
/**
|
|
3005
|
+
* @deprecated
|
|
3006
|
+
* @non-standard
|
|
3007
|
+
*/
|
|
3008
|
+
superscriptshift?: string | undefined;
|
|
3009
|
+
}
|
|
3010
|
+
interface MathMLMnElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3011
|
+
interface MathMLMoElementAttributes<T> extends MathMLAttributes<T> {
|
|
3012
|
+
fence?: boolean | undefined;
|
|
3013
|
+
form?: "prefix" | "infix" | "postfix" | undefined;
|
|
3014
|
+
largeop?: boolean | undefined;
|
|
3015
|
+
lspace?: string | undefined;
|
|
3016
|
+
maxsize?: string | undefined;
|
|
3017
|
+
minsize?: string | undefined;
|
|
3018
|
+
movablelimits?: boolean | undefined;
|
|
3019
|
+
rspace?: string | undefined;
|
|
3020
|
+
separator?: boolean | undefined;
|
|
3021
|
+
stretchy?: boolean | undefined;
|
|
3022
|
+
symmetric?: boolean | undefined;
|
|
3023
|
+
|
|
3024
|
+
/** @non-standard */
|
|
3025
|
+
accent?: boolean | undefined;
|
|
3026
|
+
}
|
|
3027
|
+
interface MathMLMoverElementAttributes<T> extends MathMLAttributes<T> {
|
|
3028
|
+
accent?: boolean | undefined;
|
|
3029
|
+
}
|
|
3030
|
+
interface MathMLMpaddedElementAttributes<T> extends MathMLAttributes<T> {
|
|
3031
|
+
depth?: string | undefined;
|
|
3032
|
+
height?: string | undefined;
|
|
3033
|
+
lspace?: string | undefined;
|
|
3034
|
+
voffset?: string | undefined;
|
|
3035
|
+
width?: string | undefined;
|
|
3036
|
+
}
|
|
3037
|
+
interface MathMLMphantomElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3038
|
+
interface MathMLMprescriptsElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3039
|
+
interface MathMLMrootElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3040
|
+
interface MathMLMrowElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3041
|
+
interface MathMLMsElementAttributes<T> extends MathMLAttributes<T> {
|
|
3042
|
+
/** @deprecated */
|
|
3043
|
+
lquote?: string | undefined;
|
|
3044
|
+
/** @deprecated */
|
|
3045
|
+
rquote?: string | undefined;
|
|
3046
|
+
}
|
|
3047
|
+
interface MathMLMspaceElementAttributes<T> extends MathMLAttributes<T> {
|
|
3048
|
+
depth?: string | undefined;
|
|
3049
|
+
height?: string | undefined;
|
|
3050
|
+
width?: string | undefined;
|
|
3051
|
+
}
|
|
3052
|
+
interface MathMLMsqrtElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3053
|
+
interface MathMLMstyleElementAttributes<T> extends MathMLAttributes<T> {
|
|
3054
|
+
/**
|
|
3055
|
+
* @deprecated
|
|
3056
|
+
* @non-standard
|
|
3057
|
+
*/
|
|
3058
|
+
background?: string | undefined;
|
|
3059
|
+
/**
|
|
3060
|
+
* @deprecated
|
|
3061
|
+
* @non-standard
|
|
3062
|
+
*/
|
|
3063
|
+
color?: string | undefined;
|
|
3064
|
+
/**
|
|
3065
|
+
* @deprecated
|
|
3066
|
+
* @non-standard
|
|
3067
|
+
*/
|
|
3068
|
+
fontsize?: string | undefined;
|
|
3069
|
+
/**
|
|
3070
|
+
* @deprecated
|
|
3071
|
+
* @non-standard
|
|
3072
|
+
*/
|
|
3073
|
+
fontstyle?: string | undefined;
|
|
3074
|
+
/**
|
|
3075
|
+
* @deprecated
|
|
3076
|
+
* @non-standard
|
|
3077
|
+
*/
|
|
3078
|
+
fontweight?: string | undefined;
|
|
3079
|
+
|
|
3080
|
+
/** @deprecated */
|
|
3081
|
+
scriptminsize?: string | undefined;
|
|
3082
|
+
/** @deprecated */
|
|
3083
|
+
scriptsizemultiplier?: string | undefined;
|
|
3084
|
+
}
|
|
3085
|
+
interface MathMLMsubElementAttributes<T> extends MathMLAttributes<T> {
|
|
3086
|
+
/**
|
|
3087
|
+
* @deprecated
|
|
3088
|
+
* @non-standard
|
|
3089
|
+
*/
|
|
3090
|
+
subscriptshift?: string | undefined;
|
|
3091
|
+
}
|
|
3092
|
+
interface MathMLMsubsupElementAttributes<T> extends MathMLAttributes<T> {
|
|
3093
|
+
/**
|
|
3094
|
+
* @deprecated
|
|
3095
|
+
* @non-standard
|
|
3096
|
+
*/
|
|
3097
|
+
subscriptshift?: string | undefined;
|
|
3098
|
+
/**
|
|
3099
|
+
* @deprecated
|
|
3100
|
+
* @non-standard
|
|
3101
|
+
*/
|
|
3102
|
+
superscriptshift?: string | undefined;
|
|
3103
|
+
}
|
|
3104
|
+
interface MathMLMsupElementAttributes<T> extends MathMLAttributes<T> {
|
|
3105
|
+
/**
|
|
3106
|
+
* @deprecated
|
|
3107
|
+
* @non-standard
|
|
3108
|
+
*/
|
|
3109
|
+
superscriptshift?: string | undefined;
|
|
3110
|
+
}
|
|
3111
|
+
interface MathMLMtableElementAttributes<T> extends MathMLAttributes<T> {
|
|
3112
|
+
/** @non-standard */
|
|
3113
|
+
align?: "axis" | "baseline" | "bottom" | "center" | "top" | undefined;
|
|
3114
|
+
/** @non-standard */
|
|
3115
|
+
columnalign?: "center" | "left" | "right" | undefined;
|
|
3116
|
+
/** @non-standard */
|
|
3117
|
+
columnlines?: "dashed" | "none" | "solid" | undefined;
|
|
3118
|
+
/** @non-standard */
|
|
3119
|
+
columnspacing?: string | undefined;
|
|
3120
|
+
/** @non-standard */
|
|
3121
|
+
frame?: "dashed" | "none" | "solid" | undefined;
|
|
3122
|
+
/** @non-standard */
|
|
3123
|
+
framespacing?: string | undefined;
|
|
3124
|
+
/** @non-standard */
|
|
3125
|
+
rowalign?: "axis" | "baseline" | "bottom" | "center" | "top" | undefined;
|
|
3126
|
+
/** @non-standard */
|
|
3127
|
+
rowlines?: "dashed" | "none" | "solid" | undefined;
|
|
3128
|
+
/** @non-standard */
|
|
3129
|
+
rowspacing?: string | undefined;
|
|
3130
|
+
/** @non-standard */
|
|
3131
|
+
width?: string | undefined;
|
|
3132
|
+
}
|
|
3133
|
+
interface MathMLMtdElementAttributes<T> extends MathMLAttributes<T> {
|
|
3134
|
+
columnspan?: number | string | undefined;
|
|
3135
|
+
rowspan?: number | string | undefined;
|
|
3136
|
+
/** @non-standard */
|
|
3137
|
+
columnalign?: "center" | "left" | "right" | undefined;
|
|
3138
|
+
/** @non-standard */
|
|
3139
|
+
rowalign?: "axis" | "baseline" | "bottom" | "center" | "top" | undefined;
|
|
3140
|
+
}
|
|
3141
|
+
interface MathMLMtextElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3142
|
+
interface MathMLMtrElementAttributes<T> extends MathMLAttributes<T> {
|
|
3143
|
+
/** @non-standard */
|
|
3144
|
+
columnalign?: "center" | "left" | "right" | undefined;
|
|
3145
|
+
/** @non-standard */
|
|
3146
|
+
rowalign?: "axis" | "baseline" | "bottom" | "center" | "top" | undefined;
|
|
3147
|
+
}
|
|
3148
|
+
interface MathMLMunderElementAttributes<T> extends MathMLAttributes<T> {
|
|
3149
|
+
accentunder?: "" | boolean | undefined;
|
|
3150
|
+
}
|
|
3151
|
+
interface MathMLMunderoverElementAttributes<T> extends MathMLAttributes<T> {
|
|
3152
|
+
accent?: "" | boolean | undefined;
|
|
3153
|
+
accentunder?: "" | boolean | undefined;
|
|
3154
|
+
}
|
|
3155
|
+
interface MathMLSemanticsElementAttributes<T> extends MathMLAttributes<T> {}
|
|
3156
|
+
|
|
3157
|
+
/* MathMLDeprecatedElements */
|
|
3158
|
+
|
|
3159
|
+
interface MathMLMencloseElementAttributes<T> extends MathMLAttributes<T> {
|
|
3160
|
+
/** @non-standard */
|
|
3161
|
+
notation?: string | undefined;
|
|
3162
|
+
}
|
|
3163
|
+
interface MathMLMfencedElementAttributes<T> extends MathMLAttributes<T> {
|
|
3164
|
+
close?: string | undefined;
|
|
3165
|
+
open?: string | undefined;
|
|
3166
|
+
separators?: string | undefined;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
2207
3169
|
/** @type {HTMLElementTagNameMap} */
|
|
2208
3170
|
interface HTMLElementTags {
|
|
3171
|
+
/**
|
|
3172
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
|
|
3173
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
|
|
3174
|
+
*/
|
|
2209
3175
|
a: AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
3176
|
+
/**
|
|
3177
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
|
|
3178
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3179
|
+
*/
|
|
2210
3180
|
abbr: HTMLAttributes<HTMLElement>;
|
|
3181
|
+
/**
|
|
3182
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
|
|
3183
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3184
|
+
*/
|
|
2211
3185
|
address: HTMLAttributes<HTMLElement>;
|
|
3186
|
+
/**
|
|
3187
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
|
|
3188
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
|
|
3189
|
+
*/
|
|
2212
3190
|
area: AreaHTMLAttributes<HTMLAreaElement>;
|
|
3191
|
+
/**
|
|
3192
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
|
|
3193
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3194
|
+
*/
|
|
2213
3195
|
article: HTMLAttributes<HTMLElement>;
|
|
3196
|
+
/**
|
|
3197
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
|
|
3198
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3199
|
+
*/
|
|
2214
3200
|
aside: HTMLAttributes<HTMLElement>;
|
|
3201
|
+
/**
|
|
3202
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
|
|
3203
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
|
|
3204
|
+
*/
|
|
2215
3205
|
audio: AudioHTMLAttributes<HTMLAudioElement>;
|
|
3206
|
+
/**
|
|
3207
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
|
|
3208
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3209
|
+
*/
|
|
2216
3210
|
b: HTMLAttributes<HTMLElement>;
|
|
3211
|
+
/**
|
|
3212
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
3213
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
|
|
3214
|
+
*/
|
|
2217
3215
|
base: BaseHTMLAttributes<HTMLBaseElement>;
|
|
3216
|
+
/**
|
|
3217
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
|
|
3218
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3219
|
+
*/
|
|
2218
3220
|
bdi: HTMLAttributes<HTMLElement>;
|
|
3221
|
+
/**
|
|
3222
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
|
|
3223
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3224
|
+
*/
|
|
2219
3225
|
bdo: HTMLAttributes<HTMLElement>;
|
|
2220
|
-
|
|
2221
|
-
|
|
3226
|
+
/**
|
|
3227
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
|
|
3228
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
|
|
3229
|
+
*/
|
|
3230
|
+
blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
|
|
3231
|
+
/**
|
|
3232
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
|
|
3233
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
|
|
3234
|
+
*/
|
|
3235
|
+
body: BodyHTMLAttributes<HTMLBodyElement>;
|
|
3236
|
+
/**
|
|
3237
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
|
|
3238
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
|
|
3239
|
+
*/
|
|
2222
3240
|
br: HTMLAttributes<HTMLBRElement>;
|
|
3241
|
+
/**
|
|
3242
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
|
|
3243
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
|
|
3244
|
+
*/
|
|
2223
3245
|
button: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
3246
|
+
/**
|
|
3247
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
|
|
3248
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
|
|
3249
|
+
*/
|
|
2224
3250
|
canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
2225
|
-
|
|
3251
|
+
/**
|
|
3252
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
|
|
3253
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
|
|
3254
|
+
*/
|
|
3255
|
+
caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
|
|
3256
|
+
/**
|
|
3257
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
|
|
3258
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3259
|
+
*/
|
|
2226
3260
|
cite: HTMLAttributes<HTMLElement>;
|
|
3261
|
+
/**
|
|
3262
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
|
|
3263
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3264
|
+
*/
|
|
2227
3265
|
code: HTMLAttributes<HTMLElement>;
|
|
3266
|
+
/**
|
|
3267
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
|
|
3268
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
|
|
3269
|
+
*/
|
|
2228
3270
|
col: ColHTMLAttributes<HTMLTableColElement>;
|
|
3271
|
+
/**
|
|
3272
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
|
|
3273
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
|
|
3274
|
+
*/
|
|
2229
3275
|
colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
2230
|
-
|
|
3276
|
+
/**
|
|
3277
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
|
|
3278
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
|
|
3279
|
+
*/
|
|
3280
|
+
data: DataHTMLAttributes<HTMLDataElement>;
|
|
3281
|
+
/**
|
|
3282
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
|
|
3283
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
|
|
3284
|
+
*/
|
|
2231
3285
|
datalist: HTMLAttributes<HTMLDataListElement>;
|
|
3286
|
+
/**
|
|
3287
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
|
|
3288
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3289
|
+
*/
|
|
2232
3290
|
dd: HTMLAttributes<HTMLElement>;
|
|
2233
|
-
|
|
3291
|
+
/**
|
|
3292
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
|
|
3293
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
|
|
3294
|
+
*/
|
|
3295
|
+
del: ModHTMLAttributes<HTMLModElement>;
|
|
3296
|
+
/**
|
|
3297
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
|
|
3298
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
|
|
3299
|
+
*/
|
|
2234
3300
|
details: DetailsHtmlAttributes<HTMLDetailsElement>;
|
|
3301
|
+
/**
|
|
3302
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
|
|
3303
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3304
|
+
*/
|
|
2235
3305
|
dfn: HTMLAttributes<HTMLElement>;
|
|
3306
|
+
/**
|
|
3307
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
|
|
3308
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
|
|
3309
|
+
*/
|
|
2236
3310
|
dialog: DialogHtmlAttributes<HTMLDialogElement>;
|
|
3311
|
+
/**
|
|
3312
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
|
|
3313
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
|
|
3314
|
+
*/
|
|
2237
3315
|
div: HTMLAttributes<HTMLDivElement>;
|
|
3316
|
+
/**
|
|
3317
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
|
|
3318
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
|
|
3319
|
+
*/
|
|
2238
3320
|
dl: HTMLAttributes<HTMLDListElement>;
|
|
3321
|
+
/**
|
|
3322
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
|
|
3323
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3324
|
+
*/
|
|
2239
3325
|
dt: HTMLAttributes<HTMLElement>;
|
|
3326
|
+
/**
|
|
3327
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
|
|
3328
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3329
|
+
*/
|
|
2240
3330
|
em: HTMLAttributes<HTMLElement>;
|
|
3331
|
+
/**
|
|
3332
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
|
|
3333
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
|
|
3334
|
+
*/
|
|
2241
3335
|
embed: EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
3336
|
+
/**
|
|
3337
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
|
|
3338
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
|
|
3339
|
+
*/
|
|
2242
3340
|
fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
3341
|
+
/**
|
|
3342
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
|
|
3343
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3344
|
+
*/
|
|
2243
3345
|
figcaption: HTMLAttributes<HTMLElement>;
|
|
3346
|
+
/**
|
|
3347
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
|
|
3348
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3349
|
+
*/
|
|
2244
3350
|
figure: HTMLAttributes<HTMLElement>;
|
|
3351
|
+
/**
|
|
3352
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
|
|
3353
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3354
|
+
*/
|
|
2245
3355
|
footer: HTMLAttributes<HTMLElement>;
|
|
3356
|
+
/**
|
|
3357
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
|
|
3358
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
|
|
3359
|
+
*/
|
|
2246
3360
|
form: FormHTMLAttributes<HTMLFormElement>;
|
|
3361
|
+
/**
|
|
3362
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
|
|
3363
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3364
|
+
*/
|
|
2247
3365
|
h1: HTMLAttributes<HTMLHeadingElement>;
|
|
3366
|
+
/**
|
|
3367
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
|
|
3368
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3369
|
+
*/
|
|
2248
3370
|
h2: HTMLAttributes<HTMLHeadingElement>;
|
|
3371
|
+
/**
|
|
3372
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
|
|
3373
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3374
|
+
*/
|
|
2249
3375
|
h3: HTMLAttributes<HTMLHeadingElement>;
|
|
3376
|
+
/**
|
|
3377
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
|
|
3378
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3379
|
+
*/
|
|
2250
3380
|
h4: HTMLAttributes<HTMLHeadingElement>;
|
|
3381
|
+
/**
|
|
3382
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
|
|
3383
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3384
|
+
*/
|
|
2251
3385
|
h5: HTMLAttributes<HTMLHeadingElement>;
|
|
3386
|
+
/**
|
|
3387
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
|
|
3388
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3389
|
+
*/
|
|
2252
3390
|
h6: HTMLAttributes<HTMLHeadingElement>;
|
|
3391
|
+
/**
|
|
3392
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
|
|
3393
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
|
|
3394
|
+
*/
|
|
2253
3395
|
head: HTMLAttributes<HTMLHeadElement>;
|
|
3396
|
+
/**
|
|
3397
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
|
|
3398
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3399
|
+
*/
|
|
2254
3400
|
header: HTMLAttributes<HTMLElement>;
|
|
3401
|
+
/**
|
|
3402
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
|
|
3403
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3404
|
+
*/
|
|
2255
3405
|
hgroup: HTMLAttributes<HTMLElement>;
|
|
3406
|
+
/**
|
|
3407
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
|
|
3408
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
|
|
3409
|
+
*/
|
|
2256
3410
|
hr: HTMLAttributes<HTMLHRElement>;
|
|
3411
|
+
/**
|
|
3412
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
|
|
3413
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
|
|
3414
|
+
*/
|
|
2257
3415
|
html: HTMLAttributes<HTMLHtmlElement>;
|
|
3416
|
+
/**
|
|
3417
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
|
|
3418
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3419
|
+
*/
|
|
2258
3420
|
i: HTMLAttributes<HTMLElement>;
|
|
3421
|
+
/**
|
|
3422
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
|
|
3423
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
|
|
3424
|
+
*/
|
|
2259
3425
|
iframe: IframeHTMLAttributes<HTMLIFrameElement>;
|
|
3426
|
+
/**
|
|
3427
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
3428
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
|
|
3429
|
+
*/
|
|
2260
3430
|
img: ImgHTMLAttributes<HTMLImageElement>;
|
|
3431
|
+
/**
|
|
3432
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
|
|
3433
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
|
|
3434
|
+
*/
|
|
2261
3435
|
input: InputHTMLAttributes<HTMLInputElement>;
|
|
2262
|
-
|
|
3436
|
+
/**
|
|
3437
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
|
|
3438
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
|
|
3439
|
+
*/
|
|
3440
|
+
ins: ModHTMLAttributes<HTMLModElement>;
|
|
3441
|
+
/**
|
|
3442
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
|
|
3443
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3444
|
+
*/
|
|
2263
3445
|
kbd: HTMLAttributes<HTMLElement>;
|
|
3446
|
+
/**
|
|
3447
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
3448
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
|
|
3449
|
+
*/
|
|
2264
3450
|
label: LabelHTMLAttributes<HTMLLabelElement>;
|
|
3451
|
+
/**
|
|
3452
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
|
|
3453
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
|
|
3454
|
+
*/
|
|
2265
3455
|
legend: HTMLAttributes<HTMLLegendElement>;
|
|
3456
|
+
/**
|
|
3457
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
|
|
3458
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
|
|
3459
|
+
*/
|
|
2266
3460
|
li: LiHTMLAttributes<HTMLLIElement>;
|
|
3461
|
+
/**
|
|
3462
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
|
|
3463
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
|
|
3464
|
+
*/
|
|
2267
3465
|
link: LinkHTMLAttributes<HTMLLinkElement>;
|
|
3466
|
+
/**
|
|
3467
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
|
|
3468
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3469
|
+
*/
|
|
2268
3470
|
main: HTMLAttributes<HTMLElement>;
|
|
3471
|
+
/**
|
|
3472
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
|
|
3473
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
|
|
3474
|
+
*/
|
|
2269
3475
|
map: MapHTMLAttributes<HTMLMapElement>;
|
|
3476
|
+
/**
|
|
3477
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
|
|
3478
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3479
|
+
*/
|
|
2270
3480
|
mark: HTMLAttributes<HTMLElement>;
|
|
3481
|
+
/**
|
|
3482
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
|
|
3483
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
|
|
3484
|
+
*/
|
|
2271
3485
|
menu: MenuHTMLAttributes<HTMLMenuElement>;
|
|
3486
|
+
/**
|
|
3487
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
|
|
3488
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
|
|
3489
|
+
*/
|
|
2272
3490
|
meta: MetaHTMLAttributes<HTMLMetaElement>;
|
|
2273
|
-
|
|
3491
|
+
/**
|
|
3492
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
|
|
3493
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
|
|
3494
|
+
*/
|
|
3495
|
+
meter: MeterHTMLAttributes<HTMLMeterElement>;
|
|
3496
|
+
/**
|
|
3497
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
|
|
3498
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3499
|
+
*/
|
|
2274
3500
|
nav: HTMLAttributes<HTMLElement>;
|
|
3501
|
+
/**
|
|
3502
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
|
|
3503
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3504
|
+
*/
|
|
2275
3505
|
noscript: HTMLAttributes<HTMLElement>;
|
|
3506
|
+
/**
|
|
3507
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
|
|
3508
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
|
|
3509
|
+
*/
|
|
2276
3510
|
object: ObjectHTMLAttributes<HTMLObjectElement>;
|
|
3511
|
+
/**
|
|
3512
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
|
3513
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
|
|
3514
|
+
*/
|
|
2277
3515
|
ol: OlHTMLAttributes<HTMLOListElement>;
|
|
3516
|
+
/**
|
|
3517
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
|
|
3518
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
|
|
3519
|
+
*/
|
|
2278
3520
|
optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
3521
|
+
/**
|
|
3522
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
|
3523
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
|
|
3524
|
+
*/
|
|
2279
3525
|
option: OptionHTMLAttributes<HTMLOptionElement>;
|
|
2280
|
-
|
|
3526
|
+
/**
|
|
3527
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
|
|
3528
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
|
|
3529
|
+
*/
|
|
3530
|
+
output: OutputHTMLAttributes<HTMLOutputElement>;
|
|
3531
|
+
/**
|
|
3532
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
|
|
3533
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
|
|
3534
|
+
*/
|
|
2281
3535
|
p: HTMLAttributes<HTMLParagraphElement>;
|
|
2282
|
-
|
|
3536
|
+
/**
|
|
3537
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
|
|
3538
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
|
|
3539
|
+
*/
|
|
3540
|
+
picture: HTMLAttributes<HTMLPictureElement>;
|
|
3541
|
+
/**
|
|
3542
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
|
|
3543
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
|
|
3544
|
+
*/
|
|
2283
3545
|
pre: HTMLAttributes<HTMLPreElement>;
|
|
3546
|
+
/**
|
|
3547
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
|
|
3548
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
|
|
3549
|
+
*/
|
|
2284
3550
|
progress: ProgressHTMLAttributes<HTMLProgressElement>;
|
|
3551
|
+
/**
|
|
3552
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
|
|
3553
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
|
|
3554
|
+
*/
|
|
2285
3555
|
q: QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
3556
|
+
/**
|
|
3557
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
|
|
3558
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3559
|
+
*/
|
|
2286
3560
|
rp: HTMLAttributes<HTMLElement>;
|
|
3561
|
+
/**
|
|
3562
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
|
|
3563
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3564
|
+
*/
|
|
2287
3565
|
rt: HTMLAttributes<HTMLElement>;
|
|
3566
|
+
/**
|
|
3567
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
|
|
3568
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3569
|
+
*/
|
|
2288
3570
|
ruby: HTMLAttributes<HTMLElement>;
|
|
3571
|
+
/**
|
|
3572
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
|
|
3573
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3574
|
+
*/
|
|
2289
3575
|
s: HTMLAttributes<HTMLElement>;
|
|
3576
|
+
/**
|
|
3577
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
|
|
3578
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3579
|
+
*/
|
|
2290
3580
|
samp: HTMLAttributes<HTMLElement>;
|
|
3581
|
+
/**
|
|
3582
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
|
|
3583
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
|
|
3584
|
+
*/
|
|
2291
3585
|
script: ScriptHTMLAttributes<HTMLScriptElement>;
|
|
3586
|
+
/**
|
|
3587
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
|
|
3588
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3589
|
+
*/
|
|
2292
3590
|
search: HTMLAttributes<HTMLElement>;
|
|
3591
|
+
/**
|
|
3592
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
|
|
3593
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3594
|
+
*/
|
|
2293
3595
|
section: HTMLAttributes<HTMLElement>;
|
|
3596
|
+
/**
|
|
3597
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
|
|
3598
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
|
|
3599
|
+
*/
|
|
2294
3600
|
select: SelectHTMLAttributes<HTMLSelectElement>;
|
|
2295
|
-
|
|
3601
|
+
/**
|
|
3602
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
|
|
3603
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
|
|
3604
|
+
*/
|
|
3605
|
+
slot: HTMLSlotElementAttributes<HTMLSlotElement>;
|
|
3606
|
+
/**
|
|
3607
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
|
|
3608
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3609
|
+
*/
|
|
2296
3610
|
small: HTMLAttributes<HTMLElement>;
|
|
3611
|
+
/**
|
|
3612
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
|
|
3613
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
|
|
3614
|
+
*/
|
|
2297
3615
|
source: SourceHTMLAttributes<HTMLSourceElement>;
|
|
3616
|
+
/**
|
|
3617
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
|
|
3618
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
|
|
3619
|
+
*/
|
|
2298
3620
|
span: HTMLAttributes<HTMLSpanElement>;
|
|
3621
|
+
/**
|
|
3622
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
|
|
3623
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3624
|
+
*/
|
|
2299
3625
|
strong: HTMLAttributes<HTMLElement>;
|
|
3626
|
+
/**
|
|
3627
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
|
|
3628
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
|
|
3629
|
+
*/
|
|
2300
3630
|
style: StyleHTMLAttributes<HTMLStyleElement>;
|
|
3631
|
+
/**
|
|
3632
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
|
|
3633
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3634
|
+
*/
|
|
2301
3635
|
sub: HTMLAttributes<HTMLElement>;
|
|
3636
|
+
/**
|
|
3637
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
|
|
3638
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3639
|
+
*/
|
|
2302
3640
|
summary: HTMLAttributes<HTMLElement>;
|
|
3641
|
+
/**
|
|
3642
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
|
|
3643
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3644
|
+
*/
|
|
2303
3645
|
sup: HTMLAttributes<HTMLElement>;
|
|
3646
|
+
/**
|
|
3647
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
|
|
3648
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
|
|
3649
|
+
*/
|
|
2304
3650
|
table: HTMLAttributes<HTMLTableElement>;
|
|
3651
|
+
/**
|
|
3652
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
|
|
3653
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3654
|
+
*/
|
|
2305
3655
|
tbody: HTMLAttributes<HTMLTableSectionElement>;
|
|
3656
|
+
/**
|
|
3657
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
|
|
3658
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
|
|
3659
|
+
*/
|
|
2306
3660
|
td: TdHTMLAttributes<HTMLTableCellElement>;
|
|
3661
|
+
/**
|
|
3662
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
|
|
3663
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
|
|
3664
|
+
*/
|
|
2307
3665
|
template: TemplateHTMLAttributes<HTMLTemplateElement>;
|
|
3666
|
+
/**
|
|
3667
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
|
|
3668
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
|
|
3669
|
+
*/
|
|
2308
3670
|
textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
3671
|
+
/**
|
|
3672
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
|
|
3673
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3674
|
+
*/
|
|
2309
3675
|
tfoot: HTMLAttributes<HTMLTableSectionElement>;
|
|
3676
|
+
/**
|
|
3677
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
3678
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
|
|
3679
|
+
*/
|
|
2310
3680
|
th: ThHTMLAttributes<HTMLTableCellElement>;
|
|
3681
|
+
/**
|
|
3682
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
|
|
3683
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3684
|
+
*/
|
|
2311
3685
|
thead: HTMLAttributes<HTMLTableSectionElement>;
|
|
2312
|
-
|
|
3686
|
+
/**
|
|
3687
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
|
|
3688
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
|
|
3689
|
+
*/
|
|
3690
|
+
time: TimeHTMLAttributes<HTMLTimeElement>;
|
|
3691
|
+
/**
|
|
3692
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
|
|
3693
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
|
|
3694
|
+
*/
|
|
2313
3695
|
title: HTMLAttributes<HTMLTitleElement>;
|
|
3696
|
+
/**
|
|
3697
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
|
|
3698
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
|
|
3699
|
+
*/
|
|
2314
3700
|
tr: HTMLAttributes<HTMLTableRowElement>;
|
|
3701
|
+
/**
|
|
3702
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
|
|
3703
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
|
|
3704
|
+
*/
|
|
2315
3705
|
track: TrackHTMLAttributes<HTMLTrackElement>;
|
|
3706
|
+
/**
|
|
3707
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
|
|
3708
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3709
|
+
*/
|
|
2316
3710
|
u: HTMLAttributes<HTMLElement>;
|
|
3711
|
+
/**
|
|
3712
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
|
|
3713
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
|
|
3714
|
+
*/
|
|
2317
3715
|
ul: HTMLAttributes<HTMLUListElement>;
|
|
3716
|
+
/**
|
|
3717
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
|
|
3718
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3719
|
+
*/
|
|
2318
3720
|
var: HTMLAttributes<HTMLElement>;
|
|
3721
|
+
/**
|
|
3722
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
|
|
3723
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
|
|
3724
|
+
*/
|
|
2319
3725
|
video: VideoHTMLAttributes<HTMLVideoElement>;
|
|
3726
|
+
/**
|
|
3727
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
|
|
3728
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3729
|
+
*/
|
|
2320
3730
|
wbr: HTMLAttributes<HTMLElement>;
|
|
3731
|
+
/** @url https://www.electronjs.org/docs/latest/api/webview-tag */
|
|
3732
|
+
webview: WebViewHTMLAttributes<HTMLElement>;
|
|
2321
3733
|
}
|
|
2322
3734
|
/** @type {HTMLElementDeprecatedTagNameMap} */
|
|
2323
3735
|
interface HTMLElementDeprecatedTags {
|
|
3736
|
+
/**
|
|
3737
|
+
* @deprecated
|
|
3738
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
|
|
3739
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3740
|
+
*/
|
|
2324
3741
|
big: HTMLAttributes<HTMLElement>;
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
3742
|
+
/**
|
|
3743
|
+
* @deprecated
|
|
3744
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
|
|
3745
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
|
|
3746
|
+
*/
|
|
3747
|
+
keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
|
|
3748
|
+
/**
|
|
3749
|
+
* @deprecated
|
|
3750
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
|
|
3751
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
|
|
3752
|
+
*/
|
|
3753
|
+
menuitem: HTMLAttributes<HTMLUnknownElement>;
|
|
3754
|
+
/**
|
|
3755
|
+
* @deprecated
|
|
3756
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/xxxxx
|
|
3757
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
|
|
3758
|
+
*/
|
|
3759
|
+
noindex: HTMLAttributes<HTMLUnknownElement>;
|
|
3760
|
+
/**
|
|
3761
|
+
* @deprecated
|
|
3762
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
|
|
3763
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
|
|
3764
|
+
*/
|
|
2328
3765
|
param: ParamHTMLAttributes<HTMLParamElement>;
|
|
2329
3766
|
}
|
|
2330
3767
|
/** @type {SVGElementTagNameMap} */
|
|
2331
3768
|
interface SVGElementTags {
|
|
3769
|
+
/**
|
|
3770
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
|
|
3771
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
|
|
3772
|
+
*/
|
|
2332
3773
|
animate: AnimateSVGAttributes<SVGAnimateElement>;
|
|
3774
|
+
/**
|
|
3775
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
|
|
3776
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
|
|
3777
|
+
*/
|
|
2333
3778
|
animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
|
|
3779
|
+
/**
|
|
3780
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
|
|
3781
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
|
|
3782
|
+
*/
|
|
2334
3783
|
animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
|
|
3784
|
+
/**
|
|
3785
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
|
|
3786
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
|
|
3787
|
+
*/
|
|
2335
3788
|
circle: CircleSVGAttributes<SVGCircleElement>;
|
|
3789
|
+
/**
|
|
3790
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
|
|
3791
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
|
|
3792
|
+
*/
|
|
2336
3793
|
clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
|
|
3794
|
+
/**
|
|
3795
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
|
|
3796
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
|
|
3797
|
+
*/
|
|
2337
3798
|
defs: DefsSVGAttributes<SVGDefsElement>;
|
|
3799
|
+
/**
|
|
3800
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
|
|
3801
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
|
|
3802
|
+
*/
|
|
2338
3803
|
desc: DescSVGAttributes<SVGDescElement>;
|
|
3804
|
+
/**
|
|
3805
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
|
|
3806
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
|
|
3807
|
+
*/
|
|
2339
3808
|
ellipse: EllipseSVGAttributes<SVGEllipseElement>;
|
|
3809
|
+
/**
|
|
3810
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
|
|
3811
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
|
|
3812
|
+
*/
|
|
2340
3813
|
feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
|
|
3814
|
+
/**
|
|
3815
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
|
|
3816
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
|
|
3817
|
+
*/
|
|
2341
3818
|
feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
|
|
3819
|
+
/**
|
|
3820
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
|
|
3821
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
|
|
3822
|
+
*/
|
|
2342
3823
|
feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
|
|
3824
|
+
/**
|
|
3825
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
|
|
3826
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
|
|
3827
|
+
*/
|
|
2343
3828
|
feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
|
|
3829
|
+
/**
|
|
3830
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
|
|
3831
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
|
|
3832
|
+
*/
|
|
2344
3833
|
feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
|
|
3834
|
+
/**
|
|
3835
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
|
|
3836
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
|
|
3837
|
+
*/
|
|
2345
3838
|
feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
|
|
3839
|
+
/**
|
|
3840
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
|
|
3841
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
|
|
3842
|
+
*/
|
|
2346
3843
|
feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
|
|
3844
|
+
/**
|
|
3845
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
|
|
3846
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
|
|
3847
|
+
*/
|
|
2347
3848
|
feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
|
|
3849
|
+
/**
|
|
3850
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
|
|
3851
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
|
|
3852
|
+
*/
|
|
2348
3853
|
feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
|
|
3854
|
+
/**
|
|
3855
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
|
|
3856
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
|
|
3857
|
+
*/
|
|
2349
3858
|
feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
|
|
3859
|
+
/**
|
|
3860
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
|
|
3861
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
|
|
3862
|
+
*/
|
|
2350
3863
|
feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
|
|
3864
|
+
/**
|
|
3865
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
|
|
3866
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
|
|
3867
|
+
*/
|
|
2351
3868
|
feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
|
|
3869
|
+
/**
|
|
3870
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
|
|
3871
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
|
|
3872
|
+
*/
|
|
2352
3873
|
feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
|
|
3874
|
+
/**
|
|
3875
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
|
|
3876
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
|
|
3877
|
+
*/
|
|
2353
3878
|
feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
|
|
3879
|
+
/**
|
|
3880
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
|
|
3881
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
|
|
3882
|
+
*/
|
|
2354
3883
|
feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
|
|
3884
|
+
/**
|
|
3885
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
|
|
3886
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
|
|
3887
|
+
*/
|
|
2355
3888
|
feImage: FeImageSVGAttributes<SVGFEImageElement>;
|
|
3889
|
+
/**
|
|
3890
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
|
|
3891
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
|
|
3892
|
+
*/
|
|
2356
3893
|
feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
|
|
3894
|
+
/**
|
|
3895
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
|
|
3896
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
|
|
3897
|
+
*/
|
|
2357
3898
|
feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
|
|
3899
|
+
/**
|
|
3900
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
|
|
3901
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
|
|
3902
|
+
*/
|
|
2358
3903
|
feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
|
|
3904
|
+
/**
|
|
3905
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
|
|
3906
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
|
|
3907
|
+
*/
|
|
2359
3908
|
feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
|
|
3909
|
+
/**
|
|
3910
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
|
|
3911
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
|
|
3912
|
+
*/
|
|
2360
3913
|
fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
|
|
3914
|
+
/**
|
|
3915
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
|
|
3916
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
|
|
3917
|
+
*/
|
|
2361
3918
|
feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
|
|
3919
|
+
/**
|
|
3920
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
|
|
3921
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
|
|
3922
|
+
*/
|
|
2362
3923
|
feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
|
|
3924
|
+
/**
|
|
3925
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
|
|
3926
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
|
|
3927
|
+
*/
|
|
2363
3928
|
feTile: FeTileSVGAttributes<SVGFETileElement>;
|
|
3929
|
+
/**
|
|
3930
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
|
|
3931
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
|
|
3932
|
+
*/
|
|
2364
3933
|
feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
|
|
3934
|
+
/**
|
|
3935
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
|
|
3936
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
|
|
3937
|
+
*/
|
|
2365
3938
|
filter: FilterSVGAttributes<SVGFilterElement>;
|
|
3939
|
+
/**
|
|
3940
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
|
|
3941
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
|
|
3942
|
+
*/
|
|
2366
3943
|
foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
|
|
3944
|
+
/**
|
|
3945
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
|
|
3946
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
|
|
3947
|
+
*/
|
|
2367
3948
|
g: GSVGAttributes<SVGGElement>;
|
|
3949
|
+
/**
|
|
3950
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
|
|
3951
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
|
|
3952
|
+
*/
|
|
2368
3953
|
image: ImageSVGAttributes<SVGImageElement>;
|
|
3954
|
+
/**
|
|
3955
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
|
|
3956
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
|
|
3957
|
+
*/
|
|
2369
3958
|
line: LineSVGAttributes<SVGLineElement>;
|
|
3959
|
+
/**
|
|
3960
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
|
|
3961
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
|
|
3962
|
+
*/
|
|
2370
3963
|
linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
|
|
3964
|
+
/**
|
|
3965
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
|
|
3966
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
|
|
3967
|
+
*/
|
|
2371
3968
|
marker: MarkerSVGAttributes<SVGMarkerElement>;
|
|
3969
|
+
/**
|
|
3970
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
|
|
3971
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
|
|
3972
|
+
*/
|
|
2372
3973
|
mask: MaskSVGAttributes<SVGMaskElement>;
|
|
3974
|
+
/**
|
|
3975
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
|
|
3976
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
|
|
3977
|
+
*/
|
|
2373
3978
|
metadata: MetadataSVGAttributes<SVGMetadataElement>;
|
|
3979
|
+
/**
|
|
3980
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
|
|
3981
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
|
|
3982
|
+
*/
|
|
2374
3983
|
mpath: MPathSVGAttributes<SVGMPathElement>;
|
|
3984
|
+
/**
|
|
3985
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
|
|
3986
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
|
|
3987
|
+
*/
|
|
2375
3988
|
path: PathSVGAttributes<SVGPathElement>;
|
|
3989
|
+
/**
|
|
3990
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
|
|
3991
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
|
|
3992
|
+
*/
|
|
2376
3993
|
pattern: PatternSVGAttributes<SVGPatternElement>;
|
|
3994
|
+
/**
|
|
3995
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
|
|
3996
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
|
|
3997
|
+
*/
|
|
2377
3998
|
polygon: PolygonSVGAttributes<SVGPolygonElement>;
|
|
3999
|
+
/**
|
|
4000
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
|
|
4001
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
|
|
4002
|
+
*/
|
|
2378
4003
|
polyline: PolylineSVGAttributes<SVGPolylineElement>;
|
|
4004
|
+
/**
|
|
4005
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
|
|
4006
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
|
|
4007
|
+
*/
|
|
2379
4008
|
radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
|
|
4009
|
+
/**
|
|
4010
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
|
|
4011
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
|
|
4012
|
+
*/
|
|
2380
4013
|
rect: RectSVGAttributes<SVGRectElement>;
|
|
4014
|
+
/**
|
|
4015
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
|
|
4016
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
|
|
4017
|
+
*/
|
|
2381
4018
|
set: SetSVGAttributes<SVGSetElement>;
|
|
4019
|
+
/**
|
|
4020
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
|
|
4021
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
|
|
4022
|
+
*/
|
|
2382
4023
|
stop: StopSVGAttributes<SVGStopElement>;
|
|
4024
|
+
/**
|
|
4025
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
|
|
4026
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
|
|
4027
|
+
*/
|
|
2383
4028
|
svg: SvgSVGAttributes<SVGSVGElement>;
|
|
4029
|
+
/**
|
|
4030
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
|
|
4031
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
|
|
4032
|
+
*/
|
|
2384
4033
|
switch: SwitchSVGAttributes<SVGSwitchElement>;
|
|
4034
|
+
/**
|
|
4035
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
|
|
4036
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
|
|
4037
|
+
*/
|
|
2385
4038
|
symbol: SymbolSVGAttributes<SVGSymbolElement>;
|
|
4039
|
+
/**
|
|
4040
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
|
|
4041
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
|
|
4042
|
+
*/
|
|
2386
4043
|
text: TextSVGAttributes<SVGTextElement>;
|
|
4044
|
+
/**
|
|
4045
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
|
|
4046
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
|
|
4047
|
+
*/
|
|
2387
4048
|
textPath: TextPathSVGAttributes<SVGTextPathElement>;
|
|
4049
|
+
/**
|
|
4050
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
|
|
4051
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
|
|
4052
|
+
*/
|
|
2388
4053
|
tspan: TSpanSVGAttributes<SVGTSpanElement>;
|
|
4054
|
+
/**
|
|
4055
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
|
|
4056
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
|
|
4057
|
+
*/
|
|
2389
4058
|
use: UseSVGAttributes<SVGUseElement>;
|
|
4059
|
+
/**
|
|
4060
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
|
|
4061
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
|
|
4062
|
+
*/
|
|
2390
4063
|
view: ViewSVGAttributes<SVGViewElement>;
|
|
2391
4064
|
}
|
|
2392
|
-
|
|
4065
|
+
|
|
4066
|
+
interface MathMLElementTags {
|
|
4067
|
+
/**
|
|
4068
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
|
|
4069
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4070
|
+
*/
|
|
4071
|
+
annotation: MathMLAnnotationElementAttributes<MathMLElement>;
|
|
4072
|
+
/**
|
|
4073
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
|
|
4074
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4075
|
+
*/
|
|
4076
|
+
"annotation-xml": MathMLAnnotationXmlElementAttributes<MathMLElement>;
|
|
4077
|
+
/**
|
|
4078
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
|
|
4079
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4080
|
+
*/
|
|
4081
|
+
math: MathMLMathElementAttributes<MathMLElement>;
|
|
4082
|
+
/**
|
|
4083
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
|
|
4084
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4085
|
+
*/
|
|
4086
|
+
merror: MathMLMerrorElementAttributes<MathMLElement>;
|
|
4087
|
+
/**
|
|
4088
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
|
|
4089
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4090
|
+
*/
|
|
4091
|
+
mfrac: MathMLMfracElementAttributes<MathMLElement>;
|
|
4092
|
+
/**
|
|
4093
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
|
|
4094
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4095
|
+
*/
|
|
4096
|
+
mi: MathMLMiElementAttributes<MathMLElement>;
|
|
4097
|
+
/**
|
|
4098
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
|
|
4099
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4100
|
+
*/
|
|
4101
|
+
mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
|
|
4102
|
+
/**
|
|
4103
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
|
|
4104
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4105
|
+
*/
|
|
4106
|
+
mn: MathMLMnElementAttributes<MathMLElement>;
|
|
4107
|
+
/**
|
|
4108
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
|
|
4109
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4110
|
+
*/
|
|
4111
|
+
mo: MathMLMoElementAttributes<MathMLElement>;
|
|
4112
|
+
/**
|
|
4113
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
|
|
4114
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4115
|
+
*/
|
|
4116
|
+
mover: MathMLMoverElementAttributes<MathMLElement>;
|
|
4117
|
+
/**
|
|
4118
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
|
|
4119
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4120
|
+
*/
|
|
4121
|
+
mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
|
|
4122
|
+
/**
|
|
4123
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
|
|
4124
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4125
|
+
*/
|
|
4126
|
+
mphantom: MathMLMphantomElementAttributes<MathMLElement>;
|
|
4127
|
+
/**
|
|
4128
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
|
|
4129
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4130
|
+
*/
|
|
4131
|
+
mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
|
|
4132
|
+
/**
|
|
4133
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
|
|
4134
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4135
|
+
*/
|
|
4136
|
+
mroot: MathMLMrootElementAttributes<MathMLElement>;
|
|
4137
|
+
/**
|
|
4138
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
|
|
4139
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4140
|
+
*/
|
|
4141
|
+
mrow: MathMLMrowElementAttributes<MathMLElement>;
|
|
4142
|
+
/**
|
|
4143
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
|
|
4144
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4145
|
+
*/
|
|
4146
|
+
ms: MathMLMsElementAttributes<MathMLElement>;
|
|
4147
|
+
/**
|
|
4148
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
|
|
4149
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4150
|
+
*/
|
|
4151
|
+
mspace: MathMLMspaceElementAttributes<MathMLElement>;
|
|
4152
|
+
/**
|
|
4153
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
|
|
4154
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4155
|
+
*/
|
|
4156
|
+
msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
|
|
4157
|
+
/**
|
|
4158
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
|
|
4159
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4160
|
+
*/
|
|
4161
|
+
mstyle: MathMLMstyleElementAttributes<MathMLElement>;
|
|
4162
|
+
/**
|
|
4163
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
|
|
4164
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4165
|
+
*/
|
|
4166
|
+
msub: MathMLMsubElementAttributes<MathMLElement>;
|
|
4167
|
+
/**
|
|
4168
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
|
|
4169
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4170
|
+
*/
|
|
4171
|
+
msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
|
|
4172
|
+
/**
|
|
4173
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
|
|
4174
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4175
|
+
*/
|
|
4176
|
+
msup: MathMLMsupElementAttributes<MathMLElement>;
|
|
4177
|
+
/**
|
|
4178
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
|
|
4179
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4180
|
+
*/
|
|
4181
|
+
mtable: MathMLMtableElementAttributes<MathMLElement>;
|
|
4182
|
+
/**
|
|
4183
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
|
|
4184
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4185
|
+
*/
|
|
4186
|
+
mtd: MathMLMtdElementAttributes<MathMLElement>;
|
|
4187
|
+
/**
|
|
4188
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
|
|
4189
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4190
|
+
*/
|
|
4191
|
+
mtext: MathMLMtextElementAttributes<MathMLElement>;
|
|
4192
|
+
/**
|
|
4193
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
|
|
4194
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4195
|
+
*/
|
|
4196
|
+
mtr: MathMLMtrElementAttributes<MathMLElement>;
|
|
4197
|
+
/**
|
|
4198
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
|
|
4199
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4200
|
+
*/
|
|
4201
|
+
munder: MathMLMunderElementAttributes<MathMLElement>;
|
|
4202
|
+
/**
|
|
4203
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
|
|
4204
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4205
|
+
*/
|
|
4206
|
+
munderover: MathMLMunderoverElementAttributes<MathMLElement>;
|
|
4207
|
+
/**
|
|
4208
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
|
|
4209
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4210
|
+
*/
|
|
4211
|
+
semantics: MathMLSemanticsElementAttributes<MathMLElement>;
|
|
4212
|
+
/**
|
|
4213
|
+
* @non-standard
|
|
4214
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
|
|
4215
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4216
|
+
*/
|
|
4217
|
+
menclose: MathMLMencloseElementAttributes<MathMLElement>;
|
|
4218
|
+
/**
|
|
4219
|
+
* @deprecated
|
|
4220
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
|
|
4221
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4222
|
+
*/
|
|
4223
|
+
maction: MathMLMactionElementAttributes<MathMLElement>;
|
|
4224
|
+
/**
|
|
4225
|
+
* @deprecated
|
|
4226
|
+
* @non-standard
|
|
4227
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
|
|
4228
|
+
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4229
|
+
*/
|
|
4230
|
+
mfenced: MathMLMfencedElementAttributes<MathMLElement>;
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
interface IntrinsicElements
|
|
4234
|
+
extends HTMLElementTags,
|
|
4235
|
+
HTMLElementDeprecatedTags,
|
|
4236
|
+
SVGElementTags,
|
|
4237
|
+
MathMLElementTags {}
|
|
2393
4238
|
}
|