vasille-web 3.1.5 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -17
- package/fake-types/index.d.ts +233 -47
- package/lib/bin.js +33 -0
- package/lib/index.js +63 -4
- package/package.json +13 -8
- package/spec/css.d.ts +3 -3
- package/spec/html.d.ts +251 -376
- package/types/bin.d.ts +2 -0
- package/types/index.d.ts +15 -4
- package/types/jsx-runtime.d.ts +114 -114
package/spec/html.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export type EventHandler<T> = (ev: T) => any;
|
|
2
2
|
|
|
3
|
-
export interface Tag<Attrs, Events> {
|
|
3
|
+
export interface Tag<Attrs, Events, Props> {
|
|
4
4
|
attrs: Attrs;
|
|
5
5
|
events: Events;
|
|
6
|
+
props: Props;
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
type TagEvents = {
|
|
@@ -274,6 +275,7 @@ interface InputAttrs extends TagAttrs {
|
|
|
274
275
|
src: string;
|
|
275
276
|
step: string;
|
|
276
277
|
type: string;
|
|
278
|
+
value: string;
|
|
277
279
|
width: number;
|
|
278
280
|
}
|
|
279
281
|
|
|
@@ -359,219 +361,212 @@ interface DetailsAttrs extends TagAttrs {
|
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
export interface HtmlTagMap {
|
|
362
|
-
a: Tag<AAttrs, TagEvents>;
|
|
363
|
-
abbr: Tag<TagAttrs, TagEvents
|
|
364
|
-
address: Tag<TagAttrs, TagEvents
|
|
365
|
-
area: Tag<AreaAttrs, TagEvents>;
|
|
366
|
-
article: Tag<TagAttrs, TagEvents
|
|
367
|
-
aside: Tag<TagAttrs, TagEvents
|
|
368
|
-
audio: Tag<MediaTagAttrs, MediaEvents
|
|
369
|
-
b: Tag<TagAttrs, TagEvents
|
|
370
|
-
base: Tag<BaseAttrs, TagEvents>;
|
|
371
|
-
bdi: Tag<TagAttrs, TagEvents
|
|
372
|
-
bdo: Tag<BdoAttrs, TagEvents
|
|
373
|
-
blockquote: Tag<BlockQuoteAttrs, TagEvents>;
|
|
374
|
-
body: Tag<TagAttrs, BodyEvents
|
|
375
|
-
br: Tag<TagAttrs, TagEvents
|
|
376
|
-
button: Tag<ButtonAttrs, TagEvents>;
|
|
377
|
-
canvas: Tag<TagAttrs, TagEvents>;
|
|
378
|
-
caption: Tag<TagAttrs, TagEvents
|
|
379
|
-
cite: Tag<TagAttrs, TagEvents
|
|
380
|
-
code: Tag<TagAttrs, TagEvents
|
|
381
|
-
col: Tag<ColAttrs, TagEvents>;
|
|
382
|
-
colgroup: Tag<ColAttrs, TagEvents>;
|
|
383
|
-
data: Tag<DataAttr, TagEvents>;
|
|
384
|
-
datalist: Tag<TagAttrs, TagEvents
|
|
385
|
-
dd: Tag<TagAttrs, TagEvents
|
|
386
|
-
del: Tag<TagAttrs, TagEvents
|
|
387
|
-
details: Tag<DetailsAttrs, TagEvents>;
|
|
388
|
-
dfn: Tag<TagAttrs, TagEvents
|
|
389
|
-
dialog: Tag<TagAttrs, TagEvents
|
|
390
|
-
dir: Tag<TagAttrs, TagEvents
|
|
391
|
-
div: Tag<TagAttrs, TagEvents
|
|
392
|
-
dl: Tag<TagAttrs, TagEvents
|
|
393
|
-
dt: Tag<TagAttrs, TagEvents
|
|
394
|
-
em: Tag<TagAttrs, TagEvents
|
|
395
|
-
embed: Tag<EmbedAttrs, TagEvents>;
|
|
396
|
-
fieldset: Tag<FieldsetAttrs, TagEvents>;
|
|
397
|
-
figcaption: Tag<TagAttrs, TagEvents
|
|
398
|
-
figure: Tag<TagAttrs, TagEvents
|
|
399
|
-
font: Tag<TagAttrs, TagEvents
|
|
400
|
-
footer: Tag<TagAttrs, TagEvents
|
|
401
|
-
form: Tag<FormAttrs, TagEvents>;
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
ontransitionstart?: ((this: HtmlOrSvgTag, ev: TransitionEvent) => any) | null;
|
|
569
|
-
onvolumechange?: ((this: HtmlOrSvgTag, ev: Event) => any) | null;
|
|
570
|
-
onwaiting?: ((this: HtmlOrSvgTag, ev: Event) => any) | null;
|
|
571
|
-
onwheel?: ((this: HtmlOrSvgTag, ev: WheelEvent) => any) | null;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
interface HtmlTag extends HtmlAndSvgEvents {
|
|
364
|
+
a: Tag<AAttrs, TagEvents, AnchorProps>;
|
|
365
|
+
abbr: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
366
|
+
address: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
367
|
+
area: Tag<AreaAttrs, TagEvents, AreaProps>;
|
|
368
|
+
article: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
369
|
+
aside: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
370
|
+
audio: Tag<MediaTagAttrs, MediaEvents, MediaProps<HTMLAudioElement>>;
|
|
371
|
+
b: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
372
|
+
base: Tag<BaseAttrs, TagEvents, BaseProps>;
|
|
373
|
+
bdi: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
374
|
+
bdo: Tag<BdoAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
375
|
+
blockquote: Tag<BlockQuoteAttrs, TagEvents, QuoteProps>;
|
|
376
|
+
body: Tag<TagAttrs, BodyEvents, TagProps<HTMLBodyElement>>;
|
|
377
|
+
br: Tag<TagAttrs, TagEvents, TagProps<HTMLBRElement>>;
|
|
378
|
+
button: Tag<ButtonAttrs, TagEvents, ButtonProps>;
|
|
379
|
+
canvas: Tag<TagAttrs, TagEvents, CanvasProps>;
|
|
380
|
+
caption: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
381
|
+
cite: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
382
|
+
code: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
383
|
+
col: Tag<ColAttrs, TagEvents, TableColProps>;
|
|
384
|
+
colgroup: Tag<ColAttrs, TagEvents, TableColProps>;
|
|
385
|
+
data: Tag<DataAttr, TagEvents, DataProps>;
|
|
386
|
+
datalist: Tag<TagAttrs, TagEvents, TagProps<HTMLDataListElement>>;
|
|
387
|
+
dd: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
388
|
+
del: Tag<TagAttrs, TagEvents, ModProps<HTMLModElement>>;
|
|
389
|
+
details: Tag<DetailsAttrs, TagEvents, DetailsProps>;
|
|
390
|
+
dfn: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
391
|
+
dialog: Tag<TagAttrs, TagEvents, TagProps<HTMLDialogElement>>;
|
|
392
|
+
dir: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
393
|
+
div: Tag<TagAttrs, TagEvents, TagProps<HTMLDivElement>>;
|
|
394
|
+
dl: Tag<TagAttrs, TagEvents, TagProps<HTMLDListElement>>;
|
|
395
|
+
dt: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
396
|
+
em: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
397
|
+
embed: Tag<EmbedAttrs, TagEvents, EmbedProps>;
|
|
398
|
+
fieldset: Tag<FieldsetAttrs, TagEvents, FieldSetProps>;
|
|
399
|
+
figcaption: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
400
|
+
figure: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
401
|
+
font: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
402
|
+
footer: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
403
|
+
form: Tag<FormAttrs, TagEvents, FormProps>;
|
|
404
|
+
h1: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
405
|
+
h2: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
406
|
+
h3: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
407
|
+
h4: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
408
|
+
h5: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
409
|
+
h6: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadingElement>>;
|
|
410
|
+
head: Tag<TagAttrs, TagEvents, TagProps<HTMLHeadElement>>;
|
|
411
|
+
header: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
412
|
+
hgroup: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
413
|
+
hr: Tag<TagAttrs, TagEvents, TagProps<HTMLHRElement>>;
|
|
414
|
+
i: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
415
|
+
iframe: Tag<IframeAttrs, TagEvents, IFrameProps>;
|
|
416
|
+
img: Tag<ImgAttrs, TagEvents, ImageProps>;
|
|
417
|
+
input: Tag<InputAttrs, TagEvents, InputProps>;
|
|
418
|
+
ins: Tag<TagAttrs, TagEvents, ModProps<HTMLModElement>>;
|
|
419
|
+
kbd: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
420
|
+
label: Tag<LabelAttrs, TagEvents, LabelProps>;
|
|
421
|
+
legend: Tag<TagAttrs, TagEvents, TagProps<HTMLLegendElement>>;
|
|
422
|
+
li: Tag<TagAttrs, TagEvents, LiProps>;
|
|
423
|
+
link: Tag<LinkAttrs, TagEvents, LinkProps>;
|
|
424
|
+
main: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
425
|
+
map: Tag<MapAttrs, TagEvents, MapProps>;
|
|
426
|
+
mark: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
427
|
+
menu: Tag<TagAttrs, TagEvents, TagProps<HTMLMenuElement>>;
|
|
428
|
+
meta: Tag<MetaAttrs, TagEvents, TagProps<HTMLMetaElement>>;
|
|
429
|
+
meter: Tag<MeterAttrs, TagEvents, MeterProps>;
|
|
430
|
+
nav: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
431
|
+
noscript: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
432
|
+
object: Tag<ObjectAttrs, TagEvents, ObjectProps>;
|
|
433
|
+
ol: Tag<OlAttrs, TagEvents, OListProps>;
|
|
434
|
+
optgroup: Tag<OptgroupAttrs, TagEvents, OptGroupProps>;
|
|
435
|
+
option: Tag<OptionAttrs, TagEvents, OptionProps>;
|
|
436
|
+
output: Tag<OutputAttrs, TagEvents, OutputProps>;
|
|
437
|
+
p: Tag<TagAttrs, TagEvents, TagProps<HTMLParagraphElement>>;
|
|
438
|
+
picture: Tag<TagAttrs, TagEvents, TagProps<HTMLPictureElement>>;
|
|
439
|
+
pre: Tag<TagAttrs, TagEvents, TagProps<HTMLPreElement>>;
|
|
440
|
+
progress: Tag<ProgressAttrs, TagEvents, ProgressProps>;
|
|
441
|
+
q: Tag<QAttrs, TagEvents, QuoteProps>;
|
|
442
|
+
rp: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
443
|
+
rt: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
444
|
+
ruby: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
445
|
+
s: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
446
|
+
samp: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
447
|
+
script: Tag<TagAttrs, TagEvents, ScriptProps>;
|
|
448
|
+
section: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
449
|
+
select: Tag<SelectAttrs, TagEvents, SelectProps>;
|
|
450
|
+
slot: Tag<TagAttrs, TagEvents, SlotProps>;
|
|
451
|
+
small: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
452
|
+
source: Tag<SourceAttrs, TagEvents, SourceProps>;
|
|
453
|
+
span: Tag<TagAttrs, TagEvents, TagProps<HTMLSpanElement>>;
|
|
454
|
+
strong: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
455
|
+
style: Tag<StyleAttrs, TagEvents, StyleProps>;
|
|
456
|
+
sub: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
457
|
+
summary: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
458
|
+
sup: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
459
|
+
table: Tag<TagAttrs, TagEvents, TableProps>;
|
|
460
|
+
tbody: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
461
|
+
td: Tag<TdAttrs, TagEvents, TableCellProps>;
|
|
462
|
+
template: Tag<TagAttrs, TagEvents, TagProps<HTMLTemplateElement>>;
|
|
463
|
+
textarea: Tag<TextareaAttrs, TagEvents, TextAreaProps>;
|
|
464
|
+
tfoot: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
465
|
+
th: Tag<ThAttrs, TagEvents, TableCellProps>;
|
|
466
|
+
thead: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
467
|
+
time: Tag<TagAttrs, TagEvents, TimeProps>;
|
|
468
|
+
title: Tag<TagAttrs, TagEvents, TitleProps>;
|
|
469
|
+
tr: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
470
|
+
track: Tag<TrackAttrs, TagEvents, TrackProps>;
|
|
471
|
+
u: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
472
|
+
ul: Tag<TagAttrs, TagEvents, TagProps<HTMLUListElement>>;
|
|
473
|
+
var: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
474
|
+
video: Tag<VideoAttrs, VideoEvents, VideoProps>;
|
|
475
|
+
wbr: Tag<TagAttrs, TagEvents, TagProps<HTMLElement>>;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
export interface TagEventsProps<T extends Element> {
|
|
479
|
+
onabort?: ((this: T, ev: UIEvent) => any) | null;
|
|
480
|
+
onanimationcancel?: ((this: T, ev: AnimationEvent) => any) | null;
|
|
481
|
+
onanimationend?: ((this: T, ev: AnimationEvent) => any) | null;
|
|
482
|
+
onanimationiteration?: ((this: T, ev: AnimationEvent) => any) | null;
|
|
483
|
+
onanimationstart?: ((this: T, ev: AnimationEvent) => any) | null;
|
|
484
|
+
onauxclick?: ((this: T, ev: MouseEvent) => any) | null;
|
|
485
|
+
onblur?: ((this: T, ev: FocusEvent) => any) | null;
|
|
486
|
+
oncanplay?: ((this: T, ev: Event) => any) | null;
|
|
487
|
+
oncanplaythrough?: ((this: T, ev: Event) => any) | null;
|
|
488
|
+
onchange?: ((this: T, ev: Event) => any) | null;
|
|
489
|
+
onclick?: ((this: T, ev: MouseEvent) => any) | null;
|
|
490
|
+
onclose?: ((this: T, ev: Event) => any) | null;
|
|
491
|
+
oncontextmenu?: ((this: T, ev: MouseEvent) => any) | null;
|
|
492
|
+
oncopy?: ((this: T, ev: ClipboardEvent) => any) | null;
|
|
493
|
+
oncut?: ((this: T, ev: ClipboardEvent) => any) | null;
|
|
494
|
+
oncuechange?: ((this: T, ev: Event) => any) | null;
|
|
495
|
+
ondblclick?: ((this: T, ev: MouseEvent) => any) | null;
|
|
496
|
+
ondrag?: ((this: T, ev: DragEvent) => any) | null;
|
|
497
|
+
ondragend?: ((this: T, ev: DragEvent) => any) | null;
|
|
498
|
+
ondragenter?: ((this: T, ev: DragEvent) => any) | null;
|
|
499
|
+
ondragleave?: ((this: T, ev: DragEvent) => any) | null;
|
|
500
|
+
ondragover?: ((this: T, ev: DragEvent) => any) | null;
|
|
501
|
+
ondragstart?: ((this: T, ev: DragEvent) => any) | null;
|
|
502
|
+
ondrop?: ((this: T, ev: DragEvent) => any) | null;
|
|
503
|
+
ondurationchange?: ((this: T, ev: Event) => any) | null;
|
|
504
|
+
onemptied?: ((this: T, ev: Event) => any) | null;
|
|
505
|
+
onended?: ((this: T, ev: Event) => any) | null;
|
|
506
|
+
onerror?: ((this: T, ev: Event | string, src?: string, line?: number, col?: number, err?: Error) => any) | null;
|
|
507
|
+
onfocus?: ((this: T, ev: FocusEvent) => any) | null;
|
|
508
|
+
onformdata?: ((this: T, ev: FormDataEvent) => any) | null;
|
|
509
|
+
onfullscreenchange?: ((this: T, ev: Event) => any) | null;
|
|
510
|
+
onfullscreenerror?: ((this: T, ev: Event) => any) | null;
|
|
511
|
+
ongotpointercapture?: ((this: T, ev: PointerEvent) => any) | null;
|
|
512
|
+
oninput?: ((this: T, ev: Event) => any) | null;
|
|
513
|
+
oninvalid?: ((this: T, ev: Event) => any) | null;
|
|
514
|
+
onkeydown?: ((this: T, ev: KeyboardEvent) => any) | null;
|
|
515
|
+
onkeypress?: ((this: T, ev: KeyboardEvent) => any) | null;
|
|
516
|
+
onkeyup?: ((this: T, ev: KeyboardEvent) => any) | null;
|
|
517
|
+
onload?: ((this: T, ev: Event) => any) | null;
|
|
518
|
+
onloadeddata?: ((this: T, ev: Event) => any) | null;
|
|
519
|
+
onloadedmetadata?: ((this: T, ev: Event) => any) | null;
|
|
520
|
+
onloadstart?: ((this: T, ev: Event) => any) | null;
|
|
521
|
+
onlostpointercapture?: ((this: T, ev: PointerEvent) => any) | null;
|
|
522
|
+
onmousedown?: ((this: T, ev: MouseEvent) => any) | null;
|
|
523
|
+
onmouseenter?: ((this: T, ev: MouseEvent) => any) | null;
|
|
524
|
+
onmouseleave?: ((this: T, ev: MouseEvent) => any) | null;
|
|
525
|
+
onmousemove?: ((this: T, ev: MouseEvent) => any) | null;
|
|
526
|
+
onmouseout?: ((this: T, ev: MouseEvent) => any) | null;
|
|
527
|
+
onmouseover?: ((this: T, ev: MouseEvent) => any) | null;
|
|
528
|
+
onmouseup?: ((this: T, ev: MouseEvent) => any) | null;
|
|
529
|
+
onpaste?: ((this: T, ev: ClipboardEvent) => any) | null;
|
|
530
|
+
onpause?: ((this: T, ev: Event) => any) | null;
|
|
531
|
+
onplay?: ((this: T, ev: Event) => any) | null;
|
|
532
|
+
onplaying?: ((this: T, ev: Event) => any) | null;
|
|
533
|
+
onpointercancel?: ((this: T, ev: PointerEvent) => any) | null;
|
|
534
|
+
onpointerdown?: ((this: T, ev: PointerEvent) => any) | null;
|
|
535
|
+
onpointerenter?: ((this: T, ev: PointerEvent) => any) | null;
|
|
536
|
+
onpointerleave?: ((this: T, ev: PointerEvent) => any) | null;
|
|
537
|
+
onpointermove?: ((this: T, ev: PointerEvent) => any) | null;
|
|
538
|
+
onpointerout?: ((this: T, ev: PointerEvent) => any) | null;
|
|
539
|
+
onpointerover?: ((this: T, ev: PointerEvent) => any) | null;
|
|
540
|
+
onpointerup?: ((this: T, ev: PointerEvent) => any) | null;
|
|
541
|
+
onprogress?: ((this: T, ev: ProgressEvent) => any) | null;
|
|
542
|
+
onratechange?: ((this: T, ev: Event) => any) | null;
|
|
543
|
+
onreset?: ((this: T, ev: Event) => any) | null;
|
|
544
|
+
onresize?: ((this: T, ev: UIEvent) => any) | null;
|
|
545
|
+
onscroll?: ((this: T, ev: Event) => any) | null;
|
|
546
|
+
onseeked?: ((this: T, ev: Event) => any) | null;
|
|
547
|
+
onseeking?: ((this: T, ev: Event) => any) | null;
|
|
548
|
+
onselect?: ((this: T, ev: Event) => any) | null;
|
|
549
|
+
onselectionchange?: ((this: T, ev: Event) => any) | null;
|
|
550
|
+
onselectstart?: ((this: T, ev: Event) => any) | null;
|
|
551
|
+
onstalled?: ((this: T, ev: Event) => any) | null;
|
|
552
|
+
onsubmit?: ((this: T, ev: SubmitEvent) => any) | null;
|
|
553
|
+
onsuspend?: ((this: T, ev: Event) => any) | null;
|
|
554
|
+
ontimeupdate?: ((this: T, ev: Event) => any) | null;
|
|
555
|
+
ontoggle?: ((this: T, ev: Event) => any) | null;
|
|
556
|
+
ontouchcancel?: ((this: T, ev: TouchEvent) => any) | null | undefined;
|
|
557
|
+
ontouchend?: ((this: T, ev: TouchEvent) => any) | null | undefined;
|
|
558
|
+
ontouchmove?: ((this: T, ev: TouchEvent) => any) | null | undefined;
|
|
559
|
+
ontouchstart?: ((this: T, ev: TouchEvent) => any) | null | undefined;
|
|
560
|
+
ontransitioncancel?: ((this: T, ev: TransitionEvent) => any) | null;
|
|
561
|
+
ontransitionend?: ((this: T, ev: TransitionEvent) => any) | null;
|
|
562
|
+
ontransitionrun?: ((this: T, ev: TransitionEvent) => any) | null;
|
|
563
|
+
ontransitionstart?: ((this: T, ev: TransitionEvent) => any) | null;
|
|
564
|
+
onvolumechange?: ((this: T, ev: Event) => any) | null;
|
|
565
|
+
onwaiting?: ((this: T, ev: Event) => any) | null;
|
|
566
|
+
onwheel?: ((this: T, ev: WheelEvent) => any) | null;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
interface TagProps<T extends Element> extends TagEventsProps<T> {
|
|
575
570
|
autofocus?: boolean;
|
|
576
571
|
className?: string;
|
|
577
572
|
nonce?: string | undefined;
|
|
@@ -589,7 +584,7 @@ interface HtmlTag extends HtmlAndSvgEvents {
|
|
|
589
584
|
translate?: boolean;
|
|
590
585
|
}
|
|
591
586
|
|
|
592
|
-
interface
|
|
587
|
+
interface AnchorProps extends TagProps<HTMLAnchorElement> {
|
|
593
588
|
download: string;
|
|
594
589
|
hreflang: string;
|
|
595
590
|
ping: string;
|
|
@@ -600,7 +595,7 @@ interface AnchorTag extends HtmlTag {
|
|
|
600
595
|
type: string;
|
|
601
596
|
}
|
|
602
597
|
|
|
603
|
-
interface
|
|
598
|
+
interface AreaProps extends TagProps<HTMLAreaElement> {
|
|
604
599
|
alt: string;
|
|
605
600
|
coords: string;
|
|
606
601
|
download: string;
|
|
@@ -611,7 +606,7 @@ interface AreaTag extends HtmlTag {
|
|
|
611
606
|
target: string;
|
|
612
607
|
}
|
|
613
608
|
|
|
614
|
-
interface
|
|
609
|
+
interface MediaProps<T extends HTMLMediaElement> extends TagProps<T> {
|
|
615
610
|
autoplay?: boolean;
|
|
616
611
|
controls?: boolean;
|
|
617
612
|
crossOrigin?: string | null;
|
|
@@ -621,8 +616,8 @@ interface MediaTag extends HtmlTag {
|
|
|
621
616
|
disableRemotePlayback?: boolean;
|
|
622
617
|
loop?: boolean;
|
|
623
618
|
muted?: boolean;
|
|
624
|
-
onencrypted?: ((this:
|
|
625
|
-
onwaitingforkey?: ((this:
|
|
619
|
+
onencrypted?: ((this: T, ev: MediaEncryptedEvent) => any) | null;
|
|
620
|
+
onwaitingforkey?: ((this: T, ev: Event) => any) | null;
|
|
626
621
|
playbackRate?: number;
|
|
627
622
|
preload?: "none" | "metadata" | "auto" | "";
|
|
628
623
|
src?: string;
|
|
@@ -630,16 +625,16 @@ interface MediaTag extends HtmlTag {
|
|
|
630
625
|
volume?: number;
|
|
631
626
|
}
|
|
632
627
|
|
|
633
|
-
interface
|
|
628
|
+
interface BaseProps extends TagProps<HTMLBaseElement> {
|
|
634
629
|
href: string;
|
|
635
630
|
target: string;
|
|
636
631
|
}
|
|
637
632
|
|
|
638
|
-
interface
|
|
633
|
+
interface QuoteProps extends TagProps<HTMLQuoteElement> {
|
|
639
634
|
cite: string;
|
|
640
635
|
}
|
|
641
636
|
|
|
642
|
-
interface
|
|
637
|
+
interface ButtonProps extends TagProps<HTMLButtonElement> {
|
|
643
638
|
disabled: boolean;
|
|
644
639
|
formAction: string;
|
|
645
640
|
formEnctype: string;
|
|
@@ -651,41 +646,41 @@ interface ButtonTag extends HtmlTag {
|
|
|
651
646
|
value: string;
|
|
652
647
|
}
|
|
653
648
|
|
|
654
|
-
interface
|
|
649
|
+
interface CanvasProps extends TagProps<HTMLCanvasElement> {
|
|
655
650
|
height: number;
|
|
656
651
|
width: number;
|
|
657
652
|
}
|
|
658
653
|
|
|
659
|
-
interface
|
|
654
|
+
interface TableColProps extends TagProps<HTMLTableColElement> {
|
|
660
655
|
span: number;
|
|
661
656
|
}
|
|
662
657
|
|
|
663
|
-
interface
|
|
658
|
+
interface DataProps extends TagProps<HTMLDataElement> {
|
|
664
659
|
value: string;
|
|
665
660
|
}
|
|
666
661
|
|
|
667
|
-
interface
|
|
662
|
+
interface ModProps<T extends HTMLModElement> extends TagProps<T> {
|
|
668
663
|
cite: string;
|
|
669
664
|
dateTime: string;
|
|
670
665
|
}
|
|
671
666
|
|
|
672
|
-
interface
|
|
667
|
+
interface DetailsProps extends TagProps<HTMLDetailsElement> {
|
|
673
668
|
open: boolean;
|
|
674
669
|
}
|
|
675
670
|
|
|
676
|
-
interface
|
|
671
|
+
interface EmbedProps extends TagProps<HTMLEmbedElement> {
|
|
677
672
|
height: string;
|
|
678
673
|
src: string;
|
|
679
674
|
type: string;
|
|
680
675
|
width: string;
|
|
681
676
|
}
|
|
682
677
|
|
|
683
|
-
interface
|
|
678
|
+
interface FieldSetProps extends TagProps<HTMLFieldSetElement> {
|
|
684
679
|
disabled: boolean;
|
|
685
680
|
name: string;
|
|
686
681
|
}
|
|
687
682
|
|
|
688
|
-
interface
|
|
683
|
+
interface FormProps extends TagProps<HTMLFormElement> {
|
|
689
684
|
acceptCharset: string;
|
|
690
685
|
action: string;
|
|
691
686
|
autocomplete: string;
|
|
@@ -697,7 +692,7 @@ interface FormTag extends HtmlTag {
|
|
|
697
692
|
target: string;
|
|
698
693
|
}
|
|
699
694
|
|
|
700
|
-
interface
|
|
695
|
+
interface IFrameProps extends TagProps<HTMLIFrameElement> {
|
|
701
696
|
allow: string;
|
|
702
697
|
allowFullscreen: boolean;
|
|
703
698
|
height: string;
|
|
@@ -708,7 +703,7 @@ interface IFrameTag extends HtmlTag {
|
|
|
708
703
|
width: string;
|
|
709
704
|
}
|
|
710
705
|
|
|
711
|
-
interface
|
|
706
|
+
interface ImageProps extends TagProps<HTMLImageElement> {
|
|
712
707
|
alt: string;
|
|
713
708
|
crossOrigin: string | null;
|
|
714
709
|
decoding: "async" | "sync" | "auto";
|
|
@@ -723,7 +718,7 @@ interface ImageTag extends HtmlTag {
|
|
|
723
718
|
width: number;
|
|
724
719
|
}
|
|
725
720
|
|
|
726
|
-
interface
|
|
721
|
+
interface InputProps extends TagProps<HTMLInputElement> {
|
|
727
722
|
accept: string;
|
|
728
723
|
alt: string;
|
|
729
724
|
autocomplete: string;
|
|
@@ -765,15 +760,15 @@ interface InputTag extends HtmlTag {
|
|
|
765
760
|
width: number;
|
|
766
761
|
}
|
|
767
762
|
|
|
768
|
-
interface
|
|
763
|
+
interface LabelProps extends TagProps<HTMLLabelElement> {
|
|
769
764
|
htmlFor: string;
|
|
770
765
|
}
|
|
771
766
|
|
|
772
|
-
interface
|
|
767
|
+
interface LiProps extends TagProps<HTMLLIElement> {
|
|
773
768
|
value: number;
|
|
774
769
|
}
|
|
775
770
|
|
|
776
|
-
interface
|
|
771
|
+
interface LinkProps extends TagProps<HTMLLinkElement> {
|
|
777
772
|
as: string;
|
|
778
773
|
crossOrigin: string | null;
|
|
779
774
|
disabled: boolean;
|
|
@@ -788,11 +783,11 @@ interface LinkTag extends HtmlTag {
|
|
|
788
783
|
type: string;
|
|
789
784
|
}
|
|
790
785
|
|
|
791
|
-
interface
|
|
786
|
+
interface MapProps extends TagProps<HTMLMapElement> {
|
|
792
787
|
name: string;
|
|
793
788
|
}
|
|
794
789
|
|
|
795
|
-
interface
|
|
790
|
+
interface MeterProps extends TagProps<HTMLMeterElement> {
|
|
796
791
|
high: number;
|
|
797
792
|
low: number;
|
|
798
793
|
max: number;
|
|
@@ -801,7 +796,7 @@ interface MeterTag extends HtmlTag {
|
|
|
801
796
|
value: number;
|
|
802
797
|
}
|
|
803
798
|
|
|
804
|
-
interface
|
|
799
|
+
interface ObjectProps extends TagProps<HTMLObjectElement> {
|
|
805
800
|
data: string;
|
|
806
801
|
height: string;
|
|
807
802
|
name: string;
|
|
@@ -810,18 +805,18 @@ interface ObjectTag extends HtmlTag {
|
|
|
810
805
|
width: string;
|
|
811
806
|
}
|
|
812
807
|
|
|
813
|
-
interface
|
|
808
|
+
interface OListProps extends TagProps<HTMLOListElement> {
|
|
814
809
|
reversed: boolean;
|
|
815
810
|
start: number;
|
|
816
811
|
type: string;
|
|
817
812
|
}
|
|
818
813
|
|
|
819
|
-
interface
|
|
814
|
+
interface OptGroupProps extends TagProps<HTMLOptGroupElement> {
|
|
820
815
|
disabled: boolean;
|
|
821
816
|
label: string;
|
|
822
817
|
}
|
|
823
818
|
|
|
824
|
-
interface
|
|
819
|
+
interface OptionProps extends TagProps<HTMLOptionElement> {
|
|
825
820
|
defaultSelected: boolean;
|
|
826
821
|
disabled: boolean;
|
|
827
822
|
label: string;
|
|
@@ -830,23 +825,18 @@ interface OptionTag extends HtmlTag {
|
|
|
830
825
|
value: string;
|
|
831
826
|
}
|
|
832
827
|
|
|
833
|
-
interface
|
|
828
|
+
interface OutputProps extends TagProps<HTMLOutputElement> {
|
|
834
829
|
defaultValue: string;
|
|
835
830
|
name: string;
|
|
836
831
|
value: string;
|
|
837
832
|
}
|
|
838
833
|
|
|
839
|
-
interface
|
|
840
|
-
name: string;
|
|
841
|
-
value: string;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
interface ProgressTag extends HtmlTag {
|
|
834
|
+
interface ProgressProps extends TagProps<HTMLProgressElement> {
|
|
845
835
|
max: number;
|
|
846
836
|
value: number;
|
|
847
837
|
}
|
|
848
838
|
|
|
849
|
-
interface
|
|
839
|
+
interface ScriptProps extends TagProps<HTMLScriptElement> {
|
|
850
840
|
async: boolean;
|
|
851
841
|
crossOrigin: string | null;
|
|
852
842
|
defer: boolean;
|
|
@@ -858,7 +848,7 @@ interface ScriptTag extends HtmlTag {
|
|
|
858
848
|
type: string;
|
|
859
849
|
}
|
|
860
850
|
|
|
861
|
-
interface
|
|
851
|
+
interface SelectProps extends TagProps<HTMLSelectElement> {
|
|
862
852
|
autocomplete: string;
|
|
863
853
|
disabled: boolean;
|
|
864
854
|
length: number;
|
|
@@ -870,11 +860,11 @@ interface SelectTag extends HtmlTag {
|
|
|
870
860
|
value: string;
|
|
871
861
|
}
|
|
872
862
|
|
|
873
|
-
interface
|
|
863
|
+
interface SlotProps extends TagProps<HTMLSlotElement> {
|
|
874
864
|
name: string;
|
|
875
865
|
}
|
|
876
866
|
|
|
877
|
-
interface
|
|
867
|
+
interface SourceProps extends TagProps<HTMLSourceElement> {
|
|
878
868
|
media: string;
|
|
879
869
|
sizes: string;
|
|
880
870
|
src: string;
|
|
@@ -882,17 +872,17 @@ interface SourceTag extends HtmlTag {
|
|
|
882
872
|
type: string;
|
|
883
873
|
}
|
|
884
874
|
|
|
885
|
-
interface
|
|
875
|
+
interface StyleProps extends TagProps<HTMLStyleElement> {
|
|
886
876
|
media: string;
|
|
887
877
|
}
|
|
888
878
|
|
|
889
|
-
interface
|
|
879
|
+
interface TableProps extends TagProps<HTMLTableElement> {
|
|
890
880
|
caption: HTMLTableCaptionElement | null;
|
|
891
881
|
tFoot: HTMLTableSectionElement | null;
|
|
892
882
|
tHead: HTMLTableSectionElement | null;
|
|
893
883
|
}
|
|
894
884
|
|
|
895
|
-
interface
|
|
885
|
+
interface TableCellProps extends TagProps<HTMLTableCellElement> {
|
|
896
886
|
abbr: string;
|
|
897
887
|
colSpan: number;
|
|
898
888
|
headers: string;
|
|
@@ -900,7 +890,7 @@ interface TableCellTag extends HtmlTag {
|
|
|
900
890
|
scope: string;
|
|
901
891
|
}
|
|
902
892
|
|
|
903
|
-
interface
|
|
893
|
+
interface TextAreaProps extends TagProps<HTMLTextAreaElement> {
|
|
904
894
|
autocomplete: string;
|
|
905
895
|
cols: number;
|
|
906
896
|
defaultValue: string;
|
|
@@ -920,15 +910,15 @@ interface TextAreaTag extends HtmlTag {
|
|
|
920
910
|
wrap: string;
|
|
921
911
|
}
|
|
922
912
|
|
|
923
|
-
interface
|
|
913
|
+
interface TimeProps extends TagProps<HTMLTimeElement> {
|
|
924
914
|
dateTime: string;
|
|
925
915
|
}
|
|
926
916
|
|
|
927
|
-
interface
|
|
917
|
+
interface TitleProps extends TagProps<HTMLTitleElement> {
|
|
928
918
|
text: string;
|
|
929
919
|
}
|
|
930
920
|
|
|
931
|
-
interface
|
|
921
|
+
interface TrackProps extends TagProps<HTMLTrackElement> {
|
|
932
922
|
default: boolean;
|
|
933
923
|
kind: string;
|
|
934
924
|
label: string;
|
|
@@ -936,7 +926,7 @@ interface TrackTag extends HtmlTag {
|
|
|
936
926
|
srclang: string;
|
|
937
927
|
}
|
|
938
928
|
|
|
939
|
-
interface
|
|
929
|
+
interface VideoProps extends MediaProps<HTMLVideoElement> {
|
|
940
930
|
disablePictureInPicture?: boolean;
|
|
941
931
|
height?: number;
|
|
942
932
|
onenterpictureinpicture?: ((this: HTMLVideoElement, ev: Event) => any) | null;
|
|
@@ -945,118 +935,3 @@ interface VideoTag extends MediaTag {
|
|
|
945
935
|
poster?: string;
|
|
946
936
|
width?: number;
|
|
947
937
|
}
|
|
948
|
-
|
|
949
|
-
export interface TagNameMap {
|
|
950
|
-
a: AnchorTag;
|
|
951
|
-
abbr: HtmlTag;
|
|
952
|
-
address: HtmlTag;
|
|
953
|
-
area: AreaTag;
|
|
954
|
-
article: HtmlTag;
|
|
955
|
-
aside: HtmlTag;
|
|
956
|
-
audio: MediaTag;
|
|
957
|
-
b: HtmlTag;
|
|
958
|
-
base: BaseTag;
|
|
959
|
-
bdi: HtmlTag;
|
|
960
|
-
bdo: HtmlTag;
|
|
961
|
-
blockquote: QuoteTag;
|
|
962
|
-
body: HtmlTag;
|
|
963
|
-
br: HtmlTag;
|
|
964
|
-
button: ButtonTag;
|
|
965
|
-
canvas: CanvasTag;
|
|
966
|
-
caption: HtmlTag;
|
|
967
|
-
cite: HtmlTag;
|
|
968
|
-
code: HtmlTag;
|
|
969
|
-
col: TableColTag;
|
|
970
|
-
colgroup: TableColTag;
|
|
971
|
-
data: DataTag;
|
|
972
|
-
datalist: HtmlTag;
|
|
973
|
-
dd: HtmlTag;
|
|
974
|
-
del: ModTag;
|
|
975
|
-
details: DetailsTag;
|
|
976
|
-
dfn: HtmlTag;
|
|
977
|
-
dialog: HtmlTag;
|
|
978
|
-
div: HtmlTag;
|
|
979
|
-
dl: HtmlTag;
|
|
980
|
-
dt: HtmlTag;
|
|
981
|
-
em: HtmlTag;
|
|
982
|
-
embed: EmbedTag;
|
|
983
|
-
fieldset: FieldSetTag;
|
|
984
|
-
figcaption: HtmlTag;
|
|
985
|
-
figure: HtmlTag;
|
|
986
|
-
footer: HtmlTag;
|
|
987
|
-
form: FormTag;
|
|
988
|
-
h1: HtmlTag;
|
|
989
|
-
h2: HtmlTag;
|
|
990
|
-
h3: HtmlTag;
|
|
991
|
-
h4: HtmlTag;
|
|
992
|
-
h5: HtmlTag;
|
|
993
|
-
h6: HtmlTag;
|
|
994
|
-
head: HtmlTag;
|
|
995
|
-
header: HtmlTag;
|
|
996
|
-
hgroup: HtmlTag;
|
|
997
|
-
hr: HtmlTag;
|
|
998
|
-
html: HtmlTag;
|
|
999
|
-
i: HtmlTag;
|
|
1000
|
-
iframe: IFrameTag;
|
|
1001
|
-
img: ImageTag;
|
|
1002
|
-
input: InputTag;
|
|
1003
|
-
ins: ModTag;
|
|
1004
|
-
kbd: HtmlTag;
|
|
1005
|
-
label: LabelTag;
|
|
1006
|
-
legend: HtmlTag;
|
|
1007
|
-
li: LITag;
|
|
1008
|
-
link: LinkTag;
|
|
1009
|
-
main: HtmlTag;
|
|
1010
|
-
map: MapTag;
|
|
1011
|
-
mark: HtmlTag;
|
|
1012
|
-
menu: HtmlTag;
|
|
1013
|
-
meta: HtmlTag;
|
|
1014
|
-
meter: MeterTag;
|
|
1015
|
-
nav: HtmlTag;
|
|
1016
|
-
noscript: HtmlTag;
|
|
1017
|
-
object: ObjectTag;
|
|
1018
|
-
ol: OListTag;
|
|
1019
|
-
optgroup: OptGroupTag;
|
|
1020
|
-
option: OptionTag;
|
|
1021
|
-
output: OutputTag;
|
|
1022
|
-
p: HtmlTag;
|
|
1023
|
-
param: ParamTag;
|
|
1024
|
-
picture: HtmlTag;
|
|
1025
|
-
pre: HtmlTag;
|
|
1026
|
-
progress: ProgressTag;
|
|
1027
|
-
q: QuoteTag;
|
|
1028
|
-
rp: HtmlTag;
|
|
1029
|
-
rt: HtmlTag;
|
|
1030
|
-
ruby: HtmlTag;
|
|
1031
|
-
s: HtmlTag;
|
|
1032
|
-
samp: HtmlTag;
|
|
1033
|
-
script: ScriptTag;
|
|
1034
|
-
section: HtmlTag;
|
|
1035
|
-
select: SelectTag;
|
|
1036
|
-
slot: SlotTag;
|
|
1037
|
-
small: HtmlTag;
|
|
1038
|
-
source: SourceTag;
|
|
1039
|
-
span: HtmlTag;
|
|
1040
|
-
strong: HtmlTag;
|
|
1041
|
-
style: StyleTag;
|
|
1042
|
-
sub: HtmlTag;
|
|
1043
|
-
summary: HtmlTag;
|
|
1044
|
-
sup: HtmlTag;
|
|
1045
|
-
table: TableTag;
|
|
1046
|
-
tbody: HtmlTag;
|
|
1047
|
-
td: TableCellTag;
|
|
1048
|
-
template: HtmlTag;
|
|
1049
|
-
textarea: TextAreaTag;
|
|
1050
|
-
tfoot: HtmlTag;
|
|
1051
|
-
th: TableCellTag;
|
|
1052
|
-
thead: HtmlTag;
|
|
1053
|
-
time: TimeTag;
|
|
1054
|
-
title: TitleTag;
|
|
1055
|
-
tr: HtmlTag;
|
|
1056
|
-
track: TrackTag;
|
|
1057
|
-
u: HtmlTag;
|
|
1058
|
-
ul: HtmlTag;
|
|
1059
|
-
var: HtmlTag;
|
|
1060
|
-
video: VideoTag;
|
|
1061
|
-
wbr: HtmlTag;
|
|
1062
|
-
}
|