foldkit 0.11.0-canary.0 → 0.12.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/html.d.ts +1229 -773
- package/dist/html.d.ts.map +1 -1
- package/dist/html.js +348 -332
- package/package.json +1 -1
package/dist/html.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ import { Dispatch } from './runtime';
|
|
|
3
3
|
import { VNode } from './vdom';
|
|
4
4
|
export type Html = Effect.Effect<VNode | null, never, Dispatch>;
|
|
5
5
|
export type Child = Html | string;
|
|
6
|
-
export type
|
|
6
|
+
export type ElementFunction<Message> = (attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
7
|
+
export type VoidElementFunction<Message> = (attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
8
|
+
export type TagName = 'a' | 'abbr' | 'address' | 'area' | 'article' | 'aside' | 'audio' | 'b' | 'base' | 'bdi' | 'bdo' | 'blockquote' | 'body' | 'br' | 'button' | 'canvas' | 'caption' | 'cite' | 'code' | 'col' | 'colgroup' | 'data' | 'datalist' | 'dd' | 'del' | 'details' | 'dfn' | 'dialog' | 'div' | 'dl' | 'dt' | 'em' | 'embed' | 'fieldset' | 'figcaption' | 'figure' | 'footer' | 'form' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'head' | 'header' | 'hgroup' | 'hr' | 'html' | 'i' | 'iframe' | 'img' | 'input' | 'ins' | 'kbd' | 'label' | 'legend' | 'li' | 'link' | 'main' | 'map' | 'mark' | 'menu' | 'meta' | 'meter' | 'nav' | 'noscript' | 'object' | 'ol' | 'optgroup' | 'option' | 'output' | 'p' | 'picture' | 'portal' | 'pre' | 'progress' | 'q' | 'rp' | 'rt' | 'ruby' | 's' | 'samp' | 'script' | 'search' | 'section' | 'select' | 'slot' | 'small' | 'source' | 'span' | 'strong' | 'style' | 'sub' | 'summary' | 'sup' | 'table' | 'tbody' | 'td' | 'template' | 'textarea' | 'tfoot' | 'th' | 'thead' | 'time' | 'title' | 'tr' | 'track' | 'u' | 'ul' | 'var' | 'video' | 'wbr' | 'animate' | 'animateMotion' | 'animateTransform' | 'circle' | 'clipPath' | 'defs' | 'desc' | 'ellipse' | 'feBlend' | 'feColorMatrix' | 'feComponentTransfer' | 'feComposite' | 'feConvolveMatrix' | 'feDiffuseLighting' | 'feDisplacementMap' | 'feDistantLight' | 'feDropShadow' | 'feFlood' | 'feFuncA' | 'feFuncB' | 'feFuncG' | 'feFuncR' | 'feGaussianBlur' | 'feImage' | 'feMerge' | 'feMergeNode' | 'feMorphology' | 'feOffset' | 'fePointLight' | 'feSpecularLighting' | 'feSpotLight' | 'feTile' | 'feTurbulence' | 'filter' | 'foreignObject' | 'g' | 'image' | 'line' | 'linearGradient' | 'marker' | 'mask' | 'metadata' | 'mpath' | 'path' | 'pattern' | 'polygon' | 'polyline' | 'radialGradient' | 'rect' | 'set' | 'stop' | 'svg' | 'switch' | 'symbol' | 'text' | 'textPath' | 'tspan' | 'use' | 'view' | 'annotation' | 'annotation-xml' | 'math' | 'maction' | 'menclose' | 'merror' | 'mfenced' | 'mfrac' | 'mglyph' | 'mi' | 'mlabeledtr' | 'mlongdiv' | 'mmultiscripts' | 'mn' | 'mo' | 'mover' | 'mpadded' | 'mphantom' | 'mprescripts' | 'mroot' | 'mrow' | 'ms' | 'mscarries' | 'mscarry' | 'msgroup' | 'msline' | 'mspace' | 'msqrt' | 'msrow' | 'mstack' | 'mstyle' | 'msub' | 'msubsup' | 'msup' | 'mtable' | 'mtd' | 'mtext' | 'mtr' | 'munder' | 'munderover' | 'semantics';
|
|
7
9
|
export type Attribute<Message> = Data.TaggedEnum<{
|
|
8
10
|
Key: {
|
|
9
11
|
readonly value: string;
|
|
@@ -341,1228 +343,1682 @@ export type Attribute<Message> = Data.TaggedEnum<{
|
|
|
341
343
|
readonly value: string;
|
|
342
344
|
};
|
|
343
345
|
}>;
|
|
344
|
-
export declare const
|
|
346
|
+
export declare const Key: <A>(args: {
|
|
345
347
|
readonly value: string;
|
|
346
348
|
}) => {
|
|
347
349
|
readonly _tag: "Key";
|
|
348
350
|
readonly value: string;
|
|
349
|
-
},
|
|
351
|
+
}, Class: <A>(args: {
|
|
350
352
|
readonly value: string;
|
|
351
353
|
}) => {
|
|
352
354
|
readonly _tag: "Class";
|
|
353
355
|
readonly value: string;
|
|
354
|
-
},
|
|
356
|
+
}, Id: <A>(args: {
|
|
355
357
|
readonly value: string;
|
|
356
358
|
}) => {
|
|
357
359
|
readonly _tag: "Id";
|
|
358
360
|
readonly value: string;
|
|
359
|
-
},
|
|
361
|
+
}, Title: <A>(args: {
|
|
360
362
|
readonly value: string;
|
|
361
363
|
}) => {
|
|
362
364
|
readonly _tag: "Title";
|
|
363
365
|
readonly value: string;
|
|
364
|
-
},
|
|
366
|
+
}, Lang: <A>(args: {
|
|
365
367
|
readonly value: string;
|
|
366
368
|
}) => {
|
|
367
369
|
readonly _tag: "Lang";
|
|
368
370
|
readonly value: string;
|
|
369
|
-
},
|
|
371
|
+
}, Dir: <A>(args: {
|
|
370
372
|
readonly value: string;
|
|
371
373
|
}) => {
|
|
372
374
|
readonly _tag: "Dir";
|
|
373
375
|
readonly value: string;
|
|
374
|
-
},
|
|
376
|
+
}, Tabindex: <A>(args: {
|
|
375
377
|
readonly value: number;
|
|
376
378
|
}) => {
|
|
377
379
|
readonly _tag: "Tabindex";
|
|
378
380
|
readonly value: number;
|
|
379
|
-
},
|
|
381
|
+
}, Hidden: <A>(args: {
|
|
380
382
|
readonly value: boolean;
|
|
381
383
|
}) => {
|
|
382
384
|
readonly _tag: "Hidden";
|
|
383
385
|
readonly value: boolean;
|
|
384
|
-
},
|
|
386
|
+
}, OnClick: <A>(args: {
|
|
385
387
|
readonly message: A;
|
|
386
388
|
}) => {
|
|
387
389
|
readonly _tag: "OnClick";
|
|
388
390
|
readonly message: A;
|
|
389
|
-
},
|
|
391
|
+
}, OnDblClick: <A>(args: {
|
|
390
392
|
readonly message: A;
|
|
391
393
|
}) => {
|
|
392
394
|
readonly _tag: "OnDblClick";
|
|
393
395
|
readonly message: A;
|
|
394
|
-
},
|
|
396
|
+
}, OnMouseDown: <A>(args: {
|
|
395
397
|
readonly message: A;
|
|
396
398
|
}) => {
|
|
397
399
|
readonly _tag: "OnMouseDown";
|
|
398
400
|
readonly message: A;
|
|
399
|
-
},
|
|
401
|
+
}, OnMouseUp: <A>(args: {
|
|
400
402
|
readonly message: A;
|
|
401
403
|
}) => {
|
|
402
404
|
readonly _tag: "OnMouseUp";
|
|
403
405
|
readonly message: A;
|
|
404
|
-
},
|
|
406
|
+
}, OnMouseEnter: <A>(args: {
|
|
405
407
|
readonly message: A;
|
|
406
408
|
}) => {
|
|
407
409
|
readonly _tag: "OnMouseEnter";
|
|
408
410
|
readonly message: A;
|
|
409
|
-
},
|
|
411
|
+
}, OnMouseLeave: <A>(args: {
|
|
410
412
|
readonly message: A;
|
|
411
413
|
}) => {
|
|
412
414
|
readonly _tag: "OnMouseLeave";
|
|
413
415
|
readonly message: A;
|
|
414
|
-
},
|
|
416
|
+
}, OnMouseOver: <A>(args: {
|
|
415
417
|
readonly message: A;
|
|
416
418
|
}) => {
|
|
417
419
|
readonly _tag: "OnMouseOver";
|
|
418
420
|
readonly message: A;
|
|
419
|
-
},
|
|
421
|
+
}, OnMouseOut: <A>(args: {
|
|
420
422
|
readonly message: A;
|
|
421
423
|
}) => {
|
|
422
424
|
readonly _tag: "OnMouseOut";
|
|
423
425
|
readonly message: A;
|
|
424
|
-
},
|
|
426
|
+
}, OnMouseMove: <A>(args: {
|
|
425
427
|
readonly message: A;
|
|
426
428
|
}) => {
|
|
427
429
|
readonly _tag: "OnMouseMove";
|
|
428
430
|
readonly message: A;
|
|
429
|
-
},
|
|
431
|
+
}, OnKeyDown: <A>(args: {
|
|
430
432
|
readonly f: (key: string) => A;
|
|
431
433
|
}) => {
|
|
432
434
|
readonly _tag: "OnKeyDown";
|
|
433
435
|
readonly f: (key: string) => A;
|
|
434
|
-
},
|
|
436
|
+
}, OnKeyUp: <A>(args: {
|
|
435
437
|
readonly f: (key: string) => A;
|
|
436
438
|
}) => {
|
|
437
439
|
readonly _tag: "OnKeyUp";
|
|
438
440
|
readonly f: (key: string) => A;
|
|
439
|
-
},
|
|
441
|
+
}, OnKeyPress: <A>(args: {
|
|
440
442
|
readonly f: (key: string) => A;
|
|
441
443
|
}) => {
|
|
442
444
|
readonly _tag: "OnKeyPress";
|
|
443
445
|
readonly f: (key: string) => A;
|
|
444
|
-
},
|
|
446
|
+
}, OnFocus: <A>(args: {
|
|
445
447
|
readonly message: A;
|
|
446
448
|
}) => {
|
|
447
449
|
readonly _tag: "OnFocus";
|
|
448
450
|
readonly message: A;
|
|
449
|
-
},
|
|
451
|
+
}, OnBlur: <A>(args: {
|
|
450
452
|
readonly message: A;
|
|
451
453
|
}) => {
|
|
452
454
|
readonly _tag: "OnBlur";
|
|
453
455
|
readonly message: A;
|
|
454
|
-
},
|
|
456
|
+
}, OnInput: <A>(args: {
|
|
455
457
|
readonly f: (value: string) => A;
|
|
456
458
|
}) => {
|
|
457
459
|
readonly _tag: "OnInput";
|
|
458
460
|
readonly f: (value: string) => A;
|
|
459
|
-
},
|
|
461
|
+
}, OnChange: <A>(args: {
|
|
460
462
|
readonly f: (value: string) => A;
|
|
461
463
|
}) => {
|
|
462
464
|
readonly _tag: "OnChange";
|
|
463
465
|
readonly f: (value: string) => A;
|
|
464
|
-
},
|
|
466
|
+
}, OnSubmit: <A>(args: {
|
|
465
467
|
readonly message: A;
|
|
466
468
|
}) => {
|
|
467
469
|
readonly _tag: "OnSubmit";
|
|
468
470
|
readonly message: A;
|
|
469
|
-
},
|
|
471
|
+
}, OnReset: <A>(args: {
|
|
470
472
|
readonly message: A;
|
|
471
473
|
}) => {
|
|
472
474
|
readonly _tag: "OnReset";
|
|
473
475
|
readonly message: A;
|
|
474
|
-
},
|
|
476
|
+
}, OnScroll: <A>(args: {
|
|
475
477
|
readonly message: A;
|
|
476
478
|
}) => {
|
|
477
479
|
readonly _tag: "OnScroll";
|
|
478
480
|
readonly message: A;
|
|
479
|
-
},
|
|
481
|
+
}, OnWheel: <A>(args: {
|
|
480
482
|
readonly message: A;
|
|
481
483
|
}) => {
|
|
482
484
|
readonly _tag: "OnWheel";
|
|
483
485
|
readonly message: A;
|
|
484
|
-
},
|
|
486
|
+
}, OnCopy: <A>(args: {
|
|
485
487
|
readonly message: A;
|
|
486
488
|
}) => {
|
|
487
489
|
readonly _tag: "OnCopy";
|
|
488
490
|
readonly message: A;
|
|
489
|
-
},
|
|
491
|
+
}, OnCut: <A>(args: {
|
|
490
492
|
readonly message: A;
|
|
491
493
|
}) => {
|
|
492
494
|
readonly _tag: "OnCut";
|
|
493
495
|
readonly message: A;
|
|
494
|
-
},
|
|
496
|
+
}, OnPaste: <A>(args: {
|
|
495
497
|
readonly message: A;
|
|
496
498
|
}) => {
|
|
497
499
|
readonly _tag: "OnPaste";
|
|
498
500
|
readonly message: A;
|
|
499
|
-
},
|
|
501
|
+
}, Value: <A>(args: {
|
|
500
502
|
readonly value: string;
|
|
501
503
|
}) => {
|
|
502
504
|
readonly _tag: "Value";
|
|
503
505
|
readonly value: string;
|
|
504
|
-
},
|
|
506
|
+
}, Checked: <A>(args: {
|
|
505
507
|
readonly value: boolean;
|
|
506
508
|
}) => {
|
|
507
509
|
readonly _tag: "Checked";
|
|
508
510
|
readonly value: boolean;
|
|
509
|
-
},
|
|
511
|
+
}, Selected: <A>(args: {
|
|
510
512
|
readonly value: boolean;
|
|
511
513
|
}) => {
|
|
512
514
|
readonly _tag: "Selected";
|
|
513
515
|
readonly value: boolean;
|
|
514
|
-
},
|
|
516
|
+
}, Placeholder: <A>(args: {
|
|
515
517
|
readonly value: string;
|
|
516
518
|
}) => {
|
|
517
519
|
readonly _tag: "Placeholder";
|
|
518
520
|
readonly value: string;
|
|
519
|
-
},
|
|
521
|
+
}, Name: <A>(args: {
|
|
520
522
|
readonly value: string;
|
|
521
523
|
}) => {
|
|
522
524
|
readonly _tag: "Name";
|
|
523
525
|
readonly value: string;
|
|
524
|
-
},
|
|
526
|
+
}, Disabled: <A>(args: {
|
|
525
527
|
readonly value: boolean;
|
|
526
528
|
}) => {
|
|
527
529
|
readonly _tag: "Disabled";
|
|
528
530
|
readonly value: boolean;
|
|
529
|
-
},
|
|
531
|
+
}, Readonly: <A>(args: {
|
|
530
532
|
readonly value: boolean;
|
|
531
533
|
}) => {
|
|
532
534
|
readonly _tag: "Readonly";
|
|
533
535
|
readonly value: boolean;
|
|
534
|
-
},
|
|
536
|
+
}, Required: <A>(args: {
|
|
535
537
|
readonly value: boolean;
|
|
536
538
|
}) => {
|
|
537
539
|
readonly _tag: "Required";
|
|
538
540
|
readonly value: boolean;
|
|
539
|
-
},
|
|
541
|
+
}, Autofocus: <A>(args: {
|
|
540
542
|
readonly value: boolean;
|
|
541
543
|
}) => {
|
|
542
544
|
readonly _tag: "Autofocus";
|
|
543
545
|
readonly value: boolean;
|
|
544
|
-
},
|
|
546
|
+
}, Spellcheck: <A>(args: {
|
|
545
547
|
readonly value: boolean;
|
|
546
548
|
}) => {
|
|
547
549
|
readonly _tag: "Spellcheck";
|
|
548
550
|
readonly value: boolean;
|
|
549
|
-
},
|
|
551
|
+
}, Autocorrect: <A>(args: {
|
|
550
552
|
readonly value: string;
|
|
551
553
|
}) => {
|
|
552
554
|
readonly _tag: "Autocorrect";
|
|
553
555
|
readonly value: string;
|
|
554
|
-
},
|
|
556
|
+
}, Autocapitalize: <A>(args: {
|
|
555
557
|
readonly value: string;
|
|
556
558
|
}) => {
|
|
557
559
|
readonly _tag: "Autocapitalize";
|
|
558
560
|
readonly value: string;
|
|
559
|
-
},
|
|
561
|
+
}, InputMode: <A>(args: {
|
|
560
562
|
readonly value: string;
|
|
561
563
|
}) => {
|
|
562
564
|
readonly _tag: "InputMode";
|
|
563
565
|
readonly value: string;
|
|
564
|
-
},
|
|
566
|
+
}, EnterKeyHint: <A>(args: {
|
|
565
567
|
readonly value: string;
|
|
566
568
|
}) => {
|
|
567
569
|
readonly _tag: "EnterKeyHint";
|
|
568
570
|
readonly value: string;
|
|
569
|
-
},
|
|
571
|
+
}, Multiple: <A>(args: {
|
|
570
572
|
readonly value: boolean;
|
|
571
573
|
}) => {
|
|
572
574
|
readonly _tag: "Multiple";
|
|
573
575
|
readonly value: boolean;
|
|
574
|
-
},
|
|
576
|
+
}, Type: <A>(args: {
|
|
575
577
|
readonly value: string;
|
|
576
578
|
}) => {
|
|
577
579
|
readonly _tag: "Type";
|
|
578
580
|
readonly value: string;
|
|
579
|
-
},
|
|
581
|
+
}, Accept: <A>(args: {
|
|
580
582
|
readonly value: string;
|
|
581
583
|
}) => {
|
|
582
584
|
readonly _tag: "Accept";
|
|
583
585
|
readonly value: string;
|
|
584
|
-
},
|
|
586
|
+
}, Autocomplete: <A>(args: {
|
|
585
587
|
readonly value: string;
|
|
586
588
|
}) => {
|
|
587
589
|
readonly _tag: "Autocomplete";
|
|
588
590
|
readonly value: string;
|
|
589
|
-
},
|
|
591
|
+
}, Pattern: <A>(args: {
|
|
590
592
|
readonly value: string;
|
|
591
593
|
}) => {
|
|
592
594
|
readonly _tag: "Pattern";
|
|
593
595
|
readonly value: string;
|
|
594
|
-
},
|
|
596
|
+
}, Maxlength: <A>(args: {
|
|
595
597
|
readonly value: number;
|
|
596
598
|
}) => {
|
|
597
599
|
readonly _tag: "Maxlength";
|
|
598
600
|
readonly value: number;
|
|
599
|
-
},
|
|
601
|
+
}, Minlength: <A>(args: {
|
|
600
602
|
readonly value: number;
|
|
601
603
|
}) => {
|
|
602
604
|
readonly _tag: "Minlength";
|
|
603
605
|
readonly value: number;
|
|
604
|
-
},
|
|
606
|
+
}, Size: <A>(args: {
|
|
605
607
|
readonly value: number;
|
|
606
608
|
}) => {
|
|
607
609
|
readonly _tag: "Size";
|
|
608
610
|
readonly value: number;
|
|
609
|
-
},
|
|
611
|
+
}, Cols: <A>(args: {
|
|
610
612
|
readonly value: number;
|
|
611
613
|
}) => {
|
|
612
614
|
readonly _tag: "Cols";
|
|
613
615
|
readonly value: number;
|
|
614
|
-
},
|
|
616
|
+
}, Rows: <A>(args: {
|
|
615
617
|
readonly value: number;
|
|
616
618
|
}) => {
|
|
617
619
|
readonly _tag: "Rows";
|
|
618
620
|
readonly value: number;
|
|
619
|
-
},
|
|
621
|
+
}, Max: <A>(args: {
|
|
620
622
|
readonly value: string;
|
|
621
623
|
}) => {
|
|
622
624
|
readonly _tag: "Max";
|
|
623
625
|
readonly value: string;
|
|
624
|
-
},
|
|
626
|
+
}, Min: <A>(args: {
|
|
625
627
|
readonly value: string;
|
|
626
628
|
}) => {
|
|
627
629
|
readonly _tag: "Min";
|
|
628
630
|
readonly value: string;
|
|
629
|
-
},
|
|
631
|
+
}, Step: <A>(args: {
|
|
630
632
|
readonly value: string;
|
|
631
633
|
}) => {
|
|
632
634
|
readonly _tag: "Step";
|
|
633
635
|
readonly value: string;
|
|
634
|
-
},
|
|
636
|
+
}, For: <A>(args: {
|
|
635
637
|
readonly value: string;
|
|
636
638
|
}) => {
|
|
637
639
|
readonly _tag: "For";
|
|
638
640
|
readonly value: string;
|
|
639
|
-
},
|
|
641
|
+
}, Href: <A>(args: {
|
|
640
642
|
readonly value: string;
|
|
641
643
|
}) => {
|
|
642
644
|
readonly _tag: "Href";
|
|
643
645
|
readonly value: string;
|
|
644
|
-
},
|
|
646
|
+
}, Src: <A>(args: {
|
|
645
647
|
readonly value: string;
|
|
646
648
|
}) => {
|
|
647
649
|
readonly _tag: "Src";
|
|
648
650
|
readonly value: string;
|
|
649
|
-
},
|
|
651
|
+
}, Alt: <A>(args: {
|
|
650
652
|
readonly value: string;
|
|
651
653
|
}) => {
|
|
652
654
|
readonly _tag: "Alt";
|
|
653
655
|
readonly value: string;
|
|
654
|
-
},
|
|
656
|
+
}, Target: <A>(args: {
|
|
655
657
|
readonly value: string;
|
|
656
658
|
}) => {
|
|
657
659
|
readonly _tag: "Target";
|
|
658
660
|
readonly value: string;
|
|
659
|
-
},
|
|
661
|
+
}, Rel: <A>(args: {
|
|
660
662
|
readonly value: string;
|
|
661
663
|
}) => {
|
|
662
664
|
readonly _tag: "Rel";
|
|
663
665
|
readonly value: string;
|
|
664
|
-
},
|
|
666
|
+
}, Download: <A>(args: {
|
|
665
667
|
readonly value: string;
|
|
666
668
|
}) => {
|
|
667
669
|
readonly _tag: "Download";
|
|
668
670
|
readonly value: string;
|
|
669
|
-
},
|
|
671
|
+
}, Action: <A>(args: {
|
|
670
672
|
readonly value: string;
|
|
671
673
|
}) => {
|
|
672
674
|
readonly _tag: "Action";
|
|
673
675
|
readonly value: string;
|
|
674
|
-
},
|
|
676
|
+
}, Method: <A>(args: {
|
|
675
677
|
readonly value: string;
|
|
676
678
|
}) => {
|
|
677
679
|
readonly _tag: "Method";
|
|
678
680
|
readonly value: string;
|
|
679
|
-
},
|
|
681
|
+
}, Enctype: <A>(args: {
|
|
680
682
|
readonly value: string;
|
|
681
683
|
}) => {
|
|
682
684
|
readonly _tag: "Enctype";
|
|
683
685
|
readonly value: string;
|
|
684
|
-
},
|
|
686
|
+
}, Novalidate: <A>(args: {
|
|
685
687
|
readonly value: boolean;
|
|
686
688
|
}) => {
|
|
687
689
|
readonly _tag: "Novalidate";
|
|
688
690
|
readonly value: boolean;
|
|
689
|
-
},
|
|
691
|
+
}, Role: <A>(args: {
|
|
690
692
|
readonly value: string;
|
|
691
693
|
}) => {
|
|
692
694
|
readonly _tag: "Role";
|
|
693
695
|
readonly value: string;
|
|
694
|
-
},
|
|
696
|
+
}, AriaLabel: <A>(args: {
|
|
695
697
|
readonly value: string;
|
|
696
698
|
}) => {
|
|
697
699
|
readonly _tag: "AriaLabel";
|
|
698
700
|
readonly value: string;
|
|
699
|
-
},
|
|
701
|
+
}, AriaLabelledBy: <A>(args: {
|
|
700
702
|
readonly value: string;
|
|
701
703
|
}) => {
|
|
702
704
|
readonly _tag: "AriaLabelledBy";
|
|
703
705
|
readonly value: string;
|
|
704
|
-
},
|
|
706
|
+
}, AriaDescribedBy: <A>(args: {
|
|
705
707
|
readonly value: string;
|
|
706
708
|
}) => {
|
|
707
709
|
readonly _tag: "AriaDescribedBy";
|
|
708
710
|
readonly value: string;
|
|
709
|
-
},
|
|
711
|
+
}, AriaHidden: <A>(args: {
|
|
710
712
|
readonly value: boolean;
|
|
711
713
|
}) => {
|
|
712
714
|
readonly _tag: "AriaHidden";
|
|
713
715
|
readonly value: boolean;
|
|
714
|
-
},
|
|
716
|
+
}, AriaExpanded: <A>(args: {
|
|
715
717
|
readonly value: boolean;
|
|
716
718
|
}) => {
|
|
717
719
|
readonly _tag: "AriaExpanded";
|
|
718
720
|
readonly value: boolean;
|
|
719
|
-
},
|
|
721
|
+
}, AriaSelected: <A>(args: {
|
|
720
722
|
readonly value: boolean;
|
|
721
723
|
}) => {
|
|
722
724
|
readonly _tag: "AriaSelected";
|
|
723
725
|
readonly value: boolean;
|
|
724
|
-
},
|
|
726
|
+
}, AriaChecked: <A>(args: {
|
|
725
727
|
readonly value: boolean;
|
|
726
728
|
}) => {
|
|
727
729
|
readonly _tag: "AriaChecked";
|
|
728
730
|
readonly value: boolean;
|
|
729
|
-
},
|
|
731
|
+
}, AriaDisabled: <A>(args: {
|
|
730
732
|
readonly value: boolean;
|
|
731
733
|
}) => {
|
|
732
734
|
readonly _tag: "AriaDisabled";
|
|
733
735
|
readonly value: boolean;
|
|
734
|
-
},
|
|
736
|
+
}, AriaRequired: <A>(args: {
|
|
735
737
|
readonly value: boolean;
|
|
736
738
|
}) => {
|
|
737
739
|
readonly _tag: "AriaRequired";
|
|
738
740
|
readonly value: boolean;
|
|
739
|
-
},
|
|
741
|
+
}, AriaInvalid: <A>(args: {
|
|
740
742
|
readonly value: boolean;
|
|
741
743
|
}) => {
|
|
742
744
|
readonly _tag: "AriaInvalid";
|
|
743
745
|
readonly value: boolean;
|
|
744
|
-
},
|
|
746
|
+
}, AriaLive: <A>(args: {
|
|
745
747
|
readonly value: string;
|
|
746
748
|
}) => {
|
|
747
749
|
readonly _tag: "AriaLive";
|
|
748
750
|
readonly value: string;
|
|
749
|
-
},
|
|
751
|
+
}, Attribute: <A>(args: {
|
|
750
752
|
readonly key: string;
|
|
751
753
|
readonly value: string;
|
|
752
754
|
}) => {
|
|
753
755
|
readonly _tag: "Attribute";
|
|
754
756
|
readonly key: string;
|
|
755
757
|
readonly value: string;
|
|
756
|
-
},
|
|
758
|
+
}, DataAttribute: <A>(args: {
|
|
757
759
|
readonly key: string;
|
|
758
760
|
readonly value: string;
|
|
759
761
|
}) => {
|
|
760
762
|
readonly _tag: "DataAttribute";
|
|
761
763
|
readonly key: string;
|
|
762
764
|
readonly value: string;
|
|
763
|
-
},
|
|
765
|
+
}, Style: <A>(args: {
|
|
764
766
|
readonly value: Record<string, string>;
|
|
765
767
|
}) => {
|
|
766
768
|
readonly _tag: "Style";
|
|
767
769
|
readonly value: Record<string, string>;
|
|
768
|
-
},
|
|
770
|
+
}, InnerHTML: <A>(args: {
|
|
769
771
|
readonly value: string;
|
|
770
772
|
}) => {
|
|
771
773
|
readonly _tag: "InnerHTML";
|
|
772
774
|
readonly value: string;
|
|
773
|
-
},
|
|
775
|
+
}, ViewBox: <A>(args: {
|
|
774
776
|
readonly value: string;
|
|
775
777
|
}) => {
|
|
776
778
|
readonly _tag: "ViewBox";
|
|
777
779
|
readonly value: string;
|
|
778
|
-
},
|
|
780
|
+
}, Xmlns: <A>(args: {
|
|
779
781
|
readonly value: string;
|
|
780
782
|
}) => {
|
|
781
783
|
readonly _tag: "Xmlns";
|
|
782
784
|
readonly value: string;
|
|
783
|
-
},
|
|
785
|
+
}, Fill: <A>(args: {
|
|
784
786
|
readonly value: string;
|
|
785
787
|
}) => {
|
|
786
788
|
readonly _tag: "Fill";
|
|
787
789
|
readonly value: string;
|
|
788
|
-
},
|
|
790
|
+
}, FillRule: <A>(args: {
|
|
789
791
|
readonly value: string;
|
|
790
792
|
}) => {
|
|
791
793
|
readonly _tag: "FillRule";
|
|
792
794
|
readonly value: string;
|
|
793
|
-
},
|
|
795
|
+
}, ClipRule: <A>(args: {
|
|
794
796
|
readonly value: string;
|
|
795
797
|
}) => {
|
|
796
798
|
readonly _tag: "ClipRule";
|
|
797
799
|
readonly value: string;
|
|
798
|
-
},
|
|
800
|
+
}, Stroke: <A>(args: {
|
|
799
801
|
readonly value: string;
|
|
800
802
|
}) => {
|
|
801
803
|
readonly _tag: "Stroke";
|
|
802
804
|
readonly value: string;
|
|
803
|
-
},
|
|
805
|
+
}, StrokeWidth: <A>(args: {
|
|
804
806
|
readonly value: string;
|
|
805
807
|
}) => {
|
|
806
808
|
readonly _tag: "StrokeWidth";
|
|
807
809
|
readonly value: string;
|
|
808
|
-
},
|
|
810
|
+
}, StrokeLinecap: <A>(args: {
|
|
809
811
|
readonly value: string;
|
|
810
812
|
}) => {
|
|
811
813
|
readonly _tag: "StrokeLinecap";
|
|
812
814
|
readonly value: string;
|
|
813
|
-
},
|
|
815
|
+
}, StrokeLinejoin: <A>(args: {
|
|
814
816
|
readonly value: string;
|
|
815
817
|
}) => {
|
|
816
818
|
readonly _tag: "StrokeLinejoin";
|
|
817
819
|
readonly value: string;
|
|
818
|
-
},
|
|
820
|
+
}, D: <A>(args: {
|
|
819
821
|
readonly value: string;
|
|
820
822
|
}) => {
|
|
821
823
|
readonly _tag: "D";
|
|
822
824
|
readonly value: string;
|
|
823
|
-
},
|
|
825
|
+
}, Cx: <A>(args: {
|
|
824
826
|
readonly value: string;
|
|
825
827
|
}) => {
|
|
826
828
|
readonly _tag: "Cx";
|
|
827
829
|
readonly value: string;
|
|
828
|
-
},
|
|
830
|
+
}, Cy: <A>(args: {
|
|
829
831
|
readonly value: string;
|
|
830
832
|
}) => {
|
|
831
833
|
readonly _tag: "Cy";
|
|
832
834
|
readonly value: string;
|
|
833
|
-
},
|
|
835
|
+
}, R: <A>(args: {
|
|
834
836
|
readonly value: string;
|
|
835
837
|
}) => {
|
|
836
838
|
readonly _tag: "R";
|
|
837
839
|
readonly value: string;
|
|
838
|
-
},
|
|
840
|
+
}, X: <A>(args: {
|
|
839
841
|
readonly value: string;
|
|
840
842
|
}) => {
|
|
841
843
|
readonly _tag: "X";
|
|
842
844
|
readonly value: string;
|
|
843
|
-
},
|
|
845
|
+
}, Y: <A>(args: {
|
|
844
846
|
readonly value: string;
|
|
845
847
|
}) => {
|
|
846
848
|
readonly _tag: "Y";
|
|
847
849
|
readonly value: string;
|
|
848
|
-
},
|
|
850
|
+
}, Width: <A>(args: {
|
|
849
851
|
readonly value: string;
|
|
850
852
|
}) => {
|
|
851
853
|
readonly _tag: "Width";
|
|
852
854
|
readonly value: string;
|
|
853
|
-
},
|
|
855
|
+
}, Height: <A>(args: {
|
|
854
856
|
readonly value: string;
|
|
855
857
|
}) => {
|
|
856
858
|
readonly _tag: "Height";
|
|
857
859
|
readonly value: string;
|
|
858
|
-
},
|
|
860
|
+
}, X1: <A>(args: {
|
|
859
861
|
readonly value: string;
|
|
860
862
|
}) => {
|
|
861
863
|
readonly _tag: "X1";
|
|
862
864
|
readonly value: string;
|
|
863
|
-
},
|
|
865
|
+
}, Y1: <A>(args: {
|
|
864
866
|
readonly value: string;
|
|
865
867
|
}) => {
|
|
866
868
|
readonly _tag: "Y1";
|
|
867
869
|
readonly value: string;
|
|
868
|
-
},
|
|
870
|
+
}, X2: <A>(args: {
|
|
869
871
|
readonly value: string;
|
|
870
872
|
}) => {
|
|
871
873
|
readonly _tag: "X2";
|
|
872
874
|
readonly value: string;
|
|
873
|
-
},
|
|
875
|
+
}, Y2: <A>(args: {
|
|
874
876
|
readonly value: string;
|
|
875
877
|
}) => {
|
|
876
878
|
readonly _tag: "Y2";
|
|
877
879
|
readonly value: string;
|
|
878
|
-
},
|
|
880
|
+
}, Points: <A>(args: {
|
|
879
881
|
readonly value: string;
|
|
880
882
|
}) => {
|
|
881
883
|
readonly _tag: "Points";
|
|
882
884
|
readonly value: string;
|
|
883
|
-
},
|
|
885
|
+
}, Transform: <A>(args: {
|
|
884
886
|
readonly value: string;
|
|
885
887
|
}) => {
|
|
886
888
|
readonly _tag: "Transform";
|
|
887
889
|
readonly value: string;
|
|
888
|
-
},
|
|
890
|
+
}, Opacity: <A>(args: {
|
|
889
891
|
readonly value: string;
|
|
890
892
|
}) => {
|
|
891
893
|
readonly _tag: "Opacity";
|
|
892
894
|
readonly value: string;
|
|
893
|
-
},
|
|
895
|
+
}, StrokeDasharray: <A>(args: {
|
|
894
896
|
readonly value: string;
|
|
895
897
|
}) => {
|
|
896
898
|
readonly _tag: "StrokeDasharray";
|
|
897
899
|
readonly value: string;
|
|
898
|
-
},
|
|
900
|
+
}, StrokeDashoffset: <A>(args: {
|
|
899
901
|
readonly value: string;
|
|
900
902
|
}) => {
|
|
901
903
|
readonly _tag: "StrokeDashoffset";
|
|
902
904
|
readonly value: string;
|
|
903
905
|
};
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
export declare const
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
906
|
+
type AttributeWithoutKey<Message> = Exclude<Attribute<Message>, {
|
|
907
|
+
_tag: 'Key';
|
|
908
|
+
}>;
|
|
909
|
+
export type HtmlElements<Message> = Record<TagName, ElementFunction<Message> | VoidElementFunction<Message>>;
|
|
910
|
+
export declare const htmlElements: <Message>() => HtmlElements<Message>;
|
|
911
|
+
export type HtmlAttributes<Message> = {
|
|
912
|
+
Key: (value: string) => {
|
|
913
|
+
readonly _tag: 'Key';
|
|
914
|
+
readonly value: string;
|
|
915
|
+
};
|
|
916
|
+
Class: (value: string) => {
|
|
917
|
+
readonly _tag: 'Class';
|
|
918
|
+
readonly value: string;
|
|
919
|
+
};
|
|
920
|
+
Id: (value: string) => {
|
|
921
|
+
readonly _tag: 'Id';
|
|
922
|
+
readonly value: string;
|
|
923
|
+
};
|
|
924
|
+
Title: (value: string) => {
|
|
925
|
+
readonly _tag: 'Title';
|
|
926
|
+
readonly value: string;
|
|
927
|
+
};
|
|
928
|
+
Lang: (value: string) => {
|
|
929
|
+
readonly _tag: 'Lang';
|
|
930
|
+
readonly value: string;
|
|
931
|
+
};
|
|
932
|
+
Dir: (value: string) => {
|
|
933
|
+
readonly _tag: 'Dir';
|
|
934
|
+
readonly value: string;
|
|
935
|
+
};
|
|
936
|
+
Tabindex: (value: number) => {
|
|
937
|
+
readonly _tag: 'Tabindex';
|
|
938
|
+
readonly value: number;
|
|
939
|
+
};
|
|
940
|
+
Hidden: (value: boolean) => {
|
|
941
|
+
readonly _tag: 'Hidden';
|
|
942
|
+
readonly value: boolean;
|
|
943
|
+
};
|
|
944
|
+
OnClick: (message: Message) => {
|
|
945
|
+
readonly _tag: 'OnClick';
|
|
946
|
+
readonly message: Message;
|
|
947
|
+
};
|
|
948
|
+
OnDblClick: (message: Message) => {
|
|
949
|
+
readonly _tag: 'OnDblClick';
|
|
950
|
+
readonly message: Message;
|
|
951
|
+
};
|
|
952
|
+
OnMouseDown: (message: Message) => {
|
|
953
|
+
readonly _tag: 'OnMouseDown';
|
|
954
|
+
readonly message: Message;
|
|
955
|
+
};
|
|
956
|
+
OnMouseUp: (message: Message) => {
|
|
957
|
+
readonly _tag: 'OnMouseUp';
|
|
958
|
+
readonly message: Message;
|
|
959
|
+
};
|
|
960
|
+
OnMouseEnter: (message: Message) => {
|
|
961
|
+
readonly _tag: 'OnMouseEnter';
|
|
962
|
+
readonly message: Message;
|
|
963
|
+
};
|
|
964
|
+
OnMouseLeave: (message: Message) => {
|
|
965
|
+
readonly _tag: 'OnMouseLeave';
|
|
966
|
+
readonly message: Message;
|
|
967
|
+
};
|
|
968
|
+
OnMouseOver: (message: Message) => {
|
|
969
|
+
readonly _tag: 'OnMouseOver';
|
|
970
|
+
readonly message: Message;
|
|
971
|
+
};
|
|
972
|
+
OnMouseOut: (message: Message) => {
|
|
973
|
+
readonly _tag: 'OnMouseOut';
|
|
974
|
+
readonly message: Message;
|
|
975
|
+
};
|
|
976
|
+
OnMouseMove: (message: Message) => {
|
|
977
|
+
readonly _tag: 'OnMouseMove';
|
|
978
|
+
readonly message: Message;
|
|
979
|
+
};
|
|
980
|
+
OnKeyDown: (f: (key: string) => Message) => {
|
|
981
|
+
readonly _tag: 'OnKeyDown';
|
|
982
|
+
readonly f: (key: string) => Message;
|
|
983
|
+
};
|
|
984
|
+
OnKeyUp: (f: (key: string) => Message) => {
|
|
985
|
+
readonly _tag: 'OnKeyUp';
|
|
986
|
+
readonly f: (key: string) => Message;
|
|
987
|
+
};
|
|
988
|
+
OnKeyPress: (f: (key: string) => Message) => {
|
|
989
|
+
readonly _tag: 'OnKeyPress';
|
|
990
|
+
readonly f: (key: string) => Message;
|
|
991
|
+
};
|
|
992
|
+
OnFocus: (message: Message) => {
|
|
993
|
+
readonly _tag: 'OnFocus';
|
|
994
|
+
readonly message: Message;
|
|
995
|
+
};
|
|
996
|
+
OnBlur: (message: Message) => {
|
|
997
|
+
readonly _tag: 'OnBlur';
|
|
998
|
+
readonly message: Message;
|
|
999
|
+
};
|
|
1000
|
+
OnInput: (f: (value: string) => Message) => {
|
|
1001
|
+
readonly _tag: 'OnInput';
|
|
1002
|
+
readonly f: (value: string) => Message;
|
|
1003
|
+
};
|
|
1004
|
+
OnChange: (f: (value: string) => Message) => {
|
|
1005
|
+
readonly _tag: 'OnChange';
|
|
1006
|
+
readonly f: (value: string) => Message;
|
|
1007
|
+
};
|
|
1008
|
+
OnSubmit: (message: Message) => {
|
|
1009
|
+
readonly _tag: 'OnSubmit';
|
|
1010
|
+
readonly message: Message;
|
|
1011
|
+
};
|
|
1012
|
+
OnReset: (message: Message) => {
|
|
1013
|
+
readonly _tag: 'OnReset';
|
|
1014
|
+
readonly message: Message;
|
|
1015
|
+
};
|
|
1016
|
+
OnScroll: (message: Message) => {
|
|
1017
|
+
readonly _tag: 'OnScroll';
|
|
1018
|
+
readonly message: Message;
|
|
1019
|
+
};
|
|
1020
|
+
OnWheel: (message: Message) => {
|
|
1021
|
+
readonly _tag: 'OnWheel';
|
|
1022
|
+
readonly message: Message;
|
|
1023
|
+
};
|
|
1024
|
+
OnCopy: (message: Message) => {
|
|
1025
|
+
readonly _tag: 'OnCopy';
|
|
1026
|
+
readonly message: Message;
|
|
1027
|
+
};
|
|
1028
|
+
OnCut: (message: Message) => {
|
|
1029
|
+
readonly _tag: 'OnCut';
|
|
1030
|
+
readonly message: Message;
|
|
1031
|
+
};
|
|
1032
|
+
OnPaste: (message: Message) => {
|
|
1033
|
+
readonly _tag: 'OnPaste';
|
|
1034
|
+
readonly message: Message;
|
|
1035
|
+
};
|
|
1036
|
+
Value: (value: string) => {
|
|
1037
|
+
readonly _tag: 'Value';
|
|
1038
|
+
readonly value: string;
|
|
1039
|
+
};
|
|
1040
|
+
Checked: (value: boolean) => {
|
|
1041
|
+
readonly _tag: 'Checked';
|
|
1042
|
+
readonly value: boolean;
|
|
1043
|
+
};
|
|
1044
|
+
Selected: (value: boolean) => {
|
|
1045
|
+
readonly _tag: 'Selected';
|
|
1046
|
+
readonly value: boolean;
|
|
1047
|
+
};
|
|
1048
|
+
Placeholder: (value: string) => {
|
|
1049
|
+
readonly _tag: 'Placeholder';
|
|
1050
|
+
readonly value: string;
|
|
1051
|
+
};
|
|
1052
|
+
Name: (value: string) => {
|
|
1053
|
+
readonly _tag: 'Name';
|
|
1054
|
+
readonly value: string;
|
|
1055
|
+
};
|
|
1056
|
+
Disabled: (value: boolean) => {
|
|
1057
|
+
readonly _tag: 'Disabled';
|
|
1058
|
+
readonly value: boolean;
|
|
1059
|
+
};
|
|
1060
|
+
Readonly: (value: boolean) => {
|
|
1061
|
+
readonly _tag: 'Readonly';
|
|
1062
|
+
readonly value: boolean;
|
|
1063
|
+
};
|
|
1064
|
+
Required: (value: boolean) => {
|
|
1065
|
+
readonly _tag: 'Required';
|
|
1066
|
+
readonly value: boolean;
|
|
1067
|
+
};
|
|
1068
|
+
Autofocus: (value: boolean) => {
|
|
1069
|
+
readonly _tag: 'Autofocus';
|
|
1070
|
+
readonly value: boolean;
|
|
1071
|
+
};
|
|
1072
|
+
Spellcheck: (value: boolean) => {
|
|
1073
|
+
readonly _tag: 'Spellcheck';
|
|
1074
|
+
readonly value: boolean;
|
|
1075
|
+
};
|
|
1076
|
+
Autocorrect: (value: string) => {
|
|
1077
|
+
readonly _tag: 'Autocorrect';
|
|
1078
|
+
readonly value: string;
|
|
1079
|
+
};
|
|
1080
|
+
Autocapitalize: (value: string) => {
|
|
1081
|
+
readonly _tag: 'Autocapitalize';
|
|
1082
|
+
readonly value: string;
|
|
1083
|
+
};
|
|
1084
|
+
InputMode: (value: string) => {
|
|
1085
|
+
readonly _tag: 'InputMode';
|
|
1086
|
+
readonly value: string;
|
|
1087
|
+
};
|
|
1088
|
+
EnterKeyHint: (value: string) => {
|
|
1089
|
+
readonly _tag: 'EnterKeyHint';
|
|
1090
|
+
readonly value: string;
|
|
1091
|
+
};
|
|
1092
|
+
Multiple: (value: boolean) => {
|
|
1093
|
+
readonly _tag: 'Multiple';
|
|
1094
|
+
readonly value: boolean;
|
|
1095
|
+
};
|
|
1096
|
+
Type: (value: string) => {
|
|
1097
|
+
readonly _tag: 'Type';
|
|
1098
|
+
readonly value: string;
|
|
1099
|
+
};
|
|
1100
|
+
Accept: (value: string) => {
|
|
1101
|
+
readonly _tag: 'Accept';
|
|
1102
|
+
readonly value: string;
|
|
1103
|
+
};
|
|
1104
|
+
Autocomplete: (value: string) => {
|
|
1105
|
+
readonly _tag: 'Autocomplete';
|
|
1106
|
+
readonly value: string;
|
|
1107
|
+
};
|
|
1108
|
+
Pattern: (value: string) => {
|
|
1109
|
+
readonly _tag: 'Pattern';
|
|
1110
|
+
readonly value: string;
|
|
1111
|
+
};
|
|
1112
|
+
Maxlength: (value: number) => {
|
|
1113
|
+
readonly _tag: 'Maxlength';
|
|
1114
|
+
readonly value: number;
|
|
1115
|
+
};
|
|
1116
|
+
Minlength: (value: number) => {
|
|
1117
|
+
readonly _tag: 'Minlength';
|
|
1118
|
+
readonly value: number;
|
|
1119
|
+
};
|
|
1120
|
+
Size: (value: number) => {
|
|
1121
|
+
readonly _tag: 'Size';
|
|
1122
|
+
readonly value: number;
|
|
1123
|
+
};
|
|
1124
|
+
Cols: (value: number) => {
|
|
1125
|
+
readonly _tag: 'Cols';
|
|
1126
|
+
readonly value: number;
|
|
1127
|
+
};
|
|
1128
|
+
Rows: (value: number) => {
|
|
1129
|
+
readonly _tag: 'Rows';
|
|
1130
|
+
readonly value: number;
|
|
1131
|
+
};
|
|
1132
|
+
Max: (value: string) => {
|
|
1133
|
+
readonly _tag: 'Max';
|
|
1134
|
+
readonly value: string;
|
|
1135
|
+
};
|
|
1136
|
+
Min: (value: string) => {
|
|
1137
|
+
readonly _tag: 'Min';
|
|
1138
|
+
readonly value: string;
|
|
1139
|
+
};
|
|
1140
|
+
Step: (value: string) => {
|
|
1141
|
+
readonly _tag: 'Step';
|
|
1142
|
+
readonly value: string;
|
|
1143
|
+
};
|
|
1144
|
+
For: (value: string) => {
|
|
1145
|
+
readonly _tag: 'For';
|
|
1146
|
+
readonly value: string;
|
|
1147
|
+
};
|
|
1148
|
+
Href: (value: string) => {
|
|
1149
|
+
readonly _tag: 'Href';
|
|
1150
|
+
readonly value: string;
|
|
1151
|
+
};
|
|
1152
|
+
Src: (value: string) => {
|
|
1153
|
+
readonly _tag: 'Src';
|
|
1154
|
+
readonly value: string;
|
|
1155
|
+
};
|
|
1156
|
+
Alt: (value: string) => {
|
|
1157
|
+
readonly _tag: 'Alt';
|
|
1158
|
+
readonly value: string;
|
|
1159
|
+
};
|
|
1160
|
+
Target: (value: string) => {
|
|
1161
|
+
readonly _tag: 'Target';
|
|
1162
|
+
readonly value: string;
|
|
1163
|
+
};
|
|
1164
|
+
Rel: (value: string) => {
|
|
1165
|
+
readonly _tag: 'Rel';
|
|
1166
|
+
readonly value: string;
|
|
1167
|
+
};
|
|
1168
|
+
Download: (value: string) => {
|
|
1169
|
+
readonly _tag: 'Download';
|
|
1170
|
+
readonly value: string;
|
|
1171
|
+
};
|
|
1172
|
+
Action: (value: string) => {
|
|
1173
|
+
readonly _tag: 'Action';
|
|
1174
|
+
readonly value: string;
|
|
1175
|
+
};
|
|
1176
|
+
Method: (value: string) => {
|
|
1177
|
+
readonly _tag: 'Method';
|
|
1178
|
+
readonly value: string;
|
|
1179
|
+
};
|
|
1180
|
+
Enctype: (value: string) => {
|
|
1181
|
+
readonly _tag: 'Enctype';
|
|
1182
|
+
readonly value: string;
|
|
1183
|
+
};
|
|
1184
|
+
Novalidate: (value: boolean) => {
|
|
1185
|
+
readonly _tag: 'Novalidate';
|
|
1186
|
+
readonly value: boolean;
|
|
1187
|
+
};
|
|
1188
|
+
Role: (value: string) => {
|
|
1189
|
+
readonly _tag: 'Role';
|
|
1190
|
+
readonly value: string;
|
|
1191
|
+
};
|
|
1192
|
+
AriaLabel: (value: string) => {
|
|
1193
|
+
readonly _tag: 'AriaLabel';
|
|
1194
|
+
readonly value: string;
|
|
1195
|
+
};
|
|
1196
|
+
AriaLabelledBy: (value: string) => {
|
|
1197
|
+
readonly _tag: 'AriaLabelledBy';
|
|
1198
|
+
readonly value: string;
|
|
1199
|
+
};
|
|
1200
|
+
AriaDescribedBy: (value: string) => {
|
|
1201
|
+
readonly _tag: 'AriaDescribedBy';
|
|
1202
|
+
readonly value: string;
|
|
1203
|
+
};
|
|
1204
|
+
AriaHidden: (value: boolean) => {
|
|
1205
|
+
readonly _tag: 'AriaHidden';
|
|
1206
|
+
readonly value: boolean;
|
|
1207
|
+
};
|
|
1208
|
+
AriaExpanded: (value: boolean) => {
|
|
1209
|
+
readonly _tag: 'AriaExpanded';
|
|
1210
|
+
readonly value: boolean;
|
|
1211
|
+
};
|
|
1212
|
+
AriaSelected: (value: boolean) => {
|
|
1213
|
+
readonly _tag: 'AriaSelected';
|
|
1214
|
+
readonly value: boolean;
|
|
1215
|
+
};
|
|
1216
|
+
AriaChecked: (value: boolean) => {
|
|
1217
|
+
readonly _tag: 'AriaChecked';
|
|
1218
|
+
readonly value: boolean;
|
|
1219
|
+
};
|
|
1220
|
+
AriaDisabled: (value: boolean) => {
|
|
1221
|
+
readonly _tag: 'AriaDisabled';
|
|
1222
|
+
readonly value: boolean;
|
|
1223
|
+
};
|
|
1224
|
+
AriaRequired: (value: boolean) => {
|
|
1225
|
+
readonly _tag: 'AriaRequired';
|
|
1226
|
+
readonly value: boolean;
|
|
1227
|
+
};
|
|
1228
|
+
AriaInvalid: (value: boolean) => {
|
|
1229
|
+
readonly _tag: 'AriaInvalid';
|
|
1230
|
+
readonly value: boolean;
|
|
1231
|
+
};
|
|
1232
|
+
AriaLive: (value: string) => {
|
|
1233
|
+
readonly _tag: 'AriaLive';
|
|
1234
|
+
readonly value: string;
|
|
1235
|
+
};
|
|
1236
|
+
Attribute: (key: string, value: string) => {
|
|
1237
|
+
readonly _tag: 'Attribute';
|
|
1238
|
+
readonly key: string;
|
|
1239
|
+
readonly value: string;
|
|
1240
|
+
};
|
|
1241
|
+
DataAttribute: (key: string, value: string) => {
|
|
1242
|
+
readonly _tag: 'DataAttribute';
|
|
1243
|
+
readonly key: string;
|
|
1244
|
+
readonly value: string;
|
|
1245
|
+
};
|
|
1246
|
+
Style: (value: Record<string, string>) => {
|
|
1247
|
+
readonly _tag: 'Style';
|
|
1248
|
+
readonly value: Record<string, string>;
|
|
1249
|
+
};
|
|
1250
|
+
InnerHTML: (value: string) => {
|
|
1251
|
+
readonly _tag: 'InnerHTML';
|
|
1252
|
+
readonly value: string;
|
|
1253
|
+
};
|
|
1254
|
+
ViewBox: (value: string) => {
|
|
1255
|
+
readonly _tag: 'ViewBox';
|
|
1256
|
+
readonly value: string;
|
|
1257
|
+
};
|
|
1258
|
+
Xmlns: (value: string) => {
|
|
1259
|
+
readonly _tag: 'Xmlns';
|
|
1260
|
+
readonly value: string;
|
|
1261
|
+
};
|
|
1262
|
+
Fill: (value: string) => {
|
|
1263
|
+
readonly _tag: 'Fill';
|
|
1264
|
+
readonly value: string;
|
|
1265
|
+
};
|
|
1266
|
+
FillRule: (value: string) => {
|
|
1267
|
+
readonly _tag: 'FillRule';
|
|
1268
|
+
readonly value: string;
|
|
1269
|
+
};
|
|
1270
|
+
ClipRule: (value: string) => {
|
|
1271
|
+
readonly _tag: 'ClipRule';
|
|
1272
|
+
readonly value: string;
|
|
1273
|
+
};
|
|
1274
|
+
Stroke: (value: string) => {
|
|
1275
|
+
readonly _tag: 'Stroke';
|
|
1276
|
+
readonly value: string;
|
|
1277
|
+
};
|
|
1278
|
+
StrokeWidth: (value: string) => {
|
|
1279
|
+
readonly _tag: 'StrokeWidth';
|
|
1280
|
+
readonly value: string;
|
|
1281
|
+
};
|
|
1282
|
+
StrokeLinecap: (value: string) => {
|
|
1283
|
+
readonly _tag: 'StrokeLinecap';
|
|
1284
|
+
readonly value: string;
|
|
1285
|
+
};
|
|
1286
|
+
StrokeLinejoin: (value: string) => {
|
|
1287
|
+
readonly _tag: 'StrokeLinejoin';
|
|
1288
|
+
readonly value: string;
|
|
1289
|
+
};
|
|
1290
|
+
D: (value: string) => {
|
|
1291
|
+
readonly _tag: 'D';
|
|
1292
|
+
readonly value: string;
|
|
1293
|
+
};
|
|
1294
|
+
Cx: (value: string) => {
|
|
1295
|
+
readonly _tag: 'Cx';
|
|
1296
|
+
readonly value: string;
|
|
1297
|
+
};
|
|
1298
|
+
Cy: (value: string) => {
|
|
1299
|
+
readonly _tag: 'Cy';
|
|
1300
|
+
readonly value: string;
|
|
1301
|
+
};
|
|
1302
|
+
R: (value: string) => {
|
|
1303
|
+
readonly _tag: 'R';
|
|
1304
|
+
readonly value: string;
|
|
1305
|
+
};
|
|
1306
|
+
X: (value: string) => {
|
|
1307
|
+
readonly _tag: 'X';
|
|
1308
|
+
readonly value: string;
|
|
1309
|
+
};
|
|
1310
|
+
Y: (value: string) => {
|
|
1311
|
+
readonly _tag: 'Y';
|
|
1312
|
+
readonly value: string;
|
|
1313
|
+
};
|
|
1314
|
+
Width: (value: string) => {
|
|
1315
|
+
readonly _tag: 'Width';
|
|
1316
|
+
readonly value: string;
|
|
1317
|
+
};
|
|
1318
|
+
Height: (value: string) => {
|
|
1319
|
+
readonly _tag: 'Height';
|
|
1320
|
+
readonly value: string;
|
|
1321
|
+
};
|
|
1322
|
+
X1: (value: string) => {
|
|
1323
|
+
readonly _tag: 'X1';
|
|
1324
|
+
readonly value: string;
|
|
1325
|
+
};
|
|
1326
|
+
Y1: (value: string) => {
|
|
1327
|
+
readonly _tag: 'Y1';
|
|
1328
|
+
readonly value: string;
|
|
1329
|
+
};
|
|
1330
|
+
X2: (value: string) => {
|
|
1331
|
+
readonly _tag: 'X2';
|
|
1332
|
+
readonly value: string;
|
|
1333
|
+
};
|
|
1334
|
+
Y2: (value: string) => {
|
|
1335
|
+
readonly _tag: 'Y2';
|
|
1336
|
+
readonly value: string;
|
|
1337
|
+
};
|
|
1338
|
+
Points: (value: string) => {
|
|
1339
|
+
readonly _tag: 'Points';
|
|
1340
|
+
readonly value: string;
|
|
1341
|
+
};
|
|
1342
|
+
Transform: (value: string) => {
|
|
1343
|
+
readonly _tag: 'Transform';
|
|
1344
|
+
readonly value: string;
|
|
1345
|
+
};
|
|
1346
|
+
Opacity: (value: string) => {
|
|
1347
|
+
readonly _tag: 'Opacity';
|
|
1348
|
+
readonly value: string;
|
|
1349
|
+
};
|
|
1350
|
+
StrokeDasharray: (value: string) => {
|
|
1351
|
+
readonly _tag: 'StrokeDasharray';
|
|
1352
|
+
readonly value: string;
|
|
1353
|
+
};
|
|
1354
|
+
StrokeDashoffset: (value: string) => {
|
|
1355
|
+
readonly _tag: 'StrokeDashoffset';
|
|
1356
|
+
readonly value: string;
|
|
1357
|
+
};
|
|
1345
1358
|
};
|
|
1346
|
-
export declare const
|
|
1347
|
-
|
|
1348
|
-
|
|
1359
|
+
export declare const htmlAttributes: <Message>() => HtmlAttributes<Message>;
|
|
1360
|
+
export declare const html: <Message>() => {
|
|
1361
|
+
empty: Effect.Effect<null, never, never>;
|
|
1362
|
+
keyed: (tagName: TagName) => (key: string, attributes?: readonly AttributeWithoutKey<Message>[], children?: ReadonlyArray<Child>) => Html;
|
|
1363
|
+
Key: (value: string) => {
|
|
1364
|
+
readonly _tag: "Key";
|
|
1365
|
+
readonly value: string;
|
|
1366
|
+
};
|
|
1367
|
+
Class: (value: string) => {
|
|
1368
|
+
readonly _tag: "Class";
|
|
1369
|
+
readonly value: string;
|
|
1370
|
+
};
|
|
1371
|
+
Id: (value: string) => {
|
|
1372
|
+
readonly _tag: "Id";
|
|
1373
|
+
readonly value: string;
|
|
1374
|
+
};
|
|
1375
|
+
Title: (value: string) => {
|
|
1376
|
+
readonly _tag: "Title";
|
|
1377
|
+
readonly value: string;
|
|
1378
|
+
};
|
|
1379
|
+
Lang: (value: string) => {
|
|
1380
|
+
readonly _tag: "Lang";
|
|
1381
|
+
readonly value: string;
|
|
1382
|
+
};
|
|
1383
|
+
Dir: (value: string) => {
|
|
1384
|
+
readonly _tag: "Dir";
|
|
1385
|
+
readonly value: string;
|
|
1386
|
+
};
|
|
1387
|
+
Tabindex: (value: number) => {
|
|
1388
|
+
readonly _tag: "Tabindex";
|
|
1389
|
+
readonly value: number;
|
|
1390
|
+
};
|
|
1391
|
+
Hidden: (value: boolean) => {
|
|
1392
|
+
readonly _tag: "Hidden";
|
|
1393
|
+
readonly value: boolean;
|
|
1394
|
+
};
|
|
1395
|
+
OnClick: (message: Message) => {
|
|
1396
|
+
readonly _tag: "OnClick";
|
|
1397
|
+
readonly message: Message;
|
|
1398
|
+
};
|
|
1399
|
+
OnDblClick: (message: Message) => {
|
|
1400
|
+
readonly _tag: "OnDblClick";
|
|
1401
|
+
readonly message: Message;
|
|
1402
|
+
};
|
|
1403
|
+
OnMouseDown: (message: Message) => {
|
|
1404
|
+
readonly _tag: "OnMouseDown";
|
|
1405
|
+
readonly message: Message;
|
|
1406
|
+
};
|
|
1407
|
+
OnMouseUp: (message: Message) => {
|
|
1408
|
+
readonly _tag: "OnMouseUp";
|
|
1409
|
+
readonly message: Message;
|
|
1410
|
+
};
|
|
1411
|
+
OnMouseEnter: (message: Message) => {
|
|
1412
|
+
readonly _tag: "OnMouseEnter";
|
|
1413
|
+
readonly message: Message;
|
|
1414
|
+
};
|
|
1415
|
+
OnMouseLeave: (message: Message) => {
|
|
1416
|
+
readonly _tag: "OnMouseLeave";
|
|
1417
|
+
readonly message: Message;
|
|
1418
|
+
};
|
|
1419
|
+
OnMouseOver: (message: Message) => {
|
|
1420
|
+
readonly _tag: "OnMouseOver";
|
|
1421
|
+
readonly message: Message;
|
|
1422
|
+
};
|
|
1423
|
+
OnMouseOut: (message: Message) => {
|
|
1424
|
+
readonly _tag: "OnMouseOut";
|
|
1425
|
+
readonly message: Message;
|
|
1426
|
+
};
|
|
1427
|
+
OnMouseMove: (message: Message) => {
|
|
1428
|
+
readonly _tag: "OnMouseMove";
|
|
1429
|
+
readonly message: Message;
|
|
1430
|
+
};
|
|
1431
|
+
OnKeyDown: (f: (key: string) => Message) => {
|
|
1432
|
+
readonly _tag: "OnKeyDown";
|
|
1433
|
+
readonly f: (key: string) => Message;
|
|
1434
|
+
};
|
|
1435
|
+
OnKeyUp: (f: (key: string) => Message) => {
|
|
1436
|
+
readonly _tag: "OnKeyUp";
|
|
1437
|
+
readonly f: (key: string) => Message;
|
|
1438
|
+
};
|
|
1439
|
+
OnKeyPress: (f: (key: string) => Message) => {
|
|
1440
|
+
readonly _tag: "OnKeyPress";
|
|
1441
|
+
readonly f: (key: string) => Message;
|
|
1442
|
+
};
|
|
1443
|
+
OnFocus: (message: Message) => {
|
|
1444
|
+
readonly _tag: "OnFocus";
|
|
1445
|
+
readonly message: Message;
|
|
1446
|
+
};
|
|
1447
|
+
OnBlur: (message: Message) => {
|
|
1448
|
+
readonly _tag: "OnBlur";
|
|
1449
|
+
readonly message: Message;
|
|
1450
|
+
};
|
|
1451
|
+
OnInput: (f: (value: string) => Message) => {
|
|
1452
|
+
readonly _tag: "OnInput";
|
|
1453
|
+
readonly f: (value: string) => Message;
|
|
1454
|
+
};
|
|
1455
|
+
OnChange: (f: (value: string) => Message) => {
|
|
1456
|
+
readonly _tag: "OnChange";
|
|
1457
|
+
readonly f: (value: string) => Message;
|
|
1458
|
+
};
|
|
1459
|
+
OnSubmit: (message: Message) => {
|
|
1460
|
+
readonly _tag: "OnSubmit";
|
|
1461
|
+
readonly message: Message;
|
|
1462
|
+
};
|
|
1463
|
+
OnReset: (message: Message) => {
|
|
1464
|
+
readonly _tag: "OnReset";
|
|
1465
|
+
readonly message: Message;
|
|
1466
|
+
};
|
|
1467
|
+
OnScroll: (message: Message) => {
|
|
1468
|
+
readonly _tag: "OnScroll";
|
|
1469
|
+
readonly message: Message;
|
|
1470
|
+
};
|
|
1471
|
+
OnWheel: (message: Message) => {
|
|
1472
|
+
readonly _tag: "OnWheel";
|
|
1473
|
+
readonly message: Message;
|
|
1474
|
+
};
|
|
1475
|
+
OnCopy: (message: Message) => {
|
|
1476
|
+
readonly _tag: "OnCopy";
|
|
1477
|
+
readonly message: Message;
|
|
1478
|
+
};
|
|
1479
|
+
OnCut: (message: Message) => {
|
|
1480
|
+
readonly _tag: "OnCut";
|
|
1481
|
+
readonly message: Message;
|
|
1482
|
+
};
|
|
1483
|
+
OnPaste: (message: Message) => {
|
|
1484
|
+
readonly _tag: "OnPaste";
|
|
1485
|
+
readonly message: Message;
|
|
1486
|
+
};
|
|
1487
|
+
Value: (value: string) => {
|
|
1488
|
+
readonly _tag: "Value";
|
|
1489
|
+
readonly value: string;
|
|
1490
|
+
};
|
|
1491
|
+
Checked: (value: boolean) => {
|
|
1492
|
+
readonly _tag: "Checked";
|
|
1493
|
+
readonly value: boolean;
|
|
1494
|
+
};
|
|
1495
|
+
Selected: (value: boolean) => {
|
|
1496
|
+
readonly _tag: "Selected";
|
|
1497
|
+
readonly value: boolean;
|
|
1498
|
+
};
|
|
1499
|
+
Placeholder: (value: string) => {
|
|
1500
|
+
readonly _tag: "Placeholder";
|
|
1501
|
+
readonly value: string;
|
|
1502
|
+
};
|
|
1503
|
+
Name: (value: string) => {
|
|
1504
|
+
readonly _tag: "Name";
|
|
1505
|
+
readonly value: string;
|
|
1506
|
+
};
|
|
1507
|
+
Disabled: (value: boolean) => {
|
|
1508
|
+
readonly _tag: "Disabled";
|
|
1509
|
+
readonly value: boolean;
|
|
1510
|
+
};
|
|
1511
|
+
Readonly: (value: boolean) => {
|
|
1512
|
+
readonly _tag: "Readonly";
|
|
1513
|
+
readonly value: boolean;
|
|
1514
|
+
};
|
|
1515
|
+
Required: (value: boolean) => {
|
|
1516
|
+
readonly _tag: "Required";
|
|
1517
|
+
readonly value: boolean;
|
|
1518
|
+
};
|
|
1519
|
+
Autofocus: (value: boolean) => {
|
|
1520
|
+
readonly _tag: "Autofocus";
|
|
1521
|
+
readonly value: boolean;
|
|
1522
|
+
};
|
|
1523
|
+
Spellcheck: (value: boolean) => {
|
|
1524
|
+
readonly _tag: "Spellcheck";
|
|
1525
|
+
readonly value: boolean;
|
|
1526
|
+
};
|
|
1527
|
+
Autocorrect: (value: string) => {
|
|
1528
|
+
readonly _tag: "Autocorrect";
|
|
1529
|
+
readonly value: string;
|
|
1530
|
+
};
|
|
1531
|
+
Autocapitalize: (value: string) => {
|
|
1532
|
+
readonly _tag: "Autocapitalize";
|
|
1533
|
+
readonly value: string;
|
|
1534
|
+
};
|
|
1535
|
+
InputMode: (value: string) => {
|
|
1536
|
+
readonly _tag: "InputMode";
|
|
1537
|
+
readonly value: string;
|
|
1538
|
+
};
|
|
1539
|
+
EnterKeyHint: (value: string) => {
|
|
1540
|
+
readonly _tag: "EnterKeyHint";
|
|
1541
|
+
readonly value: string;
|
|
1542
|
+
};
|
|
1543
|
+
Multiple: (value: boolean) => {
|
|
1544
|
+
readonly _tag: "Multiple";
|
|
1545
|
+
readonly value: boolean;
|
|
1546
|
+
};
|
|
1547
|
+
Type: (value: string) => {
|
|
1548
|
+
readonly _tag: "Type";
|
|
1549
|
+
readonly value: string;
|
|
1550
|
+
};
|
|
1551
|
+
Accept: (value: string) => {
|
|
1552
|
+
readonly _tag: "Accept";
|
|
1553
|
+
readonly value: string;
|
|
1554
|
+
};
|
|
1555
|
+
Autocomplete: (value: string) => {
|
|
1556
|
+
readonly _tag: "Autocomplete";
|
|
1557
|
+
readonly value: string;
|
|
1558
|
+
};
|
|
1559
|
+
Pattern: (value: string) => {
|
|
1560
|
+
readonly _tag: "Pattern";
|
|
1561
|
+
readonly value: string;
|
|
1562
|
+
};
|
|
1563
|
+
Maxlength: (value: number) => {
|
|
1564
|
+
readonly _tag: "Maxlength";
|
|
1565
|
+
readonly value: number;
|
|
1566
|
+
};
|
|
1567
|
+
Minlength: (value: number) => {
|
|
1568
|
+
readonly _tag: "Minlength";
|
|
1569
|
+
readonly value: number;
|
|
1570
|
+
};
|
|
1571
|
+
Size: (value: number) => {
|
|
1572
|
+
readonly _tag: "Size";
|
|
1573
|
+
readonly value: number;
|
|
1574
|
+
};
|
|
1575
|
+
Cols: (value: number) => {
|
|
1576
|
+
readonly _tag: "Cols";
|
|
1577
|
+
readonly value: number;
|
|
1578
|
+
};
|
|
1579
|
+
Rows: (value: number) => {
|
|
1580
|
+
readonly _tag: "Rows";
|
|
1581
|
+
readonly value: number;
|
|
1582
|
+
};
|
|
1583
|
+
Max: (value: string) => {
|
|
1584
|
+
readonly _tag: "Max";
|
|
1585
|
+
readonly value: string;
|
|
1586
|
+
};
|
|
1587
|
+
Min: (value: string) => {
|
|
1588
|
+
readonly _tag: "Min";
|
|
1589
|
+
readonly value: string;
|
|
1590
|
+
};
|
|
1591
|
+
Step: (value: string) => {
|
|
1592
|
+
readonly _tag: "Step";
|
|
1593
|
+
readonly value: string;
|
|
1594
|
+
};
|
|
1595
|
+
For: (value: string) => {
|
|
1596
|
+
readonly _tag: "For";
|
|
1597
|
+
readonly value: string;
|
|
1598
|
+
};
|
|
1599
|
+
Href: (value: string) => {
|
|
1600
|
+
readonly _tag: "Href";
|
|
1601
|
+
readonly value: string;
|
|
1602
|
+
};
|
|
1603
|
+
Src: (value: string) => {
|
|
1604
|
+
readonly _tag: "Src";
|
|
1605
|
+
readonly value: string;
|
|
1606
|
+
};
|
|
1607
|
+
Alt: (value: string) => {
|
|
1608
|
+
readonly _tag: "Alt";
|
|
1609
|
+
readonly value: string;
|
|
1610
|
+
};
|
|
1611
|
+
Target: (value: string) => {
|
|
1612
|
+
readonly _tag: "Target";
|
|
1613
|
+
readonly value: string;
|
|
1614
|
+
};
|
|
1615
|
+
Rel: (value: string) => {
|
|
1616
|
+
readonly _tag: "Rel";
|
|
1617
|
+
readonly value: string;
|
|
1618
|
+
};
|
|
1619
|
+
Download: (value: string) => {
|
|
1620
|
+
readonly _tag: "Download";
|
|
1621
|
+
readonly value: string;
|
|
1622
|
+
};
|
|
1623
|
+
Action: (value: string) => {
|
|
1624
|
+
readonly _tag: "Action";
|
|
1625
|
+
readonly value: string;
|
|
1626
|
+
};
|
|
1627
|
+
Method: (value: string) => {
|
|
1628
|
+
readonly _tag: "Method";
|
|
1629
|
+
readonly value: string;
|
|
1630
|
+
};
|
|
1631
|
+
Enctype: (value: string) => {
|
|
1632
|
+
readonly _tag: "Enctype";
|
|
1633
|
+
readonly value: string;
|
|
1634
|
+
};
|
|
1635
|
+
Novalidate: (value: boolean) => {
|
|
1636
|
+
readonly _tag: "Novalidate";
|
|
1637
|
+
readonly value: boolean;
|
|
1638
|
+
};
|
|
1639
|
+
Role: (value: string) => {
|
|
1640
|
+
readonly _tag: "Role";
|
|
1641
|
+
readonly value: string;
|
|
1642
|
+
};
|
|
1643
|
+
AriaLabel: (value: string) => {
|
|
1644
|
+
readonly _tag: "AriaLabel";
|
|
1645
|
+
readonly value: string;
|
|
1646
|
+
};
|
|
1647
|
+
AriaLabelledBy: (value: string) => {
|
|
1648
|
+
readonly _tag: "AriaLabelledBy";
|
|
1649
|
+
readonly value: string;
|
|
1650
|
+
};
|
|
1651
|
+
AriaDescribedBy: (value: string) => {
|
|
1652
|
+
readonly _tag: "AriaDescribedBy";
|
|
1653
|
+
readonly value: string;
|
|
1654
|
+
};
|
|
1655
|
+
AriaHidden: (value: boolean) => {
|
|
1656
|
+
readonly _tag: "AriaHidden";
|
|
1657
|
+
readonly value: boolean;
|
|
1658
|
+
};
|
|
1659
|
+
AriaExpanded: (value: boolean) => {
|
|
1660
|
+
readonly _tag: "AriaExpanded";
|
|
1661
|
+
readonly value: boolean;
|
|
1662
|
+
};
|
|
1663
|
+
AriaSelected: (value: boolean) => {
|
|
1664
|
+
readonly _tag: "AriaSelected";
|
|
1665
|
+
readonly value: boolean;
|
|
1666
|
+
};
|
|
1667
|
+
AriaChecked: (value: boolean) => {
|
|
1668
|
+
readonly _tag: "AriaChecked";
|
|
1669
|
+
readonly value: boolean;
|
|
1670
|
+
};
|
|
1671
|
+
AriaDisabled: (value: boolean) => {
|
|
1672
|
+
readonly _tag: "AriaDisabled";
|
|
1673
|
+
readonly value: boolean;
|
|
1674
|
+
};
|
|
1675
|
+
AriaRequired: (value: boolean) => {
|
|
1676
|
+
readonly _tag: "AriaRequired";
|
|
1677
|
+
readonly value: boolean;
|
|
1678
|
+
};
|
|
1679
|
+
AriaInvalid: (value: boolean) => {
|
|
1680
|
+
readonly _tag: "AriaInvalid";
|
|
1681
|
+
readonly value: boolean;
|
|
1682
|
+
};
|
|
1683
|
+
AriaLive: (value: string) => {
|
|
1684
|
+
readonly _tag: "AriaLive";
|
|
1685
|
+
readonly value: string;
|
|
1686
|
+
};
|
|
1687
|
+
Attribute: (key: string, value: string) => {
|
|
1688
|
+
readonly _tag: "Attribute";
|
|
1689
|
+
readonly key: string;
|
|
1690
|
+
readonly value: string;
|
|
1691
|
+
};
|
|
1692
|
+
DataAttribute: (key: string, value: string) => {
|
|
1693
|
+
readonly _tag: "DataAttribute";
|
|
1694
|
+
readonly key: string;
|
|
1695
|
+
readonly value: string;
|
|
1696
|
+
};
|
|
1697
|
+
Style: (value: Record<string, string>) => {
|
|
1698
|
+
readonly _tag: "Style";
|
|
1699
|
+
readonly value: Record<string, string>;
|
|
1700
|
+
};
|
|
1701
|
+
InnerHTML: (value: string) => {
|
|
1702
|
+
readonly _tag: "InnerHTML";
|
|
1703
|
+
readonly value: string;
|
|
1704
|
+
};
|
|
1705
|
+
ViewBox: (value: string) => {
|
|
1706
|
+
readonly _tag: "ViewBox";
|
|
1707
|
+
readonly value: string;
|
|
1708
|
+
};
|
|
1709
|
+
Xmlns: (value: string) => {
|
|
1710
|
+
readonly _tag: "Xmlns";
|
|
1711
|
+
readonly value: string;
|
|
1712
|
+
};
|
|
1713
|
+
Fill: (value: string) => {
|
|
1714
|
+
readonly _tag: "Fill";
|
|
1715
|
+
readonly value: string;
|
|
1716
|
+
};
|
|
1717
|
+
FillRule: (value: string) => {
|
|
1718
|
+
readonly _tag: "FillRule";
|
|
1719
|
+
readonly value: string;
|
|
1720
|
+
};
|
|
1721
|
+
ClipRule: (value: string) => {
|
|
1722
|
+
readonly _tag: "ClipRule";
|
|
1723
|
+
readonly value: string;
|
|
1724
|
+
};
|
|
1725
|
+
Stroke: (value: string) => {
|
|
1726
|
+
readonly _tag: "Stroke";
|
|
1727
|
+
readonly value: string;
|
|
1728
|
+
};
|
|
1729
|
+
StrokeWidth: (value: string) => {
|
|
1730
|
+
readonly _tag: "StrokeWidth";
|
|
1731
|
+
readonly value: string;
|
|
1732
|
+
};
|
|
1733
|
+
StrokeLinecap: (value: string) => {
|
|
1734
|
+
readonly _tag: "StrokeLinecap";
|
|
1735
|
+
readonly value: string;
|
|
1736
|
+
};
|
|
1737
|
+
StrokeLinejoin: (value: string) => {
|
|
1738
|
+
readonly _tag: "StrokeLinejoin";
|
|
1739
|
+
readonly value: string;
|
|
1740
|
+
};
|
|
1741
|
+
D: (value: string) => {
|
|
1742
|
+
readonly _tag: "D";
|
|
1743
|
+
readonly value: string;
|
|
1744
|
+
};
|
|
1745
|
+
Cx: (value: string) => {
|
|
1746
|
+
readonly _tag: "Cx";
|
|
1747
|
+
readonly value: string;
|
|
1748
|
+
};
|
|
1749
|
+
Cy: (value: string) => {
|
|
1750
|
+
readonly _tag: "Cy";
|
|
1751
|
+
readonly value: string;
|
|
1752
|
+
};
|
|
1753
|
+
R: (value: string) => {
|
|
1754
|
+
readonly _tag: "R";
|
|
1755
|
+
readonly value: string;
|
|
1756
|
+
};
|
|
1757
|
+
X: (value: string) => {
|
|
1758
|
+
readonly _tag: "X";
|
|
1759
|
+
readonly value: string;
|
|
1760
|
+
};
|
|
1761
|
+
Y: (value: string) => {
|
|
1762
|
+
readonly _tag: "Y";
|
|
1763
|
+
readonly value: string;
|
|
1764
|
+
};
|
|
1765
|
+
Width: (value: string) => {
|
|
1766
|
+
readonly _tag: "Width";
|
|
1767
|
+
readonly value: string;
|
|
1768
|
+
};
|
|
1769
|
+
Height: (value: string) => {
|
|
1770
|
+
readonly _tag: "Height";
|
|
1771
|
+
readonly value: string;
|
|
1772
|
+
};
|
|
1773
|
+
X1: (value: string) => {
|
|
1774
|
+
readonly _tag: "X1";
|
|
1775
|
+
readonly value: string;
|
|
1776
|
+
};
|
|
1777
|
+
Y1: (value: string) => {
|
|
1778
|
+
readonly _tag: "Y1";
|
|
1779
|
+
readonly value: string;
|
|
1780
|
+
};
|
|
1781
|
+
X2: (value: string) => {
|
|
1782
|
+
readonly _tag: "X2";
|
|
1783
|
+
readonly value: string;
|
|
1784
|
+
};
|
|
1785
|
+
Y2: (value: string) => {
|
|
1786
|
+
readonly _tag: "Y2";
|
|
1787
|
+
readonly value: string;
|
|
1788
|
+
};
|
|
1789
|
+
Points: (value: string) => {
|
|
1790
|
+
readonly _tag: "Points";
|
|
1791
|
+
readonly value: string;
|
|
1792
|
+
};
|
|
1793
|
+
Transform: (value: string) => {
|
|
1794
|
+
readonly _tag: "Transform";
|
|
1795
|
+
readonly value: string;
|
|
1796
|
+
};
|
|
1797
|
+
Opacity: (value: string) => {
|
|
1798
|
+
readonly _tag: "Opacity";
|
|
1799
|
+
readonly value: string;
|
|
1800
|
+
};
|
|
1801
|
+
StrokeDasharray: (value: string) => {
|
|
1802
|
+
readonly _tag: "StrokeDasharray";
|
|
1803
|
+
readonly value: string;
|
|
1804
|
+
};
|
|
1805
|
+
StrokeDashoffset: (value: string) => {
|
|
1806
|
+
readonly _tag: "StrokeDashoffset";
|
|
1807
|
+
readonly value: string;
|
|
1808
|
+
};
|
|
1809
|
+
symbol: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1810
|
+
object: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1811
|
+
search: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1812
|
+
link: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1813
|
+
small: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1814
|
+
sub: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1815
|
+
sup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1816
|
+
map: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1817
|
+
filter: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1818
|
+
pre: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1819
|
+
input: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1820
|
+
progress: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1821
|
+
select: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1822
|
+
a: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1823
|
+
abbr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1824
|
+
address: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1825
|
+
area: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1826
|
+
article: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1827
|
+
aside: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1828
|
+
audio: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1829
|
+
b: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1830
|
+
base: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1831
|
+
bdi: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1832
|
+
bdo: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1833
|
+
blockquote: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1834
|
+
body: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1835
|
+
br: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1836
|
+
button: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1837
|
+
canvas: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1838
|
+
caption: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1839
|
+
cite: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1840
|
+
code: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1841
|
+
col: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1842
|
+
colgroup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1843
|
+
data: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1844
|
+
datalist: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1845
|
+
dd: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1846
|
+
del: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1847
|
+
details: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1848
|
+
dfn: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1849
|
+
dialog: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1850
|
+
div: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1851
|
+
dl: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1852
|
+
dt: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1853
|
+
em: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1854
|
+
embed: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1855
|
+
fieldset: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1856
|
+
figcaption: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1857
|
+
figure: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1858
|
+
footer: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1859
|
+
form: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1860
|
+
h1: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1861
|
+
h2: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1862
|
+
h3: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1863
|
+
h4: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1864
|
+
h5: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1865
|
+
h6: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1866
|
+
head: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1867
|
+
header: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1868
|
+
hgroup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1869
|
+
hr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1870
|
+
html: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1871
|
+
i: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1872
|
+
iframe: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1873
|
+
img: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1874
|
+
ins: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1875
|
+
kbd: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1876
|
+
label: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1877
|
+
legend: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1878
|
+
li: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1879
|
+
main: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1880
|
+
mark: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1881
|
+
menu: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1882
|
+
meta: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1883
|
+
meter: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1884
|
+
nav: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1885
|
+
noscript: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1886
|
+
ol: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1887
|
+
optgroup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1888
|
+
option: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1889
|
+
output: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1890
|
+
p: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1891
|
+
picture: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1892
|
+
q: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1893
|
+
rp: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1894
|
+
rt: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1895
|
+
ruby: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1896
|
+
s: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1897
|
+
samp: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1898
|
+
script: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1899
|
+
section: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1900
|
+
slot: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1901
|
+
source: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1902
|
+
span: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1903
|
+
strong: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1904
|
+
style: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1905
|
+
summary: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1906
|
+
table: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1907
|
+
tbody: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1908
|
+
td: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1909
|
+
template: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1910
|
+
textarea: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1911
|
+
tfoot: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1912
|
+
th: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1913
|
+
thead: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1914
|
+
time: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1915
|
+
title: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1916
|
+
tr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1917
|
+
track: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1918
|
+
u: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1919
|
+
ul: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1920
|
+
var: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1921
|
+
video: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1922
|
+
wbr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1923
|
+
view: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1924
|
+
switch: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1925
|
+
portal: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1926
|
+
animate: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1927
|
+
animateMotion: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1928
|
+
animateTransform: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1929
|
+
circle: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1930
|
+
clipPath: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1931
|
+
defs: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1932
|
+
desc: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1933
|
+
ellipse: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1934
|
+
feBlend: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1935
|
+
feColorMatrix: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1936
|
+
feComponentTransfer: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1937
|
+
feComposite: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1938
|
+
feConvolveMatrix: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1939
|
+
feDiffuseLighting: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1940
|
+
feDisplacementMap: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1941
|
+
feDistantLight: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1942
|
+
feDropShadow: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1943
|
+
feFlood: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1944
|
+
feFuncA: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1945
|
+
feFuncB: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1946
|
+
feFuncG: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1947
|
+
feFuncR: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1948
|
+
feGaussianBlur: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1949
|
+
feImage: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1950
|
+
feMerge: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1951
|
+
feMergeNode: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1952
|
+
feMorphology: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1953
|
+
feOffset: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1954
|
+
fePointLight: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1955
|
+
feSpecularLighting: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1956
|
+
feSpotLight: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1957
|
+
feTile: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1958
|
+
feTurbulence: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1959
|
+
foreignObject: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1960
|
+
g: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1961
|
+
image: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1962
|
+
line: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1963
|
+
linearGradient: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1964
|
+
marker: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1965
|
+
mask: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1966
|
+
metadata: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1967
|
+
mpath: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1968
|
+
path: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1969
|
+
pattern: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1970
|
+
polygon: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1971
|
+
polyline: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1972
|
+
radialGradient: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1973
|
+
rect: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1974
|
+
set: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1975
|
+
stop: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1976
|
+
svg: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1977
|
+
text: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1978
|
+
textPath: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1979
|
+
tspan: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1980
|
+
use: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1981
|
+
annotation: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1982
|
+
"annotation-xml": ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1983
|
+
math: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1984
|
+
maction: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1985
|
+
menclose: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1986
|
+
merror: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1987
|
+
mfenced: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1988
|
+
mfrac: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1989
|
+
mglyph: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1990
|
+
mi: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1991
|
+
mlabeledtr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1992
|
+
mlongdiv: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1993
|
+
mmultiscripts: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1994
|
+
mn: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1995
|
+
mo: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1996
|
+
mover: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1997
|
+
mpadded: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1998
|
+
mphantom: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1999
|
+
mprescripts: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2000
|
+
mroot: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2001
|
+
mrow: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2002
|
+
ms: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2003
|
+
mscarries: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2004
|
+
mscarry: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2005
|
+
msgroup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2006
|
+
msline: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2007
|
+
mspace: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2008
|
+
msqrt: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2009
|
+
msrow: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2010
|
+
mstack: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2011
|
+
mstyle: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2012
|
+
msub: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2013
|
+
msubsup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2014
|
+
msup: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2015
|
+
mtable: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2016
|
+
mtd: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2017
|
+
mtext: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2018
|
+
mtr: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2019
|
+
munder: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2020
|
+
munderover: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
2021
|
+
semantics: ElementFunction<Message> | VoidElementFunction<Message>;
|
|
1349
2022
|
};
|
|
1350
|
-
export declare const createElement: <Message>(tagName: TagName, attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1351
|
-
type AttributeWithoutKey<Message> = Exclude<Attribute<Message>, {
|
|
1352
|
-
_tag: 'Key';
|
|
1353
|
-
}>;
|
|
1354
|
-
export declare const keyed: (tagName: TagName) => <Message>(key: string, attributes?: ReadonlyArray<AttributeWithoutKey<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1355
|
-
export declare const a: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1356
|
-
export declare const abbr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1357
|
-
export declare const address: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1358
|
-
export declare const area: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1359
|
-
export declare const article: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1360
|
-
export declare const aside: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1361
|
-
export declare const audio: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1362
|
-
export declare const b: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1363
|
-
export declare const base: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1364
|
-
export declare const bdi: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1365
|
-
export declare const bdo: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1366
|
-
export declare const blockquote: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1367
|
-
export declare const body: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1368
|
-
export declare const br: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1369
|
-
export declare const button: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1370
|
-
export declare const canvas: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1371
|
-
export declare const caption: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1372
|
-
export declare const cite: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1373
|
-
export declare const code: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1374
|
-
export declare const col: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1375
|
-
export declare const colgroup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1376
|
-
export declare const data: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1377
|
-
export declare const datalist: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1378
|
-
export declare const dd: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1379
|
-
export declare const del: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1380
|
-
export declare const details: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1381
|
-
export declare const dfn: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1382
|
-
export declare const dialog: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1383
|
-
export declare const div: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1384
|
-
export declare const dl: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1385
|
-
export declare const dt: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1386
|
-
export declare const em: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1387
|
-
export declare const embed: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1388
|
-
export declare const fieldset: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1389
|
-
export declare const figcaption: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1390
|
-
export declare const figure: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1391
|
-
export declare const footer: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1392
|
-
export declare const form: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1393
|
-
export declare const h1: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1394
|
-
export declare const h2: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1395
|
-
export declare const h3: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1396
|
-
export declare const h4: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1397
|
-
export declare const h5: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1398
|
-
export declare const h6: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1399
|
-
export declare const head: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1400
|
-
export declare const header: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1401
|
-
export declare const hgroup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1402
|
-
export declare const hr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1403
|
-
export declare const html: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1404
|
-
export declare const i: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1405
|
-
export declare const iframe: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1406
|
-
export declare const img: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1407
|
-
export declare const input: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1408
|
-
export declare const ins: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1409
|
-
export declare const kbd: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1410
|
-
export declare const label: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1411
|
-
export declare const legend: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1412
|
-
export declare const li: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1413
|
-
export declare const link: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1414
|
-
export declare const main: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1415
|
-
export declare const map: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1416
|
-
export declare const mark: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1417
|
-
export declare const menu: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1418
|
-
export declare const meta: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1419
|
-
export declare const meter: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1420
|
-
export declare const nav: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1421
|
-
export declare const noscript: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1422
|
-
export declare const object: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1423
|
-
export declare const ol: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1424
|
-
export declare const optgroup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1425
|
-
export declare const option: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1426
|
-
export declare const output: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1427
|
-
export declare const p: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1428
|
-
export declare const picture: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1429
|
-
export declare const portal: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1430
|
-
export declare const pre: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1431
|
-
export declare const progress: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1432
|
-
export declare const q: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1433
|
-
export declare const rp: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1434
|
-
export declare const rt: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1435
|
-
export declare const ruby: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1436
|
-
export declare const s: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1437
|
-
export declare const samp: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1438
|
-
export declare const script: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1439
|
-
export declare const search: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1440
|
-
export declare const section: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1441
|
-
export declare const select: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1442
|
-
export declare const slot: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1443
|
-
export declare const small: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1444
|
-
export declare const source: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1445
|
-
export declare const span: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1446
|
-
export declare const strong: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1447
|
-
export declare const style: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1448
|
-
export declare const sub: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1449
|
-
export declare const summary: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1450
|
-
export declare const sup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1451
|
-
export declare const table: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1452
|
-
export declare const tbody: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1453
|
-
export declare const td: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1454
|
-
export declare const template: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1455
|
-
export declare const textarea: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1456
|
-
export declare const tfoot: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1457
|
-
export declare const th: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1458
|
-
export declare const thead: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1459
|
-
export declare const time: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1460
|
-
export declare const title: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1461
|
-
export declare const tr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1462
|
-
export declare const track: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1463
|
-
export declare const u: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1464
|
-
export declare const ul: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1465
|
-
export declare const var_: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1466
|
-
export declare const video: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1467
|
-
export declare const wbr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1468
|
-
export declare const animate: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1469
|
-
export declare const animateMotion: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1470
|
-
export declare const animateTransform: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1471
|
-
export declare const circle: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1472
|
-
export declare const clipPath: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1473
|
-
export declare const defs: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1474
|
-
export declare const desc: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1475
|
-
export declare const ellipse: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1476
|
-
export declare const feBlend: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1477
|
-
export declare const feColorMatrix: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1478
|
-
export declare const feComponentTransfer: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1479
|
-
export declare const feComposite: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1480
|
-
export declare const feConvolveMatrix: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1481
|
-
export declare const feDiffuseLighting: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1482
|
-
export declare const feDisplacementMap: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1483
|
-
export declare const feDistantLight: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1484
|
-
export declare const feDropShadow: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1485
|
-
export declare const feFlood: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1486
|
-
export declare const feFuncA: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1487
|
-
export declare const feFuncB: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1488
|
-
export declare const feFuncG: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1489
|
-
export declare const feFuncR: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1490
|
-
export declare const feGaussianBlur: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1491
|
-
export declare const feImage: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1492
|
-
export declare const feMerge: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1493
|
-
export declare const feMergeNode: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1494
|
-
export declare const feMorphology: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1495
|
-
export declare const feOffset: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1496
|
-
export declare const fePointLight: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1497
|
-
export declare const feSpecularLighting: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1498
|
-
export declare const feSpotLight: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1499
|
-
export declare const feTile: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1500
|
-
export declare const feTurbulence: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1501
|
-
export declare const filter: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1502
|
-
export declare const foreignObject: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1503
|
-
export declare const g: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1504
|
-
export declare const image: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1505
|
-
export declare const line: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1506
|
-
export declare const linearGradient: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1507
|
-
export declare const marker: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1508
|
-
export declare const mask: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1509
|
-
export declare const metadata: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1510
|
-
export declare const mpath: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1511
|
-
export declare const path: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1512
|
-
export declare const pattern: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1513
|
-
export declare const polygon: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1514
|
-
export declare const polyline: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1515
|
-
export declare const radialGradient: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1516
|
-
export declare const rect: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1517
|
-
export declare const stop: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1518
|
-
export declare const svg: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1519
|
-
export declare const switch_: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1520
|
-
export declare const symbol: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1521
|
-
export declare const text: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1522
|
-
export declare const textPath: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1523
|
-
export declare const tspan: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1524
|
-
export declare const use: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1525
|
-
export declare const view: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1526
|
-
export declare const annotation: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1527
|
-
export declare const annotationXml: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1528
|
-
export declare const math: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1529
|
-
export declare const maction: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1530
|
-
export declare const menclose: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1531
|
-
export declare const merror: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1532
|
-
export declare const mfenced: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1533
|
-
export declare const mfrac: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1534
|
-
export declare const mglyph: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1535
|
-
export declare const mi: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1536
|
-
export declare const mlabeledtr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1537
|
-
export declare const mlongdiv: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1538
|
-
export declare const mmultiscripts: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1539
|
-
export declare const mn: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1540
|
-
export declare const mo: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1541
|
-
export declare const mover: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1542
|
-
export declare const mpadded: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1543
|
-
export declare const mphantom: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1544
|
-
export declare const mroot: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1545
|
-
export declare const mrow: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1546
|
-
export declare const ms: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1547
|
-
export declare const mscarries: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1548
|
-
export declare const mscarry: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1549
|
-
export declare const msgroup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1550
|
-
export declare const msline: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1551
|
-
export declare const mspace: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1552
|
-
export declare const msqrt: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1553
|
-
export declare const msrow: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1554
|
-
export declare const mstack: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1555
|
-
export declare const mstyle: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1556
|
-
export declare const msub: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1557
|
-
export declare const msubsup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1558
|
-
export declare const msup: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1559
|
-
export declare const mtable: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1560
|
-
export declare const mtd: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1561
|
-
export declare const mtext: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1562
|
-
export declare const mtr: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1563
|
-
export declare const munder: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1564
|
-
export declare const munderover: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1565
|
-
export declare const semantics: <Message>(attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1566
|
-
export declare const empty: Html;
|
|
1567
2023
|
export {};
|
|
1568
2024
|
//# sourceMappingURL=html.d.ts.map
|