@genesislcap/foundation-ui 15.9.0 → 15.10.0-FUI-2597.1

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.
@@ -956,897 +956,6 @@
956
956
  }
957
957
  ]
958
958
  },
959
- {
960
- "kind": "javascript-module",
961
- "path": "src/_common/affix-mixin.ts",
962
- "declarations": [
963
- {
964
- "kind": "mixin",
965
- "description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
966
- "name": "AffixMixin",
967
- "members": [
968
- {
969
- "kind": "field",
970
- "name": "prefix",
971
- "type": {
972
- "text": "string"
973
- },
974
- "description": "Optional non-editable label shown on the left inside the field, before the input."
975
- },
976
- {
977
- "kind": "field",
978
- "name": "suffix",
979
- "type": {
980
- "text": "string"
981
- },
982
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
983
- },
984
- {
985
- "kind": "field",
986
- "name": "hideAffixFromScreenReader",
987
- "type": {
988
- "text": "boolean"
989
- },
990
- "default": "false",
991
- "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
992
- }
993
- ],
994
- "parameters": [
995
- {
996
- "name": "Base",
997
- "type": {
998
- "text": "TBase"
999
- }
1000
- }
1001
- ]
1002
- }
1003
- ],
1004
- "exports": [
1005
- {
1006
- "kind": "js",
1007
- "name": "AffixMixin",
1008
- "declaration": {
1009
- "name": "AffixMixin",
1010
- "module": "src/_common/affix-mixin.ts"
1011
- }
1012
- }
1013
- ]
1014
- },
1015
- {
1016
- "kind": "javascript-module",
1017
- "path": "src/_common/base-file-component.ts",
1018
- "declarations": [
1019
- {
1020
- "kind": "class",
1021
- "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1022
- "name": "BaseFileComponent",
1023
- "members": [
1024
- {
1025
- "kind": "field",
1026
- "name": "fileInput",
1027
- "type": {
1028
- "text": "HTMLInputElement"
1029
- },
1030
- "privacy": "public"
1031
- },
1032
- {
1033
- "kind": "field",
1034
- "name": "selectedFile",
1035
- "type": {
1036
- "text": "File | null"
1037
- },
1038
- "privacy": "protected",
1039
- "default": "null"
1040
- },
1041
- {
1042
- "kind": "field",
1043
- "name": "label",
1044
- "type": {
1045
- "text": "string"
1046
- }
1047
- },
1048
- {
1049
- "kind": "field",
1050
- "name": "accept",
1051
- "type": {
1052
- "text": "string"
1053
- },
1054
- "default": "''"
1055
- },
1056
- {
1057
- "kind": "field",
1058
- "name": "fileSizeLimitBytes",
1059
- "default": "10_485_760",
1060
- "type": {
1061
- "text": "number"
1062
- }
1063
- },
1064
- {
1065
- "kind": "field",
1066
- "name": "fileName",
1067
- "type": {
1068
- "text": "string"
1069
- },
1070
- "default": "''"
1071
- },
1072
- {
1073
- "kind": "field",
1074
- "name": "isProcessing",
1075
- "type": {
1076
- "text": "boolean"
1077
- },
1078
- "default": "false"
1079
- },
1080
- {
1081
- "kind": "method",
1082
- "name": "handleClick",
1083
- "privacy": "public",
1084
- "description": "Opens the file picker dialog\nClears any previous file selection before opening"
1085
- },
1086
- {
1087
- "kind": "method",
1088
- "name": "onInputChange",
1089
- "privacy": "public",
1090
- "parameters": [
1091
- {
1092
- "name": "e",
1093
- "type": {
1094
- "text": "Event"
1095
- },
1096
- "description": "The change event from the file input"
1097
- }
1098
- ],
1099
- "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
1100
- },
1101
- {
1102
- "kind": "method",
1103
- "name": "clearSelection",
1104
- "privacy": "public",
1105
- "description": "Clears all file selection and processing state\nResets the component to its initial state"
1106
- },
1107
- {
1108
- "kind": "method",
1109
- "name": "getSelectedFile",
1110
- "privacy": "public",
1111
- "description": "Gets the currently selected file object",
1112
- "return": {
1113
- "type": {
1114
- "text": ""
1115
- }
1116
- }
1117
- },
1118
- {
1119
- "kind": "method",
1120
- "name": "showError",
1121
- "privacy": "protected",
1122
- "parameters": [
1123
- {
1124
- "name": "title",
1125
- "type": {
1126
- "text": "string"
1127
- },
1128
- "description": "The error title"
1129
- },
1130
- {
1131
- "name": "message",
1132
- "type": {
1133
- "text": "string"
1134
- },
1135
- "description": "The error message"
1136
- }
1137
- ],
1138
- "description": "Shows an error notification using the unified error handling system"
1139
- },
1140
- {
1141
- "kind": "method",
1142
- "name": "onFileSelected",
1143
- "privacy": "protected",
1144
- "return": {
1145
- "type": {
1146
- "text": "void"
1147
- }
1148
- },
1149
- "parameters": [
1150
- {
1151
- "name": "files",
1152
- "type": {
1153
- "text": "File[]"
1154
- },
1155
- "description": "The selected file"
1156
- }
1157
- ],
1158
- "description": "Abstract method called when a file is selected"
1159
- },
1160
- {
1161
- "kind": "method",
1162
- "name": "onFileCleared",
1163
- "privacy": "protected",
1164
- "return": {
1165
- "type": {
1166
- "text": "void"
1167
- }
1168
- },
1169
- "description": "Abstract method called when file selection is cleared"
1170
- },
1171
- {
1172
- "kind": "field",
1173
- "name": "_presentation",
1174
- "type": {
1175
- "text": "ComponentPresentation | null | undefined"
1176
- },
1177
- "privacy": "private",
1178
- "default": "void 0",
1179
- "inheritedFrom": {
1180
- "name": "FoundationElement",
1181
- "module": "src/foundation-element/foundation-element.ts"
1182
- }
1183
- },
1184
- {
1185
- "kind": "field",
1186
- "name": "$presentation",
1187
- "type": {
1188
- "text": "ComponentPresentation | null"
1189
- },
1190
- "privacy": "public",
1191
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1192
- "inheritedFrom": {
1193
- "name": "FoundationElement",
1194
- "module": "src/foundation-element/foundation-element.ts"
1195
- }
1196
- },
1197
- {
1198
- "kind": "field",
1199
- "name": "template",
1200
- "type": {
1201
- "text": "ElementViewTemplate | void | null"
1202
- },
1203
- "privacy": "public",
1204
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1205
- "inheritedFrom": {
1206
- "name": "FoundationElement",
1207
- "module": "src/foundation-element/foundation-element.ts"
1208
- }
1209
- },
1210
- {
1211
- "kind": "method",
1212
- "name": "templateChanged",
1213
- "privacy": "protected",
1214
- "return": {
1215
- "type": {
1216
- "text": "void"
1217
- }
1218
- },
1219
- "inheritedFrom": {
1220
- "name": "FoundationElement",
1221
- "module": "src/foundation-element/foundation-element.ts"
1222
- }
1223
- },
1224
- {
1225
- "kind": "field",
1226
- "name": "styles",
1227
- "type": {
1228
- "text": "ElementStyles | void | null"
1229
- },
1230
- "privacy": "public",
1231
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1232
- "inheritedFrom": {
1233
- "name": "FoundationElement",
1234
- "module": "src/foundation-element/foundation-element.ts"
1235
- }
1236
- },
1237
- {
1238
- "kind": "method",
1239
- "name": "stylesChanged",
1240
- "privacy": "protected",
1241
- "return": {
1242
- "type": {
1243
- "text": "void"
1244
- }
1245
- },
1246
- "inheritedFrom": {
1247
- "name": "FoundationElement",
1248
- "module": "src/foundation-element/foundation-element.ts"
1249
- }
1250
- },
1251
- {
1252
- "kind": "method",
1253
- "name": "compose",
1254
- "privacy": "public",
1255
- "static": true,
1256
- "return": {
1257
- "type": {
1258
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1259
- }
1260
- },
1261
- "parameters": [
1262
- {
1263
- "name": "this",
1264
- "type": {
1265
- "text": "K"
1266
- }
1267
- },
1268
- {
1269
- "name": "elementDefinition",
1270
- "type": {
1271
- "text": "T"
1272
- },
1273
- "description": "The definition of the element to create the registry\nfunction for."
1274
- }
1275
- ],
1276
- "description": "Defines an element registry function with a set of element definition defaults.",
1277
- "inheritedFrom": {
1278
- "name": "FoundationElement",
1279
- "module": "src/foundation-element/foundation-element.ts"
1280
- }
1281
- }
1282
- ],
1283
- "events": [
1284
- {
1285
- "description": "Fired when file size validation fails. detail: `Error`",
1286
- "name": "error"
1287
- },
1288
- {
1289
- "description": "Fired when selection is cleared",
1290
- "name": "clear"
1291
- }
1292
- ],
1293
- "attributes": [
1294
- {
1295
- "name": "label",
1296
- "type": {
1297
- "text": "string"
1298
- },
1299
- "fieldName": "label"
1300
- },
1301
- {
1302
- "name": "accept",
1303
- "type": {
1304
- "text": "string"
1305
- },
1306
- "default": "''",
1307
- "fieldName": "accept"
1308
- },
1309
- {
1310
- "name": "file-size-limit-bytes",
1311
- "default": "DEFAULT_FILE_SIZE_LIMIT",
1312
- "resolveInitializer": {
1313
- "module": "src/_common/base-file-component.ts"
1314
- },
1315
- "fieldName": "fileSizeLimitBytes"
1316
- }
1317
- ],
1318
- "superclass": {
1319
- "name": "FoundationElement",
1320
- "package": "@microsoft/fast-foundation"
1321
- }
1322
- }
1323
- ],
1324
- "exports": [
1325
- {
1326
- "kind": "js",
1327
- "name": "BaseFileComponent",
1328
- "declaration": {
1329
- "name": "BaseFileComponent",
1330
- "module": "src/_common/base-file-component.ts"
1331
- }
1332
- }
1333
- ]
1334
- },
1335
- {
1336
- "kind": "javascript-module",
1337
- "path": "src/_common/field-styles.ts",
1338
- "declarations": [
1339
- {
1340
- "kind": "variable",
1341
- "name": "sharedFieldStyles",
1342
- "default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
1343
- }
1344
- ],
1345
- "exports": [
1346
- {
1347
- "kind": "js",
1348
- "name": "sharedFieldStyles",
1349
- "declaration": {
1350
- "name": "sharedFieldStyles",
1351
- "module": "src/_common/field-styles.ts"
1352
- }
1353
- }
1354
- ]
1355
- },
1356
- {
1357
- "kind": "javascript-module",
1358
- "path": "src/_common/icons.ts",
1359
- "declarations": [
1360
- {
1361
- "kind": "function",
1362
- "name": "closeIcon",
1363
- "parameters": [
1364
- {
1365
- "name": "slot",
1366
- "default": "'start'"
1367
- },
1368
- {
1369
- "name": "fill",
1370
- "default": "'#879ba6'"
1371
- }
1372
- ]
1373
- }
1374
- ],
1375
- "exports": [
1376
- {
1377
- "kind": "js",
1378
- "name": "closeIcon",
1379
- "declaration": {
1380
- "name": "closeIcon",
1381
- "module": "src/_common/icons.ts"
1382
- }
1383
- }
1384
- ]
1385
- },
1386
- {
1387
- "kind": "javascript-module",
1388
- "path": "src/_common/index.ts",
1389
- "declarations": [],
1390
- "exports": [
1391
- {
1392
- "kind": "js",
1393
- "name": "*",
1394
- "declaration": {
1395
- "name": "*",
1396
- "package": "./affix-mixin"
1397
- }
1398
- },
1399
- {
1400
- "kind": "js",
1401
- "name": "*",
1402
- "declaration": {
1403
- "name": "*",
1404
- "package": "./base-file-component"
1405
- }
1406
- },
1407
- {
1408
- "kind": "js",
1409
- "name": "*",
1410
- "declaration": {
1411
- "name": "*",
1412
- "package": "./field-styles"
1413
- }
1414
- },
1415
- {
1416
- "kind": "js",
1417
- "name": "*",
1418
- "declaration": {
1419
- "name": "*",
1420
- "package": "./icons"
1421
- }
1422
- }
1423
- ]
1424
- },
1425
- {
1426
- "kind": "javascript-module",
1427
- "path": "src/_config/index.ts",
1428
- "declarations": [],
1429
- "exports": [
1430
- {
1431
- "kind": "js",
1432
- "name": "*",
1433
- "declaration": {
1434
- "name": "*",
1435
- "package": "./styles"
1436
- }
1437
- },
1438
- {
1439
- "kind": "js",
1440
- "name": "*",
1441
- "declaration": {
1442
- "name": "*",
1443
- "package": "./tokens"
1444
- }
1445
- },
1446
- {
1447
- "kind": "js",
1448
- "name": "*",
1449
- "declaration": {
1450
- "name": "*",
1451
- "package": "./values"
1452
- }
1453
- }
1454
- ]
1455
- },
1456
- {
1457
- "kind": "javascript-module",
1458
- "path": "src/accordion-item/accordion-item.styles.ts",
1459
- "declarations": [
1460
- {
1461
- "kind": "function",
1462
- "name": "foundationAccordionItemStyles",
1463
- "return": {
1464
- "type": {
1465
- "text": "ElementStyles"
1466
- }
1467
- },
1468
- "parameters": [
1469
- {
1470
- "name": "context",
1471
- "type": {
1472
- "text": "ElementDefinitionContext"
1473
- }
1474
- },
1475
- {
1476
- "name": "definition",
1477
- "type": {
1478
- "text": "FoundationElementDefinition"
1479
- }
1480
- }
1481
- ]
1482
- }
1483
- ],
1484
- "exports": [
1485
- {
1486
- "kind": "js",
1487
- "name": "foundationAccordionItemStyles",
1488
- "declaration": {
1489
- "name": "foundationAccordionItemStyles",
1490
- "module": "src/accordion-item/accordion-item.styles.ts"
1491
- }
1492
- }
1493
- ]
1494
- },
1495
- {
1496
- "kind": "javascript-module",
1497
- "path": "src/accordion-item/accordion-item.template.ts",
1498
- "declarations": [
1499
- {
1500
- "kind": "function",
1501
- "name": "foundationAccordionItemTemplate",
1502
- "return": {
1503
- "type": {
1504
- "text": "ViewTemplate<AccordionItem>"
1505
- }
1506
- },
1507
- "parameters": [
1508
- {
1509
- "name": "context",
1510
- "type": {
1511
- "text": "ElementDefinitionContext"
1512
- }
1513
- },
1514
- {
1515
- "name": "definition",
1516
- "type": {
1517
- "text": "FoundationElementDefinition"
1518
- }
1519
- }
1520
- ]
1521
- }
1522
- ],
1523
- "exports": [
1524
- {
1525
- "kind": "js",
1526
- "name": "foundationAccordionItemTemplate",
1527
- "declaration": {
1528
- "name": "foundationAccordionItemTemplate",
1529
- "module": "src/accordion-item/accordion-item.template.ts"
1530
- }
1531
- }
1532
- ]
1533
- },
1534
- {
1535
- "kind": "javascript-module",
1536
- "path": "src/accordion-item/accordion-item.ts",
1537
- "declarations": [
1538
- {
1539
- "kind": "class",
1540
- "description": "",
1541
- "name": "AccordionItem",
1542
- "superclass": {
1543
- "name": "FASTAccordionItem",
1544
- "package": "@microsoft/fast-components"
1545
- },
1546
- "tagName": "%%prefix%%-accordion-item",
1547
- "customElement": true,
1548
- "attributes": [
1549
- {
1550
- "name": "heading-level",
1551
- "type": {
1552
- "text": "1 | 2 | 3 | 4 | 5 | 6"
1553
- },
1554
- "default": "2",
1555
- "description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
1556
- "fieldName": "headinglevel",
1557
- "inheritedFrom": {
1558
- "name": "AccordionItem",
1559
- "module": "src/accordion-item/accordion-item.ts"
1560
- }
1561
- },
1562
- {
1563
- "type": {
1564
- "text": "boolean"
1565
- },
1566
- "default": "false",
1567
- "description": "Expands or collapses the item.",
1568
- "fieldName": "expanded",
1569
- "inheritedFrom": {
1570
- "name": "AccordionItem",
1571
- "module": "src/accordion-item/accordion-item.ts"
1572
- }
1573
- },
1574
- {
1575
- "name": "id",
1576
- "type": {
1577
- "text": "string"
1578
- },
1579
- "description": "The item ID",
1580
- "fieldName": "id",
1581
- "inheritedFrom": {
1582
- "name": "AccordionItem",
1583
- "module": "src/accordion-item/accordion-item.ts"
1584
- }
1585
- }
1586
- ],
1587
- "members": [
1588
- {
1589
- "kind": "field",
1590
- "name": "headinglevel",
1591
- "type": {
1592
- "text": "1 | 2 | 3 | 4 | 5 | 6"
1593
- },
1594
- "privacy": "public",
1595
- "default": "2",
1596
- "description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
1597
- "inheritedFrom": {
1598
- "name": "AccordionItem",
1599
- "module": "src/accordion-item/accordion-item.ts"
1600
- }
1601
- },
1602
- {
1603
- "kind": "field",
1604
- "name": "expanded",
1605
- "type": {
1606
- "text": "boolean"
1607
- },
1608
- "privacy": "public",
1609
- "default": "false",
1610
- "description": "Expands or collapses the item.",
1611
- "inheritedFrom": {
1612
- "name": "AccordionItem",
1613
- "module": "src/accordion-item/accordion-item.ts"
1614
- }
1615
- },
1616
- {
1617
- "kind": "field",
1618
- "name": "id",
1619
- "type": {
1620
- "text": "string"
1621
- },
1622
- "privacy": "public",
1623
- "description": "The item ID",
1624
- "inheritedFrom": {
1625
- "name": "AccordionItem",
1626
- "module": "src/accordion-item/accordion-item.ts"
1627
- }
1628
- },
1629
- {
1630
- "kind": "field",
1631
- "name": "change",
1632
- "privacy": "private",
1633
- "inheritedFrom": {
1634
- "name": "AccordionItem",
1635
- "module": "src/accordion-item/accordion-item.ts"
1636
- }
1637
- },
1638
- {
1639
- "kind": "field",
1640
- "name": "_presentation",
1641
- "type": {
1642
- "text": "ComponentPresentation | null | undefined"
1643
- },
1644
- "privacy": "private",
1645
- "default": "void 0",
1646
- "inheritedFrom": {
1647
- "name": "FoundationElement",
1648
- "module": "src/foundation-element/foundation-element.ts"
1649
- }
1650
- },
1651
- {
1652
- "kind": "field",
1653
- "name": "$presentation",
1654
- "type": {
1655
- "text": "ComponentPresentation | null"
1656
- },
1657
- "privacy": "public",
1658
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1659
- "inheritedFrom": {
1660
- "name": "FoundationElement",
1661
- "module": "src/foundation-element/foundation-element.ts"
1662
- }
1663
- },
1664
- {
1665
- "kind": "field",
1666
- "name": "template",
1667
- "type": {
1668
- "text": "ElementViewTemplate | void | null"
1669
- },
1670
- "privacy": "public",
1671
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1672
- "inheritedFrom": {
1673
- "name": "FoundationElement",
1674
- "module": "src/foundation-element/foundation-element.ts"
1675
- }
1676
- },
1677
- {
1678
- "kind": "method",
1679
- "name": "templateChanged",
1680
- "privacy": "protected",
1681
- "return": {
1682
- "type": {
1683
- "text": "void"
1684
- }
1685
- },
1686
- "inheritedFrom": {
1687
- "name": "FoundationElement",
1688
- "module": "src/foundation-element/foundation-element.ts"
1689
- }
1690
- },
1691
- {
1692
- "kind": "field",
1693
- "name": "styles",
1694
- "type": {
1695
- "text": "ElementStyles | void | null"
1696
- },
1697
- "privacy": "public",
1698
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1699
- "inheritedFrom": {
1700
- "name": "FoundationElement",
1701
- "module": "src/foundation-element/foundation-element.ts"
1702
- }
1703
- },
1704
- {
1705
- "kind": "method",
1706
- "name": "stylesChanged",
1707
- "privacy": "protected",
1708
- "return": {
1709
- "type": {
1710
- "text": "void"
1711
- }
1712
- },
1713
- "inheritedFrom": {
1714
- "name": "FoundationElement",
1715
- "module": "src/foundation-element/foundation-element.ts"
1716
- }
1717
- },
1718
- {
1719
- "kind": "method",
1720
- "name": "compose",
1721
- "privacy": "public",
1722
- "static": true,
1723
- "return": {
1724
- "type": {
1725
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1726
- }
1727
- },
1728
- "parameters": [
1729
- {
1730
- "name": "this",
1731
- "type": {
1732
- "text": "K"
1733
- }
1734
- },
1735
- {
1736
- "name": "elementDefinition",
1737
- "type": {
1738
- "text": "T"
1739
- },
1740
- "description": "The definition of the element to create the registry\nfunction for."
1741
- }
1742
- ],
1743
- "description": "Defines an element registry function with a set of element definition defaults.",
1744
- "inheritedFrom": {
1745
- "name": "FoundationElement",
1746
- "module": "src/foundation-element/foundation-element.ts"
1747
- }
1748
- }
1749
- ],
1750
- "events": [
1751
- {
1752
- "description": "Fires a custom 'change' event when the button is invoked",
1753
- "name": "change",
1754
- "inheritedFrom": {
1755
- "name": "AccordionItem",
1756
- "module": "src/accordion-item/accordion-item.ts"
1757
- }
1758
- }
1759
- ]
1760
- },
1761
- {
1762
- "kind": "variable",
1763
- "name": "foundationAccordionItemShadowOptions",
1764
- "type": {
1765
- "text": "ShadowRootInit"
1766
- },
1767
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1768
- },
1769
- {
1770
- "kind": "variable",
1771
- "name": "defaultAccordionItemConfig",
1772
- "type": {
1773
- "text": "object"
1774
- },
1775
- "default": "{\n collapsedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"collapsed-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M9 5.44446V12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n expandedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"expanded-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"minus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n}"
1776
- },
1777
- {
1778
- "kind": "variable",
1779
- "name": "foundationAccordionItem",
1780
- "description": "The Foundation Accordion Item",
1781
- "privacy": "public"
1782
- }
1783
- ],
1784
- "exports": [
1785
- {
1786
- "kind": "js",
1787
- "name": "AccordionItem",
1788
- "declaration": {
1789
- "name": "AccordionItem",
1790
- "module": "src/accordion-item/accordion-item.ts"
1791
- }
1792
- },
1793
- {
1794
- "kind": "js",
1795
- "name": "foundationAccordionItemShadowOptions",
1796
- "declaration": {
1797
- "name": "foundationAccordionItemShadowOptions",
1798
- "module": "src/accordion-item/accordion-item.ts"
1799
- }
1800
- },
1801
- {
1802
- "kind": "js",
1803
- "name": "defaultAccordionItemConfig",
1804
- "declaration": {
1805
- "name": "defaultAccordionItemConfig",
1806
- "module": "src/accordion-item/accordion-item.ts"
1807
- }
1808
- },
1809
- {
1810
- "kind": "js",
1811
- "name": "foundationAccordionItem",
1812
- "declaration": {
1813
- "name": "foundationAccordionItem",
1814
- "module": "src/accordion-item/accordion-item.ts"
1815
- }
1816
- }
1817
- ]
1818
- },
1819
- {
1820
- "kind": "javascript-module",
1821
- "path": "src/accordion-item/index.ts",
1822
- "declarations": [],
1823
- "exports": [
1824
- {
1825
- "kind": "js",
1826
- "name": "*",
1827
- "declaration": {
1828
- "name": "*",
1829
- "package": "./accordion-item.template"
1830
- }
1831
- },
1832
- {
1833
- "kind": "js",
1834
- "name": "*",
1835
- "declaration": {
1836
- "name": "*",
1837
- "package": "./accordion-item.styles"
1838
- }
1839
- },
1840
- {
1841
- "kind": "js",
1842
- "name": "*",
1843
- "declaration": {
1844
- "name": "*",
1845
- "package": "./accordion-item"
1846
- }
1847
- }
1848
- ]
1849
- },
1850
959
  {
1851
960
  "kind": "javascript-module",
1852
961
  "path": "src/accordion/accordion.styles.ts",
@@ -2362,6 +1471,472 @@
2362
1471
  }
2363
1472
  ]
2364
1473
  },
1474
+ {
1475
+ "kind": "javascript-module",
1476
+ "path": "src/_common/affix-mixin.ts",
1477
+ "declarations": [
1478
+ {
1479
+ "kind": "mixin",
1480
+ "description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
1481
+ "name": "AffixMixin",
1482
+ "members": [
1483
+ {
1484
+ "kind": "field",
1485
+ "name": "prefix",
1486
+ "type": {
1487
+ "text": "string"
1488
+ },
1489
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
1490
+ },
1491
+ {
1492
+ "kind": "field",
1493
+ "name": "suffix",
1494
+ "type": {
1495
+ "text": "string"
1496
+ },
1497
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
1498
+ },
1499
+ {
1500
+ "kind": "field",
1501
+ "name": "hideAffixFromScreenReader",
1502
+ "type": {
1503
+ "text": "boolean"
1504
+ },
1505
+ "default": "false",
1506
+ "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
1507
+ }
1508
+ ],
1509
+ "parameters": [
1510
+ {
1511
+ "name": "Base",
1512
+ "type": {
1513
+ "text": "TBase"
1514
+ }
1515
+ }
1516
+ ]
1517
+ }
1518
+ ],
1519
+ "exports": [
1520
+ {
1521
+ "kind": "js",
1522
+ "name": "AffixMixin",
1523
+ "declaration": {
1524
+ "name": "AffixMixin",
1525
+ "module": "src/_common/affix-mixin.ts"
1526
+ }
1527
+ }
1528
+ ]
1529
+ },
1530
+ {
1531
+ "kind": "javascript-module",
1532
+ "path": "src/_common/base-file-component.ts",
1533
+ "declarations": [
1534
+ {
1535
+ "kind": "class",
1536
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1537
+ "name": "BaseFileComponent",
1538
+ "members": [
1539
+ {
1540
+ "kind": "field",
1541
+ "name": "fileInput",
1542
+ "type": {
1543
+ "text": "HTMLInputElement"
1544
+ },
1545
+ "privacy": "public"
1546
+ },
1547
+ {
1548
+ "kind": "field",
1549
+ "name": "selectedFile",
1550
+ "type": {
1551
+ "text": "File | null"
1552
+ },
1553
+ "privacy": "protected",
1554
+ "default": "null"
1555
+ },
1556
+ {
1557
+ "kind": "field",
1558
+ "name": "label",
1559
+ "type": {
1560
+ "text": "string"
1561
+ }
1562
+ },
1563
+ {
1564
+ "kind": "field",
1565
+ "name": "accept",
1566
+ "type": {
1567
+ "text": "string"
1568
+ },
1569
+ "default": "''"
1570
+ },
1571
+ {
1572
+ "kind": "field",
1573
+ "name": "fileSizeLimitBytes",
1574
+ "default": "10_485_760",
1575
+ "type": {
1576
+ "text": "number"
1577
+ }
1578
+ },
1579
+ {
1580
+ "kind": "field",
1581
+ "name": "fileName",
1582
+ "type": {
1583
+ "text": "string"
1584
+ },
1585
+ "default": "''"
1586
+ },
1587
+ {
1588
+ "kind": "field",
1589
+ "name": "isProcessing",
1590
+ "type": {
1591
+ "text": "boolean"
1592
+ },
1593
+ "default": "false"
1594
+ },
1595
+ {
1596
+ "kind": "method",
1597
+ "name": "handleClick",
1598
+ "privacy": "public",
1599
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
1600
+ },
1601
+ {
1602
+ "kind": "method",
1603
+ "name": "onInputChange",
1604
+ "privacy": "public",
1605
+ "parameters": [
1606
+ {
1607
+ "name": "e",
1608
+ "type": {
1609
+ "text": "Event"
1610
+ },
1611
+ "description": "The change event from the file input"
1612
+ }
1613
+ ],
1614
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
1615
+ },
1616
+ {
1617
+ "kind": "method",
1618
+ "name": "clearSelection",
1619
+ "privacy": "public",
1620
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
1621
+ },
1622
+ {
1623
+ "kind": "method",
1624
+ "name": "getSelectedFile",
1625
+ "privacy": "public",
1626
+ "description": "Gets the currently selected file object",
1627
+ "return": {
1628
+ "type": {
1629
+ "text": ""
1630
+ }
1631
+ }
1632
+ },
1633
+ {
1634
+ "kind": "method",
1635
+ "name": "showError",
1636
+ "privacy": "protected",
1637
+ "parameters": [
1638
+ {
1639
+ "name": "title",
1640
+ "type": {
1641
+ "text": "string"
1642
+ },
1643
+ "description": "The error title"
1644
+ },
1645
+ {
1646
+ "name": "message",
1647
+ "type": {
1648
+ "text": "string"
1649
+ },
1650
+ "description": "The error message"
1651
+ }
1652
+ ],
1653
+ "description": "Shows an error notification using the unified error handling system"
1654
+ },
1655
+ {
1656
+ "kind": "method",
1657
+ "name": "onFileSelected",
1658
+ "privacy": "protected",
1659
+ "return": {
1660
+ "type": {
1661
+ "text": "void"
1662
+ }
1663
+ },
1664
+ "parameters": [
1665
+ {
1666
+ "name": "files",
1667
+ "type": {
1668
+ "text": "File[]"
1669
+ },
1670
+ "description": "The selected file"
1671
+ }
1672
+ ],
1673
+ "description": "Abstract method called when a file is selected"
1674
+ },
1675
+ {
1676
+ "kind": "method",
1677
+ "name": "onFileCleared",
1678
+ "privacy": "protected",
1679
+ "return": {
1680
+ "type": {
1681
+ "text": "void"
1682
+ }
1683
+ },
1684
+ "description": "Abstract method called when file selection is cleared"
1685
+ },
1686
+ {
1687
+ "kind": "field",
1688
+ "name": "_presentation",
1689
+ "type": {
1690
+ "text": "ComponentPresentation | null | undefined"
1691
+ },
1692
+ "privacy": "private",
1693
+ "default": "void 0",
1694
+ "inheritedFrom": {
1695
+ "name": "FoundationElement",
1696
+ "module": "src/foundation-element/foundation-element.ts"
1697
+ }
1698
+ },
1699
+ {
1700
+ "kind": "field",
1701
+ "name": "$presentation",
1702
+ "type": {
1703
+ "text": "ComponentPresentation | null"
1704
+ },
1705
+ "privacy": "public",
1706
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1707
+ "inheritedFrom": {
1708
+ "name": "FoundationElement",
1709
+ "module": "src/foundation-element/foundation-element.ts"
1710
+ }
1711
+ },
1712
+ {
1713
+ "kind": "field",
1714
+ "name": "template",
1715
+ "type": {
1716
+ "text": "ElementViewTemplate | void | null"
1717
+ },
1718
+ "privacy": "public",
1719
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1720
+ "inheritedFrom": {
1721
+ "name": "FoundationElement",
1722
+ "module": "src/foundation-element/foundation-element.ts"
1723
+ }
1724
+ },
1725
+ {
1726
+ "kind": "method",
1727
+ "name": "templateChanged",
1728
+ "privacy": "protected",
1729
+ "return": {
1730
+ "type": {
1731
+ "text": "void"
1732
+ }
1733
+ },
1734
+ "inheritedFrom": {
1735
+ "name": "FoundationElement",
1736
+ "module": "src/foundation-element/foundation-element.ts"
1737
+ }
1738
+ },
1739
+ {
1740
+ "kind": "field",
1741
+ "name": "styles",
1742
+ "type": {
1743
+ "text": "ElementStyles | void | null"
1744
+ },
1745
+ "privacy": "public",
1746
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1747
+ "inheritedFrom": {
1748
+ "name": "FoundationElement",
1749
+ "module": "src/foundation-element/foundation-element.ts"
1750
+ }
1751
+ },
1752
+ {
1753
+ "kind": "method",
1754
+ "name": "stylesChanged",
1755
+ "privacy": "protected",
1756
+ "return": {
1757
+ "type": {
1758
+ "text": "void"
1759
+ }
1760
+ },
1761
+ "inheritedFrom": {
1762
+ "name": "FoundationElement",
1763
+ "module": "src/foundation-element/foundation-element.ts"
1764
+ }
1765
+ },
1766
+ {
1767
+ "kind": "method",
1768
+ "name": "compose",
1769
+ "privacy": "public",
1770
+ "static": true,
1771
+ "return": {
1772
+ "type": {
1773
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1774
+ }
1775
+ },
1776
+ "parameters": [
1777
+ {
1778
+ "name": "this",
1779
+ "type": {
1780
+ "text": "K"
1781
+ }
1782
+ },
1783
+ {
1784
+ "name": "elementDefinition",
1785
+ "type": {
1786
+ "text": "T"
1787
+ },
1788
+ "description": "The definition of the element to create the registry\nfunction for."
1789
+ }
1790
+ ],
1791
+ "description": "Defines an element registry function with a set of element definition defaults.",
1792
+ "inheritedFrom": {
1793
+ "name": "FoundationElement",
1794
+ "module": "src/foundation-element/foundation-element.ts"
1795
+ }
1796
+ }
1797
+ ],
1798
+ "events": [
1799
+ {
1800
+ "description": "Fired when file size validation fails. detail: `Error`",
1801
+ "name": "error"
1802
+ },
1803
+ {
1804
+ "description": "Fired when selection is cleared",
1805
+ "name": "clear"
1806
+ }
1807
+ ],
1808
+ "attributes": [
1809
+ {
1810
+ "name": "label",
1811
+ "type": {
1812
+ "text": "string"
1813
+ },
1814
+ "fieldName": "label"
1815
+ },
1816
+ {
1817
+ "name": "accept",
1818
+ "type": {
1819
+ "text": "string"
1820
+ },
1821
+ "default": "''",
1822
+ "fieldName": "accept"
1823
+ },
1824
+ {
1825
+ "name": "file-size-limit-bytes",
1826
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
1827
+ "resolveInitializer": {
1828
+ "module": "src/_common/base-file-component.ts"
1829
+ },
1830
+ "fieldName": "fileSizeLimitBytes"
1831
+ }
1832
+ ],
1833
+ "superclass": {
1834
+ "name": "FoundationElement",
1835
+ "package": "@microsoft/fast-foundation"
1836
+ }
1837
+ }
1838
+ ],
1839
+ "exports": [
1840
+ {
1841
+ "kind": "js",
1842
+ "name": "BaseFileComponent",
1843
+ "declaration": {
1844
+ "name": "BaseFileComponent",
1845
+ "module": "src/_common/base-file-component.ts"
1846
+ }
1847
+ }
1848
+ ]
1849
+ },
1850
+ {
1851
+ "kind": "javascript-module",
1852
+ "path": "src/_common/field-styles.ts",
1853
+ "declarations": [
1854
+ {
1855
+ "kind": "variable",
1856
+ "name": "sharedFieldStyles",
1857
+ "default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
1858
+ }
1859
+ ],
1860
+ "exports": [
1861
+ {
1862
+ "kind": "js",
1863
+ "name": "sharedFieldStyles",
1864
+ "declaration": {
1865
+ "name": "sharedFieldStyles",
1866
+ "module": "src/_common/field-styles.ts"
1867
+ }
1868
+ }
1869
+ ]
1870
+ },
1871
+ {
1872
+ "kind": "javascript-module",
1873
+ "path": "src/_common/icons.ts",
1874
+ "declarations": [
1875
+ {
1876
+ "kind": "function",
1877
+ "name": "closeIcon",
1878
+ "parameters": [
1879
+ {
1880
+ "name": "slot",
1881
+ "default": "'start'"
1882
+ },
1883
+ {
1884
+ "name": "fill",
1885
+ "default": "'#879ba6'"
1886
+ }
1887
+ ]
1888
+ }
1889
+ ],
1890
+ "exports": [
1891
+ {
1892
+ "kind": "js",
1893
+ "name": "closeIcon",
1894
+ "declaration": {
1895
+ "name": "closeIcon",
1896
+ "module": "src/_common/icons.ts"
1897
+ }
1898
+ }
1899
+ ]
1900
+ },
1901
+ {
1902
+ "kind": "javascript-module",
1903
+ "path": "src/_common/index.ts",
1904
+ "declarations": [],
1905
+ "exports": [
1906
+ {
1907
+ "kind": "js",
1908
+ "name": "*",
1909
+ "declaration": {
1910
+ "name": "*",
1911
+ "package": "./affix-mixin"
1912
+ }
1913
+ },
1914
+ {
1915
+ "kind": "js",
1916
+ "name": "*",
1917
+ "declaration": {
1918
+ "name": "*",
1919
+ "package": "./base-file-component"
1920
+ }
1921
+ },
1922
+ {
1923
+ "kind": "js",
1924
+ "name": "*",
1925
+ "declaration": {
1926
+ "name": "*",
1927
+ "package": "./field-styles"
1928
+ }
1929
+ },
1930
+ {
1931
+ "kind": "js",
1932
+ "name": "*",
1933
+ "declaration": {
1934
+ "name": "*",
1935
+ "package": "./icons"
1936
+ }
1937
+ }
1938
+ ]
1939
+ },
2365
1940
  {
2366
1941
  "kind": "javascript-module",
2367
1942
  "path": "src/actions-menu/actions-menu.styles.ts",
@@ -3573,224 +3148,604 @@
3573
3148
  "exports": [
3574
3149
  {
3575
3150
  "kind": "js",
3576
- "name": "foundationAiIndicatorStyles",
3151
+ "name": "foundationAiIndicatorStyles",
3152
+ "declaration": {
3153
+ "name": "foundationAiIndicatorStyles",
3154
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
3155
+ }
3156
+ }
3157
+ ]
3158
+ },
3159
+ {
3160
+ "kind": "javascript-module",
3161
+ "path": "src/ai-indicator/ai-indicator.template.ts",
3162
+ "declarations": [
3163
+ {
3164
+ "kind": "variable",
3165
+ "name": "foundationAiIndicatorTemplate",
3166
+ "type": {
3167
+ "text": "ViewTemplate<AiIndicator>"
3168
+ },
3169
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3170
+ }
3171
+ ],
3172
+ "exports": [
3173
+ {
3174
+ "kind": "js",
3175
+ "name": "foundationAiIndicatorTemplate",
3176
+ "declaration": {
3177
+ "name": "foundationAiIndicatorTemplate",
3178
+ "module": "src/ai-indicator/ai-indicator.template.ts"
3179
+ }
3180
+ }
3181
+ ]
3182
+ },
3183
+ {
3184
+ "kind": "javascript-module",
3185
+ "path": "src/ai-indicator/ai-indicator.ts",
3186
+ "declarations": [
3187
+ {
3188
+ "kind": "class",
3189
+ "description": "",
3190
+ "name": "AiIndicator",
3191
+ "members": [
3192
+ {
3193
+ "kind": "field",
3194
+ "name": "providerRegistry",
3195
+ "type": {
3196
+ "text": "AIProviderRegistry"
3197
+ }
3198
+ },
3199
+ {
3200
+ "kind": "field",
3201
+ "name": "aiProvider",
3202
+ "type": {
3203
+ "text": "AIProvider | undefined"
3204
+ },
3205
+ "privacy": "private",
3206
+ "description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
3207
+ "readonly": true
3208
+ },
3209
+ {
3210
+ "kind": "field",
3211
+ "name": "status",
3212
+ "type": {
3213
+ "text": "AIStatus | null"
3214
+ },
3215
+ "default": "null"
3216
+ },
3217
+ {
3218
+ "kind": "field",
3219
+ "name": "open",
3220
+ "type": {
3221
+ "text": "boolean"
3222
+ },
3223
+ "default": "false"
3224
+ },
3225
+ {
3226
+ "kind": "field",
3227
+ "name": "state",
3228
+ "type": {
3229
+ "text": "AIIndicatorState"
3230
+ },
3231
+ "default": "'none'"
3232
+ },
3233
+ {
3234
+ "kind": "field",
3235
+ "name": "isInstalling",
3236
+ "type": {
3237
+ "text": "boolean"
3238
+ },
3239
+ "default": "false"
3240
+ },
3241
+ {
3242
+ "kind": "field",
3243
+ "name": "pollTimer",
3244
+ "type": {
3245
+ "text": "ReturnType<typeof setInterval> | null"
3246
+ },
3247
+ "privacy": "private",
3248
+ "default": "null"
3249
+ },
3250
+ {
3251
+ "kind": "field",
3252
+ "name": "clickOutside",
3253
+ "privacy": "private"
3254
+ },
3255
+ {
3256
+ "kind": "field",
3257
+ "name": "chromeStatusLabel",
3258
+ "type": {
3259
+ "text": "string | null"
3260
+ },
3261
+ "readonly": true
3262
+ },
3263
+ {
3264
+ "kind": "field",
3265
+ "name": "canInstall",
3266
+ "type": {
3267
+ "text": "boolean"
3268
+ },
3269
+ "readonly": true
3270
+ },
3271
+ {
3272
+ "kind": "field",
3273
+ "name": "isDownloading",
3274
+ "type": {
3275
+ "text": "boolean"
3276
+ },
3277
+ "readonly": true
3278
+ },
3279
+ {
3280
+ "kind": "method",
3281
+ "name": "openChanged",
3282
+ "return": {
3283
+ "type": {
3284
+ "text": "void"
3285
+ }
3286
+ }
3287
+ },
3288
+ {
3289
+ "kind": "method",
3290
+ "name": "handleClickOutside",
3291
+ "privacy": "private",
3292
+ "parameters": [
3293
+ {
3294
+ "name": "event",
3295
+ "type": {
3296
+ "text": "MouseEvent"
3297
+ }
3298
+ }
3299
+ ]
3300
+ },
3301
+ {
3302
+ "kind": "method",
3303
+ "name": "toggleDropdown"
3304
+ },
3305
+ {
3306
+ "kind": "method",
3307
+ "name": "refreshStatus",
3308
+ "return": {
3309
+ "type": {
3310
+ "text": "Promise<void>"
3311
+ }
3312
+ }
3313
+ },
3314
+ {
3315
+ "kind": "method",
3316
+ "name": "deriveState",
3317
+ "privacy": "private",
3318
+ "return": {
3319
+ "type": {
3320
+ "text": "AIIndicatorState"
3321
+ }
3322
+ },
3323
+ "parameters": [
3324
+ {
3325
+ "name": "s",
3326
+ "type": {
3327
+ "text": "AIStatus | null"
3328
+ }
3329
+ }
3330
+ ]
3331
+ },
3332
+ {
3333
+ "kind": "method",
3334
+ "name": "maybeStartPolling",
3335
+ "privacy": "private",
3336
+ "return": {
3337
+ "type": {
3338
+ "text": "void"
3339
+ }
3340
+ }
3341
+ },
3342
+ {
3343
+ "kind": "method",
3344
+ "name": "startPolling",
3345
+ "privacy": "private",
3346
+ "return": {
3347
+ "type": {
3348
+ "text": "void"
3349
+ }
3350
+ }
3351
+ },
3352
+ {
3353
+ "kind": "method",
3354
+ "name": "stopPolling",
3355
+ "privacy": "private",
3356
+ "return": {
3357
+ "type": {
3358
+ "text": "void"
3359
+ }
3360
+ }
3361
+ },
3362
+ {
3363
+ "kind": "method",
3364
+ "name": "onInstall",
3365
+ "return": {
3366
+ "type": {
3367
+ "text": "Promise<void>"
3368
+ }
3369
+ }
3370
+ },
3371
+ {
3372
+ "kind": "field",
3373
+ "name": "_presentation",
3374
+ "type": {
3375
+ "text": "ComponentPresentation | null | undefined"
3376
+ },
3377
+ "privacy": "private",
3378
+ "default": "void 0",
3379
+ "inheritedFrom": {
3380
+ "name": "FoundationElement",
3381
+ "module": "src/foundation-element/foundation-element.ts"
3382
+ }
3383
+ },
3384
+ {
3385
+ "kind": "field",
3386
+ "name": "$presentation",
3387
+ "type": {
3388
+ "text": "ComponentPresentation | null"
3389
+ },
3390
+ "privacy": "public",
3391
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3392
+ "inheritedFrom": {
3393
+ "name": "FoundationElement",
3394
+ "module": "src/foundation-element/foundation-element.ts"
3395
+ }
3396
+ },
3397
+ {
3398
+ "kind": "field",
3399
+ "name": "template",
3400
+ "type": {
3401
+ "text": "ElementViewTemplate | void | null"
3402
+ },
3403
+ "privacy": "public",
3404
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
3405
+ "inheritedFrom": {
3406
+ "name": "FoundationElement",
3407
+ "module": "src/foundation-element/foundation-element.ts"
3408
+ }
3409
+ },
3410
+ {
3411
+ "kind": "method",
3412
+ "name": "templateChanged",
3413
+ "privacy": "protected",
3414
+ "return": {
3415
+ "type": {
3416
+ "text": "void"
3417
+ }
3418
+ },
3419
+ "inheritedFrom": {
3420
+ "name": "FoundationElement",
3421
+ "module": "src/foundation-element/foundation-element.ts"
3422
+ }
3423
+ },
3424
+ {
3425
+ "kind": "field",
3426
+ "name": "styles",
3427
+ "type": {
3428
+ "text": "ElementStyles | void | null"
3429
+ },
3430
+ "privacy": "public",
3431
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
3432
+ "inheritedFrom": {
3433
+ "name": "FoundationElement",
3434
+ "module": "src/foundation-element/foundation-element.ts"
3435
+ }
3436
+ },
3437
+ {
3438
+ "kind": "method",
3439
+ "name": "stylesChanged",
3440
+ "privacy": "protected",
3441
+ "return": {
3442
+ "type": {
3443
+ "text": "void"
3444
+ }
3445
+ },
3446
+ "inheritedFrom": {
3447
+ "name": "FoundationElement",
3448
+ "module": "src/foundation-element/foundation-element.ts"
3449
+ }
3450
+ },
3451
+ {
3452
+ "kind": "method",
3453
+ "name": "compose",
3454
+ "privacy": "public",
3455
+ "static": true,
3456
+ "return": {
3457
+ "type": {
3458
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3459
+ }
3460
+ },
3461
+ "parameters": [
3462
+ {
3463
+ "name": "this",
3464
+ "type": {
3465
+ "text": "K"
3466
+ }
3467
+ },
3468
+ {
3469
+ "name": "elementDefinition",
3470
+ "type": {
3471
+ "text": "T"
3472
+ },
3473
+ "description": "The definition of the element to create the registry\nfunction for."
3474
+ }
3475
+ ],
3476
+ "description": "Defines an element registry function with a set of element definition defaults.",
3477
+ "inheritedFrom": {
3478
+ "name": "FoundationElement",
3479
+ "module": "src/foundation-element/foundation-element.ts"
3480
+ }
3481
+ }
3482
+ ],
3483
+ "superclass": {
3484
+ "name": "FoundationElement",
3485
+ "package": "@microsoft/fast-foundation"
3486
+ },
3487
+ "tagName": "%%prefix%%-ai-indicator",
3488
+ "customElement": true
3489
+ },
3490
+ {
3491
+ "kind": "variable",
3492
+ "name": "foundationAiIndicator"
3493
+ }
3494
+ ],
3495
+ "exports": [
3496
+ {
3497
+ "kind": "js",
3498
+ "name": "AiIndicator",
3499
+ "declaration": {
3500
+ "name": "AiIndicator",
3501
+ "module": "src/ai-indicator/ai-indicator.ts"
3502
+ }
3503
+ },
3504
+ {
3505
+ "kind": "js",
3506
+ "name": "foundationAiIndicator",
3507
+ "declaration": {
3508
+ "name": "foundationAiIndicator",
3509
+ "module": "src/ai-indicator/ai-indicator.ts"
3510
+ }
3511
+ }
3512
+ ]
3513
+ },
3514
+ {
3515
+ "kind": "javascript-module",
3516
+ "path": "src/ai-indicator/index.ts",
3517
+ "declarations": [],
3518
+ "exports": [
3519
+ {
3520
+ "kind": "js",
3521
+ "name": "AiIndicator",
3522
+ "declaration": {
3523
+ "name": "AiIndicator",
3524
+ "module": "./ai-indicator"
3525
+ }
3526
+ },
3527
+ {
3528
+ "kind": "js",
3529
+ "name": "foundationAiIndicator",
3530
+ "declaration": {
3531
+ "name": "foundationAiIndicator",
3532
+ "module": "./ai-indicator"
3533
+ }
3534
+ },
3535
+ {
3536
+ "kind": "js",
3537
+ "name": "type",
3538
+ "declaration": {
3539
+ "name": "type",
3540
+ "module": "./ai-indicator"
3541
+ }
3542
+ },
3543
+ {
3544
+ "kind": "js",
3545
+ "name": "AIIndicatorState",
3546
+ "declaration": {
3547
+ "name": "AIIndicatorState",
3548
+ "module": "./ai-indicator"
3549
+ }
3550
+ },
3551
+ {
3552
+ "kind": "js",
3553
+ "name": "foundationAiIndicatorTemplate",
3554
+ "declaration": {
3555
+ "name": "foundationAiIndicatorTemplate",
3556
+ "module": "./ai-indicator.template"
3557
+ }
3558
+ },
3559
+ {
3560
+ "kind": "js",
3561
+ "name": "foundationAiIndicatorStyles",
3562
+ "declaration": {
3563
+ "name": "foundationAiIndicatorStyles",
3564
+ "module": "./ai-indicator.styles"
3565
+ }
3566
+ }
3567
+ ]
3568
+ },
3569
+ {
3570
+ "kind": "javascript-module",
3571
+ "path": "src/accordion-item/accordion-item.styles.ts",
3572
+ "declarations": [
3573
+ {
3574
+ "kind": "function",
3575
+ "name": "foundationAccordionItemStyles",
3576
+ "return": {
3577
+ "type": {
3578
+ "text": "ElementStyles"
3579
+ }
3580
+ },
3581
+ "parameters": [
3582
+ {
3583
+ "name": "context",
3584
+ "type": {
3585
+ "text": "ElementDefinitionContext"
3586
+ }
3587
+ },
3588
+ {
3589
+ "name": "definition",
3590
+ "type": {
3591
+ "text": "FoundationElementDefinition"
3592
+ }
3593
+ }
3594
+ ]
3595
+ }
3596
+ ],
3597
+ "exports": [
3598
+ {
3599
+ "kind": "js",
3600
+ "name": "foundationAccordionItemStyles",
3577
3601
  "declaration": {
3578
- "name": "foundationAiIndicatorStyles",
3579
- "module": "src/ai-indicator/ai-indicator.styles.ts"
3602
+ "name": "foundationAccordionItemStyles",
3603
+ "module": "src/accordion-item/accordion-item.styles.ts"
3580
3604
  }
3581
3605
  }
3582
3606
  ]
3583
3607
  },
3584
3608
  {
3585
3609
  "kind": "javascript-module",
3586
- "path": "src/ai-indicator/ai-indicator.template.ts",
3610
+ "path": "src/accordion-item/accordion-item.template.ts",
3587
3611
  "declarations": [
3588
3612
  {
3589
- "kind": "variable",
3590
- "name": "foundationAiIndicatorTemplate",
3591
- "type": {
3592
- "text": "ViewTemplate<AiIndicator>"
3613
+ "kind": "function",
3614
+ "name": "foundationAccordionItemTemplate",
3615
+ "return": {
3616
+ "type": {
3617
+ "text": "ViewTemplate<AccordionItem>"
3618
+ }
3593
3619
  },
3594
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3620
+ "parameters": [
3621
+ {
3622
+ "name": "context",
3623
+ "type": {
3624
+ "text": "ElementDefinitionContext"
3625
+ }
3626
+ },
3627
+ {
3628
+ "name": "definition",
3629
+ "type": {
3630
+ "text": "FoundationElementDefinition"
3631
+ }
3632
+ }
3633
+ ]
3595
3634
  }
3596
3635
  ],
3597
3636
  "exports": [
3598
3637
  {
3599
3638
  "kind": "js",
3600
- "name": "foundationAiIndicatorTemplate",
3639
+ "name": "foundationAccordionItemTemplate",
3601
3640
  "declaration": {
3602
- "name": "foundationAiIndicatorTemplate",
3603
- "module": "src/ai-indicator/ai-indicator.template.ts"
3641
+ "name": "foundationAccordionItemTemplate",
3642
+ "module": "src/accordion-item/accordion-item.template.ts"
3604
3643
  }
3605
3644
  }
3606
3645
  ]
3607
3646
  },
3608
3647
  {
3609
3648
  "kind": "javascript-module",
3610
- "path": "src/ai-indicator/ai-indicator.ts",
3649
+ "path": "src/accordion-item/accordion-item.ts",
3611
3650
  "declarations": [
3612
3651
  {
3613
3652
  "kind": "class",
3614
3653
  "description": "",
3615
- "name": "AiIndicator",
3616
- "members": [
3617
- {
3618
- "kind": "field",
3619
- "name": "providerRegistry",
3620
- "type": {
3621
- "text": "AIProviderRegistry"
3622
- }
3623
- },
3624
- {
3625
- "kind": "field",
3626
- "name": "aiProvider",
3627
- "type": {
3628
- "text": "AIProvider | undefined"
3629
- },
3630
- "privacy": "private",
3631
- "description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
3632
- "readonly": true
3633
- },
3634
- {
3635
- "kind": "field",
3636
- "name": "status",
3637
- "type": {
3638
- "text": "AIStatus | null"
3639
- },
3640
- "default": "null"
3641
- },
3642
- {
3643
- "kind": "field",
3644
- "name": "open",
3645
- "type": {
3646
- "text": "boolean"
3647
- },
3648
- "default": "false"
3649
- },
3654
+ "name": "AccordionItem",
3655
+ "superclass": {
3656
+ "name": "FASTAccordionItem",
3657
+ "package": "@microsoft/fast-components"
3658
+ },
3659
+ "tagName": "%%prefix%%-accordion-item",
3660
+ "customElement": true,
3661
+ "attributes": [
3650
3662
  {
3651
- "kind": "field",
3652
- "name": "state",
3663
+ "name": "heading-level",
3653
3664
  "type": {
3654
- "text": "AIIndicatorState"
3665
+ "text": "1 | 2 | 3 | 4 | 5 | 6"
3655
3666
  },
3656
- "default": "'none'"
3667
+ "default": "2",
3668
+ "description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
3669
+ "fieldName": "headinglevel",
3670
+ "inheritedFrom": {
3671
+ "name": "AccordionItem",
3672
+ "module": "src/accordion-item/accordion-item.ts"
3673
+ }
3657
3674
  },
3658
3675
  {
3659
- "kind": "field",
3660
- "name": "isInstalling",
3661
3676
  "type": {
3662
3677
  "text": "boolean"
3663
3678
  },
3664
- "default": "false"
3679
+ "default": "false",
3680
+ "description": "Expands or collapses the item.",
3681
+ "fieldName": "expanded",
3682
+ "inheritedFrom": {
3683
+ "name": "AccordionItem",
3684
+ "module": "src/accordion-item/accordion-item.ts"
3685
+ }
3665
3686
  },
3666
3687
  {
3667
- "kind": "field",
3668
- "name": "pollTimer",
3688
+ "name": "id",
3669
3689
  "type": {
3670
- "text": "ReturnType<typeof setInterval> | null"
3690
+ "text": "string"
3671
3691
  },
3672
- "privacy": "private",
3673
- "default": "null"
3674
- },
3675
- {
3676
- "kind": "field",
3677
- "name": "clickOutside",
3678
- "privacy": "private"
3679
- },
3692
+ "description": "The item ID",
3693
+ "fieldName": "id",
3694
+ "inheritedFrom": {
3695
+ "name": "AccordionItem",
3696
+ "module": "src/accordion-item/accordion-item.ts"
3697
+ }
3698
+ }
3699
+ ],
3700
+ "members": [
3680
3701
  {
3681
3702
  "kind": "field",
3682
- "name": "chromeStatusLabel",
3703
+ "name": "headinglevel",
3683
3704
  "type": {
3684
- "text": "string | null"
3705
+ "text": "1 | 2 | 3 | 4 | 5 | 6"
3685
3706
  },
3686
- "readonly": true
3707
+ "privacy": "public",
3708
+ "default": "2",
3709
+ "description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
3710
+ "inheritedFrom": {
3711
+ "name": "AccordionItem",
3712
+ "module": "src/accordion-item/accordion-item.ts"
3713
+ }
3687
3714
  },
3688
3715
  {
3689
3716
  "kind": "field",
3690
- "name": "canInstall",
3717
+ "name": "expanded",
3691
3718
  "type": {
3692
3719
  "text": "boolean"
3693
3720
  },
3694
- "readonly": true
3721
+ "privacy": "public",
3722
+ "default": "false",
3723
+ "description": "Expands or collapses the item.",
3724
+ "inheritedFrom": {
3725
+ "name": "AccordionItem",
3726
+ "module": "src/accordion-item/accordion-item.ts"
3727
+ }
3695
3728
  },
3696
3729
  {
3697
3730
  "kind": "field",
3698
- "name": "isDownloading",
3731
+ "name": "id",
3699
3732
  "type": {
3700
- "text": "boolean"
3701
- },
3702
- "readonly": true
3703
- },
3704
- {
3705
- "kind": "method",
3706
- "name": "openChanged",
3707
- "return": {
3708
- "type": {
3709
- "text": "void"
3710
- }
3711
- }
3712
- },
3713
- {
3714
- "kind": "method",
3715
- "name": "handleClickOutside",
3716
- "privacy": "private",
3717
- "parameters": [
3718
- {
3719
- "name": "event",
3720
- "type": {
3721
- "text": "MouseEvent"
3722
- }
3723
- }
3724
- ]
3725
- },
3726
- {
3727
- "kind": "method",
3728
- "name": "toggleDropdown"
3729
- },
3730
- {
3731
- "kind": "method",
3732
- "name": "refreshStatus",
3733
- "return": {
3734
- "type": {
3735
- "text": "Promise<void>"
3736
- }
3737
- }
3738
- },
3739
- {
3740
- "kind": "method",
3741
- "name": "deriveState",
3742
- "privacy": "private",
3743
- "return": {
3744
- "type": {
3745
- "text": "AIIndicatorState"
3746
- }
3733
+ "text": "string"
3747
3734
  },
3748
- "parameters": [
3749
- {
3750
- "name": "s",
3751
- "type": {
3752
- "text": "AIStatus | null"
3753
- }
3754
- }
3755
- ]
3756
- },
3757
- {
3758
- "kind": "method",
3759
- "name": "maybeStartPolling",
3760
- "privacy": "private",
3761
- "return": {
3762
- "type": {
3763
- "text": "void"
3764
- }
3765
- }
3766
- },
3767
- {
3768
- "kind": "method",
3769
- "name": "startPolling",
3770
- "privacy": "private",
3771
- "return": {
3772
- "type": {
3773
- "text": "void"
3774
- }
3735
+ "privacy": "public",
3736
+ "description": "The item ID",
3737
+ "inheritedFrom": {
3738
+ "name": "AccordionItem",
3739
+ "module": "src/accordion-item/accordion-item.ts"
3775
3740
  }
3776
3741
  },
3777
3742
  {
3778
- "kind": "method",
3779
- "name": "stopPolling",
3743
+ "kind": "field",
3744
+ "name": "change",
3780
3745
  "privacy": "private",
3781
- "return": {
3782
- "type": {
3783
- "text": "void"
3784
- }
3785
- }
3786
- },
3787
- {
3788
- "kind": "method",
3789
- "name": "onInstall",
3790
- "return": {
3791
- "type": {
3792
- "text": "Promise<void>"
3793
- }
3746
+ "inheritedFrom": {
3747
+ "name": "AccordionItem",
3748
+ "module": "src/accordion-item/accordion-item.ts"
3794
3749
  }
3795
3750
  },
3796
3751
  {
@@ -3905,88 +3860,133 @@
3905
3860
  }
3906
3861
  }
3907
3862
  ],
3908
- "superclass": {
3909
- "name": "FoundationElement",
3910
- "package": "@microsoft/fast-foundation"
3863
+ "events": [
3864
+ {
3865
+ "description": "Fires a custom 'change' event when the button is invoked",
3866
+ "name": "change",
3867
+ "inheritedFrom": {
3868
+ "name": "AccordionItem",
3869
+ "module": "src/accordion-item/accordion-item.ts"
3870
+ }
3871
+ }
3872
+ ]
3873
+ },
3874
+ {
3875
+ "kind": "variable",
3876
+ "name": "foundationAccordionItemShadowOptions",
3877
+ "type": {
3878
+ "text": "ShadowRootInit"
3911
3879
  },
3912
- "tagName": "%%prefix%%-ai-indicator",
3913
- "customElement": true
3880
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
3914
3881
  },
3915
3882
  {
3916
3883
  "kind": "variable",
3917
- "name": "foundationAiIndicator"
3884
+ "name": "defaultAccordionItemConfig",
3885
+ "type": {
3886
+ "text": "object"
3887
+ },
3888
+ "default": "{\n collapsedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"collapsed-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M9 5.44446V12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n expandedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"expanded-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"minus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n}"
3889
+ },
3890
+ {
3891
+ "kind": "variable",
3892
+ "name": "foundationAccordionItem",
3893
+ "description": "The Foundation Accordion Item",
3894
+ "privacy": "public"
3918
3895
  }
3919
3896
  ],
3920
3897
  "exports": [
3921
3898
  {
3922
3899
  "kind": "js",
3923
- "name": "AiIndicator",
3900
+ "name": "AccordionItem",
3924
3901
  "declaration": {
3925
- "name": "AiIndicator",
3926
- "module": "src/ai-indicator/ai-indicator.ts"
3902
+ "name": "AccordionItem",
3903
+ "module": "src/accordion-item/accordion-item.ts"
3927
3904
  }
3928
3905
  },
3929
3906
  {
3930
3907
  "kind": "js",
3931
- "name": "foundationAiIndicator",
3908
+ "name": "foundationAccordionItemShadowOptions",
3932
3909
  "declaration": {
3933
- "name": "foundationAiIndicator",
3934
- "module": "src/ai-indicator/ai-indicator.ts"
3910
+ "name": "foundationAccordionItemShadowOptions",
3911
+ "module": "src/accordion-item/accordion-item.ts"
3912
+ }
3913
+ },
3914
+ {
3915
+ "kind": "js",
3916
+ "name": "defaultAccordionItemConfig",
3917
+ "declaration": {
3918
+ "name": "defaultAccordionItemConfig",
3919
+ "module": "src/accordion-item/accordion-item.ts"
3920
+ }
3921
+ },
3922
+ {
3923
+ "kind": "js",
3924
+ "name": "foundationAccordionItem",
3925
+ "declaration": {
3926
+ "name": "foundationAccordionItem",
3927
+ "module": "src/accordion-item/accordion-item.ts"
3935
3928
  }
3936
3929
  }
3937
3930
  ]
3938
3931
  },
3939
3932
  {
3940
3933
  "kind": "javascript-module",
3941
- "path": "src/ai-indicator/index.ts",
3934
+ "path": "src/accordion-item/index.ts",
3942
3935
  "declarations": [],
3943
3936
  "exports": [
3944
3937
  {
3945
3938
  "kind": "js",
3946
- "name": "AiIndicator",
3939
+ "name": "*",
3947
3940
  "declaration": {
3948
- "name": "AiIndicator",
3949
- "module": "./ai-indicator"
3941
+ "name": "*",
3942
+ "package": "./accordion-item.template"
3950
3943
  }
3951
3944
  },
3952
3945
  {
3953
3946
  "kind": "js",
3954
- "name": "foundationAiIndicator",
3947
+ "name": "*",
3955
3948
  "declaration": {
3956
- "name": "foundationAiIndicator",
3957
- "module": "./ai-indicator"
3949
+ "name": "*",
3950
+ "package": "./accordion-item.styles"
3958
3951
  }
3959
3952
  },
3960
3953
  {
3961
3954
  "kind": "js",
3962
- "name": "type",
3955
+ "name": "*",
3963
3956
  "declaration": {
3964
- "name": "type",
3965
- "module": "./ai-indicator"
3957
+ "name": "*",
3958
+ "package": "./accordion-item"
3966
3959
  }
3967
- },
3960
+ }
3961
+ ]
3962
+ },
3963
+ {
3964
+ "kind": "javascript-module",
3965
+ "path": "src/_config/index.ts",
3966
+ "declarations": [],
3967
+ "exports": [
3968
3968
  {
3969
3969
  "kind": "js",
3970
- "name": "AIIndicatorState",
3970
+ "name": "*",
3971
3971
  "declaration": {
3972
- "name": "AIIndicatorState",
3973
- "module": "./ai-indicator"
3972
+ "name": "*",
3973
+ "package": "./styles"
3974
3974
  }
3975
3975
  },
3976
3976
  {
3977
3977
  "kind": "js",
3978
- "name": "foundationAiIndicatorTemplate",
3978
+ "name": "*",
3979
3979
  "declaration": {
3980
- "name": "foundationAiIndicatorTemplate",
3981
- "module": "./ai-indicator.template"
3980
+ "name": "*",
3981
+ "package": "./tokens"
3982
3982
  }
3983
3983
  },
3984
3984
  {
3985
3985
  "kind": "js",
3986
- "name": "foundationAiIndicatorStyles",
3986
+ "name": "*",
3987
3987
  "declaration": {
3988
- "name": "foundationAiIndicatorStyles",
3989
- "module": "./ai-indicator.styles"
3988
+ "name": "*",
3989
+ "package": "./values"
3990
3990
  }
3991
3991
  }
3992
3992
  ]
@@ -28847,6 +28847,23 @@
28847
28847
  },
28848
28848
  "default": "false"
28849
28849
  },
28850
+ {
28851
+ "kind": "field",
28852
+ "name": "tooltipElement",
28853
+ "type": {
28854
+ "text": "HTMLElement | undefined"
28855
+ },
28856
+ "description": "The `<%%prefix%%-tooltip>` bubble stays in this component's template and shadow root,\nbut is promoted to the browser top layer via the Popover API when shown — the top layer\nescapes ancestor stacking contexts, transforms and overflow clipping, which is what\nlets virtualized grid rows (absolutely-positioned, later-DOM-order siblings) paint over\nan in-place bubble. Content rendering stays FASTTooltip's own anchor-hover logic\n(`delay=\"0\"` so it is rendered by the time the popover opens and is measured); only\nhost visibility and placement are managed here, because FASTTooltip's anchored-region\nplacement does not resolve for the subclassed genesis components\n(`tagFor(AnchoredRegion)` misses — compose() without `baseClass`)."
28857
+ },
28858
+ {
28859
+ "kind": "field",
28860
+ "name": "tooltipShowTimer",
28861
+ "type": {
28862
+ "text": "number | null"
28863
+ },
28864
+ "privacy": "private",
28865
+ "default": "null"
28866
+ },
28850
28867
  {
28851
28868
  "kind": "field",
28852
28869
  "name": "name",
@@ -28924,6 +28941,30 @@
28924
28941
  }
28925
28942
  ]
28926
28943
  },
28944
+ {
28945
+ "kind": "field",
28946
+ "name": "showTooltip",
28947
+ "privacy": "private"
28948
+ },
28949
+ {
28950
+ "kind": "method",
28951
+ "name": "positionTooltip",
28952
+ "privacy": "private",
28953
+ "parameters": [
28954
+ {
28955
+ "name": "tooltip",
28956
+ "type": {
28957
+ "text": "HTMLElement"
28958
+ }
28959
+ }
28960
+ ],
28961
+ "description": "Places the bubble from the anchor's current viewport position (scrolled grid, resized\nlayout) just before it is shown; top-layer coordinates are viewport-relative. Prefers\nthe anchor's right edge, flips to its left when the right side would clip at the\nviewport, and clamps vertically so bottom rows keep the whole bubble on screen. The\nbubble's width is fixed in CSS, so measuring before final placement is safe; height\ncomes from scroll size because FASTTooltip's host is a zero-height box whose part div\noverflows it."
28962
+ },
28963
+ {
28964
+ "kind": "field",
28965
+ "name": "hideTooltip",
28966
+ "privacy": "private"
28967
+ },
28927
28968
  {
28928
28969
  "kind": "method",
28929
28970
  "name": "getDefaultTooltipConfig"
@@ -59924,6 +59965,197 @@
59924
59965
  }
59925
59966
  ]
59926
59967
  },
59968
+ {
59969
+ "kind": "javascript-module",
59970
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
59971
+ "declarations": [],
59972
+ "exports": []
59973
+ },
59974
+ {
59975
+ "kind": "javascript-module",
59976
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
59977
+ "declarations": [
59978
+ {
59979
+ "kind": "function",
59980
+ "name": "groupsToCriteria",
59981
+ "return": {
59982
+ "type": {
59983
+ "text": "string"
59984
+ }
59985
+ },
59986
+ "parameters": [
59987
+ {
59988
+ "name": "groups",
59989
+ "type": {
59990
+ "text": "CriteriaGroup[]"
59991
+ }
59992
+ }
59993
+ ],
59994
+ "description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
59995
+ },
59996
+ {
59997
+ "kind": "variable",
59998
+ "name": "STRING_OPERATORS",
59999
+ "type": {
60000
+ "text": "CriteriaOperator[]"
60001
+ },
60002
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
60003
+ },
60004
+ {
60005
+ "kind": "variable",
60006
+ "name": "NUMERIC_OPERATORS",
60007
+ "type": {
60008
+ "text": "CriteriaOperator[]"
60009
+ },
60010
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
60011
+ },
60012
+ {
60013
+ "kind": "variable",
60014
+ "name": "DATE_OPERATORS",
60015
+ "type": {
60016
+ "text": "CriteriaOperator[]"
60017
+ },
60018
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
60019
+ },
60020
+ {
60021
+ "kind": "variable",
60022
+ "name": "DATETIME_OPERATORS",
60023
+ "type": {
60024
+ "text": "CriteriaOperator[]"
60025
+ },
60026
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
60027
+ },
60028
+ {
60029
+ "kind": "variable",
60030
+ "name": "OPERATOR_DISPLAY_LABEL",
60031
+ "type": {
60032
+ "text": "Record<CriteriaOperator, string>"
60033
+ },
60034
+ "default": "{\n contains: 'contains',\n equals: '=',\n startsWith: 'starts with',\n endsWith: 'ends with',\n notEqual: '≠',\n greaterThan: '>',\n lessThan: '<',\n greaterThanOrEqual: '≥',\n lessThanOrEqual: '≤',\n dateIsToday: 'is today',\n dateIsAfter: 'after',\n dateIsBefore: 'before',\n dateIsEqual: '=',\n dateIsGreaterEqual: '≥',\n dateIsLessEqual: '≤',\n dateTimeIsAfter: 'after',\n dateTimeIsBefore: 'before',\n dateTimeIsGreaterEqual: '≥',\n dateTimeIsLessEqual: '≤',\n}"
60035
+ }
60036
+ ],
60037
+ "exports": [
60038
+ {
60039
+ "kind": "js",
60040
+ "name": "groupsToCriteria",
60041
+ "declaration": {
60042
+ "name": "groupsToCriteria",
60043
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60044
+ }
60045
+ },
60046
+ {
60047
+ "kind": "js",
60048
+ "name": "STRING_OPERATORS",
60049
+ "declaration": {
60050
+ "name": "STRING_OPERATORS",
60051
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60052
+ }
60053
+ },
60054
+ {
60055
+ "kind": "js",
60056
+ "name": "NUMERIC_OPERATORS",
60057
+ "declaration": {
60058
+ "name": "NUMERIC_OPERATORS",
60059
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60060
+ }
60061
+ },
60062
+ {
60063
+ "kind": "js",
60064
+ "name": "DATE_OPERATORS",
60065
+ "declaration": {
60066
+ "name": "DATE_OPERATORS",
60067
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60068
+ }
60069
+ },
60070
+ {
60071
+ "kind": "js",
60072
+ "name": "DATETIME_OPERATORS",
60073
+ "declaration": {
60074
+ "name": "DATETIME_OPERATORS",
60075
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60076
+ }
60077
+ },
60078
+ {
60079
+ "kind": "js",
60080
+ "name": "OPERATOR_DISPLAY_LABEL",
60081
+ "declaration": {
60082
+ "name": "OPERATOR_DISPLAY_LABEL",
60083
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60084
+ }
60085
+ }
60086
+ ]
60087
+ },
60088
+ {
60089
+ "kind": "javascript-module",
60090
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
60091
+ "declarations": [
60092
+ {
60093
+ "kind": "function",
60094
+ "name": "validateClauses",
60095
+ "return": {
60096
+ "type": {
60097
+ "text": "ValidationResult"
60098
+ }
60099
+ },
60100
+ "parameters": [
60101
+ {
60102
+ "name": "clauses",
60103
+ "type": {
60104
+ "text": "CriteriaClause[]"
60105
+ }
60106
+ },
60107
+ {
60108
+ "name": "fieldMetadata",
60109
+ "type": {
60110
+ "text": "MetadataDetail[] | string[]"
60111
+ }
60112
+ }
60113
+ ]
60114
+ },
60115
+ {
60116
+ "kind": "function",
60117
+ "name": "validateGroups",
60118
+ "return": {
60119
+ "type": {
60120
+ "text": "GroupsValidationResult"
60121
+ }
60122
+ },
60123
+ "parameters": [
60124
+ {
60125
+ "name": "groups",
60126
+ "type": {
60127
+ "text": "CriteriaGroup[]"
60128
+ }
60129
+ },
60130
+ {
60131
+ "name": "fieldMetadata",
60132
+ "type": {
60133
+ "text": "MetadataDetail[] | string[]"
60134
+ }
60135
+ }
60136
+ ],
60137
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
60138
+ }
60139
+ ],
60140
+ "exports": [
60141
+ {
60142
+ "kind": "js",
60143
+ "name": "validateClauses",
60144
+ "declaration": {
60145
+ "name": "validateClauses",
60146
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60147
+ }
60148
+ },
60149
+ {
60150
+ "kind": "js",
60151
+ "name": "validateGroups",
60152
+ "declaration": {
60153
+ "name": "validateGroups",
60154
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60155
+ }
60156
+ }
60157
+ ]
60158
+ },
59927
60159
  {
59928
60160
  "kind": "javascript-module",
59929
60161
  "path": "src/_config/styles/colors.ts",
@@ -61296,197 +61528,6 @@
61296
61528
  "declarations": [],
61297
61529
  "exports": []
61298
61530
  },
61299
- {
61300
- "kind": "javascript-module",
61301
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
61302
- "declarations": [],
61303
- "exports": []
61304
- },
61305
- {
61306
- "kind": "javascript-module",
61307
- "path": "src/ai-criteria-search/validation/operator-map.ts",
61308
- "declarations": [
61309
- {
61310
- "kind": "function",
61311
- "name": "groupsToCriteria",
61312
- "return": {
61313
- "type": {
61314
- "text": "string"
61315
- }
61316
- },
61317
- "parameters": [
61318
- {
61319
- "name": "groups",
61320
- "type": {
61321
- "text": "CriteriaGroup[]"
61322
- }
61323
- }
61324
- ],
61325
- "description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
61326
- },
61327
- {
61328
- "kind": "variable",
61329
- "name": "STRING_OPERATORS",
61330
- "type": {
61331
- "text": "CriteriaOperator[]"
61332
- },
61333
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
61334
- },
61335
- {
61336
- "kind": "variable",
61337
- "name": "NUMERIC_OPERATORS",
61338
- "type": {
61339
- "text": "CriteriaOperator[]"
61340
- },
61341
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
61342
- },
61343
- {
61344
- "kind": "variable",
61345
- "name": "DATE_OPERATORS",
61346
- "type": {
61347
- "text": "CriteriaOperator[]"
61348
- },
61349
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
61350
- },
61351
- {
61352
- "kind": "variable",
61353
- "name": "DATETIME_OPERATORS",
61354
- "type": {
61355
- "text": "CriteriaOperator[]"
61356
- },
61357
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
61358
- },
61359
- {
61360
- "kind": "variable",
61361
- "name": "OPERATOR_DISPLAY_LABEL",
61362
- "type": {
61363
- "text": "Record<CriteriaOperator, string>"
61364
- },
61365
- "default": "{\n contains: 'contains',\n equals: '=',\n startsWith: 'starts with',\n endsWith: 'ends with',\n notEqual: '≠',\n greaterThan: '>',\n lessThan: '<',\n greaterThanOrEqual: '≥',\n lessThanOrEqual: '≤',\n dateIsToday: 'is today',\n dateIsAfter: 'after',\n dateIsBefore: 'before',\n dateIsEqual: '=',\n dateIsGreaterEqual: '≥',\n dateIsLessEqual: '≤',\n dateTimeIsAfter: 'after',\n dateTimeIsBefore: 'before',\n dateTimeIsGreaterEqual: '≥',\n dateTimeIsLessEqual: '≤',\n}"
61366
- }
61367
- ],
61368
- "exports": [
61369
- {
61370
- "kind": "js",
61371
- "name": "groupsToCriteria",
61372
- "declaration": {
61373
- "name": "groupsToCriteria",
61374
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61375
- }
61376
- },
61377
- {
61378
- "kind": "js",
61379
- "name": "STRING_OPERATORS",
61380
- "declaration": {
61381
- "name": "STRING_OPERATORS",
61382
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61383
- }
61384
- },
61385
- {
61386
- "kind": "js",
61387
- "name": "NUMERIC_OPERATORS",
61388
- "declaration": {
61389
- "name": "NUMERIC_OPERATORS",
61390
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61391
- }
61392
- },
61393
- {
61394
- "kind": "js",
61395
- "name": "DATE_OPERATORS",
61396
- "declaration": {
61397
- "name": "DATE_OPERATORS",
61398
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61399
- }
61400
- },
61401
- {
61402
- "kind": "js",
61403
- "name": "DATETIME_OPERATORS",
61404
- "declaration": {
61405
- "name": "DATETIME_OPERATORS",
61406
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61407
- }
61408
- },
61409
- {
61410
- "kind": "js",
61411
- "name": "OPERATOR_DISPLAY_LABEL",
61412
- "declaration": {
61413
- "name": "OPERATOR_DISPLAY_LABEL",
61414
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61415
- }
61416
- }
61417
- ]
61418
- },
61419
- {
61420
- "kind": "javascript-module",
61421
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
61422
- "declarations": [
61423
- {
61424
- "kind": "function",
61425
- "name": "validateClauses",
61426
- "return": {
61427
- "type": {
61428
- "text": "ValidationResult"
61429
- }
61430
- },
61431
- "parameters": [
61432
- {
61433
- "name": "clauses",
61434
- "type": {
61435
- "text": "CriteriaClause[]"
61436
- }
61437
- },
61438
- {
61439
- "name": "fieldMetadata",
61440
- "type": {
61441
- "text": "MetadataDetail[] | string[]"
61442
- }
61443
- }
61444
- ]
61445
- },
61446
- {
61447
- "kind": "function",
61448
- "name": "validateGroups",
61449
- "return": {
61450
- "type": {
61451
- "text": "GroupsValidationResult"
61452
- }
61453
- },
61454
- "parameters": [
61455
- {
61456
- "name": "groups",
61457
- "type": {
61458
- "text": "CriteriaGroup[]"
61459
- }
61460
- },
61461
- {
61462
- "name": "fieldMetadata",
61463
- "type": {
61464
- "text": "MetadataDetail[] | string[]"
61465
- }
61466
- }
61467
- ],
61468
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
61469
- }
61470
- ],
61471
- "exports": [
61472
- {
61473
- "kind": "js",
61474
- "name": "validateClauses",
61475
- "declaration": {
61476
- "name": "validateClauses",
61477
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61478
- }
61479
- },
61480
- {
61481
- "kind": "js",
61482
- "name": "validateGroups",
61483
- "declaration": {
61484
- "name": "validateGroups",
61485
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61486
- }
61487
- }
61488
- ]
61489
- },
61490
61531
  {
61491
61532
  "kind": "javascript-module",
61492
61533
  "path": "src/environment-indicator/utils/configure.ts",