@genesislcap/foundation-ui 14.456.2 → 14.456.3-alpha-d42d86c.0

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.
@@ -934,66 +934,44 @@
934
934
  },
935
935
  {
936
936
  "kind": "javascript-module",
937
- "path": "src/accordion-item/accordion-item.styles.ts",
937
+ "path": "src/_common/affix-mixin.ts",
938
938
  "declarations": [
939
939
  {
940
- "kind": "function",
941
- "name": "foundationAccordionItemStyles",
942
- "return": {
943
- "type": {
944
- "text": "ElementStyles"
945
- }
946
- },
947
- "parameters": [
940
+ "kind": "mixin",
941
+ "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.",
942
+ "name": "AffixMixin",
943
+ "members": [
948
944
  {
949
- "name": "context",
945
+ "kind": "field",
946
+ "name": "prefix",
950
947
  "type": {
951
- "text": "ElementDefinitionContext"
952
- }
948
+ "text": "string"
949
+ },
950
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
953
951
  },
954
952
  {
955
- "name": "definition",
953
+ "kind": "field",
954
+ "name": "suffix",
956
955
  "type": {
957
- "text": "FoundationElementDefinition"
958
- }
959
- }
960
- ]
961
- }
962
- ],
963
- "exports": [
964
- {
965
- "kind": "js",
966
- "name": "foundationAccordionItemStyles",
967
- "declaration": {
968
- "name": "foundationAccordionItemStyles",
969
- "module": "src/accordion-item/accordion-item.styles.ts"
970
- }
971
- }
972
- ]
973
- },
974
- {
975
- "kind": "javascript-module",
976
- "path": "src/accordion-item/accordion-item.template.ts",
977
- "declarations": [
978
- {
979
- "kind": "function",
980
- "name": "foundationAccordionItemTemplate",
981
- "return": {
982
- "type": {
983
- "text": "ViewTemplate<AccordionItem>"
984
- }
985
- },
986
- "parameters": [
956
+ "text": "string"
957
+ },
958
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
959
+ },
987
960
  {
988
- "name": "context",
961
+ "kind": "field",
962
+ "name": "hideAffixFromScreenReader",
989
963
  "type": {
990
- "text": "ElementDefinitionContext"
991
- }
992
- },
964
+ "text": "boolean"
965
+ },
966
+ "default": "false",
967
+ "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."
968
+ }
969
+ ],
970
+ "parameters": [
993
971
  {
994
- "name": "definition",
972
+ "name": "Base",
995
973
  "type": {
996
- "text": "FoundationElementDefinition"
974
+ "text": "TBase"
997
975
  }
998
976
  }
999
977
  ]
@@ -1002,118 +980,170 @@
1002
980
  "exports": [
1003
981
  {
1004
982
  "kind": "js",
1005
- "name": "foundationAccordionItemTemplate",
983
+ "name": "AffixMixin",
1006
984
  "declaration": {
1007
- "name": "foundationAccordionItemTemplate",
1008
- "module": "src/accordion-item/accordion-item.template.ts"
985
+ "name": "AffixMixin",
986
+ "module": "src/_common/affix-mixin.ts"
1009
987
  }
1010
988
  }
1011
989
  ]
1012
990
  },
1013
991
  {
1014
992
  "kind": "javascript-module",
1015
- "path": "src/accordion-item/accordion-item.ts",
993
+ "path": "src/_common/base-file-component.ts",
1016
994
  "declarations": [
1017
995
  {
1018
996
  "kind": "class",
1019
- "description": "",
1020
- "name": "AccordionItem",
1021
- "superclass": {
1022
- "name": "FASTAccordionItem",
1023
- "package": "@microsoft/fast-components"
1024
- },
1025
- "tagName": "%%prefix%%-accordion-item",
1026
- "customElement": true,
1027
- "attributes": [
997
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
998
+ "name": "BaseFileComponent",
999
+ "members": [
1028
1000
  {
1029
- "name": "heading-level",
1001
+ "kind": "field",
1002
+ "name": "fileInput",
1030
1003
  "type": {
1031
- "text": "1 | 2 | 3 | 4 | 5 | 6"
1004
+ "text": "HTMLInputElement"
1032
1005
  },
1033
- "default": "2",
1034
- "description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
1035
- "fieldName": "headinglevel",
1036
- "inheritedFrom": {
1037
- "name": "AccordionItem",
1038
- "module": "src/accordion-item/accordion-item.ts"
1039
- }
1006
+ "privacy": "public"
1040
1007
  },
1041
1008
  {
1009
+ "kind": "field",
1010
+ "name": "selectedFile",
1042
1011
  "type": {
1043
- "text": "boolean"
1012
+ "text": "File | null"
1044
1013
  },
1045
- "default": "false",
1046
- "description": "Expands or collapses the item.",
1047
- "fieldName": "expanded",
1048
- "inheritedFrom": {
1049
- "name": "AccordionItem",
1050
- "module": "src/accordion-item/accordion-item.ts"
1051
- }
1014
+ "privacy": "protected",
1015
+ "default": "null"
1052
1016
  },
1053
1017
  {
1054
- "name": "id",
1018
+ "kind": "field",
1019
+ "name": "label",
1055
1020
  "type": {
1056
1021
  "text": "string"
1057
- },
1058
- "description": "The item ID",
1059
- "fieldName": "id",
1060
- "inheritedFrom": {
1061
- "name": "AccordionItem",
1062
- "module": "src/accordion-item/accordion-item.ts"
1063
1022
  }
1064
- }
1065
- ],
1066
- "members": [
1023
+ },
1067
1024
  {
1068
1025
  "kind": "field",
1069
- "name": "headinglevel",
1026
+ "name": "accept",
1070
1027
  "type": {
1071
- "text": "1 | 2 | 3 | 4 | 5 | 6"
1028
+ "text": "string"
1072
1029
  },
1073
- "privacy": "public",
1074
- "default": "2",
1075
- "description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
1076
- "inheritedFrom": {
1077
- "name": "AccordionItem",
1078
- "module": "src/accordion-item/accordion-item.ts"
1079
- }
1030
+ "default": "''"
1080
1031
  },
1081
1032
  {
1082
1033
  "kind": "field",
1083
- "name": "expanded",
1034
+ "name": "fileSizeLimitBytes",
1035
+ "default": "10_485_760",
1084
1036
  "type": {
1085
- "text": "boolean"
1086
- },
1087
- "privacy": "public",
1088
- "default": "false",
1089
- "description": "Expands or collapses the item.",
1090
- "inheritedFrom": {
1091
- "name": "AccordionItem",
1092
- "module": "src/accordion-item/accordion-item.ts"
1037
+ "text": "number"
1093
1038
  }
1094
1039
  },
1095
1040
  {
1096
1041
  "kind": "field",
1097
- "name": "id",
1042
+ "name": "fileName",
1098
1043
  "type": {
1099
1044
  "text": "string"
1100
1045
  },
1101
- "privacy": "public",
1102
- "description": "The item ID",
1103
- "inheritedFrom": {
1104
- "name": "AccordionItem",
1105
- "module": "src/accordion-item/accordion-item.ts"
1106
- }
1046
+ "default": "''"
1107
1047
  },
1108
1048
  {
1109
1049
  "kind": "field",
1110
- "name": "change",
1111
- "privacy": "private",
1112
- "inheritedFrom": {
1113
- "name": "AccordionItem",
1114
- "module": "src/accordion-item/accordion-item.ts"
1050
+ "name": "isProcessing",
1051
+ "type": {
1052
+ "text": "boolean"
1053
+ },
1054
+ "default": "false"
1055
+ },
1056
+ {
1057
+ "kind": "method",
1058
+ "name": "handleClick",
1059
+ "privacy": "public",
1060
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
1061
+ },
1062
+ {
1063
+ "kind": "method",
1064
+ "name": "onInputChange",
1065
+ "privacy": "public",
1066
+ "parameters": [
1067
+ {
1068
+ "name": "e",
1069
+ "type": {
1070
+ "text": "Event"
1071
+ },
1072
+ "description": "The change event from the file input"
1073
+ }
1074
+ ],
1075
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
1076
+ },
1077
+ {
1078
+ "kind": "method",
1079
+ "name": "clearSelection",
1080
+ "privacy": "public",
1081
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
1082
+ },
1083
+ {
1084
+ "kind": "method",
1085
+ "name": "getSelectedFile",
1086
+ "privacy": "public",
1087
+ "description": "Gets the currently selected file object",
1088
+ "return": {
1089
+ "type": {
1090
+ "text": ""
1091
+ }
1115
1092
  }
1116
1093
  },
1094
+ {
1095
+ "kind": "method",
1096
+ "name": "showError",
1097
+ "privacy": "protected",
1098
+ "parameters": [
1099
+ {
1100
+ "name": "title",
1101
+ "type": {
1102
+ "text": "string"
1103
+ },
1104
+ "description": "The error title"
1105
+ },
1106
+ {
1107
+ "name": "message",
1108
+ "type": {
1109
+ "text": "string"
1110
+ },
1111
+ "description": "The error message"
1112
+ }
1113
+ ],
1114
+ "description": "Shows an error notification using the unified error handling system"
1115
+ },
1116
+ {
1117
+ "kind": "method",
1118
+ "name": "onFileSelected",
1119
+ "privacy": "protected",
1120
+ "return": {
1121
+ "type": {
1122
+ "text": "void"
1123
+ }
1124
+ },
1125
+ "parameters": [
1126
+ {
1127
+ "name": "files",
1128
+ "type": {
1129
+ "text": "File[]"
1130
+ },
1131
+ "description": "The selected file"
1132
+ }
1133
+ ],
1134
+ "description": "Abstract method called when a file is selected"
1135
+ },
1136
+ {
1137
+ "kind": "method",
1138
+ "name": "onFileCleared",
1139
+ "privacy": "protected",
1140
+ "return": {
1141
+ "type": {
1142
+ "text": "void"
1143
+ }
1144
+ },
1145
+ "description": "Abstract method called when file selection is cleared"
1146
+ },
1117
1147
  {
1118
1148
  "kind": "field",
1119
1149
  "name": "_presentation",
@@ -1228,76 +1258,110 @@
1228
1258
  ],
1229
1259
  "events": [
1230
1260
  {
1231
- "description": "Fires a custom 'change' event when the button is invoked",
1232
- "name": "change",
1233
- "inheritedFrom": {
1234
- "name": "AccordionItem",
1235
- "module": "src/accordion-item/accordion-item.ts"
1236
- }
1261
+ "description": "Fired when file size validation fails",
1262
+ "name": "error"
1263
+ },
1264
+ {
1265
+ "description": "Fired when selection is cleared",
1266
+ "name": "clear"
1237
1267
  }
1238
- ]
1239
- },
1240
- {
1241
- "kind": "variable",
1242
- "name": "foundationAccordionItemShadowOptions",
1243
- "type": {
1244
- "text": "ShadowRootInit"
1245
- },
1246
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1247
- },
1248
- {
1249
- "kind": "variable",
1250
- "name": "defaultAccordionItemConfig",
1251
- "type": {
1252
- "text": "object"
1253
- },
1254
- "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}"
1255
- },
1256
- {
1257
- "kind": "variable",
1258
- "name": "foundationAccordionItem",
1259
- "description": "The Foundation Accordion Item",
1260
- "privacy": "public"
1268
+ ],
1269
+ "attributes": [
1270
+ {
1271
+ "name": "label",
1272
+ "type": {
1273
+ "text": "string"
1274
+ },
1275
+ "fieldName": "label"
1276
+ },
1277
+ {
1278
+ "name": "accept",
1279
+ "type": {
1280
+ "text": "string"
1281
+ },
1282
+ "default": "''",
1283
+ "fieldName": "accept"
1284
+ },
1285
+ {
1286
+ "name": "file-size-limit-bytes",
1287
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
1288
+ "resolveInitializer": {
1289
+ "module": "src/_common/base-file-component.ts"
1290
+ },
1291
+ "fieldName": "fileSizeLimitBytes"
1292
+ }
1293
+ ],
1294
+ "superclass": {
1295
+ "name": "FoundationElement",
1296
+ "package": "@microsoft/fast-foundation"
1297
+ }
1261
1298
  }
1262
1299
  ],
1263
1300
  "exports": [
1264
1301
  {
1265
1302
  "kind": "js",
1266
- "name": "AccordionItem",
1303
+ "name": "BaseFileComponent",
1267
1304
  "declaration": {
1268
- "name": "AccordionItem",
1269
- "module": "src/accordion-item/accordion-item.ts"
1305
+ "name": "BaseFileComponent",
1306
+ "module": "src/_common/base-file-component.ts"
1270
1307
  }
1271
- },
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "kind": "javascript-module",
1313
+ "path": "src/_common/field-styles.ts",
1314
+ "declarations": [
1272
1315
  {
1273
- "kind": "js",
1274
- "name": "foundationAccordionItemShadowOptions",
1275
- "declaration": {
1276
- "name": "foundationAccordionItemShadowOptions",
1277
- "module": "src/accordion-item/accordion-item.ts"
1278
- }
1279
- },
1316
+ "kind": "variable",
1317
+ "name": "sharedFieldStyles",
1318
+ "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`"
1319
+ }
1320
+ ],
1321
+ "exports": [
1280
1322
  {
1281
1323
  "kind": "js",
1282
- "name": "defaultAccordionItemConfig",
1324
+ "name": "sharedFieldStyles",
1283
1325
  "declaration": {
1284
- "name": "defaultAccordionItemConfig",
1285
- "module": "src/accordion-item/accordion-item.ts"
1326
+ "name": "sharedFieldStyles",
1327
+ "module": "src/_common/field-styles.ts"
1286
1328
  }
1287
- },
1329
+ }
1330
+ ]
1331
+ },
1332
+ {
1333
+ "kind": "javascript-module",
1334
+ "path": "src/_common/icons.ts",
1335
+ "declarations": [
1336
+ {
1337
+ "kind": "function",
1338
+ "name": "closeIcon",
1339
+ "parameters": [
1340
+ {
1341
+ "name": "slot",
1342
+ "default": "'start'"
1343
+ },
1344
+ {
1345
+ "name": "fill",
1346
+ "default": "'#879ba6'"
1347
+ }
1348
+ ]
1349
+ }
1350
+ ],
1351
+ "exports": [
1288
1352
  {
1289
1353
  "kind": "js",
1290
- "name": "foundationAccordionItem",
1354
+ "name": "closeIcon",
1291
1355
  "declaration": {
1292
- "name": "foundationAccordionItem",
1293
- "module": "src/accordion-item/accordion-item.ts"
1356
+ "name": "closeIcon",
1357
+ "module": "src/_common/icons.ts"
1294
1358
  }
1295
1359
  }
1296
1360
  ]
1297
1361
  },
1298
1362
  {
1299
1363
  "kind": "javascript-module",
1300
- "path": "src/accordion-item/index.ts",
1364
+ "path": "src/_common/index.ts",
1301
1365
  "declarations": [],
1302
1366
  "exports": [
1303
1367
  {
@@ -1305,7 +1369,7 @@
1305
1369
  "name": "*",
1306
1370
  "declaration": {
1307
1371
  "name": "*",
1308
- "package": "./accordion-item.template"
1372
+ "package": "./affix-mixin"
1309
1373
  }
1310
1374
  },
1311
1375
  {
@@ -1313,7 +1377,7 @@
1313
1377
  "name": "*",
1314
1378
  "declaration": {
1315
1379
  "name": "*",
1316
- "package": "./accordion-item.styles"
1380
+ "package": "./base-file-component"
1317
1381
  }
1318
1382
  },
1319
1383
  {
@@ -1321,18 +1385,26 @@
1321
1385
  "name": "*",
1322
1386
  "declaration": {
1323
1387
  "name": "*",
1324
- "package": "./accordion-item"
1388
+ "package": "./field-styles"
1389
+ }
1390
+ },
1391
+ {
1392
+ "kind": "js",
1393
+ "name": "*",
1394
+ "declaration": {
1395
+ "name": "*",
1396
+ "package": "./icons"
1325
1397
  }
1326
1398
  }
1327
1399
  ]
1328
1400
  },
1329
1401
  {
1330
1402
  "kind": "javascript-module",
1331
- "path": "src/actions-menu/actions-menu.styles.ts",
1403
+ "path": "src/accordion/accordion.styles.ts",
1332
1404
  "declarations": [
1333
1405
  {
1334
1406
  "kind": "function",
1335
- "name": "actionsMenuBaseStyles",
1407
+ "name": "foundationAccordionStyles",
1336
1408
  "return": {
1337
1409
  "type": {
1338
1410
  "text": "ElementStyles"
@@ -1352,13 +1424,29 @@
1352
1424
  }
1353
1425
  }
1354
1426
  ]
1355
- },
1427
+ }
1428
+ ],
1429
+ "exports": [
1430
+ {
1431
+ "kind": "js",
1432
+ "name": "foundationAccordionStyles",
1433
+ "declaration": {
1434
+ "name": "foundationAccordionStyles",
1435
+ "module": "src/accordion/accordion.styles.ts"
1436
+ }
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ "kind": "javascript-module",
1442
+ "path": "src/accordion/accordion.template.ts",
1443
+ "declarations": [
1356
1444
  {
1357
1445
  "kind": "function",
1358
- "name": "foundationActionsMenuStyles",
1446
+ "name": "foundationAccordionTemplate",
1359
1447
  "return": {
1360
1448
  "type": {
1361
- "text": "ElementStyles"
1449
+ "text": "ViewTemplate<Accordion>"
1362
1450
  }
1363
1451
  },
1364
1452
  "parameters": [
@@ -1380,269 +1468,238 @@
1380
1468
  "exports": [
1381
1469
  {
1382
1470
  "kind": "js",
1383
- "name": "actionsMenuBaseStyles",
1384
- "declaration": {
1385
- "name": "actionsMenuBaseStyles",
1386
- "module": "src/actions-menu/actions-menu.styles.ts"
1387
- }
1388
- },
1389
- {
1390
- "kind": "js",
1391
- "name": "foundationActionsMenuStyles",
1471
+ "name": "foundationAccordionTemplate",
1392
1472
  "declaration": {
1393
- "name": "foundationActionsMenuStyles",
1394
- "module": "src/actions-menu/actions-menu.styles.ts"
1473
+ "name": "foundationAccordionTemplate",
1474
+ "module": "src/accordion/accordion.template.ts"
1395
1475
  }
1396
1476
  }
1397
1477
  ]
1398
1478
  },
1399
1479
  {
1400
1480
  "kind": "javascript-module",
1401
- "path": "src/actions-menu/actions-menu.template.ts",
1481
+ "path": "src/accordion/accordion.ts",
1402
1482
  "declarations": [
1403
1483
  {
1404
- "kind": "function",
1405
- "name": "menuTemplate",
1406
- "parameters": [
1484
+ "kind": "class",
1485
+ "description": "",
1486
+ "name": "Accordion",
1487
+ "superclass": {
1488
+ "name": "FASTAccordion",
1489
+ "package": "@microsoft/fast-foundation"
1490
+ },
1491
+ "tagName": "%%prefix%%-accordion",
1492
+ "customElement": true,
1493
+ "attributes": [
1407
1494
  {
1408
- "name": "prefix",
1495
+ "name": "expand-mode",
1409
1496
  "type": {
1410
- "text": "string"
1497
+ "text": "AccordionExpandMode"
1498
+ },
1499
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1500
+ "fieldName": "expandmode",
1501
+ "inheritedFrom": {
1502
+ "name": "Accordion",
1503
+ "module": "src/accordion/accordion.ts"
1411
1504
  }
1412
1505
  }
1413
- ]
1414
- },
1415
- {
1416
- "kind": "function",
1417
- "name": "singleOptionTemplate",
1418
- "parameters": [
1506
+ ],
1507
+ "members": [
1419
1508
  {
1420
- "name": "prefix",
1509
+ "kind": "field",
1510
+ "name": "expandmode",
1421
1511
  "type": {
1422
- "text": "string"
1423
- }
1424
- }
1425
- ]
1426
- },
1427
- {
1428
- "kind": "variable",
1429
- "name": "foundationActionsMenuTemplate",
1430
- "type": {
1431
- "text": "ViewTemplate<ActionsMenu>"
1432
- },
1433
- "default": "html`\n <div\n class=\"actions-container${(x) => (x.isVertical ? ' actions-vertical' : '')}\"\n part=\"actions-container\"\n >\n ${(x) => x.getTemplate(getPrefix(x))}\n </div>\n`"
1434
- }
1435
- ],
1436
- "exports": [
1437
- {
1438
- "kind": "js",
1439
- "name": "menuTemplate",
1440
- "declaration": {
1441
- "name": "menuTemplate",
1442
- "module": "src/actions-menu/actions-menu.template.ts"
1443
- }
1444
- },
1445
- {
1446
- "kind": "js",
1447
- "name": "singleOptionTemplate",
1448
- "declaration": {
1449
- "name": "singleOptionTemplate",
1450
- "module": "src/actions-menu/actions-menu.template.ts"
1451
- }
1452
- },
1453
- {
1454
- "kind": "js",
1455
- "name": "foundationActionsMenuTemplate",
1456
- "declaration": {
1457
- "name": "foundationActionsMenuTemplate",
1458
- "module": "src/actions-menu/actions-menu.template.ts"
1459
- }
1460
- }
1461
- ]
1462
- },
1463
- {
1464
- "kind": "javascript-module",
1465
- "path": "src/actions-menu/actions-menu.ts",
1466
- "declarations": [
1467
- {
1468
- "kind": "class",
1469
- "description": "",
1470
- "name": "ActionsMenu",
1471
- "members": [
1472
- {
1473
- "kind": "field",
1474
- "name": "actions",
1475
- "type": {
1476
- "text": "ActionMenuItem[]"
1512
+ "text": "AccordionExpandMode"
1513
+ },
1514
+ "privacy": "public",
1515
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1516
+ "inheritedFrom": {
1517
+ "name": "Accordion",
1518
+ "module": "src/accordion/accordion.ts"
1477
1519
  }
1478
1520
  },
1479
1521
  {
1480
1522
  "kind": "field",
1481
- "name": "isVertical",
1523
+ "name": "activeid",
1482
1524
  "type": {
1483
- "text": "boolean"
1525
+ "text": "string | null"
1484
1526
  },
1485
- "default": "false"
1527
+ "privacy": "private",
1528
+ "inheritedFrom": {
1529
+ "name": "Accordion",
1530
+ "module": "src/accordion/accordion.ts"
1531
+ }
1486
1532
  },
1487
1533
  {
1488
1534
  "kind": "field",
1489
- "name": "addDefaultActions",
1535
+ "name": "activeItemIndex",
1490
1536
  "type": {
1491
- "text": "boolean"
1537
+ "text": "number"
1492
1538
  },
1493
- "default": "true"
1539
+ "privacy": "private",
1540
+ "default": "0",
1541
+ "inheritedFrom": {
1542
+ "name": "Accordion",
1543
+ "module": "src/accordion/accordion.ts"
1544
+ }
1494
1545
  },
1495
1546
  {
1496
1547
  "kind": "field",
1497
- "name": "autoCloseOnAction",
1548
+ "name": "accordionIds",
1498
1549
  "type": {
1499
- "text": "boolean"
1550
+ "text": "Array<string | null>"
1500
1551
  },
1501
- "default": "true"
1502
- },
1503
- {
1504
- "kind": "field",
1505
- "name": "classNames",
1506
- "type": {
1507
- "text": "string"
1552
+ "privacy": "private",
1553
+ "inheritedFrom": {
1554
+ "name": "Accordion",
1555
+ "module": "src/accordion/accordion.ts"
1508
1556
  }
1509
1557
  },
1510
1558
  {
1511
1559
  "kind": "field",
1512
- "name": "definition",
1513
- "type": {
1514
- "text": "any"
1560
+ "name": "change",
1561
+ "privacy": "private",
1562
+ "inheritedFrom": {
1563
+ "name": "Accordion",
1564
+ "module": "src/accordion/accordion.ts"
1515
1565
  }
1516
1566
  },
1517
1567
  {
1518
- "kind": "field",
1519
- "name": "name",
1520
- "type": {
1521
- "text": "string"
1522
- },
1523
- "default": "'Actions'"
1524
- },
1525
- {
1526
- "kind": "field",
1527
- "name": "open",
1528
- "type": {
1529
- "text": "boolean"
1568
+ "kind": "method",
1569
+ "name": "findExpandedItem",
1570
+ "privacy": "private",
1571
+ "return": {
1572
+ "type": {
1573
+ "text": "AccordionItem | null"
1574
+ }
1530
1575
  },
1531
- "default": "false"
1532
- },
1533
- {
1534
- "kind": "field",
1535
- "name": "buttonAppearance",
1536
- "type": {
1537
- "text": "string"
1576
+ "inheritedFrom": {
1577
+ "name": "Accordion",
1578
+ "module": "src/accordion/accordion.ts"
1538
1579
  }
1539
1580
  },
1540
1581
  {
1541
1582
  "kind": "field",
1542
- "name": "hideDisabled",
1543
- "type": {
1544
- "text": "boolean"
1545
- },
1546
- "default": "false"
1583
+ "name": "setItems",
1584
+ "privacy": "private",
1585
+ "inheritedFrom": {
1586
+ "name": "Accordion",
1587
+ "module": "src/accordion/accordion.ts"
1588
+ }
1547
1589
  },
1548
1590
  {
1549
- "kind": "field",
1550
- "name": "hideMenuSingleOption",
1551
- "type": {
1552
- "text": "boolean"
1591
+ "kind": "method",
1592
+ "name": "resetItems",
1593
+ "privacy": "private",
1594
+ "return": {
1595
+ "type": {
1596
+ "text": "void"
1597
+ }
1553
1598
  },
1554
- "default": "false"
1599
+ "inheritedFrom": {
1600
+ "name": "Accordion",
1601
+ "module": "src/accordion/accordion.ts"
1602
+ }
1555
1603
  },
1556
1604
  {
1557
1605
  "kind": "field",
1558
- "name": "singleOption",
1559
- "type": {
1560
- "text": "ActionMenuItem"
1606
+ "name": "removeItemListeners",
1607
+ "privacy": "private",
1608
+ "inheritedFrom": {
1609
+ "name": "Accordion",
1610
+ "module": "src/accordion/accordion.ts"
1561
1611
  }
1562
1612
  },
1563
1613
  {
1564
1614
  "kind": "field",
1565
- "name": "actionsMenu",
1566
- "type": {
1567
- "text": "HTMLElement"
1615
+ "name": "activeItemChange",
1616
+ "privacy": "private",
1617
+ "inheritedFrom": {
1618
+ "name": "Accordion",
1619
+ "module": "src/accordion/accordion.ts"
1568
1620
  }
1569
1621
  },
1570
1622
  {
1571
1623
  "kind": "method",
1572
- "name": "definitionChanged",
1573
- "privacy": "protected",
1574
- "parameters": [
1575
- {
1576
- "name": "oldValue",
1577
- "type": {
1578
- "text": "any"
1579
- }
1580
- },
1581
- {
1582
- "name": "newValue",
1583
- "type": {
1584
- "text": "any"
1585
- }
1624
+ "name": "getItemIds",
1625
+ "privacy": "private",
1626
+ "return": {
1627
+ "type": {
1628
+ "text": "Array<string | null>"
1586
1629
  }
1587
- ]
1588
- },
1589
- {
1590
- "kind": "method",
1591
- "name": "openChanged",
1592
- "privacy": "protected"
1593
- },
1594
- {
1595
- "kind": "method",
1596
- "name": "toggleActionsMenuVisibility"
1630
+ },
1631
+ "inheritedFrom": {
1632
+ "name": "Accordion",
1633
+ "module": "src/accordion/accordion.ts"
1634
+ }
1597
1635
  },
1598
1636
  {
1599
1637
  "kind": "method",
1600
- "name": "onActionMenuItemClick",
1601
- "parameters": [
1602
- {
1603
- "name": "callback",
1604
- "type": {
1605
- "text": "(rowData) => void | any"
1606
- }
1638
+ "name": "isSingleExpandMode",
1639
+ "privacy": "private",
1640
+ "return": {
1641
+ "type": {
1642
+ "text": "boolean"
1607
1643
  }
1608
- ]
1644
+ },
1645
+ "inheritedFrom": {
1646
+ "name": "Accordion",
1647
+ "module": "src/accordion/accordion.ts"
1648
+ }
1609
1649
  },
1610
1650
  {
1611
1651
  "kind": "field",
1612
- "name": "allActions",
1613
- "type": {
1614
- "text": "ActionMenuItem[]"
1615
- },
1616
- "readonly": true
1652
+ "name": "handleItemKeyDown",
1653
+ "privacy": "private",
1654
+ "inheritedFrom": {
1655
+ "name": "Accordion",
1656
+ "module": "src/accordion/accordion.ts"
1657
+ }
1617
1658
  },
1618
1659
  {
1619
1660
  "kind": "field",
1620
- "name": "rowData",
1621
- "readonly": true
1661
+ "name": "handleItemFocus",
1662
+ "privacy": "private",
1663
+ "inheritedFrom": {
1664
+ "name": "Accordion",
1665
+ "module": "src/accordion/accordion.ts"
1666
+ }
1622
1667
  },
1623
1668
  {
1624
1669
  "kind": "method",
1625
- "name": "getLabel",
1670
+ "name": "adjust",
1671
+ "privacy": "private",
1672
+ "return": {
1673
+ "type": {
1674
+ "text": "void"
1675
+ }
1676
+ },
1626
1677
  "parameters": [
1627
1678
  {
1628
- "name": "name",
1679
+ "name": "adjustment",
1629
1680
  "type": {
1630
- "text": "string | ((rowData: any) => string)"
1681
+ "text": "number"
1631
1682
  }
1632
1683
  }
1633
- ]
1684
+ ],
1685
+ "inheritedFrom": {
1686
+ "name": "Accordion",
1687
+ "module": "src/accordion/accordion.ts"
1688
+ }
1634
1689
  },
1635
1690
  {
1636
1691
  "kind": "method",
1637
- "name": "getTemplate",
1638
- "parameters": [
1639
- {
1640
- "name": "prefix",
1641
- "type": {
1642
- "text": "string"
1643
- }
1692
+ "name": "focusItem",
1693
+ "privacy": "private",
1694
+ "return": {
1695
+ "type": {
1696
+ "text": "void"
1644
1697
  }
1645
- ]
1698
+ },
1699
+ "inheritedFrom": {
1700
+ "name": "Accordion",
1701
+ "module": "src/accordion/accordion.ts"
1702
+ }
1646
1703
  },
1647
1704
  {
1648
1705
  "kind": "field",
@@ -1756,107 +1813,78 @@
1756
1813
  }
1757
1814
  }
1758
1815
  ],
1759
- "attributes": [
1760
- {
1761
- "name": "is-vertical",
1762
- "type": {
1763
- "text": "boolean"
1764
- },
1765
- "default": "false",
1766
- "fieldName": "isVertical"
1767
- },
1768
- {
1769
- "name": "add-default-actions",
1770
- "type": {
1771
- "text": "boolean"
1772
- },
1773
- "default": "true",
1774
- "fieldName": "addDefaultActions"
1775
- },
1776
- {
1777
- "name": "auto-close-on-action",
1778
- "type": {
1779
- "text": "boolean"
1780
- },
1781
- "default": "true",
1782
- "fieldName": "autoCloseOnAction"
1783
- },
1784
- {
1785
- "name": "name",
1786
- "type": {
1787
- "text": "string"
1788
- },
1789
- "default": "'Actions'",
1790
- "fieldName": "name"
1791
- },
1792
- {
1793
- "name": "open",
1794
- "type": {
1795
- "text": "boolean"
1796
- },
1797
- "default": "false",
1798
- "fieldName": "open"
1799
- },
1800
- {
1801
- "name": "buttonAppearance",
1802
- "type": {
1803
- "text": "string"
1804
- },
1805
- "fieldName": "buttonAppearance"
1806
- },
1807
- {
1808
- "name": "hide-disabled",
1809
- "type": {
1810
- "text": "boolean"
1811
- },
1812
- "default": "false",
1813
- "fieldName": "hideDisabled"
1814
- },
1816
+ "events": [
1815
1817
  {
1816
- "name": "hide-menu-single-option",
1817
- "type": {
1818
- "text": "boolean"
1819
- },
1820
- "default": "false",
1821
- "fieldName": "hideMenuSingleOption"
1818
+ "description": "Fires a custom 'change' event when the active item changes",
1819
+ "name": "change",
1820
+ "inheritedFrom": {
1821
+ "name": "Accordion",
1822
+ "module": "src/accordion/accordion.ts"
1823
+ }
1822
1824
  }
1823
- ],
1824
- "superclass": {
1825
- "name": "FoundationElement",
1826
- "package": "@microsoft/fast-foundation"
1825
+ ]
1826
+ },
1827
+ {
1828
+ "kind": "variable",
1829
+ "name": "foundationAccordionShadowOptions",
1830
+ "type": {
1831
+ "text": "ShadowRootInit"
1827
1832
  },
1828
- "tagName": "%%prefix%%-actions-menu",
1829
- "customElement": true
1833
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1830
1834
  },
1831
1835
  {
1832
1836
  "kind": "variable",
1833
- "name": "foundationActionsMenu",
1834
- "description": "The Foundation Actions Menu",
1837
+ "name": "defaultAccordionConfig",
1838
+ "type": {
1839
+ "text": "object"
1840
+ },
1841
+ "default": "{}"
1842
+ },
1843
+ {
1844
+ "kind": "variable",
1845
+ "name": "foundationAccordion",
1846
+ "description": "The Foundation Accordion",
1835
1847
  "privacy": "public"
1836
1848
  }
1837
1849
  ],
1838
1850
  "exports": [
1839
1851
  {
1840
1852
  "kind": "js",
1841
- "name": "ActionsMenu",
1853
+ "name": "Accordion",
1842
1854
  "declaration": {
1843
- "name": "ActionsMenu",
1844
- "module": "src/actions-menu/actions-menu.ts"
1855
+ "name": "Accordion",
1856
+ "module": "src/accordion/accordion.ts"
1845
1857
  }
1846
1858
  },
1847
1859
  {
1848
1860
  "kind": "js",
1849
- "name": "foundationActionsMenu",
1861
+ "name": "foundationAccordionShadowOptions",
1850
1862
  "declaration": {
1851
- "name": "foundationActionsMenu",
1852
- "module": "src/actions-menu/actions-menu.ts"
1863
+ "name": "foundationAccordionShadowOptions",
1864
+ "module": "src/accordion/accordion.ts"
1865
+ }
1866
+ },
1867
+ {
1868
+ "kind": "js",
1869
+ "name": "defaultAccordionConfig",
1870
+ "declaration": {
1871
+ "name": "defaultAccordionConfig",
1872
+ "module": "src/accordion/accordion.ts"
1873
+ }
1874
+ },
1875
+ {
1876
+ "kind": "js",
1877
+ "name": "foundationAccordion",
1878
+ "declaration": {
1879
+ "name": "foundationAccordion",
1880
+ "module": "src/accordion/accordion.ts"
1853
1881
  }
1854
1882
  }
1855
1883
  ]
1856
1884
  },
1857
1885
  {
1858
1886
  "kind": "javascript-module",
1859
- "path": "src/actions-menu/index.ts",
1887
+ "path": "src/accordion/index.ts",
1860
1888
  "declarations": [],
1861
1889
  "exports": [
1862
1890
  {
@@ -1864,7 +1892,7 @@
1864
1892
  "name": "*",
1865
1893
  "declaration": {
1866
1894
  "name": "*",
1867
- "package": "./actions-menu.styles"
1895
+ "package": "./accordion.template"
1868
1896
  }
1869
1897
  },
1870
1898
  {
@@ -1872,7 +1900,7 @@
1872
1900
  "name": "*",
1873
1901
  "declaration": {
1874
1902
  "name": "*",
1875
- "package": "./actions-menu.template"
1903
+ "package": "./accordion.styles"
1876
1904
  }
1877
1905
  },
1878
1906
  {
@@ -1880,51 +1908,104 @@
1880
1908
  "name": "*",
1881
1909
  "declaration": {
1882
1910
  "name": "*",
1883
- "package": "./actions-menu"
1911
+ "package": "./accordion"
1884
1912
  }
1885
1913
  }
1886
1914
  ]
1887
1915
  },
1888
1916
  {
1889
1917
  "kind": "javascript-module",
1890
- "path": "src/_common/affix-mixin.ts",
1918
+ "path": "src/_config/index.ts",
1919
+ "declarations": [],
1920
+ "exports": [
1921
+ {
1922
+ "kind": "js",
1923
+ "name": "*",
1924
+ "declaration": {
1925
+ "name": "*",
1926
+ "package": "./styles"
1927
+ }
1928
+ },
1929
+ {
1930
+ "kind": "js",
1931
+ "name": "*",
1932
+ "declaration": {
1933
+ "name": "*",
1934
+ "package": "./tokens"
1935
+ }
1936
+ },
1937
+ {
1938
+ "kind": "js",
1939
+ "name": "*",
1940
+ "declaration": {
1941
+ "name": "*",
1942
+ "package": "./values"
1943
+ }
1944
+ }
1945
+ ]
1946
+ },
1947
+ {
1948
+ "kind": "javascript-module",
1949
+ "path": "src/accordion-item/accordion-item.styles.ts",
1891
1950
  "declarations": [
1892
1951
  {
1893
- "kind": "mixin",
1894
- "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.",
1895
- "name": "AffixMixin",
1896
- "members": [
1897
- {
1898
- "kind": "field",
1899
- "name": "prefix",
1900
- "type": {
1901
- "text": "string"
1902
- },
1903
- "description": "Optional non-editable label shown on the left inside the field, before the input."
1904
- },
1952
+ "kind": "function",
1953
+ "name": "foundationAccordionItemStyles",
1954
+ "return": {
1955
+ "type": {
1956
+ "text": "ElementStyles"
1957
+ }
1958
+ },
1959
+ "parameters": [
1905
1960
  {
1906
- "kind": "field",
1907
- "name": "suffix",
1961
+ "name": "context",
1908
1962
  "type": {
1909
- "text": "string"
1910
- },
1911
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
1963
+ "text": "ElementDefinitionContext"
1964
+ }
1912
1965
  },
1913
1966
  {
1914
- "kind": "field",
1915
- "name": "hideAffixFromScreenReader",
1967
+ "name": "definition",
1916
1968
  "type": {
1917
- "text": "boolean"
1918
- },
1919
- "default": "false",
1920
- "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."
1969
+ "text": "FoundationElementDefinition"
1970
+ }
1921
1971
  }
1922
- ],
1972
+ ]
1973
+ }
1974
+ ],
1975
+ "exports": [
1976
+ {
1977
+ "kind": "js",
1978
+ "name": "foundationAccordionItemStyles",
1979
+ "declaration": {
1980
+ "name": "foundationAccordionItemStyles",
1981
+ "module": "src/accordion-item/accordion-item.styles.ts"
1982
+ }
1983
+ }
1984
+ ]
1985
+ },
1986
+ {
1987
+ "kind": "javascript-module",
1988
+ "path": "src/accordion-item/accordion-item.template.ts",
1989
+ "declarations": [
1990
+ {
1991
+ "kind": "function",
1992
+ "name": "foundationAccordionItemTemplate",
1993
+ "return": {
1994
+ "type": {
1995
+ "text": "ViewTemplate<AccordionItem>"
1996
+ }
1997
+ },
1923
1998
  "parameters": [
1924
1999
  {
1925
- "name": "Base",
2000
+ "name": "context",
1926
2001
  "type": {
1927
- "text": "TBase"
2002
+ "text": "ElementDefinitionContext"
2003
+ }
2004
+ },
2005
+ {
2006
+ "name": "definition",
2007
+ "type": {
2008
+ "text": "FoundationElementDefinition"
1928
2009
  }
1929
2010
  }
1930
2011
  ]
@@ -1933,169 +2014,117 @@
1933
2014
  "exports": [
1934
2015
  {
1935
2016
  "kind": "js",
1936
- "name": "AffixMixin",
2017
+ "name": "foundationAccordionItemTemplate",
1937
2018
  "declaration": {
1938
- "name": "AffixMixin",
1939
- "module": "src/_common/affix-mixin.ts"
2019
+ "name": "foundationAccordionItemTemplate",
2020
+ "module": "src/accordion-item/accordion-item.template.ts"
1940
2021
  }
1941
2022
  }
1942
2023
  ]
1943
2024
  },
1944
2025
  {
1945
2026
  "kind": "javascript-module",
1946
- "path": "src/_common/base-file-component.ts",
2027
+ "path": "src/accordion-item/accordion-item.ts",
1947
2028
  "declarations": [
1948
2029
  {
1949
2030
  "kind": "class",
1950
- "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1951
- "name": "BaseFileComponent",
1952
- "members": [
2031
+ "description": "",
2032
+ "name": "AccordionItem",
2033
+ "superclass": {
2034
+ "name": "FASTAccordionItem",
2035
+ "package": "@microsoft/fast-components"
2036
+ },
2037
+ "tagName": "%%prefix%%-accordion-item",
2038
+ "customElement": true,
2039
+ "attributes": [
1953
2040
  {
1954
- "kind": "field",
1955
- "name": "fileInput",
2041
+ "name": "heading-level",
1956
2042
  "type": {
1957
- "text": "HTMLInputElement"
2043
+ "text": "1 | 2 | 3 | 4 | 5 | 6"
1958
2044
  },
1959
- "privacy": "public"
2045
+ "default": "2",
2046
+ "description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
2047
+ "fieldName": "headinglevel",
2048
+ "inheritedFrom": {
2049
+ "name": "AccordionItem",
2050
+ "module": "src/accordion-item/accordion-item.ts"
2051
+ }
1960
2052
  },
1961
2053
  {
1962
- "kind": "field",
1963
- "name": "selectedFile",
1964
2054
  "type": {
1965
- "text": "File | null"
2055
+ "text": "boolean"
1966
2056
  },
1967
- "privacy": "protected",
1968
- "default": "null"
1969
- },
1970
- {
1971
- "kind": "field",
1972
- "name": "label",
1973
- "type": {
1974
- "text": "string"
2057
+ "default": "false",
2058
+ "description": "Expands or collapses the item.",
2059
+ "fieldName": "expanded",
2060
+ "inheritedFrom": {
2061
+ "name": "AccordionItem",
2062
+ "module": "src/accordion-item/accordion-item.ts"
1975
2063
  }
1976
2064
  },
1977
2065
  {
1978
- "kind": "field",
1979
- "name": "accept",
2066
+ "name": "id",
1980
2067
  "type": {
1981
2068
  "text": "string"
1982
2069
  },
1983
- "default": "''"
1984
- },
1985
- {
1986
- "kind": "field",
1987
- "name": "fileSizeLimitBytes",
1988
- "default": "10_485_760",
1989
- "type": {
1990
- "text": "number"
2070
+ "description": "The item ID",
2071
+ "fieldName": "id",
2072
+ "inheritedFrom": {
2073
+ "name": "AccordionItem",
2074
+ "module": "src/accordion-item/accordion-item.ts"
1991
2075
  }
1992
- },
2076
+ }
2077
+ ],
2078
+ "members": [
1993
2079
  {
1994
2080
  "kind": "field",
1995
- "name": "fileName",
2081
+ "name": "headinglevel",
1996
2082
  "type": {
1997
- "text": "string"
2083
+ "text": "1 | 2 | 3 | 4 | 5 | 6"
1998
2084
  },
1999
- "default": "''"
2085
+ "privacy": "public",
2086
+ "default": "2",
2087
+ "description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
2088
+ "inheritedFrom": {
2089
+ "name": "AccordionItem",
2090
+ "module": "src/accordion-item/accordion-item.ts"
2091
+ }
2000
2092
  },
2001
2093
  {
2002
2094
  "kind": "field",
2003
- "name": "isProcessing",
2095
+ "name": "expanded",
2004
2096
  "type": {
2005
2097
  "text": "boolean"
2006
2098
  },
2007
- "default": "false"
2008
- },
2009
- {
2010
- "kind": "method",
2011
- "name": "handleClick",
2012
- "privacy": "public",
2013
- "description": "Opens the file picker dialog\nClears any previous file selection before opening"
2014
- },
2015
- {
2016
- "kind": "method",
2017
- "name": "onInputChange",
2018
- "privacy": "public",
2019
- "parameters": [
2020
- {
2021
- "name": "e",
2022
- "type": {
2023
- "text": "Event"
2024
- },
2025
- "description": "The change event from the file input"
2026
- }
2027
- ],
2028
- "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
2029
- },
2030
- {
2031
- "kind": "method",
2032
- "name": "clearSelection",
2033
- "privacy": "public",
2034
- "description": "Clears all file selection and processing state\nResets the component to its initial state"
2035
- },
2036
- {
2037
- "kind": "method",
2038
- "name": "getSelectedFile",
2039
2099
  "privacy": "public",
2040
- "description": "Gets the currently selected file object",
2041
- "return": {
2042
- "type": {
2043
- "text": ""
2044
- }
2100
+ "default": "false",
2101
+ "description": "Expands or collapses the item.",
2102
+ "inheritedFrom": {
2103
+ "name": "AccordionItem",
2104
+ "module": "src/accordion-item/accordion-item.ts"
2045
2105
  }
2046
2106
  },
2047
2107
  {
2048
- "kind": "method",
2049
- "name": "showError",
2050
- "privacy": "protected",
2051
- "parameters": [
2052
- {
2053
- "name": "title",
2054
- "type": {
2055
- "text": "string"
2056
- },
2057
- "description": "The error title"
2058
- },
2059
- {
2060
- "name": "message",
2061
- "type": {
2062
- "text": "string"
2063
- },
2064
- "description": "The error message"
2065
- }
2066
- ],
2067
- "description": "Shows an error notification using the unified error handling system"
2068
- },
2069
- {
2070
- "kind": "method",
2071
- "name": "onFileSelected",
2072
- "privacy": "protected",
2073
- "return": {
2074
- "type": {
2075
- "text": "void"
2076
- }
2108
+ "kind": "field",
2109
+ "name": "id",
2110
+ "type": {
2111
+ "text": "string"
2077
2112
  },
2078
- "parameters": [
2079
- {
2080
- "name": "files",
2081
- "type": {
2082
- "text": "File[]"
2083
- },
2084
- "description": "The selected file"
2085
- }
2086
- ],
2087
- "description": "Abstract method called when a file is selected"
2113
+ "privacy": "public",
2114
+ "description": "The item ID",
2115
+ "inheritedFrom": {
2116
+ "name": "AccordionItem",
2117
+ "module": "src/accordion-item/accordion-item.ts"
2118
+ }
2088
2119
  },
2089
2120
  {
2090
- "kind": "method",
2091
- "name": "onFileCleared",
2092
- "privacy": "protected",
2093
- "return": {
2094
- "type": {
2095
- "text": "void"
2096
- }
2097
- },
2098
- "description": "Abstract method called when file selection is cleared"
2121
+ "kind": "field",
2122
+ "name": "change",
2123
+ "privacy": "private",
2124
+ "inheritedFrom": {
2125
+ "name": "AccordionItem",
2126
+ "module": "src/accordion-item/accordion-item.ts"
2127
+ }
2099
2128
  },
2100
2129
  {
2101
2130
  "kind": "field",
@@ -2211,110 +2240,76 @@
2211
2240
  ],
2212
2241
  "events": [
2213
2242
  {
2214
- "description": "Fired when file size validation fails",
2215
- "name": "error"
2216
- },
2217
- {
2218
- "description": "Fired when selection is cleared",
2219
- "name": "clear"
2220
- }
2221
- ],
2222
- "attributes": [
2223
- {
2224
- "name": "label",
2225
- "type": {
2226
- "text": "string"
2227
- },
2228
- "fieldName": "label"
2229
- },
2230
- {
2231
- "name": "accept",
2232
- "type": {
2233
- "text": "string"
2234
- },
2235
- "default": "''",
2236
- "fieldName": "accept"
2237
- },
2238
- {
2239
- "name": "file-size-limit-bytes",
2240
- "default": "DEFAULT_FILE_SIZE_LIMIT",
2241
- "resolveInitializer": {
2242
- "module": "src/_common/base-file-component.ts"
2243
- },
2244
- "fieldName": "fileSizeLimitBytes"
2243
+ "description": "Fires a custom 'change' event when the button is invoked",
2244
+ "name": "change",
2245
+ "inheritedFrom": {
2246
+ "name": "AccordionItem",
2247
+ "module": "src/accordion-item/accordion-item.ts"
2248
+ }
2245
2249
  }
2246
- ],
2247
- "superclass": {
2248
- "name": "FoundationElement",
2249
- "package": "@microsoft/fast-foundation"
2250
- }
2250
+ ]
2251
+ },
2252
+ {
2253
+ "kind": "variable",
2254
+ "name": "foundationAccordionItemShadowOptions",
2255
+ "type": {
2256
+ "text": "ShadowRootInit"
2257
+ },
2258
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
2259
+ },
2260
+ {
2261
+ "kind": "variable",
2262
+ "name": "defaultAccordionItemConfig",
2263
+ "type": {
2264
+ "text": "object"
2265
+ },
2266
+ "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}"
2267
+ },
2268
+ {
2269
+ "kind": "variable",
2270
+ "name": "foundationAccordionItem",
2271
+ "description": "The Foundation Accordion Item",
2272
+ "privacy": "public"
2251
2273
  }
2252
2274
  ],
2253
2275
  "exports": [
2254
2276
  {
2255
2277
  "kind": "js",
2256
- "name": "BaseFileComponent",
2278
+ "name": "AccordionItem",
2257
2279
  "declaration": {
2258
- "name": "BaseFileComponent",
2259
- "module": "src/_common/base-file-component.ts"
2280
+ "name": "AccordionItem",
2281
+ "module": "src/accordion-item/accordion-item.ts"
2260
2282
  }
2261
- }
2262
- ]
2263
- },
2264
- {
2265
- "kind": "javascript-module",
2266
- "path": "src/_common/field-styles.ts",
2267
- "declarations": [
2268
- {
2269
- "kind": "variable",
2270
- "name": "sharedFieldStyles",
2271
- "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`"
2272
- }
2273
- ],
2274
- "exports": [
2283
+ },
2275
2284
  {
2276
2285
  "kind": "js",
2277
- "name": "sharedFieldStyles",
2286
+ "name": "foundationAccordionItemShadowOptions",
2278
2287
  "declaration": {
2279
- "name": "sharedFieldStyles",
2280
- "module": "src/_common/field-styles.ts"
2288
+ "name": "foundationAccordionItemShadowOptions",
2289
+ "module": "src/accordion-item/accordion-item.ts"
2281
2290
  }
2282
- }
2283
- ]
2284
- },
2285
- {
2286
- "kind": "javascript-module",
2287
- "path": "src/_common/icons.ts",
2288
- "declarations": [
2291
+ },
2289
2292
  {
2290
- "kind": "function",
2291
- "name": "closeIcon",
2292
- "parameters": [
2293
- {
2294
- "name": "slot",
2295
- "default": "'start'"
2296
- },
2297
- {
2298
- "name": "fill",
2299
- "default": "'#879ba6'"
2300
- }
2301
- ]
2302
- }
2303
- ],
2304
- "exports": [
2293
+ "kind": "js",
2294
+ "name": "defaultAccordionItemConfig",
2295
+ "declaration": {
2296
+ "name": "defaultAccordionItemConfig",
2297
+ "module": "src/accordion-item/accordion-item.ts"
2298
+ }
2299
+ },
2305
2300
  {
2306
2301
  "kind": "js",
2307
- "name": "closeIcon",
2302
+ "name": "foundationAccordionItem",
2308
2303
  "declaration": {
2309
- "name": "closeIcon",
2310
- "module": "src/_common/icons.ts"
2304
+ "name": "foundationAccordionItem",
2305
+ "module": "src/accordion-item/accordion-item.ts"
2311
2306
  }
2312
2307
  }
2313
2308
  ]
2314
2309
  },
2315
2310
  {
2316
2311
  "kind": "javascript-module",
2317
- "path": "src/_common/index.ts",
2312
+ "path": "src/accordion-item/index.ts",
2318
2313
  "declarations": [],
2319
2314
  "exports": [
2320
2315
  {
@@ -2322,15 +2317,7 @@
2322
2317
  "name": "*",
2323
2318
  "declaration": {
2324
2319
  "name": "*",
2325
- "package": "./affix-mixin"
2326
- }
2327
- },
2328
- {
2329
- "kind": "js",
2330
- "name": "*",
2331
- "declaration": {
2332
- "name": "*",
2333
- "package": "./base-file-component"
2320
+ "package": "./accordion-item.template"
2334
2321
  }
2335
2322
  },
2336
2323
  {
@@ -2338,7 +2325,7 @@
2338
2325
  "name": "*",
2339
2326
  "declaration": {
2340
2327
  "name": "*",
2341
- "package": "./field-styles"
2328
+ "package": "./accordion-item.styles"
2342
2329
  }
2343
2330
  },
2344
2331
  {
@@ -2346,7 +2333,7 @@
2346
2333
  "name": "*",
2347
2334
  "declaration": {
2348
2335
  "name": "*",
2349
- "package": "./icons"
2336
+ "package": "./accordion-item"
2350
2337
  }
2351
2338
  }
2352
2339
  ]
@@ -3411,42 +3398,34 @@
3411
3398
  },
3412
3399
  {
3413
3400
  "kind": "javascript-module",
3414
- "path": "src/_config/index.ts",
3415
- "declarations": [],
3416
- "exports": [
3417
- {
3418
- "kind": "js",
3419
- "name": "*",
3420
- "declaration": {
3421
- "name": "*",
3422
- "package": "./styles"
3423
- }
3424
- },
3401
+ "path": "src/actions-menu/actions-menu.styles.ts",
3402
+ "declarations": [
3425
3403
  {
3426
- "kind": "js",
3427
- "name": "*",
3428
- "declaration": {
3429
- "name": "*",
3430
- "package": "./tokens"
3431
- }
3404
+ "kind": "function",
3405
+ "name": "actionsMenuBaseStyles",
3406
+ "return": {
3407
+ "type": {
3408
+ "text": "ElementStyles"
3409
+ }
3410
+ },
3411
+ "parameters": [
3412
+ {
3413
+ "name": "context",
3414
+ "type": {
3415
+ "text": "ElementDefinitionContext"
3416
+ }
3417
+ },
3418
+ {
3419
+ "name": "definition",
3420
+ "type": {
3421
+ "text": "FoundationElementDefinition"
3422
+ }
3423
+ }
3424
+ ]
3432
3425
  },
3433
- {
3434
- "kind": "js",
3435
- "name": "*",
3436
- "declaration": {
3437
- "name": "*",
3438
- "package": "./values"
3439
- }
3440
- }
3441
- ]
3442
- },
3443
- {
3444
- "kind": "javascript-module",
3445
- "path": "src/accordion/accordion.styles.ts",
3446
- "declarations": [
3447
3426
  {
3448
3427
  "kind": "function",
3449
- "name": "foundationAccordionStyles",
3428
+ "name": "foundationActionsMenuStyles",
3450
3429
  "return": {
3451
3430
  "type": {
3452
3431
  "text": "ElementStyles"
@@ -3471,277 +3450,269 @@
3471
3450
  "exports": [
3472
3451
  {
3473
3452
  "kind": "js",
3474
- "name": "foundationAccordionStyles",
3453
+ "name": "actionsMenuBaseStyles",
3475
3454
  "declaration": {
3476
- "name": "foundationAccordionStyles",
3477
- "module": "src/accordion/accordion.styles.ts"
3455
+ "name": "actionsMenuBaseStyles",
3456
+ "module": "src/actions-menu/actions-menu.styles.ts"
3457
+ }
3458
+ },
3459
+ {
3460
+ "kind": "js",
3461
+ "name": "foundationActionsMenuStyles",
3462
+ "declaration": {
3463
+ "name": "foundationActionsMenuStyles",
3464
+ "module": "src/actions-menu/actions-menu.styles.ts"
3478
3465
  }
3479
3466
  }
3480
3467
  ]
3481
3468
  },
3482
3469
  {
3483
3470
  "kind": "javascript-module",
3484
- "path": "src/accordion/accordion.template.ts",
3471
+ "path": "src/actions-menu/actions-menu.template.ts",
3485
3472
  "declarations": [
3486
3473
  {
3487
3474
  "kind": "function",
3488
- "name": "foundationAccordionTemplate",
3489
- "return": {
3490
- "type": {
3491
- "text": "ViewTemplate<Accordion>"
3492
- }
3493
- },
3475
+ "name": "menuTemplate",
3494
3476
  "parameters": [
3495
3477
  {
3496
- "name": "context",
3478
+ "name": "prefix",
3497
3479
  "type": {
3498
- "text": "ElementDefinitionContext"
3480
+ "text": "string"
3499
3481
  }
3500
- },
3482
+ }
3483
+ ]
3484
+ },
3485
+ {
3486
+ "kind": "function",
3487
+ "name": "singleOptionTemplate",
3488
+ "parameters": [
3501
3489
  {
3502
- "name": "definition",
3490
+ "name": "prefix",
3503
3491
  "type": {
3504
- "text": "FoundationElementDefinition"
3492
+ "text": "string"
3505
3493
  }
3506
3494
  }
3507
3495
  ]
3496
+ },
3497
+ {
3498
+ "kind": "variable",
3499
+ "name": "foundationActionsMenuTemplate",
3500
+ "type": {
3501
+ "text": "ViewTemplate<ActionsMenu>"
3502
+ },
3503
+ "default": "html`\n <div\n class=\"actions-container${(x) => (x.isVertical ? ' actions-vertical' : '')}\"\n part=\"actions-container\"\n >\n ${(x) => x.getTemplate(getPrefix(x))}\n </div>\n`"
3508
3504
  }
3509
3505
  ],
3510
3506
  "exports": [
3511
3507
  {
3512
3508
  "kind": "js",
3513
- "name": "foundationAccordionTemplate",
3509
+ "name": "menuTemplate",
3514
3510
  "declaration": {
3515
- "name": "foundationAccordionTemplate",
3516
- "module": "src/accordion/accordion.template.ts"
3511
+ "name": "menuTemplate",
3512
+ "module": "src/actions-menu/actions-menu.template.ts"
3513
+ }
3514
+ },
3515
+ {
3516
+ "kind": "js",
3517
+ "name": "singleOptionTemplate",
3518
+ "declaration": {
3519
+ "name": "singleOptionTemplate",
3520
+ "module": "src/actions-menu/actions-menu.template.ts"
3521
+ }
3522
+ },
3523
+ {
3524
+ "kind": "js",
3525
+ "name": "foundationActionsMenuTemplate",
3526
+ "declaration": {
3527
+ "name": "foundationActionsMenuTemplate",
3528
+ "module": "src/actions-menu/actions-menu.template.ts"
3517
3529
  }
3518
3530
  }
3519
3531
  ]
3520
3532
  },
3521
3533
  {
3522
3534
  "kind": "javascript-module",
3523
- "path": "src/accordion/accordion.ts",
3535
+ "path": "src/actions-menu/actions-menu.ts",
3524
3536
  "declarations": [
3525
3537
  {
3526
3538
  "kind": "class",
3527
3539
  "description": "",
3528
- "name": "Accordion",
3529
- "superclass": {
3530
- "name": "FASTAccordion",
3531
- "package": "@microsoft/fast-foundation"
3532
- },
3533
- "tagName": "%%prefix%%-accordion",
3534
- "customElement": true,
3535
- "attributes": [
3540
+ "name": "ActionsMenu",
3541
+ "members": [
3536
3542
  {
3537
- "name": "expand-mode",
3543
+ "kind": "field",
3544
+ "name": "actions",
3538
3545
  "type": {
3539
- "text": "AccordionExpandMode"
3540
- },
3541
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3542
- "fieldName": "expandmode",
3543
- "inheritedFrom": {
3544
- "name": "Accordion",
3545
- "module": "src/accordion/accordion.ts"
3546
+ "text": "ActionMenuItem[]"
3546
3547
  }
3547
- }
3548
- ],
3549
- "members": [
3548
+ },
3550
3549
  {
3551
3550
  "kind": "field",
3552
- "name": "expandmode",
3551
+ "name": "isVertical",
3553
3552
  "type": {
3554
- "text": "AccordionExpandMode"
3553
+ "text": "boolean"
3555
3554
  },
3556
- "privacy": "public",
3557
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3558
- "inheritedFrom": {
3559
- "name": "Accordion",
3560
- "module": "src/accordion/accordion.ts"
3561
- }
3555
+ "default": "false"
3562
3556
  },
3563
3557
  {
3564
3558
  "kind": "field",
3565
- "name": "activeid",
3559
+ "name": "addDefaultActions",
3566
3560
  "type": {
3567
- "text": "string | null"
3561
+ "text": "boolean"
3568
3562
  },
3569
- "privacy": "private",
3570
- "inheritedFrom": {
3571
- "name": "Accordion",
3572
- "module": "src/accordion/accordion.ts"
3573
- }
3563
+ "default": "true"
3574
3564
  },
3575
3565
  {
3576
3566
  "kind": "field",
3577
- "name": "activeItemIndex",
3567
+ "name": "autoCloseOnAction",
3578
3568
  "type": {
3579
- "text": "number"
3569
+ "text": "boolean"
3580
3570
  },
3581
- "privacy": "private",
3582
- "default": "0",
3583
- "inheritedFrom": {
3584
- "name": "Accordion",
3585
- "module": "src/accordion/accordion.ts"
3586
- }
3571
+ "default": "true"
3587
3572
  },
3588
3573
  {
3589
3574
  "kind": "field",
3590
- "name": "accordionIds",
3575
+ "name": "classNames",
3591
3576
  "type": {
3592
- "text": "Array<string | null>"
3593
- },
3594
- "privacy": "private",
3595
- "inheritedFrom": {
3596
- "name": "Accordion",
3597
- "module": "src/accordion/accordion.ts"
3577
+ "text": "string"
3598
3578
  }
3599
3579
  },
3600
3580
  {
3601
3581
  "kind": "field",
3602
- "name": "change",
3603
- "privacy": "private",
3604
- "inheritedFrom": {
3605
- "name": "Accordion",
3606
- "module": "src/accordion/accordion.ts"
3582
+ "name": "definition",
3583
+ "type": {
3584
+ "text": "any"
3607
3585
  }
3608
3586
  },
3609
3587
  {
3610
- "kind": "method",
3611
- "name": "findExpandedItem",
3612
- "privacy": "private",
3613
- "return": {
3614
- "type": {
3615
- "text": "AccordionItem | null"
3616
- }
3588
+ "kind": "field",
3589
+ "name": "name",
3590
+ "type": {
3591
+ "text": "string"
3617
3592
  },
3618
- "inheritedFrom": {
3619
- "name": "Accordion",
3620
- "module": "src/accordion/accordion.ts"
3621
- }
3593
+ "default": "'Actions'"
3622
3594
  },
3623
3595
  {
3624
3596
  "kind": "field",
3625
- "name": "setItems",
3626
- "privacy": "private",
3627
- "inheritedFrom": {
3628
- "name": "Accordion",
3629
- "module": "src/accordion/accordion.ts"
3597
+ "name": "open",
3598
+ "type": {
3599
+ "text": "boolean"
3600
+ },
3601
+ "default": "false"
3602
+ },
3603
+ {
3604
+ "kind": "field",
3605
+ "name": "buttonAppearance",
3606
+ "type": {
3607
+ "text": "string"
3630
3608
  }
3631
3609
  },
3632
3610
  {
3633
- "kind": "method",
3634
- "name": "resetItems",
3635
- "privacy": "private",
3636
- "return": {
3637
- "type": {
3638
- "text": "void"
3639
- }
3611
+ "kind": "field",
3612
+ "name": "hideDisabled",
3613
+ "type": {
3614
+ "text": "boolean"
3640
3615
  },
3641
- "inheritedFrom": {
3642
- "name": "Accordion",
3643
- "module": "src/accordion/accordion.ts"
3644
- }
3616
+ "default": "false"
3645
3617
  },
3646
3618
  {
3647
3619
  "kind": "field",
3648
- "name": "removeItemListeners",
3649
- "privacy": "private",
3650
- "inheritedFrom": {
3651
- "name": "Accordion",
3652
- "module": "src/accordion/accordion.ts"
3620
+ "name": "hideMenuSingleOption",
3621
+ "type": {
3622
+ "text": "boolean"
3623
+ },
3624
+ "default": "false"
3625
+ },
3626
+ {
3627
+ "kind": "field",
3628
+ "name": "singleOption",
3629
+ "type": {
3630
+ "text": "ActionMenuItem"
3653
3631
  }
3654
3632
  },
3655
3633
  {
3656
3634
  "kind": "field",
3657
- "name": "activeItemChange",
3658
- "privacy": "private",
3659
- "inheritedFrom": {
3660
- "name": "Accordion",
3661
- "module": "src/accordion/accordion.ts"
3635
+ "name": "actionsMenu",
3636
+ "type": {
3637
+ "text": "HTMLElement"
3662
3638
  }
3663
3639
  },
3664
3640
  {
3665
3641
  "kind": "method",
3666
- "name": "getItemIds",
3667
- "privacy": "private",
3668
- "return": {
3669
- "type": {
3670
- "text": "Array<string | null>"
3642
+ "name": "definitionChanged",
3643
+ "privacy": "protected",
3644
+ "parameters": [
3645
+ {
3646
+ "name": "oldValue",
3647
+ "type": {
3648
+ "text": "any"
3649
+ }
3650
+ },
3651
+ {
3652
+ "name": "newValue",
3653
+ "type": {
3654
+ "text": "any"
3655
+ }
3671
3656
  }
3672
- },
3673
- "inheritedFrom": {
3674
- "name": "Accordion",
3675
- "module": "src/accordion/accordion.ts"
3676
- }
3657
+ ]
3677
3658
  },
3678
3659
  {
3679
3660
  "kind": "method",
3680
- "name": "isSingleExpandMode",
3681
- "privacy": "private",
3682
- "return": {
3683
- "type": {
3684
- "text": "boolean"
3661
+ "name": "openChanged",
3662
+ "privacy": "protected"
3663
+ },
3664
+ {
3665
+ "kind": "method",
3666
+ "name": "toggleActionsMenuVisibility"
3667
+ },
3668
+ {
3669
+ "kind": "method",
3670
+ "name": "onActionMenuItemClick",
3671
+ "parameters": [
3672
+ {
3673
+ "name": "callback",
3674
+ "type": {
3675
+ "text": "(rowData) => void | any"
3676
+ }
3685
3677
  }
3686
- },
3687
- "inheritedFrom": {
3688
- "name": "Accordion",
3689
- "module": "src/accordion/accordion.ts"
3690
- }
3678
+ ]
3691
3679
  },
3692
3680
  {
3693
3681
  "kind": "field",
3694
- "name": "handleItemKeyDown",
3695
- "privacy": "private",
3696
- "inheritedFrom": {
3697
- "name": "Accordion",
3698
- "module": "src/accordion/accordion.ts"
3699
- }
3682
+ "name": "allActions",
3683
+ "type": {
3684
+ "text": "ActionMenuItem[]"
3685
+ },
3686
+ "readonly": true
3700
3687
  },
3701
3688
  {
3702
3689
  "kind": "field",
3703
- "name": "handleItemFocus",
3704
- "privacy": "private",
3705
- "inheritedFrom": {
3706
- "name": "Accordion",
3707
- "module": "src/accordion/accordion.ts"
3708
- }
3690
+ "name": "rowData",
3691
+ "readonly": true
3709
3692
  },
3710
3693
  {
3711
3694
  "kind": "method",
3712
- "name": "adjust",
3713
- "privacy": "private",
3714
- "return": {
3715
- "type": {
3716
- "text": "void"
3717
- }
3718
- },
3695
+ "name": "getLabel",
3719
3696
  "parameters": [
3720
3697
  {
3721
- "name": "adjustment",
3698
+ "name": "name",
3722
3699
  "type": {
3723
- "text": "number"
3700
+ "text": "string | ((rowData: any) => string)"
3724
3701
  }
3725
3702
  }
3726
- ],
3727
- "inheritedFrom": {
3728
- "name": "Accordion",
3729
- "module": "src/accordion/accordion.ts"
3730
- }
3703
+ ]
3731
3704
  },
3732
3705
  {
3733
3706
  "kind": "method",
3734
- "name": "focusItem",
3735
- "privacy": "private",
3736
- "return": {
3737
- "type": {
3738
- "text": "void"
3707
+ "name": "getTemplate",
3708
+ "parameters": [
3709
+ {
3710
+ "name": "prefix",
3711
+ "type": {
3712
+ "text": "string"
3713
+ }
3739
3714
  }
3740
- },
3741
- "inheritedFrom": {
3742
- "name": "Accordion",
3743
- "module": "src/accordion/accordion.ts"
3744
- }
3715
+ ]
3745
3716
  },
3746
3717
  {
3747
3718
  "kind": "field",
@@ -3855,78 +3826,107 @@
3855
3826
  }
3856
3827
  }
3857
3828
  ],
3858
- "events": [
3829
+ "attributes": [
3859
3830
  {
3860
- "description": "Fires a custom 'change' event when the active item changes",
3861
- "name": "change",
3862
- "inheritedFrom": {
3863
- "name": "Accordion",
3864
- "module": "src/accordion/accordion.ts"
3865
- }
3831
+ "name": "is-vertical",
3832
+ "type": {
3833
+ "text": "boolean"
3834
+ },
3835
+ "default": "false",
3836
+ "fieldName": "isVertical"
3837
+ },
3838
+ {
3839
+ "name": "add-default-actions",
3840
+ "type": {
3841
+ "text": "boolean"
3842
+ },
3843
+ "default": "true",
3844
+ "fieldName": "addDefaultActions"
3845
+ },
3846
+ {
3847
+ "name": "auto-close-on-action",
3848
+ "type": {
3849
+ "text": "boolean"
3850
+ },
3851
+ "default": "true",
3852
+ "fieldName": "autoCloseOnAction"
3853
+ },
3854
+ {
3855
+ "name": "name",
3856
+ "type": {
3857
+ "text": "string"
3858
+ },
3859
+ "default": "'Actions'",
3860
+ "fieldName": "name"
3861
+ },
3862
+ {
3863
+ "name": "open",
3864
+ "type": {
3865
+ "text": "boolean"
3866
+ },
3867
+ "default": "false",
3868
+ "fieldName": "open"
3869
+ },
3870
+ {
3871
+ "name": "buttonAppearance",
3872
+ "type": {
3873
+ "text": "string"
3874
+ },
3875
+ "fieldName": "buttonAppearance"
3876
+ },
3877
+ {
3878
+ "name": "hide-disabled",
3879
+ "type": {
3880
+ "text": "boolean"
3881
+ },
3882
+ "default": "false",
3883
+ "fieldName": "hideDisabled"
3884
+ },
3885
+ {
3886
+ "name": "hide-menu-single-option",
3887
+ "type": {
3888
+ "text": "boolean"
3889
+ },
3890
+ "default": "false",
3891
+ "fieldName": "hideMenuSingleOption"
3866
3892
  }
3867
- ]
3868
- },
3869
- {
3870
- "kind": "variable",
3871
- "name": "foundationAccordionShadowOptions",
3872
- "type": {
3873
- "text": "ShadowRootInit"
3874
- },
3875
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
3876
- },
3877
- {
3878
- "kind": "variable",
3879
- "name": "defaultAccordionConfig",
3880
- "type": {
3881
- "text": "object"
3893
+ ],
3894
+ "superclass": {
3895
+ "name": "FoundationElement",
3896
+ "package": "@microsoft/fast-foundation"
3882
3897
  },
3883
- "default": "{}"
3898
+ "tagName": "%%prefix%%-actions-menu",
3899
+ "customElement": true
3884
3900
  },
3885
3901
  {
3886
3902
  "kind": "variable",
3887
- "name": "foundationAccordion",
3888
- "description": "The Foundation Accordion",
3903
+ "name": "foundationActionsMenu",
3904
+ "description": "The Foundation Actions Menu",
3889
3905
  "privacy": "public"
3890
3906
  }
3891
3907
  ],
3892
3908
  "exports": [
3893
3909
  {
3894
3910
  "kind": "js",
3895
- "name": "Accordion",
3896
- "declaration": {
3897
- "name": "Accordion",
3898
- "module": "src/accordion/accordion.ts"
3899
- }
3900
- },
3901
- {
3902
- "kind": "js",
3903
- "name": "foundationAccordionShadowOptions",
3904
- "declaration": {
3905
- "name": "foundationAccordionShadowOptions",
3906
- "module": "src/accordion/accordion.ts"
3907
- }
3908
- },
3909
- {
3910
- "kind": "js",
3911
- "name": "defaultAccordionConfig",
3911
+ "name": "ActionsMenu",
3912
3912
  "declaration": {
3913
- "name": "defaultAccordionConfig",
3914
- "module": "src/accordion/accordion.ts"
3913
+ "name": "ActionsMenu",
3914
+ "module": "src/actions-menu/actions-menu.ts"
3915
3915
  }
3916
3916
  },
3917
3917
  {
3918
3918
  "kind": "js",
3919
- "name": "foundationAccordion",
3919
+ "name": "foundationActionsMenu",
3920
3920
  "declaration": {
3921
- "name": "foundationAccordion",
3922
- "module": "src/accordion/accordion.ts"
3921
+ "name": "foundationActionsMenu",
3922
+ "module": "src/actions-menu/actions-menu.ts"
3923
3923
  }
3924
3924
  }
3925
3925
  ]
3926
3926
  },
3927
3927
  {
3928
3928
  "kind": "javascript-module",
3929
- "path": "src/accordion/index.ts",
3929
+ "path": "src/actions-menu/index.ts",
3930
3930
  "declarations": [],
3931
3931
  "exports": [
3932
3932
  {
@@ -3934,7 +3934,7 @@
3934
3934
  "name": "*",
3935
3935
  "declaration": {
3936
3936
  "name": "*",
3937
- "package": "./accordion.template"
3937
+ "package": "./actions-menu.styles"
3938
3938
  }
3939
3939
  },
3940
3940
  {
@@ -3942,7 +3942,7 @@
3942
3942
  "name": "*",
3943
3943
  "declaration": {
3944
3944
  "name": "*",
3945
- "package": "./accordion.styles"
3945
+ "package": "./actions-menu.template"
3946
3946
  }
3947
3947
  },
3948
3948
  {
@@ -3950,7 +3950,7 @@
3950
3950
  "name": "*",
3951
3951
  "declaration": {
3952
3952
  "name": "*",
3953
- "package": "./accordion"
3953
+ "package": "./actions-menu"
3954
3954
  }
3955
3955
  }
3956
3956
  ]
@@ -57691,197 +57691,6 @@
57691
57691
  }
57692
57692
  ]
57693
57693
  },
57694
- {
57695
- "kind": "javascript-module",
57696
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
57697
- "declarations": [],
57698
- "exports": []
57699
- },
57700
- {
57701
- "kind": "javascript-module",
57702
- "path": "src/ai-criteria-search/validation/operator-map.ts",
57703
- "declarations": [
57704
- {
57705
- "kind": "function",
57706
- "name": "groupsToCriteria",
57707
- "return": {
57708
- "type": {
57709
- "text": "string"
57710
- }
57711
- },
57712
- "parameters": [
57713
- {
57714
- "name": "groups",
57715
- "type": {
57716
- "text": "CriteriaGroup[]"
57717
- }
57718
- }
57719
- ],
57720
- "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."
57721
- },
57722
- {
57723
- "kind": "variable",
57724
- "name": "STRING_OPERATORS",
57725
- "type": {
57726
- "text": "CriteriaOperator[]"
57727
- },
57728
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
57729
- },
57730
- {
57731
- "kind": "variable",
57732
- "name": "NUMERIC_OPERATORS",
57733
- "type": {
57734
- "text": "CriteriaOperator[]"
57735
- },
57736
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
57737
- },
57738
- {
57739
- "kind": "variable",
57740
- "name": "DATE_OPERATORS",
57741
- "type": {
57742
- "text": "CriteriaOperator[]"
57743
- },
57744
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
57745
- },
57746
- {
57747
- "kind": "variable",
57748
- "name": "DATETIME_OPERATORS",
57749
- "type": {
57750
- "text": "CriteriaOperator[]"
57751
- },
57752
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
57753
- },
57754
- {
57755
- "kind": "variable",
57756
- "name": "OPERATOR_DISPLAY_LABEL",
57757
- "type": {
57758
- "text": "Record<CriteriaOperator, string>"
57759
- },
57760
- "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}"
57761
- }
57762
- ],
57763
- "exports": [
57764
- {
57765
- "kind": "js",
57766
- "name": "groupsToCriteria",
57767
- "declaration": {
57768
- "name": "groupsToCriteria",
57769
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57770
- }
57771
- },
57772
- {
57773
- "kind": "js",
57774
- "name": "STRING_OPERATORS",
57775
- "declaration": {
57776
- "name": "STRING_OPERATORS",
57777
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57778
- }
57779
- },
57780
- {
57781
- "kind": "js",
57782
- "name": "NUMERIC_OPERATORS",
57783
- "declaration": {
57784
- "name": "NUMERIC_OPERATORS",
57785
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57786
- }
57787
- },
57788
- {
57789
- "kind": "js",
57790
- "name": "DATE_OPERATORS",
57791
- "declaration": {
57792
- "name": "DATE_OPERATORS",
57793
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57794
- }
57795
- },
57796
- {
57797
- "kind": "js",
57798
- "name": "DATETIME_OPERATORS",
57799
- "declaration": {
57800
- "name": "DATETIME_OPERATORS",
57801
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57802
- }
57803
- },
57804
- {
57805
- "kind": "js",
57806
- "name": "OPERATOR_DISPLAY_LABEL",
57807
- "declaration": {
57808
- "name": "OPERATOR_DISPLAY_LABEL",
57809
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57810
- }
57811
- }
57812
- ]
57813
- },
57814
- {
57815
- "kind": "javascript-module",
57816
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
57817
- "declarations": [
57818
- {
57819
- "kind": "function",
57820
- "name": "validateClauses",
57821
- "return": {
57822
- "type": {
57823
- "text": "ValidationResult"
57824
- }
57825
- },
57826
- "parameters": [
57827
- {
57828
- "name": "clauses",
57829
- "type": {
57830
- "text": "CriteriaClause[]"
57831
- }
57832
- },
57833
- {
57834
- "name": "fieldMetadata",
57835
- "type": {
57836
- "text": "MetadataDetail[] | string[]"
57837
- }
57838
- }
57839
- ]
57840
- },
57841
- {
57842
- "kind": "function",
57843
- "name": "validateGroups",
57844
- "return": {
57845
- "type": {
57846
- "text": "GroupsValidationResult"
57847
- }
57848
- },
57849
- "parameters": [
57850
- {
57851
- "name": "groups",
57852
- "type": {
57853
- "text": "CriteriaGroup[]"
57854
- }
57855
- },
57856
- {
57857
- "name": "fieldMetadata",
57858
- "type": {
57859
- "text": "MetadataDetail[] | string[]"
57860
- }
57861
- }
57862
- ],
57863
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
57864
- }
57865
- ],
57866
- "exports": [
57867
- {
57868
- "kind": "js",
57869
- "name": "validateClauses",
57870
- "declaration": {
57871
- "name": "validateClauses",
57872
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
57873
- }
57874
- },
57875
- {
57876
- "kind": "js",
57877
- "name": "validateGroups",
57878
- "declaration": {
57879
- "name": "validateGroups",
57880
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
57881
- }
57882
- }
57883
- ]
57884
- },
57885
57694
  {
57886
57695
  "kind": "javascript-module",
57887
57696
  "path": "src/_config/styles/colors.ts",
@@ -59254,6 +59063,197 @@
59254
59063
  "declarations": [],
59255
59064
  "exports": []
59256
59065
  },
59066
+ {
59067
+ "kind": "javascript-module",
59068
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
59069
+ "declarations": [],
59070
+ "exports": []
59071
+ },
59072
+ {
59073
+ "kind": "javascript-module",
59074
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
59075
+ "declarations": [
59076
+ {
59077
+ "kind": "function",
59078
+ "name": "groupsToCriteria",
59079
+ "return": {
59080
+ "type": {
59081
+ "text": "string"
59082
+ }
59083
+ },
59084
+ "parameters": [
59085
+ {
59086
+ "name": "groups",
59087
+ "type": {
59088
+ "text": "CriteriaGroup[]"
59089
+ }
59090
+ }
59091
+ ],
59092
+ "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."
59093
+ },
59094
+ {
59095
+ "kind": "variable",
59096
+ "name": "STRING_OPERATORS",
59097
+ "type": {
59098
+ "text": "CriteriaOperator[]"
59099
+ },
59100
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
59101
+ },
59102
+ {
59103
+ "kind": "variable",
59104
+ "name": "NUMERIC_OPERATORS",
59105
+ "type": {
59106
+ "text": "CriteriaOperator[]"
59107
+ },
59108
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
59109
+ },
59110
+ {
59111
+ "kind": "variable",
59112
+ "name": "DATE_OPERATORS",
59113
+ "type": {
59114
+ "text": "CriteriaOperator[]"
59115
+ },
59116
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
59117
+ },
59118
+ {
59119
+ "kind": "variable",
59120
+ "name": "DATETIME_OPERATORS",
59121
+ "type": {
59122
+ "text": "CriteriaOperator[]"
59123
+ },
59124
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
59125
+ },
59126
+ {
59127
+ "kind": "variable",
59128
+ "name": "OPERATOR_DISPLAY_LABEL",
59129
+ "type": {
59130
+ "text": "Record<CriteriaOperator, string>"
59131
+ },
59132
+ "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}"
59133
+ }
59134
+ ],
59135
+ "exports": [
59136
+ {
59137
+ "kind": "js",
59138
+ "name": "groupsToCriteria",
59139
+ "declaration": {
59140
+ "name": "groupsToCriteria",
59141
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59142
+ }
59143
+ },
59144
+ {
59145
+ "kind": "js",
59146
+ "name": "STRING_OPERATORS",
59147
+ "declaration": {
59148
+ "name": "STRING_OPERATORS",
59149
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59150
+ }
59151
+ },
59152
+ {
59153
+ "kind": "js",
59154
+ "name": "NUMERIC_OPERATORS",
59155
+ "declaration": {
59156
+ "name": "NUMERIC_OPERATORS",
59157
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59158
+ }
59159
+ },
59160
+ {
59161
+ "kind": "js",
59162
+ "name": "DATE_OPERATORS",
59163
+ "declaration": {
59164
+ "name": "DATE_OPERATORS",
59165
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59166
+ }
59167
+ },
59168
+ {
59169
+ "kind": "js",
59170
+ "name": "DATETIME_OPERATORS",
59171
+ "declaration": {
59172
+ "name": "DATETIME_OPERATORS",
59173
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59174
+ }
59175
+ },
59176
+ {
59177
+ "kind": "js",
59178
+ "name": "OPERATOR_DISPLAY_LABEL",
59179
+ "declaration": {
59180
+ "name": "OPERATOR_DISPLAY_LABEL",
59181
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59182
+ }
59183
+ }
59184
+ ]
59185
+ },
59186
+ {
59187
+ "kind": "javascript-module",
59188
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
59189
+ "declarations": [
59190
+ {
59191
+ "kind": "function",
59192
+ "name": "validateClauses",
59193
+ "return": {
59194
+ "type": {
59195
+ "text": "ValidationResult"
59196
+ }
59197
+ },
59198
+ "parameters": [
59199
+ {
59200
+ "name": "clauses",
59201
+ "type": {
59202
+ "text": "CriteriaClause[]"
59203
+ }
59204
+ },
59205
+ {
59206
+ "name": "fieldMetadata",
59207
+ "type": {
59208
+ "text": "MetadataDetail[] | string[]"
59209
+ }
59210
+ }
59211
+ ]
59212
+ },
59213
+ {
59214
+ "kind": "function",
59215
+ "name": "validateGroups",
59216
+ "return": {
59217
+ "type": {
59218
+ "text": "GroupsValidationResult"
59219
+ }
59220
+ },
59221
+ "parameters": [
59222
+ {
59223
+ "name": "groups",
59224
+ "type": {
59225
+ "text": "CriteriaGroup[]"
59226
+ }
59227
+ },
59228
+ {
59229
+ "name": "fieldMetadata",
59230
+ "type": {
59231
+ "text": "MetadataDetail[] | string[]"
59232
+ }
59233
+ }
59234
+ ],
59235
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
59236
+ }
59237
+ ],
59238
+ "exports": [
59239
+ {
59240
+ "kind": "js",
59241
+ "name": "validateClauses",
59242
+ "declaration": {
59243
+ "name": "validateClauses",
59244
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
59245
+ }
59246
+ },
59247
+ {
59248
+ "kind": "js",
59249
+ "name": "validateGroups",
59250
+ "declaration": {
59251
+ "name": "validateGroups",
59252
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
59253
+ }
59254
+ }
59255
+ ]
59256
+ },
59257
59257
  {
59258
59258
  "kind": "javascript-module",
59259
59259
  "path": "src/environment-indicator/utils/configure.ts",