@m3e/menu 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 (40) hide show
  1. package/README.md +1 -2
  2. package/dist/custom-elements.json +3270 -34
  3. package/dist/html-custom-data.json +12 -6
  4. package/dist/index.js +8 -8
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.min.js +7 -7
  7. package/dist/index.min.js.map +1 -1
  8. package/package.json +4 -4
  9. package/cem.config.mjs +0 -16
  10. package/demo/index.html +0 -112
  11. package/dist/src/MenuElement.d.ts +0 -143
  12. package/dist/src/MenuElement.d.ts.map +0 -1
  13. package/dist/src/MenuItemCheckboxElement.d.ts +0 -76
  14. package/dist/src/MenuItemCheckboxElement.d.ts.map +0 -1
  15. package/dist/src/MenuItemElement.d.ts +0 -113
  16. package/dist/src/MenuItemElement.d.ts.map +0 -1
  17. package/dist/src/MenuItemElementBase.d.ts +0 -21
  18. package/dist/src/MenuItemElementBase.d.ts.map +0 -1
  19. package/dist/src/MenuItemGroupElement.d.ts +0 -28
  20. package/dist/src/MenuItemGroupElement.d.ts.map +0 -1
  21. package/dist/src/MenuItemRadioElement.d.ts +0 -77
  22. package/dist/src/MenuItemRadioElement.d.ts.map +0 -1
  23. package/dist/src/MenuPosition.d.ts +0 -5
  24. package/dist/src/MenuPosition.d.ts.map +0 -1
  25. package/dist/src/MenuTriggerElement.d.ts +0 -86
  26. package/dist/src/MenuTriggerElement.d.ts.map +0 -1
  27. package/dist/src/index.d.ts +0 -8
  28. package/dist/src/index.d.ts.map +0 -1
  29. package/eslint.config.mjs +0 -13
  30. package/rollup.config.js +0 -32
  31. package/src/MenuElement.ts +0 -449
  32. package/src/MenuItemCheckboxElement.ts +0 -178
  33. package/src/MenuItemElement.ts +0 -210
  34. package/src/MenuItemElementBase.ts +0 -158
  35. package/src/MenuItemGroupElement.ts +0 -37
  36. package/src/MenuItemRadioElement.ts +0 -169
  37. package/src/MenuPosition.ts +0 -5
  38. package/src/MenuTriggerElement.ts +0 -154
  39. package/src/index.ts +0 -7
  40. package/tsconfig.json +0 -9
@@ -71,7 +71,7 @@
71
71
  "declarations": [
72
72
  {
73
73
  "kind": "class",
74
- "description": "",
74
+ "description": "Presents a list of choices on a temporary surface.",
75
75
  "name": "M3eMenuElement",
76
76
  "cssProperties": [
77
77
  {
@@ -402,8 +402,7 @@
402
402
  "package": "lit"
403
403
  },
404
404
  "tagName": "m3e-menu",
405
- "customElement": true,
406
- "summary": "Presents a list of choices on a temporary surface."
405
+ "customElement": true
407
406
  }
408
407
  ],
409
408
  "exports": [
@@ -431,7 +430,7 @@
431
430
  "declarations": [
432
431
  {
433
432
  "kind": "class",
434
- "description": "",
433
+ "description": "An item of a menu which supports a checkable state.",
435
434
  "name": "M3eMenuItemCheckboxElement",
436
435
  "cssProperties": [
437
436
  {
@@ -534,6 +533,104 @@
534
533
  }
535
534
  ],
536
535
  "members": [
536
+ {
537
+ "kind": "field",
538
+ "name": "checked",
539
+ "type": {
540
+ "text": "boolean"
541
+ },
542
+ "default": "false",
543
+ "description": "Whether the element is checked.",
544
+ "attribute": "checked",
545
+ "reflects": true,
546
+ "inheritedFrom": {
547
+ "name": "Checked",
548
+ "module": "../core/src/shared/mixins/Checked.ts"
549
+ }
550
+ },
551
+ {
552
+ "kind": "field",
553
+ "name": "#keyUpHandler",
554
+ "privacy": "private",
555
+ "readonly": true,
556
+ "inheritedFrom": {
557
+ "name": "KeyboardClick",
558
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
559
+ }
560
+ },
561
+ {
562
+ "kind": "method",
563
+ "name": "#handleKeyUp",
564
+ "privacy": "private",
565
+ "return": {
566
+ "type": {
567
+ "text": "void"
568
+ }
569
+ },
570
+ "parameters": [
571
+ {
572
+ "name": "e",
573
+ "type": {
574
+ "text": "KeyboardEvent"
575
+ }
576
+ }
577
+ ],
578
+ "inheritedFrom": {
579
+ "name": "KeyboardClick",
580
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
581
+ }
582
+ },
583
+ {
584
+ "kind": "field",
585
+ "name": "[_tabindex]",
586
+ "type": {
587
+ "text": "number"
588
+ },
589
+ "privacy": "private",
590
+ "default": "0",
591
+ "inheritedFrom": {
592
+ "name": "Focusable",
593
+ "module": "../core/src/shared/mixins/Focusable.ts"
594
+ }
595
+ },
596
+ {
597
+ "kind": "field",
598
+ "name": "formAssociated",
599
+ "static": true,
600
+ "readonly": true,
601
+ "default": "formAssociated",
602
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
603
+ "inheritedFrom": {
604
+ "name": "AttachInternals",
605
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
606
+ }
607
+ },
608
+ {
609
+ "kind": "field",
610
+ "name": "[_internals]",
611
+ "type": {
612
+ "text": "ElementInternals | undefined"
613
+ },
614
+ "privacy": "private",
615
+ "inheritedFrom": {
616
+ "name": "AttachInternals",
617
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
618
+ }
619
+ },
620
+ {
621
+ "kind": "field",
622
+ "name": "disabled",
623
+ "type": {
624
+ "text": "boolean"
625
+ },
626
+ "default": "false",
627
+ "description": "Whether the element is disabled.",
628
+ "attribute": "disabled",
629
+ "inheritedFrom": {
630
+ "name": "Disabled",
631
+ "module": "../core/src/shared/mixins/Disabled.ts"
632
+ }
633
+ },
537
634
  {
538
635
  "kind": "field",
539
636
  "name": "_focusRing",
@@ -587,14 +684,45 @@
587
684
  }
588
685
  }
589
686
  ],
687
+ "events": [
688
+ {
689
+ "name": "click",
690
+ "type": {
691
+ "text": "MouseEvent"
692
+ },
693
+ "description": "Emitted when the element is clicked.",
694
+ "inheritedFrom": {
695
+ "name": "KeyboardClick",
696
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
697
+ }
698
+ }
699
+ ],
590
700
  "attributes": [
591
701
  {
702
+ "name": "disabled",
703
+ "type": {
704
+ "text": "boolean"
705
+ },
706
+ "default": "false",
592
707
  "description": "Whether the element is disabled.",
593
- "name": "disabled"
708
+ "fieldName": "disabled",
709
+ "inheritedFrom": {
710
+ "name": "Disabled",
711
+ "module": "../core/src/shared/mixins/Disabled.ts"
712
+ }
594
713
  },
595
714
  {
715
+ "name": "checked",
716
+ "type": {
717
+ "text": "boolean"
718
+ },
719
+ "default": "false",
596
720
  "description": "Whether the element is checked.",
597
- "name": "checked"
721
+ "fieldName": "checked",
722
+ "inheritedFrom": {
723
+ "name": "Checked",
724
+ "module": "../core/src/shared/mixins/Checked.ts"
725
+ }
598
726
  }
599
727
  ],
600
728
  "mixins": [
@@ -612,8 +740,7 @@
612
740
  "module": "/src/MenuItemElementBase"
613
741
  },
614
742
  "tagName": "m3e-menu-item-checkbox",
615
- "customElement": true,
616
- "summary": "An item of a menu which supports a checkable state."
743
+ "customElement": true
617
744
  }
618
745
  ],
619
746
  "exports": [
@@ -641,7 +768,7 @@
641
768
  "declarations": [
642
769
  {
643
770
  "kind": "class",
644
- "description": "",
771
+ "description": "An item of a menu.",
645
772
  "name": "M3eMenuItemElement",
646
773
  "cssProperties": [
647
774
  {
@@ -888,6 +1015,220 @@
888
1015
  }
889
1016
  }
890
1017
  },
1018
+ {
1019
+ "kind": "field",
1020
+ "name": "[_clickHandler]",
1021
+ "privacy": "private",
1022
+ "inheritedFrom": {
1023
+ "name": "LinkButton",
1024
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1025
+ }
1026
+ },
1027
+ {
1028
+ "kind": "field",
1029
+ "name": "href",
1030
+ "type": {
1031
+ "text": "string"
1032
+ },
1033
+ "default": "\"\"",
1034
+ "description": "The URL to which the link button points.",
1035
+ "attribute": "href",
1036
+ "inheritedFrom": {
1037
+ "name": "LinkButton",
1038
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1039
+ }
1040
+ },
1041
+ {
1042
+ "kind": "field",
1043
+ "name": "target",
1044
+ "type": {
1045
+ "text": "LinkTarget"
1046
+ },
1047
+ "default": "\"\"",
1048
+ "description": "The target of the link button.",
1049
+ "attribute": "target",
1050
+ "inheritedFrom": {
1051
+ "name": "LinkButton",
1052
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1053
+ }
1054
+ },
1055
+ {
1056
+ "kind": "field",
1057
+ "name": "rel",
1058
+ "type": {
1059
+ "text": "string"
1060
+ },
1061
+ "default": "\"\"",
1062
+ "description": "The relationship between the `target` of the link button and the document.",
1063
+ "attribute": "rel",
1064
+ "inheritedFrom": {
1065
+ "name": "LinkButton",
1066
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1067
+ }
1068
+ },
1069
+ {
1070
+ "kind": "field",
1071
+ "name": "download",
1072
+ "type": {
1073
+ "text": "string | null"
1074
+ },
1075
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
1076
+ "default": "null",
1077
+ "attribute": "download",
1078
+ "inheritedFrom": {
1079
+ "name": "LinkButton",
1080
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1081
+ }
1082
+ },
1083
+ {
1084
+ "kind": "method",
1085
+ "name": "#handleLinkPointerDown",
1086
+ "privacy": "private",
1087
+ "return": {
1088
+ "type": {
1089
+ "text": "void"
1090
+ }
1091
+ },
1092
+ "parameters": [
1093
+ {
1094
+ "name": "e",
1095
+ "type": {
1096
+ "text": "PointerEvent"
1097
+ }
1098
+ }
1099
+ ],
1100
+ "inheritedFrom": {
1101
+ "name": "LinkButton",
1102
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1103
+ }
1104
+ },
1105
+ {
1106
+ "kind": "method",
1107
+ "name": "#handleLinkFocus",
1108
+ "privacy": "private",
1109
+ "return": {
1110
+ "type": {
1111
+ "text": "void"
1112
+ }
1113
+ },
1114
+ "parameters": [
1115
+ {
1116
+ "name": "e",
1117
+ "type": {
1118
+ "text": "Event"
1119
+ }
1120
+ }
1121
+ ],
1122
+ "inheritedFrom": {
1123
+ "name": "LinkButton",
1124
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1125
+ }
1126
+ },
1127
+ {
1128
+ "kind": "method",
1129
+ "name": "#handleLinkBlur",
1130
+ "privacy": "private",
1131
+ "return": {
1132
+ "type": {
1133
+ "text": "void"
1134
+ }
1135
+ },
1136
+ "parameters": [
1137
+ {
1138
+ "name": "e",
1139
+ "type": {
1140
+ "text": "Event"
1141
+ }
1142
+ }
1143
+ ],
1144
+ "inheritedFrom": {
1145
+ "name": "LinkButton",
1146
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1147
+ }
1148
+ },
1149
+ {
1150
+ "kind": "field",
1151
+ "name": "#keyUpHandler",
1152
+ "privacy": "private",
1153
+ "readonly": true,
1154
+ "inheritedFrom": {
1155
+ "name": "KeyboardClick",
1156
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1157
+ }
1158
+ },
1159
+ {
1160
+ "kind": "method",
1161
+ "name": "#handleKeyUp",
1162
+ "privacy": "private",
1163
+ "return": {
1164
+ "type": {
1165
+ "text": "void"
1166
+ }
1167
+ },
1168
+ "parameters": [
1169
+ {
1170
+ "name": "e",
1171
+ "type": {
1172
+ "text": "KeyboardEvent"
1173
+ }
1174
+ }
1175
+ ],
1176
+ "inheritedFrom": {
1177
+ "name": "KeyboardClick",
1178
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1179
+ }
1180
+ },
1181
+ {
1182
+ "kind": "field",
1183
+ "name": "[_tabindex]",
1184
+ "type": {
1185
+ "text": "number"
1186
+ },
1187
+ "privacy": "private",
1188
+ "default": "0",
1189
+ "inheritedFrom": {
1190
+ "name": "Focusable",
1191
+ "module": "../core/src/shared/mixins/Focusable.ts"
1192
+ }
1193
+ },
1194
+ {
1195
+ "kind": "field",
1196
+ "name": "formAssociated",
1197
+ "static": true,
1198
+ "readonly": true,
1199
+ "default": "formAssociated",
1200
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
1201
+ "inheritedFrom": {
1202
+ "name": "AttachInternals",
1203
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1204
+ }
1205
+ },
1206
+ {
1207
+ "kind": "field",
1208
+ "name": "[_internals]",
1209
+ "type": {
1210
+ "text": "ElementInternals | undefined"
1211
+ },
1212
+ "privacy": "private",
1213
+ "inheritedFrom": {
1214
+ "name": "AttachInternals",
1215
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1216
+ }
1217
+ },
1218
+ {
1219
+ "kind": "field",
1220
+ "name": "disabled",
1221
+ "type": {
1222
+ "text": "boolean"
1223
+ },
1224
+ "default": "false",
1225
+ "description": "Whether the element is disabled.",
1226
+ "attribute": "disabled",
1227
+ "inheritedFrom": {
1228
+ "name": "Disabled",
1229
+ "module": "../core/src/shared/mixins/Disabled.ts"
1230
+ }
1231
+ },
891
1232
  {
892
1233
  "kind": "field",
893
1234
  "name": "_focusRing",
@@ -941,26 +1282,84 @@
941
1282
  }
942
1283
  }
943
1284
  ],
1285
+ "events": [
1286
+ {
1287
+ "name": "click",
1288
+ "type": {
1289
+ "text": "MouseEvent"
1290
+ },
1291
+ "description": "Emitted when the element is clicked.",
1292
+ "inheritedFrom": {
1293
+ "name": "KeyboardClick",
1294
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1295
+ }
1296
+ }
1297
+ ],
944
1298
  "attributes": [
945
1299
  {
946
- "description": "Whether the element is disabled.",
947
- "name": "disabled"
1300
+ "name": "disabled",
1301
+ "type": {
1302
+ "text": "boolean"
1303
+ },
1304
+ "default": "false",
1305
+ "description": "Whether the element is disabled.",
1306
+ "fieldName": "disabled",
1307
+ "inheritedFrom": {
1308
+ "name": "Disabled",
1309
+ "module": "../core/src/shared/mixins/Disabled.ts"
1310
+ }
948
1311
  },
949
1312
  {
1313
+ "name": "download",
1314
+ "type": {
1315
+ "text": "string | null"
1316
+ },
950
1317
  "description": "Whether the `target` of the link button will be downloaded, optionally specifying the new name of the file.",
951
- "name": "download"
1318
+ "default": "null",
1319
+ "fieldName": "download",
1320
+ "inheritedFrom": {
1321
+ "name": "LinkButton",
1322
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1323
+ }
952
1324
  },
953
1325
  {
1326
+ "name": "href",
1327
+ "type": {
1328
+ "text": "string"
1329
+ },
1330
+ "default": "\"\"",
954
1331
  "description": "The URL to which the link button points.",
955
- "name": "href"
1332
+ "fieldName": "href",
1333
+ "inheritedFrom": {
1334
+ "name": "LinkButton",
1335
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1336
+ }
956
1337
  },
957
1338
  {
1339
+ "name": "rel",
1340
+ "type": {
1341
+ "text": "string"
1342
+ },
1343
+ "default": "\"\"",
958
1344
  "description": "The relationship between the `target` of the link button and the document.",
959
- "name": "rel"
1345
+ "fieldName": "rel",
1346
+ "inheritedFrom": {
1347
+ "name": "LinkButton",
1348
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1349
+ }
960
1350
  },
961
1351
  {
1352
+ "name": "target",
1353
+ "type": {
1354
+ "text": "LinkTarget"
1355
+ },
1356
+ "default": "\"\"",
962
1357
  "description": "The target of the link button.",
963
- "name": "target"
1358
+ "fieldName": "target",
1359
+ "inheritedFrom": {
1360
+ "name": "LinkButton",
1361
+ "module": "../core/src/shared/mixins/LinkButton.ts"
1362
+ }
964
1363
  }
965
1364
  ],
966
1365
  "mixins": [
@@ -978,8 +1377,7 @@
978
1377
  "module": "/src/MenuItemElementBase"
979
1378
  },
980
1379
  "tagName": "m3e-menu-item",
981
- "customElement": true,
982
- "summary": "An item of a menu."
1380
+ "customElement": true
983
1381
  }
984
1382
  ],
985
1383
  "exports": [
@@ -1045,6 +1443,89 @@
1045
1443
  },
1046
1444
  "description": "The menu to which this item belongs.",
1047
1445
  "readonly": true
1446
+ },
1447
+ {
1448
+ "kind": "field",
1449
+ "name": "#keyUpHandler",
1450
+ "privacy": "private",
1451
+ "readonly": true,
1452
+ "inheritedFrom": {
1453
+ "name": "KeyboardClick",
1454
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1455
+ }
1456
+ },
1457
+ {
1458
+ "kind": "method",
1459
+ "name": "#handleKeyUp",
1460
+ "privacy": "private",
1461
+ "return": {
1462
+ "type": {
1463
+ "text": "void"
1464
+ }
1465
+ },
1466
+ "parameters": [
1467
+ {
1468
+ "name": "e",
1469
+ "type": {
1470
+ "text": "KeyboardEvent"
1471
+ }
1472
+ }
1473
+ ],
1474
+ "inheritedFrom": {
1475
+ "name": "KeyboardClick",
1476
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1477
+ }
1478
+ },
1479
+ {
1480
+ "kind": "field",
1481
+ "name": "[_tabindex]",
1482
+ "type": {
1483
+ "text": "number"
1484
+ },
1485
+ "privacy": "private",
1486
+ "default": "0",
1487
+ "inheritedFrom": {
1488
+ "name": "Focusable",
1489
+ "module": "../core/src/shared/mixins/Focusable.ts"
1490
+ }
1491
+ },
1492
+ {
1493
+ "kind": "field",
1494
+ "name": "formAssociated",
1495
+ "static": true,
1496
+ "readonly": true,
1497
+ "default": "formAssociated",
1498
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
1499
+ "inheritedFrom": {
1500
+ "name": "AttachInternals",
1501
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1502
+ }
1503
+ },
1504
+ {
1505
+ "kind": "field",
1506
+ "name": "[_internals]",
1507
+ "type": {
1508
+ "text": "ElementInternals | undefined"
1509
+ },
1510
+ "privacy": "private",
1511
+ "inheritedFrom": {
1512
+ "name": "AttachInternals",
1513
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1514
+ }
1515
+ },
1516
+ {
1517
+ "kind": "field",
1518
+ "name": "disabled",
1519
+ "type": {
1520
+ "text": "boolean"
1521
+ },
1522
+ "default": "false",
1523
+ "description": "Whether the element is disabled.",
1524
+ "attribute": "disabled",
1525
+ "inheritedFrom": {
1526
+ "name": "Disabled",
1527
+ "module": "../core/src/shared/mixins/Disabled.ts"
1528
+ }
1048
1529
  }
1049
1530
  ],
1050
1531
  "mixins": [
@@ -1069,7 +1550,34 @@
1069
1550
  "name": "LitElement",
1070
1551
  "package": "lit"
1071
1552
  },
1072
- "customElement": true
1553
+ "customElement": true,
1554
+ "events": [
1555
+ {
1556
+ "name": "click",
1557
+ "type": {
1558
+ "text": "MouseEvent"
1559
+ },
1560
+ "inheritedFrom": {
1561
+ "name": "KeyboardClick",
1562
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1563
+ }
1564
+ }
1565
+ ],
1566
+ "attributes": [
1567
+ {
1568
+ "name": "disabled",
1569
+ "type": {
1570
+ "text": "boolean"
1571
+ },
1572
+ "default": "false",
1573
+ "description": "Whether the element is disabled.",
1574
+ "fieldName": "disabled",
1575
+ "inheritedFrom": {
1576
+ "name": "Disabled",
1577
+ "module": "../core/src/shared/mixins/Disabled.ts"
1578
+ }
1579
+ }
1580
+ ]
1073
1581
  }
1074
1582
  ],
1075
1583
  "exports": [
@@ -1089,7 +1597,7 @@
1089
1597
  "declarations": [
1090
1598
  {
1091
1599
  "kind": "class",
1092
- "description": "",
1600
+ "description": "Groups related items (such a radios) in a menu.",
1093
1601
  "name": "M3eMenuItemGroupElement",
1094
1602
  "slots": [
1095
1603
  {
@@ -1109,8 +1617,7 @@
1109
1617
  "package": "lit"
1110
1618
  },
1111
1619
  "tagName": "m3e-menu-item-group",
1112
- "customElement": true,
1113
- "summary": "Groups related items (such a radios) in a menu."
1620
+ "customElement": true
1114
1621
  }
1115
1622
  ],
1116
1623
  "exports": [
@@ -1138,7 +1645,7 @@
1138
1645
  "declarations": [
1139
1646
  {
1140
1647
  "kind": "class",
1141
- "description": "",
1648
+ "description": "An item of a menu which supports a mutually exclusive checkable state.",
1142
1649
  "name": "M3eMenuItemRadioElement",
1143
1650
  "cssProperties": [
1144
1651
  {
@@ -1257,7 +1764,11 @@
1257
1764
  "kind": "field",
1258
1765
  "name": "#keyUpHandler",
1259
1766
  "privacy": "private",
1260
- "readonly": true
1767
+ "readonly": true,
1768
+ "inheritedFrom": {
1769
+ "name": "MenuItemElementBase",
1770
+ "module": "src/MenuItemElementBase.ts"
1771
+ }
1261
1772
  },
1262
1773
  {
1263
1774
  "kind": "field",
@@ -1354,6 +1865,18 @@
1354
1865
  "type": {
1355
1866
  "text": "void"
1356
1867
  }
1868
+ },
1869
+ "parameters": [
1870
+ {
1871
+ "name": "e",
1872
+ "type": {
1873
+ "text": "KeyboardEvent"
1874
+ }
1875
+ }
1876
+ ],
1877
+ "inheritedFrom": {
1878
+ "name": "MenuItemElementBase",
1879
+ "module": "src/MenuItemElementBase.ts"
1357
1880
  }
1358
1881
  },
1359
1882
  {
@@ -1366,6 +1889,72 @@
1366
1889
  }
1367
1890
  }
1368
1891
  },
1892
+ {
1893
+ "kind": "field",
1894
+ "name": "checked",
1895
+ "type": {
1896
+ "text": "boolean"
1897
+ },
1898
+ "default": "false",
1899
+ "description": "Whether the element is checked.",
1900
+ "attribute": "checked",
1901
+ "reflects": true,
1902
+ "inheritedFrom": {
1903
+ "name": "Checked",
1904
+ "module": "../core/src/shared/mixins/Checked.ts"
1905
+ }
1906
+ },
1907
+ {
1908
+ "kind": "field",
1909
+ "name": "[_tabindex]",
1910
+ "type": {
1911
+ "text": "number"
1912
+ },
1913
+ "privacy": "private",
1914
+ "default": "0",
1915
+ "inheritedFrom": {
1916
+ "name": "MenuItemElementBase",
1917
+ "module": "src/MenuItemElementBase.ts"
1918
+ }
1919
+ },
1920
+ {
1921
+ "kind": "field",
1922
+ "name": "formAssociated",
1923
+ "static": true,
1924
+ "readonly": true,
1925
+ "default": "formAssociated",
1926
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
1927
+ "inheritedFrom": {
1928
+ "name": "MenuItemElementBase",
1929
+ "module": "src/MenuItemElementBase.ts"
1930
+ }
1931
+ },
1932
+ {
1933
+ "kind": "field",
1934
+ "name": "[_internals]",
1935
+ "type": {
1936
+ "text": "ElementInternals | undefined"
1937
+ },
1938
+ "privacy": "private",
1939
+ "inheritedFrom": {
1940
+ "name": "MenuItemElementBase",
1941
+ "module": "src/MenuItemElementBase.ts"
1942
+ }
1943
+ },
1944
+ {
1945
+ "kind": "field",
1946
+ "name": "disabled",
1947
+ "type": {
1948
+ "text": "boolean"
1949
+ },
1950
+ "default": "false",
1951
+ "description": "Whether the element is disabled.",
1952
+ "attribute": "disabled",
1953
+ "inheritedFrom": {
1954
+ "name": "MenuItemElementBase",
1955
+ "module": "src/MenuItemElementBase.ts"
1956
+ }
1957
+ },
1369
1958
  {
1370
1959
  "kind": "field",
1371
1960
  "name": "_focusRing",
@@ -1419,14 +2008,45 @@
1419
2008
  }
1420
2009
  }
1421
2010
  ],
2011
+ "events": [
2012
+ {
2013
+ "name": "click",
2014
+ "type": {
2015
+ "text": "MouseEvent"
2016
+ },
2017
+ "inheritedFrom": {
2018
+ "name": "MenuItemElementBase",
2019
+ "module": "src/MenuItemElementBase.ts"
2020
+ },
2021
+ "description": "Emitted when the element is clicked."
2022
+ }
2023
+ ],
1422
2024
  "attributes": [
1423
2025
  {
2026
+ "name": "disabled",
2027
+ "type": {
2028
+ "text": "boolean"
2029
+ },
2030
+ "default": "false",
1424
2031
  "description": "Whether the element is disabled.",
1425
- "name": "disabled"
2032
+ "fieldName": "disabled",
2033
+ "inheritedFrom": {
2034
+ "name": "MenuItemElementBase",
2035
+ "module": "src/MenuItemElementBase.ts"
2036
+ }
1426
2037
  },
1427
2038
  {
2039
+ "name": "checked",
2040
+ "type": {
2041
+ "text": "boolean"
2042
+ },
2043
+ "default": "false",
1428
2044
  "description": "Whether the element is checked.",
1429
- "name": "checked"
2045
+ "fieldName": "checked",
2046
+ "inheritedFrom": {
2047
+ "name": "Checked",
2048
+ "module": "../core/src/shared/mixins/Checked.ts"
2049
+ }
1430
2050
  }
1431
2051
  ],
1432
2052
  "mixins": [
@@ -1444,8 +2064,7 @@
1444
2064
  "module": "/src/MenuItemElementBase"
1445
2065
  },
1446
2066
  "tagName": "m3e-menu-item-radio",
1447
- "customElement": true,
1448
- "summary": "An item of a menu which supports a mutually exclusive checkable state."
2067
+ "customElement": true
1449
2068
  }
1450
2069
  ],
1451
2070
  "exports": [
@@ -1479,7 +2098,7 @@
1479
2098
  "declarations": [
1480
2099
  {
1481
2100
  "kind": "class",
1482
- "description": "",
2101
+ "description": "An element, nested within a clickable element, used to open a menu.",
1483
2102
  "name": "M3eMenuTriggerElement",
1484
2103
  "slots": [
1485
2104
  {
@@ -1518,7 +2137,12 @@
1518
2137
  "text": "HTMLElement"
1519
2138
  }
1520
2139
  }
1521
- ]
2140
+ ],
2141
+ "description": "Attaches the element to an interactive control.",
2142
+ "inheritedFrom": {
2143
+ "name": "HtmlFor",
2144
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2145
+ }
1522
2146
  },
1523
2147
  {
1524
2148
  "kind": "method",
@@ -1527,6 +2151,11 @@
1527
2151
  "type": {
1528
2152
  "text": "void"
1529
2153
  }
2154
+ },
2155
+ "description": "Detaches the element from its current interactive control.",
2156
+ "inheritedFrom": {
2157
+ "name": "HtmlFor",
2158
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
1530
2159
  }
1531
2160
  },
1532
2161
  {
@@ -1546,16 +2175,62 @@
1546
2175
  }
1547
2176
  }
1548
2177
  ]
2178
+ },
2179
+ {
2180
+ "kind": "field",
2181
+ "name": "[_control]",
2182
+ "type": {
2183
+ "text": "HTMLElement | null"
2184
+ },
2185
+ "privacy": "private",
2186
+ "default": "null",
2187
+ "inheritedFrom": {
2188
+ "name": "HtmlFor",
2189
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2190
+ }
2191
+ },
2192
+ {
2193
+ "kind": "field",
2194
+ "name": "[_firstUpdated]",
2195
+ "type": {
2196
+ "text": "boolean"
2197
+ },
2198
+ "privacy": "private",
2199
+ "default": "false",
2200
+ "inheritedFrom": {
2201
+ "name": "HtmlFor",
2202
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2203
+ }
2204
+ },
2205
+ {
2206
+ "kind": "field",
2207
+ "name": "htmlFor",
2208
+ "type": {
2209
+ "text": "string | null"
2210
+ },
2211
+ "default": "null",
2212
+ "description": "The identifier of the interactive control to which this element is attached.",
2213
+ "attribute": "for",
2214
+ "inheritedFrom": {
2215
+ "name": "HtmlFor",
2216
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2217
+ }
2218
+ },
2219
+ {
2220
+ "kind": "field",
2221
+ "name": "control",
2222
+ "description": "The interactive element to which this element is attached.",
2223
+ "readonly": true,
2224
+ "inheritedFrom": {
2225
+ "name": "HtmlFor",
2226
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2227
+ }
1549
2228
  }
1550
2229
  ],
1551
2230
  "mixins": [
1552
2231
  {
1553
2232
  "name": "HtmlFor",
1554
2233
  "package": "@m3e/core"
1555
- },
1556
- {
1557
- "name": "Role",
1558
- "package": "@m3e/core"
1559
2234
  }
1560
2235
  ],
1561
2236
  "superclass": {
@@ -1564,7 +2239,21 @@
1564
2239
  },
1565
2240
  "tagName": "m3e-menu-trigger",
1566
2241
  "customElement": true,
1567
- "summary": "An element, nested within a clickable element, used to open a menu."
2242
+ "attributes": [
2243
+ {
2244
+ "name": "for",
2245
+ "type": {
2246
+ "text": "string | null"
2247
+ },
2248
+ "default": "null",
2249
+ "description": "The identifier of the interactive control to which this element is attached.",
2250
+ "fieldName": "htmlFor",
2251
+ "inheritedFrom": {
2252
+ "name": "HtmlFor",
2253
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2254
+ }
2255
+ }
2256
+ ]
1568
2257
  }
1569
2258
  ],
1570
2259
  "exports": [
@@ -1585,6 +2274,2553 @@
1585
2274
  }
1586
2275
  }
1587
2276
  ]
2277
+ },
2278
+ {
2279
+ "kind": "javascript-module",
2280
+ "path": "../core/src/shared/mixins/AttachInternals.ts",
2281
+ "declarations": [
2282
+ {
2283
+ "kind": "variable",
2284
+ "name": "internals",
2285
+ "description": "A symbol through which to access the `ElementInternals` attached to an element."
2286
+ },
2287
+ {
2288
+ "kind": "function",
2289
+ "name": "isAttachInternalsMixin",
2290
+ "return": {
2291
+ "type": {
2292
+ "text": ""
2293
+ }
2294
+ },
2295
+ "parameters": [
2296
+ {
2297
+ "name": "value",
2298
+ "type": {
2299
+ "text": "unknown"
2300
+ },
2301
+ "description": "The value to test."
2302
+ }
2303
+ ],
2304
+ "description": "Determines whether a value is an `AttachInternalsMixin`."
2305
+ },
2306
+ {
2307
+ "kind": "mixin",
2308
+ "description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
2309
+ "name": "AttachInternals",
2310
+ "members": [
2311
+ {
2312
+ "kind": "field",
2313
+ "name": "formAssociated",
2314
+ "static": true,
2315
+ "readonly": true,
2316
+ "default": "formAssociated",
2317
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2318
+ },
2319
+ {
2320
+ "kind": "field",
2321
+ "name": "[_internals]",
2322
+ "type": {
2323
+ "text": "ElementInternals | undefined"
2324
+ },
2325
+ "privacy": "private"
2326
+ }
2327
+ ],
2328
+ "parameters": [
2329
+ {
2330
+ "name": "base",
2331
+ "type": {
2332
+ "text": "T"
2333
+ },
2334
+ "description": "The base class."
2335
+ },
2336
+ {
2337
+ "name": "formAssociated",
2338
+ "optional": true,
2339
+ "type": {
2340
+ "text": "boolean | undefined"
2341
+ },
2342
+ "description": "Whether the element is \"Form Associated\"."
2343
+ }
2344
+ ]
2345
+ }
2346
+ ],
2347
+ "exports": [
2348
+ {
2349
+ "kind": "js",
2350
+ "name": "internals",
2351
+ "declaration": {
2352
+ "name": "internals",
2353
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
2354
+ }
2355
+ },
2356
+ {
2357
+ "kind": "js",
2358
+ "name": "isAttachInternalsMixin",
2359
+ "declaration": {
2360
+ "name": "isAttachInternalsMixin",
2361
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
2362
+ }
2363
+ },
2364
+ {
2365
+ "kind": "js",
2366
+ "name": "AttachInternals",
2367
+ "declaration": {
2368
+ "name": "AttachInternals",
2369
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
2370
+ }
2371
+ }
2372
+ ]
2373
+ },
2374
+ {
2375
+ "kind": "javascript-module",
2376
+ "path": "../core/src/shared/mixins/Checked.ts",
2377
+ "declarations": [
2378
+ {
2379
+ "kind": "function",
2380
+ "name": "isCheckedMixin",
2381
+ "return": {
2382
+ "type": {
2383
+ "text": ""
2384
+ }
2385
+ },
2386
+ "parameters": [
2387
+ {
2388
+ "name": "value",
2389
+ "type": {
2390
+ "text": "unknown"
2391
+ },
2392
+ "description": "The value to test."
2393
+ }
2394
+ ],
2395
+ "description": "Determines whether a value is a `CheckedMixin`."
2396
+ },
2397
+ {
2398
+ "kind": "mixin",
2399
+ "description": "Mixin to augment an element with behavior that supports a checked state.",
2400
+ "name": "Checked",
2401
+ "members": [
2402
+ {
2403
+ "kind": "field",
2404
+ "name": "checked",
2405
+ "type": {
2406
+ "text": "boolean"
2407
+ },
2408
+ "default": "false",
2409
+ "description": "Whether the element is checked.",
2410
+ "attribute": "checked",
2411
+ "reflects": true
2412
+ }
2413
+ ],
2414
+ "attributes": [
2415
+ {
2416
+ "name": "checked",
2417
+ "type": {
2418
+ "text": "boolean"
2419
+ },
2420
+ "default": "false",
2421
+ "description": "Whether the element is checked.",
2422
+ "fieldName": "checked"
2423
+ }
2424
+ ],
2425
+ "parameters": [
2426
+ {
2427
+ "name": "base",
2428
+ "type": {
2429
+ "text": "T"
2430
+ },
2431
+ "description": "The base class."
2432
+ }
2433
+ ]
2434
+ }
2435
+ ],
2436
+ "exports": [
2437
+ {
2438
+ "kind": "js",
2439
+ "name": "isCheckedMixin",
2440
+ "declaration": {
2441
+ "name": "isCheckedMixin",
2442
+ "module": "../core/src/shared/mixins/Checked.ts"
2443
+ }
2444
+ },
2445
+ {
2446
+ "kind": "js",
2447
+ "name": "Checked",
2448
+ "declaration": {
2449
+ "name": "Checked",
2450
+ "module": "../core/src/shared/mixins/Checked.ts"
2451
+ }
2452
+ }
2453
+ ]
2454
+ },
2455
+ {
2456
+ "kind": "javascript-module",
2457
+ "path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
2458
+ "declarations": [
2459
+ {
2460
+ "kind": "function",
2461
+ "name": "isCheckedIndeterminateMixin",
2462
+ "return": {
2463
+ "type": {
2464
+ "text": ""
2465
+ }
2466
+ },
2467
+ "parameters": [
2468
+ {
2469
+ "name": "value",
2470
+ "type": {
2471
+ "text": "unknown"
2472
+ },
2473
+ "description": "The value to test."
2474
+ }
2475
+ ],
2476
+ "description": "Determines whether a value is a `CheckedIndeterminateMixin`."
2477
+ },
2478
+ {
2479
+ "kind": "mixin",
2480
+ "description": "Mixin to augment an element with behavior that supports a mixed checked state.",
2481
+ "name": "CheckedIndeterminate",
2482
+ "members": [
2483
+ {
2484
+ "kind": "field",
2485
+ "name": "indeterminate",
2486
+ "type": {
2487
+ "text": "boolean"
2488
+ },
2489
+ "default": "false",
2490
+ "description": "Whether the element's checked state is indeterminate.",
2491
+ "attribute": "indeterminate",
2492
+ "reflects": true
2493
+ },
2494
+ {
2495
+ "kind": "field",
2496
+ "name": "checked",
2497
+ "type": {
2498
+ "text": "boolean"
2499
+ },
2500
+ "default": "false",
2501
+ "description": "Whether the element is checked.",
2502
+ "attribute": "checked",
2503
+ "reflects": true,
2504
+ "inheritedFrom": {
2505
+ "name": "Checked",
2506
+ "module": "../core/src/shared/mixins/Checked.ts"
2507
+ }
2508
+ }
2509
+ ],
2510
+ "attributes": [
2511
+ {
2512
+ "name": "indeterminate",
2513
+ "type": {
2514
+ "text": "boolean"
2515
+ },
2516
+ "default": "false",
2517
+ "description": "Whether the element's checked state is indeterminate.",
2518
+ "fieldName": "indeterminate"
2519
+ },
2520
+ {
2521
+ "name": "checked",
2522
+ "type": {
2523
+ "text": "boolean"
2524
+ },
2525
+ "default": "false",
2526
+ "description": "Whether the element is checked.",
2527
+ "fieldName": "checked",
2528
+ "inheritedFrom": {
2529
+ "name": "Checked",
2530
+ "module": "../core/src/shared/mixins/Checked.ts"
2531
+ }
2532
+ }
2533
+ ],
2534
+ "mixins": [
2535
+ {
2536
+ "name": "Checked",
2537
+ "module": "/core/src/shared/mixins/Checked"
2538
+ }
2539
+ ],
2540
+ "parameters": [
2541
+ {
2542
+ "name": "base",
2543
+ "type": {
2544
+ "text": "T"
2545
+ },
2546
+ "description": "The base class."
2547
+ }
2548
+ ]
2549
+ }
2550
+ ],
2551
+ "exports": [
2552
+ {
2553
+ "kind": "js",
2554
+ "name": "isCheckedIndeterminateMixin",
2555
+ "declaration": {
2556
+ "name": "isCheckedIndeterminateMixin",
2557
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
2558
+ }
2559
+ },
2560
+ {
2561
+ "kind": "js",
2562
+ "name": "CheckedIndeterminate",
2563
+ "declaration": {
2564
+ "name": "CheckedIndeterminate",
2565
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
2566
+ }
2567
+ }
2568
+ ]
2569
+ },
2570
+ {
2571
+ "kind": "javascript-module",
2572
+ "path": "../core/src/shared/mixins/CheckedOrSelected.ts",
2573
+ "declarations": [
2574
+ {
2575
+ "kind": "function",
2576
+ "name": "isCheckedOrSelectedMixin",
2577
+ "return": {
2578
+ "type": {
2579
+ "text": ""
2580
+ }
2581
+ },
2582
+ "parameters": [
2583
+ {
2584
+ "name": "value",
2585
+ "type": {
2586
+ "text": "unknown"
2587
+ },
2588
+ "description": "The value to test."
2589
+ }
2590
+ ],
2591
+ "description": "Determines whether a value is a `CheckedOrSelectedMixin`."
2592
+ },
2593
+ {
2594
+ "kind": "function",
2595
+ "name": "isCheckedOrSelected",
2596
+ "return": {
2597
+ "type": {
2598
+ "text": "boolean"
2599
+ }
2600
+ },
2601
+ "parameters": [
2602
+ {
2603
+ "name": "element",
2604
+ "type": {
2605
+ "text": "CheckedOrSelectedMixin"
2606
+ },
2607
+ "description": "The element to test."
2608
+ }
2609
+ ],
2610
+ "description": "Determines whether the state of an element is checked or selected."
2611
+ },
2612
+ {
2613
+ "kind": "function",
2614
+ "name": "checkOrSelect",
2615
+ "return": {
2616
+ "type": {
2617
+ "text": "void"
2618
+ }
2619
+ },
2620
+ "parameters": [
2621
+ {
2622
+ "name": "element",
2623
+ "type": {
2624
+ "text": "CheckedOrSelectedMixin"
2625
+ },
2626
+ "description": "The element for which to set the checked or selected state."
2627
+ },
2628
+ {
2629
+ "name": "checkedOrSelected",
2630
+ "type": {
2631
+ "text": "boolean"
2632
+ },
2633
+ "description": "The checked or selected state."
2634
+ }
2635
+ ],
2636
+ "description": "Sets the checked or selected state of an element."
2637
+ }
2638
+ ],
2639
+ "exports": [
2640
+ {
2641
+ "kind": "js",
2642
+ "name": "isCheckedOrSelectedMixin",
2643
+ "declaration": {
2644
+ "name": "isCheckedOrSelectedMixin",
2645
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
2646
+ }
2647
+ },
2648
+ {
2649
+ "kind": "js",
2650
+ "name": "isCheckedOrSelected",
2651
+ "declaration": {
2652
+ "name": "isCheckedOrSelected",
2653
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
2654
+ }
2655
+ },
2656
+ {
2657
+ "kind": "js",
2658
+ "name": "checkOrSelect",
2659
+ "declaration": {
2660
+ "name": "checkOrSelect",
2661
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
2662
+ }
2663
+ }
2664
+ ]
2665
+ },
2666
+ {
2667
+ "kind": "javascript-module",
2668
+ "path": "../core/src/shared/mixins/ConstraintValidation.ts",
2669
+ "declarations": [
2670
+ {
2671
+ "kind": "variable",
2672
+ "name": "validate",
2673
+ "description": "A symbol through which a \"Form Associated\" custom element validates its current state."
2674
+ },
2675
+ {
2676
+ "kind": "function",
2677
+ "name": "isConstraintValidationMixin",
2678
+ "return": {
2679
+ "type": {
2680
+ "text": ""
2681
+ }
2682
+ },
2683
+ "parameters": [
2684
+ {
2685
+ "name": "value",
2686
+ "type": {
2687
+ "text": "unknown"
2688
+ },
2689
+ "description": "The value to test."
2690
+ }
2691
+ ],
2692
+ "description": "Determines whether a value is a `ConstraintValidationMixin`."
2693
+ },
2694
+ {
2695
+ "kind": "mixin",
2696
+ "description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
2697
+ "name": "ConstraintValidation",
2698
+ "members": [
2699
+ {
2700
+ "kind": "field",
2701
+ "name": "[_validityMessage]",
2702
+ "type": {
2703
+ "text": "string | undefined"
2704
+ },
2705
+ "privacy": "private"
2706
+ },
2707
+ {
2708
+ "kind": "field",
2709
+ "name": "willValidate",
2710
+ "type": {
2711
+ "text": "boolean"
2712
+ },
2713
+ "description": "Whether the element is a submittable element that is a candidate for constraint validation.",
2714
+ "readonly": true
2715
+ },
2716
+ {
2717
+ "kind": "field",
2718
+ "name": "validity",
2719
+ "type": {
2720
+ "text": "ValidityState"
2721
+ },
2722
+ "description": "The validity state of the element.",
2723
+ "readonly": true
2724
+ },
2725
+ {
2726
+ "kind": "field",
2727
+ "name": "validationMessage",
2728
+ "type": {
2729
+ "text": "string"
2730
+ },
2731
+ "description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
2732
+ "readonly": true
2733
+ },
2734
+ {
2735
+ "kind": "method",
2736
+ "name": "reportValidity",
2737
+ "return": {
2738
+ "type": {
2739
+ "text": "boolean"
2740
+ }
2741
+ },
2742
+ "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."
2743
+ },
2744
+ {
2745
+ "kind": "method",
2746
+ "name": "checkValidity",
2747
+ "return": {
2748
+ "type": {
2749
+ "text": "boolean"
2750
+ }
2751
+ },
2752
+ "description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
2753
+ },
2754
+ {
2755
+ "kind": "method",
2756
+ "name": "setCustomValidity",
2757
+ "return": {
2758
+ "type": {
2759
+ "text": "void"
2760
+ }
2761
+ },
2762
+ "parameters": [
2763
+ {
2764
+ "name": "error",
2765
+ "type": {
2766
+ "text": "string"
2767
+ },
2768
+ "description": "The message to use for validity errors."
2769
+ }
2770
+ ],
2771
+ "description": "Sets a custom validity message for the element."
2772
+ },
2773
+ {
2774
+ "kind": "method",
2775
+ "name": "[_updateValidity]",
2776
+ "privacy": "private",
2777
+ "return": {
2778
+ "type": {
2779
+ "text": "void"
2780
+ }
2781
+ }
2782
+ },
2783
+ {
2784
+ "kind": "method",
2785
+ "name": "#getNativeMessage",
2786
+ "privacy": "private",
2787
+ "return": {
2788
+ "type": {
2789
+ "text": "string"
2790
+ }
2791
+ },
2792
+ "parameters": [
2793
+ {
2794
+ "name": "flags",
2795
+ "type": {
2796
+ "text": "ValidityStateFlags"
2797
+ }
2798
+ }
2799
+ ]
2800
+ }
2801
+ ],
2802
+ "parameters": [
2803
+ {
2804
+ "name": "base",
2805
+ "type": {
2806
+ "text": "T"
2807
+ },
2808
+ "description": "The base class."
2809
+ }
2810
+ ]
2811
+ }
2812
+ ],
2813
+ "exports": [
2814
+ {
2815
+ "kind": "js",
2816
+ "name": "validate",
2817
+ "declaration": {
2818
+ "name": "validate",
2819
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
2820
+ }
2821
+ },
2822
+ {
2823
+ "kind": "js",
2824
+ "name": "isConstraintValidationMixin",
2825
+ "declaration": {
2826
+ "name": "isConstraintValidationMixin",
2827
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
2828
+ }
2829
+ },
2830
+ {
2831
+ "kind": "js",
2832
+ "name": "ConstraintValidation",
2833
+ "declaration": {
2834
+ "name": "ConstraintValidation",
2835
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
2836
+ }
2837
+ }
2838
+ ]
2839
+ },
2840
+ {
2841
+ "kind": "javascript-module",
2842
+ "path": "../core/src/shared/mixins/Constructor.ts",
2843
+ "declarations": [],
2844
+ "exports": []
2845
+ },
2846
+ {
2847
+ "kind": "javascript-module",
2848
+ "path": "../core/src/shared/mixins/Dirty.ts",
2849
+ "declarations": [
2850
+ {
2851
+ "kind": "function",
2852
+ "name": "isDirtyMixin",
2853
+ "return": {
2854
+ "type": {
2855
+ "text": ""
2856
+ }
2857
+ },
2858
+ "parameters": [
2859
+ {
2860
+ "name": "value",
2861
+ "type": {
2862
+ "text": "unknown"
2863
+ },
2864
+ "description": "The value to test."
2865
+ }
2866
+ ],
2867
+ "description": "Determines whether a value is a `DirtyMixin`."
2868
+ },
2869
+ {
2870
+ "kind": "mixin",
2871
+ "description": "Mixin to augment an element with functionality used to mark it as dirty.",
2872
+ "name": "Dirty",
2873
+ "members": [
2874
+ {
2875
+ "kind": "field",
2876
+ "name": "[_eventHandler]",
2877
+ "privacy": "private"
2878
+ },
2879
+ {
2880
+ "kind": "field",
2881
+ "name": "dirty",
2882
+ "type": {
2883
+ "text": "boolean"
2884
+ },
2885
+ "description": "Whether the user has modified the value of the element.",
2886
+ "readonly": true
2887
+ },
2888
+ {
2889
+ "kind": "field",
2890
+ "name": "pristine",
2891
+ "type": {
2892
+ "text": "boolean"
2893
+ },
2894
+ "description": "Whether the user has not modified the value of the element.",
2895
+ "readonly": true
2896
+ },
2897
+ {
2898
+ "kind": "method",
2899
+ "name": "markAsPristine",
2900
+ "return": {
2901
+ "type": {
2902
+ "text": "void"
2903
+ }
2904
+ },
2905
+ "description": "Marks the element as pristine."
2906
+ },
2907
+ {
2908
+ "kind": "method",
2909
+ "name": "markAsDirty",
2910
+ "return": {
2911
+ "type": {
2912
+ "text": "void"
2913
+ }
2914
+ },
2915
+ "description": "Marks the element as dirty."
2916
+ }
2917
+ ],
2918
+ "parameters": [
2919
+ {
2920
+ "name": "base",
2921
+ "type": {
2922
+ "text": "T"
2923
+ },
2924
+ "description": "The base class."
2925
+ }
2926
+ ]
2927
+ }
2928
+ ],
2929
+ "exports": [
2930
+ {
2931
+ "kind": "js",
2932
+ "name": "isDirtyMixin",
2933
+ "declaration": {
2934
+ "name": "isDirtyMixin",
2935
+ "module": "../core/src/shared/mixins/Dirty.ts"
2936
+ }
2937
+ },
2938
+ {
2939
+ "kind": "js",
2940
+ "name": "Dirty",
2941
+ "declaration": {
2942
+ "name": "Dirty",
2943
+ "module": "../core/src/shared/mixins/Dirty.ts"
2944
+ }
2945
+ }
2946
+ ]
2947
+ },
2948
+ {
2949
+ "kind": "javascript-module",
2950
+ "path": "../core/src/shared/mixins/Disabled.ts",
2951
+ "declarations": [
2952
+ {
2953
+ "kind": "function",
2954
+ "name": "isDisabledMixin",
2955
+ "return": {
2956
+ "type": {
2957
+ "text": "value is DisabledMixin"
2958
+ }
2959
+ },
2960
+ "parameters": [
2961
+ {
2962
+ "name": "value",
2963
+ "type": {
2964
+ "text": "unknown"
2965
+ },
2966
+ "description": "The value to test."
2967
+ }
2968
+ ],
2969
+ "description": "Determines whether a value is a `DisabledMixin`."
2970
+ },
2971
+ {
2972
+ "kind": "mixin",
2973
+ "description": "Mixin to augment an element with behavior that supports a disabled state.",
2974
+ "name": "Disabled",
2975
+ "members": [
2976
+ {
2977
+ "kind": "field",
2978
+ "name": "disabled",
2979
+ "type": {
2980
+ "text": "boolean"
2981
+ },
2982
+ "default": "false",
2983
+ "description": "Whether the element is disabled.",
2984
+ "attribute": "disabled"
2985
+ }
2986
+ ],
2987
+ "attributes": [
2988
+ {
2989
+ "name": "disabled",
2990
+ "type": {
2991
+ "text": "boolean"
2992
+ },
2993
+ "default": "false",
2994
+ "description": "Whether the element is disabled.",
2995
+ "fieldName": "disabled"
2996
+ }
2997
+ ],
2998
+ "parameters": [
2999
+ {
3000
+ "name": "base",
3001
+ "type": {
3002
+ "text": "T"
3003
+ },
3004
+ "description": "The base class."
3005
+ },
3006
+ {
3007
+ "name": "reflect",
3008
+ "default": "true",
3009
+ "type": {
3010
+ "text": "boolean"
3011
+ },
3012
+ "description": "Whether the disabled property is reflected as an attribute.",
3013
+ "optional": true
3014
+ }
3015
+ ]
3016
+ }
3017
+ ],
3018
+ "exports": [
3019
+ {
3020
+ "kind": "js",
3021
+ "name": "isDisabledMixin",
3022
+ "declaration": {
3023
+ "name": "isDisabledMixin",
3024
+ "module": "../core/src/shared/mixins/Disabled.ts"
3025
+ }
3026
+ },
3027
+ {
3028
+ "kind": "js",
3029
+ "name": "Disabled",
3030
+ "declaration": {
3031
+ "name": "Disabled",
3032
+ "module": "../core/src/shared/mixins/Disabled.ts"
3033
+ }
3034
+ }
3035
+ ]
3036
+ },
3037
+ {
3038
+ "kind": "javascript-module",
3039
+ "path": "../core/src/shared/mixins/DisabledInteractive.ts",
3040
+ "declarations": [
3041
+ {
3042
+ "kind": "function",
3043
+ "name": "isDisabledInteractiveMixin",
3044
+ "return": {
3045
+ "type": {
3046
+ "text": "value is DisabledInteractiveMixin"
3047
+ }
3048
+ },
3049
+ "parameters": [
3050
+ {
3051
+ "name": "value",
3052
+ "type": {
3053
+ "text": "unknown"
3054
+ },
3055
+ "description": "The value to test."
3056
+ }
3057
+ ],
3058
+ "description": "Determines whether a value is a `DisabledInteractiveMixin`."
3059
+ },
3060
+ {
3061
+ "kind": "mixin",
3062
+ "description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
3063
+ "name": "DisabledInteractive",
3064
+ "members": [
3065
+ {
3066
+ "kind": "field",
3067
+ "name": "[_suppressedEventHandler]",
3068
+ "privacy": "private",
3069
+ "readonly": true
3070
+ },
3071
+ {
3072
+ "kind": "field",
3073
+ "name": "disabledInteractive",
3074
+ "type": {
3075
+ "text": "boolean"
3076
+ },
3077
+ "default": "false",
3078
+ "description": "Whether the element is disabled and interactive.",
3079
+ "attribute": "disabled-interactive",
3080
+ "reflects": true
3081
+ }
3082
+ ],
3083
+ "attributes": [
3084
+ {
3085
+ "name": "disabled-interactive",
3086
+ "type": {
3087
+ "text": "boolean"
3088
+ },
3089
+ "default": "false",
3090
+ "description": "Whether the element is disabled and interactive.",
3091
+ "fieldName": "disabledInteractive"
3092
+ }
3093
+ ],
3094
+ "parameters": [
3095
+ {
3096
+ "name": "base",
3097
+ "type": {
3098
+ "text": "T"
3099
+ },
3100
+ "description": "The base class."
3101
+ }
3102
+ ]
3103
+ }
3104
+ ],
3105
+ "exports": [
3106
+ {
3107
+ "kind": "js",
3108
+ "name": "isDisabledInteractiveMixin",
3109
+ "declaration": {
3110
+ "name": "isDisabledInteractiveMixin",
3111
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
3112
+ }
3113
+ },
3114
+ {
3115
+ "kind": "js",
3116
+ "name": "DisabledInteractive",
3117
+ "declaration": {
3118
+ "name": "DisabledInteractive",
3119
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
3120
+ }
3121
+ }
3122
+ ]
3123
+ },
3124
+ {
3125
+ "kind": "javascript-module",
3126
+ "path": "../core/src/shared/mixins/EventAttribute.ts",
3127
+ "declarations": [
3128
+ {
3129
+ "kind": "mixin",
3130
+ "description": "Mixin that adds support for custom event attributes.",
3131
+ "name": "EventAttribute",
3132
+ "members": [
3133
+ {
3134
+ "kind": "method",
3135
+ "name": "dispatchEvent",
3136
+ "return": {
3137
+ "type": {
3138
+ "text": "boolean"
3139
+ }
3140
+ },
3141
+ "parameters": [
3142
+ {
3143
+ "name": "event",
3144
+ "type": {
3145
+ "text": "Event"
3146
+ }
3147
+ }
3148
+ ]
3149
+ }
3150
+ ],
3151
+ "parameters": [
3152
+ {
3153
+ "name": "base",
3154
+ "type": {
3155
+ "text": "T"
3156
+ },
3157
+ "description": "The base class from which to inherit."
3158
+ },
3159
+ {
3160
+ "name": "types",
3161
+ "type": {
3162
+ "text": "string[]"
3163
+ },
3164
+ "description": "The types of event attributes."
3165
+ }
3166
+ ]
3167
+ }
3168
+ ],
3169
+ "exports": [
3170
+ {
3171
+ "kind": "js",
3172
+ "name": "EventAttribute",
3173
+ "declaration": {
3174
+ "name": "EventAttribute",
3175
+ "module": "../core/src/shared/mixins/EventAttribute.ts"
3176
+ }
3177
+ }
3178
+ ]
3179
+ },
3180
+ {
3181
+ "kind": "javascript-module",
3182
+ "path": "../core/src/shared/mixins/Focusable.ts",
3183
+ "declarations": [
3184
+ {
3185
+ "kind": "mixin",
3186
+ "description": "Mixin to augment an element with behavior that supports a focused state.",
3187
+ "name": "Focusable",
3188
+ "members": [
3189
+ {
3190
+ "kind": "field",
3191
+ "name": "[_tabindex]",
3192
+ "type": {
3193
+ "text": "number"
3194
+ },
3195
+ "privacy": "private",
3196
+ "default": "0"
3197
+ }
3198
+ ],
3199
+ "parameters": [
3200
+ {
3201
+ "name": "base",
3202
+ "type": {
3203
+ "text": "T"
3204
+ },
3205
+ "description": "The base class."
3206
+ }
3207
+ ]
3208
+ }
3209
+ ],
3210
+ "exports": [
3211
+ {
3212
+ "kind": "js",
3213
+ "name": "Focusable",
3214
+ "declaration": {
3215
+ "name": "Focusable",
3216
+ "module": "../core/src/shared/mixins/Focusable.ts"
3217
+ }
3218
+ }
3219
+ ]
3220
+ },
3221
+ {
3222
+ "kind": "javascript-module",
3223
+ "path": "../core/src/shared/mixins/FormAssociated.ts",
3224
+ "declarations": [
3225
+ {
3226
+ "kind": "variable",
3227
+ "name": "formValue",
3228
+ "description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
3229
+ },
3230
+ {
3231
+ "kind": "variable",
3232
+ "name": "defaultValue",
3233
+ "description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
3234
+ },
3235
+ {
3236
+ "kind": "function",
3237
+ "name": "isFormAssociatedMixin",
3238
+ "return": {
3239
+ "type": {
3240
+ "text": ""
3241
+ }
3242
+ },
3243
+ "parameters": [
3244
+ {
3245
+ "name": "value",
3246
+ "type": {
3247
+ "text": "unknown"
3248
+ },
3249
+ "description": "The value to test."
3250
+ }
3251
+ ],
3252
+ "description": "Determines whether a value is a `FormAssociatedMixin`."
3253
+ },
3254
+ {
3255
+ "kind": "mixin",
3256
+ "description": "Mixin to augment an element with \"Form Associated\" behavior.",
3257
+ "name": "FormAssociated",
3258
+ "members": [
3259
+ {
3260
+ "kind": "field",
3261
+ "name": "formAssociated",
3262
+ "type": {
3263
+ "text": "boolean"
3264
+ },
3265
+ "static": true,
3266
+ "readonly": true,
3267
+ "default": "true",
3268
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
3269
+ },
3270
+ {
3271
+ "kind": "field",
3272
+ "name": "[_defaultValue]",
3273
+ "type": {
3274
+ "text": "unknown"
3275
+ },
3276
+ "privacy": "private"
3277
+ },
3278
+ {
3279
+ "kind": "field",
3280
+ "name": "[_defaultIndeterminate]",
3281
+ "type": {
3282
+ "text": "boolean"
3283
+ },
3284
+ "privacy": "private",
3285
+ "default": "false"
3286
+ },
3287
+ {
3288
+ "kind": "field",
3289
+ "name": "[_formDisabled]",
3290
+ "type": {
3291
+ "text": "boolean"
3292
+ },
3293
+ "privacy": "private",
3294
+ "default": "false"
3295
+ },
3296
+ {
3297
+ "kind": "field",
3298
+ "name": "form",
3299
+ "type": {
3300
+ "text": "HTMLFormElement | null"
3301
+ },
3302
+ "description": "The `HTMLFormElement` associated with this element.",
3303
+ "readonly": true
3304
+ },
3305
+ {
3306
+ "kind": "field",
3307
+ "name": "labels",
3308
+ "type": {
3309
+ "text": "NodeListOf<HTMLLabelElement>"
3310
+ },
3311
+ "readonly": true
3312
+ },
3313
+ {
3314
+ "kind": "field",
3315
+ "name": "name",
3316
+ "description": "The name that identifies the element when submitting the associated form.",
3317
+ "attribute": "name"
3318
+ },
3319
+ {
3320
+ "kind": "field",
3321
+ "name": "disabled",
3322
+ "type": {
3323
+ "text": "boolean"
3324
+ },
3325
+ "description": "Whether the element is disabled.",
3326
+ "default": "false",
3327
+ "attribute": "disabled"
3328
+ },
3329
+ {
3330
+ "kind": "method",
3331
+ "name": "formDisabledCallback",
3332
+ "return": {
3333
+ "type": {
3334
+ "text": "void"
3335
+ }
3336
+ },
3337
+ "parameters": [
3338
+ {
3339
+ "name": "disabled",
3340
+ "type": {
3341
+ "text": "boolean"
3342
+ }
3343
+ }
3344
+ ],
3345
+ "description": "Called when the element is disabled or enabled via its form association."
3346
+ },
3347
+ {
3348
+ "kind": "method",
3349
+ "name": "formResetCallback",
3350
+ "return": {
3351
+ "type": {
3352
+ "text": "void"
3353
+ }
3354
+ },
3355
+ "description": "Called when the associated form is reset."
3356
+ }
3357
+ ],
3358
+ "attributes": [
3359
+ {
3360
+ "name": "name",
3361
+ "description": "The name that identifies the element when submitting the associated form.",
3362
+ "fieldName": "name"
3363
+ },
3364
+ {
3365
+ "name": "disabled",
3366
+ "type": {
3367
+ "text": "boolean"
3368
+ },
3369
+ "description": "Whether the element is disabled.",
3370
+ "default": "false",
3371
+ "fieldName": "disabled"
3372
+ }
3373
+ ],
3374
+ "parameters": [
3375
+ {
3376
+ "name": "base",
3377
+ "type": {
3378
+ "text": "T"
3379
+ },
3380
+ "description": "The base class."
3381
+ }
3382
+ ]
3383
+ }
3384
+ ],
3385
+ "exports": [
3386
+ {
3387
+ "kind": "js",
3388
+ "name": "formValue",
3389
+ "declaration": {
3390
+ "name": "formValue",
3391
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
3392
+ }
3393
+ },
3394
+ {
3395
+ "kind": "js",
3396
+ "name": "defaultValue",
3397
+ "declaration": {
3398
+ "name": "defaultValue",
3399
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
3400
+ }
3401
+ },
3402
+ {
3403
+ "kind": "js",
3404
+ "name": "isFormAssociatedMixin",
3405
+ "declaration": {
3406
+ "name": "isFormAssociatedMixin",
3407
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
3408
+ }
3409
+ },
3410
+ {
3411
+ "kind": "js",
3412
+ "name": "FormAssociated",
3413
+ "declaration": {
3414
+ "name": "FormAssociated",
3415
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
3416
+ }
3417
+ }
3418
+ ]
3419
+ },
3420
+ {
3421
+ "kind": "javascript-module",
3422
+ "path": "../core/src/shared/mixins/FormSubmitter.ts",
3423
+ "declarations": [
3424
+ {
3425
+ "kind": "function",
3426
+ "name": "isFormSubmitterMixin",
3427
+ "return": {
3428
+ "type": {
3429
+ "text": "value is FormSubmitterMixin"
3430
+ }
3431
+ },
3432
+ "parameters": [
3433
+ {
3434
+ "name": "value",
3435
+ "type": {
3436
+ "text": "unknown"
3437
+ },
3438
+ "description": "The value to test."
3439
+ }
3440
+ ],
3441
+ "description": "Determines whether a value is a `FormSubmitterMixin`."
3442
+ },
3443
+ {
3444
+ "kind": "mixin",
3445
+ "description": "Mixin to augment an element with behavior used to submit a form.",
3446
+ "name": "FormSubmitter",
3447
+ "members": [
3448
+ {
3449
+ "kind": "field",
3450
+ "name": "name",
3451
+ "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.",
3452
+ "attribute": "name"
3453
+ },
3454
+ {
3455
+ "kind": "field",
3456
+ "name": "value",
3457
+ "description": "The value associated with the element's name when it's submitted with form data.",
3458
+ "attribute": "value"
3459
+ },
3460
+ {
3461
+ "kind": "field",
3462
+ "name": "type",
3463
+ "type": {
3464
+ "text": "FormSubmitterType"
3465
+ },
3466
+ "default": "\"button\"",
3467
+ "description": "The type of the element.",
3468
+ "attribute": "type"
3469
+ },
3470
+ {
3471
+ "kind": "field",
3472
+ "name": "[_clickHandler]",
3473
+ "privacy": "private"
3474
+ }
3475
+ ],
3476
+ "attributes": [
3477
+ {
3478
+ "name": "name",
3479
+ "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.",
3480
+ "fieldName": "name"
3481
+ },
3482
+ {
3483
+ "name": "value",
3484
+ "description": "The value associated with the element's name when it's submitted with form data.",
3485
+ "fieldName": "value"
3486
+ },
3487
+ {
3488
+ "name": "type",
3489
+ "type": {
3490
+ "text": "FormSubmitterType"
3491
+ },
3492
+ "default": "\"button\"",
3493
+ "description": "The type of the element.",
3494
+ "fieldName": "type"
3495
+ }
3496
+ ],
3497
+ "parameters": [
3498
+ {
3499
+ "name": "base",
3500
+ "type": {
3501
+ "text": "T"
3502
+ },
3503
+ "description": "The base class."
3504
+ }
3505
+ ]
3506
+ }
3507
+ ],
3508
+ "exports": [
3509
+ {
3510
+ "kind": "js",
3511
+ "name": "isFormSubmitterMixin",
3512
+ "declaration": {
3513
+ "name": "isFormSubmitterMixin",
3514
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
3515
+ }
3516
+ },
3517
+ {
3518
+ "kind": "js",
3519
+ "name": "FormSubmitter",
3520
+ "declaration": {
3521
+ "name": "FormSubmitter",
3522
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
3523
+ }
3524
+ }
3525
+ ]
3526
+ },
3527
+ {
3528
+ "kind": "javascript-module",
3529
+ "path": "../core/src/shared/mixins/hasKeys.ts",
3530
+ "declarations": [
3531
+ {
3532
+ "kind": "function",
3533
+ "name": "hasKeys",
3534
+ "return": {
3535
+ "type": {
3536
+ "text": "boolean"
3537
+ }
3538
+ },
3539
+ "parameters": [
3540
+ {
3541
+ "name": "value",
3542
+ "type": {
3543
+ "text": "unknown"
3544
+ },
3545
+ "description": "The value to test."
3546
+ },
3547
+ {
3548
+ "name": "keys",
3549
+ "type": {
3550
+ "text": "Array<keyof T>"
3551
+ }
3552
+ },
3553
+ {
3554
+ "description": ": Array<keyof T>} keys The keys of `T` to test.",
3555
+ "name": "",
3556
+ "type": {
3557
+ "text": "...keys"
3558
+ }
3559
+ }
3560
+ ],
3561
+ "description": "Determines whether an object has keys for a given type."
3562
+ }
3563
+ ],
3564
+ "exports": [
3565
+ {
3566
+ "kind": "js",
3567
+ "name": "hasKeys",
3568
+ "declaration": {
3569
+ "name": "hasKeys",
3570
+ "module": "../core/src/shared/mixins/hasKeys.ts"
3571
+ }
3572
+ }
3573
+ ]
3574
+ },
3575
+ {
3576
+ "kind": "javascript-module",
3577
+ "path": "../core/src/shared/mixins/HtmlFor.ts",
3578
+ "declarations": [
3579
+ {
3580
+ "kind": "function",
3581
+ "name": "isHtmlForMixin",
3582
+ "return": {
3583
+ "type": {
3584
+ "text": "value is HtmlForMixin"
3585
+ }
3586
+ },
3587
+ "parameters": [
3588
+ {
3589
+ "name": "value",
3590
+ "type": {
3591
+ "text": "unknown"
3592
+ },
3593
+ "description": "The value to test."
3594
+ }
3595
+ ],
3596
+ "description": "Determines whether a value is a `HtmlForMixin`."
3597
+ },
3598
+ {
3599
+ "kind": "mixin",
3600
+ "description": "Mixin that creates an attached element associated with an interactive control.",
3601
+ "name": "HtmlFor",
3602
+ "members": [
3603
+ {
3604
+ "kind": "field",
3605
+ "name": "[_control]",
3606
+ "type": {
3607
+ "text": "HTMLElement | null"
3608
+ },
3609
+ "privacy": "private",
3610
+ "default": "null"
3611
+ },
3612
+ {
3613
+ "kind": "field",
3614
+ "name": "[_firstUpdated]",
3615
+ "type": {
3616
+ "text": "boolean"
3617
+ },
3618
+ "privacy": "private",
3619
+ "default": "false"
3620
+ },
3621
+ {
3622
+ "kind": "field",
3623
+ "name": "htmlFor",
3624
+ "type": {
3625
+ "text": "string | null"
3626
+ },
3627
+ "default": "null",
3628
+ "description": "The identifier of the interactive control to which this element is attached.",
3629
+ "attribute": "for"
3630
+ },
3631
+ {
3632
+ "kind": "field",
3633
+ "name": "control",
3634
+ "description": "The interactive element to which this element is attached.",
3635
+ "readonly": true
3636
+ },
3637
+ {
3638
+ "kind": "method",
3639
+ "name": "attach",
3640
+ "return": {
3641
+ "type": {
3642
+ "text": "void"
3643
+ }
3644
+ },
3645
+ "parameters": [
3646
+ {
3647
+ "name": "control",
3648
+ "type": {
3649
+ "text": "HTMLElement"
3650
+ },
3651
+ "description": "The element that controls the attachable element."
3652
+ }
3653
+ ],
3654
+ "description": "Attaches the element to an interactive control."
3655
+ },
3656
+ {
3657
+ "kind": "method",
3658
+ "name": "detach",
3659
+ "return": {
3660
+ "type": {
3661
+ "text": "void"
3662
+ }
3663
+ },
3664
+ "description": "Detaches the element from its current interactive control."
3665
+ }
3666
+ ],
3667
+ "attributes": [
3668
+ {
3669
+ "name": "for",
3670
+ "type": {
3671
+ "text": "string | null"
3672
+ },
3673
+ "default": "null",
3674
+ "description": "The identifier of the interactive control to which this element is attached.",
3675
+ "fieldName": "htmlFor"
3676
+ }
3677
+ ],
3678
+ "parameters": [
3679
+ {
3680
+ "name": "base",
3681
+ "type": {
3682
+ "text": "T"
3683
+ },
3684
+ "description": "The base class."
3685
+ }
3686
+ ]
3687
+ }
3688
+ ],
3689
+ "exports": [
3690
+ {
3691
+ "kind": "js",
3692
+ "name": "isHtmlForMixin",
3693
+ "declaration": {
3694
+ "name": "isHtmlForMixin",
3695
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
3696
+ }
3697
+ },
3698
+ {
3699
+ "kind": "js",
3700
+ "name": "HtmlFor",
3701
+ "declaration": {
3702
+ "name": "HtmlFor",
3703
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
3704
+ }
3705
+ }
3706
+ ]
3707
+ },
3708
+ {
3709
+ "kind": "javascript-module",
3710
+ "path": "../core/src/shared/mixins/index.ts",
3711
+ "declarations": [],
3712
+ "exports": [
3713
+ {
3714
+ "kind": "js",
3715
+ "name": "*",
3716
+ "declaration": {
3717
+ "name": "*",
3718
+ "package": "\"./AttachInternals\""
3719
+ }
3720
+ },
3721
+ {
3722
+ "kind": "js",
3723
+ "name": "*",
3724
+ "declaration": {
3725
+ "name": "*",
3726
+ "package": "\"./Checked\""
3727
+ }
3728
+ },
3729
+ {
3730
+ "kind": "js",
3731
+ "name": "*",
3732
+ "declaration": {
3733
+ "name": "*",
3734
+ "package": "\"./CheckedIndeterminate\""
3735
+ }
3736
+ },
3737
+ {
3738
+ "kind": "js",
3739
+ "name": "*",
3740
+ "declaration": {
3741
+ "name": "*",
3742
+ "package": "\"./CheckedOrSelected\""
3743
+ }
3744
+ },
3745
+ {
3746
+ "kind": "js",
3747
+ "name": "*",
3748
+ "declaration": {
3749
+ "name": "*",
3750
+ "package": "\"./ConstraintValidation\""
3751
+ }
3752
+ },
3753
+ {
3754
+ "kind": "js",
3755
+ "name": "*",
3756
+ "declaration": {
3757
+ "name": "*",
3758
+ "package": "\"./Dirty\""
3759
+ }
3760
+ },
3761
+ {
3762
+ "kind": "js",
3763
+ "name": "*",
3764
+ "declaration": {
3765
+ "name": "*",
3766
+ "package": "\"./Disabled\""
3767
+ }
3768
+ },
3769
+ {
3770
+ "kind": "js",
3771
+ "name": "*",
3772
+ "declaration": {
3773
+ "name": "*",
3774
+ "package": "\"./DisabledInteractive\""
3775
+ }
3776
+ },
3777
+ {
3778
+ "kind": "js",
3779
+ "name": "*",
3780
+ "declaration": {
3781
+ "name": "*",
3782
+ "package": "\"./EventAttribute\""
3783
+ }
3784
+ },
3785
+ {
3786
+ "kind": "js",
3787
+ "name": "*",
3788
+ "declaration": {
3789
+ "name": "*",
3790
+ "package": "\"./Focusable\""
3791
+ }
3792
+ },
3793
+ {
3794
+ "kind": "js",
3795
+ "name": "*",
3796
+ "declaration": {
3797
+ "name": "*",
3798
+ "package": "\"./FormAssociated\""
3799
+ }
3800
+ },
3801
+ {
3802
+ "kind": "js",
3803
+ "name": "*",
3804
+ "declaration": {
3805
+ "name": "*",
3806
+ "package": "\"./FormSubmitter\""
3807
+ }
3808
+ },
3809
+ {
3810
+ "kind": "js",
3811
+ "name": "*",
3812
+ "declaration": {
3813
+ "name": "*",
3814
+ "package": "\"./hasKeys\""
3815
+ }
3816
+ },
3817
+ {
3818
+ "kind": "js",
3819
+ "name": "*",
3820
+ "declaration": {
3821
+ "name": "*",
3822
+ "package": "\"./HtmlFor\""
3823
+ }
3824
+ },
3825
+ {
3826
+ "kind": "js",
3827
+ "name": "*",
3828
+ "declaration": {
3829
+ "name": "*",
3830
+ "package": "\"./KeyboardClick\""
3831
+ }
3832
+ },
3833
+ {
3834
+ "kind": "js",
3835
+ "name": "*",
3836
+ "declaration": {
3837
+ "name": "*",
3838
+ "package": "\"./Labelled\""
3839
+ }
3840
+ },
3841
+ {
3842
+ "kind": "js",
3843
+ "name": "*",
3844
+ "declaration": {
3845
+ "name": "*",
3846
+ "package": "\"./LinkButton\""
3847
+ }
3848
+ },
3849
+ {
3850
+ "kind": "js",
3851
+ "name": "*",
3852
+ "declaration": {
3853
+ "name": "*",
3854
+ "package": "\"./ReadOnly\""
3855
+ }
3856
+ },
3857
+ {
3858
+ "kind": "js",
3859
+ "name": "*",
3860
+ "declaration": {
3861
+ "name": "*",
3862
+ "package": "\"./Required\""
3863
+ }
3864
+ },
3865
+ {
3866
+ "kind": "js",
3867
+ "name": "*",
3868
+ "declaration": {
3869
+ "name": "*",
3870
+ "package": "\"./RequiredConstraintValidation\""
3871
+ }
3872
+ },
3873
+ {
3874
+ "kind": "js",
3875
+ "name": "*",
3876
+ "declaration": {
3877
+ "name": "*",
3878
+ "package": "\"./Role\""
3879
+ }
3880
+ },
3881
+ {
3882
+ "kind": "js",
3883
+ "name": "*",
3884
+ "declaration": {
3885
+ "name": "*",
3886
+ "package": "\"./Selected\""
3887
+ }
3888
+ },
3889
+ {
3890
+ "kind": "js",
3891
+ "name": "*",
3892
+ "declaration": {
3893
+ "name": "*",
3894
+ "package": "\"./Touched\""
3895
+ }
3896
+ },
3897
+ {
3898
+ "kind": "js",
3899
+ "name": "*",
3900
+ "declaration": {
3901
+ "name": "*",
3902
+ "package": "\"./Vertical\""
3903
+ }
3904
+ }
3905
+ ]
3906
+ },
3907
+ {
3908
+ "kind": "javascript-module",
3909
+ "path": "../core/src/shared/mixins/KeyboardClick.ts",
3910
+ "declarations": [
3911
+ {
3912
+ "kind": "mixin",
3913
+ "description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
3914
+ "name": "KeyboardClick",
3915
+ "members": [
3916
+ {
3917
+ "kind": "field",
3918
+ "name": "#keyUpHandler",
3919
+ "privacy": "private",
3920
+ "readonly": true
3921
+ },
3922
+ {
3923
+ "kind": "method",
3924
+ "name": "#handleKeyUp",
3925
+ "privacy": "private",
3926
+ "return": {
3927
+ "type": {
3928
+ "text": "void"
3929
+ }
3930
+ },
3931
+ "parameters": [
3932
+ {
3933
+ "name": "e",
3934
+ "type": {
3935
+ "text": "KeyboardEvent"
3936
+ }
3937
+ }
3938
+ ]
3939
+ }
3940
+ ],
3941
+ "events": [
3942
+ {
3943
+ "name": "click",
3944
+ "type": {
3945
+ "text": "MouseEvent"
3946
+ }
3947
+ }
3948
+ ],
3949
+ "parameters": [
3950
+ {
3951
+ "name": "base",
3952
+ "type": {
3953
+ "text": "T"
3954
+ },
3955
+ "description": "The base class."
3956
+ },
3957
+ {
3958
+ "name": "allowEnter",
3959
+ "default": "true",
3960
+ "type": {
3961
+ "text": "boolean"
3962
+ },
3963
+ "description": "Whether the `ENTER` key emits a click event.",
3964
+ "optional": true
3965
+ }
3966
+ ]
3967
+ }
3968
+ ],
3969
+ "exports": [
3970
+ {
3971
+ "kind": "js",
3972
+ "name": "KeyboardClick",
3973
+ "declaration": {
3974
+ "name": "KeyboardClick",
3975
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
3976
+ }
3977
+ }
3978
+ ]
3979
+ },
3980
+ {
3981
+ "kind": "javascript-module",
3982
+ "path": "../core/src/shared/mixins/Labelled.ts",
3983
+ "declarations": [
3984
+ {
3985
+ "kind": "function",
3986
+ "name": "isLabelledMixin",
3987
+ "return": {
3988
+ "type": {
3989
+ "text": ""
3990
+ }
3991
+ },
3992
+ "parameters": [
3993
+ {
3994
+ "name": "value",
3995
+ "type": {
3996
+ "text": "unknown"
3997
+ },
3998
+ "description": "The value to test."
3999
+ }
4000
+ ],
4001
+ "description": "Determines whether a value is a `LabelledMixin`."
4002
+ },
4003
+ {
4004
+ "kind": "mixin",
4005
+ "description": "Mixin to augment an element with support for labelling.",
4006
+ "name": "Labelled",
4007
+ "members": [
4008
+ {
4009
+ "kind": "field",
4010
+ "name": "formAssociated",
4011
+ "type": {
4012
+ "text": "boolean"
4013
+ },
4014
+ "static": true,
4015
+ "readonly": true,
4016
+ "default": "true",
4017
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
4018
+ },
4019
+ {
4020
+ "kind": "field",
4021
+ "name": "[_eventHandler]",
4022
+ "privacy": "private",
4023
+ "readonly": true
4024
+ },
4025
+ {
4026
+ "kind": "field",
4027
+ "name": "labels",
4028
+ "type": {
4029
+ "text": "NodeListOf<HTMLLabelElement>"
4030
+ },
4031
+ "description": "The label elements that the element is associated with.",
4032
+ "readonly": true
4033
+ },
4034
+ {
4035
+ "kind": "method",
4036
+ "name": "[_updateLabels]",
4037
+ "privacy": "private",
4038
+ "return": {
4039
+ "type": {
4040
+ "text": "void"
4041
+ }
4042
+ }
4043
+ }
4044
+ ],
4045
+ "parameters": [
4046
+ {
4047
+ "name": "base",
4048
+ "type": {
4049
+ "text": "T"
4050
+ },
4051
+ "description": "The base class."
4052
+ }
4053
+ ]
4054
+ }
4055
+ ],
4056
+ "exports": [
4057
+ {
4058
+ "kind": "js",
4059
+ "name": "isLabelledMixin",
4060
+ "declaration": {
4061
+ "name": "isLabelledMixin",
4062
+ "module": "../core/src/shared/mixins/Labelled.ts"
4063
+ }
4064
+ },
4065
+ {
4066
+ "kind": "js",
4067
+ "name": "Labelled",
4068
+ "declaration": {
4069
+ "name": "Labelled",
4070
+ "module": "../core/src/shared/mixins/Labelled.ts"
4071
+ }
4072
+ }
4073
+ ]
4074
+ },
4075
+ {
4076
+ "kind": "javascript-module",
4077
+ "path": "../core/src/shared/mixins/LinkButton.ts",
4078
+ "declarations": [
4079
+ {
4080
+ "kind": "variable",
4081
+ "name": "renderPseudoLink",
4082
+ "description": "A symbol through which to access a function used to render a pseudo link."
4083
+ },
4084
+ {
4085
+ "kind": "function",
4086
+ "name": "isLinkButtonMixin",
4087
+ "return": {
4088
+ "type": {
4089
+ "text": "value is LinkButtonMixin"
4090
+ }
4091
+ },
4092
+ "parameters": [
4093
+ {
4094
+ "name": "value",
4095
+ "type": {
4096
+ "text": "unknown"
4097
+ },
4098
+ "description": "The value to test."
4099
+ }
4100
+ ],
4101
+ "description": "Determines whether a value is a `LinkButtonMixin`."
4102
+ },
4103
+ {
4104
+ "kind": "mixin",
4105
+ "description": "Mixin to augment an element with behavior that supports functioning as a link.",
4106
+ "name": "LinkButton",
4107
+ "members": [
4108
+ {
4109
+ "kind": "field",
4110
+ "name": "[_clickHandler]",
4111
+ "privacy": "private"
4112
+ },
4113
+ {
4114
+ "kind": "field",
4115
+ "name": "href",
4116
+ "type": {
4117
+ "text": "string"
4118
+ },
4119
+ "default": "\"\"",
4120
+ "description": "The URL to which the link button points.",
4121
+ "attribute": "href"
4122
+ },
4123
+ {
4124
+ "kind": "field",
4125
+ "name": "target",
4126
+ "type": {
4127
+ "text": "LinkTarget"
4128
+ },
4129
+ "default": "\"\"",
4130
+ "description": "The target of the link button.",
4131
+ "attribute": "target"
4132
+ },
4133
+ {
4134
+ "kind": "field",
4135
+ "name": "rel",
4136
+ "type": {
4137
+ "text": "string"
4138
+ },
4139
+ "default": "\"\"",
4140
+ "description": "The relationship between the `target` of the link button and the document.",
4141
+ "attribute": "rel"
4142
+ },
4143
+ {
4144
+ "kind": "field",
4145
+ "name": "download",
4146
+ "type": {
4147
+ "text": "string | null"
4148
+ },
4149
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
4150
+ "default": "null",
4151
+ "attribute": "download"
4152
+ },
4153
+ {
4154
+ "kind": "method",
4155
+ "name": "#handleLinkPointerDown",
4156
+ "privacy": "private",
4157
+ "return": {
4158
+ "type": {
4159
+ "text": "void"
4160
+ }
4161
+ },
4162
+ "parameters": [
4163
+ {
4164
+ "name": "e",
4165
+ "type": {
4166
+ "text": "PointerEvent"
4167
+ }
4168
+ }
4169
+ ]
4170
+ },
4171
+ {
4172
+ "kind": "method",
4173
+ "name": "#handleLinkFocus",
4174
+ "privacy": "private",
4175
+ "return": {
4176
+ "type": {
4177
+ "text": "void"
4178
+ }
4179
+ },
4180
+ "parameters": [
4181
+ {
4182
+ "name": "e",
4183
+ "type": {
4184
+ "text": "Event"
4185
+ }
4186
+ }
4187
+ ]
4188
+ },
4189
+ {
4190
+ "kind": "method",
4191
+ "name": "#handleLinkBlur",
4192
+ "privacy": "private",
4193
+ "return": {
4194
+ "type": {
4195
+ "text": "void"
4196
+ }
4197
+ },
4198
+ "parameters": [
4199
+ {
4200
+ "name": "e",
4201
+ "type": {
4202
+ "text": "Event"
4203
+ }
4204
+ }
4205
+ ]
4206
+ }
4207
+ ],
4208
+ "events": [
4209
+ {
4210
+ "name": "click",
4211
+ "type": {
4212
+ "text": "MouseEvent"
4213
+ }
4214
+ }
4215
+ ],
4216
+ "attributes": [
4217
+ {
4218
+ "name": "href",
4219
+ "type": {
4220
+ "text": "string"
4221
+ },
4222
+ "default": "\"\"",
4223
+ "description": "The URL to which the link button points.",
4224
+ "fieldName": "href"
4225
+ },
4226
+ {
4227
+ "name": "target",
4228
+ "type": {
4229
+ "text": "LinkTarget"
4230
+ },
4231
+ "default": "\"\"",
4232
+ "description": "The target of the link button.",
4233
+ "fieldName": "target"
4234
+ },
4235
+ {
4236
+ "name": "rel",
4237
+ "type": {
4238
+ "text": "string"
4239
+ },
4240
+ "default": "\"\"",
4241
+ "description": "The relationship between the `target` of the link button and the document.",
4242
+ "fieldName": "rel"
4243
+ },
4244
+ {
4245
+ "name": "download",
4246
+ "type": {
4247
+ "text": "string | null"
4248
+ },
4249
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
4250
+ "default": "null",
4251
+ "fieldName": "download"
4252
+ }
4253
+ ],
4254
+ "parameters": [
4255
+ {
4256
+ "name": "base",
4257
+ "type": {
4258
+ "text": "T"
4259
+ },
4260
+ "description": "The base class."
4261
+ }
4262
+ ]
4263
+ }
4264
+ ],
4265
+ "exports": [
4266
+ {
4267
+ "kind": "js",
4268
+ "name": "renderPseudoLink",
4269
+ "declaration": {
4270
+ "name": "renderPseudoLink",
4271
+ "module": "../core/src/shared/mixins/LinkButton.ts"
4272
+ }
4273
+ },
4274
+ {
4275
+ "kind": "js",
4276
+ "name": "isLinkButtonMixin",
4277
+ "declaration": {
4278
+ "name": "isLinkButtonMixin",
4279
+ "module": "../core/src/shared/mixins/LinkButton.ts"
4280
+ }
4281
+ },
4282
+ {
4283
+ "kind": "js",
4284
+ "name": "LinkButton",
4285
+ "declaration": {
4286
+ "name": "LinkButton",
4287
+ "module": "../core/src/shared/mixins/LinkButton.ts"
4288
+ }
4289
+ }
4290
+ ]
4291
+ },
4292
+ {
4293
+ "kind": "javascript-module",
4294
+ "path": "../core/src/shared/mixins/ReadOnly.ts",
4295
+ "declarations": [
4296
+ {
4297
+ "kind": "function",
4298
+ "name": "isReadOnlyMixin",
4299
+ "return": {
4300
+ "type": {
4301
+ "text": ""
4302
+ }
4303
+ },
4304
+ "parameters": [
4305
+ {
4306
+ "name": "value",
4307
+ "type": {
4308
+ "text": "unknown"
4309
+ },
4310
+ "description": "The value to test."
4311
+ }
4312
+ ],
4313
+ "description": "Determines whether a value is a `ReadOnlyMixin`."
4314
+ },
4315
+ {
4316
+ "kind": "mixin",
4317
+ "description": "Mixin to augment an element with behavior that supports a read-only state.",
4318
+ "name": "ReadOnly",
4319
+ "members": [
4320
+ {
4321
+ "kind": "field",
4322
+ "name": "readOnly",
4323
+ "type": {
4324
+ "text": "boolean"
4325
+ },
4326
+ "default": "false",
4327
+ "description": "A value indicating whether the element is read-only.",
4328
+ "attribute": "readonly"
4329
+ }
4330
+ ],
4331
+ "attributes": [
4332
+ {
4333
+ "name": "readonly",
4334
+ "type": {
4335
+ "text": "boolean"
4336
+ },
4337
+ "default": "false",
4338
+ "description": "A value indicating whether the element is read-only.",
4339
+ "fieldName": "readOnly"
4340
+ }
4341
+ ],
4342
+ "parameters": [
4343
+ {
4344
+ "name": "base",
4345
+ "type": {
4346
+ "text": "T"
4347
+ },
4348
+ "description": "The base class."
4349
+ },
4350
+ {
4351
+ "name": "reflect",
4352
+ "default": "true",
4353
+ "type": {
4354
+ "text": "boolean"
4355
+ },
4356
+ "description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
4357
+ }
4358
+ ]
4359
+ }
4360
+ ],
4361
+ "exports": [
4362
+ {
4363
+ "kind": "js",
4364
+ "name": "isReadOnlyMixin",
4365
+ "declaration": {
4366
+ "name": "isReadOnlyMixin",
4367
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
4368
+ }
4369
+ },
4370
+ {
4371
+ "kind": "js",
4372
+ "name": "ReadOnly",
4373
+ "declaration": {
4374
+ "name": "ReadOnly",
4375
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
4376
+ }
4377
+ }
4378
+ ]
4379
+ },
4380
+ {
4381
+ "kind": "javascript-module",
4382
+ "path": "../core/src/shared/mixins/Required.ts",
4383
+ "declarations": [
4384
+ {
4385
+ "kind": "function",
4386
+ "name": "isRequiredMixin",
4387
+ "return": {
4388
+ "type": {
4389
+ "text": ""
4390
+ }
4391
+ },
4392
+ "parameters": [
4393
+ {
4394
+ "name": "value",
4395
+ "type": {
4396
+ "text": "unknown"
4397
+ },
4398
+ "description": "The value to test."
4399
+ }
4400
+ ],
4401
+ "description": "Determines whether a value is a `RequiredMixin`."
4402
+ },
4403
+ {
4404
+ "kind": "mixin",
4405
+ "description": "Mixin to augment an element with behavior that supports a required state.",
4406
+ "name": "Required",
4407
+ "members": [
4408
+ {
4409
+ "kind": "field",
4410
+ "name": "required",
4411
+ "type": {
4412
+ "text": "boolean"
4413
+ },
4414
+ "default": "false",
4415
+ "description": "Whether a value is required for the element.",
4416
+ "attribute": "required",
4417
+ "reflects": true
4418
+ },
4419
+ {
4420
+ "kind": "field",
4421
+ "name": "optional",
4422
+ "description": "Whether a value is not required for the element.",
4423
+ "readonly": true
4424
+ }
4425
+ ],
4426
+ "attributes": [
4427
+ {
4428
+ "name": "required",
4429
+ "type": {
4430
+ "text": "boolean"
4431
+ },
4432
+ "default": "false",
4433
+ "description": "Whether a value is required for the element.",
4434
+ "fieldName": "required"
4435
+ }
4436
+ ],
4437
+ "parameters": [
4438
+ {
4439
+ "name": "base",
4440
+ "type": {
4441
+ "text": "T"
4442
+ },
4443
+ "description": "The base class."
4444
+ }
4445
+ ]
4446
+ }
4447
+ ],
4448
+ "exports": [
4449
+ {
4450
+ "kind": "js",
4451
+ "name": "isRequiredMixin",
4452
+ "declaration": {
4453
+ "name": "isRequiredMixin",
4454
+ "module": "../core/src/shared/mixins/Required.ts"
4455
+ }
4456
+ },
4457
+ {
4458
+ "kind": "js",
4459
+ "name": "Required",
4460
+ "declaration": {
4461
+ "name": "Required",
4462
+ "module": "../core/src/shared/mixins/Required.ts"
4463
+ }
4464
+ }
4465
+ ]
4466
+ },
4467
+ {
4468
+ "kind": "javascript-module",
4469
+ "path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
4470
+ "declarations": [
4471
+ {
4472
+ "kind": "function",
4473
+ "name": "isRequiredConstraintValidationMixin",
4474
+ "return": {
4475
+ "type": {
4476
+ "text": ""
4477
+ }
4478
+ },
4479
+ "parameters": [
4480
+ {
4481
+ "name": "value",
4482
+ "type": {
4483
+ "text": "unknown"
4484
+ },
4485
+ "description": "The value to test."
4486
+ }
4487
+ ],
4488
+ "description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
4489
+ },
4490
+ {
4491
+ "kind": "mixin",
4492
+ "description": "Mixin to augment an element with behavior that supports a required state.",
4493
+ "name": "RequiredConstraintValidation",
4494
+ "parameters": [
4495
+ {
4496
+ "name": "base",
4497
+ "type": {
4498
+ "text": "T"
4499
+ },
4500
+ "description": "The base class."
4501
+ }
4502
+ ]
4503
+ }
4504
+ ],
4505
+ "exports": [
4506
+ {
4507
+ "kind": "js",
4508
+ "name": "isRequiredConstraintValidationMixin",
4509
+ "declaration": {
4510
+ "name": "isRequiredConstraintValidationMixin",
4511
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
4512
+ }
4513
+ },
4514
+ {
4515
+ "kind": "js",
4516
+ "name": "RequiredConstraintValidation",
4517
+ "declaration": {
4518
+ "name": "RequiredConstraintValidation",
4519
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
4520
+ }
4521
+ }
4522
+ ]
4523
+ },
4524
+ {
4525
+ "kind": "javascript-module",
4526
+ "path": "../core/src/shared/mixins/Role.ts",
4527
+ "declarations": [
4528
+ {
4529
+ "kind": "mixin",
4530
+ "description": "Mixin to augment an element with an ARIA role.",
4531
+ "name": "Role",
4532
+ "parameters": [
4533
+ {
4534
+ "name": "base",
4535
+ "type": {
4536
+ "text": "T"
4537
+ },
4538
+ "description": "The base class."
4539
+ },
4540
+ {
4541
+ "name": "role",
4542
+ "type": {
4543
+ "text": "ARIARole"
4544
+ },
4545
+ "description": "The ARIA role."
4546
+ }
4547
+ ]
4548
+ }
4549
+ ],
4550
+ "exports": [
4551
+ {
4552
+ "kind": "js",
4553
+ "name": "Role",
4554
+ "declaration": {
4555
+ "name": "Role",
4556
+ "module": "../core/src/shared/mixins/Role.ts"
4557
+ }
4558
+ }
4559
+ ]
4560
+ },
4561
+ {
4562
+ "kind": "javascript-module",
4563
+ "path": "../core/src/shared/mixins/Selected.ts",
4564
+ "declarations": [
4565
+ {
4566
+ "kind": "function",
4567
+ "name": "isSelectedMixin",
4568
+ "return": {
4569
+ "type": {
4570
+ "text": ""
4571
+ }
4572
+ },
4573
+ "parameters": [
4574
+ {
4575
+ "name": "value",
4576
+ "type": {
4577
+ "text": "unknown"
4578
+ },
4579
+ "description": "The value to test."
4580
+ }
4581
+ ],
4582
+ "description": "Determines whether a value is a `SelectedMixin`."
4583
+ },
4584
+ {
4585
+ "kind": "mixin",
4586
+ "description": "Mixin to augment an element with behavior that supports a selected state.",
4587
+ "name": "Selected",
4588
+ "members": [
4589
+ {
4590
+ "kind": "field",
4591
+ "name": "selected",
4592
+ "type": {
4593
+ "text": "boolean"
4594
+ },
4595
+ "default": "false",
4596
+ "description": "Whether the element is selected.",
4597
+ "attribute": "selected",
4598
+ "reflects": true
4599
+ }
4600
+ ],
4601
+ "attributes": [
4602
+ {
4603
+ "name": "selected",
4604
+ "type": {
4605
+ "text": "boolean"
4606
+ },
4607
+ "default": "false",
4608
+ "description": "Whether the element is selected.",
4609
+ "fieldName": "selected"
4610
+ }
4611
+ ],
4612
+ "parameters": [
4613
+ {
4614
+ "name": "base",
4615
+ "type": {
4616
+ "text": "T"
4617
+ },
4618
+ "description": "The base class."
4619
+ }
4620
+ ]
4621
+ }
4622
+ ],
4623
+ "exports": [
4624
+ {
4625
+ "kind": "js",
4626
+ "name": "isSelectedMixin",
4627
+ "declaration": {
4628
+ "name": "isSelectedMixin",
4629
+ "module": "../core/src/shared/mixins/Selected.ts"
4630
+ }
4631
+ },
4632
+ {
4633
+ "kind": "js",
4634
+ "name": "Selected",
4635
+ "declaration": {
4636
+ "name": "Selected",
4637
+ "module": "../core/src/shared/mixins/Selected.ts"
4638
+ }
4639
+ }
4640
+ ]
4641
+ },
4642
+ {
4643
+ "kind": "javascript-module",
4644
+ "path": "../core/src/shared/mixins/Touched.ts",
4645
+ "declarations": [
4646
+ {
4647
+ "kind": "function",
4648
+ "name": "isTouchedMixin",
4649
+ "return": {
4650
+ "type": {
4651
+ "text": ""
4652
+ }
4653
+ },
4654
+ "parameters": [
4655
+ {
4656
+ "name": "value",
4657
+ "type": {
4658
+ "text": "unknown"
4659
+ },
4660
+ "description": "The value to test."
4661
+ }
4662
+ ],
4663
+ "description": "Determines whether a value is a `TouchedMixin`."
4664
+ },
4665
+ {
4666
+ "kind": "mixin",
4667
+ "description": "Mixin to augment an element with functionality used to mark it as touched.",
4668
+ "name": "Touched",
4669
+ "members": [
4670
+ {
4671
+ "kind": "field",
4672
+ "name": "[_eventHandler]",
4673
+ "privacy": "private"
4674
+ },
4675
+ {
4676
+ "kind": "field",
4677
+ "name": "touched",
4678
+ "type": {
4679
+ "text": "boolean"
4680
+ },
4681
+ "description": "Whether the user has interacted when the element.",
4682
+ "readonly": true
4683
+ },
4684
+ {
4685
+ "kind": "field",
4686
+ "name": "untouched",
4687
+ "type": {
4688
+ "text": "boolean"
4689
+ },
4690
+ "description": "Whether the user has not interacted when the element.",
4691
+ "readonly": true
4692
+ },
4693
+ {
4694
+ "kind": "method",
4695
+ "name": "markAsTouched",
4696
+ "return": {
4697
+ "type": {
4698
+ "text": "void"
4699
+ }
4700
+ },
4701
+ "description": "Marks the element as touched."
4702
+ },
4703
+ {
4704
+ "kind": "method",
4705
+ "name": "markAsUntouched",
4706
+ "return": {
4707
+ "type": {
4708
+ "text": "void"
4709
+ }
4710
+ },
4711
+ "description": "Marks the element as untouched."
4712
+ }
4713
+ ],
4714
+ "parameters": [
4715
+ {
4716
+ "name": "base",
4717
+ "type": {
4718
+ "text": "T"
4719
+ },
4720
+ "description": "The base class."
4721
+ }
4722
+ ]
4723
+ }
4724
+ ],
4725
+ "exports": [
4726
+ {
4727
+ "kind": "js",
4728
+ "name": "isTouchedMixin",
4729
+ "declaration": {
4730
+ "name": "isTouchedMixin",
4731
+ "module": "../core/src/shared/mixins/Touched.ts"
4732
+ }
4733
+ },
4734
+ {
4735
+ "kind": "js",
4736
+ "name": "Touched",
4737
+ "declaration": {
4738
+ "name": "Touched",
4739
+ "module": "../core/src/shared/mixins/Touched.ts"
4740
+ }
4741
+ }
4742
+ ]
4743
+ },
4744
+ {
4745
+ "kind": "javascript-module",
4746
+ "path": "../core/src/shared/mixins/Vertical.ts",
4747
+ "declarations": [
4748
+ {
4749
+ "kind": "function",
4750
+ "name": "isVerticalMixin",
4751
+ "return": {
4752
+ "type": {
4753
+ "text": ""
4754
+ }
4755
+ },
4756
+ "parameters": [
4757
+ {
4758
+ "name": "value",
4759
+ "type": {
4760
+ "text": "unknown"
4761
+ },
4762
+ "description": "The value to test."
4763
+ }
4764
+ ],
4765
+ "description": "Determines whether a value is a `VerticalMixin`."
4766
+ },
4767
+ {
4768
+ "kind": "mixin",
4769
+ "description": "Mixin to augment an element with behavior that supports a vertical orientation.",
4770
+ "name": "Vertical",
4771
+ "members": [
4772
+ {
4773
+ "kind": "field",
4774
+ "name": "vertical",
4775
+ "type": {
4776
+ "text": "boolean"
4777
+ },
4778
+ "default": "false",
4779
+ "description": "Whether the element is oriented vertically.",
4780
+ "attribute": "vertical",
4781
+ "reflects": true
4782
+ }
4783
+ ],
4784
+ "attributes": [
4785
+ {
4786
+ "name": "vertical",
4787
+ "type": {
4788
+ "text": "boolean"
4789
+ },
4790
+ "default": "false",
4791
+ "description": "Whether the element is oriented vertically.",
4792
+ "fieldName": "vertical"
4793
+ }
4794
+ ],
4795
+ "parameters": [
4796
+ {
4797
+ "name": "base",
4798
+ "type": {
4799
+ "text": "T"
4800
+ },
4801
+ "description": "The base class."
4802
+ }
4803
+ ]
4804
+ }
4805
+ ],
4806
+ "exports": [
4807
+ {
4808
+ "kind": "js",
4809
+ "name": "isVerticalMixin",
4810
+ "declaration": {
4811
+ "name": "isVerticalMixin",
4812
+ "module": "../core/src/shared/mixins/Vertical.ts"
4813
+ }
4814
+ },
4815
+ {
4816
+ "kind": "js",
4817
+ "name": "Vertical",
4818
+ "declaration": {
4819
+ "name": "Vertical",
4820
+ "module": "../core/src/shared/mixins/Vertical.ts"
4821
+ }
4822
+ }
4823
+ ]
1588
4824
  }
1589
4825
  ]
1590
4826
  }