@genesislcap/foundation-ui 14.427.1-TAM-8.26-patch.1 → 14.427.1-TAM-8.26-patch.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -932,503 +932,6 @@
932
932
  }
933
933
  ]
934
934
  },
935
- {
936
- "kind": "javascript-module",
937
- "path": "src/_common/affix-mixin.ts",
938
- "declarations": [
939
- {
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": [
944
- {
945
- "kind": "field",
946
- "name": "prefix",
947
- "type": {
948
- "text": "string"
949
- },
950
- "description": "Optional non-editable label shown on the left inside the field, before the input."
951
- },
952
- {
953
- "kind": "field",
954
- "name": "suffix",
955
- "type": {
956
- "text": "string"
957
- },
958
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
959
- },
960
- {
961
- "kind": "field",
962
- "name": "hideAffixFromScreenReader",
963
- "type": {
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": [
971
- {
972
- "name": "Base",
973
- "type": {
974
- "text": "TBase"
975
- }
976
- }
977
- ]
978
- }
979
- ],
980
- "exports": [
981
- {
982
- "kind": "js",
983
- "name": "AffixMixin",
984
- "declaration": {
985
- "name": "AffixMixin",
986
- "module": "src/_common/affix-mixin.ts"
987
- }
988
- }
989
- ]
990
- },
991
- {
992
- "kind": "javascript-module",
993
- "path": "src/_common/base-file-component.ts",
994
- "declarations": [
995
- {
996
- "kind": "class",
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": [
1000
- {
1001
- "kind": "field",
1002
- "name": "fileInput",
1003
- "type": {
1004
- "text": "HTMLInputElement"
1005
- },
1006
- "privacy": "public"
1007
- },
1008
- {
1009
- "kind": "field",
1010
- "name": "selectedFile",
1011
- "type": {
1012
- "text": "File | null"
1013
- },
1014
- "privacy": "protected",
1015
- "default": "null"
1016
- },
1017
- {
1018
- "kind": "field",
1019
- "name": "label",
1020
- "type": {
1021
- "text": "string"
1022
- }
1023
- },
1024
- {
1025
- "kind": "field",
1026
- "name": "accept",
1027
- "type": {
1028
- "text": "string"
1029
- },
1030
- "default": "''"
1031
- },
1032
- {
1033
- "kind": "field",
1034
- "name": "fileSizeLimitBytes",
1035
- "default": "10_485_760",
1036
- "type": {
1037
- "text": "number"
1038
- }
1039
- },
1040
- {
1041
- "kind": "field",
1042
- "name": "fileName",
1043
- "type": {
1044
- "text": "string"
1045
- },
1046
- "default": "''"
1047
- },
1048
- {
1049
- "kind": "field",
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
- }
1092
- }
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
- },
1147
- {
1148
- "kind": "field",
1149
- "name": "_presentation",
1150
- "type": {
1151
- "text": "ComponentPresentation | null | undefined"
1152
- },
1153
- "privacy": "private",
1154
- "default": "void 0",
1155
- "inheritedFrom": {
1156
- "name": "FoundationElement",
1157
- "module": "src/foundation-element/foundation-element.ts"
1158
- }
1159
- },
1160
- {
1161
- "kind": "field",
1162
- "name": "$presentation",
1163
- "type": {
1164
- "text": "ComponentPresentation | null"
1165
- },
1166
- "privacy": "public",
1167
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1168
- "inheritedFrom": {
1169
- "name": "FoundationElement",
1170
- "module": "src/foundation-element/foundation-element.ts"
1171
- }
1172
- },
1173
- {
1174
- "kind": "field",
1175
- "name": "template",
1176
- "type": {
1177
- "text": "ElementViewTemplate | void | null"
1178
- },
1179
- "privacy": "public",
1180
- "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.",
1181
- "inheritedFrom": {
1182
- "name": "FoundationElement",
1183
- "module": "src/foundation-element/foundation-element.ts"
1184
- }
1185
- },
1186
- {
1187
- "kind": "method",
1188
- "name": "templateChanged",
1189
- "privacy": "protected",
1190
- "return": {
1191
- "type": {
1192
- "text": "void"
1193
- }
1194
- },
1195
- "inheritedFrom": {
1196
- "name": "FoundationElement",
1197
- "module": "src/foundation-element/foundation-element.ts"
1198
- }
1199
- },
1200
- {
1201
- "kind": "field",
1202
- "name": "styles",
1203
- "type": {
1204
- "text": "ElementStyles | void | null"
1205
- },
1206
- "privacy": "public",
1207
- "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.",
1208
- "inheritedFrom": {
1209
- "name": "FoundationElement",
1210
- "module": "src/foundation-element/foundation-element.ts"
1211
- }
1212
- },
1213
- {
1214
- "kind": "method",
1215
- "name": "stylesChanged",
1216
- "privacy": "protected",
1217
- "return": {
1218
- "type": {
1219
- "text": "void"
1220
- }
1221
- },
1222
- "inheritedFrom": {
1223
- "name": "FoundationElement",
1224
- "module": "src/foundation-element/foundation-element.ts"
1225
- }
1226
- },
1227
- {
1228
- "kind": "method",
1229
- "name": "compose",
1230
- "privacy": "public",
1231
- "static": true,
1232
- "return": {
1233
- "type": {
1234
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1235
- }
1236
- },
1237
- "parameters": [
1238
- {
1239
- "name": "this",
1240
- "type": {
1241
- "text": "K"
1242
- }
1243
- },
1244
- {
1245
- "name": "elementDefinition",
1246
- "type": {
1247
- "text": "T"
1248
- },
1249
- "description": "The definition of the element to create the registry\nfunction for."
1250
- }
1251
- ],
1252
- "description": "Defines an element registry function with a set of element definition defaults.",
1253
- "inheritedFrom": {
1254
- "name": "FoundationElement",
1255
- "module": "src/foundation-element/foundation-element.ts"
1256
- }
1257
- }
1258
- ],
1259
- "events": [
1260
- {
1261
- "description": "Fired when file size validation fails",
1262
- "name": "error"
1263
- },
1264
- {
1265
- "description": "Fired when selection is cleared",
1266
- "name": "clear"
1267
- }
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
- }
1298
- }
1299
- ],
1300
- "exports": [
1301
- {
1302
- "kind": "js",
1303
- "name": "BaseFileComponent",
1304
- "declaration": {
1305
- "name": "BaseFileComponent",
1306
- "module": "src/_common/base-file-component.ts"
1307
- }
1308
- }
1309
- ]
1310
- },
1311
- {
1312
- "kind": "javascript-module",
1313
- "path": "src/_common/field-styles.ts",
1314
- "declarations": [
1315
- {
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": [
1322
- {
1323
- "kind": "js",
1324
- "name": "sharedFieldStyles",
1325
- "declaration": {
1326
- "name": "sharedFieldStyles",
1327
- "module": "src/_common/field-styles.ts"
1328
- }
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": [
1352
- {
1353
- "kind": "js",
1354
- "name": "closeIcon",
1355
- "declaration": {
1356
- "name": "closeIcon",
1357
- "module": "src/_common/icons.ts"
1358
- }
1359
- }
1360
- ]
1361
- },
1362
- {
1363
- "kind": "javascript-module",
1364
- "path": "src/_common/index.ts",
1365
- "declarations": [],
1366
- "exports": [
1367
- {
1368
- "kind": "js",
1369
- "name": "*",
1370
- "declaration": {
1371
- "name": "*",
1372
- "package": "./affix-mixin"
1373
- }
1374
- },
1375
- {
1376
- "kind": "js",
1377
- "name": "*",
1378
- "declaration": {
1379
- "name": "*",
1380
- "package": "./base-file-component"
1381
- }
1382
- },
1383
- {
1384
- "kind": "js",
1385
- "name": "*",
1386
- "declaration": {
1387
- "name": "*",
1388
- "package": "./field-styles"
1389
- }
1390
- },
1391
- {
1392
- "kind": "js",
1393
- "name": "*",
1394
- "declaration": {
1395
- "name": "*",
1396
- "package": "./icons"
1397
- }
1398
- }
1399
- ]
1400
- },
1401
- {
1402
- "kind": "javascript-module",
1403
- "path": "src/_config/index.ts",
1404
- "declarations": [],
1405
- "exports": [
1406
- {
1407
- "kind": "js",
1408
- "name": "*",
1409
- "declaration": {
1410
- "name": "*",
1411
- "package": "./styles"
1412
- }
1413
- },
1414
- {
1415
- "kind": "js",
1416
- "name": "*",
1417
- "declaration": {
1418
- "name": "*",
1419
- "package": "./tokens"
1420
- }
1421
- },
1422
- {
1423
- "kind": "js",
1424
- "name": "*",
1425
- "declaration": {
1426
- "name": "*",
1427
- "package": "./values"
1428
- }
1429
- }
1430
- ]
1431
- },
1432
935
  {
1433
936
  "kind": "javascript-module",
1434
937
  "path": "src/accordion-item/accordion-item.styles.ts",
@@ -1825,11 +1328,11 @@
1825
1328
  },
1826
1329
  {
1827
1330
  "kind": "javascript-module",
1828
- "path": "src/accordion/accordion.styles.ts",
1331
+ "path": "src/actions-menu/actions-menu.styles.ts",
1829
1332
  "declarations": [
1830
1333
  {
1831
1334
  "kind": "function",
1832
- "name": "foundationAccordionStyles",
1335
+ "name": "actionsMenuBaseStyles",
1833
1336
  "return": {
1834
1337
  "type": {
1835
1338
  "text": "ElementStyles"
@@ -1849,522 +1352,7 @@
1849
1352
  }
1850
1353
  }
1851
1354
  ]
1852
- }
1853
- ],
1854
- "exports": [
1855
- {
1856
- "kind": "js",
1857
- "name": "foundationAccordionStyles",
1858
- "declaration": {
1859
- "name": "foundationAccordionStyles",
1860
- "module": "src/accordion/accordion.styles.ts"
1861
- }
1862
- }
1863
- ]
1864
- },
1865
- {
1866
- "kind": "javascript-module",
1867
- "path": "src/accordion/accordion.template.ts",
1868
- "declarations": [
1869
- {
1870
- "kind": "function",
1871
- "name": "foundationAccordionTemplate",
1872
- "return": {
1873
- "type": {
1874
- "text": "ViewTemplate<Accordion>"
1875
- }
1876
- },
1877
- "parameters": [
1878
- {
1879
- "name": "context",
1880
- "type": {
1881
- "text": "ElementDefinitionContext"
1882
- }
1883
- },
1884
- {
1885
- "name": "definition",
1886
- "type": {
1887
- "text": "FoundationElementDefinition"
1888
- }
1889
- }
1890
- ]
1891
- }
1892
- ],
1893
- "exports": [
1894
- {
1895
- "kind": "js",
1896
- "name": "foundationAccordionTemplate",
1897
- "declaration": {
1898
- "name": "foundationAccordionTemplate",
1899
- "module": "src/accordion/accordion.template.ts"
1900
- }
1901
- }
1902
- ]
1903
- },
1904
- {
1905
- "kind": "javascript-module",
1906
- "path": "src/accordion/accordion.ts",
1907
- "declarations": [
1908
- {
1909
- "kind": "class",
1910
- "description": "",
1911
- "name": "Accordion",
1912
- "superclass": {
1913
- "name": "FASTAccordion",
1914
- "package": "@microsoft/fast-foundation"
1915
- },
1916
- "tagName": "%%prefix%%-accordion",
1917
- "customElement": true,
1918
- "attributes": [
1919
- {
1920
- "name": "expand-mode",
1921
- "type": {
1922
- "text": "AccordionExpandMode"
1923
- },
1924
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1925
- "fieldName": "expandmode",
1926
- "inheritedFrom": {
1927
- "name": "Accordion",
1928
- "module": "src/accordion/accordion.ts"
1929
- }
1930
- }
1931
- ],
1932
- "members": [
1933
- {
1934
- "kind": "field",
1935
- "name": "expandmode",
1936
- "type": {
1937
- "text": "AccordionExpandMode"
1938
- },
1939
- "privacy": "public",
1940
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1941
- "inheritedFrom": {
1942
- "name": "Accordion",
1943
- "module": "src/accordion/accordion.ts"
1944
- }
1945
- },
1946
- {
1947
- "kind": "field",
1948
- "name": "activeid",
1949
- "type": {
1950
- "text": "string | null"
1951
- },
1952
- "privacy": "private",
1953
- "inheritedFrom": {
1954
- "name": "Accordion",
1955
- "module": "src/accordion/accordion.ts"
1956
- }
1957
- },
1958
- {
1959
- "kind": "field",
1960
- "name": "activeItemIndex",
1961
- "type": {
1962
- "text": "number"
1963
- },
1964
- "privacy": "private",
1965
- "default": "0",
1966
- "inheritedFrom": {
1967
- "name": "Accordion",
1968
- "module": "src/accordion/accordion.ts"
1969
- }
1970
- },
1971
- {
1972
- "kind": "field",
1973
- "name": "accordionIds",
1974
- "type": {
1975
- "text": "Array<string | null>"
1976
- },
1977
- "privacy": "private",
1978
- "inheritedFrom": {
1979
- "name": "Accordion",
1980
- "module": "src/accordion/accordion.ts"
1981
- }
1982
- },
1983
- {
1984
- "kind": "field",
1985
- "name": "change",
1986
- "privacy": "private",
1987
- "inheritedFrom": {
1988
- "name": "Accordion",
1989
- "module": "src/accordion/accordion.ts"
1990
- }
1991
- },
1992
- {
1993
- "kind": "method",
1994
- "name": "findExpandedItem",
1995
- "privacy": "private",
1996
- "return": {
1997
- "type": {
1998
- "text": "AccordionItem | null"
1999
- }
2000
- },
2001
- "inheritedFrom": {
2002
- "name": "Accordion",
2003
- "module": "src/accordion/accordion.ts"
2004
- }
2005
- },
2006
- {
2007
- "kind": "field",
2008
- "name": "setItems",
2009
- "privacy": "private",
2010
- "inheritedFrom": {
2011
- "name": "Accordion",
2012
- "module": "src/accordion/accordion.ts"
2013
- }
2014
- },
2015
- {
2016
- "kind": "method",
2017
- "name": "resetItems",
2018
- "privacy": "private",
2019
- "return": {
2020
- "type": {
2021
- "text": "void"
2022
- }
2023
- },
2024
- "inheritedFrom": {
2025
- "name": "Accordion",
2026
- "module": "src/accordion/accordion.ts"
2027
- }
2028
- },
2029
- {
2030
- "kind": "field",
2031
- "name": "removeItemListeners",
2032
- "privacy": "private",
2033
- "inheritedFrom": {
2034
- "name": "Accordion",
2035
- "module": "src/accordion/accordion.ts"
2036
- }
2037
- },
2038
- {
2039
- "kind": "field",
2040
- "name": "activeItemChange",
2041
- "privacy": "private",
2042
- "inheritedFrom": {
2043
- "name": "Accordion",
2044
- "module": "src/accordion/accordion.ts"
2045
- }
2046
- },
2047
- {
2048
- "kind": "method",
2049
- "name": "getItemIds",
2050
- "privacy": "private",
2051
- "return": {
2052
- "type": {
2053
- "text": "Array<string | null>"
2054
- }
2055
- },
2056
- "inheritedFrom": {
2057
- "name": "Accordion",
2058
- "module": "src/accordion/accordion.ts"
2059
- }
2060
- },
2061
- {
2062
- "kind": "method",
2063
- "name": "isSingleExpandMode",
2064
- "privacy": "private",
2065
- "return": {
2066
- "type": {
2067
- "text": "boolean"
2068
- }
2069
- },
2070
- "inheritedFrom": {
2071
- "name": "Accordion",
2072
- "module": "src/accordion/accordion.ts"
2073
- }
2074
- },
2075
- {
2076
- "kind": "field",
2077
- "name": "handleItemKeyDown",
2078
- "privacy": "private",
2079
- "inheritedFrom": {
2080
- "name": "Accordion",
2081
- "module": "src/accordion/accordion.ts"
2082
- }
2083
- },
2084
- {
2085
- "kind": "field",
2086
- "name": "handleItemFocus",
2087
- "privacy": "private",
2088
- "inheritedFrom": {
2089
- "name": "Accordion",
2090
- "module": "src/accordion/accordion.ts"
2091
- }
2092
- },
2093
- {
2094
- "kind": "method",
2095
- "name": "adjust",
2096
- "privacy": "private",
2097
- "return": {
2098
- "type": {
2099
- "text": "void"
2100
- }
2101
- },
2102
- "parameters": [
2103
- {
2104
- "name": "adjustment",
2105
- "type": {
2106
- "text": "number"
2107
- }
2108
- }
2109
- ],
2110
- "inheritedFrom": {
2111
- "name": "Accordion",
2112
- "module": "src/accordion/accordion.ts"
2113
- }
2114
- },
2115
- {
2116
- "kind": "method",
2117
- "name": "focusItem",
2118
- "privacy": "private",
2119
- "return": {
2120
- "type": {
2121
- "text": "void"
2122
- }
2123
- },
2124
- "inheritedFrom": {
2125
- "name": "Accordion",
2126
- "module": "src/accordion/accordion.ts"
2127
- }
2128
- },
2129
- {
2130
- "kind": "field",
2131
- "name": "_presentation",
2132
- "type": {
2133
- "text": "ComponentPresentation | null | undefined"
2134
- },
2135
- "privacy": "private",
2136
- "default": "void 0",
2137
- "inheritedFrom": {
2138
- "name": "FoundationElement",
2139
- "module": "src/foundation-element/foundation-element.ts"
2140
- }
2141
- },
2142
- {
2143
- "kind": "field",
2144
- "name": "$presentation",
2145
- "type": {
2146
- "text": "ComponentPresentation | null"
2147
- },
2148
- "privacy": "public",
2149
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2150
- "inheritedFrom": {
2151
- "name": "FoundationElement",
2152
- "module": "src/foundation-element/foundation-element.ts"
2153
- }
2154
- },
2155
- {
2156
- "kind": "field",
2157
- "name": "template",
2158
- "type": {
2159
- "text": "ElementViewTemplate | void | null"
2160
- },
2161
- "privacy": "public",
2162
- "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.",
2163
- "inheritedFrom": {
2164
- "name": "FoundationElement",
2165
- "module": "src/foundation-element/foundation-element.ts"
2166
- }
2167
- },
2168
- {
2169
- "kind": "method",
2170
- "name": "templateChanged",
2171
- "privacy": "protected",
2172
- "return": {
2173
- "type": {
2174
- "text": "void"
2175
- }
2176
- },
2177
- "inheritedFrom": {
2178
- "name": "FoundationElement",
2179
- "module": "src/foundation-element/foundation-element.ts"
2180
- }
2181
- },
2182
- {
2183
- "kind": "field",
2184
- "name": "styles",
2185
- "type": {
2186
- "text": "ElementStyles | void | null"
2187
- },
2188
- "privacy": "public",
2189
- "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.",
2190
- "inheritedFrom": {
2191
- "name": "FoundationElement",
2192
- "module": "src/foundation-element/foundation-element.ts"
2193
- }
2194
- },
2195
- {
2196
- "kind": "method",
2197
- "name": "stylesChanged",
2198
- "privacy": "protected",
2199
- "return": {
2200
- "type": {
2201
- "text": "void"
2202
- }
2203
- },
2204
- "inheritedFrom": {
2205
- "name": "FoundationElement",
2206
- "module": "src/foundation-element/foundation-element.ts"
2207
- }
2208
- },
2209
- {
2210
- "kind": "method",
2211
- "name": "compose",
2212
- "privacy": "public",
2213
- "static": true,
2214
- "return": {
2215
- "type": {
2216
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2217
- }
2218
- },
2219
- "parameters": [
2220
- {
2221
- "name": "this",
2222
- "type": {
2223
- "text": "K"
2224
- }
2225
- },
2226
- {
2227
- "name": "elementDefinition",
2228
- "type": {
2229
- "text": "T"
2230
- },
2231
- "description": "The definition of the element to create the registry\nfunction for."
2232
- }
2233
- ],
2234
- "description": "Defines an element registry function with a set of element definition defaults.",
2235
- "inheritedFrom": {
2236
- "name": "FoundationElement",
2237
- "module": "src/foundation-element/foundation-element.ts"
2238
- }
2239
- }
2240
- ],
2241
- "events": [
2242
- {
2243
- "description": "Fires a custom 'change' event when the active item changes",
2244
- "name": "change",
2245
- "inheritedFrom": {
2246
- "name": "Accordion",
2247
- "module": "src/accordion/accordion.ts"
2248
- }
2249
- }
2250
- ]
2251
- },
2252
- {
2253
- "kind": "variable",
2254
- "name": "foundationAccordionShadowOptions",
2255
- "type": {
2256
- "text": "ShadowRootInit"
2257
- },
2258
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
2259
- },
2260
- {
2261
- "kind": "variable",
2262
- "name": "defaultAccordionConfig",
2263
- "type": {
2264
- "text": "object"
2265
- },
2266
- "default": "{}"
2267
- },
2268
- {
2269
- "kind": "variable",
2270
- "name": "foundationAccordion",
2271
- "description": "The Foundation Accordion",
2272
- "privacy": "public"
2273
- }
2274
- ],
2275
- "exports": [
2276
- {
2277
- "kind": "js",
2278
- "name": "Accordion",
2279
- "declaration": {
2280
- "name": "Accordion",
2281
- "module": "src/accordion/accordion.ts"
2282
- }
2283
- },
2284
- {
2285
- "kind": "js",
2286
- "name": "foundationAccordionShadowOptions",
2287
- "declaration": {
2288
- "name": "foundationAccordionShadowOptions",
2289
- "module": "src/accordion/accordion.ts"
2290
- }
2291
- },
2292
- {
2293
- "kind": "js",
2294
- "name": "defaultAccordionConfig",
2295
- "declaration": {
2296
- "name": "defaultAccordionConfig",
2297
- "module": "src/accordion/accordion.ts"
2298
- }
2299
- },
2300
- {
2301
- "kind": "js",
2302
- "name": "foundationAccordion",
2303
- "declaration": {
2304
- "name": "foundationAccordion",
2305
- "module": "src/accordion/accordion.ts"
2306
- }
2307
- }
2308
- ]
2309
- },
2310
- {
2311
- "kind": "javascript-module",
2312
- "path": "src/accordion/index.ts",
2313
- "declarations": [],
2314
- "exports": [
2315
- {
2316
- "kind": "js",
2317
- "name": "*",
2318
- "declaration": {
2319
- "name": "*",
2320
- "package": "./accordion.template"
2321
- }
2322
- },
2323
- {
2324
- "kind": "js",
2325
- "name": "*",
2326
- "declaration": {
2327
- "name": "*",
2328
- "package": "./accordion.styles"
2329
- }
2330
- },
2331
- {
2332
- "kind": "js",
2333
- "name": "*",
2334
- "declaration": {
2335
- "name": "*",
2336
- "package": "./accordion"
2337
- }
2338
- }
2339
- ]
2340
- },
2341
- {
2342
- "kind": "javascript-module",
2343
- "path": "src/actions-menu/actions-menu.styles.ts",
2344
- "declarations": [
2345
- {
2346
- "kind": "function",
2347
- "name": "actionsMenuBaseStyles",
2348
- "return": {
2349
- "type": {
2350
- "text": "ElementStyles"
2351
- }
2352
- },
2353
- "parameters": [
2354
- {
2355
- "name": "context",
2356
- "type": {
2357
- "text": "ElementDefinitionContext"
2358
- }
2359
- },
2360
- {
2361
- "name": "definition",
2362
- "type": {
2363
- "text": "FoundationElementDefinition"
2364
- }
2365
- }
2366
- ]
2367
- },
1355
+ },
2368
1356
  {
2369
1357
  "kind": "function",
2370
1358
  "name": "foundationActionsMenuStyles",
@@ -3479,214 +2467,1212 @@
3479
2467
  "exports": [
3480
2468
  {
3481
2469
  "kind": "js",
3482
- "name": "foundationAiIndicatorStyles",
2470
+ "name": "foundationAiIndicatorStyles",
2471
+ "declaration": {
2472
+ "name": "foundationAiIndicatorStyles",
2473
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
2474
+ }
2475
+ }
2476
+ ]
2477
+ },
2478
+ {
2479
+ "kind": "javascript-module",
2480
+ "path": "src/ai-indicator/ai-indicator.template.ts",
2481
+ "declarations": [
2482
+ {
2483
+ "kind": "variable",
2484
+ "name": "foundationAiIndicatorTemplate",
2485
+ "type": {
2486
+ "text": "ViewTemplate<AiIndicator>"
2487
+ },
2488
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
2489
+ }
2490
+ ],
2491
+ "exports": [
2492
+ {
2493
+ "kind": "js",
2494
+ "name": "foundationAiIndicatorTemplate",
2495
+ "declaration": {
2496
+ "name": "foundationAiIndicatorTemplate",
2497
+ "module": "src/ai-indicator/ai-indicator.template.ts"
2498
+ }
2499
+ }
2500
+ ]
2501
+ },
2502
+ {
2503
+ "kind": "javascript-module",
2504
+ "path": "src/ai-indicator/ai-indicator.ts",
2505
+ "declarations": [
2506
+ {
2507
+ "kind": "class",
2508
+ "description": "",
2509
+ "name": "AiIndicator",
2510
+ "members": [
2511
+ {
2512
+ "kind": "field",
2513
+ "name": "aiProvider",
2514
+ "type": {
2515
+ "text": "AIProvider"
2516
+ }
2517
+ },
2518
+ {
2519
+ "kind": "field",
2520
+ "name": "status",
2521
+ "type": {
2522
+ "text": "AIStatus | null"
2523
+ },
2524
+ "default": "null"
2525
+ },
2526
+ {
2527
+ "kind": "field",
2528
+ "name": "open",
2529
+ "type": {
2530
+ "text": "boolean"
2531
+ },
2532
+ "default": "false"
2533
+ },
2534
+ {
2535
+ "kind": "field",
2536
+ "name": "state",
2537
+ "type": {
2538
+ "text": "AIIndicatorState"
2539
+ },
2540
+ "default": "'none'"
2541
+ },
2542
+ {
2543
+ "kind": "field",
2544
+ "name": "isInstalling",
2545
+ "type": {
2546
+ "text": "boolean"
2547
+ },
2548
+ "default": "false"
2549
+ },
2550
+ {
2551
+ "kind": "field",
2552
+ "name": "pollTimer",
2553
+ "type": {
2554
+ "text": "ReturnType<typeof setInterval> | null"
2555
+ },
2556
+ "privacy": "private",
2557
+ "default": "null"
2558
+ },
2559
+ {
2560
+ "kind": "field",
2561
+ "name": "clickOutside",
2562
+ "privacy": "private"
2563
+ },
2564
+ {
2565
+ "kind": "field",
2566
+ "name": "chromeStatusLabel",
2567
+ "type": {
2568
+ "text": "string | null"
2569
+ },
2570
+ "readonly": true
2571
+ },
2572
+ {
2573
+ "kind": "field",
2574
+ "name": "canInstall",
2575
+ "type": {
2576
+ "text": "boolean"
2577
+ },
2578
+ "readonly": true
2579
+ },
2580
+ {
2581
+ "kind": "field",
2582
+ "name": "isDownloading",
2583
+ "type": {
2584
+ "text": "boolean"
2585
+ },
2586
+ "readonly": true
2587
+ },
2588
+ {
2589
+ "kind": "method",
2590
+ "name": "openChanged",
2591
+ "return": {
2592
+ "type": {
2593
+ "text": "void"
2594
+ }
2595
+ }
2596
+ },
2597
+ {
2598
+ "kind": "method",
2599
+ "name": "handleClickOutside",
2600
+ "privacy": "private",
2601
+ "parameters": [
2602
+ {
2603
+ "name": "event",
2604
+ "type": {
2605
+ "text": "MouseEvent"
2606
+ }
2607
+ }
2608
+ ]
2609
+ },
2610
+ {
2611
+ "kind": "method",
2612
+ "name": "toggleDropdown"
2613
+ },
2614
+ {
2615
+ "kind": "method",
2616
+ "name": "refreshStatus",
2617
+ "return": {
2618
+ "type": {
2619
+ "text": "Promise<void>"
2620
+ }
2621
+ }
2622
+ },
2623
+ {
2624
+ "kind": "method",
2625
+ "name": "deriveState",
2626
+ "privacy": "private",
2627
+ "return": {
2628
+ "type": {
2629
+ "text": "AIIndicatorState"
2630
+ }
2631
+ },
2632
+ "parameters": [
2633
+ {
2634
+ "name": "s",
2635
+ "type": {
2636
+ "text": "AIStatus | null"
2637
+ }
2638
+ }
2639
+ ]
2640
+ },
2641
+ {
2642
+ "kind": "method",
2643
+ "name": "maybeStartPolling",
2644
+ "privacy": "private",
2645
+ "return": {
2646
+ "type": {
2647
+ "text": "void"
2648
+ }
2649
+ }
2650
+ },
2651
+ {
2652
+ "kind": "method",
2653
+ "name": "startPolling",
2654
+ "privacy": "private",
2655
+ "return": {
2656
+ "type": {
2657
+ "text": "void"
2658
+ }
2659
+ }
2660
+ },
2661
+ {
2662
+ "kind": "method",
2663
+ "name": "stopPolling",
2664
+ "privacy": "private",
2665
+ "return": {
2666
+ "type": {
2667
+ "text": "void"
2668
+ }
2669
+ }
2670
+ },
2671
+ {
2672
+ "kind": "method",
2673
+ "name": "onInstall",
2674
+ "return": {
2675
+ "type": {
2676
+ "text": "Promise<void>"
2677
+ }
2678
+ }
2679
+ },
2680
+ {
2681
+ "kind": "field",
2682
+ "name": "_presentation",
2683
+ "type": {
2684
+ "text": "ComponentPresentation | null | undefined"
2685
+ },
2686
+ "privacy": "private",
2687
+ "default": "void 0",
2688
+ "inheritedFrom": {
2689
+ "name": "FoundationElement",
2690
+ "module": "src/foundation-element/foundation-element.ts"
2691
+ }
2692
+ },
2693
+ {
2694
+ "kind": "field",
2695
+ "name": "$presentation",
2696
+ "type": {
2697
+ "text": "ComponentPresentation | null"
2698
+ },
2699
+ "privacy": "public",
2700
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2701
+ "inheritedFrom": {
2702
+ "name": "FoundationElement",
2703
+ "module": "src/foundation-element/foundation-element.ts"
2704
+ }
2705
+ },
2706
+ {
2707
+ "kind": "field",
2708
+ "name": "template",
2709
+ "type": {
2710
+ "text": "ElementViewTemplate | void | null"
2711
+ },
2712
+ "privacy": "public",
2713
+ "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.",
2714
+ "inheritedFrom": {
2715
+ "name": "FoundationElement",
2716
+ "module": "src/foundation-element/foundation-element.ts"
2717
+ }
2718
+ },
2719
+ {
2720
+ "kind": "method",
2721
+ "name": "templateChanged",
2722
+ "privacy": "protected",
2723
+ "return": {
2724
+ "type": {
2725
+ "text": "void"
2726
+ }
2727
+ },
2728
+ "inheritedFrom": {
2729
+ "name": "FoundationElement",
2730
+ "module": "src/foundation-element/foundation-element.ts"
2731
+ }
2732
+ },
2733
+ {
2734
+ "kind": "field",
2735
+ "name": "styles",
2736
+ "type": {
2737
+ "text": "ElementStyles | void | null"
2738
+ },
2739
+ "privacy": "public",
2740
+ "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.",
2741
+ "inheritedFrom": {
2742
+ "name": "FoundationElement",
2743
+ "module": "src/foundation-element/foundation-element.ts"
2744
+ }
2745
+ },
2746
+ {
2747
+ "kind": "method",
2748
+ "name": "stylesChanged",
2749
+ "privacy": "protected",
2750
+ "return": {
2751
+ "type": {
2752
+ "text": "void"
2753
+ }
2754
+ },
2755
+ "inheritedFrom": {
2756
+ "name": "FoundationElement",
2757
+ "module": "src/foundation-element/foundation-element.ts"
2758
+ }
2759
+ },
2760
+ {
2761
+ "kind": "method",
2762
+ "name": "compose",
2763
+ "privacy": "public",
2764
+ "static": true,
2765
+ "return": {
2766
+ "type": {
2767
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2768
+ }
2769
+ },
2770
+ "parameters": [
2771
+ {
2772
+ "name": "this",
2773
+ "type": {
2774
+ "text": "K"
2775
+ }
2776
+ },
2777
+ {
2778
+ "name": "elementDefinition",
2779
+ "type": {
2780
+ "text": "T"
2781
+ },
2782
+ "description": "The definition of the element to create the registry\nfunction for."
2783
+ }
2784
+ ],
2785
+ "description": "Defines an element registry function with a set of element definition defaults.",
2786
+ "inheritedFrom": {
2787
+ "name": "FoundationElement",
2788
+ "module": "src/foundation-element/foundation-element.ts"
2789
+ }
2790
+ }
2791
+ ],
2792
+ "superclass": {
2793
+ "name": "FoundationElement",
2794
+ "package": "@microsoft/fast-foundation"
2795
+ },
2796
+ "tagName": "%%prefix%%-ai-indicator",
2797
+ "customElement": true
2798
+ },
2799
+ {
2800
+ "kind": "variable",
2801
+ "name": "foundationAiIndicator"
2802
+ }
2803
+ ],
2804
+ "exports": [
2805
+ {
2806
+ "kind": "js",
2807
+ "name": "AiIndicator",
2808
+ "declaration": {
2809
+ "name": "AiIndicator",
2810
+ "module": "src/ai-indicator/ai-indicator.ts"
2811
+ }
2812
+ },
2813
+ {
2814
+ "kind": "js",
2815
+ "name": "foundationAiIndicator",
2816
+ "declaration": {
2817
+ "name": "foundationAiIndicator",
2818
+ "module": "src/ai-indicator/ai-indicator.ts"
2819
+ }
2820
+ }
2821
+ ]
2822
+ },
2823
+ {
2824
+ "kind": "javascript-module",
2825
+ "path": "src/ai-indicator/index.ts",
2826
+ "declarations": [],
2827
+ "exports": [
2828
+ {
2829
+ "kind": "js",
2830
+ "name": "AiIndicator",
2831
+ "declaration": {
2832
+ "name": "AiIndicator",
2833
+ "module": "./ai-indicator"
2834
+ }
2835
+ },
2836
+ {
2837
+ "kind": "js",
2838
+ "name": "foundationAiIndicator",
2839
+ "declaration": {
2840
+ "name": "foundationAiIndicator",
2841
+ "module": "./ai-indicator"
2842
+ }
2843
+ },
2844
+ {
2845
+ "kind": "js",
2846
+ "name": "type",
2847
+ "declaration": {
2848
+ "name": "type",
2849
+ "module": "./ai-indicator"
2850
+ }
2851
+ },
2852
+ {
2853
+ "kind": "js",
2854
+ "name": "AIIndicatorState",
2855
+ "declaration": {
2856
+ "name": "AIIndicatorState",
2857
+ "module": "./ai-indicator"
2858
+ }
2859
+ },
2860
+ {
2861
+ "kind": "js",
2862
+ "name": "foundationAiIndicatorTemplate",
2863
+ "declaration": {
2864
+ "name": "foundationAiIndicatorTemplate",
2865
+ "module": "./ai-indicator.template"
2866
+ }
2867
+ },
2868
+ {
2869
+ "kind": "js",
2870
+ "name": "foundationAiIndicatorStyles",
2871
+ "declaration": {
2872
+ "name": "foundationAiIndicatorStyles",
2873
+ "module": "./ai-indicator.styles"
2874
+ }
2875
+ }
2876
+ ]
2877
+ },
2878
+ {
2879
+ "kind": "javascript-module",
2880
+ "path": "src/_common/affix-mixin.ts",
2881
+ "declarations": [
2882
+ {
2883
+ "kind": "mixin",
2884
+ "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.",
2885
+ "name": "AffixMixin",
2886
+ "members": [
2887
+ {
2888
+ "kind": "field",
2889
+ "name": "prefix",
2890
+ "type": {
2891
+ "text": "string"
2892
+ },
2893
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
2894
+ },
2895
+ {
2896
+ "kind": "field",
2897
+ "name": "suffix",
2898
+ "type": {
2899
+ "text": "string"
2900
+ },
2901
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
2902
+ },
2903
+ {
2904
+ "kind": "field",
2905
+ "name": "hideAffixFromScreenReader",
2906
+ "type": {
2907
+ "text": "boolean"
2908
+ },
2909
+ "default": "false",
2910
+ "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."
2911
+ }
2912
+ ],
2913
+ "parameters": [
2914
+ {
2915
+ "name": "Base",
2916
+ "type": {
2917
+ "text": "TBase"
2918
+ }
2919
+ }
2920
+ ]
2921
+ }
2922
+ ],
2923
+ "exports": [
2924
+ {
2925
+ "kind": "js",
2926
+ "name": "AffixMixin",
2927
+ "declaration": {
2928
+ "name": "AffixMixin",
2929
+ "module": "src/_common/affix-mixin.ts"
2930
+ }
2931
+ }
2932
+ ]
2933
+ },
2934
+ {
2935
+ "kind": "javascript-module",
2936
+ "path": "src/_common/base-file-component.ts",
2937
+ "declarations": [
2938
+ {
2939
+ "kind": "class",
2940
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
2941
+ "name": "BaseFileComponent",
2942
+ "members": [
2943
+ {
2944
+ "kind": "field",
2945
+ "name": "fileInput",
2946
+ "type": {
2947
+ "text": "HTMLInputElement"
2948
+ },
2949
+ "privacy": "public"
2950
+ },
2951
+ {
2952
+ "kind": "field",
2953
+ "name": "selectedFile",
2954
+ "type": {
2955
+ "text": "File | null"
2956
+ },
2957
+ "privacy": "protected",
2958
+ "default": "null"
2959
+ },
2960
+ {
2961
+ "kind": "field",
2962
+ "name": "label",
2963
+ "type": {
2964
+ "text": "string"
2965
+ }
2966
+ },
2967
+ {
2968
+ "kind": "field",
2969
+ "name": "accept",
2970
+ "type": {
2971
+ "text": "string"
2972
+ },
2973
+ "default": "''"
2974
+ },
2975
+ {
2976
+ "kind": "field",
2977
+ "name": "fileSizeLimitBytes",
2978
+ "default": "10_485_760",
2979
+ "type": {
2980
+ "text": "number"
2981
+ }
2982
+ },
2983
+ {
2984
+ "kind": "field",
2985
+ "name": "fileName",
2986
+ "type": {
2987
+ "text": "string"
2988
+ },
2989
+ "default": "''"
2990
+ },
2991
+ {
2992
+ "kind": "field",
2993
+ "name": "isProcessing",
2994
+ "type": {
2995
+ "text": "boolean"
2996
+ },
2997
+ "default": "false"
2998
+ },
2999
+ {
3000
+ "kind": "method",
3001
+ "name": "handleClick",
3002
+ "privacy": "public",
3003
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
3004
+ },
3005
+ {
3006
+ "kind": "method",
3007
+ "name": "onInputChange",
3008
+ "privacy": "public",
3009
+ "parameters": [
3010
+ {
3011
+ "name": "e",
3012
+ "type": {
3013
+ "text": "Event"
3014
+ },
3015
+ "description": "The change event from the file input"
3016
+ }
3017
+ ],
3018
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
3019
+ },
3020
+ {
3021
+ "kind": "method",
3022
+ "name": "clearSelection",
3023
+ "privacy": "public",
3024
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
3025
+ },
3026
+ {
3027
+ "kind": "method",
3028
+ "name": "getSelectedFile",
3029
+ "privacy": "public",
3030
+ "description": "Gets the currently selected file object",
3031
+ "return": {
3032
+ "type": {
3033
+ "text": ""
3034
+ }
3035
+ }
3036
+ },
3037
+ {
3038
+ "kind": "method",
3039
+ "name": "showError",
3040
+ "privacy": "protected",
3041
+ "parameters": [
3042
+ {
3043
+ "name": "title",
3044
+ "type": {
3045
+ "text": "string"
3046
+ },
3047
+ "description": "The error title"
3048
+ },
3049
+ {
3050
+ "name": "message",
3051
+ "type": {
3052
+ "text": "string"
3053
+ },
3054
+ "description": "The error message"
3055
+ }
3056
+ ],
3057
+ "description": "Shows an error notification using the unified error handling system"
3058
+ },
3059
+ {
3060
+ "kind": "method",
3061
+ "name": "onFileSelected",
3062
+ "privacy": "protected",
3063
+ "return": {
3064
+ "type": {
3065
+ "text": "void"
3066
+ }
3067
+ },
3068
+ "parameters": [
3069
+ {
3070
+ "name": "files",
3071
+ "type": {
3072
+ "text": "File[]"
3073
+ },
3074
+ "description": "The selected file"
3075
+ }
3076
+ ],
3077
+ "description": "Abstract method called when a file is selected"
3078
+ },
3079
+ {
3080
+ "kind": "method",
3081
+ "name": "onFileCleared",
3082
+ "privacy": "protected",
3083
+ "return": {
3084
+ "type": {
3085
+ "text": "void"
3086
+ }
3087
+ },
3088
+ "description": "Abstract method called when file selection is cleared"
3089
+ },
3090
+ {
3091
+ "kind": "field",
3092
+ "name": "_presentation",
3093
+ "type": {
3094
+ "text": "ComponentPresentation | null | undefined"
3095
+ },
3096
+ "privacy": "private",
3097
+ "default": "void 0",
3098
+ "inheritedFrom": {
3099
+ "name": "FoundationElement",
3100
+ "module": "src/foundation-element/foundation-element.ts"
3101
+ }
3102
+ },
3103
+ {
3104
+ "kind": "field",
3105
+ "name": "$presentation",
3106
+ "type": {
3107
+ "text": "ComponentPresentation | null"
3108
+ },
3109
+ "privacy": "public",
3110
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3111
+ "inheritedFrom": {
3112
+ "name": "FoundationElement",
3113
+ "module": "src/foundation-element/foundation-element.ts"
3114
+ }
3115
+ },
3116
+ {
3117
+ "kind": "field",
3118
+ "name": "template",
3119
+ "type": {
3120
+ "text": "ElementViewTemplate | void | null"
3121
+ },
3122
+ "privacy": "public",
3123
+ "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.",
3124
+ "inheritedFrom": {
3125
+ "name": "FoundationElement",
3126
+ "module": "src/foundation-element/foundation-element.ts"
3127
+ }
3128
+ },
3129
+ {
3130
+ "kind": "method",
3131
+ "name": "templateChanged",
3132
+ "privacy": "protected",
3133
+ "return": {
3134
+ "type": {
3135
+ "text": "void"
3136
+ }
3137
+ },
3138
+ "inheritedFrom": {
3139
+ "name": "FoundationElement",
3140
+ "module": "src/foundation-element/foundation-element.ts"
3141
+ }
3142
+ },
3143
+ {
3144
+ "kind": "field",
3145
+ "name": "styles",
3146
+ "type": {
3147
+ "text": "ElementStyles | void | null"
3148
+ },
3149
+ "privacy": "public",
3150
+ "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.",
3151
+ "inheritedFrom": {
3152
+ "name": "FoundationElement",
3153
+ "module": "src/foundation-element/foundation-element.ts"
3154
+ }
3155
+ },
3156
+ {
3157
+ "kind": "method",
3158
+ "name": "stylesChanged",
3159
+ "privacy": "protected",
3160
+ "return": {
3161
+ "type": {
3162
+ "text": "void"
3163
+ }
3164
+ },
3165
+ "inheritedFrom": {
3166
+ "name": "FoundationElement",
3167
+ "module": "src/foundation-element/foundation-element.ts"
3168
+ }
3169
+ },
3170
+ {
3171
+ "kind": "method",
3172
+ "name": "compose",
3173
+ "privacy": "public",
3174
+ "static": true,
3175
+ "return": {
3176
+ "type": {
3177
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3178
+ }
3179
+ },
3180
+ "parameters": [
3181
+ {
3182
+ "name": "this",
3183
+ "type": {
3184
+ "text": "K"
3185
+ }
3186
+ },
3187
+ {
3188
+ "name": "elementDefinition",
3189
+ "type": {
3190
+ "text": "T"
3191
+ },
3192
+ "description": "The definition of the element to create the registry\nfunction for."
3193
+ }
3194
+ ],
3195
+ "description": "Defines an element registry function with a set of element definition defaults.",
3196
+ "inheritedFrom": {
3197
+ "name": "FoundationElement",
3198
+ "module": "src/foundation-element/foundation-element.ts"
3199
+ }
3200
+ }
3201
+ ],
3202
+ "events": [
3203
+ {
3204
+ "description": "Fired when file size validation fails",
3205
+ "name": "error"
3206
+ },
3207
+ {
3208
+ "description": "Fired when selection is cleared",
3209
+ "name": "clear"
3210
+ }
3211
+ ],
3212
+ "attributes": [
3213
+ {
3214
+ "name": "label",
3215
+ "type": {
3216
+ "text": "string"
3217
+ },
3218
+ "fieldName": "label"
3219
+ },
3220
+ {
3221
+ "name": "accept",
3222
+ "type": {
3223
+ "text": "string"
3224
+ },
3225
+ "default": "''",
3226
+ "fieldName": "accept"
3227
+ },
3228
+ {
3229
+ "name": "file-size-limit-bytes",
3230
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
3231
+ "resolveInitializer": {
3232
+ "module": "src/_common/base-file-component.ts"
3233
+ },
3234
+ "fieldName": "fileSizeLimitBytes"
3235
+ }
3236
+ ],
3237
+ "superclass": {
3238
+ "name": "FoundationElement",
3239
+ "package": "@microsoft/fast-foundation"
3240
+ }
3241
+ }
3242
+ ],
3243
+ "exports": [
3244
+ {
3245
+ "kind": "js",
3246
+ "name": "BaseFileComponent",
3247
+ "declaration": {
3248
+ "name": "BaseFileComponent",
3249
+ "module": "src/_common/base-file-component.ts"
3250
+ }
3251
+ }
3252
+ ]
3253
+ },
3254
+ {
3255
+ "kind": "javascript-module",
3256
+ "path": "src/_common/field-styles.ts",
3257
+ "declarations": [
3258
+ {
3259
+ "kind": "variable",
3260
+ "name": "sharedFieldStyles",
3261
+ "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`"
3262
+ }
3263
+ ],
3264
+ "exports": [
3265
+ {
3266
+ "kind": "js",
3267
+ "name": "sharedFieldStyles",
3268
+ "declaration": {
3269
+ "name": "sharedFieldStyles",
3270
+ "module": "src/_common/field-styles.ts"
3271
+ }
3272
+ }
3273
+ ]
3274
+ },
3275
+ {
3276
+ "kind": "javascript-module",
3277
+ "path": "src/_common/icons.ts",
3278
+ "declarations": [
3279
+ {
3280
+ "kind": "function",
3281
+ "name": "closeIcon",
3282
+ "parameters": [
3283
+ {
3284
+ "name": "slot",
3285
+ "default": "'start'"
3286
+ },
3287
+ {
3288
+ "name": "fill",
3289
+ "default": "'#879ba6'"
3290
+ }
3291
+ ]
3292
+ }
3293
+ ],
3294
+ "exports": [
3295
+ {
3296
+ "kind": "js",
3297
+ "name": "closeIcon",
3298
+ "declaration": {
3299
+ "name": "closeIcon",
3300
+ "module": "src/_common/icons.ts"
3301
+ }
3302
+ }
3303
+ ]
3304
+ },
3305
+ {
3306
+ "kind": "javascript-module",
3307
+ "path": "src/_common/index.ts",
3308
+ "declarations": [],
3309
+ "exports": [
3310
+ {
3311
+ "kind": "js",
3312
+ "name": "*",
3313
+ "declaration": {
3314
+ "name": "*",
3315
+ "package": "./affix-mixin"
3316
+ }
3317
+ },
3318
+ {
3319
+ "kind": "js",
3320
+ "name": "*",
3321
+ "declaration": {
3322
+ "name": "*",
3323
+ "package": "./base-file-component"
3324
+ }
3325
+ },
3326
+ {
3327
+ "kind": "js",
3328
+ "name": "*",
3329
+ "declaration": {
3330
+ "name": "*",
3331
+ "package": "./field-styles"
3332
+ }
3333
+ },
3334
+ {
3335
+ "kind": "js",
3336
+ "name": "*",
3337
+ "declaration": {
3338
+ "name": "*",
3339
+ "package": "./icons"
3340
+ }
3341
+ }
3342
+ ]
3343
+ },
3344
+ {
3345
+ "kind": "javascript-module",
3346
+ "path": "src/_config/index.ts",
3347
+ "declarations": [],
3348
+ "exports": [
3349
+ {
3350
+ "kind": "js",
3351
+ "name": "*",
3352
+ "declaration": {
3353
+ "name": "*",
3354
+ "package": "./styles"
3355
+ }
3356
+ },
3357
+ {
3358
+ "kind": "js",
3359
+ "name": "*",
3360
+ "declaration": {
3361
+ "name": "*",
3362
+ "package": "./tokens"
3363
+ }
3364
+ },
3365
+ {
3366
+ "kind": "js",
3367
+ "name": "*",
3368
+ "declaration": {
3369
+ "name": "*",
3370
+ "package": "./values"
3371
+ }
3372
+ }
3373
+ ]
3374
+ },
3375
+ {
3376
+ "kind": "javascript-module",
3377
+ "path": "src/accordion/accordion.styles.ts",
3378
+ "declarations": [
3379
+ {
3380
+ "kind": "function",
3381
+ "name": "foundationAccordionStyles",
3382
+ "return": {
3383
+ "type": {
3384
+ "text": "ElementStyles"
3385
+ }
3386
+ },
3387
+ "parameters": [
3388
+ {
3389
+ "name": "context",
3390
+ "type": {
3391
+ "text": "ElementDefinitionContext"
3392
+ }
3393
+ },
3394
+ {
3395
+ "name": "definition",
3396
+ "type": {
3397
+ "text": "FoundationElementDefinition"
3398
+ }
3399
+ }
3400
+ ]
3401
+ }
3402
+ ],
3403
+ "exports": [
3404
+ {
3405
+ "kind": "js",
3406
+ "name": "foundationAccordionStyles",
3483
3407
  "declaration": {
3484
- "name": "foundationAiIndicatorStyles",
3485
- "module": "src/ai-indicator/ai-indicator.styles.ts"
3408
+ "name": "foundationAccordionStyles",
3409
+ "module": "src/accordion/accordion.styles.ts"
3486
3410
  }
3487
3411
  }
3488
3412
  ]
3489
3413
  },
3490
3414
  {
3491
3415
  "kind": "javascript-module",
3492
- "path": "src/ai-indicator/ai-indicator.template.ts",
3416
+ "path": "src/accordion/accordion.template.ts",
3493
3417
  "declarations": [
3494
3418
  {
3495
- "kind": "variable",
3496
- "name": "foundationAiIndicatorTemplate",
3497
- "type": {
3498
- "text": "ViewTemplate<AiIndicator>"
3419
+ "kind": "function",
3420
+ "name": "foundationAccordionTemplate",
3421
+ "return": {
3422
+ "type": {
3423
+ "text": "ViewTemplate<Accordion>"
3424
+ }
3499
3425
  },
3500
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3426
+ "parameters": [
3427
+ {
3428
+ "name": "context",
3429
+ "type": {
3430
+ "text": "ElementDefinitionContext"
3431
+ }
3432
+ },
3433
+ {
3434
+ "name": "definition",
3435
+ "type": {
3436
+ "text": "FoundationElementDefinition"
3437
+ }
3438
+ }
3439
+ ]
3501
3440
  }
3502
3441
  ],
3503
3442
  "exports": [
3504
3443
  {
3505
3444
  "kind": "js",
3506
- "name": "foundationAiIndicatorTemplate",
3445
+ "name": "foundationAccordionTemplate",
3507
3446
  "declaration": {
3508
- "name": "foundationAiIndicatorTemplate",
3509
- "module": "src/ai-indicator/ai-indicator.template.ts"
3447
+ "name": "foundationAccordionTemplate",
3448
+ "module": "src/accordion/accordion.template.ts"
3510
3449
  }
3511
3450
  }
3512
3451
  ]
3513
3452
  },
3514
3453
  {
3515
3454
  "kind": "javascript-module",
3516
- "path": "src/ai-indicator/ai-indicator.ts",
3455
+ "path": "src/accordion/accordion.ts",
3517
3456
  "declarations": [
3518
3457
  {
3519
3458
  "kind": "class",
3520
3459
  "description": "",
3521
- "name": "AiIndicator",
3522
- "members": [
3523
- {
3524
- "kind": "field",
3525
- "name": "aiProvider",
3526
- "type": {
3527
- "text": "AIProvider"
3528
- }
3529
- },
3460
+ "name": "Accordion",
3461
+ "superclass": {
3462
+ "name": "FASTAccordion",
3463
+ "package": "@microsoft/fast-foundation"
3464
+ },
3465
+ "tagName": "%%prefix%%-accordion",
3466
+ "customElement": true,
3467
+ "attributes": [
3530
3468
  {
3531
- "kind": "field",
3532
- "name": "status",
3469
+ "name": "expand-mode",
3533
3470
  "type": {
3534
- "text": "AIStatus | null"
3471
+ "text": "AccordionExpandMode"
3535
3472
  },
3536
- "default": "null"
3537
- },
3473
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3474
+ "fieldName": "expandmode",
3475
+ "inheritedFrom": {
3476
+ "name": "Accordion",
3477
+ "module": "src/accordion/accordion.ts"
3478
+ }
3479
+ }
3480
+ ],
3481
+ "members": [
3538
3482
  {
3539
3483
  "kind": "field",
3540
- "name": "open",
3484
+ "name": "expandmode",
3541
3485
  "type": {
3542
- "text": "boolean"
3486
+ "text": "AccordionExpandMode"
3543
3487
  },
3544
- "default": "false"
3488
+ "privacy": "public",
3489
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3490
+ "inheritedFrom": {
3491
+ "name": "Accordion",
3492
+ "module": "src/accordion/accordion.ts"
3493
+ }
3545
3494
  },
3546
3495
  {
3547
3496
  "kind": "field",
3548
- "name": "state",
3497
+ "name": "activeid",
3549
3498
  "type": {
3550
- "text": "AIIndicatorState"
3499
+ "text": "string | null"
3551
3500
  },
3552
- "default": "'none'"
3501
+ "privacy": "private",
3502
+ "inheritedFrom": {
3503
+ "name": "Accordion",
3504
+ "module": "src/accordion/accordion.ts"
3505
+ }
3553
3506
  },
3554
3507
  {
3555
3508
  "kind": "field",
3556
- "name": "isInstalling",
3509
+ "name": "activeItemIndex",
3557
3510
  "type": {
3558
- "text": "boolean"
3511
+ "text": "number"
3559
3512
  },
3560
- "default": "false"
3513
+ "privacy": "private",
3514
+ "default": "0",
3515
+ "inheritedFrom": {
3516
+ "name": "Accordion",
3517
+ "module": "src/accordion/accordion.ts"
3518
+ }
3561
3519
  },
3562
3520
  {
3563
3521
  "kind": "field",
3564
- "name": "pollTimer",
3522
+ "name": "accordionIds",
3565
3523
  "type": {
3566
- "text": "ReturnType<typeof setInterval> | null"
3524
+ "text": "Array<string | null>"
3567
3525
  },
3568
3526
  "privacy": "private",
3569
- "default": "null"
3570
- },
3571
- {
3572
- "kind": "field",
3573
- "name": "clickOutside",
3574
- "privacy": "private"
3527
+ "inheritedFrom": {
3528
+ "name": "Accordion",
3529
+ "module": "src/accordion/accordion.ts"
3530
+ }
3575
3531
  },
3576
3532
  {
3577
3533
  "kind": "field",
3578
- "name": "chromeStatusLabel",
3579
- "type": {
3580
- "text": "string | null"
3581
- },
3582
- "readonly": true
3534
+ "name": "change",
3535
+ "privacy": "private",
3536
+ "inheritedFrom": {
3537
+ "name": "Accordion",
3538
+ "module": "src/accordion/accordion.ts"
3539
+ }
3583
3540
  },
3584
3541
  {
3585
- "kind": "field",
3586
- "name": "canInstall",
3587
- "type": {
3588
- "text": "boolean"
3542
+ "kind": "method",
3543
+ "name": "findExpandedItem",
3544
+ "privacy": "private",
3545
+ "return": {
3546
+ "type": {
3547
+ "text": "AccordionItem | null"
3548
+ }
3589
3549
  },
3590
- "readonly": true
3550
+ "inheritedFrom": {
3551
+ "name": "Accordion",
3552
+ "module": "src/accordion/accordion.ts"
3553
+ }
3591
3554
  },
3592
3555
  {
3593
3556
  "kind": "field",
3594
- "name": "isDownloading",
3595
- "type": {
3596
- "text": "boolean"
3597
- },
3598
- "readonly": true
3557
+ "name": "setItems",
3558
+ "privacy": "private",
3559
+ "inheritedFrom": {
3560
+ "name": "Accordion",
3561
+ "module": "src/accordion/accordion.ts"
3562
+ }
3599
3563
  },
3600
3564
  {
3601
3565
  "kind": "method",
3602
- "name": "openChanged",
3566
+ "name": "resetItems",
3567
+ "privacy": "private",
3603
3568
  "return": {
3604
3569
  "type": {
3605
3570
  "text": "void"
3606
3571
  }
3572
+ },
3573
+ "inheritedFrom": {
3574
+ "name": "Accordion",
3575
+ "module": "src/accordion/accordion.ts"
3607
3576
  }
3608
3577
  },
3609
3578
  {
3610
- "kind": "method",
3611
- "name": "handleClickOutside",
3579
+ "kind": "field",
3580
+ "name": "removeItemListeners",
3612
3581
  "privacy": "private",
3613
- "parameters": [
3614
- {
3615
- "name": "event",
3616
- "type": {
3617
- "text": "MouseEvent"
3618
- }
3619
- }
3620
- ]
3582
+ "inheritedFrom": {
3583
+ "name": "Accordion",
3584
+ "module": "src/accordion/accordion.ts"
3585
+ }
3621
3586
  },
3622
3587
  {
3623
- "kind": "method",
3624
- "name": "toggleDropdown"
3588
+ "kind": "field",
3589
+ "name": "activeItemChange",
3590
+ "privacy": "private",
3591
+ "inheritedFrom": {
3592
+ "name": "Accordion",
3593
+ "module": "src/accordion/accordion.ts"
3594
+ }
3625
3595
  },
3626
3596
  {
3627
3597
  "kind": "method",
3628
- "name": "refreshStatus",
3598
+ "name": "getItemIds",
3599
+ "privacy": "private",
3629
3600
  "return": {
3630
3601
  "type": {
3631
- "text": "Promise<void>"
3602
+ "text": "Array<string | null>"
3632
3603
  }
3604
+ },
3605
+ "inheritedFrom": {
3606
+ "name": "Accordion",
3607
+ "module": "src/accordion/accordion.ts"
3633
3608
  }
3634
3609
  },
3635
3610
  {
3636
3611
  "kind": "method",
3637
- "name": "deriveState",
3612
+ "name": "isSingleExpandMode",
3638
3613
  "privacy": "private",
3639
3614
  "return": {
3640
3615
  "type": {
3641
- "text": "AIIndicatorState"
3616
+ "text": "boolean"
3642
3617
  }
3643
3618
  },
3644
- "parameters": [
3645
- {
3646
- "name": "s",
3647
- "type": {
3648
- "text": "AIStatus | null"
3649
- }
3650
- }
3651
- ]
3619
+ "inheritedFrom": {
3620
+ "name": "Accordion",
3621
+ "module": "src/accordion/accordion.ts"
3622
+ }
3652
3623
  },
3653
3624
  {
3654
- "kind": "method",
3655
- "name": "maybeStartPolling",
3625
+ "kind": "field",
3626
+ "name": "handleItemKeyDown",
3656
3627
  "privacy": "private",
3657
- "return": {
3658
- "type": {
3659
- "text": "void"
3660
- }
3628
+ "inheritedFrom": {
3629
+ "name": "Accordion",
3630
+ "module": "src/accordion/accordion.ts"
3661
3631
  }
3662
3632
  },
3663
3633
  {
3664
- "kind": "method",
3665
- "name": "startPolling",
3634
+ "kind": "field",
3635
+ "name": "handleItemFocus",
3666
3636
  "privacy": "private",
3667
- "return": {
3668
- "type": {
3669
- "text": "void"
3670
- }
3637
+ "inheritedFrom": {
3638
+ "name": "Accordion",
3639
+ "module": "src/accordion/accordion.ts"
3671
3640
  }
3672
3641
  },
3673
3642
  {
3674
3643
  "kind": "method",
3675
- "name": "stopPolling",
3644
+ "name": "adjust",
3676
3645
  "privacy": "private",
3677
3646
  "return": {
3678
3647
  "type": {
3679
3648
  "text": "void"
3680
3649
  }
3650
+ },
3651
+ "parameters": [
3652
+ {
3653
+ "name": "adjustment",
3654
+ "type": {
3655
+ "text": "number"
3656
+ }
3657
+ }
3658
+ ],
3659
+ "inheritedFrom": {
3660
+ "name": "Accordion",
3661
+ "module": "src/accordion/accordion.ts"
3681
3662
  }
3682
3663
  },
3683
3664
  {
3684
3665
  "kind": "method",
3685
- "name": "onInstall",
3666
+ "name": "focusItem",
3667
+ "privacy": "private",
3686
3668
  "return": {
3687
3669
  "type": {
3688
- "text": "Promise<void>"
3670
+ "text": "void"
3689
3671
  }
3672
+ },
3673
+ "inheritedFrom": {
3674
+ "name": "Accordion",
3675
+ "module": "src/accordion/accordion.ts"
3690
3676
  }
3691
3677
  },
3692
3678
  {
@@ -3801,88 +3787,102 @@
3801
3787
  }
3802
3788
  }
3803
3789
  ],
3804
- "superclass": {
3805
- "name": "FoundationElement",
3806
- "package": "@microsoft/fast-foundation"
3790
+ "events": [
3791
+ {
3792
+ "description": "Fires a custom 'change' event when the active item changes",
3793
+ "name": "change",
3794
+ "inheritedFrom": {
3795
+ "name": "Accordion",
3796
+ "module": "src/accordion/accordion.ts"
3797
+ }
3798
+ }
3799
+ ]
3800
+ },
3801
+ {
3802
+ "kind": "variable",
3803
+ "name": "foundationAccordionShadowOptions",
3804
+ "type": {
3805
+ "text": "ShadowRootInit"
3807
3806
  },
3808
- "tagName": "%%prefix%%-ai-indicator",
3809
- "customElement": true
3807
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
3810
3808
  },
3811
3809
  {
3812
3810
  "kind": "variable",
3813
- "name": "foundationAiIndicator"
3811
+ "name": "defaultAccordionConfig",
3812
+ "type": {
3813
+ "text": "object"
3814
+ },
3815
+ "default": "{}"
3816
+ },
3817
+ {
3818
+ "kind": "variable",
3819
+ "name": "foundationAccordion",
3820
+ "description": "The Foundation Accordion",
3821
+ "privacy": "public"
3814
3822
  }
3815
3823
  ],
3816
3824
  "exports": [
3817
3825
  {
3818
3826
  "kind": "js",
3819
- "name": "AiIndicator",
3827
+ "name": "Accordion",
3820
3828
  "declaration": {
3821
- "name": "AiIndicator",
3822
- "module": "src/ai-indicator/ai-indicator.ts"
3829
+ "name": "Accordion",
3830
+ "module": "src/accordion/accordion.ts"
3823
3831
  }
3824
3832
  },
3825
3833
  {
3826
3834
  "kind": "js",
3827
- "name": "foundationAiIndicator",
3828
- "declaration": {
3829
- "name": "foundationAiIndicator",
3830
- "module": "src/ai-indicator/ai-indicator.ts"
3831
- }
3832
- }
3833
- ]
3834
- },
3835
- {
3836
- "kind": "javascript-module",
3837
- "path": "src/ai-indicator/index.ts",
3838
- "declarations": [],
3839
- "exports": [
3840
- {
3841
- "kind": "js",
3842
- "name": "AiIndicator",
3835
+ "name": "foundationAccordionShadowOptions",
3843
3836
  "declaration": {
3844
- "name": "AiIndicator",
3845
- "module": "./ai-indicator"
3837
+ "name": "foundationAccordionShadowOptions",
3838
+ "module": "src/accordion/accordion.ts"
3846
3839
  }
3847
3840
  },
3848
3841
  {
3849
3842
  "kind": "js",
3850
- "name": "foundationAiIndicator",
3843
+ "name": "defaultAccordionConfig",
3851
3844
  "declaration": {
3852
- "name": "foundationAiIndicator",
3853
- "module": "./ai-indicator"
3845
+ "name": "defaultAccordionConfig",
3846
+ "module": "src/accordion/accordion.ts"
3854
3847
  }
3855
3848
  },
3856
3849
  {
3857
3850
  "kind": "js",
3858
- "name": "type",
3851
+ "name": "foundationAccordion",
3859
3852
  "declaration": {
3860
- "name": "type",
3861
- "module": "./ai-indicator"
3853
+ "name": "foundationAccordion",
3854
+ "module": "src/accordion/accordion.ts"
3862
3855
  }
3863
- },
3856
+ }
3857
+ ]
3858
+ },
3859
+ {
3860
+ "kind": "javascript-module",
3861
+ "path": "src/accordion/index.ts",
3862
+ "declarations": [],
3863
+ "exports": [
3864
3864
  {
3865
3865
  "kind": "js",
3866
- "name": "AIIndicatorState",
3866
+ "name": "*",
3867
3867
  "declaration": {
3868
- "name": "AIIndicatorState",
3869
- "module": "./ai-indicator"
3868
+ "name": "*",
3869
+ "package": "./accordion.template"
3870
3870
  }
3871
3871
  },
3872
3872
  {
3873
3873
  "kind": "js",
3874
- "name": "foundationAiIndicatorTemplate",
3874
+ "name": "*",
3875
3875
  "declaration": {
3876
- "name": "foundationAiIndicatorTemplate",
3877
- "module": "./ai-indicator.template"
3876
+ "name": "*",
3877
+ "package": "./accordion.styles"
3878
3878
  }
3879
3879
  },
3880
3880
  {
3881
3881
  "kind": "js",
3882
- "name": "foundationAiIndicatorStyles",
3882
+ "name": "*",
3883
3883
  "declaration": {
3884
- "name": "foundationAiIndicatorStyles",
3885
- "module": "./ai-indicator.styles"
3884
+ "name": "*",
3885
+ "package": "./accordion"
3886
3886
  }
3887
3887
  }
3888
3888
  ]
@@ -32208,7 +32208,7 @@
32208
32208
  "kind": "field",
32209
32209
  "name": "dataSub",
32210
32210
  "type": {
32211
- "text": "Subscription"
32211
+ "text": "Subscription | undefined"
32212
32212
  },
32213
32213
  "privacy": "protected"
32214
32214
  },
@@ -56421,6 +56421,181 @@
56421
56421
  }
56422
56422
  ]
56423
56423
  },
56424
+ {
56425
+ "kind": "javascript-module",
56426
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
56427
+ "declarations": [],
56428
+ "exports": []
56429
+ },
56430
+ {
56431
+ "kind": "javascript-module",
56432
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
56433
+ "declarations": [
56434
+ {
56435
+ "kind": "function",
56436
+ "name": "groupsToCriteria",
56437
+ "return": {
56438
+ "type": {
56439
+ "text": "string"
56440
+ }
56441
+ },
56442
+ "parameters": [
56443
+ {
56444
+ "name": "groups",
56445
+ "type": {
56446
+ "text": "CriteriaGroup[]"
56447
+ }
56448
+ }
56449
+ ],
56450
+ "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."
56451
+ },
56452
+ {
56453
+ "kind": "variable",
56454
+ "name": "STRING_OPERATORS",
56455
+ "type": {
56456
+ "text": "CriteriaOperator[]"
56457
+ },
56458
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
56459
+ },
56460
+ {
56461
+ "kind": "variable",
56462
+ "name": "NUMERIC_OPERATORS",
56463
+ "type": {
56464
+ "text": "CriteriaOperator[]"
56465
+ },
56466
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
56467
+ },
56468
+ {
56469
+ "kind": "variable",
56470
+ "name": "DATE_OPERATORS",
56471
+ "type": {
56472
+ "text": "CriteriaOperator[]"
56473
+ },
56474
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
56475
+ },
56476
+ {
56477
+ "kind": "variable",
56478
+ "name": "DATETIME_OPERATORS",
56479
+ "type": {
56480
+ "text": "CriteriaOperator[]"
56481
+ },
56482
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
56483
+ }
56484
+ ],
56485
+ "exports": [
56486
+ {
56487
+ "kind": "js",
56488
+ "name": "groupsToCriteria",
56489
+ "declaration": {
56490
+ "name": "groupsToCriteria",
56491
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
56492
+ }
56493
+ },
56494
+ {
56495
+ "kind": "js",
56496
+ "name": "STRING_OPERATORS",
56497
+ "declaration": {
56498
+ "name": "STRING_OPERATORS",
56499
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
56500
+ }
56501
+ },
56502
+ {
56503
+ "kind": "js",
56504
+ "name": "NUMERIC_OPERATORS",
56505
+ "declaration": {
56506
+ "name": "NUMERIC_OPERATORS",
56507
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
56508
+ }
56509
+ },
56510
+ {
56511
+ "kind": "js",
56512
+ "name": "DATE_OPERATORS",
56513
+ "declaration": {
56514
+ "name": "DATE_OPERATORS",
56515
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
56516
+ }
56517
+ },
56518
+ {
56519
+ "kind": "js",
56520
+ "name": "DATETIME_OPERATORS",
56521
+ "declaration": {
56522
+ "name": "DATETIME_OPERATORS",
56523
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
56524
+ }
56525
+ }
56526
+ ]
56527
+ },
56528
+ {
56529
+ "kind": "javascript-module",
56530
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
56531
+ "declarations": [
56532
+ {
56533
+ "kind": "function",
56534
+ "name": "validateClauses",
56535
+ "return": {
56536
+ "type": {
56537
+ "text": "ValidationResult"
56538
+ }
56539
+ },
56540
+ "parameters": [
56541
+ {
56542
+ "name": "clauses",
56543
+ "type": {
56544
+ "text": "CriteriaClause[]"
56545
+ }
56546
+ },
56547
+ {
56548
+ "name": "fieldMetadata",
56549
+ "type": {
56550
+ "text": "MetadataDetail[] | string[]"
56551
+ }
56552
+ }
56553
+ ]
56554
+ },
56555
+ {
56556
+ "kind": "function",
56557
+ "name": "validateGroups",
56558
+ "return": {
56559
+ "type": {
56560
+ "text": "GroupsValidationResult"
56561
+ }
56562
+ },
56563
+ "parameters": [
56564
+ {
56565
+ "name": "groups",
56566
+ "type": {
56567
+ "text": "CriteriaGroup[]"
56568
+ }
56569
+ },
56570
+ {
56571
+ "name": "fieldMetadata",
56572
+ "type": {
56573
+ "text": "MetadataDetail[] | string[]"
56574
+ }
56575
+ }
56576
+ ],
56577
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
56578
+ }
56579
+ ],
56580
+ "exports": [
56581
+ {
56582
+ "kind": "js",
56583
+ "name": "validateClauses",
56584
+ "declaration": {
56585
+ "name": "validateClauses",
56586
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
56587
+ }
56588
+ },
56589
+ {
56590
+ "kind": "js",
56591
+ "name": "validateGroups",
56592
+ "declaration": {
56593
+ "name": "validateGroups",
56594
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
56595
+ }
56596
+ }
56597
+ ]
56598
+ },
56424
56599
  {
56425
56600
  "kind": "javascript-module",
56426
56601
  "path": "src/_config/styles/colors.ts",
@@ -57793,181 +57968,6 @@
57793
57968
  "declarations": [],
57794
57969
  "exports": []
57795
57970
  },
57796
- {
57797
- "kind": "javascript-module",
57798
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
57799
- "declarations": [],
57800
- "exports": []
57801
- },
57802
- {
57803
- "kind": "javascript-module",
57804
- "path": "src/ai-criteria-search/validation/operator-map.ts",
57805
- "declarations": [
57806
- {
57807
- "kind": "function",
57808
- "name": "groupsToCriteria",
57809
- "return": {
57810
- "type": {
57811
- "text": "string"
57812
- }
57813
- },
57814
- "parameters": [
57815
- {
57816
- "name": "groups",
57817
- "type": {
57818
- "text": "CriteriaGroup[]"
57819
- }
57820
- }
57821
- ],
57822
- "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."
57823
- },
57824
- {
57825
- "kind": "variable",
57826
- "name": "STRING_OPERATORS",
57827
- "type": {
57828
- "text": "CriteriaOperator[]"
57829
- },
57830
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
57831
- },
57832
- {
57833
- "kind": "variable",
57834
- "name": "NUMERIC_OPERATORS",
57835
- "type": {
57836
- "text": "CriteriaOperator[]"
57837
- },
57838
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
57839
- },
57840
- {
57841
- "kind": "variable",
57842
- "name": "DATE_OPERATORS",
57843
- "type": {
57844
- "text": "CriteriaOperator[]"
57845
- },
57846
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
57847
- },
57848
- {
57849
- "kind": "variable",
57850
- "name": "DATETIME_OPERATORS",
57851
- "type": {
57852
- "text": "CriteriaOperator[]"
57853
- },
57854
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
57855
- }
57856
- ],
57857
- "exports": [
57858
- {
57859
- "kind": "js",
57860
- "name": "groupsToCriteria",
57861
- "declaration": {
57862
- "name": "groupsToCriteria",
57863
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57864
- }
57865
- },
57866
- {
57867
- "kind": "js",
57868
- "name": "STRING_OPERATORS",
57869
- "declaration": {
57870
- "name": "STRING_OPERATORS",
57871
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57872
- }
57873
- },
57874
- {
57875
- "kind": "js",
57876
- "name": "NUMERIC_OPERATORS",
57877
- "declaration": {
57878
- "name": "NUMERIC_OPERATORS",
57879
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57880
- }
57881
- },
57882
- {
57883
- "kind": "js",
57884
- "name": "DATE_OPERATORS",
57885
- "declaration": {
57886
- "name": "DATE_OPERATORS",
57887
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57888
- }
57889
- },
57890
- {
57891
- "kind": "js",
57892
- "name": "DATETIME_OPERATORS",
57893
- "declaration": {
57894
- "name": "DATETIME_OPERATORS",
57895
- "module": "src/ai-criteria-search/validation/operator-map.ts"
57896
- }
57897
- }
57898
- ]
57899
- },
57900
- {
57901
- "kind": "javascript-module",
57902
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
57903
- "declarations": [
57904
- {
57905
- "kind": "function",
57906
- "name": "validateClauses",
57907
- "return": {
57908
- "type": {
57909
- "text": "ValidationResult"
57910
- }
57911
- },
57912
- "parameters": [
57913
- {
57914
- "name": "clauses",
57915
- "type": {
57916
- "text": "CriteriaClause[]"
57917
- }
57918
- },
57919
- {
57920
- "name": "fieldMetadata",
57921
- "type": {
57922
- "text": "MetadataDetail[] | string[]"
57923
- }
57924
- }
57925
- ]
57926
- },
57927
- {
57928
- "kind": "function",
57929
- "name": "validateGroups",
57930
- "return": {
57931
- "type": {
57932
- "text": "GroupsValidationResult"
57933
- }
57934
- },
57935
- "parameters": [
57936
- {
57937
- "name": "groups",
57938
- "type": {
57939
- "text": "CriteriaGroup[]"
57940
- }
57941
- },
57942
- {
57943
- "name": "fieldMetadata",
57944
- "type": {
57945
- "text": "MetadataDetail[] | string[]"
57946
- }
57947
- }
57948
- ],
57949
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
57950
- }
57951
- ],
57952
- "exports": [
57953
- {
57954
- "kind": "js",
57955
- "name": "validateClauses",
57956
- "declaration": {
57957
- "name": "validateClauses",
57958
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
57959
- }
57960
- },
57961
- {
57962
- "kind": "js",
57963
- "name": "validateGroups",
57964
- "declaration": {
57965
- "name": "validateGroups",
57966
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
57967
- }
57968
- }
57969
- ]
57970
- },
57971
57971
  {
57972
57972
  "kind": "javascript-module",
57973
57973
  "path": "src/environment-indicator/utils/configure.ts",