foldkit 0.12.0-canary.0 → 0.13.0-canary.1
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 +219 -1222
- package/dist/html.d.ts.map +1 -1
- package/dist/html.js +3 -3
- package/package.json +1 -1
package/dist/html.d.ts
CHANGED
|
@@ -2,11 +2,9 @@ import { Data, Effect } from 'effect';
|
|
|
2
2
|
import { Dispatch } from './runtime';
|
|
3
3
|
import { VNode } from './vdom';
|
|
4
4
|
export type Html = Effect.Effect<VNode | null, never, Dispatch>;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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';
|
|
9
|
-
export type Attribute<Message> = Data.TaggedEnum<{
|
|
5
|
+
type Child = Html | string;
|
|
6
|
+
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
|
+
type Attribute<Message> = Data.TaggedEnum<{
|
|
10
8
|
Key: {
|
|
11
9
|
readonly value: string;
|
|
12
10
|
};
|
|
@@ -343,1020 +341,19 @@ export type Attribute<Message> = Data.TaggedEnum<{
|
|
|
343
341
|
readonly value: string;
|
|
344
342
|
};
|
|
345
343
|
}>;
|
|
346
|
-
|
|
347
|
-
readonly value: string;
|
|
348
|
-
}) => {
|
|
349
|
-
readonly _tag: "Key";
|
|
350
|
-
readonly value: string;
|
|
351
|
-
}, Class: <A>(args: {
|
|
352
|
-
readonly value: string;
|
|
353
|
-
}) => {
|
|
354
|
-
readonly _tag: "Class";
|
|
355
|
-
readonly value: string;
|
|
356
|
-
}, Id: <A>(args: {
|
|
357
|
-
readonly value: string;
|
|
358
|
-
}) => {
|
|
359
|
-
readonly _tag: "Id";
|
|
360
|
-
readonly value: string;
|
|
361
|
-
}, Title: <A>(args: {
|
|
362
|
-
readonly value: string;
|
|
363
|
-
}) => {
|
|
364
|
-
readonly _tag: "Title";
|
|
365
|
-
readonly value: string;
|
|
366
|
-
}, Lang: <A>(args: {
|
|
367
|
-
readonly value: string;
|
|
368
|
-
}) => {
|
|
369
|
-
readonly _tag: "Lang";
|
|
370
|
-
readonly value: string;
|
|
371
|
-
}, Dir: <A>(args: {
|
|
372
|
-
readonly value: string;
|
|
373
|
-
}) => {
|
|
374
|
-
readonly _tag: "Dir";
|
|
375
|
-
readonly value: string;
|
|
376
|
-
}, Tabindex: <A>(args: {
|
|
377
|
-
readonly value: number;
|
|
378
|
-
}) => {
|
|
379
|
-
readonly _tag: "Tabindex";
|
|
380
|
-
readonly value: number;
|
|
381
|
-
}, Hidden: <A>(args: {
|
|
382
|
-
readonly value: boolean;
|
|
383
|
-
}) => {
|
|
384
|
-
readonly _tag: "Hidden";
|
|
385
|
-
readonly value: boolean;
|
|
386
|
-
}, OnClick: <A>(args: {
|
|
387
|
-
readonly message: A;
|
|
388
|
-
}) => {
|
|
389
|
-
readonly _tag: "OnClick";
|
|
390
|
-
readonly message: A;
|
|
391
|
-
}, OnDblClick: <A>(args: {
|
|
392
|
-
readonly message: A;
|
|
393
|
-
}) => {
|
|
394
|
-
readonly _tag: "OnDblClick";
|
|
395
|
-
readonly message: A;
|
|
396
|
-
}, OnMouseDown: <A>(args: {
|
|
397
|
-
readonly message: A;
|
|
398
|
-
}) => {
|
|
399
|
-
readonly _tag: "OnMouseDown";
|
|
400
|
-
readonly message: A;
|
|
401
|
-
}, OnMouseUp: <A>(args: {
|
|
402
|
-
readonly message: A;
|
|
403
|
-
}) => {
|
|
404
|
-
readonly _tag: "OnMouseUp";
|
|
405
|
-
readonly message: A;
|
|
406
|
-
}, OnMouseEnter: <A>(args: {
|
|
407
|
-
readonly message: A;
|
|
408
|
-
}) => {
|
|
409
|
-
readonly _tag: "OnMouseEnter";
|
|
410
|
-
readonly message: A;
|
|
411
|
-
}, OnMouseLeave: <A>(args: {
|
|
412
|
-
readonly message: A;
|
|
413
|
-
}) => {
|
|
414
|
-
readonly _tag: "OnMouseLeave";
|
|
415
|
-
readonly message: A;
|
|
416
|
-
}, OnMouseOver: <A>(args: {
|
|
417
|
-
readonly message: A;
|
|
418
|
-
}) => {
|
|
419
|
-
readonly _tag: "OnMouseOver";
|
|
420
|
-
readonly message: A;
|
|
421
|
-
}, OnMouseOut: <A>(args: {
|
|
422
|
-
readonly message: A;
|
|
423
|
-
}) => {
|
|
424
|
-
readonly _tag: "OnMouseOut";
|
|
425
|
-
readonly message: A;
|
|
426
|
-
}, OnMouseMove: <A>(args: {
|
|
427
|
-
readonly message: A;
|
|
428
|
-
}) => {
|
|
429
|
-
readonly _tag: "OnMouseMove";
|
|
430
|
-
readonly message: A;
|
|
431
|
-
}, OnKeyDown: <A>(args: {
|
|
432
|
-
readonly f: (key: string) => A;
|
|
433
|
-
}) => {
|
|
434
|
-
readonly _tag: "OnKeyDown";
|
|
435
|
-
readonly f: (key: string) => A;
|
|
436
|
-
}, OnKeyUp: <A>(args: {
|
|
437
|
-
readonly f: (key: string) => A;
|
|
438
|
-
}) => {
|
|
439
|
-
readonly _tag: "OnKeyUp";
|
|
440
|
-
readonly f: (key: string) => A;
|
|
441
|
-
}, OnKeyPress: <A>(args: {
|
|
442
|
-
readonly f: (key: string) => A;
|
|
443
|
-
}) => {
|
|
444
|
-
readonly _tag: "OnKeyPress";
|
|
445
|
-
readonly f: (key: string) => A;
|
|
446
|
-
}, OnFocus: <A>(args: {
|
|
447
|
-
readonly message: A;
|
|
448
|
-
}) => {
|
|
449
|
-
readonly _tag: "OnFocus";
|
|
450
|
-
readonly message: A;
|
|
451
|
-
}, OnBlur: <A>(args: {
|
|
452
|
-
readonly message: A;
|
|
453
|
-
}) => {
|
|
454
|
-
readonly _tag: "OnBlur";
|
|
455
|
-
readonly message: A;
|
|
456
|
-
}, OnInput: <A>(args: {
|
|
457
|
-
readonly f: (value: string) => A;
|
|
458
|
-
}) => {
|
|
459
|
-
readonly _tag: "OnInput";
|
|
460
|
-
readonly f: (value: string) => A;
|
|
461
|
-
}, OnChange: <A>(args: {
|
|
462
|
-
readonly f: (value: string) => A;
|
|
463
|
-
}) => {
|
|
464
|
-
readonly _tag: "OnChange";
|
|
465
|
-
readonly f: (value: string) => A;
|
|
466
|
-
}, OnSubmit: <A>(args: {
|
|
467
|
-
readonly message: A;
|
|
468
|
-
}) => {
|
|
469
|
-
readonly _tag: "OnSubmit";
|
|
470
|
-
readonly message: A;
|
|
471
|
-
}, OnReset: <A>(args: {
|
|
472
|
-
readonly message: A;
|
|
473
|
-
}) => {
|
|
474
|
-
readonly _tag: "OnReset";
|
|
475
|
-
readonly message: A;
|
|
476
|
-
}, OnScroll: <A>(args: {
|
|
477
|
-
readonly message: A;
|
|
478
|
-
}) => {
|
|
479
|
-
readonly _tag: "OnScroll";
|
|
480
|
-
readonly message: A;
|
|
481
|
-
}, OnWheel: <A>(args: {
|
|
482
|
-
readonly message: A;
|
|
483
|
-
}) => {
|
|
484
|
-
readonly _tag: "OnWheel";
|
|
485
|
-
readonly message: A;
|
|
486
|
-
}, OnCopy: <A>(args: {
|
|
487
|
-
readonly message: A;
|
|
488
|
-
}) => {
|
|
489
|
-
readonly _tag: "OnCopy";
|
|
490
|
-
readonly message: A;
|
|
491
|
-
}, OnCut: <A>(args: {
|
|
492
|
-
readonly message: A;
|
|
493
|
-
}) => {
|
|
494
|
-
readonly _tag: "OnCut";
|
|
495
|
-
readonly message: A;
|
|
496
|
-
}, OnPaste: <A>(args: {
|
|
497
|
-
readonly message: A;
|
|
498
|
-
}) => {
|
|
499
|
-
readonly _tag: "OnPaste";
|
|
500
|
-
readonly message: A;
|
|
501
|
-
}, Value: <A>(args: {
|
|
502
|
-
readonly value: string;
|
|
503
|
-
}) => {
|
|
504
|
-
readonly _tag: "Value";
|
|
505
|
-
readonly value: string;
|
|
506
|
-
}, Checked: <A>(args: {
|
|
507
|
-
readonly value: boolean;
|
|
508
|
-
}) => {
|
|
509
|
-
readonly _tag: "Checked";
|
|
510
|
-
readonly value: boolean;
|
|
511
|
-
}, Selected: <A>(args: {
|
|
512
|
-
readonly value: boolean;
|
|
513
|
-
}) => {
|
|
514
|
-
readonly _tag: "Selected";
|
|
515
|
-
readonly value: boolean;
|
|
516
|
-
}, Placeholder: <A>(args: {
|
|
517
|
-
readonly value: string;
|
|
518
|
-
}) => {
|
|
519
|
-
readonly _tag: "Placeholder";
|
|
520
|
-
readonly value: string;
|
|
521
|
-
}, Name: <A>(args: {
|
|
522
|
-
readonly value: string;
|
|
523
|
-
}) => {
|
|
524
|
-
readonly _tag: "Name";
|
|
525
|
-
readonly value: string;
|
|
526
|
-
}, Disabled: <A>(args: {
|
|
527
|
-
readonly value: boolean;
|
|
528
|
-
}) => {
|
|
529
|
-
readonly _tag: "Disabled";
|
|
530
|
-
readonly value: boolean;
|
|
531
|
-
}, Readonly: <A>(args: {
|
|
532
|
-
readonly value: boolean;
|
|
533
|
-
}) => {
|
|
534
|
-
readonly _tag: "Readonly";
|
|
535
|
-
readonly value: boolean;
|
|
536
|
-
}, Required: <A>(args: {
|
|
537
|
-
readonly value: boolean;
|
|
538
|
-
}) => {
|
|
539
|
-
readonly _tag: "Required";
|
|
540
|
-
readonly value: boolean;
|
|
541
|
-
}, Autofocus: <A>(args: {
|
|
542
|
-
readonly value: boolean;
|
|
543
|
-
}) => {
|
|
544
|
-
readonly _tag: "Autofocus";
|
|
545
|
-
readonly value: boolean;
|
|
546
|
-
}, Spellcheck: <A>(args: {
|
|
547
|
-
readonly value: boolean;
|
|
548
|
-
}) => {
|
|
549
|
-
readonly _tag: "Spellcheck";
|
|
550
|
-
readonly value: boolean;
|
|
551
|
-
}, Autocorrect: <A>(args: {
|
|
552
|
-
readonly value: string;
|
|
553
|
-
}) => {
|
|
554
|
-
readonly _tag: "Autocorrect";
|
|
555
|
-
readonly value: string;
|
|
556
|
-
}, Autocapitalize: <A>(args: {
|
|
557
|
-
readonly value: string;
|
|
558
|
-
}) => {
|
|
559
|
-
readonly _tag: "Autocapitalize";
|
|
560
|
-
readonly value: string;
|
|
561
|
-
}, InputMode: <A>(args: {
|
|
562
|
-
readonly value: string;
|
|
563
|
-
}) => {
|
|
564
|
-
readonly _tag: "InputMode";
|
|
565
|
-
readonly value: string;
|
|
566
|
-
}, EnterKeyHint: <A>(args: {
|
|
567
|
-
readonly value: string;
|
|
568
|
-
}) => {
|
|
569
|
-
readonly _tag: "EnterKeyHint";
|
|
570
|
-
readonly value: string;
|
|
571
|
-
}, Multiple: <A>(args: {
|
|
572
|
-
readonly value: boolean;
|
|
573
|
-
}) => {
|
|
574
|
-
readonly _tag: "Multiple";
|
|
575
|
-
readonly value: boolean;
|
|
576
|
-
}, Type: <A>(args: {
|
|
577
|
-
readonly value: string;
|
|
578
|
-
}) => {
|
|
579
|
-
readonly _tag: "Type";
|
|
580
|
-
readonly value: string;
|
|
581
|
-
}, Accept: <A>(args: {
|
|
582
|
-
readonly value: string;
|
|
583
|
-
}) => {
|
|
584
|
-
readonly _tag: "Accept";
|
|
585
|
-
readonly value: string;
|
|
586
|
-
}, Autocomplete: <A>(args: {
|
|
587
|
-
readonly value: string;
|
|
588
|
-
}) => {
|
|
589
|
-
readonly _tag: "Autocomplete";
|
|
590
|
-
readonly value: string;
|
|
591
|
-
}, Pattern: <A>(args: {
|
|
592
|
-
readonly value: string;
|
|
593
|
-
}) => {
|
|
594
|
-
readonly _tag: "Pattern";
|
|
595
|
-
readonly value: string;
|
|
596
|
-
}, Maxlength: <A>(args: {
|
|
597
|
-
readonly value: number;
|
|
598
|
-
}) => {
|
|
599
|
-
readonly _tag: "Maxlength";
|
|
600
|
-
readonly value: number;
|
|
601
|
-
}, Minlength: <A>(args: {
|
|
602
|
-
readonly value: number;
|
|
603
|
-
}) => {
|
|
604
|
-
readonly _tag: "Minlength";
|
|
605
|
-
readonly value: number;
|
|
606
|
-
}, Size: <A>(args: {
|
|
607
|
-
readonly value: number;
|
|
608
|
-
}) => {
|
|
609
|
-
readonly _tag: "Size";
|
|
610
|
-
readonly value: number;
|
|
611
|
-
}, Cols: <A>(args: {
|
|
612
|
-
readonly value: number;
|
|
613
|
-
}) => {
|
|
614
|
-
readonly _tag: "Cols";
|
|
615
|
-
readonly value: number;
|
|
616
|
-
}, Rows: <A>(args: {
|
|
617
|
-
readonly value: number;
|
|
618
|
-
}) => {
|
|
619
|
-
readonly _tag: "Rows";
|
|
620
|
-
readonly value: number;
|
|
621
|
-
}, Max: <A>(args: {
|
|
622
|
-
readonly value: string;
|
|
623
|
-
}) => {
|
|
624
|
-
readonly _tag: "Max";
|
|
625
|
-
readonly value: string;
|
|
626
|
-
}, Min: <A>(args: {
|
|
627
|
-
readonly value: string;
|
|
628
|
-
}) => {
|
|
629
|
-
readonly _tag: "Min";
|
|
630
|
-
readonly value: string;
|
|
631
|
-
}, Step: <A>(args: {
|
|
632
|
-
readonly value: string;
|
|
633
|
-
}) => {
|
|
634
|
-
readonly _tag: "Step";
|
|
635
|
-
readonly value: string;
|
|
636
|
-
}, For: <A>(args: {
|
|
637
|
-
readonly value: string;
|
|
638
|
-
}) => {
|
|
639
|
-
readonly _tag: "For";
|
|
640
|
-
readonly value: string;
|
|
641
|
-
}, Href: <A>(args: {
|
|
642
|
-
readonly value: string;
|
|
643
|
-
}) => {
|
|
644
|
-
readonly _tag: "Href";
|
|
645
|
-
readonly value: string;
|
|
646
|
-
}, Src: <A>(args: {
|
|
647
|
-
readonly value: string;
|
|
648
|
-
}) => {
|
|
649
|
-
readonly _tag: "Src";
|
|
650
|
-
readonly value: string;
|
|
651
|
-
}, Alt: <A>(args: {
|
|
652
|
-
readonly value: string;
|
|
653
|
-
}) => {
|
|
654
|
-
readonly _tag: "Alt";
|
|
655
|
-
readonly value: string;
|
|
656
|
-
}, Target: <A>(args: {
|
|
657
|
-
readonly value: string;
|
|
658
|
-
}) => {
|
|
659
|
-
readonly _tag: "Target";
|
|
660
|
-
readonly value: string;
|
|
661
|
-
}, Rel: <A>(args: {
|
|
662
|
-
readonly value: string;
|
|
663
|
-
}) => {
|
|
664
|
-
readonly _tag: "Rel";
|
|
665
|
-
readonly value: string;
|
|
666
|
-
}, Download: <A>(args: {
|
|
667
|
-
readonly value: string;
|
|
668
|
-
}) => {
|
|
669
|
-
readonly _tag: "Download";
|
|
670
|
-
readonly value: string;
|
|
671
|
-
}, Action: <A>(args: {
|
|
672
|
-
readonly value: string;
|
|
673
|
-
}) => {
|
|
674
|
-
readonly _tag: "Action";
|
|
675
|
-
readonly value: string;
|
|
676
|
-
}, Method: <A>(args: {
|
|
677
|
-
readonly value: string;
|
|
678
|
-
}) => {
|
|
679
|
-
readonly _tag: "Method";
|
|
680
|
-
readonly value: string;
|
|
681
|
-
}, Enctype: <A>(args: {
|
|
682
|
-
readonly value: string;
|
|
683
|
-
}) => {
|
|
684
|
-
readonly _tag: "Enctype";
|
|
685
|
-
readonly value: string;
|
|
686
|
-
}, Novalidate: <A>(args: {
|
|
687
|
-
readonly value: boolean;
|
|
688
|
-
}) => {
|
|
689
|
-
readonly _tag: "Novalidate";
|
|
690
|
-
readonly value: boolean;
|
|
691
|
-
}, Role: <A>(args: {
|
|
692
|
-
readonly value: string;
|
|
693
|
-
}) => {
|
|
694
|
-
readonly _tag: "Role";
|
|
695
|
-
readonly value: string;
|
|
696
|
-
}, AriaLabel: <A>(args: {
|
|
697
|
-
readonly value: string;
|
|
698
|
-
}) => {
|
|
699
|
-
readonly _tag: "AriaLabel";
|
|
700
|
-
readonly value: string;
|
|
701
|
-
}, AriaLabelledBy: <A>(args: {
|
|
702
|
-
readonly value: string;
|
|
703
|
-
}) => {
|
|
704
|
-
readonly _tag: "AriaLabelledBy";
|
|
705
|
-
readonly value: string;
|
|
706
|
-
}, AriaDescribedBy: <A>(args: {
|
|
707
|
-
readonly value: string;
|
|
708
|
-
}) => {
|
|
709
|
-
readonly _tag: "AriaDescribedBy";
|
|
710
|
-
readonly value: string;
|
|
711
|
-
}, AriaHidden: <A>(args: {
|
|
712
|
-
readonly value: boolean;
|
|
713
|
-
}) => {
|
|
714
|
-
readonly _tag: "AriaHidden";
|
|
715
|
-
readonly value: boolean;
|
|
716
|
-
}, AriaExpanded: <A>(args: {
|
|
717
|
-
readonly value: boolean;
|
|
718
|
-
}) => {
|
|
719
|
-
readonly _tag: "AriaExpanded";
|
|
720
|
-
readonly value: boolean;
|
|
721
|
-
}, AriaSelected: <A>(args: {
|
|
722
|
-
readonly value: boolean;
|
|
723
|
-
}) => {
|
|
724
|
-
readonly _tag: "AriaSelected";
|
|
725
|
-
readonly value: boolean;
|
|
726
|
-
}, AriaChecked: <A>(args: {
|
|
727
|
-
readonly value: boolean;
|
|
728
|
-
}) => {
|
|
729
|
-
readonly _tag: "AriaChecked";
|
|
730
|
-
readonly value: boolean;
|
|
731
|
-
}, AriaDisabled: <A>(args: {
|
|
732
|
-
readonly value: boolean;
|
|
733
|
-
}) => {
|
|
734
|
-
readonly _tag: "AriaDisabled";
|
|
735
|
-
readonly value: boolean;
|
|
736
|
-
}, AriaRequired: <A>(args: {
|
|
737
|
-
readonly value: boolean;
|
|
738
|
-
}) => {
|
|
739
|
-
readonly _tag: "AriaRequired";
|
|
740
|
-
readonly value: boolean;
|
|
741
|
-
}, AriaInvalid: <A>(args: {
|
|
742
|
-
readonly value: boolean;
|
|
743
|
-
}) => {
|
|
744
|
-
readonly _tag: "AriaInvalid";
|
|
745
|
-
readonly value: boolean;
|
|
746
|
-
}, AriaLive: <A>(args: {
|
|
747
|
-
readonly value: string;
|
|
748
|
-
}) => {
|
|
749
|
-
readonly _tag: "AriaLive";
|
|
750
|
-
readonly value: string;
|
|
751
|
-
}, Attribute: <A>(args: {
|
|
344
|
+
declare const Attribute: <A>(args: {
|
|
752
345
|
readonly key: string;
|
|
753
346
|
readonly value: string;
|
|
754
347
|
}) => {
|
|
755
348
|
readonly _tag: "Attribute";
|
|
756
349
|
readonly key: string;
|
|
757
350
|
readonly value: string;
|
|
758
|
-
}, DataAttribute: <A>(args: {
|
|
759
|
-
readonly key: string;
|
|
760
|
-
readonly value: string;
|
|
761
|
-
}) => {
|
|
762
|
-
readonly _tag: "DataAttribute";
|
|
763
|
-
readonly key: string;
|
|
764
|
-
readonly value: string;
|
|
765
|
-
}, Style: <A>(args: {
|
|
766
|
-
readonly value: Record<string, string>;
|
|
767
|
-
}) => {
|
|
768
|
-
readonly _tag: "Style";
|
|
769
|
-
readonly value: Record<string, string>;
|
|
770
|
-
}, InnerHTML: <A>(args: {
|
|
771
|
-
readonly value: string;
|
|
772
|
-
}) => {
|
|
773
|
-
readonly _tag: "InnerHTML";
|
|
774
|
-
readonly value: string;
|
|
775
|
-
}, ViewBox: <A>(args: {
|
|
776
|
-
readonly value: string;
|
|
777
|
-
}) => {
|
|
778
|
-
readonly _tag: "ViewBox";
|
|
779
|
-
readonly value: string;
|
|
780
|
-
}, Xmlns: <A>(args: {
|
|
781
|
-
readonly value: string;
|
|
782
|
-
}) => {
|
|
783
|
-
readonly _tag: "Xmlns";
|
|
784
|
-
readonly value: string;
|
|
785
|
-
}, Fill: <A>(args: {
|
|
786
|
-
readonly value: string;
|
|
787
|
-
}) => {
|
|
788
|
-
readonly _tag: "Fill";
|
|
789
|
-
readonly value: string;
|
|
790
|
-
}, FillRule: <A>(args: {
|
|
791
|
-
readonly value: string;
|
|
792
|
-
}) => {
|
|
793
|
-
readonly _tag: "FillRule";
|
|
794
|
-
readonly value: string;
|
|
795
|
-
}, ClipRule: <A>(args: {
|
|
796
|
-
readonly value: string;
|
|
797
|
-
}) => {
|
|
798
|
-
readonly _tag: "ClipRule";
|
|
799
|
-
readonly value: string;
|
|
800
|
-
}, Stroke: <A>(args: {
|
|
801
|
-
readonly value: string;
|
|
802
|
-
}) => {
|
|
803
|
-
readonly _tag: "Stroke";
|
|
804
|
-
readonly value: string;
|
|
805
|
-
}, StrokeWidth: <A>(args: {
|
|
806
|
-
readonly value: string;
|
|
807
|
-
}) => {
|
|
808
|
-
readonly _tag: "StrokeWidth";
|
|
809
|
-
readonly value: string;
|
|
810
|
-
}, StrokeLinecap: <A>(args: {
|
|
811
|
-
readonly value: string;
|
|
812
|
-
}) => {
|
|
813
|
-
readonly _tag: "StrokeLinecap";
|
|
814
|
-
readonly value: string;
|
|
815
|
-
}, StrokeLinejoin: <A>(args: {
|
|
816
|
-
readonly value: string;
|
|
817
|
-
}) => {
|
|
818
|
-
readonly _tag: "StrokeLinejoin";
|
|
819
|
-
readonly value: string;
|
|
820
|
-
}, D: <A>(args: {
|
|
821
|
-
readonly value: string;
|
|
822
|
-
}) => {
|
|
823
|
-
readonly _tag: "D";
|
|
824
|
-
readonly value: string;
|
|
825
|
-
}, Cx: <A>(args: {
|
|
826
|
-
readonly value: string;
|
|
827
|
-
}) => {
|
|
828
|
-
readonly _tag: "Cx";
|
|
829
|
-
readonly value: string;
|
|
830
|
-
}, Cy: <A>(args: {
|
|
831
|
-
readonly value: string;
|
|
832
|
-
}) => {
|
|
833
|
-
readonly _tag: "Cy";
|
|
834
|
-
readonly value: string;
|
|
835
|
-
}, R: <A>(args: {
|
|
836
|
-
readonly value: string;
|
|
837
|
-
}) => {
|
|
838
|
-
readonly _tag: "R";
|
|
839
|
-
readonly value: string;
|
|
840
|
-
}, X: <A>(args: {
|
|
841
|
-
readonly value: string;
|
|
842
|
-
}) => {
|
|
843
|
-
readonly _tag: "X";
|
|
844
|
-
readonly value: string;
|
|
845
|
-
}, Y: <A>(args: {
|
|
846
|
-
readonly value: string;
|
|
847
|
-
}) => {
|
|
848
|
-
readonly _tag: "Y";
|
|
849
|
-
readonly value: string;
|
|
850
|
-
}, Width: <A>(args: {
|
|
851
|
-
readonly value: string;
|
|
852
|
-
}) => {
|
|
853
|
-
readonly _tag: "Width";
|
|
854
|
-
readonly value: string;
|
|
855
|
-
}, Height: <A>(args: {
|
|
856
|
-
readonly value: string;
|
|
857
|
-
}) => {
|
|
858
|
-
readonly _tag: "Height";
|
|
859
|
-
readonly value: string;
|
|
860
|
-
}, X1: <A>(args: {
|
|
861
|
-
readonly value: string;
|
|
862
|
-
}) => {
|
|
863
|
-
readonly _tag: "X1";
|
|
864
|
-
readonly value: string;
|
|
865
|
-
}, Y1: <A>(args: {
|
|
866
|
-
readonly value: string;
|
|
867
|
-
}) => {
|
|
868
|
-
readonly _tag: "Y1";
|
|
869
|
-
readonly value: string;
|
|
870
|
-
}, X2: <A>(args: {
|
|
871
|
-
readonly value: string;
|
|
872
|
-
}) => {
|
|
873
|
-
readonly _tag: "X2";
|
|
874
|
-
readonly value: string;
|
|
875
|
-
}, Y2: <A>(args: {
|
|
876
|
-
readonly value: string;
|
|
877
|
-
}) => {
|
|
878
|
-
readonly _tag: "Y2";
|
|
879
|
-
readonly value: string;
|
|
880
|
-
}, Points: <A>(args: {
|
|
881
|
-
readonly value: string;
|
|
882
|
-
}) => {
|
|
883
|
-
readonly _tag: "Points";
|
|
884
|
-
readonly value: string;
|
|
885
|
-
}, Transform: <A>(args: {
|
|
886
|
-
readonly value: string;
|
|
887
|
-
}) => {
|
|
888
|
-
readonly _tag: "Transform";
|
|
889
|
-
readonly value: string;
|
|
890
|
-
}, Opacity: <A>(args: {
|
|
891
|
-
readonly value: string;
|
|
892
|
-
}) => {
|
|
893
|
-
readonly _tag: "Opacity";
|
|
894
|
-
readonly value: string;
|
|
895
|
-
}, StrokeDasharray: <A>(args: {
|
|
896
|
-
readonly value: string;
|
|
897
|
-
}) => {
|
|
898
|
-
readonly _tag: "StrokeDasharray";
|
|
899
|
-
readonly value: string;
|
|
900
|
-
}, StrokeDashoffset: <A>(args: {
|
|
901
|
-
readonly value: string;
|
|
902
|
-
}) => {
|
|
903
|
-
readonly _tag: "StrokeDashoffset";
|
|
904
|
-
readonly value: string;
|
|
905
351
|
};
|
|
906
352
|
type AttributeWithoutKey<Message> = Exclude<Attribute<Message>, {
|
|
907
353
|
_tag: 'Key';
|
|
908
354
|
}>;
|
|
909
|
-
|
|
910
|
-
|
|
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
|
-
};
|
|
1358
|
-
};
|
|
1359
|
-
export declare const htmlAttributes: <Message>() => HtmlAttributes<Message>;
|
|
355
|
+
type ElementFunction<Message> = (attributes: ReadonlyArray<Attribute<Message>>, children: ReadonlyArray<Child>) => Html;
|
|
356
|
+
type VoidElementFunction<Message> = (attributes: ReadonlyArray<Attribute<Message>>) => Html;
|
|
1360
357
|
export declare const html: <Message>() => {
|
|
1361
358
|
empty: Effect.Effect<null, never, never>;
|
|
1362
359
|
keyed: (tagName: TagName) => (key: string, attributes?: readonly AttributeWithoutKey<Message>[], children?: ReadonlyArray<Child>) => Html;
|
|
@@ -1806,219 +803,219 @@ export declare const html: <Message>() => {
|
|
|
1806
803
|
readonly _tag: "StrokeDashoffset";
|
|
1807
804
|
readonly value: string;
|
|
1808
805
|
};
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
maction: ElementFunction<Message
|
|
1985
|
-
menclose: ElementFunction<Message
|
|
1986
|
-
merror: ElementFunction<Message
|
|
1987
|
-
mfenced: ElementFunction<Message
|
|
1988
|
-
mfrac: ElementFunction<Message
|
|
1989
|
-
mglyph: ElementFunction<Message
|
|
1990
|
-
mi: ElementFunction<Message
|
|
1991
|
-
mlabeledtr: ElementFunction<Message
|
|
1992
|
-
mlongdiv: ElementFunction<Message
|
|
1993
|
-
mmultiscripts: ElementFunction<Message
|
|
1994
|
-
mn: ElementFunction<Message
|
|
1995
|
-
mo: ElementFunction<Message
|
|
1996
|
-
mover: ElementFunction<Message
|
|
1997
|
-
mpadded: ElementFunction<Message
|
|
1998
|
-
mphantom: ElementFunction<Message
|
|
1999
|
-
mprescripts: ElementFunction<Message
|
|
2000
|
-
mroot: ElementFunction<Message
|
|
2001
|
-
mrow: ElementFunction<Message
|
|
2002
|
-
ms: ElementFunction<Message
|
|
2003
|
-
mscarries: ElementFunction<Message
|
|
2004
|
-
mscarry: ElementFunction<Message
|
|
2005
|
-
msgroup: ElementFunction<Message
|
|
2006
|
-
msline: ElementFunction<Message
|
|
2007
|
-
mspace: ElementFunction<Message
|
|
2008
|
-
msqrt: ElementFunction<Message
|
|
2009
|
-
msrow: ElementFunction<Message
|
|
2010
|
-
mstack: ElementFunction<Message
|
|
2011
|
-
mstyle: ElementFunction<Message
|
|
2012
|
-
msub: ElementFunction<Message
|
|
2013
|
-
msubsup: ElementFunction<Message
|
|
2014
|
-
msup: ElementFunction<Message
|
|
2015
|
-
mtable: ElementFunction<Message
|
|
2016
|
-
mtd: ElementFunction<Message
|
|
2017
|
-
mtext: ElementFunction<Message
|
|
2018
|
-
mtr: ElementFunction<Message
|
|
2019
|
-
munder: ElementFunction<Message
|
|
2020
|
-
munderover: ElementFunction<Message
|
|
2021
|
-
semantics: ElementFunction<Message
|
|
806
|
+
a: ElementFunction<Message>;
|
|
807
|
+
abbr: ElementFunction<Message>;
|
|
808
|
+
address: ElementFunction<Message>;
|
|
809
|
+
area: VoidElementFunction<Message>;
|
|
810
|
+
article: ElementFunction<Message>;
|
|
811
|
+
aside: ElementFunction<Message>;
|
|
812
|
+
audio: ElementFunction<Message>;
|
|
813
|
+
b: ElementFunction<Message>;
|
|
814
|
+
base: VoidElementFunction<Message>;
|
|
815
|
+
bdi: ElementFunction<Message>;
|
|
816
|
+
bdo: ElementFunction<Message>;
|
|
817
|
+
blockquote: ElementFunction<Message>;
|
|
818
|
+
body: ElementFunction<Message>;
|
|
819
|
+
br: VoidElementFunction<Message>;
|
|
820
|
+
button: ElementFunction<Message>;
|
|
821
|
+
canvas: ElementFunction<Message>;
|
|
822
|
+
caption: ElementFunction<Message>;
|
|
823
|
+
cite: ElementFunction<Message>;
|
|
824
|
+
code: ElementFunction<Message>;
|
|
825
|
+
col: VoidElementFunction<Message>;
|
|
826
|
+
colgroup: ElementFunction<Message>;
|
|
827
|
+
data: ElementFunction<Message>;
|
|
828
|
+
datalist: ElementFunction<Message>;
|
|
829
|
+
dd: ElementFunction<Message>;
|
|
830
|
+
del: ElementFunction<Message>;
|
|
831
|
+
details: ElementFunction<Message>;
|
|
832
|
+
dfn: ElementFunction<Message>;
|
|
833
|
+
dialog: ElementFunction<Message>;
|
|
834
|
+
div: ElementFunction<Message>;
|
|
835
|
+
dl: ElementFunction<Message>;
|
|
836
|
+
dt: ElementFunction<Message>;
|
|
837
|
+
em: ElementFunction<Message>;
|
|
838
|
+
embed: VoidElementFunction<Message>;
|
|
839
|
+
fieldset: ElementFunction<Message>;
|
|
840
|
+
figcaption: ElementFunction<Message>;
|
|
841
|
+
figure: ElementFunction<Message>;
|
|
842
|
+
footer: ElementFunction<Message>;
|
|
843
|
+
form: ElementFunction<Message>;
|
|
844
|
+
h1: ElementFunction<Message>;
|
|
845
|
+
h2: ElementFunction<Message>;
|
|
846
|
+
h3: ElementFunction<Message>;
|
|
847
|
+
h4: ElementFunction<Message>;
|
|
848
|
+
h5: ElementFunction<Message>;
|
|
849
|
+
h6: ElementFunction<Message>;
|
|
850
|
+
head: ElementFunction<Message>;
|
|
851
|
+
header: ElementFunction<Message>;
|
|
852
|
+
hgroup: ElementFunction<Message>;
|
|
853
|
+
hr: VoidElementFunction<Message>;
|
|
854
|
+
html: ElementFunction<Message>;
|
|
855
|
+
i: ElementFunction<Message>;
|
|
856
|
+
iframe: ElementFunction<Message>;
|
|
857
|
+
img: VoidElementFunction<Message>;
|
|
858
|
+
input: VoidElementFunction<Message>;
|
|
859
|
+
ins: ElementFunction<Message>;
|
|
860
|
+
kbd: ElementFunction<Message>;
|
|
861
|
+
label: ElementFunction<Message>;
|
|
862
|
+
legend: ElementFunction<Message>;
|
|
863
|
+
li: ElementFunction<Message>;
|
|
864
|
+
link: VoidElementFunction<Message>;
|
|
865
|
+
main: ElementFunction<Message>;
|
|
866
|
+
map: ElementFunction<Message>;
|
|
867
|
+
mark: ElementFunction<Message>;
|
|
868
|
+
menu: ElementFunction<Message>;
|
|
869
|
+
meta: VoidElementFunction<Message>;
|
|
870
|
+
meter: ElementFunction<Message>;
|
|
871
|
+
nav: ElementFunction<Message>;
|
|
872
|
+
noscript: ElementFunction<Message>;
|
|
873
|
+
object: ElementFunction<Message>;
|
|
874
|
+
ol: ElementFunction<Message>;
|
|
875
|
+
optgroup: ElementFunction<Message>;
|
|
876
|
+
option: ElementFunction<Message>;
|
|
877
|
+
output: ElementFunction<Message>;
|
|
878
|
+
p: ElementFunction<Message>;
|
|
879
|
+
picture: ElementFunction<Message>;
|
|
880
|
+
portal: ElementFunction<Message>;
|
|
881
|
+
pre: ElementFunction<Message>;
|
|
882
|
+
progress: ElementFunction<Message>;
|
|
883
|
+
q: ElementFunction<Message>;
|
|
884
|
+
rp: ElementFunction<Message>;
|
|
885
|
+
rt: ElementFunction<Message>;
|
|
886
|
+
ruby: ElementFunction<Message>;
|
|
887
|
+
s: ElementFunction<Message>;
|
|
888
|
+
samp: ElementFunction<Message>;
|
|
889
|
+
script: ElementFunction<Message>;
|
|
890
|
+
search: ElementFunction<Message>;
|
|
891
|
+
section: ElementFunction<Message>;
|
|
892
|
+
select: ElementFunction<Message>;
|
|
893
|
+
slot: ElementFunction<Message>;
|
|
894
|
+
small: ElementFunction<Message>;
|
|
895
|
+
source: VoidElementFunction<Message>;
|
|
896
|
+
span: ElementFunction<Message>;
|
|
897
|
+
strong: ElementFunction<Message>;
|
|
898
|
+
style: ElementFunction<Message>;
|
|
899
|
+
sub: ElementFunction<Message>;
|
|
900
|
+
summary: ElementFunction<Message>;
|
|
901
|
+
sup: ElementFunction<Message>;
|
|
902
|
+
table: ElementFunction<Message>;
|
|
903
|
+
tbody: ElementFunction<Message>;
|
|
904
|
+
td: ElementFunction<Message>;
|
|
905
|
+
template: ElementFunction<Message>;
|
|
906
|
+
textarea: ElementFunction<Message>;
|
|
907
|
+
tfoot: ElementFunction<Message>;
|
|
908
|
+
th: ElementFunction<Message>;
|
|
909
|
+
thead: ElementFunction<Message>;
|
|
910
|
+
time: ElementFunction<Message>;
|
|
911
|
+
title: ElementFunction<Message>;
|
|
912
|
+
tr: ElementFunction<Message>;
|
|
913
|
+
track: VoidElementFunction<Message>;
|
|
914
|
+
u: ElementFunction<Message>;
|
|
915
|
+
ul: ElementFunction<Message>;
|
|
916
|
+
var: ElementFunction<Message>;
|
|
917
|
+
video: ElementFunction<Message>;
|
|
918
|
+
wbr: VoidElementFunction<Message>;
|
|
919
|
+
svg: ElementFunction<Message>;
|
|
920
|
+
animate: ElementFunction<Message>;
|
|
921
|
+
animateMotion: ElementFunction<Message>;
|
|
922
|
+
animateTransform: ElementFunction<Message>;
|
|
923
|
+
circle: ElementFunction<Message>;
|
|
924
|
+
clipPath: ElementFunction<Message>;
|
|
925
|
+
defs: ElementFunction<Message>;
|
|
926
|
+
desc: ElementFunction<Message>;
|
|
927
|
+
ellipse: ElementFunction<Message>;
|
|
928
|
+
feBlend: ElementFunction<Message>;
|
|
929
|
+
feColorMatrix: ElementFunction<Message>;
|
|
930
|
+
feComponentTransfer: ElementFunction<Message>;
|
|
931
|
+
feComposite: ElementFunction<Message>;
|
|
932
|
+
feConvolveMatrix: ElementFunction<Message>;
|
|
933
|
+
feDiffuseLighting: ElementFunction<Message>;
|
|
934
|
+
feDisplacementMap: ElementFunction<Message>;
|
|
935
|
+
feDistantLight: ElementFunction<Message>;
|
|
936
|
+
feDropShadow: ElementFunction<Message>;
|
|
937
|
+
feFlood: ElementFunction<Message>;
|
|
938
|
+
feFuncA: ElementFunction<Message>;
|
|
939
|
+
feFuncB: ElementFunction<Message>;
|
|
940
|
+
feFuncG: ElementFunction<Message>;
|
|
941
|
+
feFuncR: ElementFunction<Message>;
|
|
942
|
+
feGaussianBlur: ElementFunction<Message>;
|
|
943
|
+
feImage: ElementFunction<Message>;
|
|
944
|
+
feMerge: ElementFunction<Message>;
|
|
945
|
+
feMergeNode: ElementFunction<Message>;
|
|
946
|
+
feMorphology: ElementFunction<Message>;
|
|
947
|
+
feOffset: ElementFunction<Message>;
|
|
948
|
+
fePointLight: ElementFunction<Message>;
|
|
949
|
+
feSpecularLighting: ElementFunction<Message>;
|
|
950
|
+
feSpotLight: ElementFunction<Message>;
|
|
951
|
+
feTile: ElementFunction<Message>;
|
|
952
|
+
feTurbulence: ElementFunction<Message>;
|
|
953
|
+
filter: ElementFunction<Message>;
|
|
954
|
+
foreignObject: ElementFunction<Message>;
|
|
955
|
+
g: ElementFunction<Message>;
|
|
956
|
+
image: ElementFunction<Message>;
|
|
957
|
+
line: ElementFunction<Message>;
|
|
958
|
+
linearGradient: ElementFunction<Message>;
|
|
959
|
+
marker: ElementFunction<Message>;
|
|
960
|
+
mask: ElementFunction<Message>;
|
|
961
|
+
metadata: ElementFunction<Message>;
|
|
962
|
+
mpath: ElementFunction<Message>;
|
|
963
|
+
path: ElementFunction<Message>;
|
|
964
|
+
pattern: ElementFunction<Message>;
|
|
965
|
+
polygon: ElementFunction<Message>;
|
|
966
|
+
polyline: ElementFunction<Message>;
|
|
967
|
+
radialGradient: ElementFunction<Message>;
|
|
968
|
+
rect: ElementFunction<Message>;
|
|
969
|
+
set: ElementFunction<Message>;
|
|
970
|
+
stop: ElementFunction<Message>;
|
|
971
|
+
switch: ElementFunction<Message>;
|
|
972
|
+
symbol: ElementFunction<Message>;
|
|
973
|
+
text: ElementFunction<Message>;
|
|
974
|
+
textPath: ElementFunction<Message>;
|
|
975
|
+
tspan: ElementFunction<Message>;
|
|
976
|
+
use: ElementFunction<Message>;
|
|
977
|
+
view: ElementFunction<Message>;
|
|
978
|
+
math: ElementFunction<Message>;
|
|
979
|
+
annotation: ElementFunction<Message>;
|
|
980
|
+
'annotation-xml': ElementFunction<Message>;
|
|
981
|
+
maction: ElementFunction<Message>;
|
|
982
|
+
menclose: ElementFunction<Message>;
|
|
983
|
+
merror: ElementFunction<Message>;
|
|
984
|
+
mfenced: ElementFunction<Message>;
|
|
985
|
+
mfrac: ElementFunction<Message>;
|
|
986
|
+
mglyph: ElementFunction<Message>;
|
|
987
|
+
mi: ElementFunction<Message>;
|
|
988
|
+
mlabeledtr: ElementFunction<Message>;
|
|
989
|
+
mlongdiv: ElementFunction<Message>;
|
|
990
|
+
mmultiscripts: ElementFunction<Message>;
|
|
991
|
+
mn: ElementFunction<Message>;
|
|
992
|
+
mo: ElementFunction<Message>;
|
|
993
|
+
mover: ElementFunction<Message>;
|
|
994
|
+
mpadded: ElementFunction<Message>;
|
|
995
|
+
mphantom: ElementFunction<Message>;
|
|
996
|
+
mprescripts: ElementFunction<Message>;
|
|
997
|
+
mroot: ElementFunction<Message>;
|
|
998
|
+
mrow: ElementFunction<Message>;
|
|
999
|
+
ms: ElementFunction<Message>;
|
|
1000
|
+
mscarries: ElementFunction<Message>;
|
|
1001
|
+
mscarry: ElementFunction<Message>;
|
|
1002
|
+
msgroup: ElementFunction<Message>;
|
|
1003
|
+
msline: ElementFunction<Message>;
|
|
1004
|
+
mspace: ElementFunction<Message>;
|
|
1005
|
+
msqrt: ElementFunction<Message>;
|
|
1006
|
+
msrow: ElementFunction<Message>;
|
|
1007
|
+
mstack: ElementFunction<Message>;
|
|
1008
|
+
mstyle: ElementFunction<Message>;
|
|
1009
|
+
msub: ElementFunction<Message>;
|
|
1010
|
+
msubsup: ElementFunction<Message>;
|
|
1011
|
+
msup: ElementFunction<Message>;
|
|
1012
|
+
mtable: ElementFunction<Message>;
|
|
1013
|
+
mtd: ElementFunction<Message>;
|
|
1014
|
+
mtext: ElementFunction<Message>;
|
|
1015
|
+
mtr: ElementFunction<Message>;
|
|
1016
|
+
munder: ElementFunction<Message>;
|
|
1017
|
+
munderover: ElementFunction<Message>;
|
|
1018
|
+
semantics: ElementFunction<Message>;
|
|
2022
1019
|
};
|
|
2023
1020
|
export {};
|
|
2024
1021
|
//# sourceMappingURL=html.d.ts.map
|