@m3e/drawer-container 1.0.0-rc.1 → 1.0.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/dist/custom-elements.json +2618 -24
- package/dist/html-custom-data.json +8 -2
- package/dist/index.js +5 -9
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +29 -29
- package/dist/index.min.js.map +1 -1
- package/dist/src/DrawerContainerElement.d.ts +1 -4
- package/dist/src/DrawerContainerElement.d.ts.map +1 -1
- package/dist/src/DrawerToggleElement.d.ts +1 -1
- package/dist/src/DrawerToggleElement.d.ts.map +1 -1
- package/package.json +4 -4
- package/cem.config.mjs +0 -16
- package/demo/index.html +0 -88
- package/eslint.config.mjs +0 -13
- package/rollup.config.js +0 -32
- package/src/DrawerContainerElement.ts +0 -244
- package/src/DrawerMode.ts +0 -2
- package/src/DrawerPosition.ts +0 -2
- package/src/DrawerToggleElement.ts +0 -123
- package/src/index.ts +0 -4
- package/src/styles/DrawerContainerStyle.ts +0 -178
- package/src/styles/DrawerContainerToken.ts +0 -19
- package/src/styles/index.ts +0 -1
- package/tsconfig.json +0 -9
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"description": "",
|
|
11
|
+
"description": "A container for one or two sliding drawers.",
|
|
12
12
|
"name": "M3eDrawerContainerElement",
|
|
13
13
|
"cssProperties": [
|
|
14
14
|
{
|
|
@@ -111,15 +111,6 @@
|
|
|
111
111
|
},
|
|
112
112
|
"default": "false"
|
|
113
113
|
},
|
|
114
|
-
{
|
|
115
|
-
"kind": "field",
|
|
116
|
-
"name": "#initialized",
|
|
117
|
-
"privacy": "private",
|
|
118
|
-
"type": {
|
|
119
|
-
"text": "boolean"
|
|
120
|
-
},
|
|
121
|
-
"default": "false"
|
|
122
|
-
},
|
|
123
114
|
{
|
|
124
115
|
"kind": "field",
|
|
125
116
|
"name": "start",
|
|
@@ -321,19 +312,12 @@
|
|
|
321
312
|
"fieldName": "startDivider"
|
|
322
313
|
}
|
|
323
314
|
],
|
|
324
|
-
"mixins": [
|
|
325
|
-
{
|
|
326
|
-
"name": "Role",
|
|
327
|
-
"package": "@m3e/core"
|
|
328
|
-
}
|
|
329
|
-
],
|
|
330
315
|
"superclass": {
|
|
331
316
|
"name": "LitElement",
|
|
332
317
|
"package": "lit"
|
|
333
318
|
},
|
|
334
319
|
"tagName": "m3e-drawer-container",
|
|
335
|
-
"customElement": true
|
|
336
|
-
"summary": "A container for one or two sliding drawers."
|
|
320
|
+
"customElement": true
|
|
337
321
|
}
|
|
338
322
|
],
|
|
339
323
|
"exports": [
|
|
@@ -403,7 +387,12 @@
|
|
|
403
387
|
"text": "HTMLElement"
|
|
404
388
|
}
|
|
405
389
|
}
|
|
406
|
-
]
|
|
390
|
+
],
|
|
391
|
+
"description": "Attaches the element to an interactive control.",
|
|
392
|
+
"inheritedFrom": {
|
|
393
|
+
"name": "HtmlFor",
|
|
394
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
395
|
+
}
|
|
407
396
|
},
|
|
408
397
|
{
|
|
409
398
|
"kind": "method",
|
|
@@ -412,6 +401,11 @@
|
|
|
412
401
|
"type": {
|
|
413
402
|
"text": "void"
|
|
414
403
|
}
|
|
404
|
+
},
|
|
405
|
+
"description": "Detaches the element from its current interactive control.",
|
|
406
|
+
"inheritedFrom": {
|
|
407
|
+
"name": "HtmlFor",
|
|
408
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
415
409
|
}
|
|
416
410
|
},
|
|
417
411
|
{
|
|
@@ -460,16 +454,62 @@
|
|
|
460
454
|
}
|
|
461
455
|
}
|
|
462
456
|
]
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"kind": "field",
|
|
460
|
+
"name": "[_control]",
|
|
461
|
+
"type": {
|
|
462
|
+
"text": "HTMLElement | null"
|
|
463
|
+
},
|
|
464
|
+
"privacy": "private",
|
|
465
|
+
"default": "null",
|
|
466
|
+
"inheritedFrom": {
|
|
467
|
+
"name": "HtmlFor",
|
|
468
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"kind": "field",
|
|
473
|
+
"name": "[_firstUpdated]",
|
|
474
|
+
"type": {
|
|
475
|
+
"text": "boolean"
|
|
476
|
+
},
|
|
477
|
+
"privacy": "private",
|
|
478
|
+
"default": "false",
|
|
479
|
+
"inheritedFrom": {
|
|
480
|
+
"name": "HtmlFor",
|
|
481
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"kind": "field",
|
|
486
|
+
"name": "htmlFor",
|
|
487
|
+
"type": {
|
|
488
|
+
"text": "string | null"
|
|
489
|
+
},
|
|
490
|
+
"default": "null",
|
|
491
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
492
|
+
"attribute": "for",
|
|
493
|
+
"inheritedFrom": {
|
|
494
|
+
"name": "HtmlFor",
|
|
495
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"kind": "field",
|
|
500
|
+
"name": "control",
|
|
501
|
+
"description": "The interactive element to which this element is attached.",
|
|
502
|
+
"readonly": true,
|
|
503
|
+
"inheritedFrom": {
|
|
504
|
+
"name": "HtmlFor",
|
|
505
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
506
|
+
}
|
|
463
507
|
}
|
|
464
508
|
],
|
|
465
509
|
"mixins": [
|
|
466
510
|
{
|
|
467
511
|
"name": "HtmlFor",
|
|
468
512
|
"package": "@m3e/core"
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"name": "Role",
|
|
472
|
-
"package": "@m3e/core"
|
|
473
513
|
}
|
|
474
514
|
],
|
|
475
515
|
"superclass": {
|
|
@@ -477,7 +517,22 @@
|
|
|
477
517
|
"package": "lit"
|
|
478
518
|
},
|
|
479
519
|
"tagName": "m3e-drawer-toggle",
|
|
480
|
-
"customElement": true
|
|
520
|
+
"customElement": true,
|
|
521
|
+
"attributes": [
|
|
522
|
+
{
|
|
523
|
+
"name": "for",
|
|
524
|
+
"type": {
|
|
525
|
+
"text": "string | null"
|
|
526
|
+
},
|
|
527
|
+
"default": "null",
|
|
528
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
529
|
+
"fieldName": "htmlFor",
|
|
530
|
+
"inheritedFrom": {
|
|
531
|
+
"name": "HtmlFor",
|
|
532
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
]
|
|
481
536
|
}
|
|
482
537
|
],
|
|
483
538
|
"exports": [
|
|
@@ -564,6 +619,2545 @@
|
|
|
564
619
|
}
|
|
565
620
|
}
|
|
566
621
|
]
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"kind": "javascript-module",
|
|
625
|
+
"path": "../core/src/shared/mixins/AttachInternals.ts",
|
|
626
|
+
"declarations": [
|
|
627
|
+
{
|
|
628
|
+
"kind": "variable",
|
|
629
|
+
"name": "internals",
|
|
630
|
+
"description": "A symbol through which to access the `ElementInternals` attached to an element."
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"kind": "function",
|
|
634
|
+
"name": "isAttachInternalsMixin",
|
|
635
|
+
"return": {
|
|
636
|
+
"type": {
|
|
637
|
+
"text": ""
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"parameters": [
|
|
641
|
+
{
|
|
642
|
+
"name": "value",
|
|
643
|
+
"type": {
|
|
644
|
+
"text": "unknown"
|
|
645
|
+
},
|
|
646
|
+
"description": "The value to test."
|
|
647
|
+
}
|
|
648
|
+
],
|
|
649
|
+
"description": "Determines whether a value is an `AttachInternalsMixin`."
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"kind": "mixin",
|
|
653
|
+
"description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
|
|
654
|
+
"name": "AttachInternals",
|
|
655
|
+
"members": [
|
|
656
|
+
{
|
|
657
|
+
"kind": "field",
|
|
658
|
+
"name": "formAssociated",
|
|
659
|
+
"static": true,
|
|
660
|
+
"readonly": true,
|
|
661
|
+
"default": "formAssociated",
|
|
662
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"kind": "field",
|
|
666
|
+
"name": "[_internals]",
|
|
667
|
+
"type": {
|
|
668
|
+
"text": "ElementInternals | undefined"
|
|
669
|
+
},
|
|
670
|
+
"privacy": "private"
|
|
671
|
+
}
|
|
672
|
+
],
|
|
673
|
+
"parameters": [
|
|
674
|
+
{
|
|
675
|
+
"name": "base",
|
|
676
|
+
"type": {
|
|
677
|
+
"text": "T"
|
|
678
|
+
},
|
|
679
|
+
"description": "The base class."
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"name": "formAssociated",
|
|
683
|
+
"optional": true,
|
|
684
|
+
"type": {
|
|
685
|
+
"text": "boolean | undefined"
|
|
686
|
+
},
|
|
687
|
+
"description": "Whether the element is \"Form Associated\"."
|
|
688
|
+
}
|
|
689
|
+
]
|
|
690
|
+
}
|
|
691
|
+
],
|
|
692
|
+
"exports": [
|
|
693
|
+
{
|
|
694
|
+
"kind": "js",
|
|
695
|
+
"name": "internals",
|
|
696
|
+
"declaration": {
|
|
697
|
+
"name": "internals",
|
|
698
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"kind": "js",
|
|
703
|
+
"name": "isAttachInternalsMixin",
|
|
704
|
+
"declaration": {
|
|
705
|
+
"name": "isAttachInternalsMixin",
|
|
706
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"kind": "js",
|
|
711
|
+
"name": "AttachInternals",
|
|
712
|
+
"declaration": {
|
|
713
|
+
"name": "AttachInternals",
|
|
714
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"kind": "javascript-module",
|
|
721
|
+
"path": "../core/src/shared/mixins/Checked.ts",
|
|
722
|
+
"declarations": [
|
|
723
|
+
{
|
|
724
|
+
"kind": "function",
|
|
725
|
+
"name": "isCheckedMixin",
|
|
726
|
+
"return": {
|
|
727
|
+
"type": {
|
|
728
|
+
"text": ""
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"parameters": [
|
|
732
|
+
{
|
|
733
|
+
"name": "value",
|
|
734
|
+
"type": {
|
|
735
|
+
"text": "unknown"
|
|
736
|
+
},
|
|
737
|
+
"description": "The value to test."
|
|
738
|
+
}
|
|
739
|
+
],
|
|
740
|
+
"description": "Determines whether a value is a `CheckedMixin`."
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"kind": "mixin",
|
|
744
|
+
"description": "Mixin to augment an element with behavior that supports a checked state.",
|
|
745
|
+
"name": "Checked",
|
|
746
|
+
"members": [
|
|
747
|
+
{
|
|
748
|
+
"kind": "field",
|
|
749
|
+
"name": "checked",
|
|
750
|
+
"type": {
|
|
751
|
+
"text": "boolean"
|
|
752
|
+
},
|
|
753
|
+
"default": "false",
|
|
754
|
+
"description": "Whether the element is checked.",
|
|
755
|
+
"attribute": "checked",
|
|
756
|
+
"reflects": true
|
|
757
|
+
}
|
|
758
|
+
],
|
|
759
|
+
"attributes": [
|
|
760
|
+
{
|
|
761
|
+
"name": "checked",
|
|
762
|
+
"type": {
|
|
763
|
+
"text": "boolean"
|
|
764
|
+
},
|
|
765
|
+
"default": "false",
|
|
766
|
+
"description": "Whether the element is checked.",
|
|
767
|
+
"fieldName": "checked"
|
|
768
|
+
}
|
|
769
|
+
],
|
|
770
|
+
"parameters": [
|
|
771
|
+
{
|
|
772
|
+
"name": "base",
|
|
773
|
+
"type": {
|
|
774
|
+
"text": "T"
|
|
775
|
+
},
|
|
776
|
+
"description": "The base class."
|
|
777
|
+
}
|
|
778
|
+
]
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"exports": [
|
|
782
|
+
{
|
|
783
|
+
"kind": "js",
|
|
784
|
+
"name": "isCheckedMixin",
|
|
785
|
+
"declaration": {
|
|
786
|
+
"name": "isCheckedMixin",
|
|
787
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"kind": "js",
|
|
792
|
+
"name": "Checked",
|
|
793
|
+
"declaration": {
|
|
794
|
+
"name": "Checked",
|
|
795
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"kind": "javascript-module",
|
|
802
|
+
"path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
|
|
803
|
+
"declarations": [
|
|
804
|
+
{
|
|
805
|
+
"kind": "function",
|
|
806
|
+
"name": "isCheckedIndeterminateMixin",
|
|
807
|
+
"return": {
|
|
808
|
+
"type": {
|
|
809
|
+
"text": ""
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"parameters": [
|
|
813
|
+
{
|
|
814
|
+
"name": "value",
|
|
815
|
+
"type": {
|
|
816
|
+
"text": "unknown"
|
|
817
|
+
},
|
|
818
|
+
"description": "The value to test."
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"description": "Determines whether a value is a `CheckedIndeterminateMixin`."
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"kind": "mixin",
|
|
825
|
+
"description": "Mixin to augment an element with behavior that supports a mixed checked state.",
|
|
826
|
+
"name": "CheckedIndeterminate",
|
|
827
|
+
"members": [
|
|
828
|
+
{
|
|
829
|
+
"kind": "field",
|
|
830
|
+
"name": "indeterminate",
|
|
831
|
+
"type": {
|
|
832
|
+
"text": "boolean"
|
|
833
|
+
},
|
|
834
|
+
"default": "false",
|
|
835
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
836
|
+
"attribute": "indeterminate",
|
|
837
|
+
"reflects": true
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"kind": "field",
|
|
841
|
+
"name": "checked",
|
|
842
|
+
"type": {
|
|
843
|
+
"text": "boolean"
|
|
844
|
+
},
|
|
845
|
+
"default": "false",
|
|
846
|
+
"description": "Whether the element is checked.",
|
|
847
|
+
"attribute": "checked",
|
|
848
|
+
"reflects": true,
|
|
849
|
+
"inheritedFrom": {
|
|
850
|
+
"name": "Checked",
|
|
851
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
],
|
|
855
|
+
"attributes": [
|
|
856
|
+
{
|
|
857
|
+
"name": "indeterminate",
|
|
858
|
+
"type": {
|
|
859
|
+
"text": "boolean"
|
|
860
|
+
},
|
|
861
|
+
"default": "false",
|
|
862
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
863
|
+
"fieldName": "indeterminate"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "checked",
|
|
867
|
+
"type": {
|
|
868
|
+
"text": "boolean"
|
|
869
|
+
},
|
|
870
|
+
"default": "false",
|
|
871
|
+
"description": "Whether the element is checked.",
|
|
872
|
+
"fieldName": "checked",
|
|
873
|
+
"inheritedFrom": {
|
|
874
|
+
"name": "Checked",
|
|
875
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"mixins": [
|
|
880
|
+
{
|
|
881
|
+
"name": "Checked",
|
|
882
|
+
"module": "/core/src/shared/mixins/Checked"
|
|
883
|
+
}
|
|
884
|
+
],
|
|
885
|
+
"parameters": [
|
|
886
|
+
{
|
|
887
|
+
"name": "base",
|
|
888
|
+
"type": {
|
|
889
|
+
"text": "T"
|
|
890
|
+
},
|
|
891
|
+
"description": "The base class."
|
|
892
|
+
}
|
|
893
|
+
]
|
|
894
|
+
}
|
|
895
|
+
],
|
|
896
|
+
"exports": [
|
|
897
|
+
{
|
|
898
|
+
"kind": "js",
|
|
899
|
+
"name": "isCheckedIndeterminateMixin",
|
|
900
|
+
"declaration": {
|
|
901
|
+
"name": "isCheckedIndeterminateMixin",
|
|
902
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"kind": "js",
|
|
907
|
+
"name": "CheckedIndeterminate",
|
|
908
|
+
"declaration": {
|
|
909
|
+
"name": "CheckedIndeterminate",
|
|
910
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"kind": "javascript-module",
|
|
917
|
+
"path": "../core/src/shared/mixins/CheckedOrSelected.ts",
|
|
918
|
+
"declarations": [
|
|
919
|
+
{
|
|
920
|
+
"kind": "function",
|
|
921
|
+
"name": "isCheckedOrSelectedMixin",
|
|
922
|
+
"return": {
|
|
923
|
+
"type": {
|
|
924
|
+
"text": ""
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"parameters": [
|
|
928
|
+
{
|
|
929
|
+
"name": "value",
|
|
930
|
+
"type": {
|
|
931
|
+
"text": "unknown"
|
|
932
|
+
},
|
|
933
|
+
"description": "The value to test."
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
"description": "Determines whether a value is a `CheckedOrSelectedMixin`."
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"kind": "function",
|
|
940
|
+
"name": "isCheckedOrSelected",
|
|
941
|
+
"return": {
|
|
942
|
+
"type": {
|
|
943
|
+
"text": "boolean"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"parameters": [
|
|
947
|
+
{
|
|
948
|
+
"name": "element",
|
|
949
|
+
"type": {
|
|
950
|
+
"text": "CheckedOrSelectedMixin"
|
|
951
|
+
},
|
|
952
|
+
"description": "The element to test."
|
|
953
|
+
}
|
|
954
|
+
],
|
|
955
|
+
"description": "Determines whether the state of an element is checked or selected."
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"kind": "function",
|
|
959
|
+
"name": "checkOrSelect",
|
|
960
|
+
"return": {
|
|
961
|
+
"type": {
|
|
962
|
+
"text": "void"
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"parameters": [
|
|
966
|
+
{
|
|
967
|
+
"name": "element",
|
|
968
|
+
"type": {
|
|
969
|
+
"text": "CheckedOrSelectedMixin"
|
|
970
|
+
},
|
|
971
|
+
"description": "The element for which to set the checked or selected state."
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"name": "checkedOrSelected",
|
|
975
|
+
"type": {
|
|
976
|
+
"text": "boolean"
|
|
977
|
+
},
|
|
978
|
+
"description": "The checked or selected state."
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"description": "Sets the checked or selected state of an element."
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
"exports": [
|
|
985
|
+
{
|
|
986
|
+
"kind": "js",
|
|
987
|
+
"name": "isCheckedOrSelectedMixin",
|
|
988
|
+
"declaration": {
|
|
989
|
+
"name": "isCheckedOrSelectedMixin",
|
|
990
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"kind": "js",
|
|
995
|
+
"name": "isCheckedOrSelected",
|
|
996
|
+
"declaration": {
|
|
997
|
+
"name": "isCheckedOrSelected",
|
|
998
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"kind": "js",
|
|
1003
|
+
"name": "checkOrSelect",
|
|
1004
|
+
"declaration": {
|
|
1005
|
+
"name": "checkOrSelect",
|
|
1006
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"kind": "javascript-module",
|
|
1013
|
+
"path": "../core/src/shared/mixins/ConstraintValidation.ts",
|
|
1014
|
+
"declarations": [
|
|
1015
|
+
{
|
|
1016
|
+
"kind": "variable",
|
|
1017
|
+
"name": "validate",
|
|
1018
|
+
"description": "A symbol through which a \"Form Associated\" custom element validates its current state."
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"kind": "function",
|
|
1022
|
+
"name": "isConstraintValidationMixin",
|
|
1023
|
+
"return": {
|
|
1024
|
+
"type": {
|
|
1025
|
+
"text": ""
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1028
|
+
"parameters": [
|
|
1029
|
+
{
|
|
1030
|
+
"name": "value",
|
|
1031
|
+
"type": {
|
|
1032
|
+
"text": "unknown"
|
|
1033
|
+
},
|
|
1034
|
+
"description": "The value to test."
|
|
1035
|
+
}
|
|
1036
|
+
],
|
|
1037
|
+
"description": "Determines whether a value is a `ConstraintValidationMixin`."
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"kind": "mixin",
|
|
1041
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
|
|
1042
|
+
"name": "ConstraintValidation",
|
|
1043
|
+
"members": [
|
|
1044
|
+
{
|
|
1045
|
+
"kind": "field",
|
|
1046
|
+
"name": "[_validityMessage]",
|
|
1047
|
+
"type": {
|
|
1048
|
+
"text": "string | undefined"
|
|
1049
|
+
},
|
|
1050
|
+
"privacy": "private"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"kind": "field",
|
|
1054
|
+
"name": "willValidate",
|
|
1055
|
+
"type": {
|
|
1056
|
+
"text": "boolean"
|
|
1057
|
+
},
|
|
1058
|
+
"description": "Whether the element is a submittable element that is a candidate for constraint validation.",
|
|
1059
|
+
"readonly": true
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"kind": "field",
|
|
1063
|
+
"name": "validity",
|
|
1064
|
+
"type": {
|
|
1065
|
+
"text": "ValidityState"
|
|
1066
|
+
},
|
|
1067
|
+
"description": "The validity state of the element.",
|
|
1068
|
+
"readonly": true
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"kind": "field",
|
|
1072
|
+
"name": "validationMessage",
|
|
1073
|
+
"type": {
|
|
1074
|
+
"text": "string"
|
|
1075
|
+
},
|
|
1076
|
+
"description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
|
|
1077
|
+
"readonly": true
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"kind": "method",
|
|
1081
|
+
"name": "reportValidity",
|
|
1082
|
+
"return": {
|
|
1083
|
+
"type": {
|
|
1084
|
+
"text": "boolean"
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
"description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user."
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"kind": "method",
|
|
1091
|
+
"name": "checkValidity",
|
|
1092
|
+
"return": {
|
|
1093
|
+
"type": {
|
|
1094
|
+
"text": "boolean"
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
"description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"kind": "method",
|
|
1101
|
+
"name": "setCustomValidity",
|
|
1102
|
+
"return": {
|
|
1103
|
+
"type": {
|
|
1104
|
+
"text": "void"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
"parameters": [
|
|
1108
|
+
{
|
|
1109
|
+
"name": "error",
|
|
1110
|
+
"type": {
|
|
1111
|
+
"text": "string"
|
|
1112
|
+
},
|
|
1113
|
+
"description": "The message to use for validity errors."
|
|
1114
|
+
}
|
|
1115
|
+
],
|
|
1116
|
+
"description": "Sets a custom validity message for the element."
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"kind": "method",
|
|
1120
|
+
"name": "[_updateValidity]",
|
|
1121
|
+
"privacy": "private",
|
|
1122
|
+
"return": {
|
|
1123
|
+
"type": {
|
|
1124
|
+
"text": "void"
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"kind": "method",
|
|
1130
|
+
"name": "#getNativeMessage",
|
|
1131
|
+
"privacy": "private",
|
|
1132
|
+
"return": {
|
|
1133
|
+
"type": {
|
|
1134
|
+
"text": "string"
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
"parameters": [
|
|
1138
|
+
{
|
|
1139
|
+
"name": "flags",
|
|
1140
|
+
"type": {
|
|
1141
|
+
"text": "ValidityStateFlags"
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
]
|
|
1145
|
+
}
|
|
1146
|
+
],
|
|
1147
|
+
"parameters": [
|
|
1148
|
+
{
|
|
1149
|
+
"name": "base",
|
|
1150
|
+
"type": {
|
|
1151
|
+
"text": "T"
|
|
1152
|
+
},
|
|
1153
|
+
"description": "The base class."
|
|
1154
|
+
}
|
|
1155
|
+
]
|
|
1156
|
+
}
|
|
1157
|
+
],
|
|
1158
|
+
"exports": [
|
|
1159
|
+
{
|
|
1160
|
+
"kind": "js",
|
|
1161
|
+
"name": "validate",
|
|
1162
|
+
"declaration": {
|
|
1163
|
+
"name": "validate",
|
|
1164
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"kind": "js",
|
|
1169
|
+
"name": "isConstraintValidationMixin",
|
|
1170
|
+
"declaration": {
|
|
1171
|
+
"name": "isConstraintValidationMixin",
|
|
1172
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"kind": "js",
|
|
1177
|
+
"name": "ConstraintValidation",
|
|
1178
|
+
"declaration": {
|
|
1179
|
+
"name": "ConstraintValidation",
|
|
1180
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"kind": "javascript-module",
|
|
1187
|
+
"path": "../core/src/shared/mixins/Constructor.ts",
|
|
1188
|
+
"declarations": [],
|
|
1189
|
+
"exports": []
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"kind": "javascript-module",
|
|
1193
|
+
"path": "../core/src/shared/mixins/Dirty.ts",
|
|
1194
|
+
"declarations": [
|
|
1195
|
+
{
|
|
1196
|
+
"kind": "function",
|
|
1197
|
+
"name": "isDirtyMixin",
|
|
1198
|
+
"return": {
|
|
1199
|
+
"type": {
|
|
1200
|
+
"text": ""
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"parameters": [
|
|
1204
|
+
{
|
|
1205
|
+
"name": "value",
|
|
1206
|
+
"type": {
|
|
1207
|
+
"text": "unknown"
|
|
1208
|
+
},
|
|
1209
|
+
"description": "The value to test."
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"description": "Determines whether a value is a `DirtyMixin`."
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"kind": "mixin",
|
|
1216
|
+
"description": "Mixin to augment an element with functionality used to mark it as dirty.",
|
|
1217
|
+
"name": "Dirty",
|
|
1218
|
+
"members": [
|
|
1219
|
+
{
|
|
1220
|
+
"kind": "field",
|
|
1221
|
+
"name": "[_eventHandler]",
|
|
1222
|
+
"privacy": "private"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"kind": "field",
|
|
1226
|
+
"name": "dirty",
|
|
1227
|
+
"type": {
|
|
1228
|
+
"text": "boolean"
|
|
1229
|
+
},
|
|
1230
|
+
"description": "Whether the user has modified the value of the element.",
|
|
1231
|
+
"readonly": true
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"kind": "field",
|
|
1235
|
+
"name": "pristine",
|
|
1236
|
+
"type": {
|
|
1237
|
+
"text": "boolean"
|
|
1238
|
+
},
|
|
1239
|
+
"description": "Whether the user has not modified the value of the element.",
|
|
1240
|
+
"readonly": true
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"kind": "method",
|
|
1244
|
+
"name": "markAsPristine",
|
|
1245
|
+
"return": {
|
|
1246
|
+
"type": {
|
|
1247
|
+
"text": "void"
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
"description": "Marks the element as pristine."
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"kind": "method",
|
|
1254
|
+
"name": "markAsDirty",
|
|
1255
|
+
"return": {
|
|
1256
|
+
"type": {
|
|
1257
|
+
"text": "void"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"description": "Marks the element as dirty."
|
|
1261
|
+
}
|
|
1262
|
+
],
|
|
1263
|
+
"parameters": [
|
|
1264
|
+
{
|
|
1265
|
+
"name": "base",
|
|
1266
|
+
"type": {
|
|
1267
|
+
"text": "T"
|
|
1268
|
+
},
|
|
1269
|
+
"description": "The base class."
|
|
1270
|
+
}
|
|
1271
|
+
]
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
"exports": [
|
|
1275
|
+
{
|
|
1276
|
+
"kind": "js",
|
|
1277
|
+
"name": "isDirtyMixin",
|
|
1278
|
+
"declaration": {
|
|
1279
|
+
"name": "isDirtyMixin",
|
|
1280
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
1281
|
+
}
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"kind": "js",
|
|
1285
|
+
"name": "Dirty",
|
|
1286
|
+
"declaration": {
|
|
1287
|
+
"name": "Dirty",
|
|
1288
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"kind": "javascript-module",
|
|
1295
|
+
"path": "../core/src/shared/mixins/Disabled.ts",
|
|
1296
|
+
"declarations": [
|
|
1297
|
+
{
|
|
1298
|
+
"kind": "function",
|
|
1299
|
+
"name": "isDisabledMixin",
|
|
1300
|
+
"return": {
|
|
1301
|
+
"type": {
|
|
1302
|
+
"text": "value is DisabledMixin"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"parameters": [
|
|
1306
|
+
{
|
|
1307
|
+
"name": "value",
|
|
1308
|
+
"type": {
|
|
1309
|
+
"text": "unknown"
|
|
1310
|
+
},
|
|
1311
|
+
"description": "The value to test."
|
|
1312
|
+
}
|
|
1313
|
+
],
|
|
1314
|
+
"description": "Determines whether a value is a `DisabledMixin`."
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"kind": "mixin",
|
|
1318
|
+
"description": "Mixin to augment an element with behavior that supports a disabled state.",
|
|
1319
|
+
"name": "Disabled",
|
|
1320
|
+
"members": [
|
|
1321
|
+
{
|
|
1322
|
+
"kind": "field",
|
|
1323
|
+
"name": "disabled",
|
|
1324
|
+
"type": {
|
|
1325
|
+
"text": "boolean"
|
|
1326
|
+
},
|
|
1327
|
+
"default": "false",
|
|
1328
|
+
"description": "Whether the element is disabled.",
|
|
1329
|
+
"attribute": "disabled"
|
|
1330
|
+
}
|
|
1331
|
+
],
|
|
1332
|
+
"attributes": [
|
|
1333
|
+
{
|
|
1334
|
+
"name": "disabled",
|
|
1335
|
+
"type": {
|
|
1336
|
+
"text": "boolean"
|
|
1337
|
+
},
|
|
1338
|
+
"default": "false",
|
|
1339
|
+
"description": "Whether the element is disabled.",
|
|
1340
|
+
"fieldName": "disabled"
|
|
1341
|
+
}
|
|
1342
|
+
],
|
|
1343
|
+
"parameters": [
|
|
1344
|
+
{
|
|
1345
|
+
"name": "base",
|
|
1346
|
+
"type": {
|
|
1347
|
+
"text": "T"
|
|
1348
|
+
},
|
|
1349
|
+
"description": "The base class."
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"name": "reflect",
|
|
1353
|
+
"default": "true",
|
|
1354
|
+
"type": {
|
|
1355
|
+
"text": "boolean"
|
|
1356
|
+
},
|
|
1357
|
+
"description": "Whether the disabled property is reflected as an attribute.",
|
|
1358
|
+
"optional": true
|
|
1359
|
+
}
|
|
1360
|
+
]
|
|
1361
|
+
}
|
|
1362
|
+
],
|
|
1363
|
+
"exports": [
|
|
1364
|
+
{
|
|
1365
|
+
"kind": "js",
|
|
1366
|
+
"name": "isDisabledMixin",
|
|
1367
|
+
"declaration": {
|
|
1368
|
+
"name": "isDisabledMixin",
|
|
1369
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"kind": "js",
|
|
1374
|
+
"name": "Disabled",
|
|
1375
|
+
"declaration": {
|
|
1376
|
+
"name": "Disabled",
|
|
1377
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"kind": "javascript-module",
|
|
1384
|
+
"path": "../core/src/shared/mixins/DisabledInteractive.ts",
|
|
1385
|
+
"declarations": [
|
|
1386
|
+
{
|
|
1387
|
+
"kind": "function",
|
|
1388
|
+
"name": "isDisabledInteractiveMixin",
|
|
1389
|
+
"return": {
|
|
1390
|
+
"type": {
|
|
1391
|
+
"text": "value is DisabledInteractiveMixin"
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
"parameters": [
|
|
1395
|
+
{
|
|
1396
|
+
"name": "value",
|
|
1397
|
+
"type": {
|
|
1398
|
+
"text": "unknown"
|
|
1399
|
+
},
|
|
1400
|
+
"description": "The value to test."
|
|
1401
|
+
}
|
|
1402
|
+
],
|
|
1403
|
+
"description": "Determines whether a value is a `DisabledInteractiveMixin`."
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"kind": "mixin",
|
|
1407
|
+
"description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
|
|
1408
|
+
"name": "DisabledInteractive",
|
|
1409
|
+
"members": [
|
|
1410
|
+
{
|
|
1411
|
+
"kind": "field",
|
|
1412
|
+
"name": "[_suppressedEventHandler]",
|
|
1413
|
+
"privacy": "private",
|
|
1414
|
+
"readonly": true
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"kind": "field",
|
|
1418
|
+
"name": "disabledInteractive",
|
|
1419
|
+
"type": {
|
|
1420
|
+
"text": "boolean"
|
|
1421
|
+
},
|
|
1422
|
+
"default": "false",
|
|
1423
|
+
"description": "Whether the element is disabled and interactive.",
|
|
1424
|
+
"attribute": "disabled-interactive",
|
|
1425
|
+
"reflects": true
|
|
1426
|
+
}
|
|
1427
|
+
],
|
|
1428
|
+
"attributes": [
|
|
1429
|
+
{
|
|
1430
|
+
"name": "disabled-interactive",
|
|
1431
|
+
"type": {
|
|
1432
|
+
"text": "boolean"
|
|
1433
|
+
},
|
|
1434
|
+
"default": "false",
|
|
1435
|
+
"description": "Whether the element is disabled and interactive.",
|
|
1436
|
+
"fieldName": "disabledInteractive"
|
|
1437
|
+
}
|
|
1438
|
+
],
|
|
1439
|
+
"parameters": [
|
|
1440
|
+
{
|
|
1441
|
+
"name": "base",
|
|
1442
|
+
"type": {
|
|
1443
|
+
"text": "T"
|
|
1444
|
+
},
|
|
1445
|
+
"description": "The base class."
|
|
1446
|
+
}
|
|
1447
|
+
]
|
|
1448
|
+
}
|
|
1449
|
+
],
|
|
1450
|
+
"exports": [
|
|
1451
|
+
{
|
|
1452
|
+
"kind": "js",
|
|
1453
|
+
"name": "isDisabledInteractiveMixin",
|
|
1454
|
+
"declaration": {
|
|
1455
|
+
"name": "isDisabledInteractiveMixin",
|
|
1456
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"kind": "js",
|
|
1461
|
+
"name": "DisabledInteractive",
|
|
1462
|
+
"declaration": {
|
|
1463
|
+
"name": "DisabledInteractive",
|
|
1464
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1467
|
+
]
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"kind": "javascript-module",
|
|
1471
|
+
"path": "../core/src/shared/mixins/EventAttribute.ts",
|
|
1472
|
+
"declarations": [
|
|
1473
|
+
{
|
|
1474
|
+
"kind": "mixin",
|
|
1475
|
+
"description": "Mixin that adds support for custom event attributes.",
|
|
1476
|
+
"name": "EventAttribute",
|
|
1477
|
+
"parameters": [
|
|
1478
|
+
{
|
|
1479
|
+
"name": "base",
|
|
1480
|
+
"type": {
|
|
1481
|
+
"text": "T"
|
|
1482
|
+
},
|
|
1483
|
+
"description": "The base class from which to inherit."
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"name": "types",
|
|
1487
|
+
"type": {
|
|
1488
|
+
"text": "string[]"
|
|
1489
|
+
},
|
|
1490
|
+
"description": "The types of event attributes."
|
|
1491
|
+
}
|
|
1492
|
+
]
|
|
1493
|
+
}
|
|
1494
|
+
],
|
|
1495
|
+
"exports": [
|
|
1496
|
+
{
|
|
1497
|
+
"kind": "js",
|
|
1498
|
+
"name": "EventAttribute",
|
|
1499
|
+
"declaration": {
|
|
1500
|
+
"name": "EventAttribute",
|
|
1501
|
+
"module": "../core/src/shared/mixins/EventAttribute.ts"
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
]
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"kind": "javascript-module",
|
|
1508
|
+
"path": "../core/src/shared/mixins/Focusable.ts",
|
|
1509
|
+
"declarations": [
|
|
1510
|
+
{
|
|
1511
|
+
"kind": "mixin",
|
|
1512
|
+
"description": "Mixin to augment an element with behavior that supports a focused state.",
|
|
1513
|
+
"name": "Focusable",
|
|
1514
|
+
"members": [
|
|
1515
|
+
{
|
|
1516
|
+
"kind": "field",
|
|
1517
|
+
"name": "[_tabindex]",
|
|
1518
|
+
"type": {
|
|
1519
|
+
"text": "number"
|
|
1520
|
+
},
|
|
1521
|
+
"privacy": "private",
|
|
1522
|
+
"default": "0"
|
|
1523
|
+
}
|
|
1524
|
+
],
|
|
1525
|
+
"parameters": [
|
|
1526
|
+
{
|
|
1527
|
+
"name": "base",
|
|
1528
|
+
"type": {
|
|
1529
|
+
"text": "T"
|
|
1530
|
+
},
|
|
1531
|
+
"description": "The base class."
|
|
1532
|
+
}
|
|
1533
|
+
]
|
|
1534
|
+
}
|
|
1535
|
+
],
|
|
1536
|
+
"exports": [
|
|
1537
|
+
{
|
|
1538
|
+
"kind": "js",
|
|
1539
|
+
"name": "Focusable",
|
|
1540
|
+
"declaration": {
|
|
1541
|
+
"name": "Focusable",
|
|
1542
|
+
"module": "../core/src/shared/mixins/Focusable.ts"
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"kind": "javascript-module",
|
|
1549
|
+
"path": "../core/src/shared/mixins/FormAssociated.ts",
|
|
1550
|
+
"declarations": [
|
|
1551
|
+
{
|
|
1552
|
+
"kind": "variable",
|
|
1553
|
+
"name": "formValue",
|
|
1554
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"kind": "variable",
|
|
1558
|
+
"name": "defaultValue",
|
|
1559
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"kind": "function",
|
|
1563
|
+
"name": "isFormAssociatedMixin",
|
|
1564
|
+
"return": {
|
|
1565
|
+
"type": {
|
|
1566
|
+
"text": ""
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
"parameters": [
|
|
1570
|
+
{
|
|
1571
|
+
"name": "value",
|
|
1572
|
+
"type": {
|
|
1573
|
+
"text": "unknown"
|
|
1574
|
+
},
|
|
1575
|
+
"description": "The value to test."
|
|
1576
|
+
}
|
|
1577
|
+
],
|
|
1578
|
+
"description": "Determines whether a value is a `FormAssociatedMixin`."
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"kind": "mixin",
|
|
1582
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior.",
|
|
1583
|
+
"name": "FormAssociated",
|
|
1584
|
+
"members": [
|
|
1585
|
+
{
|
|
1586
|
+
"kind": "field",
|
|
1587
|
+
"name": "formAssociated",
|
|
1588
|
+
"type": {
|
|
1589
|
+
"text": "boolean"
|
|
1590
|
+
},
|
|
1591
|
+
"static": true,
|
|
1592
|
+
"readonly": true,
|
|
1593
|
+
"default": "true",
|
|
1594
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"kind": "field",
|
|
1598
|
+
"name": "[_defaultValue]",
|
|
1599
|
+
"type": {
|
|
1600
|
+
"text": "unknown"
|
|
1601
|
+
},
|
|
1602
|
+
"privacy": "private"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"kind": "field",
|
|
1606
|
+
"name": "[_defaultIndeterminate]",
|
|
1607
|
+
"type": {
|
|
1608
|
+
"text": "boolean"
|
|
1609
|
+
},
|
|
1610
|
+
"privacy": "private",
|
|
1611
|
+
"default": "false"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"kind": "field",
|
|
1615
|
+
"name": "[_formDisabled]",
|
|
1616
|
+
"type": {
|
|
1617
|
+
"text": "boolean"
|
|
1618
|
+
},
|
|
1619
|
+
"privacy": "private",
|
|
1620
|
+
"default": "false"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"kind": "field",
|
|
1624
|
+
"name": "form",
|
|
1625
|
+
"type": {
|
|
1626
|
+
"text": "HTMLFormElement | null"
|
|
1627
|
+
},
|
|
1628
|
+
"description": "The `HTMLFormElement` associated with this element.",
|
|
1629
|
+
"readonly": true
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"kind": "field",
|
|
1633
|
+
"name": "labels",
|
|
1634
|
+
"type": {
|
|
1635
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
1636
|
+
},
|
|
1637
|
+
"readonly": true
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"kind": "field",
|
|
1641
|
+
"name": "name",
|
|
1642
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
1643
|
+
"attribute": "name"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"kind": "field",
|
|
1647
|
+
"name": "disabled",
|
|
1648
|
+
"type": {
|
|
1649
|
+
"text": "boolean"
|
|
1650
|
+
},
|
|
1651
|
+
"description": "Whether the element is disabled.",
|
|
1652
|
+
"default": "false",
|
|
1653
|
+
"attribute": "disabled"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"kind": "method",
|
|
1657
|
+
"name": "formDisabledCallback",
|
|
1658
|
+
"return": {
|
|
1659
|
+
"type": {
|
|
1660
|
+
"text": "void"
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"parameters": [
|
|
1664
|
+
{
|
|
1665
|
+
"name": "disabled",
|
|
1666
|
+
"type": {
|
|
1667
|
+
"text": "boolean"
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
],
|
|
1671
|
+
"description": "Called when the element is disabled or enabled via its form association."
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"kind": "method",
|
|
1675
|
+
"name": "formResetCallback",
|
|
1676
|
+
"return": {
|
|
1677
|
+
"type": {
|
|
1678
|
+
"text": "void"
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"description": "Called when the associated form is reset."
|
|
1682
|
+
}
|
|
1683
|
+
],
|
|
1684
|
+
"attributes": [
|
|
1685
|
+
{
|
|
1686
|
+
"name": "name",
|
|
1687
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
1688
|
+
"fieldName": "name"
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"name": "disabled",
|
|
1692
|
+
"type": {
|
|
1693
|
+
"text": "boolean"
|
|
1694
|
+
},
|
|
1695
|
+
"description": "Whether the element is disabled.",
|
|
1696
|
+
"default": "false",
|
|
1697
|
+
"fieldName": "disabled"
|
|
1698
|
+
}
|
|
1699
|
+
],
|
|
1700
|
+
"parameters": [
|
|
1701
|
+
{
|
|
1702
|
+
"name": "base",
|
|
1703
|
+
"type": {
|
|
1704
|
+
"text": "T"
|
|
1705
|
+
},
|
|
1706
|
+
"description": "The base class."
|
|
1707
|
+
}
|
|
1708
|
+
]
|
|
1709
|
+
}
|
|
1710
|
+
],
|
|
1711
|
+
"exports": [
|
|
1712
|
+
{
|
|
1713
|
+
"kind": "js",
|
|
1714
|
+
"name": "formValue",
|
|
1715
|
+
"declaration": {
|
|
1716
|
+
"name": "formValue",
|
|
1717
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"kind": "js",
|
|
1722
|
+
"name": "defaultValue",
|
|
1723
|
+
"declaration": {
|
|
1724
|
+
"name": "defaultValue",
|
|
1725
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"kind": "js",
|
|
1730
|
+
"name": "isFormAssociatedMixin",
|
|
1731
|
+
"declaration": {
|
|
1732
|
+
"name": "isFormAssociatedMixin",
|
|
1733
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"kind": "js",
|
|
1738
|
+
"name": "FormAssociated",
|
|
1739
|
+
"declaration": {
|
|
1740
|
+
"name": "FormAssociated",
|
|
1741
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
]
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"kind": "javascript-module",
|
|
1748
|
+
"path": "../core/src/shared/mixins/FormSubmitter.ts",
|
|
1749
|
+
"declarations": [
|
|
1750
|
+
{
|
|
1751
|
+
"kind": "function",
|
|
1752
|
+
"name": "isFormSubmitterMixin",
|
|
1753
|
+
"return": {
|
|
1754
|
+
"type": {
|
|
1755
|
+
"text": "value is FormSubmitterMixin"
|
|
1756
|
+
}
|
|
1757
|
+
},
|
|
1758
|
+
"parameters": [
|
|
1759
|
+
{
|
|
1760
|
+
"name": "value",
|
|
1761
|
+
"type": {
|
|
1762
|
+
"text": "unknown"
|
|
1763
|
+
},
|
|
1764
|
+
"description": "The value to test."
|
|
1765
|
+
}
|
|
1766
|
+
],
|
|
1767
|
+
"description": "Determines whether a value is a `FormSubmitterMixin`."
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"kind": "mixin",
|
|
1771
|
+
"description": "Mixin to augment an element with behavior used to submit a form.",
|
|
1772
|
+
"name": "FormSubmitter",
|
|
1773
|
+
"members": [
|
|
1774
|
+
{
|
|
1775
|
+
"kind": "field",
|
|
1776
|
+
"name": "formAssociated",
|
|
1777
|
+
"type": {
|
|
1778
|
+
"text": "boolean"
|
|
1779
|
+
},
|
|
1780
|
+
"static": true,
|
|
1781
|
+
"readonly": true,
|
|
1782
|
+
"default": "true",
|
|
1783
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"kind": "field",
|
|
1787
|
+
"name": "name",
|
|
1788
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
1789
|
+
"attribute": "name"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"kind": "field",
|
|
1793
|
+
"name": "value",
|
|
1794
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
1795
|
+
"attribute": "value"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"kind": "field",
|
|
1799
|
+
"name": "type",
|
|
1800
|
+
"type": {
|
|
1801
|
+
"text": "FormSubmitterType"
|
|
1802
|
+
},
|
|
1803
|
+
"default": "\"button\"",
|
|
1804
|
+
"description": "The type of the element.",
|
|
1805
|
+
"attribute": "type"
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"kind": "field",
|
|
1809
|
+
"name": "[_clickHandler]",
|
|
1810
|
+
"privacy": "private"
|
|
1811
|
+
}
|
|
1812
|
+
],
|
|
1813
|
+
"attributes": [
|
|
1814
|
+
{
|
|
1815
|
+
"name": "name",
|
|
1816
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
1817
|
+
"fieldName": "name"
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"name": "value",
|
|
1821
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
1822
|
+
"fieldName": "value"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"name": "type",
|
|
1826
|
+
"type": {
|
|
1827
|
+
"text": "FormSubmitterType"
|
|
1828
|
+
},
|
|
1829
|
+
"default": "\"button\"",
|
|
1830
|
+
"description": "The type of the element.",
|
|
1831
|
+
"fieldName": "type"
|
|
1832
|
+
}
|
|
1833
|
+
],
|
|
1834
|
+
"parameters": [
|
|
1835
|
+
{
|
|
1836
|
+
"name": "base",
|
|
1837
|
+
"type": {
|
|
1838
|
+
"text": "T"
|
|
1839
|
+
},
|
|
1840
|
+
"description": "The base class."
|
|
1841
|
+
}
|
|
1842
|
+
]
|
|
1843
|
+
}
|
|
1844
|
+
],
|
|
1845
|
+
"exports": [
|
|
1846
|
+
{
|
|
1847
|
+
"kind": "js",
|
|
1848
|
+
"name": "isFormSubmitterMixin",
|
|
1849
|
+
"declaration": {
|
|
1850
|
+
"name": "isFormSubmitterMixin",
|
|
1851
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"kind": "js",
|
|
1856
|
+
"name": "FormSubmitter",
|
|
1857
|
+
"declaration": {
|
|
1858
|
+
"name": "FormSubmitter",
|
|
1859
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
]
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"kind": "javascript-module",
|
|
1866
|
+
"path": "../core/src/shared/mixins/hasKeys.ts",
|
|
1867
|
+
"declarations": [
|
|
1868
|
+
{
|
|
1869
|
+
"kind": "function",
|
|
1870
|
+
"name": "hasKeys",
|
|
1871
|
+
"return": {
|
|
1872
|
+
"type": {
|
|
1873
|
+
"text": "boolean"
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
"parameters": [
|
|
1877
|
+
{
|
|
1878
|
+
"name": "value",
|
|
1879
|
+
"type": {
|
|
1880
|
+
"text": "unknown"
|
|
1881
|
+
},
|
|
1882
|
+
"description": "The value to test."
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"name": "keys",
|
|
1886
|
+
"type": {
|
|
1887
|
+
"text": "Array<keyof T>"
|
|
1888
|
+
}
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"description": ": Array<keyof T>} keys The keys of `T` to test.",
|
|
1892
|
+
"name": "",
|
|
1893
|
+
"type": {
|
|
1894
|
+
"text": "...keys"
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
|
+
"description": "Determines whether an object has keys for a given type."
|
|
1899
|
+
}
|
|
1900
|
+
],
|
|
1901
|
+
"exports": [
|
|
1902
|
+
{
|
|
1903
|
+
"kind": "js",
|
|
1904
|
+
"name": "hasKeys",
|
|
1905
|
+
"declaration": {
|
|
1906
|
+
"name": "hasKeys",
|
|
1907
|
+
"module": "../core/src/shared/mixins/hasKeys.ts"
|
|
1908
|
+
}
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"kind": "javascript-module",
|
|
1914
|
+
"path": "../core/src/shared/mixins/HtmlFor.ts",
|
|
1915
|
+
"declarations": [
|
|
1916
|
+
{
|
|
1917
|
+
"kind": "function",
|
|
1918
|
+
"name": "isHtmlForMixin",
|
|
1919
|
+
"return": {
|
|
1920
|
+
"type": {
|
|
1921
|
+
"text": "value is HtmlForMixin"
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1924
|
+
"parameters": [
|
|
1925
|
+
{
|
|
1926
|
+
"name": "value",
|
|
1927
|
+
"type": {
|
|
1928
|
+
"text": "unknown"
|
|
1929
|
+
},
|
|
1930
|
+
"description": "The value to test."
|
|
1931
|
+
}
|
|
1932
|
+
],
|
|
1933
|
+
"description": "Determines whether a value is a `HtmlForMixin`."
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"kind": "mixin",
|
|
1937
|
+
"description": "Mixin that creates an attached element associated with an interactive control.",
|
|
1938
|
+
"name": "HtmlFor",
|
|
1939
|
+
"members": [
|
|
1940
|
+
{
|
|
1941
|
+
"kind": "field",
|
|
1942
|
+
"name": "[_control]",
|
|
1943
|
+
"type": {
|
|
1944
|
+
"text": "HTMLElement | null"
|
|
1945
|
+
},
|
|
1946
|
+
"privacy": "private",
|
|
1947
|
+
"default": "null"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"kind": "field",
|
|
1951
|
+
"name": "[_firstUpdated]",
|
|
1952
|
+
"type": {
|
|
1953
|
+
"text": "boolean"
|
|
1954
|
+
},
|
|
1955
|
+
"privacy": "private",
|
|
1956
|
+
"default": "false"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"kind": "field",
|
|
1960
|
+
"name": "htmlFor",
|
|
1961
|
+
"type": {
|
|
1962
|
+
"text": "string | null"
|
|
1963
|
+
},
|
|
1964
|
+
"default": "null",
|
|
1965
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
1966
|
+
"attribute": "for"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"kind": "field",
|
|
1970
|
+
"name": "control",
|
|
1971
|
+
"description": "The interactive element to which this element is attached.",
|
|
1972
|
+
"readonly": true
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"kind": "method",
|
|
1976
|
+
"name": "attach",
|
|
1977
|
+
"return": {
|
|
1978
|
+
"type": {
|
|
1979
|
+
"text": "void"
|
|
1980
|
+
}
|
|
1981
|
+
},
|
|
1982
|
+
"parameters": [
|
|
1983
|
+
{
|
|
1984
|
+
"name": "control",
|
|
1985
|
+
"type": {
|
|
1986
|
+
"text": "HTMLElement"
|
|
1987
|
+
},
|
|
1988
|
+
"description": "The element that controls the attachable element."
|
|
1989
|
+
}
|
|
1990
|
+
],
|
|
1991
|
+
"description": "Attaches the element to an interactive control."
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"kind": "method",
|
|
1995
|
+
"name": "detach",
|
|
1996
|
+
"return": {
|
|
1997
|
+
"type": {
|
|
1998
|
+
"text": "void"
|
|
1999
|
+
}
|
|
2000
|
+
},
|
|
2001
|
+
"description": "Detaches the element from its current interactive control."
|
|
2002
|
+
}
|
|
2003
|
+
],
|
|
2004
|
+
"attributes": [
|
|
2005
|
+
{
|
|
2006
|
+
"name": "for",
|
|
2007
|
+
"type": {
|
|
2008
|
+
"text": "string | null"
|
|
2009
|
+
},
|
|
2010
|
+
"default": "null",
|
|
2011
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
2012
|
+
"fieldName": "htmlFor"
|
|
2013
|
+
}
|
|
2014
|
+
],
|
|
2015
|
+
"parameters": [
|
|
2016
|
+
{
|
|
2017
|
+
"name": "base",
|
|
2018
|
+
"type": {
|
|
2019
|
+
"text": "T"
|
|
2020
|
+
},
|
|
2021
|
+
"description": "The base class."
|
|
2022
|
+
}
|
|
2023
|
+
]
|
|
2024
|
+
}
|
|
2025
|
+
],
|
|
2026
|
+
"exports": [
|
|
2027
|
+
{
|
|
2028
|
+
"kind": "js",
|
|
2029
|
+
"name": "isHtmlForMixin",
|
|
2030
|
+
"declaration": {
|
|
2031
|
+
"name": "isHtmlForMixin",
|
|
2032
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"kind": "js",
|
|
2037
|
+
"name": "HtmlFor",
|
|
2038
|
+
"declaration": {
|
|
2039
|
+
"name": "HtmlFor",
|
|
2040
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
]
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
"kind": "javascript-module",
|
|
2047
|
+
"path": "../core/src/shared/mixins/index.ts",
|
|
2048
|
+
"declarations": [],
|
|
2049
|
+
"exports": [
|
|
2050
|
+
{
|
|
2051
|
+
"kind": "js",
|
|
2052
|
+
"name": "*",
|
|
2053
|
+
"declaration": {
|
|
2054
|
+
"name": "*",
|
|
2055
|
+
"package": "\"./AttachInternals\""
|
|
2056
|
+
}
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"kind": "js",
|
|
2060
|
+
"name": "*",
|
|
2061
|
+
"declaration": {
|
|
2062
|
+
"name": "*",
|
|
2063
|
+
"package": "\"./Checked\""
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"kind": "js",
|
|
2068
|
+
"name": "*",
|
|
2069
|
+
"declaration": {
|
|
2070
|
+
"name": "*",
|
|
2071
|
+
"package": "\"./CheckedIndeterminate\""
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"kind": "js",
|
|
2076
|
+
"name": "*",
|
|
2077
|
+
"declaration": {
|
|
2078
|
+
"name": "*",
|
|
2079
|
+
"package": "\"./CheckedOrSelected\""
|
|
2080
|
+
}
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
"kind": "js",
|
|
2084
|
+
"name": "*",
|
|
2085
|
+
"declaration": {
|
|
2086
|
+
"name": "*",
|
|
2087
|
+
"package": "\"./ConstraintValidation\""
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"kind": "js",
|
|
2092
|
+
"name": "*",
|
|
2093
|
+
"declaration": {
|
|
2094
|
+
"name": "*",
|
|
2095
|
+
"package": "\"./Dirty\""
|
|
2096
|
+
}
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
"kind": "js",
|
|
2100
|
+
"name": "*",
|
|
2101
|
+
"declaration": {
|
|
2102
|
+
"name": "*",
|
|
2103
|
+
"package": "\"./Disabled\""
|
|
2104
|
+
}
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"kind": "js",
|
|
2108
|
+
"name": "*",
|
|
2109
|
+
"declaration": {
|
|
2110
|
+
"name": "*",
|
|
2111
|
+
"package": "\"./DisabledInteractive\""
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"kind": "js",
|
|
2116
|
+
"name": "*",
|
|
2117
|
+
"declaration": {
|
|
2118
|
+
"name": "*",
|
|
2119
|
+
"package": "\"./EventAttribute\""
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"kind": "js",
|
|
2124
|
+
"name": "*",
|
|
2125
|
+
"declaration": {
|
|
2126
|
+
"name": "*",
|
|
2127
|
+
"package": "\"./Focusable\""
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"kind": "js",
|
|
2132
|
+
"name": "*",
|
|
2133
|
+
"declaration": {
|
|
2134
|
+
"name": "*",
|
|
2135
|
+
"package": "\"./FormAssociated\""
|
|
2136
|
+
}
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"kind": "js",
|
|
2140
|
+
"name": "*",
|
|
2141
|
+
"declaration": {
|
|
2142
|
+
"name": "*",
|
|
2143
|
+
"package": "\"./FormSubmitter\""
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
"kind": "js",
|
|
2148
|
+
"name": "*",
|
|
2149
|
+
"declaration": {
|
|
2150
|
+
"name": "*",
|
|
2151
|
+
"package": "\"./hasKeys\""
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"kind": "js",
|
|
2156
|
+
"name": "*",
|
|
2157
|
+
"declaration": {
|
|
2158
|
+
"name": "*",
|
|
2159
|
+
"package": "\"./HtmlFor\""
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"kind": "js",
|
|
2164
|
+
"name": "*",
|
|
2165
|
+
"declaration": {
|
|
2166
|
+
"name": "*",
|
|
2167
|
+
"package": "\"./KeyboardClick\""
|
|
2168
|
+
}
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"kind": "js",
|
|
2172
|
+
"name": "*",
|
|
2173
|
+
"declaration": {
|
|
2174
|
+
"name": "*",
|
|
2175
|
+
"package": "\"./Labelled\""
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"kind": "js",
|
|
2180
|
+
"name": "*",
|
|
2181
|
+
"declaration": {
|
|
2182
|
+
"name": "*",
|
|
2183
|
+
"package": "\"./LinkButton\""
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"kind": "js",
|
|
2188
|
+
"name": "*",
|
|
2189
|
+
"declaration": {
|
|
2190
|
+
"name": "*",
|
|
2191
|
+
"package": "\"./ReadOnly\""
|
|
2192
|
+
}
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"kind": "js",
|
|
2196
|
+
"name": "*",
|
|
2197
|
+
"declaration": {
|
|
2198
|
+
"name": "*",
|
|
2199
|
+
"package": "\"./Required\""
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"kind": "js",
|
|
2204
|
+
"name": "*",
|
|
2205
|
+
"declaration": {
|
|
2206
|
+
"name": "*",
|
|
2207
|
+
"package": "\"./RequiredConstraintValidation\""
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"kind": "js",
|
|
2212
|
+
"name": "*",
|
|
2213
|
+
"declaration": {
|
|
2214
|
+
"name": "*",
|
|
2215
|
+
"package": "\"./Role\""
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
"kind": "js",
|
|
2220
|
+
"name": "*",
|
|
2221
|
+
"declaration": {
|
|
2222
|
+
"name": "*",
|
|
2223
|
+
"package": "\"./Selected\""
|
|
2224
|
+
}
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
"kind": "js",
|
|
2228
|
+
"name": "*",
|
|
2229
|
+
"declaration": {
|
|
2230
|
+
"name": "*",
|
|
2231
|
+
"package": "\"./Touched\""
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"kind": "js",
|
|
2236
|
+
"name": "*",
|
|
2237
|
+
"declaration": {
|
|
2238
|
+
"name": "*",
|
|
2239
|
+
"package": "\"./Vertical\""
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
]
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"kind": "javascript-module",
|
|
2246
|
+
"path": "../core/src/shared/mixins/KeyboardClick.ts",
|
|
2247
|
+
"declarations": [
|
|
2248
|
+
{
|
|
2249
|
+
"kind": "mixin",
|
|
2250
|
+
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2251
|
+
"name": "KeyboardClick",
|
|
2252
|
+
"members": [
|
|
2253
|
+
{
|
|
2254
|
+
"kind": "field",
|
|
2255
|
+
"name": "#keyUpHandler",
|
|
2256
|
+
"privacy": "private",
|
|
2257
|
+
"readonly": true
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"kind": "method",
|
|
2261
|
+
"name": "#handleKeyUp",
|
|
2262
|
+
"privacy": "private",
|
|
2263
|
+
"return": {
|
|
2264
|
+
"type": {
|
|
2265
|
+
"text": "void"
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2268
|
+
"parameters": [
|
|
2269
|
+
{
|
|
2270
|
+
"name": "e",
|
|
2271
|
+
"type": {
|
|
2272
|
+
"text": "KeyboardEvent"
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
]
|
|
2276
|
+
}
|
|
2277
|
+
],
|
|
2278
|
+
"events": [
|
|
2279
|
+
{
|
|
2280
|
+
"name": "click",
|
|
2281
|
+
"type": {
|
|
2282
|
+
"text": "MouseEvent"
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
],
|
|
2286
|
+
"parameters": [
|
|
2287
|
+
{
|
|
2288
|
+
"name": "base",
|
|
2289
|
+
"type": {
|
|
2290
|
+
"text": "T"
|
|
2291
|
+
},
|
|
2292
|
+
"description": "The base class."
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
"name": "allowEnter",
|
|
2296
|
+
"default": "true",
|
|
2297
|
+
"type": {
|
|
2298
|
+
"text": "boolean"
|
|
2299
|
+
},
|
|
2300
|
+
"description": "Whether the `ENTER` key emits a click event.",
|
|
2301
|
+
"optional": true
|
|
2302
|
+
}
|
|
2303
|
+
]
|
|
2304
|
+
}
|
|
2305
|
+
],
|
|
2306
|
+
"exports": [
|
|
2307
|
+
{
|
|
2308
|
+
"kind": "js",
|
|
2309
|
+
"name": "KeyboardClick",
|
|
2310
|
+
"declaration": {
|
|
2311
|
+
"name": "KeyboardClick",
|
|
2312
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
]
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"kind": "javascript-module",
|
|
2319
|
+
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2320
|
+
"declarations": [
|
|
2321
|
+
{
|
|
2322
|
+
"kind": "function",
|
|
2323
|
+
"name": "isLabelledMixin",
|
|
2324
|
+
"return": {
|
|
2325
|
+
"type": {
|
|
2326
|
+
"text": ""
|
|
2327
|
+
}
|
|
2328
|
+
},
|
|
2329
|
+
"parameters": [
|
|
2330
|
+
{
|
|
2331
|
+
"name": "value",
|
|
2332
|
+
"type": {
|
|
2333
|
+
"text": "unknown"
|
|
2334
|
+
},
|
|
2335
|
+
"description": "The value to test."
|
|
2336
|
+
}
|
|
2337
|
+
],
|
|
2338
|
+
"description": "Determines whether a value is a `LabelledMixin`."
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"kind": "mixin",
|
|
2342
|
+
"description": "Mixin to augment an element with support for labelling.",
|
|
2343
|
+
"name": "Labelled",
|
|
2344
|
+
"members": [
|
|
2345
|
+
{
|
|
2346
|
+
"kind": "field",
|
|
2347
|
+
"name": "formAssociated",
|
|
2348
|
+
"type": {
|
|
2349
|
+
"text": "boolean"
|
|
2350
|
+
},
|
|
2351
|
+
"static": true,
|
|
2352
|
+
"readonly": true,
|
|
2353
|
+
"default": "true",
|
|
2354
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"kind": "field",
|
|
2358
|
+
"name": "[_eventHandler]",
|
|
2359
|
+
"privacy": "private",
|
|
2360
|
+
"readonly": true
|
|
2361
|
+
},
|
|
2362
|
+
{
|
|
2363
|
+
"kind": "field",
|
|
2364
|
+
"name": "labels",
|
|
2365
|
+
"type": {
|
|
2366
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
2367
|
+
},
|
|
2368
|
+
"description": "The label elements that the element is associated with.",
|
|
2369
|
+
"readonly": true
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"kind": "method",
|
|
2373
|
+
"name": "[_updateLabels]",
|
|
2374
|
+
"privacy": "private",
|
|
2375
|
+
"return": {
|
|
2376
|
+
"type": {
|
|
2377
|
+
"text": "void"
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
],
|
|
2382
|
+
"parameters": [
|
|
2383
|
+
{
|
|
2384
|
+
"name": "base",
|
|
2385
|
+
"type": {
|
|
2386
|
+
"text": "T"
|
|
2387
|
+
},
|
|
2388
|
+
"description": "The base class."
|
|
2389
|
+
}
|
|
2390
|
+
]
|
|
2391
|
+
}
|
|
2392
|
+
],
|
|
2393
|
+
"exports": [
|
|
2394
|
+
{
|
|
2395
|
+
"kind": "js",
|
|
2396
|
+
"name": "isLabelledMixin",
|
|
2397
|
+
"declaration": {
|
|
2398
|
+
"name": "isLabelledMixin",
|
|
2399
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"kind": "js",
|
|
2404
|
+
"name": "Labelled",
|
|
2405
|
+
"declaration": {
|
|
2406
|
+
"name": "Labelled",
|
|
2407
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2410
|
+
]
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
"kind": "javascript-module",
|
|
2414
|
+
"path": "../core/src/shared/mixins/LinkButton.ts",
|
|
2415
|
+
"declarations": [
|
|
2416
|
+
{
|
|
2417
|
+
"kind": "variable",
|
|
2418
|
+
"name": "renderPseudoLink",
|
|
2419
|
+
"description": "A symbol through which to access a function used to render a pseudo link."
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"kind": "function",
|
|
2423
|
+
"name": "isLinkButtonMixin",
|
|
2424
|
+
"return": {
|
|
2425
|
+
"type": {
|
|
2426
|
+
"text": "value is LinkButtonMixin"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
"parameters": [
|
|
2430
|
+
{
|
|
2431
|
+
"name": "value",
|
|
2432
|
+
"type": {
|
|
2433
|
+
"text": "unknown"
|
|
2434
|
+
},
|
|
2435
|
+
"description": "The value to test."
|
|
2436
|
+
}
|
|
2437
|
+
],
|
|
2438
|
+
"description": "Determines whether a value is a `LinkButtonMixin`."
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
"kind": "mixin",
|
|
2442
|
+
"description": "Mixin to augment an element with behavior that supports functioning as a link.",
|
|
2443
|
+
"name": "LinkButton",
|
|
2444
|
+
"members": [
|
|
2445
|
+
{
|
|
2446
|
+
"kind": "field",
|
|
2447
|
+
"name": "[_clickHandler]",
|
|
2448
|
+
"privacy": "private"
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"kind": "field",
|
|
2452
|
+
"name": "href",
|
|
2453
|
+
"type": {
|
|
2454
|
+
"text": "string"
|
|
2455
|
+
},
|
|
2456
|
+
"default": "\"\"",
|
|
2457
|
+
"description": "The URL to which the link button points.",
|
|
2458
|
+
"attribute": "href"
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"kind": "field",
|
|
2462
|
+
"name": "target",
|
|
2463
|
+
"type": {
|
|
2464
|
+
"text": "LinkTarget"
|
|
2465
|
+
},
|
|
2466
|
+
"default": "\"\"",
|
|
2467
|
+
"description": "The target of the link button.",
|
|
2468
|
+
"attribute": "target"
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
"kind": "field",
|
|
2472
|
+
"name": "rel",
|
|
2473
|
+
"type": {
|
|
2474
|
+
"text": "string"
|
|
2475
|
+
},
|
|
2476
|
+
"default": "\"\"",
|
|
2477
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
2478
|
+
"attribute": "rel"
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
"kind": "field",
|
|
2482
|
+
"name": "download",
|
|
2483
|
+
"type": {
|
|
2484
|
+
"text": "string | null"
|
|
2485
|
+
},
|
|
2486
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
2487
|
+
"default": "null",
|
|
2488
|
+
"attribute": "download"
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"kind": "method",
|
|
2492
|
+
"name": "#handleLinkPointerDown",
|
|
2493
|
+
"privacy": "private",
|
|
2494
|
+
"return": {
|
|
2495
|
+
"type": {
|
|
2496
|
+
"text": "void"
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2499
|
+
"parameters": [
|
|
2500
|
+
{
|
|
2501
|
+
"name": "e",
|
|
2502
|
+
"type": {
|
|
2503
|
+
"text": "PointerEvent"
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
]
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"kind": "method",
|
|
2510
|
+
"name": "#handleLinkFocus",
|
|
2511
|
+
"privacy": "private",
|
|
2512
|
+
"return": {
|
|
2513
|
+
"type": {
|
|
2514
|
+
"text": "void"
|
|
2515
|
+
}
|
|
2516
|
+
},
|
|
2517
|
+
"parameters": [
|
|
2518
|
+
{
|
|
2519
|
+
"name": "e",
|
|
2520
|
+
"type": {
|
|
2521
|
+
"text": "Event"
|
|
2522
|
+
}
|
|
2523
|
+
}
|
|
2524
|
+
]
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
"kind": "method",
|
|
2528
|
+
"name": "#handleLinkBlur",
|
|
2529
|
+
"privacy": "private",
|
|
2530
|
+
"return": {
|
|
2531
|
+
"type": {
|
|
2532
|
+
"text": "void"
|
|
2533
|
+
}
|
|
2534
|
+
},
|
|
2535
|
+
"parameters": [
|
|
2536
|
+
{
|
|
2537
|
+
"name": "e",
|
|
2538
|
+
"type": {
|
|
2539
|
+
"text": "Event"
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2542
|
+
]
|
|
2543
|
+
}
|
|
2544
|
+
],
|
|
2545
|
+
"events": [
|
|
2546
|
+
{
|
|
2547
|
+
"name": "click",
|
|
2548
|
+
"type": {
|
|
2549
|
+
"text": "MouseEvent"
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
],
|
|
2553
|
+
"attributes": [
|
|
2554
|
+
{
|
|
2555
|
+
"name": "href",
|
|
2556
|
+
"type": {
|
|
2557
|
+
"text": "string"
|
|
2558
|
+
},
|
|
2559
|
+
"default": "\"\"",
|
|
2560
|
+
"description": "The URL to which the link button points.",
|
|
2561
|
+
"fieldName": "href"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"name": "target",
|
|
2565
|
+
"type": {
|
|
2566
|
+
"text": "LinkTarget"
|
|
2567
|
+
},
|
|
2568
|
+
"default": "\"\"",
|
|
2569
|
+
"description": "The target of the link button.",
|
|
2570
|
+
"fieldName": "target"
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
"name": "rel",
|
|
2574
|
+
"type": {
|
|
2575
|
+
"text": "string"
|
|
2576
|
+
},
|
|
2577
|
+
"default": "\"\"",
|
|
2578
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
2579
|
+
"fieldName": "rel"
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
"name": "download",
|
|
2583
|
+
"type": {
|
|
2584
|
+
"text": "string | null"
|
|
2585
|
+
},
|
|
2586
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
2587
|
+
"default": "null",
|
|
2588
|
+
"fieldName": "download"
|
|
2589
|
+
}
|
|
2590
|
+
],
|
|
2591
|
+
"parameters": [
|
|
2592
|
+
{
|
|
2593
|
+
"name": "base",
|
|
2594
|
+
"type": {
|
|
2595
|
+
"text": "T"
|
|
2596
|
+
},
|
|
2597
|
+
"description": "The base class."
|
|
2598
|
+
}
|
|
2599
|
+
]
|
|
2600
|
+
}
|
|
2601
|
+
],
|
|
2602
|
+
"exports": [
|
|
2603
|
+
{
|
|
2604
|
+
"kind": "js",
|
|
2605
|
+
"name": "renderPseudoLink",
|
|
2606
|
+
"declaration": {
|
|
2607
|
+
"name": "renderPseudoLink",
|
|
2608
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"kind": "js",
|
|
2613
|
+
"name": "isLinkButtonMixin",
|
|
2614
|
+
"declaration": {
|
|
2615
|
+
"name": "isLinkButtonMixin",
|
|
2616
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2617
|
+
}
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
"kind": "js",
|
|
2621
|
+
"name": "LinkButton",
|
|
2622
|
+
"declaration": {
|
|
2623
|
+
"name": "LinkButton",
|
|
2624
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
]
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"kind": "javascript-module",
|
|
2631
|
+
"path": "../core/src/shared/mixins/ReadOnly.ts",
|
|
2632
|
+
"declarations": [
|
|
2633
|
+
{
|
|
2634
|
+
"kind": "function",
|
|
2635
|
+
"name": "isReadOnlyMixin",
|
|
2636
|
+
"return": {
|
|
2637
|
+
"type": {
|
|
2638
|
+
"text": ""
|
|
2639
|
+
}
|
|
2640
|
+
},
|
|
2641
|
+
"parameters": [
|
|
2642
|
+
{
|
|
2643
|
+
"name": "value",
|
|
2644
|
+
"type": {
|
|
2645
|
+
"text": "unknown"
|
|
2646
|
+
},
|
|
2647
|
+
"description": "The value to test."
|
|
2648
|
+
}
|
|
2649
|
+
],
|
|
2650
|
+
"description": "Determines whether a value is a `ReadOnlyMixin`."
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"kind": "mixin",
|
|
2654
|
+
"description": "Mixin to augment an element with behavior that supports a read-only state.",
|
|
2655
|
+
"name": "ReadOnly",
|
|
2656
|
+
"members": [
|
|
2657
|
+
{
|
|
2658
|
+
"kind": "field",
|
|
2659
|
+
"name": "readOnly",
|
|
2660
|
+
"type": {
|
|
2661
|
+
"text": "boolean"
|
|
2662
|
+
},
|
|
2663
|
+
"default": "false",
|
|
2664
|
+
"description": "A value indicating whether the element is read-only.",
|
|
2665
|
+
"attribute": "readonly"
|
|
2666
|
+
}
|
|
2667
|
+
],
|
|
2668
|
+
"attributes": [
|
|
2669
|
+
{
|
|
2670
|
+
"name": "readonly",
|
|
2671
|
+
"type": {
|
|
2672
|
+
"text": "boolean"
|
|
2673
|
+
},
|
|
2674
|
+
"default": "false",
|
|
2675
|
+
"description": "A value indicating whether the element is read-only.",
|
|
2676
|
+
"fieldName": "readOnly"
|
|
2677
|
+
}
|
|
2678
|
+
],
|
|
2679
|
+
"parameters": [
|
|
2680
|
+
{
|
|
2681
|
+
"name": "base",
|
|
2682
|
+
"type": {
|
|
2683
|
+
"text": "T"
|
|
2684
|
+
},
|
|
2685
|
+
"description": "The base class."
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"name": "reflect",
|
|
2689
|
+
"default": "true",
|
|
2690
|
+
"type": {
|
|
2691
|
+
"text": "boolean"
|
|
2692
|
+
},
|
|
2693
|
+
"description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
|
|
2694
|
+
}
|
|
2695
|
+
]
|
|
2696
|
+
}
|
|
2697
|
+
],
|
|
2698
|
+
"exports": [
|
|
2699
|
+
{
|
|
2700
|
+
"kind": "js",
|
|
2701
|
+
"name": "isReadOnlyMixin",
|
|
2702
|
+
"declaration": {
|
|
2703
|
+
"name": "isReadOnlyMixin",
|
|
2704
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
2705
|
+
}
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"kind": "js",
|
|
2709
|
+
"name": "ReadOnly",
|
|
2710
|
+
"declaration": {
|
|
2711
|
+
"name": "ReadOnly",
|
|
2712
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
2713
|
+
}
|
|
2714
|
+
}
|
|
2715
|
+
]
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
"kind": "javascript-module",
|
|
2719
|
+
"path": "../core/src/shared/mixins/Required.ts",
|
|
2720
|
+
"declarations": [
|
|
2721
|
+
{
|
|
2722
|
+
"kind": "function",
|
|
2723
|
+
"name": "isRequiredMixin",
|
|
2724
|
+
"return": {
|
|
2725
|
+
"type": {
|
|
2726
|
+
"text": ""
|
|
2727
|
+
}
|
|
2728
|
+
},
|
|
2729
|
+
"parameters": [
|
|
2730
|
+
{
|
|
2731
|
+
"name": "value",
|
|
2732
|
+
"type": {
|
|
2733
|
+
"text": "unknown"
|
|
2734
|
+
},
|
|
2735
|
+
"description": "The value to test."
|
|
2736
|
+
}
|
|
2737
|
+
],
|
|
2738
|
+
"description": "Determines whether a value is a `RequiredMixin`."
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "mixin",
|
|
2742
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
2743
|
+
"name": "Required",
|
|
2744
|
+
"members": [
|
|
2745
|
+
{
|
|
2746
|
+
"kind": "field",
|
|
2747
|
+
"name": "required",
|
|
2748
|
+
"type": {
|
|
2749
|
+
"text": "boolean"
|
|
2750
|
+
},
|
|
2751
|
+
"default": "false",
|
|
2752
|
+
"description": "Whether a value is required for the element.",
|
|
2753
|
+
"attribute": "required",
|
|
2754
|
+
"reflects": true
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"kind": "field",
|
|
2758
|
+
"name": "optional",
|
|
2759
|
+
"description": "Whether a value is not required for the element.",
|
|
2760
|
+
"readonly": true
|
|
2761
|
+
}
|
|
2762
|
+
],
|
|
2763
|
+
"attributes": [
|
|
2764
|
+
{
|
|
2765
|
+
"name": "required",
|
|
2766
|
+
"type": {
|
|
2767
|
+
"text": "boolean"
|
|
2768
|
+
},
|
|
2769
|
+
"default": "false",
|
|
2770
|
+
"description": "Whether a value is required for the element.",
|
|
2771
|
+
"fieldName": "required"
|
|
2772
|
+
}
|
|
2773
|
+
],
|
|
2774
|
+
"parameters": [
|
|
2775
|
+
{
|
|
2776
|
+
"name": "base",
|
|
2777
|
+
"type": {
|
|
2778
|
+
"text": "T"
|
|
2779
|
+
},
|
|
2780
|
+
"description": "The base class."
|
|
2781
|
+
}
|
|
2782
|
+
]
|
|
2783
|
+
}
|
|
2784
|
+
],
|
|
2785
|
+
"exports": [
|
|
2786
|
+
{
|
|
2787
|
+
"kind": "js",
|
|
2788
|
+
"name": "isRequiredMixin",
|
|
2789
|
+
"declaration": {
|
|
2790
|
+
"name": "isRequiredMixin",
|
|
2791
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"kind": "js",
|
|
2796
|
+
"name": "Required",
|
|
2797
|
+
"declaration": {
|
|
2798
|
+
"name": "Required",
|
|
2799
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
2800
|
+
}
|
|
2801
|
+
}
|
|
2802
|
+
]
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"kind": "javascript-module",
|
|
2806
|
+
"path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
|
|
2807
|
+
"declarations": [
|
|
2808
|
+
{
|
|
2809
|
+
"kind": "function",
|
|
2810
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
2811
|
+
"return": {
|
|
2812
|
+
"type": {
|
|
2813
|
+
"text": ""
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"parameters": [
|
|
2817
|
+
{
|
|
2818
|
+
"name": "value",
|
|
2819
|
+
"type": {
|
|
2820
|
+
"text": "unknown"
|
|
2821
|
+
},
|
|
2822
|
+
"description": "The value to test."
|
|
2823
|
+
}
|
|
2824
|
+
],
|
|
2825
|
+
"description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"kind": "mixin",
|
|
2829
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
2830
|
+
"name": "RequiredConstraintValidation",
|
|
2831
|
+
"parameters": [
|
|
2832
|
+
{
|
|
2833
|
+
"name": "base",
|
|
2834
|
+
"type": {
|
|
2835
|
+
"text": "T"
|
|
2836
|
+
},
|
|
2837
|
+
"description": "The base class."
|
|
2838
|
+
}
|
|
2839
|
+
]
|
|
2840
|
+
}
|
|
2841
|
+
],
|
|
2842
|
+
"exports": [
|
|
2843
|
+
{
|
|
2844
|
+
"kind": "js",
|
|
2845
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
2846
|
+
"declaration": {
|
|
2847
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
2848
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"kind": "js",
|
|
2853
|
+
"name": "RequiredConstraintValidation",
|
|
2854
|
+
"declaration": {
|
|
2855
|
+
"name": "RequiredConstraintValidation",
|
|
2856
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
]
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"kind": "javascript-module",
|
|
2863
|
+
"path": "../core/src/shared/mixins/Role.ts",
|
|
2864
|
+
"declarations": [
|
|
2865
|
+
{
|
|
2866
|
+
"kind": "mixin",
|
|
2867
|
+
"description": "Mixin to augment an element with an ARIA role.",
|
|
2868
|
+
"name": "Role",
|
|
2869
|
+
"parameters": [
|
|
2870
|
+
{
|
|
2871
|
+
"name": "base",
|
|
2872
|
+
"type": {
|
|
2873
|
+
"text": "T"
|
|
2874
|
+
},
|
|
2875
|
+
"description": "The base class."
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"name": "role",
|
|
2879
|
+
"type": {
|
|
2880
|
+
"text": "ARIARole"
|
|
2881
|
+
},
|
|
2882
|
+
"description": "The ARIA role."
|
|
2883
|
+
}
|
|
2884
|
+
]
|
|
2885
|
+
}
|
|
2886
|
+
],
|
|
2887
|
+
"exports": [
|
|
2888
|
+
{
|
|
2889
|
+
"kind": "js",
|
|
2890
|
+
"name": "Role",
|
|
2891
|
+
"declaration": {
|
|
2892
|
+
"name": "Role",
|
|
2893
|
+
"module": "../core/src/shared/mixins/Role.ts"
|
|
2894
|
+
}
|
|
2895
|
+
}
|
|
2896
|
+
]
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"kind": "javascript-module",
|
|
2900
|
+
"path": "../core/src/shared/mixins/Selected.ts",
|
|
2901
|
+
"declarations": [
|
|
2902
|
+
{
|
|
2903
|
+
"kind": "function",
|
|
2904
|
+
"name": "isSelectedMixin",
|
|
2905
|
+
"return": {
|
|
2906
|
+
"type": {
|
|
2907
|
+
"text": ""
|
|
2908
|
+
}
|
|
2909
|
+
},
|
|
2910
|
+
"parameters": [
|
|
2911
|
+
{
|
|
2912
|
+
"name": "value",
|
|
2913
|
+
"type": {
|
|
2914
|
+
"text": "unknown"
|
|
2915
|
+
},
|
|
2916
|
+
"description": "The value to test."
|
|
2917
|
+
}
|
|
2918
|
+
],
|
|
2919
|
+
"description": "Determines whether a value is a `SelectedMixin`."
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
"kind": "mixin",
|
|
2923
|
+
"description": "Mixin to augment an element with behavior that supports a selected state.",
|
|
2924
|
+
"name": "Selected",
|
|
2925
|
+
"members": [
|
|
2926
|
+
{
|
|
2927
|
+
"kind": "field",
|
|
2928
|
+
"name": "selected",
|
|
2929
|
+
"type": {
|
|
2930
|
+
"text": "boolean"
|
|
2931
|
+
},
|
|
2932
|
+
"default": "false",
|
|
2933
|
+
"description": "Whether the element is selected.",
|
|
2934
|
+
"attribute": "selected",
|
|
2935
|
+
"reflects": true
|
|
2936
|
+
}
|
|
2937
|
+
],
|
|
2938
|
+
"attributes": [
|
|
2939
|
+
{
|
|
2940
|
+
"name": "selected",
|
|
2941
|
+
"type": {
|
|
2942
|
+
"text": "boolean"
|
|
2943
|
+
},
|
|
2944
|
+
"default": "false",
|
|
2945
|
+
"description": "Whether the element is selected.",
|
|
2946
|
+
"fieldName": "selected"
|
|
2947
|
+
}
|
|
2948
|
+
],
|
|
2949
|
+
"parameters": [
|
|
2950
|
+
{
|
|
2951
|
+
"name": "base",
|
|
2952
|
+
"type": {
|
|
2953
|
+
"text": "T"
|
|
2954
|
+
},
|
|
2955
|
+
"description": "The base class."
|
|
2956
|
+
}
|
|
2957
|
+
]
|
|
2958
|
+
}
|
|
2959
|
+
],
|
|
2960
|
+
"exports": [
|
|
2961
|
+
{
|
|
2962
|
+
"kind": "js",
|
|
2963
|
+
"name": "isSelectedMixin",
|
|
2964
|
+
"declaration": {
|
|
2965
|
+
"name": "isSelectedMixin",
|
|
2966
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"kind": "js",
|
|
2971
|
+
"name": "Selected",
|
|
2972
|
+
"declaration": {
|
|
2973
|
+
"name": "Selected",
|
|
2974
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
]
|
|
2978
|
+
},
|
|
2979
|
+
{
|
|
2980
|
+
"kind": "javascript-module",
|
|
2981
|
+
"path": "../core/src/shared/mixins/Touched.ts",
|
|
2982
|
+
"declarations": [
|
|
2983
|
+
{
|
|
2984
|
+
"kind": "function",
|
|
2985
|
+
"name": "isTouchedMixin",
|
|
2986
|
+
"return": {
|
|
2987
|
+
"type": {
|
|
2988
|
+
"text": ""
|
|
2989
|
+
}
|
|
2990
|
+
},
|
|
2991
|
+
"parameters": [
|
|
2992
|
+
{
|
|
2993
|
+
"name": "value",
|
|
2994
|
+
"type": {
|
|
2995
|
+
"text": "unknown"
|
|
2996
|
+
},
|
|
2997
|
+
"description": "The value to test."
|
|
2998
|
+
}
|
|
2999
|
+
],
|
|
3000
|
+
"description": "Determines whether a value is a `TouchedMixin`."
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"kind": "mixin",
|
|
3004
|
+
"description": "Mixin to augment an element with functionality used to mark it as touched.",
|
|
3005
|
+
"name": "Touched",
|
|
3006
|
+
"members": [
|
|
3007
|
+
{
|
|
3008
|
+
"kind": "field",
|
|
3009
|
+
"name": "[_eventHandler]",
|
|
3010
|
+
"privacy": "private"
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"kind": "field",
|
|
3014
|
+
"name": "touched",
|
|
3015
|
+
"type": {
|
|
3016
|
+
"text": "boolean"
|
|
3017
|
+
},
|
|
3018
|
+
"description": "Whether the user has interacted when the element.",
|
|
3019
|
+
"readonly": true
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"kind": "field",
|
|
3023
|
+
"name": "untouched",
|
|
3024
|
+
"type": {
|
|
3025
|
+
"text": "boolean"
|
|
3026
|
+
},
|
|
3027
|
+
"description": "Whether the user has not interacted when the element.",
|
|
3028
|
+
"readonly": true
|
|
3029
|
+
},
|
|
3030
|
+
{
|
|
3031
|
+
"kind": "method",
|
|
3032
|
+
"name": "markAsTouched",
|
|
3033
|
+
"return": {
|
|
3034
|
+
"type": {
|
|
3035
|
+
"text": "void"
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
"description": "Marks the element as touched."
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"kind": "method",
|
|
3042
|
+
"name": "markAsUntouched",
|
|
3043
|
+
"return": {
|
|
3044
|
+
"type": {
|
|
3045
|
+
"text": "void"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"description": "Marks the element as untouched."
|
|
3049
|
+
}
|
|
3050
|
+
],
|
|
3051
|
+
"parameters": [
|
|
3052
|
+
{
|
|
3053
|
+
"name": "base",
|
|
3054
|
+
"type": {
|
|
3055
|
+
"text": "T"
|
|
3056
|
+
},
|
|
3057
|
+
"description": "The base class."
|
|
3058
|
+
}
|
|
3059
|
+
]
|
|
3060
|
+
}
|
|
3061
|
+
],
|
|
3062
|
+
"exports": [
|
|
3063
|
+
{
|
|
3064
|
+
"kind": "js",
|
|
3065
|
+
"name": "isTouchedMixin",
|
|
3066
|
+
"declaration": {
|
|
3067
|
+
"name": "isTouchedMixin",
|
|
3068
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
3069
|
+
}
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"kind": "js",
|
|
3073
|
+
"name": "Touched",
|
|
3074
|
+
"declaration": {
|
|
3075
|
+
"name": "Touched",
|
|
3076
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
3079
|
+
]
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"kind": "javascript-module",
|
|
3083
|
+
"path": "../core/src/shared/mixins/Vertical.ts",
|
|
3084
|
+
"declarations": [
|
|
3085
|
+
{
|
|
3086
|
+
"kind": "function",
|
|
3087
|
+
"name": "isVerticalMixin",
|
|
3088
|
+
"return": {
|
|
3089
|
+
"type": {
|
|
3090
|
+
"text": ""
|
|
3091
|
+
}
|
|
3092
|
+
},
|
|
3093
|
+
"parameters": [
|
|
3094
|
+
{
|
|
3095
|
+
"name": "value",
|
|
3096
|
+
"type": {
|
|
3097
|
+
"text": "unknown"
|
|
3098
|
+
},
|
|
3099
|
+
"description": "The value to test."
|
|
3100
|
+
}
|
|
3101
|
+
],
|
|
3102
|
+
"description": "Determines whether a value is a `VerticalMixin`."
|
|
3103
|
+
},
|
|
3104
|
+
{
|
|
3105
|
+
"kind": "mixin",
|
|
3106
|
+
"description": "Mixin to augment an element with behavior that supports a vertical orientation.",
|
|
3107
|
+
"name": "Vertical",
|
|
3108
|
+
"members": [
|
|
3109
|
+
{
|
|
3110
|
+
"kind": "field",
|
|
3111
|
+
"name": "vertical",
|
|
3112
|
+
"type": {
|
|
3113
|
+
"text": "boolean"
|
|
3114
|
+
},
|
|
3115
|
+
"default": "false",
|
|
3116
|
+
"description": "Whether the element is oriented vertically.",
|
|
3117
|
+
"attribute": "vertical",
|
|
3118
|
+
"reflects": true
|
|
3119
|
+
}
|
|
3120
|
+
],
|
|
3121
|
+
"attributes": [
|
|
3122
|
+
{
|
|
3123
|
+
"name": "vertical",
|
|
3124
|
+
"type": {
|
|
3125
|
+
"text": "boolean"
|
|
3126
|
+
},
|
|
3127
|
+
"default": "false",
|
|
3128
|
+
"description": "Whether the element is oriented vertically.",
|
|
3129
|
+
"fieldName": "vertical"
|
|
3130
|
+
}
|
|
3131
|
+
],
|
|
3132
|
+
"parameters": [
|
|
3133
|
+
{
|
|
3134
|
+
"name": "base",
|
|
3135
|
+
"type": {
|
|
3136
|
+
"text": "T"
|
|
3137
|
+
},
|
|
3138
|
+
"description": "The base class."
|
|
3139
|
+
}
|
|
3140
|
+
]
|
|
3141
|
+
}
|
|
3142
|
+
],
|
|
3143
|
+
"exports": [
|
|
3144
|
+
{
|
|
3145
|
+
"kind": "js",
|
|
3146
|
+
"name": "isVerticalMixin",
|
|
3147
|
+
"declaration": {
|
|
3148
|
+
"name": "isVerticalMixin",
|
|
3149
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"kind": "js",
|
|
3154
|
+
"name": "Vertical",
|
|
3155
|
+
"declaration": {
|
|
3156
|
+
"name": "Vertical",
|
|
3157
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
3158
|
+
}
|
|
3159
|
+
}
|
|
3160
|
+
]
|
|
567
3161
|
}
|
|
568
3162
|
]
|
|
569
3163
|
}
|