foldkit 0.10.0-canary.6 → 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 +1273 -741
- package/dist/html.d.ts.map +1 -1
- package/dist/html.js +354 -326
- package/dist/runtime/runtime.d.ts +34 -12
- package/dist/runtime/runtime.d.ts.map +1 -1
- package/dist/runtime/runtime.js +49 -16
- 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;
|
|
@@ -125,6 +127,21 @@ export type Attribute<Message> = Data.TaggedEnum<{
|
|
|
125
127
|
Autofocus: {
|
|
126
128
|
readonly value: boolean;
|
|
127
129
|
};
|
|
130
|
+
Spellcheck: {
|
|
131
|
+
readonly value: boolean;
|
|
132
|
+
};
|
|
133
|
+
Autocorrect: {
|
|
134
|
+
readonly value: string;
|
|
135
|
+
};
|
|
136
|
+
Autocapitalize: {
|
|
137
|
+
readonly value: string;
|
|
138
|
+
};
|
|
139
|
+
InputMode: {
|
|
140
|
+
readonly value: string;
|
|
141
|
+
};
|
|
142
|
+
EnterKeyHint: {
|
|
143
|
+
readonly value: string;
|
|
144
|
+
};
|
|
128
145
|
Multiple: {
|
|
129
146
|
readonly value: boolean;
|
|
130
147
|
};
|
|
@@ -233,6 +250,10 @@ export type Attribute<Message> = Data.TaggedEnum<{
|
|
|
233
250
|
AriaLive: {
|
|
234
251
|
readonly value: string;
|
|
235
252
|
};
|
|
253
|
+
Attribute: {
|
|
254
|
+
readonly key: string;
|
|
255
|
+
readonly value: string;
|
|
256
|
+
};
|
|
236
257
|
DataAttribute: {
|
|
237
258
|
readonly key: string;
|
|
238
259
|
readonly value: string;
|
|
@@ -322,1171 +343,1682 @@ export type Attribute<Message> = Data.TaggedEnum<{
|
|
|
322
343
|
readonly value: string;
|
|
323
344
|
};
|
|
324
345
|
}>;
|
|
325
|
-
export declare const
|
|
346
|
+
export declare const Key: <A>(args: {
|
|
326
347
|
readonly value: string;
|
|
327
348
|
}) => {
|
|
328
349
|
readonly _tag: "Key";
|
|
329
350
|
readonly value: string;
|
|
330
|
-
},
|
|
351
|
+
}, Class: <A>(args: {
|
|
331
352
|
readonly value: string;
|
|
332
353
|
}) => {
|
|
333
354
|
readonly _tag: "Class";
|
|
334
355
|
readonly value: string;
|
|
335
|
-
},
|
|
356
|
+
}, Id: <A>(args: {
|
|
336
357
|
readonly value: string;
|
|
337
358
|
}) => {
|
|
338
359
|
readonly _tag: "Id";
|
|
339
360
|
readonly value: string;
|
|
340
|
-
},
|
|
361
|
+
}, Title: <A>(args: {
|
|
341
362
|
readonly value: string;
|
|
342
363
|
}) => {
|
|
343
364
|
readonly _tag: "Title";
|
|
344
365
|
readonly value: string;
|
|
345
|
-
},
|
|
366
|
+
}, Lang: <A>(args: {
|
|
346
367
|
readonly value: string;
|
|
347
368
|
}) => {
|
|
348
369
|
readonly _tag: "Lang";
|
|
349
370
|
readonly value: string;
|
|
350
|
-
},
|
|
371
|
+
}, Dir: <A>(args: {
|
|
351
372
|
readonly value: string;
|
|
352
373
|
}) => {
|
|
353
374
|
readonly _tag: "Dir";
|
|
354
375
|
readonly value: string;
|
|
355
|
-
},
|
|
376
|
+
}, Tabindex: <A>(args: {
|
|
356
377
|
readonly value: number;
|
|
357
378
|
}) => {
|
|
358
379
|
readonly _tag: "Tabindex";
|
|
359
380
|
readonly value: number;
|
|
360
|
-
},
|
|
381
|
+
}, Hidden: <A>(args: {
|
|
361
382
|
readonly value: boolean;
|
|
362
383
|
}) => {
|
|
363
384
|
readonly _tag: "Hidden";
|
|
364
385
|
readonly value: boolean;
|
|
365
|
-
},
|
|
386
|
+
}, OnClick: <A>(args: {
|
|
366
387
|
readonly message: A;
|
|
367
388
|
}) => {
|
|
368
389
|
readonly _tag: "OnClick";
|
|
369
390
|
readonly message: A;
|
|
370
|
-
},
|
|
391
|
+
}, OnDblClick: <A>(args: {
|
|
371
392
|
readonly message: A;
|
|
372
393
|
}) => {
|
|
373
394
|
readonly _tag: "OnDblClick";
|
|
374
395
|
readonly message: A;
|
|
375
|
-
},
|
|
396
|
+
}, OnMouseDown: <A>(args: {
|
|
376
397
|
readonly message: A;
|
|
377
398
|
}) => {
|
|
378
399
|
readonly _tag: "OnMouseDown";
|
|
379
400
|
readonly message: A;
|
|
380
|
-
},
|
|
401
|
+
}, OnMouseUp: <A>(args: {
|
|
381
402
|
readonly message: A;
|
|
382
403
|
}) => {
|
|
383
404
|
readonly _tag: "OnMouseUp";
|
|
384
405
|
readonly message: A;
|
|
385
|
-
},
|
|
406
|
+
}, OnMouseEnter: <A>(args: {
|
|
386
407
|
readonly message: A;
|
|
387
408
|
}) => {
|
|
388
409
|
readonly _tag: "OnMouseEnter";
|
|
389
410
|
readonly message: A;
|
|
390
|
-
},
|
|
411
|
+
}, OnMouseLeave: <A>(args: {
|
|
391
412
|
readonly message: A;
|
|
392
413
|
}) => {
|
|
393
414
|
readonly _tag: "OnMouseLeave";
|
|
394
415
|
readonly message: A;
|
|
395
|
-
},
|
|
416
|
+
}, OnMouseOver: <A>(args: {
|
|
396
417
|
readonly message: A;
|
|
397
418
|
}) => {
|
|
398
419
|
readonly _tag: "OnMouseOver";
|
|
399
420
|
readonly message: A;
|
|
400
|
-
},
|
|
421
|
+
}, OnMouseOut: <A>(args: {
|
|
401
422
|
readonly message: A;
|
|
402
423
|
}) => {
|
|
403
424
|
readonly _tag: "OnMouseOut";
|
|
404
425
|
readonly message: A;
|
|
405
|
-
},
|
|
426
|
+
}, OnMouseMove: <A>(args: {
|
|
406
427
|
readonly message: A;
|
|
407
428
|
}) => {
|
|
408
429
|
readonly _tag: "OnMouseMove";
|
|
409
430
|
readonly message: A;
|
|
410
|
-
},
|
|
431
|
+
}, OnKeyDown: <A>(args: {
|
|
411
432
|
readonly f: (key: string) => A;
|
|
412
433
|
}) => {
|
|
413
434
|
readonly _tag: "OnKeyDown";
|
|
414
435
|
readonly f: (key: string) => A;
|
|
415
|
-
},
|
|
436
|
+
}, OnKeyUp: <A>(args: {
|
|
416
437
|
readonly f: (key: string) => A;
|
|
417
438
|
}) => {
|
|
418
439
|
readonly _tag: "OnKeyUp";
|
|
419
440
|
readonly f: (key: string) => A;
|
|
420
|
-
},
|
|
441
|
+
}, OnKeyPress: <A>(args: {
|
|
421
442
|
readonly f: (key: string) => A;
|
|
422
443
|
}) => {
|
|
423
444
|
readonly _tag: "OnKeyPress";
|
|
424
445
|
readonly f: (key: string) => A;
|
|
425
|
-
},
|
|
446
|
+
}, OnFocus: <A>(args: {
|
|
426
447
|
readonly message: A;
|
|
427
448
|
}) => {
|
|
428
449
|
readonly _tag: "OnFocus";
|
|
429
450
|
readonly message: A;
|
|
430
|
-
},
|
|
451
|
+
}, OnBlur: <A>(args: {
|
|
431
452
|
readonly message: A;
|
|
432
453
|
}) => {
|
|
433
454
|
readonly _tag: "OnBlur";
|
|
434
455
|
readonly message: A;
|
|
435
|
-
},
|
|
456
|
+
}, OnInput: <A>(args: {
|
|
436
457
|
readonly f: (value: string) => A;
|
|
437
458
|
}) => {
|
|
438
459
|
readonly _tag: "OnInput";
|
|
439
460
|
readonly f: (value: string) => A;
|
|
440
|
-
},
|
|
461
|
+
}, OnChange: <A>(args: {
|
|
441
462
|
readonly f: (value: string) => A;
|
|
442
463
|
}) => {
|
|
443
464
|
readonly _tag: "OnChange";
|
|
444
465
|
readonly f: (value: string) => A;
|
|
445
|
-
},
|
|
466
|
+
}, OnSubmit: <A>(args: {
|
|
446
467
|
readonly message: A;
|
|
447
468
|
}) => {
|
|
448
469
|
readonly _tag: "OnSubmit";
|
|
449
470
|
readonly message: A;
|
|
450
|
-
},
|
|
471
|
+
}, OnReset: <A>(args: {
|
|
451
472
|
readonly message: A;
|
|
452
473
|
}) => {
|
|
453
474
|
readonly _tag: "OnReset";
|
|
454
475
|
readonly message: A;
|
|
455
|
-
},
|
|
476
|
+
}, OnScroll: <A>(args: {
|
|
456
477
|
readonly message: A;
|
|
457
478
|
}) => {
|
|
458
479
|
readonly _tag: "OnScroll";
|
|
459
480
|
readonly message: A;
|
|
460
|
-
},
|
|
481
|
+
}, OnWheel: <A>(args: {
|
|
461
482
|
readonly message: A;
|
|
462
483
|
}) => {
|
|
463
484
|
readonly _tag: "OnWheel";
|
|
464
485
|
readonly message: A;
|
|
465
|
-
},
|
|
486
|
+
}, OnCopy: <A>(args: {
|
|
466
487
|
readonly message: A;
|
|
467
488
|
}) => {
|
|
468
489
|
readonly _tag: "OnCopy";
|
|
469
490
|
readonly message: A;
|
|
470
|
-
},
|
|
491
|
+
}, OnCut: <A>(args: {
|
|
471
492
|
readonly message: A;
|
|
472
493
|
}) => {
|
|
473
494
|
readonly _tag: "OnCut";
|
|
474
495
|
readonly message: A;
|
|
475
|
-
},
|
|
496
|
+
}, OnPaste: <A>(args: {
|
|
476
497
|
readonly message: A;
|
|
477
498
|
}) => {
|
|
478
499
|
readonly _tag: "OnPaste";
|
|
479
500
|
readonly message: A;
|
|
480
|
-
},
|
|
501
|
+
}, Value: <A>(args: {
|
|
481
502
|
readonly value: string;
|
|
482
503
|
}) => {
|
|
483
504
|
readonly _tag: "Value";
|
|
484
505
|
readonly value: string;
|
|
485
|
-
},
|
|
506
|
+
}, Checked: <A>(args: {
|
|
486
507
|
readonly value: boolean;
|
|
487
508
|
}) => {
|
|
488
509
|
readonly _tag: "Checked";
|
|
489
510
|
readonly value: boolean;
|
|
490
|
-
},
|
|
511
|
+
}, Selected: <A>(args: {
|
|
491
512
|
readonly value: boolean;
|
|
492
513
|
}) => {
|
|
493
514
|
readonly _tag: "Selected";
|
|
494
515
|
readonly value: boolean;
|
|
495
|
-
},
|
|
516
|
+
}, Placeholder: <A>(args: {
|
|
496
517
|
readonly value: string;
|
|
497
518
|
}) => {
|
|
498
519
|
readonly _tag: "Placeholder";
|
|
499
520
|
readonly value: string;
|
|
500
|
-
},
|
|
521
|
+
}, Name: <A>(args: {
|
|
501
522
|
readonly value: string;
|
|
502
523
|
}) => {
|
|
503
524
|
readonly _tag: "Name";
|
|
504
525
|
readonly value: string;
|
|
505
|
-
},
|
|
526
|
+
}, Disabled: <A>(args: {
|
|
506
527
|
readonly value: boolean;
|
|
507
528
|
}) => {
|
|
508
529
|
readonly _tag: "Disabled";
|
|
509
530
|
readonly value: boolean;
|
|
510
|
-
},
|
|
531
|
+
}, Readonly: <A>(args: {
|
|
511
532
|
readonly value: boolean;
|
|
512
533
|
}) => {
|
|
513
534
|
readonly _tag: "Readonly";
|
|
514
535
|
readonly value: boolean;
|
|
515
|
-
},
|
|
536
|
+
}, Required: <A>(args: {
|
|
516
537
|
readonly value: boolean;
|
|
517
538
|
}) => {
|
|
518
539
|
readonly _tag: "Required";
|
|
519
540
|
readonly value: boolean;
|
|
520
|
-
},
|
|
541
|
+
}, Autofocus: <A>(args: {
|
|
521
542
|
readonly value: boolean;
|
|
522
543
|
}) => {
|
|
523
544
|
readonly _tag: "Autofocus";
|
|
524
545
|
readonly value: boolean;
|
|
525
|
-
},
|
|
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: {
|
|
526
572
|
readonly value: boolean;
|
|
527
573
|
}) => {
|
|
528
574
|
readonly _tag: "Multiple";
|
|
529
575
|
readonly value: boolean;
|
|
530
|
-
},
|
|
576
|
+
}, Type: <A>(args: {
|
|
531
577
|
readonly value: string;
|
|
532
578
|
}) => {
|
|
533
579
|
readonly _tag: "Type";
|
|
534
580
|
readonly value: string;
|
|
535
|
-
},
|
|
581
|
+
}, Accept: <A>(args: {
|
|
536
582
|
readonly value: string;
|
|
537
583
|
}) => {
|
|
538
584
|
readonly _tag: "Accept";
|
|
539
585
|
readonly value: string;
|
|
540
|
-
},
|
|
586
|
+
}, Autocomplete: <A>(args: {
|
|
541
587
|
readonly value: string;
|
|
542
588
|
}) => {
|
|
543
589
|
readonly _tag: "Autocomplete";
|
|
544
590
|
readonly value: string;
|
|
545
|
-
},
|
|
591
|
+
}, Pattern: <A>(args: {
|
|
546
592
|
readonly value: string;
|
|
547
593
|
}) => {
|
|
548
594
|
readonly _tag: "Pattern";
|
|
549
595
|
readonly value: string;
|
|
550
|
-
},
|
|
596
|
+
}, Maxlength: <A>(args: {
|
|
551
597
|
readonly value: number;
|
|
552
598
|
}) => {
|
|
553
599
|
readonly _tag: "Maxlength";
|
|
554
600
|
readonly value: number;
|
|
555
|
-
},
|
|
601
|
+
}, Minlength: <A>(args: {
|
|
556
602
|
readonly value: number;
|
|
557
603
|
}) => {
|
|
558
604
|
readonly _tag: "Minlength";
|
|
559
605
|
readonly value: number;
|
|
560
|
-
},
|
|
606
|
+
}, Size: <A>(args: {
|
|
561
607
|
readonly value: number;
|
|
562
608
|
}) => {
|
|
563
609
|
readonly _tag: "Size";
|
|
564
610
|
readonly value: number;
|
|
565
|
-
},
|
|
611
|
+
}, Cols: <A>(args: {
|
|
566
612
|
readonly value: number;
|
|
567
613
|
}) => {
|
|
568
614
|
readonly _tag: "Cols";
|
|
569
615
|
readonly value: number;
|
|
570
|
-
},
|
|
616
|
+
}, Rows: <A>(args: {
|
|
571
617
|
readonly value: number;
|
|
572
618
|
}) => {
|
|
573
619
|
readonly _tag: "Rows";
|
|
574
620
|
readonly value: number;
|
|
575
|
-
},
|
|
621
|
+
}, Max: <A>(args: {
|
|
576
622
|
readonly value: string;
|
|
577
623
|
}) => {
|
|
578
624
|
readonly _tag: "Max";
|
|
579
625
|
readonly value: string;
|
|
580
|
-
},
|
|
626
|
+
}, Min: <A>(args: {
|
|
581
627
|
readonly value: string;
|
|
582
628
|
}) => {
|
|
583
629
|
readonly _tag: "Min";
|
|
584
630
|
readonly value: string;
|
|
585
|
-
},
|
|
631
|
+
}, Step: <A>(args: {
|
|
586
632
|
readonly value: string;
|
|
587
633
|
}) => {
|
|
588
634
|
readonly _tag: "Step";
|
|
589
635
|
readonly value: string;
|
|
590
|
-
},
|
|
636
|
+
}, For: <A>(args: {
|
|
591
637
|
readonly value: string;
|
|
592
638
|
}) => {
|
|
593
639
|
readonly _tag: "For";
|
|
594
640
|
readonly value: string;
|
|
595
|
-
},
|
|
641
|
+
}, Href: <A>(args: {
|
|
596
642
|
readonly value: string;
|
|
597
643
|
}) => {
|
|
598
644
|
readonly _tag: "Href";
|
|
599
645
|
readonly value: string;
|
|
600
|
-
},
|
|
646
|
+
}, Src: <A>(args: {
|
|
601
647
|
readonly value: string;
|
|
602
648
|
}) => {
|
|
603
649
|
readonly _tag: "Src";
|
|
604
650
|
readonly value: string;
|
|
605
|
-
},
|
|
651
|
+
}, Alt: <A>(args: {
|
|
606
652
|
readonly value: string;
|
|
607
653
|
}) => {
|
|
608
654
|
readonly _tag: "Alt";
|
|
609
655
|
readonly value: string;
|
|
610
|
-
},
|
|
656
|
+
}, Target: <A>(args: {
|
|
611
657
|
readonly value: string;
|
|
612
658
|
}) => {
|
|
613
659
|
readonly _tag: "Target";
|
|
614
660
|
readonly value: string;
|
|
615
|
-
},
|
|
661
|
+
}, Rel: <A>(args: {
|
|
616
662
|
readonly value: string;
|
|
617
663
|
}) => {
|
|
618
664
|
readonly _tag: "Rel";
|
|
619
665
|
readonly value: string;
|
|
620
|
-
},
|
|
666
|
+
}, Download: <A>(args: {
|
|
621
667
|
readonly value: string;
|
|
622
668
|
}) => {
|
|
623
669
|
readonly _tag: "Download";
|
|
624
670
|
readonly value: string;
|
|
625
|
-
},
|
|
671
|
+
}, Action: <A>(args: {
|
|
626
672
|
readonly value: string;
|
|
627
673
|
}) => {
|
|
628
674
|
readonly _tag: "Action";
|
|
629
675
|
readonly value: string;
|
|
630
|
-
},
|
|
676
|
+
}, Method: <A>(args: {
|
|
631
677
|
readonly value: string;
|
|
632
678
|
}) => {
|
|
633
679
|
readonly _tag: "Method";
|
|
634
680
|
readonly value: string;
|
|
635
|
-
},
|
|
681
|
+
}, Enctype: <A>(args: {
|
|
636
682
|
readonly value: string;
|
|
637
683
|
}) => {
|
|
638
684
|
readonly _tag: "Enctype";
|
|
639
685
|
readonly value: string;
|
|
640
|
-
},
|
|
686
|
+
}, Novalidate: <A>(args: {
|
|
641
687
|
readonly value: boolean;
|
|
642
688
|
}) => {
|
|
643
689
|
readonly _tag: "Novalidate";
|
|
644
690
|
readonly value: boolean;
|
|
645
|
-
},
|
|
691
|
+
}, Role: <A>(args: {
|
|
646
692
|
readonly value: string;
|
|
647
693
|
}) => {
|
|
648
694
|
readonly _tag: "Role";
|
|
649
695
|
readonly value: string;
|
|
650
|
-
},
|
|
696
|
+
}, AriaLabel: <A>(args: {
|
|
651
697
|
readonly value: string;
|
|
652
698
|
}) => {
|
|
653
699
|
readonly _tag: "AriaLabel";
|
|
654
700
|
readonly value: string;
|
|
655
|
-
},
|
|
701
|
+
}, AriaLabelledBy: <A>(args: {
|
|
656
702
|
readonly value: string;
|
|
657
703
|
}) => {
|
|
658
704
|
readonly _tag: "AriaLabelledBy";
|
|
659
705
|
readonly value: string;
|
|
660
|
-
},
|
|
706
|
+
}, AriaDescribedBy: <A>(args: {
|
|
661
707
|
readonly value: string;
|
|
662
708
|
}) => {
|
|
663
709
|
readonly _tag: "AriaDescribedBy";
|
|
664
710
|
readonly value: string;
|
|
665
|
-
},
|
|
711
|
+
}, AriaHidden: <A>(args: {
|
|
666
712
|
readonly value: boolean;
|
|
667
713
|
}) => {
|
|
668
714
|
readonly _tag: "AriaHidden";
|
|
669
715
|
readonly value: boolean;
|
|
670
|
-
},
|
|
716
|
+
}, AriaExpanded: <A>(args: {
|
|
671
717
|
readonly value: boolean;
|
|
672
718
|
}) => {
|
|
673
719
|
readonly _tag: "AriaExpanded";
|
|
674
720
|
readonly value: boolean;
|
|
675
|
-
},
|
|
721
|
+
}, AriaSelected: <A>(args: {
|
|
676
722
|
readonly value: boolean;
|
|
677
723
|
}) => {
|
|
678
724
|
readonly _tag: "AriaSelected";
|
|
679
725
|
readonly value: boolean;
|
|
680
|
-
},
|
|
726
|
+
}, AriaChecked: <A>(args: {
|
|
681
727
|
readonly value: boolean;
|
|
682
728
|
}) => {
|
|
683
729
|
readonly _tag: "AriaChecked";
|
|
684
730
|
readonly value: boolean;
|
|
685
|
-
},
|
|
731
|
+
}, AriaDisabled: <A>(args: {
|
|
686
732
|
readonly value: boolean;
|
|
687
733
|
}) => {
|
|
688
734
|
readonly _tag: "AriaDisabled";
|
|
689
735
|
readonly value: boolean;
|
|
690
|
-
},
|
|
736
|
+
}, AriaRequired: <A>(args: {
|
|
691
737
|
readonly value: boolean;
|
|
692
738
|
}) => {
|
|
693
739
|
readonly _tag: "AriaRequired";
|
|
694
740
|
readonly value: boolean;
|
|
695
|
-
},
|
|
741
|
+
}, AriaInvalid: <A>(args: {
|
|
696
742
|
readonly value: boolean;
|
|
697
743
|
}) => {
|
|
698
744
|
readonly _tag: "AriaInvalid";
|
|
699
745
|
readonly value: boolean;
|
|
700
|
-
},
|
|
746
|
+
}, AriaLive: <A>(args: {
|
|
701
747
|
readonly value: string;
|
|
702
748
|
}) => {
|
|
703
749
|
readonly _tag: "AriaLive";
|
|
704
750
|
readonly value: string;
|
|
705
|
-
},
|
|
751
|
+
}, Attribute: <A>(args: {
|
|
752
|
+
readonly key: string;
|
|
753
|
+
readonly value: string;
|
|
754
|
+
}) => {
|
|
755
|
+
readonly _tag: "Attribute";
|
|
756
|
+
readonly key: string;
|
|
757
|
+
readonly value: string;
|
|
758
|
+
}, DataAttribute: <A>(args: {
|
|
706
759
|
readonly key: string;
|
|
707
760
|
readonly value: string;
|
|
708
761
|
}) => {
|
|
709
762
|
readonly _tag: "DataAttribute";
|
|
710
763
|
readonly key: string;
|
|
711
764
|
readonly value: string;
|
|
712
|
-
},
|
|
765
|
+
}, Style: <A>(args: {
|
|
713
766
|
readonly value: Record<string, string>;
|
|
714
767
|
}) => {
|
|
715
768
|
readonly _tag: "Style";
|
|
716
769
|
readonly value: Record<string, string>;
|
|
717
|
-
},
|
|
770
|
+
}, InnerHTML: <A>(args: {
|
|
718
771
|
readonly value: string;
|
|
719
772
|
}) => {
|
|
720
773
|
readonly _tag: "InnerHTML";
|
|
721
774
|
readonly value: string;
|
|
722
|
-
},
|
|
775
|
+
}, ViewBox: <A>(args: {
|
|
723
776
|
readonly value: string;
|
|
724
777
|
}) => {
|
|
725
778
|
readonly _tag: "ViewBox";
|
|
726
779
|
readonly value: string;
|
|
727
|
-
},
|
|
780
|
+
}, Xmlns: <A>(args: {
|
|
728
781
|
readonly value: string;
|
|
729
782
|
}) => {
|
|
730
783
|
readonly _tag: "Xmlns";
|
|
731
784
|
readonly value: string;
|
|
732
|
-
},
|
|
785
|
+
}, Fill: <A>(args: {
|
|
733
786
|
readonly value: string;
|
|
734
787
|
}) => {
|
|
735
788
|
readonly _tag: "Fill";
|
|
736
789
|
readonly value: string;
|
|
737
|
-
},
|
|
790
|
+
}, FillRule: <A>(args: {
|
|
738
791
|
readonly value: string;
|
|
739
792
|
}) => {
|
|
740
793
|
readonly _tag: "FillRule";
|
|
741
794
|
readonly value: string;
|
|
742
|
-
},
|
|
795
|
+
}, ClipRule: <A>(args: {
|
|
743
796
|
readonly value: string;
|
|
744
797
|
}) => {
|
|
745
798
|
readonly _tag: "ClipRule";
|
|
746
799
|
readonly value: string;
|
|
747
|
-
},
|
|
800
|
+
}, Stroke: <A>(args: {
|
|
748
801
|
readonly value: string;
|
|
749
802
|
}) => {
|
|
750
803
|
readonly _tag: "Stroke";
|
|
751
804
|
readonly value: string;
|
|
752
|
-
},
|
|
805
|
+
}, StrokeWidth: <A>(args: {
|
|
753
806
|
readonly value: string;
|
|
754
807
|
}) => {
|
|
755
808
|
readonly _tag: "StrokeWidth";
|
|
756
809
|
readonly value: string;
|
|
757
|
-
},
|
|
810
|
+
}, StrokeLinecap: <A>(args: {
|
|
758
811
|
readonly value: string;
|
|
759
812
|
}) => {
|
|
760
813
|
readonly _tag: "StrokeLinecap";
|
|
761
814
|
readonly value: string;
|
|
762
|
-
},
|
|
815
|
+
}, StrokeLinejoin: <A>(args: {
|
|
763
816
|
readonly value: string;
|
|
764
817
|
}) => {
|
|
765
818
|
readonly _tag: "StrokeLinejoin";
|
|
766
819
|
readonly value: string;
|
|
767
|
-
},
|
|
820
|
+
}, D: <A>(args: {
|
|
768
821
|
readonly value: string;
|
|
769
822
|
}) => {
|
|
770
823
|
readonly _tag: "D";
|
|
771
824
|
readonly value: string;
|
|
772
|
-
},
|
|
825
|
+
}, Cx: <A>(args: {
|
|
773
826
|
readonly value: string;
|
|
774
827
|
}) => {
|
|
775
828
|
readonly _tag: "Cx";
|
|
776
829
|
readonly value: string;
|
|
777
|
-
},
|
|
830
|
+
}, Cy: <A>(args: {
|
|
778
831
|
readonly value: string;
|
|
779
832
|
}) => {
|
|
780
833
|
readonly _tag: "Cy";
|
|
781
834
|
readonly value: string;
|
|
782
|
-
},
|
|
835
|
+
}, R: <A>(args: {
|
|
783
836
|
readonly value: string;
|
|
784
837
|
}) => {
|
|
785
838
|
readonly _tag: "R";
|
|
786
839
|
readonly value: string;
|
|
787
|
-
},
|
|
840
|
+
}, X: <A>(args: {
|
|
788
841
|
readonly value: string;
|
|
789
842
|
}) => {
|
|
790
843
|
readonly _tag: "X";
|
|
791
844
|
readonly value: string;
|
|
792
|
-
},
|
|
845
|
+
}, Y: <A>(args: {
|
|
793
846
|
readonly value: string;
|
|
794
847
|
}) => {
|
|
795
848
|
readonly _tag: "Y";
|
|
796
849
|
readonly value: string;
|
|
797
|
-
},
|
|
850
|
+
}, Width: <A>(args: {
|
|
798
851
|
readonly value: string;
|
|
799
852
|
}) => {
|
|
800
853
|
readonly _tag: "Width";
|
|
801
854
|
readonly value: string;
|
|
802
|
-
},
|
|
855
|
+
}, Height: <A>(args: {
|
|
803
856
|
readonly value: string;
|
|
804
857
|
}) => {
|
|
805
858
|
readonly _tag: "Height";
|
|
806
859
|
readonly value: string;
|
|
807
|
-
},
|
|
860
|
+
}, X1: <A>(args: {
|
|
808
861
|
readonly value: string;
|
|
809
862
|
}) => {
|
|
810
863
|
readonly _tag: "X1";
|
|
811
864
|
readonly value: string;
|
|
812
|
-
},
|
|
865
|
+
}, Y1: <A>(args: {
|
|
813
866
|
readonly value: string;
|
|
814
867
|
}) => {
|
|
815
868
|
readonly _tag: "Y1";
|
|
816
869
|
readonly value: string;
|
|
817
|
-
},
|
|
870
|
+
}, X2: <A>(args: {
|
|
818
871
|
readonly value: string;
|
|
819
872
|
}) => {
|
|
820
873
|
readonly _tag: "X2";
|
|
821
874
|
readonly value: string;
|
|
822
|
-
},
|
|
875
|
+
}, Y2: <A>(args: {
|
|
823
876
|
readonly value: string;
|
|
824
877
|
}) => {
|
|
825
878
|
readonly _tag: "Y2";
|
|
826
879
|
readonly value: string;
|
|
827
|
-
},
|
|
880
|
+
}, Points: <A>(args: {
|
|
828
881
|
readonly value: string;
|
|
829
882
|
}) => {
|
|
830
883
|
readonly _tag: "Points";
|
|
831
884
|
readonly value: string;
|
|
832
|
-
},
|
|
885
|
+
}, Transform: <A>(args: {
|
|
833
886
|
readonly value: string;
|
|
834
887
|
}) => {
|
|
835
888
|
readonly _tag: "Transform";
|
|
836
889
|
readonly value: string;
|
|
837
|
-
},
|
|
890
|
+
}, Opacity: <A>(args: {
|
|
838
891
|
readonly value: string;
|
|
839
892
|
}) => {
|
|
840
893
|
readonly _tag: "Opacity";
|
|
841
894
|
readonly value: string;
|
|
842
|
-
},
|
|
895
|
+
}, StrokeDasharray: <A>(args: {
|
|
843
896
|
readonly value: string;
|
|
844
897
|
}) => {
|
|
845
898
|
readonly _tag: "StrokeDasharray";
|
|
846
899
|
readonly value: string;
|
|
847
|
-
},
|
|
900
|
+
}, StrokeDashoffset: <A>(args: {
|
|
848
901
|
readonly value: string;
|
|
849
902
|
}) => {
|
|
850
903
|
readonly _tag: "StrokeDashoffset";
|
|
851
904
|
readonly value: string;
|
|
852
905
|
};
|
|
853
|
-
export declare const Key: (value: string) => {
|
|
854
|
-
readonly _tag: "Key";
|
|
855
|
-
readonly value: string;
|
|
856
|
-
};
|
|
857
|
-
export declare const Class: (value: string) => {
|
|
858
|
-
readonly _tag: "Class";
|
|
859
|
-
readonly value: string;
|
|
860
|
-
};
|
|
861
|
-
export declare const Id: (value: string) => {
|
|
862
|
-
readonly _tag: "Id";
|
|
863
|
-
readonly value: string;
|
|
864
|
-
};
|
|
865
|
-
export declare const Title: (value: string) => {
|
|
866
|
-
readonly _tag: "Title";
|
|
867
|
-
readonly value: string;
|
|
868
|
-
};
|
|
869
|
-
export declare const Lang: (value: string) => {
|
|
870
|
-
readonly _tag: "Lang";
|
|
871
|
-
readonly value: string;
|
|
872
|
-
};
|
|
873
|
-
export declare const Dir: (value: string) => {
|
|
874
|
-
readonly _tag: "Dir";
|
|
875
|
-
readonly value: string;
|
|
876
|
-
};
|
|
877
|
-
export declare const Tabindex: (value: number) => {
|
|
878
|
-
readonly _tag: "Tabindex";
|
|
879
|
-
readonly value: number;
|
|
880
|
-
};
|
|
881
|
-
export declare const Hidden: (value: boolean) => {
|
|
882
|
-
readonly _tag: "Hidden";
|
|
883
|
-
readonly value: boolean;
|
|
884
|
-
};
|
|
885
|
-
export declare const OnClick: <Message>(message: Message) => {
|
|
886
|
-
readonly _tag: "OnClick";
|
|
887
|
-
readonly message: Message;
|
|
888
|
-
};
|
|
889
|
-
export declare const OnDblClick: <Message>(message: Message) => {
|
|
890
|
-
readonly _tag: "OnDblClick";
|
|
891
|
-
readonly message: Message;
|
|
892
|
-
};
|
|
893
|
-
export declare const OnMouseDown: <Message>(message: Message) => {
|
|
894
|
-
readonly _tag: "OnMouseDown";
|
|
895
|
-
readonly message: Message;
|
|
896
|
-
};
|
|
897
|
-
export declare const OnMouseUp: <Message>(message: Message) => {
|
|
898
|
-
readonly _tag: "OnMouseUp";
|
|
899
|
-
readonly message: Message;
|
|
900
|
-
};
|
|
901
|
-
export declare const OnMouseEnter: <Message>(message: Message) => {
|
|
902
|
-
readonly _tag: "OnMouseEnter";
|
|
903
|
-
readonly message: Message;
|
|
904
|
-
};
|
|
905
|
-
export declare const OnMouseLeave: <Message>(message: Message) => {
|
|
906
|
-
readonly _tag: "OnMouseLeave";
|
|
907
|
-
readonly message: Message;
|
|
908
|
-
};
|
|
909
|
-
export declare const OnMouseOver: <Message>(message: Message) => {
|
|
910
|
-
readonly _tag: "OnMouseOver";
|
|
911
|
-
readonly message: Message;
|
|
912
|
-
};
|
|
913
|
-
export declare const OnMouseOut: <Message>(message: Message) => {
|
|
914
|
-
readonly _tag: "OnMouseOut";
|
|
915
|
-
readonly message: Message;
|
|
916
|
-
};
|
|
917
|
-
export declare const OnMouseMove: <Message>(message: Message) => {
|
|
918
|
-
readonly _tag: "OnMouseMove";
|
|
919
|
-
readonly message: Message;
|
|
920
|
-
};
|
|
921
|
-
export declare const OnKeyDown: <Message>(f: (key: string) => Message) => {
|
|
922
|
-
readonly _tag: "OnKeyDown";
|
|
923
|
-
readonly f: (key: string) => Message;
|
|
924
|
-
};
|
|
925
|
-
export declare const OnKeyUp: <Message>(f: (key: string) => Message) => {
|
|
926
|
-
readonly _tag: "OnKeyUp";
|
|
927
|
-
readonly f: (key: string) => Message;
|
|
928
|
-
};
|
|
929
|
-
export declare const OnKeyPress: <Message>(f: (key: string) => Message) => {
|
|
930
|
-
readonly _tag: "OnKeyPress";
|
|
931
|
-
readonly f: (key: string) => Message;
|
|
932
|
-
};
|
|
933
|
-
export declare const OnFocus: <Message>(message: Message) => {
|
|
934
|
-
readonly _tag: "OnFocus";
|
|
935
|
-
readonly message: Message;
|
|
936
|
-
};
|
|
937
|
-
export declare const OnBlur: <Message>(message: Message) => {
|
|
938
|
-
readonly _tag: "OnBlur";
|
|
939
|
-
readonly message: Message;
|
|
940
|
-
};
|
|
941
|
-
export declare const OnInput: <Message>(f: (value: string) => Message) => {
|
|
942
|
-
readonly _tag: "OnInput";
|
|
943
|
-
readonly f: (value: string) => Message;
|
|
944
|
-
};
|
|
945
|
-
export declare const OnChange: <Message>(f: (value: string) => Message) => {
|
|
946
|
-
readonly _tag: "OnChange";
|
|
947
|
-
readonly f: (value: string) => Message;
|
|
948
|
-
};
|
|
949
|
-
export declare const OnSubmit: <Message>(message: Message) => {
|
|
950
|
-
readonly _tag: "OnSubmit";
|
|
951
|
-
readonly message: Message;
|
|
952
|
-
};
|
|
953
|
-
export declare const OnReset: <Message>(message: Message) => {
|
|
954
|
-
readonly _tag: "OnReset";
|
|
955
|
-
readonly message: Message;
|
|
956
|
-
};
|
|
957
|
-
export declare const OnScroll: <Message>(message: Message) => {
|
|
958
|
-
readonly _tag: "OnScroll";
|
|
959
|
-
readonly message: Message;
|
|
960
|
-
};
|
|
961
|
-
export declare const OnWheel: <Message>(message: Message) => {
|
|
962
|
-
readonly _tag: "OnWheel";
|
|
963
|
-
readonly message: Message;
|
|
964
|
-
};
|
|
965
|
-
export declare const OnCopy: <Message>(message: Message) => {
|
|
966
|
-
readonly _tag: "OnCopy";
|
|
967
|
-
readonly message: Message;
|
|
968
|
-
};
|
|
969
|
-
export declare const OnCut: <Message>(message: Message) => {
|
|
970
|
-
readonly _tag: "OnCut";
|
|
971
|
-
readonly message: Message;
|
|
972
|
-
};
|
|
973
|
-
export declare const OnPaste: <Message>(message: Message) => {
|
|
974
|
-
readonly _tag: "OnPaste";
|
|
975
|
-
readonly message: Message;
|
|
976
|
-
};
|
|
977
|
-
export declare const Value: (value: string) => {
|
|
978
|
-
readonly _tag: "Value";
|
|
979
|
-
readonly value: string;
|
|
980
|
-
};
|
|
981
|
-
export declare const Checked: (value: boolean) => {
|
|
982
|
-
readonly _tag: "Checked";
|
|
983
|
-
readonly value: boolean;
|
|
984
|
-
};
|
|
985
|
-
export declare const Selected: (value: boolean) => {
|
|
986
|
-
readonly _tag: "Selected";
|
|
987
|
-
readonly value: boolean;
|
|
988
|
-
};
|
|
989
|
-
export declare const Placeholder: (value: string) => {
|
|
990
|
-
readonly _tag: "Placeholder";
|
|
991
|
-
readonly value: string;
|
|
992
|
-
};
|
|
993
|
-
export declare const Name: (value: string) => {
|
|
994
|
-
readonly _tag: "Name";
|
|
995
|
-
readonly value: string;
|
|
996
|
-
};
|
|
997
|
-
export declare const Disabled: (value: boolean) => {
|
|
998
|
-
readonly _tag: "Disabled";
|
|
999
|
-
readonly value: boolean;
|
|
1000
|
-
};
|
|
1001
|
-
export declare const Readonly: (value: boolean) => {
|
|
1002
|
-
readonly _tag: "Readonly";
|
|
1003
|
-
readonly value: boolean;
|
|
1004
|
-
};
|
|
1005
|
-
export declare const Required: (value: boolean) => {
|
|
1006
|
-
readonly _tag: "Required";
|
|
1007
|
-
readonly value: boolean;
|
|
1008
|
-
};
|
|
1009
|
-
export declare const Autofocus: (value: boolean) => {
|
|
1010
|
-
readonly _tag: "Autofocus";
|
|
1011
|
-
readonly value: boolean;
|
|
1012
|
-
};
|
|
1013
|
-
export declare const Multiple: (value: boolean) => {
|
|
1014
|
-
readonly _tag: "Multiple";
|
|
1015
|
-
readonly value: boolean;
|
|
1016
|
-
};
|
|
1017
|
-
export declare const Type: (value: string) => {
|
|
1018
|
-
readonly _tag: "Type";
|
|
1019
|
-
readonly value: string;
|
|
1020
|
-
};
|
|
1021
|
-
export declare const Accept: (value: string) => {
|
|
1022
|
-
readonly _tag: "Accept";
|
|
1023
|
-
readonly value: string;
|
|
1024
|
-
};
|
|
1025
|
-
export declare const Autocomplete: (value: string) => {
|
|
1026
|
-
readonly _tag: "Autocomplete";
|
|
1027
|
-
readonly value: string;
|
|
1028
|
-
};
|
|
1029
|
-
export declare const Pattern: (value: string) => {
|
|
1030
|
-
readonly _tag: "Pattern";
|
|
1031
|
-
readonly value: string;
|
|
1032
|
-
};
|
|
1033
|
-
export declare const Maxlength: (value: number) => {
|
|
1034
|
-
readonly _tag: "Maxlength";
|
|
1035
|
-
readonly value: number;
|
|
1036
|
-
};
|
|
1037
|
-
export declare const Minlength: (value: number) => {
|
|
1038
|
-
readonly _tag: "Minlength";
|
|
1039
|
-
readonly value: number;
|
|
1040
|
-
};
|
|
1041
|
-
export declare const Size: (value: number) => {
|
|
1042
|
-
readonly _tag: "Size";
|
|
1043
|
-
readonly value: number;
|
|
1044
|
-
};
|
|
1045
|
-
export declare const Cols: (value: number) => {
|
|
1046
|
-
readonly _tag: "Cols";
|
|
1047
|
-
readonly value: number;
|
|
1048
|
-
};
|
|
1049
|
-
export declare const Rows: (value: number) => {
|
|
1050
|
-
readonly _tag: "Rows";
|
|
1051
|
-
readonly value: number;
|
|
1052
|
-
};
|
|
1053
|
-
export declare const Max: (value: string) => {
|
|
1054
|
-
readonly _tag: "Max";
|
|
1055
|
-
readonly value: string;
|
|
1056
|
-
};
|
|
1057
|
-
export declare const Min: (value: string) => {
|
|
1058
|
-
readonly _tag: "Min";
|
|
1059
|
-
readonly value: string;
|
|
1060
|
-
};
|
|
1061
|
-
export declare const Step: (value: string) => {
|
|
1062
|
-
readonly _tag: "Step";
|
|
1063
|
-
readonly value: string;
|
|
1064
|
-
};
|
|
1065
|
-
export declare const For: (value: string) => {
|
|
1066
|
-
readonly _tag: "For";
|
|
1067
|
-
readonly value: string;
|
|
1068
|
-
};
|
|
1069
|
-
export declare const Href: (value: string) => {
|
|
1070
|
-
readonly _tag: "Href";
|
|
1071
|
-
readonly value: string;
|
|
1072
|
-
};
|
|
1073
|
-
export declare const Src: (value: string) => {
|
|
1074
|
-
readonly _tag: "Src";
|
|
1075
|
-
readonly value: string;
|
|
1076
|
-
};
|
|
1077
|
-
export declare const Alt: (value: string) => {
|
|
1078
|
-
readonly _tag: "Alt";
|
|
1079
|
-
readonly value: string;
|
|
1080
|
-
};
|
|
1081
|
-
export declare const Target: (value: string) => {
|
|
1082
|
-
readonly _tag: "Target";
|
|
1083
|
-
readonly value: string;
|
|
1084
|
-
};
|
|
1085
|
-
export declare const Rel: (value: string) => {
|
|
1086
|
-
readonly _tag: "Rel";
|
|
1087
|
-
readonly value: string;
|
|
1088
|
-
};
|
|
1089
|
-
export declare const Download: (value: string) => {
|
|
1090
|
-
readonly _tag: "Download";
|
|
1091
|
-
readonly value: string;
|
|
1092
|
-
};
|
|
1093
|
-
export declare const Action: (value: string) => {
|
|
1094
|
-
readonly _tag: "Action";
|
|
1095
|
-
readonly value: string;
|
|
1096
|
-
};
|
|
1097
|
-
export declare const Method: (value: string) => {
|
|
1098
|
-
readonly _tag: "Method";
|
|
1099
|
-
readonly value: string;
|
|
1100
|
-
};
|
|
1101
|
-
export declare const Enctype: (value: string) => {
|
|
1102
|
-
readonly _tag: "Enctype";
|
|
1103
|
-
readonly value: string;
|
|
1104
|
-
};
|
|
1105
|
-
export declare const Novalidate: (value: boolean) => {
|
|
1106
|
-
readonly _tag: "Novalidate";
|
|
1107
|
-
readonly value: boolean;
|
|
1108
|
-
};
|
|
1109
|
-
export declare const Role: (value: string) => {
|
|
1110
|
-
readonly _tag: "Role";
|
|
1111
|
-
readonly value: string;
|
|
1112
|
-
};
|
|
1113
|
-
export declare const AriaLabel: (value: string) => {
|
|
1114
|
-
readonly _tag: "AriaLabel";
|
|
1115
|
-
readonly value: string;
|
|
1116
|
-
};
|
|
1117
|
-
export declare const AriaLabelledBy: (value: string) => {
|
|
1118
|
-
readonly _tag: "AriaLabelledBy";
|
|
1119
|
-
readonly value: string;
|
|
1120
|
-
};
|
|
1121
|
-
export declare const AriaDescribedBy: (value: string) => {
|
|
1122
|
-
readonly _tag: "AriaDescribedBy";
|
|
1123
|
-
readonly value: string;
|
|
1124
|
-
};
|
|
1125
|
-
export declare const AriaHidden: (value: boolean) => {
|
|
1126
|
-
readonly _tag: "AriaHidden";
|
|
1127
|
-
readonly value: boolean;
|
|
1128
|
-
};
|
|
1129
|
-
export declare const AriaExpanded: (value: boolean) => {
|
|
1130
|
-
readonly _tag: "AriaExpanded";
|
|
1131
|
-
readonly value: boolean;
|
|
1132
|
-
};
|
|
1133
|
-
export declare const AriaSelected: (value: boolean) => {
|
|
1134
|
-
readonly _tag: "AriaSelected";
|
|
1135
|
-
readonly value: boolean;
|
|
1136
|
-
};
|
|
1137
|
-
export declare const AriaChecked: (value: boolean) => {
|
|
1138
|
-
readonly _tag: "AriaChecked";
|
|
1139
|
-
readonly value: boolean;
|
|
1140
|
-
};
|
|
1141
|
-
export declare const AriaDisabled: (value: boolean) => {
|
|
1142
|
-
readonly _tag: "AriaDisabled";
|
|
1143
|
-
readonly value: boolean;
|
|
1144
|
-
};
|
|
1145
|
-
export declare const AriaRequired: (value: boolean) => {
|
|
1146
|
-
readonly _tag: "AriaRequired";
|
|
1147
|
-
readonly value: boolean;
|
|
1148
|
-
};
|
|
1149
|
-
export declare const AriaInvalid: (value: boolean) => {
|
|
1150
|
-
readonly _tag: "AriaInvalid";
|
|
1151
|
-
readonly value: boolean;
|
|
1152
|
-
};
|
|
1153
|
-
export declare const AriaLive: (value: string) => {
|
|
1154
|
-
readonly _tag: "AriaLive";
|
|
1155
|
-
readonly value: string;
|
|
1156
|
-
};
|
|
1157
|
-
export declare const DataAttr: (key: string, value: string) => {
|
|
1158
|
-
readonly _tag: "DataAttribute";
|
|
1159
|
-
readonly key: string;
|
|
1160
|
-
readonly value: string;
|
|
1161
|
-
};
|
|
1162
|
-
export declare const StyleAttr: (value: Record<string, string>) => {
|
|
1163
|
-
readonly _tag: "Style";
|
|
1164
|
-
readonly value: Record<string, string>;
|
|
1165
|
-
};
|
|
1166
|
-
export declare const InnerHTML: (value: string) => {
|
|
1167
|
-
readonly _tag: "InnerHTML";
|
|
1168
|
-
readonly value: string;
|
|
1169
|
-
};
|
|
1170
|
-
export declare const ViewBox: (value: string) => {
|
|
1171
|
-
readonly _tag: "ViewBox";
|
|
1172
|
-
readonly value: string;
|
|
1173
|
-
};
|
|
1174
|
-
export declare const Xmlns: (value: string) => {
|
|
1175
|
-
readonly _tag: "Xmlns";
|
|
1176
|
-
readonly value: string;
|
|
1177
|
-
};
|
|
1178
|
-
export declare const Fill: (value: string) => {
|
|
1179
|
-
readonly _tag: "Fill";
|
|
1180
|
-
readonly value: string;
|
|
1181
|
-
};
|
|
1182
|
-
export declare const FillRule: (value: string) => {
|
|
1183
|
-
readonly _tag: "FillRule";
|
|
1184
|
-
readonly value: string;
|
|
1185
|
-
};
|
|
1186
|
-
export declare const ClipRule: (value: string) => {
|
|
1187
|
-
readonly _tag: "ClipRule";
|
|
1188
|
-
readonly value: string;
|
|
1189
|
-
};
|
|
1190
|
-
export declare const Stroke: (value: string) => {
|
|
1191
|
-
readonly _tag: "Stroke";
|
|
1192
|
-
readonly value: string;
|
|
1193
|
-
};
|
|
1194
|
-
export declare const StrokeWidth: (value: string) => {
|
|
1195
|
-
readonly _tag: "StrokeWidth";
|
|
1196
|
-
readonly value: string;
|
|
1197
|
-
};
|
|
1198
|
-
export declare const StrokeLinecap: (value: string) => {
|
|
1199
|
-
readonly _tag: "StrokeLinecap";
|
|
1200
|
-
readonly value: string;
|
|
1201
|
-
};
|
|
1202
|
-
export declare const StrokeLinejoin: (value: string) => {
|
|
1203
|
-
readonly _tag: "StrokeLinejoin";
|
|
1204
|
-
readonly value: string;
|
|
1205
|
-
};
|
|
1206
|
-
export declare const D: (value: string) => {
|
|
1207
|
-
readonly _tag: "D";
|
|
1208
|
-
readonly value: string;
|
|
1209
|
-
};
|
|
1210
|
-
export declare const Cx: (value: string) => {
|
|
1211
|
-
readonly _tag: "Cx";
|
|
1212
|
-
readonly value: string;
|
|
1213
|
-
};
|
|
1214
|
-
export declare const Cy: (value: string) => {
|
|
1215
|
-
readonly _tag: "Cy";
|
|
1216
|
-
readonly value: string;
|
|
1217
|
-
};
|
|
1218
|
-
export declare const R: (value: string) => {
|
|
1219
|
-
readonly _tag: "R";
|
|
1220
|
-
readonly value: string;
|
|
1221
|
-
};
|
|
1222
|
-
export declare const X: (value: string) => {
|
|
1223
|
-
readonly _tag: "X";
|
|
1224
|
-
readonly value: string;
|
|
1225
|
-
};
|
|
1226
|
-
export declare const Y: (value: string) => {
|
|
1227
|
-
readonly _tag: "Y";
|
|
1228
|
-
readonly value: string;
|
|
1229
|
-
};
|
|
1230
|
-
export declare const Width: (value: string) => {
|
|
1231
|
-
readonly _tag: "Width";
|
|
1232
|
-
readonly value: string;
|
|
1233
|
-
};
|
|
1234
|
-
export declare const Height: (value: string) => {
|
|
1235
|
-
readonly _tag: "Height";
|
|
1236
|
-
readonly value: string;
|
|
1237
|
-
};
|
|
1238
|
-
export declare const X1: (value: string) => {
|
|
1239
|
-
readonly _tag: "X1";
|
|
1240
|
-
readonly value: string;
|
|
1241
|
-
};
|
|
1242
|
-
export declare const Y1: (value: string) => {
|
|
1243
|
-
readonly _tag: "Y1";
|
|
1244
|
-
readonly value: string;
|
|
1245
|
-
};
|
|
1246
|
-
export declare const X2: (value: string) => {
|
|
1247
|
-
readonly _tag: "X2";
|
|
1248
|
-
readonly value: string;
|
|
1249
|
-
};
|
|
1250
|
-
export declare const Y2: (value: string) => {
|
|
1251
|
-
readonly _tag: "Y2";
|
|
1252
|
-
readonly value: string;
|
|
1253
|
-
};
|
|
1254
|
-
export declare const Points: (value: string) => {
|
|
1255
|
-
readonly _tag: "Points";
|
|
1256
|
-
readonly value: string;
|
|
1257
|
-
};
|
|
1258
|
-
export declare const Transform: (value: string) => {
|
|
1259
|
-
readonly _tag: "Transform";
|
|
1260
|
-
readonly value: string;
|
|
1261
|
-
};
|
|
1262
|
-
export declare const Opacity: (value: string) => {
|
|
1263
|
-
readonly _tag: "Opacity";
|
|
1264
|
-
readonly value: string;
|
|
1265
|
-
};
|
|
1266
|
-
export declare const StrokeDasharray: (value: string) => {
|
|
1267
|
-
readonly _tag: "StrokeDasharray";
|
|
1268
|
-
readonly value: string;
|
|
1269
|
-
};
|
|
1270
|
-
export declare const StrokeDashoffset: (value: string) => {
|
|
1271
|
-
readonly _tag: "StrokeDashoffset";
|
|
1272
|
-
readonly value: string;
|
|
1273
|
-
};
|
|
1274
|
-
export declare const createElement: <Message>(tagName: TagName, attributes?: ReadonlyArray<Attribute<Message>>, children?: ReadonlyArray<Child>) => Html;
|
|
1275
906
|
type AttributeWithoutKey<Message> = Exclude<Attribute<Message>, {
|
|
1276
907
|
_tag: 'Key';
|
|
1277
908
|
}>;
|
|
1278
|
-
export
|
|
1279
|
-
export declare const
|
|
1280
|
-
export
|
|
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
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
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
|
+
};
|
|
1358
|
+
};
|
|
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>;
|
|
2022
|
+
};
|
|
1491
2023
|
export {};
|
|
1492
2024
|
//# sourceMappingURL=html.d.ts.map
|