@@ -444,121 +444,121 @@ type HTMLTableRowAttributes = HTMLAttributes<HTMLTableRowElement>;
444
444
type HTMLUListAttributes = HTMLAttributes < HTMLUListElement > ;
445
445
446
446
export interface SmuiElementPropMap < E extends string = '' > {
447
- a : Omit < HTMLAnchorAttributes , E > ;
448
- abbr : Omit < HTMLElementAttributes , E > ;
449
- address : Omit < HTMLElementAttributes , E > ;
450
- area : Omit < HTMLAreaAttributes , E > ;
451
- article : Omit < HTMLElementAttributes , E > ;
452
- aside : Omit < HTMLElementAttributes , E > ;
453
- audio : Omit < HTMLAudioAttributes , E > ;
454
- b : Omit < HTMLElementAttributes , E > ;
455
- base : Omit < HTMLBaseAttributes , E > ;
456
- bdi : Omit < HTMLElementAttributes , E > ;
457
- bdo : Omit < HTMLElementAttributes , E > ;
458
- // big: Omit<HTMLElementAttributes, E>;
459
- blockquote : Omit < HTMLBlockquoteAttributes , E > ;
460
- // body: Omit<HTMLBodyAttributes, E>;
461
- br : Omit < HTMLBRAttributes , E > ;
462
- button : Omit < HTMLButtonAttributes , E > ;
463
- canvas : Omit < HTMLCanvasAttributes , E > ;
464
- caption : Omit < HTMLElementAttributes , E > ;
465
- cite : Omit < HTMLElementAttributes , E > ;
466
- code : Omit < HTMLElementAttributes , E > ;
467
- col : Omit < HTMLColAttributes , E > ;
468
- colgroup : Omit < HTMLColgroupAttributes , E > ;
469
- data : Omit < HTMLDataAttributes , E > ;
470
- datalist : Omit < HTMLDataListAttributes , E > ;
471
- dd : Omit < HTMLElementAttributes , E > ;
472
- del : Omit < HTMLDelAttributes , E > ;
473
- details : Omit < HTMLDetailsAttributes , E > ;
474
- dfn : Omit < HTMLElementAttributes , E > ;
475
- dialog : Omit < HTMLDialogAttributes , E > ;
476
- div : Omit < HTMLDivAttributes , E > ;
477
- dl : Omit < HTMLDListAttributes , E > ;
478
- dt : Omit < HTMLElementAttributes , E > ;
479
- em : Omit < HTMLElementAttributes , E > ;
480
- // embed: Omit<HTMLEmbedAttributes, E>;
481
- fieldset : Omit < HTMLFieldsetAttributes , E > ;
482
- figcaption : Omit < HTMLElementAttributes , E > ;
483
- figure : Omit < HTMLElementAttributes , E > ;
484
- footer : Omit < HTMLElementAttributes , E > ;
485
- form : Omit < HTMLFormAttributes , E > ;
486
- h1 : Omit < HTMLHeadingAttributes , E > ;
487
- h2 : Omit < HTMLHeadingAttributes , E > ;
488
- h3 : Omit < HTMLHeadingAttributes , E > ;
489
- h4 : Omit < HTMLHeadingAttributes , E > ;
490
- h5 : Omit < HTMLHeadingAttributes , E > ;
491
- h6 : Omit < HTMLHeadingAttributes , E > ;
492
- head : Omit < HTMLElementAttributes , E > ;
493
- header : Omit < HTMLElementAttributes , E > ;
494
- hgroup : Omit < HTMLElementAttributes , E > ;
495
- hr : Omit < HTMLHRAttributes , E > ;
496
- // html: Omit<HTMLHtmlAttributes, E>;
497
- i : Omit < HTMLElementAttributes , E > ;
498
- // iframe: Omit<HTMLIframeAttributes, E>;
499
- img : Omit < HTMLImgAttributes , E > ;
500
- input : Omit < HTMLInputAttributes , E > ;
501
- ins : Omit < HTMLInsAttributes , E > ;
502
- kbd : Omit < HTMLElementAttributes , E > ;
503
- // keygen: Omit<HTMLKeygenAttributes, E>;
504
- label : Omit < HTMLLabelAttributes , E > ;
505
- legend : Omit < HTMLLegendAttributes , E > ;
506
- li : Omit < HTMLLiAttributes , E > ;
507
- // link: Omit<HTMLLinkAttributes, E>;
508
- main : Omit < HTMLElementAttributes , E > ;
509
- map : Omit < HTMLMapAttributes , E > ;
510
- mark : Omit < HTMLElementAttributes , E > ;
511
- // menu: Omit<HTMLMenuAttributes, E>;
512
- // menuitem: Omit<HTMLElementAttributes, E>;
513
- // meta: Omit<HTMLMetaAttributes, E>;
514
- meter : Omit < HTMLMeterAttributes , E > ;
515
- nav : Omit < HTMLElementAttributes , E > ;
516
- // noscript: Omit<HTMLElementAttributes, E>;
517
- // object: Omit<HTMLObjectAttributes, E>;
518
- ol : Omit < HTMLOlAttributes , E > ;
519
- optgroup : Omit < HTMLOptgroupAttributes , E > ;
520
- option : Omit < HTMLOptionAttributes , E > ;
521
- output : Omit < HTMLOutputAttributes , E > ;
522
- p : Omit < HTMLParagraphAttributes , E > ;
523
- // param: Omit<HTMLParamAttributes, E>;
524
- picture : Omit < HTMLElementAttributes , E > ;
525
- pre : Omit < HTMLPreAttributes , E > ;
526
- progress : Omit < HTMLProgressAttributes , E > ;
527
- q : Omit < HTMLQuoteAttributes , E > ;
528
- rp : Omit < HTMLElementAttributes , E > ;
529
- rt : Omit < HTMLElementAttributes , E > ;
530
- ruby : Omit < HTMLElementAttributes , E > ;
531
- // s: Omit<HTMLElementAttributes, E>;
532
- samp : Omit < HTMLElementAttributes , E > ;
533
- // slot: Omit<HTMLSlotAttributes, E>;
534
- // script: Omit<HTMLScriptAttributes, E>;
535
- section : Omit < HTMLElementAttributes , E > ;
536
- select : Omit < HTMLSelectAttributes , E > ;
537
- small : Omit < HTMLElementAttributes , E > ;
538
- source : Omit < HTMLSourceAttributes , E > ;
539
- span : Omit < HTMLSpanAttributes , E > ;
540
- strong : Omit < HTMLElementAttributes , E > ;
541
- style : Omit < HTMLStyleAttributes , E > ;
542
- sub : Omit < HTMLElementAttributes , E > ;
543
- summary : Omit < HTMLElementAttributes , E > ;
544
- sup : Omit < HTMLElementAttributes , E > ;
545
- svg : Omit < SVGAttributes < SVGSVGElement > , E > ;
546
- table : Omit < HTMLTableAttributes , E > ;
547
- // template: Omit<HTMLTemplateAttributes, E>;
548
- tbody : Omit < HTMLTableSectionAttributes , E > ;
549
- td : Omit < HTMLTdAttributes , E > ;
550
- textarea : Omit < HTMLTextareaAttributes , E > ;
551
- tfoot : Omit < HTMLTableSectionAttributes , E > ;
552
- th : Omit < HTMLThAttributes , E > ;
553
- thead : Omit < HTMLTableSectionAttributes , E > ;
554
- time : Omit < HTMLTimeAttributes , E > ;
555
- // title: Omit<HTMLTitleAttributes, E>;
556
- tr : Omit < HTMLTableRowAttributes , E > ;
557
- track : Omit < HTMLTrackAttributes , E > ;
558
- // u: Omit<HTMLElementAttributes, E>;
559
- ul : Omit < HTMLUListAttributes , E > ;
560
- var : Omit < HTMLElementAttributes , E > ;
561
- video : Omit < HTMLVideoAttributes , E > ;
562
- wbr : Omit < HTMLElementAttributes , E > ;
563
- // webview: Omit<HTMLWebViewAttributes, E>;
447
+ a : Omit < HTMLAnchorAttributes , E | symbol > ;
448
+ abbr : Omit < HTMLElementAttributes , E | symbol > ;
449
+ address : Omit < HTMLElementAttributes , E | symbol > ;
450
+ area : Omit < HTMLAreaAttributes , E | symbol > ;
451
+ article : Omit < HTMLElementAttributes , E | symbol > ;
452
+ aside : Omit < HTMLElementAttributes , E | symbol > ;
453
+ audio : Omit < HTMLAudioAttributes , E | symbol > ;
454
+ b : Omit < HTMLElementAttributes , E | symbol > ;
455
+ base : Omit < HTMLBaseAttributes , E | symbol > ;
456
+ bdi : Omit < HTMLElementAttributes , E | symbol > ;
457
+ bdo : Omit < HTMLElementAttributes , E | symbol > ;
458
+ // big: Omit<HTMLElementAttributes, E | symbol >;
459
+ blockquote : Omit < HTMLBlockquoteAttributes , E | symbol > ;
460
+ // body: Omit<HTMLBodyAttributes, E | symbol >;
461
+ br : Omit < HTMLBRAttributes , E | symbol > ;
462
+ button : Omit < HTMLButtonAttributes , E | symbol > ;
463
+ canvas : Omit < HTMLCanvasAttributes , E | symbol > ;
464
+ caption : Omit < HTMLElementAttributes , E | symbol > ;
465
+ cite : Omit < HTMLElementAttributes , E | symbol > ;
466
+ code : Omit < HTMLElementAttributes , E | symbol > ;
467
+ col : Omit < HTMLColAttributes , E | symbol > ;
468
+ colgroup : Omit < HTMLColgroupAttributes , E | symbol > ;
469
+ data : Omit < HTMLDataAttributes , E | symbol > ;
470
+ datalist : Omit < HTMLDataListAttributes , E | symbol > ;
471
+ dd : Omit < HTMLElementAttributes , E | symbol > ;
472
+ del : Omit < HTMLDelAttributes , E | symbol > ;
473
+ details : Omit < HTMLDetailsAttributes , E | symbol > ;
474
+ dfn : Omit < HTMLElementAttributes , E | symbol > ;
475
+ dialog : Omit < HTMLDialogAttributes , E | symbol > ;
476
+ div : Omit < HTMLDivAttributes , E | symbol > ;
477
+ dl : Omit < HTMLDListAttributes , E | symbol > ;
478
+ dt : Omit < HTMLElementAttributes , E | symbol > ;
479
+ em : Omit < HTMLElementAttributes , E | symbol > ;
480
+ // embed: Omit<HTMLEmbedAttributes, E | symbol >;
481
+ fieldset : Omit < HTMLFieldsetAttributes , E | symbol > ;
482
+ figcaption : Omit < HTMLElementAttributes , E | symbol > ;
483
+ figure : Omit < HTMLElementAttributes , E | symbol > ;
484
+ footer : Omit < HTMLElementAttributes , E | symbol > ;
485
+ form : Omit < HTMLFormAttributes , E | symbol > ;
486
+ h1 : Omit < HTMLHeadingAttributes , E | symbol > ;
487
+ h2 : Omit < HTMLHeadingAttributes , E | symbol > ;
488
+ h3 : Omit < HTMLHeadingAttributes , E | symbol > ;
489
+ h4 : Omit < HTMLHeadingAttributes , E | symbol > ;
490
+ h5 : Omit < HTMLHeadingAttributes , E | symbol > ;
491
+ h6 : Omit < HTMLHeadingAttributes , E | symbol > ;
492
+ head : Omit < HTMLElementAttributes , E | symbol > ;
493
+ header : Omit < HTMLElementAttributes , E | symbol > ;
494
+ hgroup : Omit < HTMLElementAttributes , E | symbol > ;
495
+ hr : Omit < HTMLHRAttributes , E | symbol > ;
496
+ // html: Omit<HTMLHtmlAttributes, E | symbol >;
497
+ i : Omit < HTMLElementAttributes , E | symbol > ;
498
+ // iframe: Omit<HTMLIframeAttributes, E | symbol >;
499
+ img : Omit < HTMLImgAttributes , E | symbol > ;
500
+ input : Omit < HTMLInputAttributes , E | symbol > ;
501
+ ins : Omit < HTMLInsAttributes , E | symbol > ;
502
+ kbd : Omit < HTMLElementAttributes , E | symbol > ;
503
+ // keygen: Omit<HTMLKeygenAttributes, E | symbol >;
504
+ label : Omit < HTMLLabelAttributes , E | symbol > ;
505
+ legend : Omit < HTMLLegendAttributes , E | symbol > ;
506
+ li : Omit < HTMLLiAttributes , E | symbol > ;
507
+ // link: Omit<HTMLLinkAttributes, E | symbol >;
508
+ main : Omit < HTMLElementAttributes , E | symbol > ;
509
+ map : Omit < HTMLMapAttributes , E | symbol > ;
510
+ mark : Omit < HTMLElementAttributes , E | symbol > ;
511
+ // menu: Omit<HTMLMenuAttributes, E | symbol >;
512
+ // menuitem: Omit<HTMLElementAttributes, E | symbol >;
513
+ // meta: Omit<HTMLMetaAttributes, E | symbol >;
514
+ meter : Omit < HTMLMeterAttributes , E | symbol > ;
515
+ nav : Omit < HTMLElementAttributes , E | symbol > ;
516
+ // noscript: Omit<HTMLElementAttributes, E | symbol >;
517
+ // object: Omit<HTMLObjectAttributes, E | symbol >;
518
+ ol : Omit < HTMLOlAttributes , E | symbol > ;
519
+ optgroup : Omit < HTMLOptgroupAttributes , E | symbol > ;
520
+ option : Omit < HTMLOptionAttributes , E | symbol > ;
521
+ output : Omit < HTMLOutputAttributes , E | symbol > ;
522
+ p : Omit < HTMLParagraphAttributes , E | symbol > ;
523
+ // param: Omit<HTMLParamAttributes, E | symbol >;
524
+ picture : Omit < HTMLElementAttributes , E | symbol > ;
525
+ pre : Omit < HTMLPreAttributes , E | symbol > ;
526
+ progress : Omit < HTMLProgressAttributes , E | symbol > ;
527
+ q : Omit < HTMLQuoteAttributes , E | symbol > ;
528
+ rp : Omit < HTMLElementAttributes , E | symbol > ;
529
+ rt : Omit < HTMLElementAttributes , E | symbol > ;
530
+ ruby : Omit < HTMLElementAttributes , E | symbol > ;
531
+ // s: Omit<HTMLElementAttributes, E | symbol >;
532
+ samp : Omit < HTMLElementAttributes , E | symbol > ;
533
+ // slot: Omit<HTMLSlotAttributes, E | symbol >;
534
+ // script: Omit<HTMLScriptAttributes, E | symbol >;
535
+ section : Omit < HTMLElementAttributes , E | symbol > ;
536
+ select : Omit < HTMLSelectAttributes , E | symbol > ;
537
+ small : Omit < HTMLElementAttributes , E | symbol > ;
538
+ source : Omit < HTMLSourceAttributes , E | symbol > ;
539
+ span : Omit < HTMLSpanAttributes , E | symbol > ;
540
+ strong : Omit < HTMLElementAttributes , E | symbol > ;
541
+ style : Omit < HTMLStyleAttributes , E | symbol > ;
542
+ sub : Omit < HTMLElementAttributes , E | symbol > ;
543
+ summary : Omit < HTMLElementAttributes , E | symbol > ;
544
+ sup : Omit < HTMLElementAttributes , E | symbol > ;
545
+ svg : Omit < SVGAttributes < SVGSVGElement > , E | symbol > ;
546
+ table : Omit < HTMLTableAttributes , E | symbol > ;
547
+ // template: Omit<HTMLTemplateAttributes, E | symbol >;
548
+ tbody : Omit < HTMLTableSectionAttributes , E | symbol > ;
549
+ td : Omit < HTMLTdAttributes , E | symbol > ;
550
+ textarea : Omit < HTMLTextareaAttributes , E | symbol > ;
551
+ tfoot : Omit < HTMLTableSectionAttributes , E | symbol > ;
552
+ th : Omit < HTMLThAttributes , E | symbol > ;
553
+ thead : Omit < HTMLTableSectionAttributes , E | symbol > ;
554
+ time : Omit < HTMLTimeAttributes , E | symbol > ;
555
+ // title: Omit<HTMLTitleAttributes, E | symbol >;
556
+ tr : Omit < HTMLTableRowAttributes , E | symbol > ;
557
+ track : Omit < HTMLTrackAttributes , E | symbol > ;
558
+ // u: Omit<HTMLElementAttributes, E | symbol >;
559
+ ul : Omit < HTMLUListAttributes , E | symbol > ;
560
+ var : Omit < HTMLElementAttributes , E | symbol > ;
561
+ video : Omit < HTMLVideoAttributes , E | symbol > ;
562
+ wbr : Omit < HTMLElementAttributes , E | symbol > ;
563
+ // webview: Omit<HTMLWebViewAttributes, E | symbol >;
564
564
}
0 commit comments