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