@m3e/nav-menu 1.0.0-rc.1 → 1.0.0-rc.3

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