@m3e/expansion-panel 1.0.0-rc.1 → 1.0.0-rc.2

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