@genesislcap/foundation-ui 15.3.2-FUI-2591.1 → 15.3.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.
@@ -956,503 +956,6 @@
956
956
  }
957
957
  ]
958
958
  },
959
- {
960
- "kind": "javascript-module",
961
- "path": "src/_common/affix-mixin.ts",
962
- "declarations": [
963
- {
964
- "kind": "mixin",
965
- "description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
966
- "name": "AffixMixin",
967
- "members": [
968
- {
969
- "kind": "field",
970
- "name": "prefix",
971
- "type": {
972
- "text": "string"
973
- },
974
- "description": "Optional non-editable label shown on the left inside the field, before the input."
975
- },
976
- {
977
- "kind": "field",
978
- "name": "suffix",
979
- "type": {
980
- "text": "string"
981
- },
982
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
983
- },
984
- {
985
- "kind": "field",
986
- "name": "hideAffixFromScreenReader",
987
- "type": {
988
- "text": "boolean"
989
- },
990
- "default": "false",
991
- "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
992
- }
993
- ],
994
- "parameters": [
995
- {
996
- "name": "Base",
997
- "type": {
998
- "text": "TBase"
999
- }
1000
- }
1001
- ]
1002
- }
1003
- ],
1004
- "exports": [
1005
- {
1006
- "kind": "js",
1007
- "name": "AffixMixin",
1008
- "declaration": {
1009
- "name": "AffixMixin",
1010
- "module": "src/_common/affix-mixin.ts"
1011
- }
1012
- }
1013
- ]
1014
- },
1015
- {
1016
- "kind": "javascript-module",
1017
- "path": "src/_common/base-file-component.ts",
1018
- "declarations": [
1019
- {
1020
- "kind": "class",
1021
- "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1022
- "name": "BaseFileComponent",
1023
- "members": [
1024
- {
1025
- "kind": "field",
1026
- "name": "fileInput",
1027
- "type": {
1028
- "text": "HTMLInputElement"
1029
- },
1030
- "privacy": "public"
1031
- },
1032
- {
1033
- "kind": "field",
1034
- "name": "selectedFile",
1035
- "type": {
1036
- "text": "File | null"
1037
- },
1038
- "privacy": "protected",
1039
- "default": "null"
1040
- },
1041
- {
1042
- "kind": "field",
1043
- "name": "label",
1044
- "type": {
1045
- "text": "string"
1046
- }
1047
- },
1048
- {
1049
- "kind": "field",
1050
- "name": "accept",
1051
- "type": {
1052
- "text": "string"
1053
- },
1054
- "default": "''"
1055
- },
1056
- {
1057
- "kind": "field",
1058
- "name": "fileSizeLimitBytes",
1059
- "default": "10_485_760",
1060
- "type": {
1061
- "text": "number"
1062
- }
1063
- },
1064
- {
1065
- "kind": "field",
1066
- "name": "fileName",
1067
- "type": {
1068
- "text": "string"
1069
- },
1070
- "default": "''"
1071
- },
1072
- {
1073
- "kind": "field",
1074
- "name": "isProcessing",
1075
- "type": {
1076
- "text": "boolean"
1077
- },
1078
- "default": "false"
1079
- },
1080
- {
1081
- "kind": "method",
1082
- "name": "handleClick",
1083
- "privacy": "public",
1084
- "description": "Opens the file picker dialog\nClears any previous file selection before opening"
1085
- },
1086
- {
1087
- "kind": "method",
1088
- "name": "onInputChange",
1089
- "privacy": "public",
1090
- "parameters": [
1091
- {
1092
- "name": "e",
1093
- "type": {
1094
- "text": "Event"
1095
- },
1096
- "description": "The change event from the file input"
1097
- }
1098
- ],
1099
- "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
1100
- },
1101
- {
1102
- "kind": "method",
1103
- "name": "clearSelection",
1104
- "privacy": "public",
1105
- "description": "Clears all file selection and processing state\nResets the component to its initial state"
1106
- },
1107
- {
1108
- "kind": "method",
1109
- "name": "getSelectedFile",
1110
- "privacy": "public",
1111
- "description": "Gets the currently selected file object",
1112
- "return": {
1113
- "type": {
1114
- "text": ""
1115
- }
1116
- }
1117
- },
1118
- {
1119
- "kind": "method",
1120
- "name": "showError",
1121
- "privacy": "protected",
1122
- "parameters": [
1123
- {
1124
- "name": "title",
1125
- "type": {
1126
- "text": "string"
1127
- },
1128
- "description": "The error title"
1129
- },
1130
- {
1131
- "name": "message",
1132
- "type": {
1133
- "text": "string"
1134
- },
1135
- "description": "The error message"
1136
- }
1137
- ],
1138
- "description": "Shows an error notification using the unified error handling system"
1139
- },
1140
- {
1141
- "kind": "method",
1142
- "name": "onFileSelected",
1143
- "privacy": "protected",
1144
- "return": {
1145
- "type": {
1146
- "text": "void"
1147
- }
1148
- },
1149
- "parameters": [
1150
- {
1151
- "name": "files",
1152
- "type": {
1153
- "text": "File[]"
1154
- },
1155
- "description": "The selected file"
1156
- }
1157
- ],
1158
- "description": "Abstract method called when a file is selected"
1159
- },
1160
- {
1161
- "kind": "method",
1162
- "name": "onFileCleared",
1163
- "privacy": "protected",
1164
- "return": {
1165
- "type": {
1166
- "text": "void"
1167
- }
1168
- },
1169
- "description": "Abstract method called when file selection is cleared"
1170
- },
1171
- {
1172
- "kind": "field",
1173
- "name": "_presentation",
1174
- "type": {
1175
- "text": "ComponentPresentation | null | undefined"
1176
- },
1177
- "privacy": "private",
1178
- "default": "void 0",
1179
- "inheritedFrom": {
1180
- "name": "FoundationElement",
1181
- "module": "src/foundation-element/foundation-element.ts"
1182
- }
1183
- },
1184
- {
1185
- "kind": "field",
1186
- "name": "$presentation",
1187
- "type": {
1188
- "text": "ComponentPresentation | null"
1189
- },
1190
- "privacy": "public",
1191
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1192
- "inheritedFrom": {
1193
- "name": "FoundationElement",
1194
- "module": "src/foundation-element/foundation-element.ts"
1195
- }
1196
- },
1197
- {
1198
- "kind": "field",
1199
- "name": "template",
1200
- "type": {
1201
- "text": "ElementViewTemplate | void | null"
1202
- },
1203
- "privacy": "public",
1204
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1205
- "inheritedFrom": {
1206
- "name": "FoundationElement",
1207
- "module": "src/foundation-element/foundation-element.ts"
1208
- }
1209
- },
1210
- {
1211
- "kind": "method",
1212
- "name": "templateChanged",
1213
- "privacy": "protected",
1214
- "return": {
1215
- "type": {
1216
- "text": "void"
1217
- }
1218
- },
1219
- "inheritedFrom": {
1220
- "name": "FoundationElement",
1221
- "module": "src/foundation-element/foundation-element.ts"
1222
- }
1223
- },
1224
- {
1225
- "kind": "field",
1226
- "name": "styles",
1227
- "type": {
1228
- "text": "ElementStyles | void | null"
1229
- },
1230
- "privacy": "public",
1231
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1232
- "inheritedFrom": {
1233
- "name": "FoundationElement",
1234
- "module": "src/foundation-element/foundation-element.ts"
1235
- }
1236
- },
1237
- {
1238
- "kind": "method",
1239
- "name": "stylesChanged",
1240
- "privacy": "protected",
1241
- "return": {
1242
- "type": {
1243
- "text": "void"
1244
- }
1245
- },
1246
- "inheritedFrom": {
1247
- "name": "FoundationElement",
1248
- "module": "src/foundation-element/foundation-element.ts"
1249
- }
1250
- },
1251
- {
1252
- "kind": "method",
1253
- "name": "compose",
1254
- "privacy": "public",
1255
- "static": true,
1256
- "return": {
1257
- "type": {
1258
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1259
- }
1260
- },
1261
- "parameters": [
1262
- {
1263
- "name": "this",
1264
- "type": {
1265
- "text": "K"
1266
- }
1267
- },
1268
- {
1269
- "name": "elementDefinition",
1270
- "type": {
1271
- "text": "T"
1272
- },
1273
- "description": "The definition of the element to create the registry\nfunction for."
1274
- }
1275
- ],
1276
- "description": "Defines an element registry function with a set of element definition defaults.",
1277
- "inheritedFrom": {
1278
- "name": "FoundationElement",
1279
- "module": "src/foundation-element/foundation-element.ts"
1280
- }
1281
- }
1282
- ],
1283
- "events": [
1284
- {
1285
- "description": "Fired when file size validation fails. detail: `Error`",
1286
- "name": "error"
1287
- },
1288
- {
1289
- "description": "Fired when selection is cleared",
1290
- "name": "clear"
1291
- }
1292
- ],
1293
- "attributes": [
1294
- {
1295
- "name": "label",
1296
- "type": {
1297
- "text": "string"
1298
- },
1299
- "fieldName": "label"
1300
- },
1301
- {
1302
- "name": "accept",
1303
- "type": {
1304
- "text": "string"
1305
- },
1306
- "default": "''",
1307
- "fieldName": "accept"
1308
- },
1309
- {
1310
- "name": "file-size-limit-bytes",
1311
- "default": "DEFAULT_FILE_SIZE_LIMIT",
1312
- "resolveInitializer": {
1313
- "module": "src/_common/base-file-component.ts"
1314
- },
1315
- "fieldName": "fileSizeLimitBytes"
1316
- }
1317
- ],
1318
- "superclass": {
1319
- "name": "FoundationElement",
1320
- "package": "@microsoft/fast-foundation"
1321
- }
1322
- }
1323
- ],
1324
- "exports": [
1325
- {
1326
- "kind": "js",
1327
- "name": "BaseFileComponent",
1328
- "declaration": {
1329
- "name": "BaseFileComponent",
1330
- "module": "src/_common/base-file-component.ts"
1331
- }
1332
- }
1333
- ]
1334
- },
1335
- {
1336
- "kind": "javascript-module",
1337
- "path": "src/_common/field-styles.ts",
1338
- "declarations": [
1339
- {
1340
- "kind": "variable",
1341
- "name": "sharedFieldStyles",
1342
- "default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
1343
- }
1344
- ],
1345
- "exports": [
1346
- {
1347
- "kind": "js",
1348
- "name": "sharedFieldStyles",
1349
- "declaration": {
1350
- "name": "sharedFieldStyles",
1351
- "module": "src/_common/field-styles.ts"
1352
- }
1353
- }
1354
- ]
1355
- },
1356
- {
1357
- "kind": "javascript-module",
1358
- "path": "src/_common/icons.ts",
1359
- "declarations": [
1360
- {
1361
- "kind": "function",
1362
- "name": "closeIcon",
1363
- "parameters": [
1364
- {
1365
- "name": "slot",
1366
- "default": "'start'"
1367
- },
1368
- {
1369
- "name": "fill",
1370
- "default": "'#879ba6'"
1371
- }
1372
- ]
1373
- }
1374
- ],
1375
- "exports": [
1376
- {
1377
- "kind": "js",
1378
- "name": "closeIcon",
1379
- "declaration": {
1380
- "name": "closeIcon",
1381
- "module": "src/_common/icons.ts"
1382
- }
1383
- }
1384
- ]
1385
- },
1386
- {
1387
- "kind": "javascript-module",
1388
- "path": "src/_common/index.ts",
1389
- "declarations": [],
1390
- "exports": [
1391
- {
1392
- "kind": "js",
1393
- "name": "*",
1394
- "declaration": {
1395
- "name": "*",
1396
- "package": "./affix-mixin"
1397
- }
1398
- },
1399
- {
1400
- "kind": "js",
1401
- "name": "*",
1402
- "declaration": {
1403
- "name": "*",
1404
- "package": "./base-file-component"
1405
- }
1406
- },
1407
- {
1408
- "kind": "js",
1409
- "name": "*",
1410
- "declaration": {
1411
- "name": "*",
1412
- "package": "./field-styles"
1413
- }
1414
- },
1415
- {
1416
- "kind": "js",
1417
- "name": "*",
1418
- "declaration": {
1419
- "name": "*",
1420
- "package": "./icons"
1421
- }
1422
- }
1423
- ]
1424
- },
1425
- {
1426
- "kind": "javascript-module",
1427
- "path": "src/_config/index.ts",
1428
- "declarations": [],
1429
- "exports": [
1430
- {
1431
- "kind": "js",
1432
- "name": "*",
1433
- "declaration": {
1434
- "name": "*",
1435
- "package": "./styles"
1436
- }
1437
- },
1438
- {
1439
- "kind": "js",
1440
- "name": "*",
1441
- "declaration": {
1442
- "name": "*",
1443
- "package": "./tokens"
1444
- }
1445
- },
1446
- {
1447
- "kind": "js",
1448
- "name": "*",
1449
- "declaration": {
1450
- "name": "*",
1451
- "package": "./values"
1452
- }
1453
- }
1454
- ]
1455
- },
1456
959
  {
1457
960
  "kind": "javascript-module",
1458
961
  "path": "src/accordion-item/accordion-item.styles.ts",
@@ -1749,533 +1252,18 @@
1749
1252
  ],
1750
1253
  "events": [
1751
1254
  {
1752
- "description": "Fires a custom 'change' event when the button is invoked",
1753
- "name": "change",
1754
- "inheritedFrom": {
1755
- "name": "AccordionItem",
1756
- "module": "src/accordion-item/accordion-item.ts"
1757
- }
1758
- }
1759
- ]
1760
- },
1761
- {
1762
- "kind": "variable",
1763
- "name": "foundationAccordionItemShadowOptions",
1764
- "type": {
1765
- "text": "ShadowRootInit"
1766
- },
1767
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1768
- },
1769
- {
1770
- "kind": "variable",
1771
- "name": "defaultAccordionItemConfig",
1772
- "type": {
1773
- "text": "object"
1774
- },
1775
- "default": "{\n collapsedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"collapsed-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M9 5.44446V12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n expandedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"expanded-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"minus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n}"
1776
- },
1777
- {
1778
- "kind": "variable",
1779
- "name": "foundationAccordionItem",
1780
- "description": "The Foundation Accordion Item",
1781
- "privacy": "public"
1782
- }
1783
- ],
1784
- "exports": [
1785
- {
1786
- "kind": "js",
1787
- "name": "AccordionItem",
1788
- "declaration": {
1789
- "name": "AccordionItem",
1790
- "module": "src/accordion-item/accordion-item.ts"
1791
- }
1792
- },
1793
- {
1794
- "kind": "js",
1795
- "name": "foundationAccordionItemShadowOptions",
1796
- "declaration": {
1797
- "name": "foundationAccordionItemShadowOptions",
1798
- "module": "src/accordion-item/accordion-item.ts"
1799
- }
1800
- },
1801
- {
1802
- "kind": "js",
1803
- "name": "defaultAccordionItemConfig",
1804
- "declaration": {
1805
- "name": "defaultAccordionItemConfig",
1806
- "module": "src/accordion-item/accordion-item.ts"
1807
- }
1808
- },
1809
- {
1810
- "kind": "js",
1811
- "name": "foundationAccordionItem",
1812
- "declaration": {
1813
- "name": "foundationAccordionItem",
1814
- "module": "src/accordion-item/accordion-item.ts"
1815
- }
1816
- }
1817
- ]
1818
- },
1819
- {
1820
- "kind": "javascript-module",
1821
- "path": "src/accordion-item/index.ts",
1822
- "declarations": [],
1823
- "exports": [
1824
- {
1825
- "kind": "js",
1826
- "name": "*",
1827
- "declaration": {
1828
- "name": "*",
1829
- "package": "./accordion-item.template"
1830
- }
1831
- },
1832
- {
1833
- "kind": "js",
1834
- "name": "*",
1835
- "declaration": {
1836
- "name": "*",
1837
- "package": "./accordion-item.styles"
1838
- }
1839
- },
1840
- {
1841
- "kind": "js",
1842
- "name": "*",
1843
- "declaration": {
1844
- "name": "*",
1845
- "package": "./accordion-item"
1846
- }
1847
- }
1848
- ]
1849
- },
1850
- {
1851
- "kind": "javascript-module",
1852
- "path": "src/accordion/accordion.styles.ts",
1853
- "declarations": [
1854
- {
1855
- "kind": "function",
1856
- "name": "foundationAccordionStyles",
1857
- "return": {
1858
- "type": {
1859
- "text": "ElementStyles"
1860
- }
1861
- },
1862
- "parameters": [
1863
- {
1864
- "name": "context",
1865
- "type": {
1866
- "text": "ElementDefinitionContext"
1867
- }
1868
- },
1869
- {
1870
- "name": "definition",
1871
- "type": {
1872
- "text": "FoundationElementDefinition"
1873
- }
1874
- }
1875
- ]
1876
- }
1877
- ],
1878
- "exports": [
1879
- {
1880
- "kind": "js",
1881
- "name": "foundationAccordionStyles",
1882
- "declaration": {
1883
- "name": "foundationAccordionStyles",
1884
- "module": "src/accordion/accordion.styles.ts"
1885
- }
1886
- }
1887
- ]
1888
- },
1889
- {
1890
- "kind": "javascript-module",
1891
- "path": "src/accordion/accordion.template.ts",
1892
- "declarations": [
1893
- {
1894
- "kind": "function",
1895
- "name": "foundationAccordionTemplate",
1896
- "return": {
1897
- "type": {
1898
- "text": "ViewTemplate<Accordion>"
1899
- }
1900
- },
1901
- "parameters": [
1902
- {
1903
- "name": "context",
1904
- "type": {
1905
- "text": "ElementDefinitionContext"
1906
- }
1907
- },
1908
- {
1909
- "name": "definition",
1910
- "type": {
1911
- "text": "FoundationElementDefinition"
1912
- }
1913
- }
1914
- ]
1915
- }
1916
- ],
1917
- "exports": [
1918
- {
1919
- "kind": "js",
1920
- "name": "foundationAccordionTemplate",
1921
- "declaration": {
1922
- "name": "foundationAccordionTemplate",
1923
- "module": "src/accordion/accordion.template.ts"
1924
- }
1925
- }
1926
- ]
1927
- },
1928
- {
1929
- "kind": "javascript-module",
1930
- "path": "src/accordion/accordion.ts",
1931
- "declarations": [
1932
- {
1933
- "kind": "class",
1934
- "description": "",
1935
- "name": "Accordion",
1936
- "superclass": {
1937
- "name": "FASTAccordion",
1938
- "package": "@microsoft/fast-foundation"
1939
- },
1940
- "tagName": "%%prefix%%-accordion",
1941
- "customElement": true,
1942
- "attributes": [
1943
- {
1944
- "name": "expand-mode",
1945
- "type": {
1946
- "text": "AccordionExpandMode"
1947
- },
1948
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1949
- "fieldName": "expandmode",
1950
- "inheritedFrom": {
1951
- "name": "Accordion",
1952
- "module": "src/accordion/accordion.ts"
1953
- }
1954
- }
1955
- ],
1956
- "members": [
1957
- {
1958
- "kind": "field",
1959
- "name": "expandmode",
1960
- "type": {
1961
- "text": "AccordionExpandMode"
1962
- },
1963
- "privacy": "public",
1964
- "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
1965
- "inheritedFrom": {
1966
- "name": "Accordion",
1967
- "module": "src/accordion/accordion.ts"
1968
- }
1969
- },
1970
- {
1971
- "kind": "field",
1972
- "name": "activeid",
1973
- "type": {
1974
- "text": "string | null"
1975
- },
1976
- "privacy": "private",
1977
- "inheritedFrom": {
1978
- "name": "Accordion",
1979
- "module": "src/accordion/accordion.ts"
1980
- }
1981
- },
1982
- {
1983
- "kind": "field",
1984
- "name": "activeItemIndex",
1985
- "type": {
1986
- "text": "number"
1987
- },
1988
- "privacy": "private",
1989
- "default": "0",
1990
- "inheritedFrom": {
1991
- "name": "Accordion",
1992
- "module": "src/accordion/accordion.ts"
1993
- }
1994
- },
1995
- {
1996
- "kind": "field",
1997
- "name": "accordionIds",
1998
- "type": {
1999
- "text": "Array<string | null>"
2000
- },
2001
- "privacy": "private",
2002
- "inheritedFrom": {
2003
- "name": "Accordion",
2004
- "module": "src/accordion/accordion.ts"
2005
- }
2006
- },
2007
- {
2008
- "kind": "field",
2009
- "name": "change",
2010
- "privacy": "private",
2011
- "inheritedFrom": {
2012
- "name": "Accordion",
2013
- "module": "src/accordion/accordion.ts"
2014
- }
2015
- },
2016
- {
2017
- "kind": "method",
2018
- "name": "findExpandedItem",
2019
- "privacy": "private",
2020
- "return": {
2021
- "type": {
2022
- "text": "AccordionItem | null"
2023
- }
2024
- },
2025
- "inheritedFrom": {
2026
- "name": "Accordion",
2027
- "module": "src/accordion/accordion.ts"
2028
- }
2029
- },
2030
- {
2031
- "kind": "field",
2032
- "name": "setItems",
2033
- "privacy": "private",
2034
- "inheritedFrom": {
2035
- "name": "Accordion",
2036
- "module": "src/accordion/accordion.ts"
2037
- }
2038
- },
2039
- {
2040
- "kind": "method",
2041
- "name": "resetItems",
2042
- "privacy": "private",
2043
- "return": {
2044
- "type": {
2045
- "text": "void"
2046
- }
2047
- },
2048
- "inheritedFrom": {
2049
- "name": "Accordion",
2050
- "module": "src/accordion/accordion.ts"
2051
- }
2052
- },
2053
- {
2054
- "kind": "field",
2055
- "name": "removeItemListeners",
2056
- "privacy": "private",
2057
- "inheritedFrom": {
2058
- "name": "Accordion",
2059
- "module": "src/accordion/accordion.ts"
2060
- }
2061
- },
2062
- {
2063
- "kind": "field",
2064
- "name": "activeItemChange",
2065
- "privacy": "private",
2066
- "inheritedFrom": {
2067
- "name": "Accordion",
2068
- "module": "src/accordion/accordion.ts"
2069
- }
2070
- },
2071
- {
2072
- "kind": "method",
2073
- "name": "getItemIds",
2074
- "privacy": "private",
2075
- "return": {
2076
- "type": {
2077
- "text": "Array<string | null>"
2078
- }
2079
- },
2080
- "inheritedFrom": {
2081
- "name": "Accordion",
2082
- "module": "src/accordion/accordion.ts"
2083
- }
2084
- },
2085
- {
2086
- "kind": "method",
2087
- "name": "isSingleExpandMode",
2088
- "privacy": "private",
2089
- "return": {
2090
- "type": {
2091
- "text": "boolean"
2092
- }
2093
- },
2094
- "inheritedFrom": {
2095
- "name": "Accordion",
2096
- "module": "src/accordion/accordion.ts"
2097
- }
2098
- },
2099
- {
2100
- "kind": "field",
2101
- "name": "handleItemKeyDown",
2102
- "privacy": "private",
2103
- "inheritedFrom": {
2104
- "name": "Accordion",
2105
- "module": "src/accordion/accordion.ts"
2106
- }
2107
- },
2108
- {
2109
- "kind": "field",
2110
- "name": "handleItemFocus",
2111
- "privacy": "private",
2112
- "inheritedFrom": {
2113
- "name": "Accordion",
2114
- "module": "src/accordion/accordion.ts"
2115
- }
2116
- },
2117
- {
2118
- "kind": "method",
2119
- "name": "adjust",
2120
- "privacy": "private",
2121
- "return": {
2122
- "type": {
2123
- "text": "void"
2124
- }
2125
- },
2126
- "parameters": [
2127
- {
2128
- "name": "adjustment",
2129
- "type": {
2130
- "text": "number"
2131
- }
2132
- }
2133
- ],
2134
- "inheritedFrom": {
2135
- "name": "Accordion",
2136
- "module": "src/accordion/accordion.ts"
2137
- }
2138
- },
2139
- {
2140
- "kind": "method",
2141
- "name": "focusItem",
2142
- "privacy": "private",
2143
- "return": {
2144
- "type": {
2145
- "text": "void"
2146
- }
2147
- },
2148
- "inheritedFrom": {
2149
- "name": "Accordion",
2150
- "module": "src/accordion/accordion.ts"
2151
- }
2152
- },
2153
- {
2154
- "kind": "field",
2155
- "name": "_presentation",
2156
- "type": {
2157
- "text": "ComponentPresentation | null | undefined"
2158
- },
2159
- "privacy": "private",
2160
- "default": "void 0",
2161
- "inheritedFrom": {
2162
- "name": "FoundationElement",
2163
- "module": "src/foundation-element/foundation-element.ts"
2164
- }
2165
- },
2166
- {
2167
- "kind": "field",
2168
- "name": "$presentation",
2169
- "type": {
2170
- "text": "ComponentPresentation | null"
2171
- },
2172
- "privacy": "public",
2173
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2174
- "inheritedFrom": {
2175
- "name": "FoundationElement",
2176
- "module": "src/foundation-element/foundation-element.ts"
2177
- }
2178
- },
2179
- {
2180
- "kind": "field",
2181
- "name": "template",
2182
- "type": {
2183
- "text": "ElementViewTemplate | void | null"
2184
- },
2185
- "privacy": "public",
2186
- "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.",
2187
- "inheritedFrom": {
2188
- "name": "FoundationElement",
2189
- "module": "src/foundation-element/foundation-element.ts"
2190
- }
2191
- },
2192
- {
2193
- "kind": "method",
2194
- "name": "templateChanged",
2195
- "privacy": "protected",
2196
- "return": {
2197
- "type": {
2198
- "text": "void"
2199
- }
2200
- },
2201
- "inheritedFrom": {
2202
- "name": "FoundationElement",
2203
- "module": "src/foundation-element/foundation-element.ts"
2204
- }
2205
- },
2206
- {
2207
- "kind": "field",
2208
- "name": "styles",
2209
- "type": {
2210
- "text": "ElementStyles | void | null"
2211
- },
2212
- "privacy": "public",
2213
- "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.",
2214
- "inheritedFrom": {
2215
- "name": "FoundationElement",
2216
- "module": "src/foundation-element/foundation-element.ts"
2217
- }
2218
- },
2219
- {
2220
- "kind": "method",
2221
- "name": "stylesChanged",
2222
- "privacy": "protected",
2223
- "return": {
2224
- "type": {
2225
- "text": "void"
2226
- }
2227
- },
2228
- "inheritedFrom": {
2229
- "name": "FoundationElement",
2230
- "module": "src/foundation-element/foundation-element.ts"
2231
- }
2232
- },
2233
- {
2234
- "kind": "method",
2235
- "name": "compose",
2236
- "privacy": "public",
2237
- "static": true,
2238
- "return": {
2239
- "type": {
2240
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2241
- }
2242
- },
2243
- "parameters": [
2244
- {
2245
- "name": "this",
2246
- "type": {
2247
- "text": "K"
2248
- }
2249
- },
2250
- {
2251
- "name": "elementDefinition",
2252
- "type": {
2253
- "text": "T"
2254
- },
2255
- "description": "The definition of the element to create the registry\nfunction for."
2256
- }
2257
- ],
2258
- "description": "Defines an element registry function with a set of element definition defaults.",
2259
- "inheritedFrom": {
2260
- "name": "FoundationElement",
2261
- "module": "src/foundation-element/foundation-element.ts"
2262
- }
2263
- }
2264
- ],
2265
- "events": [
2266
- {
2267
- "description": "Fires a custom 'change' event when the active item changes",
1255
+ "description": "Fires a custom 'change' event when the button is invoked",
2268
1256
  "name": "change",
2269
1257
  "inheritedFrom": {
2270
- "name": "Accordion",
2271
- "module": "src/accordion/accordion.ts"
1258
+ "name": "AccordionItem",
1259
+ "module": "src/accordion-item/accordion-item.ts"
2272
1260
  }
2273
1261
  }
2274
1262
  ]
2275
1263
  },
2276
1264
  {
2277
1265
  "kind": "variable",
2278
- "name": "foundationAccordionShadowOptions",
1266
+ "name": "foundationAccordionItemShadowOptions",
2279
1267
  "type": {
2280
1268
  "text": "ShadowRootInit"
2281
1269
  },
@@ -2283,57 +1271,57 @@
2283
1271
  },
2284
1272
  {
2285
1273
  "kind": "variable",
2286
- "name": "defaultAccordionConfig",
1274
+ "name": "defaultAccordionItemConfig",
2287
1275
  "type": {
2288
1276
  "text": "object"
2289
1277
  },
2290
- "default": "{}"
1278
+ "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}"
2291
1279
  },
2292
1280
  {
2293
1281
  "kind": "variable",
2294
- "name": "foundationAccordion",
2295
- "description": "The Foundation Accordion",
1282
+ "name": "foundationAccordionItem",
1283
+ "description": "The Foundation Accordion Item",
2296
1284
  "privacy": "public"
2297
1285
  }
2298
1286
  ],
2299
1287
  "exports": [
2300
1288
  {
2301
1289
  "kind": "js",
2302
- "name": "Accordion",
1290
+ "name": "AccordionItem",
2303
1291
  "declaration": {
2304
- "name": "Accordion",
2305
- "module": "src/accordion/accordion.ts"
1292
+ "name": "AccordionItem",
1293
+ "module": "src/accordion-item/accordion-item.ts"
2306
1294
  }
2307
1295
  },
2308
1296
  {
2309
1297
  "kind": "js",
2310
- "name": "foundationAccordionShadowOptions",
1298
+ "name": "foundationAccordionItemShadowOptions",
2311
1299
  "declaration": {
2312
- "name": "foundationAccordionShadowOptions",
2313
- "module": "src/accordion/accordion.ts"
1300
+ "name": "foundationAccordionItemShadowOptions",
1301
+ "module": "src/accordion-item/accordion-item.ts"
2314
1302
  }
2315
1303
  },
2316
1304
  {
2317
1305
  "kind": "js",
2318
- "name": "defaultAccordionConfig",
1306
+ "name": "defaultAccordionItemConfig",
2319
1307
  "declaration": {
2320
- "name": "defaultAccordionConfig",
2321
- "module": "src/accordion/accordion.ts"
1308
+ "name": "defaultAccordionItemConfig",
1309
+ "module": "src/accordion-item/accordion-item.ts"
2322
1310
  }
2323
1311
  },
2324
1312
  {
2325
1313
  "kind": "js",
2326
- "name": "foundationAccordion",
1314
+ "name": "foundationAccordionItem",
2327
1315
  "declaration": {
2328
- "name": "foundationAccordion",
2329
- "module": "src/accordion/accordion.ts"
1316
+ "name": "foundationAccordionItem",
1317
+ "module": "src/accordion-item/accordion-item.ts"
2330
1318
  }
2331
1319
  }
2332
1320
  ]
2333
1321
  },
2334
1322
  {
2335
1323
  "kind": "javascript-module",
2336
- "path": "src/accordion/index.ts",
1324
+ "path": "src/accordion-item/index.ts",
2337
1325
  "declarations": [],
2338
1326
  "exports": [
2339
1327
  {
@@ -2341,7 +1329,7 @@
2341
1329
  "name": "*",
2342
1330
  "declaration": {
2343
1331
  "name": "*",
2344
- "package": "./accordion.template"
1332
+ "package": "./accordion-item.template"
2345
1333
  }
2346
1334
  },
2347
1335
  {
@@ -2349,7 +1337,7 @@
2349
1337
  "name": "*",
2350
1338
  "declaration": {
2351
1339
  "name": "*",
2352
- "package": "./accordion.styles"
1340
+ "package": "./accordion-item.styles"
2353
1341
  }
2354
1342
  },
2355
1343
  {
@@ -2357,7 +1345,7 @@
2357
1345
  "name": "*",
2358
1346
  "declaration": {
2359
1347
  "name": "*",
2360
- "package": "./accordion"
1348
+ "package": "./accordion-item"
2361
1349
  }
2362
1350
  }
2363
1351
  ]
@@ -2886,25 +1874,483 @@
2886
1874
  "exports": [
2887
1875
  {
2888
1876
  "kind": "js",
2889
- "name": "ActionsMenu",
2890
- "declaration": {
2891
- "name": "ActionsMenu",
2892
- "module": "src/actions-menu/actions-menu.ts"
2893
- }
2894
- },
2895
- {
2896
- "kind": "js",
2897
- "name": "foundationActionsMenu",
1877
+ "name": "ActionsMenu",
1878
+ "declaration": {
1879
+ "name": "ActionsMenu",
1880
+ "module": "src/actions-menu/actions-menu.ts"
1881
+ }
1882
+ },
1883
+ {
1884
+ "kind": "js",
1885
+ "name": "foundationActionsMenu",
1886
+ "declaration": {
1887
+ "name": "foundationActionsMenu",
1888
+ "module": "src/actions-menu/actions-menu.ts"
1889
+ }
1890
+ }
1891
+ ]
1892
+ },
1893
+ {
1894
+ "kind": "javascript-module",
1895
+ "path": "src/actions-menu/index.ts",
1896
+ "declarations": [],
1897
+ "exports": [
1898
+ {
1899
+ "kind": "js",
1900
+ "name": "*",
1901
+ "declaration": {
1902
+ "name": "*",
1903
+ "package": "./actions-menu.styles"
1904
+ }
1905
+ },
1906
+ {
1907
+ "kind": "js",
1908
+ "name": "*",
1909
+ "declaration": {
1910
+ "name": "*",
1911
+ "package": "./actions-menu.template"
1912
+ }
1913
+ },
1914
+ {
1915
+ "kind": "js",
1916
+ "name": "*",
1917
+ "declaration": {
1918
+ "name": "*",
1919
+ "package": "./actions-menu"
1920
+ }
1921
+ }
1922
+ ]
1923
+ },
1924
+ {
1925
+ "kind": "javascript-module",
1926
+ "path": "src/_common/affix-mixin.ts",
1927
+ "declarations": [
1928
+ {
1929
+ "kind": "mixin",
1930
+ "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.",
1931
+ "name": "AffixMixin",
1932
+ "members": [
1933
+ {
1934
+ "kind": "field",
1935
+ "name": "prefix",
1936
+ "type": {
1937
+ "text": "string"
1938
+ },
1939
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
1940
+ },
1941
+ {
1942
+ "kind": "field",
1943
+ "name": "suffix",
1944
+ "type": {
1945
+ "text": "string"
1946
+ },
1947
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
1948
+ },
1949
+ {
1950
+ "kind": "field",
1951
+ "name": "hideAffixFromScreenReader",
1952
+ "type": {
1953
+ "text": "boolean"
1954
+ },
1955
+ "default": "false",
1956
+ "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."
1957
+ }
1958
+ ],
1959
+ "parameters": [
1960
+ {
1961
+ "name": "Base",
1962
+ "type": {
1963
+ "text": "TBase"
1964
+ }
1965
+ }
1966
+ ]
1967
+ }
1968
+ ],
1969
+ "exports": [
1970
+ {
1971
+ "kind": "js",
1972
+ "name": "AffixMixin",
1973
+ "declaration": {
1974
+ "name": "AffixMixin",
1975
+ "module": "src/_common/affix-mixin.ts"
1976
+ }
1977
+ }
1978
+ ]
1979
+ },
1980
+ {
1981
+ "kind": "javascript-module",
1982
+ "path": "src/_common/base-file-component.ts",
1983
+ "declarations": [
1984
+ {
1985
+ "kind": "class",
1986
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1987
+ "name": "BaseFileComponent",
1988
+ "members": [
1989
+ {
1990
+ "kind": "field",
1991
+ "name": "fileInput",
1992
+ "type": {
1993
+ "text": "HTMLInputElement"
1994
+ },
1995
+ "privacy": "public"
1996
+ },
1997
+ {
1998
+ "kind": "field",
1999
+ "name": "selectedFile",
2000
+ "type": {
2001
+ "text": "File | null"
2002
+ },
2003
+ "privacy": "protected",
2004
+ "default": "null"
2005
+ },
2006
+ {
2007
+ "kind": "field",
2008
+ "name": "label",
2009
+ "type": {
2010
+ "text": "string"
2011
+ }
2012
+ },
2013
+ {
2014
+ "kind": "field",
2015
+ "name": "accept",
2016
+ "type": {
2017
+ "text": "string"
2018
+ },
2019
+ "default": "''"
2020
+ },
2021
+ {
2022
+ "kind": "field",
2023
+ "name": "fileSizeLimitBytes",
2024
+ "default": "10_485_760",
2025
+ "type": {
2026
+ "text": "number"
2027
+ }
2028
+ },
2029
+ {
2030
+ "kind": "field",
2031
+ "name": "fileName",
2032
+ "type": {
2033
+ "text": "string"
2034
+ },
2035
+ "default": "''"
2036
+ },
2037
+ {
2038
+ "kind": "field",
2039
+ "name": "isProcessing",
2040
+ "type": {
2041
+ "text": "boolean"
2042
+ },
2043
+ "default": "false"
2044
+ },
2045
+ {
2046
+ "kind": "method",
2047
+ "name": "handleClick",
2048
+ "privacy": "public",
2049
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
2050
+ },
2051
+ {
2052
+ "kind": "method",
2053
+ "name": "onInputChange",
2054
+ "privacy": "public",
2055
+ "parameters": [
2056
+ {
2057
+ "name": "e",
2058
+ "type": {
2059
+ "text": "Event"
2060
+ },
2061
+ "description": "The change event from the file input"
2062
+ }
2063
+ ],
2064
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
2065
+ },
2066
+ {
2067
+ "kind": "method",
2068
+ "name": "clearSelection",
2069
+ "privacy": "public",
2070
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
2071
+ },
2072
+ {
2073
+ "kind": "method",
2074
+ "name": "getSelectedFile",
2075
+ "privacy": "public",
2076
+ "description": "Gets the currently selected file object",
2077
+ "return": {
2078
+ "type": {
2079
+ "text": ""
2080
+ }
2081
+ }
2082
+ },
2083
+ {
2084
+ "kind": "method",
2085
+ "name": "showError",
2086
+ "privacy": "protected",
2087
+ "parameters": [
2088
+ {
2089
+ "name": "title",
2090
+ "type": {
2091
+ "text": "string"
2092
+ },
2093
+ "description": "The error title"
2094
+ },
2095
+ {
2096
+ "name": "message",
2097
+ "type": {
2098
+ "text": "string"
2099
+ },
2100
+ "description": "The error message"
2101
+ }
2102
+ ],
2103
+ "description": "Shows an error notification using the unified error handling system"
2104
+ },
2105
+ {
2106
+ "kind": "method",
2107
+ "name": "onFileSelected",
2108
+ "privacy": "protected",
2109
+ "return": {
2110
+ "type": {
2111
+ "text": "void"
2112
+ }
2113
+ },
2114
+ "parameters": [
2115
+ {
2116
+ "name": "files",
2117
+ "type": {
2118
+ "text": "File[]"
2119
+ },
2120
+ "description": "The selected file"
2121
+ }
2122
+ ],
2123
+ "description": "Abstract method called when a file is selected"
2124
+ },
2125
+ {
2126
+ "kind": "method",
2127
+ "name": "onFileCleared",
2128
+ "privacy": "protected",
2129
+ "return": {
2130
+ "type": {
2131
+ "text": "void"
2132
+ }
2133
+ },
2134
+ "description": "Abstract method called when file selection is cleared"
2135
+ },
2136
+ {
2137
+ "kind": "field",
2138
+ "name": "_presentation",
2139
+ "type": {
2140
+ "text": "ComponentPresentation | null | undefined"
2141
+ },
2142
+ "privacy": "private",
2143
+ "default": "void 0",
2144
+ "inheritedFrom": {
2145
+ "name": "FoundationElement",
2146
+ "module": "src/foundation-element/foundation-element.ts"
2147
+ }
2148
+ },
2149
+ {
2150
+ "kind": "field",
2151
+ "name": "$presentation",
2152
+ "type": {
2153
+ "text": "ComponentPresentation | null"
2154
+ },
2155
+ "privacy": "public",
2156
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2157
+ "inheritedFrom": {
2158
+ "name": "FoundationElement",
2159
+ "module": "src/foundation-element/foundation-element.ts"
2160
+ }
2161
+ },
2162
+ {
2163
+ "kind": "field",
2164
+ "name": "template",
2165
+ "type": {
2166
+ "text": "ElementViewTemplate | void | null"
2167
+ },
2168
+ "privacy": "public",
2169
+ "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.",
2170
+ "inheritedFrom": {
2171
+ "name": "FoundationElement",
2172
+ "module": "src/foundation-element/foundation-element.ts"
2173
+ }
2174
+ },
2175
+ {
2176
+ "kind": "method",
2177
+ "name": "templateChanged",
2178
+ "privacy": "protected",
2179
+ "return": {
2180
+ "type": {
2181
+ "text": "void"
2182
+ }
2183
+ },
2184
+ "inheritedFrom": {
2185
+ "name": "FoundationElement",
2186
+ "module": "src/foundation-element/foundation-element.ts"
2187
+ }
2188
+ },
2189
+ {
2190
+ "kind": "field",
2191
+ "name": "styles",
2192
+ "type": {
2193
+ "text": "ElementStyles | void | null"
2194
+ },
2195
+ "privacy": "public",
2196
+ "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.",
2197
+ "inheritedFrom": {
2198
+ "name": "FoundationElement",
2199
+ "module": "src/foundation-element/foundation-element.ts"
2200
+ }
2201
+ },
2202
+ {
2203
+ "kind": "method",
2204
+ "name": "stylesChanged",
2205
+ "privacy": "protected",
2206
+ "return": {
2207
+ "type": {
2208
+ "text": "void"
2209
+ }
2210
+ },
2211
+ "inheritedFrom": {
2212
+ "name": "FoundationElement",
2213
+ "module": "src/foundation-element/foundation-element.ts"
2214
+ }
2215
+ },
2216
+ {
2217
+ "kind": "method",
2218
+ "name": "compose",
2219
+ "privacy": "public",
2220
+ "static": true,
2221
+ "return": {
2222
+ "type": {
2223
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2224
+ }
2225
+ },
2226
+ "parameters": [
2227
+ {
2228
+ "name": "this",
2229
+ "type": {
2230
+ "text": "K"
2231
+ }
2232
+ },
2233
+ {
2234
+ "name": "elementDefinition",
2235
+ "type": {
2236
+ "text": "T"
2237
+ },
2238
+ "description": "The definition of the element to create the registry\nfunction for."
2239
+ }
2240
+ ],
2241
+ "description": "Defines an element registry function with a set of element definition defaults.",
2242
+ "inheritedFrom": {
2243
+ "name": "FoundationElement",
2244
+ "module": "src/foundation-element/foundation-element.ts"
2245
+ }
2246
+ }
2247
+ ],
2248
+ "events": [
2249
+ {
2250
+ "description": "Fired when file size validation fails. detail: `Error`",
2251
+ "name": "error"
2252
+ },
2253
+ {
2254
+ "description": "Fired when selection is cleared",
2255
+ "name": "clear"
2256
+ }
2257
+ ],
2258
+ "attributes": [
2259
+ {
2260
+ "name": "label",
2261
+ "type": {
2262
+ "text": "string"
2263
+ },
2264
+ "fieldName": "label"
2265
+ },
2266
+ {
2267
+ "name": "accept",
2268
+ "type": {
2269
+ "text": "string"
2270
+ },
2271
+ "default": "''",
2272
+ "fieldName": "accept"
2273
+ },
2274
+ {
2275
+ "name": "file-size-limit-bytes",
2276
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
2277
+ "resolveInitializer": {
2278
+ "module": "src/_common/base-file-component.ts"
2279
+ },
2280
+ "fieldName": "fileSizeLimitBytes"
2281
+ }
2282
+ ],
2283
+ "superclass": {
2284
+ "name": "FoundationElement",
2285
+ "package": "@microsoft/fast-foundation"
2286
+ }
2287
+ }
2288
+ ],
2289
+ "exports": [
2290
+ {
2291
+ "kind": "js",
2292
+ "name": "BaseFileComponent",
2293
+ "declaration": {
2294
+ "name": "BaseFileComponent",
2295
+ "module": "src/_common/base-file-component.ts"
2296
+ }
2297
+ }
2298
+ ]
2299
+ },
2300
+ {
2301
+ "kind": "javascript-module",
2302
+ "path": "src/_common/field-styles.ts",
2303
+ "declarations": [
2304
+ {
2305
+ "kind": "variable",
2306
+ "name": "sharedFieldStyles",
2307
+ "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`"
2308
+ }
2309
+ ],
2310
+ "exports": [
2311
+ {
2312
+ "kind": "js",
2313
+ "name": "sharedFieldStyles",
2314
+ "declaration": {
2315
+ "name": "sharedFieldStyles",
2316
+ "module": "src/_common/field-styles.ts"
2317
+ }
2318
+ }
2319
+ ]
2320
+ },
2321
+ {
2322
+ "kind": "javascript-module",
2323
+ "path": "src/_common/icons.ts",
2324
+ "declarations": [
2325
+ {
2326
+ "kind": "function",
2327
+ "name": "closeIcon",
2328
+ "parameters": [
2329
+ {
2330
+ "name": "slot",
2331
+ "default": "'start'"
2332
+ },
2333
+ {
2334
+ "name": "fill",
2335
+ "default": "'#879ba6'"
2336
+ }
2337
+ ]
2338
+ }
2339
+ ],
2340
+ "exports": [
2341
+ {
2342
+ "kind": "js",
2343
+ "name": "closeIcon",
2898
2344
  "declaration": {
2899
- "name": "foundationActionsMenu",
2900
- "module": "src/actions-menu/actions-menu.ts"
2345
+ "name": "closeIcon",
2346
+ "module": "src/_common/icons.ts"
2901
2347
  }
2902
2348
  }
2903
2349
  ]
2904
2350
  },
2905
2351
  {
2906
2352
  "kind": "javascript-module",
2907
- "path": "src/actions-menu/index.ts",
2353
+ "path": "src/_common/index.ts",
2908
2354
  "declarations": [],
2909
2355
  "exports": [
2910
2356
  {
@@ -2912,7 +2358,7 @@
2912
2358
  "name": "*",
2913
2359
  "declaration": {
2914
2360
  "name": "*",
2915
- "package": "./actions-menu.styles"
2361
+ "package": "./affix-mixin"
2916
2362
  }
2917
2363
  },
2918
2364
  {
@@ -2920,7 +2366,7 @@
2920
2366
  "name": "*",
2921
2367
  "declaration": {
2922
2368
  "name": "*",
2923
- "package": "./actions-menu.template"
2369
+ "package": "./base-file-component"
2924
2370
  }
2925
2371
  },
2926
2372
  {
@@ -2928,7 +2374,15 @@
2928
2374
  "name": "*",
2929
2375
  "declaration": {
2930
2376
  "name": "*",
2931
- "package": "./actions-menu"
2377
+ "package": "./field-styles"
2378
+ }
2379
+ },
2380
+ {
2381
+ "kind": "js",
2382
+ "name": "*",
2383
+ "declaration": {
2384
+ "name": "*",
2385
+ "package": "./icons"
2932
2386
  }
2933
2387
  }
2934
2388
  ]
@@ -3573,224 +3027,756 @@
3573
3027
  "exports": [
3574
3028
  {
3575
3029
  "kind": "js",
3576
- "name": "foundationAiIndicatorStyles",
3030
+ "name": "foundationAiIndicatorStyles",
3031
+ "declaration": {
3032
+ "name": "foundationAiIndicatorStyles",
3033
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
3034
+ }
3035
+ }
3036
+ ]
3037
+ },
3038
+ {
3039
+ "kind": "javascript-module",
3040
+ "path": "src/ai-indicator/ai-indicator.template.ts",
3041
+ "declarations": [
3042
+ {
3043
+ "kind": "variable",
3044
+ "name": "foundationAiIndicatorTemplate",
3045
+ "type": {
3046
+ "text": "ViewTemplate<AiIndicator>"
3047
+ },
3048
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3049
+ }
3050
+ ],
3051
+ "exports": [
3052
+ {
3053
+ "kind": "js",
3054
+ "name": "foundationAiIndicatorTemplate",
3055
+ "declaration": {
3056
+ "name": "foundationAiIndicatorTemplate",
3057
+ "module": "src/ai-indicator/ai-indicator.template.ts"
3058
+ }
3059
+ }
3060
+ ]
3061
+ },
3062
+ {
3063
+ "kind": "javascript-module",
3064
+ "path": "src/ai-indicator/ai-indicator.ts",
3065
+ "declarations": [
3066
+ {
3067
+ "kind": "class",
3068
+ "description": "",
3069
+ "name": "AiIndicator",
3070
+ "members": [
3071
+ {
3072
+ "kind": "field",
3073
+ "name": "providerRegistry",
3074
+ "type": {
3075
+ "text": "AIProviderRegistry"
3076
+ }
3077
+ },
3078
+ {
3079
+ "kind": "field",
3080
+ "name": "aiProvider",
3081
+ "type": {
3082
+ "text": "AIProvider | undefined"
3083
+ },
3084
+ "privacy": "private",
3085
+ "description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
3086
+ "readonly": true
3087
+ },
3088
+ {
3089
+ "kind": "field",
3090
+ "name": "status",
3091
+ "type": {
3092
+ "text": "AIStatus | null"
3093
+ },
3094
+ "default": "null"
3095
+ },
3096
+ {
3097
+ "kind": "field",
3098
+ "name": "open",
3099
+ "type": {
3100
+ "text": "boolean"
3101
+ },
3102
+ "default": "false"
3103
+ },
3104
+ {
3105
+ "kind": "field",
3106
+ "name": "state",
3107
+ "type": {
3108
+ "text": "AIIndicatorState"
3109
+ },
3110
+ "default": "'none'"
3111
+ },
3112
+ {
3113
+ "kind": "field",
3114
+ "name": "isInstalling",
3115
+ "type": {
3116
+ "text": "boolean"
3117
+ },
3118
+ "default": "false"
3119
+ },
3120
+ {
3121
+ "kind": "field",
3122
+ "name": "pollTimer",
3123
+ "type": {
3124
+ "text": "ReturnType<typeof setInterval> | null"
3125
+ },
3126
+ "privacy": "private",
3127
+ "default": "null"
3128
+ },
3129
+ {
3130
+ "kind": "field",
3131
+ "name": "clickOutside",
3132
+ "privacy": "private"
3133
+ },
3134
+ {
3135
+ "kind": "field",
3136
+ "name": "chromeStatusLabel",
3137
+ "type": {
3138
+ "text": "string | null"
3139
+ },
3140
+ "readonly": true
3141
+ },
3142
+ {
3143
+ "kind": "field",
3144
+ "name": "canInstall",
3145
+ "type": {
3146
+ "text": "boolean"
3147
+ },
3148
+ "readonly": true
3149
+ },
3150
+ {
3151
+ "kind": "field",
3152
+ "name": "isDownloading",
3153
+ "type": {
3154
+ "text": "boolean"
3155
+ },
3156
+ "readonly": true
3157
+ },
3158
+ {
3159
+ "kind": "method",
3160
+ "name": "openChanged",
3161
+ "return": {
3162
+ "type": {
3163
+ "text": "void"
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "kind": "method",
3169
+ "name": "handleClickOutside",
3170
+ "privacy": "private",
3171
+ "parameters": [
3172
+ {
3173
+ "name": "event",
3174
+ "type": {
3175
+ "text": "MouseEvent"
3176
+ }
3177
+ }
3178
+ ]
3179
+ },
3180
+ {
3181
+ "kind": "method",
3182
+ "name": "toggleDropdown"
3183
+ },
3184
+ {
3185
+ "kind": "method",
3186
+ "name": "refreshStatus",
3187
+ "return": {
3188
+ "type": {
3189
+ "text": "Promise<void>"
3190
+ }
3191
+ }
3192
+ },
3193
+ {
3194
+ "kind": "method",
3195
+ "name": "deriveState",
3196
+ "privacy": "private",
3197
+ "return": {
3198
+ "type": {
3199
+ "text": "AIIndicatorState"
3200
+ }
3201
+ },
3202
+ "parameters": [
3203
+ {
3204
+ "name": "s",
3205
+ "type": {
3206
+ "text": "AIStatus | null"
3207
+ }
3208
+ }
3209
+ ]
3210
+ },
3211
+ {
3212
+ "kind": "method",
3213
+ "name": "maybeStartPolling",
3214
+ "privacy": "private",
3215
+ "return": {
3216
+ "type": {
3217
+ "text": "void"
3218
+ }
3219
+ }
3220
+ },
3221
+ {
3222
+ "kind": "method",
3223
+ "name": "startPolling",
3224
+ "privacy": "private",
3225
+ "return": {
3226
+ "type": {
3227
+ "text": "void"
3228
+ }
3229
+ }
3230
+ },
3231
+ {
3232
+ "kind": "method",
3233
+ "name": "stopPolling",
3234
+ "privacy": "private",
3235
+ "return": {
3236
+ "type": {
3237
+ "text": "void"
3238
+ }
3239
+ }
3240
+ },
3241
+ {
3242
+ "kind": "method",
3243
+ "name": "onInstall",
3244
+ "return": {
3245
+ "type": {
3246
+ "text": "Promise<void>"
3247
+ }
3248
+ }
3249
+ },
3250
+ {
3251
+ "kind": "field",
3252
+ "name": "_presentation",
3253
+ "type": {
3254
+ "text": "ComponentPresentation | null | undefined"
3255
+ },
3256
+ "privacy": "private",
3257
+ "default": "void 0",
3258
+ "inheritedFrom": {
3259
+ "name": "FoundationElement",
3260
+ "module": "src/foundation-element/foundation-element.ts"
3261
+ }
3262
+ },
3263
+ {
3264
+ "kind": "field",
3265
+ "name": "$presentation",
3266
+ "type": {
3267
+ "text": "ComponentPresentation | null"
3268
+ },
3269
+ "privacy": "public",
3270
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3271
+ "inheritedFrom": {
3272
+ "name": "FoundationElement",
3273
+ "module": "src/foundation-element/foundation-element.ts"
3274
+ }
3275
+ },
3276
+ {
3277
+ "kind": "field",
3278
+ "name": "template",
3279
+ "type": {
3280
+ "text": "ElementViewTemplate | void | null"
3281
+ },
3282
+ "privacy": "public",
3283
+ "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.",
3284
+ "inheritedFrom": {
3285
+ "name": "FoundationElement",
3286
+ "module": "src/foundation-element/foundation-element.ts"
3287
+ }
3288
+ },
3289
+ {
3290
+ "kind": "method",
3291
+ "name": "templateChanged",
3292
+ "privacy": "protected",
3293
+ "return": {
3294
+ "type": {
3295
+ "text": "void"
3296
+ }
3297
+ },
3298
+ "inheritedFrom": {
3299
+ "name": "FoundationElement",
3300
+ "module": "src/foundation-element/foundation-element.ts"
3301
+ }
3302
+ },
3303
+ {
3304
+ "kind": "field",
3305
+ "name": "styles",
3306
+ "type": {
3307
+ "text": "ElementStyles | void | null"
3308
+ },
3309
+ "privacy": "public",
3310
+ "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.",
3311
+ "inheritedFrom": {
3312
+ "name": "FoundationElement",
3313
+ "module": "src/foundation-element/foundation-element.ts"
3314
+ }
3315
+ },
3316
+ {
3317
+ "kind": "method",
3318
+ "name": "stylesChanged",
3319
+ "privacy": "protected",
3320
+ "return": {
3321
+ "type": {
3322
+ "text": "void"
3323
+ }
3324
+ },
3325
+ "inheritedFrom": {
3326
+ "name": "FoundationElement",
3327
+ "module": "src/foundation-element/foundation-element.ts"
3328
+ }
3329
+ },
3330
+ {
3331
+ "kind": "method",
3332
+ "name": "compose",
3333
+ "privacy": "public",
3334
+ "static": true,
3335
+ "return": {
3336
+ "type": {
3337
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3338
+ }
3339
+ },
3340
+ "parameters": [
3341
+ {
3342
+ "name": "this",
3343
+ "type": {
3344
+ "text": "K"
3345
+ }
3346
+ },
3347
+ {
3348
+ "name": "elementDefinition",
3349
+ "type": {
3350
+ "text": "T"
3351
+ },
3352
+ "description": "The definition of the element to create the registry\nfunction for."
3353
+ }
3354
+ ],
3355
+ "description": "Defines an element registry function with a set of element definition defaults.",
3356
+ "inheritedFrom": {
3357
+ "name": "FoundationElement",
3358
+ "module": "src/foundation-element/foundation-element.ts"
3359
+ }
3360
+ }
3361
+ ],
3362
+ "superclass": {
3363
+ "name": "FoundationElement",
3364
+ "package": "@microsoft/fast-foundation"
3365
+ },
3366
+ "tagName": "%%prefix%%-ai-indicator",
3367
+ "customElement": true
3368
+ },
3369
+ {
3370
+ "kind": "variable",
3371
+ "name": "foundationAiIndicator"
3372
+ }
3373
+ ],
3374
+ "exports": [
3375
+ {
3376
+ "kind": "js",
3377
+ "name": "AiIndicator",
3378
+ "declaration": {
3379
+ "name": "AiIndicator",
3380
+ "module": "src/ai-indicator/ai-indicator.ts"
3381
+ }
3382
+ },
3383
+ {
3384
+ "kind": "js",
3385
+ "name": "foundationAiIndicator",
3386
+ "declaration": {
3387
+ "name": "foundationAiIndicator",
3388
+ "module": "src/ai-indicator/ai-indicator.ts"
3389
+ }
3390
+ }
3391
+ ]
3392
+ },
3393
+ {
3394
+ "kind": "javascript-module",
3395
+ "path": "src/ai-indicator/index.ts",
3396
+ "declarations": [],
3397
+ "exports": [
3398
+ {
3399
+ "kind": "js",
3400
+ "name": "AiIndicator",
3401
+ "declaration": {
3402
+ "name": "AiIndicator",
3403
+ "module": "./ai-indicator"
3404
+ }
3405
+ },
3406
+ {
3407
+ "kind": "js",
3408
+ "name": "foundationAiIndicator",
3409
+ "declaration": {
3410
+ "name": "foundationAiIndicator",
3411
+ "module": "./ai-indicator"
3412
+ }
3413
+ },
3414
+ {
3415
+ "kind": "js",
3416
+ "name": "type",
3417
+ "declaration": {
3418
+ "name": "type",
3419
+ "module": "./ai-indicator"
3420
+ }
3421
+ },
3422
+ {
3423
+ "kind": "js",
3424
+ "name": "AIIndicatorState",
3425
+ "declaration": {
3426
+ "name": "AIIndicatorState",
3427
+ "module": "./ai-indicator"
3428
+ }
3429
+ },
3430
+ {
3431
+ "kind": "js",
3432
+ "name": "foundationAiIndicatorTemplate",
3433
+ "declaration": {
3434
+ "name": "foundationAiIndicatorTemplate",
3435
+ "module": "./ai-indicator.template"
3436
+ }
3437
+ },
3438
+ {
3439
+ "kind": "js",
3440
+ "name": "foundationAiIndicatorStyles",
3441
+ "declaration": {
3442
+ "name": "foundationAiIndicatorStyles",
3443
+ "module": "./ai-indicator.styles"
3444
+ }
3445
+ }
3446
+ ]
3447
+ },
3448
+ {
3449
+ "kind": "javascript-module",
3450
+ "path": "src/_config/index.ts",
3451
+ "declarations": [],
3452
+ "exports": [
3453
+ {
3454
+ "kind": "js",
3455
+ "name": "*",
3456
+ "declaration": {
3457
+ "name": "*",
3458
+ "package": "./styles"
3459
+ }
3460
+ },
3461
+ {
3462
+ "kind": "js",
3463
+ "name": "*",
3464
+ "declaration": {
3465
+ "name": "*",
3466
+ "package": "./tokens"
3467
+ }
3468
+ },
3469
+ {
3470
+ "kind": "js",
3471
+ "name": "*",
3472
+ "declaration": {
3473
+ "name": "*",
3474
+ "package": "./values"
3475
+ }
3476
+ }
3477
+ ]
3478
+ },
3479
+ {
3480
+ "kind": "javascript-module",
3481
+ "path": "src/accordion/accordion.styles.ts",
3482
+ "declarations": [
3483
+ {
3484
+ "kind": "function",
3485
+ "name": "foundationAccordionStyles",
3486
+ "return": {
3487
+ "type": {
3488
+ "text": "ElementStyles"
3489
+ }
3490
+ },
3491
+ "parameters": [
3492
+ {
3493
+ "name": "context",
3494
+ "type": {
3495
+ "text": "ElementDefinitionContext"
3496
+ }
3497
+ },
3498
+ {
3499
+ "name": "definition",
3500
+ "type": {
3501
+ "text": "FoundationElementDefinition"
3502
+ }
3503
+ }
3504
+ ]
3505
+ }
3506
+ ],
3507
+ "exports": [
3508
+ {
3509
+ "kind": "js",
3510
+ "name": "foundationAccordionStyles",
3577
3511
  "declaration": {
3578
- "name": "foundationAiIndicatorStyles",
3579
- "module": "src/ai-indicator/ai-indicator.styles.ts"
3512
+ "name": "foundationAccordionStyles",
3513
+ "module": "src/accordion/accordion.styles.ts"
3580
3514
  }
3581
3515
  }
3582
3516
  ]
3583
3517
  },
3584
3518
  {
3585
3519
  "kind": "javascript-module",
3586
- "path": "src/ai-indicator/ai-indicator.template.ts",
3520
+ "path": "src/accordion/accordion.template.ts",
3587
3521
  "declarations": [
3588
3522
  {
3589
- "kind": "variable",
3590
- "name": "foundationAiIndicatorTemplate",
3591
- "type": {
3592
- "text": "ViewTemplate<AiIndicator>"
3523
+ "kind": "function",
3524
+ "name": "foundationAccordionTemplate",
3525
+ "return": {
3526
+ "type": {
3527
+ "text": "ViewTemplate<Accordion>"
3528
+ }
3593
3529
  },
3594
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3530
+ "parameters": [
3531
+ {
3532
+ "name": "context",
3533
+ "type": {
3534
+ "text": "ElementDefinitionContext"
3535
+ }
3536
+ },
3537
+ {
3538
+ "name": "definition",
3539
+ "type": {
3540
+ "text": "FoundationElementDefinition"
3541
+ }
3542
+ }
3543
+ ]
3595
3544
  }
3596
3545
  ],
3597
3546
  "exports": [
3598
3547
  {
3599
3548
  "kind": "js",
3600
- "name": "foundationAiIndicatorTemplate",
3549
+ "name": "foundationAccordionTemplate",
3601
3550
  "declaration": {
3602
- "name": "foundationAiIndicatorTemplate",
3603
- "module": "src/ai-indicator/ai-indicator.template.ts"
3551
+ "name": "foundationAccordionTemplate",
3552
+ "module": "src/accordion/accordion.template.ts"
3604
3553
  }
3605
3554
  }
3606
3555
  ]
3607
3556
  },
3608
3557
  {
3609
3558
  "kind": "javascript-module",
3610
- "path": "src/ai-indicator/ai-indicator.ts",
3559
+ "path": "src/accordion/accordion.ts",
3611
3560
  "declarations": [
3612
3561
  {
3613
3562
  "kind": "class",
3614
3563
  "description": "",
3615
- "name": "AiIndicator",
3616
- "members": [
3617
- {
3618
- "kind": "field",
3619
- "name": "providerRegistry",
3620
- "type": {
3621
- "text": "AIProviderRegistry"
3622
- }
3623
- },
3624
- {
3625
- "kind": "field",
3626
- "name": "aiProvider",
3627
- "type": {
3628
- "text": "AIProvider | undefined"
3629
- },
3630
- "privacy": "private",
3631
- "description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
3632
- "readonly": true
3633
- },
3564
+ "name": "Accordion",
3565
+ "superclass": {
3566
+ "name": "FASTAccordion",
3567
+ "package": "@microsoft/fast-foundation"
3568
+ },
3569
+ "tagName": "%%prefix%%-accordion",
3570
+ "customElement": true,
3571
+ "attributes": [
3634
3572
  {
3635
- "kind": "field",
3636
- "name": "status",
3573
+ "name": "expand-mode",
3637
3574
  "type": {
3638
- "text": "AIStatus | null"
3575
+ "text": "AccordionExpandMode"
3639
3576
  },
3640
- "default": "null"
3641
- },
3577
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3578
+ "fieldName": "expandmode",
3579
+ "inheritedFrom": {
3580
+ "name": "Accordion",
3581
+ "module": "src/accordion/accordion.ts"
3582
+ }
3583
+ }
3584
+ ],
3585
+ "members": [
3642
3586
  {
3643
3587
  "kind": "field",
3644
- "name": "open",
3588
+ "name": "expandmode",
3645
3589
  "type": {
3646
- "text": "boolean"
3590
+ "text": "AccordionExpandMode"
3647
3591
  },
3648
- "default": "false"
3592
+ "privacy": "public",
3593
+ "description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
3594
+ "inheritedFrom": {
3595
+ "name": "Accordion",
3596
+ "module": "src/accordion/accordion.ts"
3597
+ }
3649
3598
  },
3650
3599
  {
3651
3600
  "kind": "field",
3652
- "name": "state",
3601
+ "name": "activeid",
3653
3602
  "type": {
3654
- "text": "AIIndicatorState"
3603
+ "text": "string | null"
3655
3604
  },
3656
- "default": "'none'"
3605
+ "privacy": "private",
3606
+ "inheritedFrom": {
3607
+ "name": "Accordion",
3608
+ "module": "src/accordion/accordion.ts"
3609
+ }
3657
3610
  },
3658
3611
  {
3659
3612
  "kind": "field",
3660
- "name": "isInstalling",
3613
+ "name": "activeItemIndex",
3661
3614
  "type": {
3662
- "text": "boolean"
3615
+ "text": "number"
3663
3616
  },
3664
- "default": "false"
3617
+ "privacy": "private",
3618
+ "default": "0",
3619
+ "inheritedFrom": {
3620
+ "name": "Accordion",
3621
+ "module": "src/accordion/accordion.ts"
3622
+ }
3665
3623
  },
3666
3624
  {
3667
3625
  "kind": "field",
3668
- "name": "pollTimer",
3626
+ "name": "accordionIds",
3669
3627
  "type": {
3670
- "text": "ReturnType<typeof setInterval> | null"
3628
+ "text": "Array<string | null>"
3671
3629
  },
3672
3630
  "privacy": "private",
3673
- "default": "null"
3674
- },
3675
- {
3676
- "kind": "field",
3677
- "name": "clickOutside",
3678
- "privacy": "private"
3631
+ "inheritedFrom": {
3632
+ "name": "Accordion",
3633
+ "module": "src/accordion/accordion.ts"
3634
+ }
3679
3635
  },
3680
3636
  {
3681
3637
  "kind": "field",
3682
- "name": "chromeStatusLabel",
3683
- "type": {
3684
- "text": "string | null"
3685
- },
3686
- "readonly": true
3638
+ "name": "change",
3639
+ "privacy": "private",
3640
+ "inheritedFrom": {
3641
+ "name": "Accordion",
3642
+ "module": "src/accordion/accordion.ts"
3643
+ }
3687
3644
  },
3688
3645
  {
3689
- "kind": "field",
3690
- "name": "canInstall",
3691
- "type": {
3692
- "text": "boolean"
3646
+ "kind": "method",
3647
+ "name": "findExpandedItem",
3648
+ "privacy": "private",
3649
+ "return": {
3650
+ "type": {
3651
+ "text": "AccordionItem | null"
3652
+ }
3693
3653
  },
3694
- "readonly": true
3654
+ "inheritedFrom": {
3655
+ "name": "Accordion",
3656
+ "module": "src/accordion/accordion.ts"
3657
+ }
3695
3658
  },
3696
3659
  {
3697
3660
  "kind": "field",
3698
- "name": "isDownloading",
3699
- "type": {
3700
- "text": "boolean"
3701
- },
3702
- "readonly": true
3661
+ "name": "setItems",
3662
+ "privacy": "private",
3663
+ "inheritedFrom": {
3664
+ "name": "Accordion",
3665
+ "module": "src/accordion/accordion.ts"
3666
+ }
3703
3667
  },
3704
3668
  {
3705
3669
  "kind": "method",
3706
- "name": "openChanged",
3670
+ "name": "resetItems",
3671
+ "privacy": "private",
3707
3672
  "return": {
3708
3673
  "type": {
3709
3674
  "text": "void"
3710
3675
  }
3676
+ },
3677
+ "inheritedFrom": {
3678
+ "name": "Accordion",
3679
+ "module": "src/accordion/accordion.ts"
3711
3680
  }
3712
3681
  },
3713
3682
  {
3714
- "kind": "method",
3715
- "name": "handleClickOutside",
3683
+ "kind": "field",
3684
+ "name": "removeItemListeners",
3716
3685
  "privacy": "private",
3717
- "parameters": [
3718
- {
3719
- "name": "event",
3720
- "type": {
3721
- "text": "MouseEvent"
3722
- }
3723
- }
3724
- ]
3686
+ "inheritedFrom": {
3687
+ "name": "Accordion",
3688
+ "module": "src/accordion/accordion.ts"
3689
+ }
3725
3690
  },
3726
3691
  {
3727
- "kind": "method",
3728
- "name": "toggleDropdown"
3692
+ "kind": "field",
3693
+ "name": "activeItemChange",
3694
+ "privacy": "private",
3695
+ "inheritedFrom": {
3696
+ "name": "Accordion",
3697
+ "module": "src/accordion/accordion.ts"
3698
+ }
3729
3699
  },
3730
3700
  {
3731
3701
  "kind": "method",
3732
- "name": "refreshStatus",
3702
+ "name": "getItemIds",
3703
+ "privacy": "private",
3733
3704
  "return": {
3734
3705
  "type": {
3735
- "text": "Promise<void>"
3706
+ "text": "Array<string | null>"
3736
3707
  }
3708
+ },
3709
+ "inheritedFrom": {
3710
+ "name": "Accordion",
3711
+ "module": "src/accordion/accordion.ts"
3737
3712
  }
3738
3713
  },
3739
3714
  {
3740
3715
  "kind": "method",
3741
- "name": "deriveState",
3716
+ "name": "isSingleExpandMode",
3742
3717
  "privacy": "private",
3743
3718
  "return": {
3744
3719
  "type": {
3745
- "text": "AIIndicatorState"
3720
+ "text": "boolean"
3746
3721
  }
3747
3722
  },
3748
- "parameters": [
3749
- {
3750
- "name": "s",
3751
- "type": {
3752
- "text": "AIStatus | null"
3753
- }
3754
- }
3755
- ]
3723
+ "inheritedFrom": {
3724
+ "name": "Accordion",
3725
+ "module": "src/accordion/accordion.ts"
3726
+ }
3756
3727
  },
3757
3728
  {
3758
- "kind": "method",
3759
- "name": "maybeStartPolling",
3729
+ "kind": "field",
3730
+ "name": "handleItemKeyDown",
3760
3731
  "privacy": "private",
3761
- "return": {
3762
- "type": {
3763
- "text": "void"
3764
- }
3732
+ "inheritedFrom": {
3733
+ "name": "Accordion",
3734
+ "module": "src/accordion/accordion.ts"
3765
3735
  }
3766
3736
  },
3767
3737
  {
3768
- "kind": "method",
3769
- "name": "startPolling",
3738
+ "kind": "field",
3739
+ "name": "handleItemFocus",
3770
3740
  "privacy": "private",
3771
- "return": {
3772
- "type": {
3773
- "text": "void"
3774
- }
3741
+ "inheritedFrom": {
3742
+ "name": "Accordion",
3743
+ "module": "src/accordion/accordion.ts"
3775
3744
  }
3776
3745
  },
3777
3746
  {
3778
3747
  "kind": "method",
3779
- "name": "stopPolling",
3748
+ "name": "adjust",
3780
3749
  "privacy": "private",
3781
3750
  "return": {
3782
3751
  "type": {
3783
3752
  "text": "void"
3784
3753
  }
3754
+ },
3755
+ "parameters": [
3756
+ {
3757
+ "name": "adjustment",
3758
+ "type": {
3759
+ "text": "number"
3760
+ }
3761
+ }
3762
+ ],
3763
+ "inheritedFrom": {
3764
+ "name": "Accordion",
3765
+ "module": "src/accordion/accordion.ts"
3785
3766
  }
3786
3767
  },
3787
3768
  {
3788
3769
  "kind": "method",
3789
- "name": "onInstall",
3770
+ "name": "focusItem",
3771
+ "privacy": "private",
3790
3772
  "return": {
3791
3773
  "type": {
3792
- "text": "Promise<void>"
3774
+ "text": "void"
3793
3775
  }
3776
+ },
3777
+ "inheritedFrom": {
3778
+ "name": "Accordion",
3779
+ "module": "src/accordion/accordion.ts"
3794
3780
  }
3795
3781
  },
3796
3782
  {
@@ -3905,88 +3891,102 @@
3905
3891
  }
3906
3892
  }
3907
3893
  ],
3908
- "superclass": {
3909
- "name": "FoundationElement",
3910
- "package": "@microsoft/fast-foundation"
3894
+ "events": [
3895
+ {
3896
+ "description": "Fires a custom 'change' event when the active item changes",
3897
+ "name": "change",
3898
+ "inheritedFrom": {
3899
+ "name": "Accordion",
3900
+ "module": "src/accordion/accordion.ts"
3901
+ }
3902
+ }
3903
+ ]
3904
+ },
3905
+ {
3906
+ "kind": "variable",
3907
+ "name": "foundationAccordionShadowOptions",
3908
+ "type": {
3909
+ "text": "ShadowRootInit"
3911
3910
  },
3912
- "tagName": "%%prefix%%-ai-indicator",
3913
- "customElement": true
3911
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
3914
3912
  },
3915
3913
  {
3916
3914
  "kind": "variable",
3917
- "name": "foundationAiIndicator"
3915
+ "name": "defaultAccordionConfig",
3916
+ "type": {
3917
+ "text": "object"
3918
+ },
3919
+ "default": "{}"
3920
+ },
3921
+ {
3922
+ "kind": "variable",
3923
+ "name": "foundationAccordion",
3924
+ "description": "The Foundation Accordion",
3925
+ "privacy": "public"
3918
3926
  }
3919
3927
  ],
3920
3928
  "exports": [
3921
3929
  {
3922
3930
  "kind": "js",
3923
- "name": "AiIndicator",
3931
+ "name": "Accordion",
3924
3932
  "declaration": {
3925
- "name": "AiIndicator",
3926
- "module": "src/ai-indicator/ai-indicator.ts"
3933
+ "name": "Accordion",
3934
+ "module": "src/accordion/accordion.ts"
3927
3935
  }
3928
3936
  },
3929
3937
  {
3930
3938
  "kind": "js",
3931
- "name": "foundationAiIndicator",
3932
- "declaration": {
3933
- "name": "foundationAiIndicator",
3934
- "module": "src/ai-indicator/ai-indicator.ts"
3935
- }
3936
- }
3937
- ]
3938
- },
3939
- {
3940
- "kind": "javascript-module",
3941
- "path": "src/ai-indicator/index.ts",
3942
- "declarations": [],
3943
- "exports": [
3944
- {
3945
- "kind": "js",
3946
- "name": "AiIndicator",
3939
+ "name": "foundationAccordionShadowOptions",
3947
3940
  "declaration": {
3948
- "name": "AiIndicator",
3949
- "module": "./ai-indicator"
3941
+ "name": "foundationAccordionShadowOptions",
3942
+ "module": "src/accordion/accordion.ts"
3950
3943
  }
3951
3944
  },
3952
3945
  {
3953
3946
  "kind": "js",
3954
- "name": "foundationAiIndicator",
3947
+ "name": "defaultAccordionConfig",
3955
3948
  "declaration": {
3956
- "name": "foundationAiIndicator",
3957
- "module": "./ai-indicator"
3949
+ "name": "defaultAccordionConfig",
3950
+ "module": "src/accordion/accordion.ts"
3958
3951
  }
3959
3952
  },
3960
3953
  {
3961
3954
  "kind": "js",
3962
- "name": "type",
3955
+ "name": "foundationAccordion",
3963
3956
  "declaration": {
3964
- "name": "type",
3965
- "module": "./ai-indicator"
3957
+ "name": "foundationAccordion",
3958
+ "module": "src/accordion/accordion.ts"
3966
3959
  }
3967
- },
3960
+ }
3961
+ ]
3962
+ },
3963
+ {
3964
+ "kind": "javascript-module",
3965
+ "path": "src/accordion/index.ts",
3966
+ "declarations": [],
3967
+ "exports": [
3968
3968
  {
3969
3969
  "kind": "js",
3970
- "name": "AIIndicatorState",
3970
+ "name": "*",
3971
3971
  "declaration": {
3972
- "name": "AIIndicatorState",
3973
- "module": "./ai-indicator"
3972
+ "name": "*",
3973
+ "package": "./accordion.template"
3974
3974
  }
3975
3975
  },
3976
3976
  {
3977
3977
  "kind": "js",
3978
- "name": "foundationAiIndicatorTemplate",
3978
+ "name": "*",
3979
3979
  "declaration": {
3980
- "name": "foundationAiIndicatorTemplate",
3981
- "module": "./ai-indicator.template"
3980
+ "name": "*",
3981
+ "package": "./accordion.styles"
3982
3982
  }
3983
3983
  },
3984
3984
  {
3985
3985
  "kind": "js",
3986
- "name": "foundationAiIndicatorStyles",
3986
+ "name": "*",
3987
3987
  "declaration": {
3988
- "name": "foundationAiIndicatorStyles",
3989
- "module": "./ai-indicator.styles"
3988
+ "name": "*",
3989
+ "package": "./accordion"
3990
3990
  }
3991
3991
  }
3992
3992
  ]
@@ -33910,6 +33910,14 @@
33910
33910
  "name": "*",
33911
33911
  "package": "./number-field"
33912
33912
  }
33913
+ },
33914
+ {
33915
+ "kind": "js",
33916
+ "name": "toIntlNumberFormat",
33917
+ "declaration": {
33918
+ "name": "toIntlNumberFormat",
33919
+ "module": "./utils"
33920
+ }
33913
33921
  }
33914
33922
  ]
33915
33923
  },
@@ -59916,6 +59924,197 @@
59916
59924
  }
59917
59925
  ]
59918
59926
  },
59927
+ {
59928
+ "kind": "javascript-module",
59929
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
59930
+ "declarations": [],
59931
+ "exports": []
59932
+ },
59933
+ {
59934
+ "kind": "javascript-module",
59935
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
59936
+ "declarations": [
59937
+ {
59938
+ "kind": "function",
59939
+ "name": "groupsToCriteria",
59940
+ "return": {
59941
+ "type": {
59942
+ "text": "string"
59943
+ }
59944
+ },
59945
+ "parameters": [
59946
+ {
59947
+ "name": "groups",
59948
+ "type": {
59949
+ "text": "CriteriaGroup[]"
59950
+ }
59951
+ }
59952
+ ],
59953
+ "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."
59954
+ },
59955
+ {
59956
+ "kind": "variable",
59957
+ "name": "STRING_OPERATORS",
59958
+ "type": {
59959
+ "text": "CriteriaOperator[]"
59960
+ },
59961
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
59962
+ },
59963
+ {
59964
+ "kind": "variable",
59965
+ "name": "NUMERIC_OPERATORS",
59966
+ "type": {
59967
+ "text": "CriteriaOperator[]"
59968
+ },
59969
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
59970
+ },
59971
+ {
59972
+ "kind": "variable",
59973
+ "name": "DATE_OPERATORS",
59974
+ "type": {
59975
+ "text": "CriteriaOperator[]"
59976
+ },
59977
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
59978
+ },
59979
+ {
59980
+ "kind": "variable",
59981
+ "name": "DATETIME_OPERATORS",
59982
+ "type": {
59983
+ "text": "CriteriaOperator[]"
59984
+ },
59985
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
59986
+ },
59987
+ {
59988
+ "kind": "variable",
59989
+ "name": "OPERATOR_DISPLAY_LABEL",
59990
+ "type": {
59991
+ "text": "Record<CriteriaOperator, string>"
59992
+ },
59993
+ "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}"
59994
+ }
59995
+ ],
59996
+ "exports": [
59997
+ {
59998
+ "kind": "js",
59999
+ "name": "groupsToCriteria",
60000
+ "declaration": {
60001
+ "name": "groupsToCriteria",
60002
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60003
+ }
60004
+ },
60005
+ {
60006
+ "kind": "js",
60007
+ "name": "STRING_OPERATORS",
60008
+ "declaration": {
60009
+ "name": "STRING_OPERATORS",
60010
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60011
+ }
60012
+ },
60013
+ {
60014
+ "kind": "js",
60015
+ "name": "NUMERIC_OPERATORS",
60016
+ "declaration": {
60017
+ "name": "NUMERIC_OPERATORS",
60018
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60019
+ }
60020
+ },
60021
+ {
60022
+ "kind": "js",
60023
+ "name": "DATE_OPERATORS",
60024
+ "declaration": {
60025
+ "name": "DATE_OPERATORS",
60026
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60027
+ }
60028
+ },
60029
+ {
60030
+ "kind": "js",
60031
+ "name": "DATETIME_OPERATORS",
60032
+ "declaration": {
60033
+ "name": "DATETIME_OPERATORS",
60034
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60035
+ }
60036
+ },
60037
+ {
60038
+ "kind": "js",
60039
+ "name": "OPERATOR_DISPLAY_LABEL",
60040
+ "declaration": {
60041
+ "name": "OPERATOR_DISPLAY_LABEL",
60042
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60043
+ }
60044
+ }
60045
+ ]
60046
+ },
60047
+ {
60048
+ "kind": "javascript-module",
60049
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
60050
+ "declarations": [
60051
+ {
60052
+ "kind": "function",
60053
+ "name": "validateClauses",
60054
+ "return": {
60055
+ "type": {
60056
+ "text": "ValidationResult"
60057
+ }
60058
+ },
60059
+ "parameters": [
60060
+ {
60061
+ "name": "clauses",
60062
+ "type": {
60063
+ "text": "CriteriaClause[]"
60064
+ }
60065
+ },
60066
+ {
60067
+ "name": "fieldMetadata",
60068
+ "type": {
60069
+ "text": "MetadataDetail[] | string[]"
60070
+ }
60071
+ }
60072
+ ]
60073
+ },
60074
+ {
60075
+ "kind": "function",
60076
+ "name": "validateGroups",
60077
+ "return": {
60078
+ "type": {
60079
+ "text": "GroupsValidationResult"
60080
+ }
60081
+ },
60082
+ "parameters": [
60083
+ {
60084
+ "name": "groups",
60085
+ "type": {
60086
+ "text": "CriteriaGroup[]"
60087
+ }
60088
+ },
60089
+ {
60090
+ "name": "fieldMetadata",
60091
+ "type": {
60092
+ "text": "MetadataDetail[] | string[]"
60093
+ }
60094
+ }
60095
+ ],
60096
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
60097
+ }
60098
+ ],
60099
+ "exports": [
60100
+ {
60101
+ "kind": "js",
60102
+ "name": "validateClauses",
60103
+ "declaration": {
60104
+ "name": "validateClauses",
60105
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60106
+ }
60107
+ },
60108
+ {
60109
+ "kind": "js",
60110
+ "name": "validateGroups",
60111
+ "declaration": {
60112
+ "name": "validateGroups",
60113
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60114
+ }
60115
+ }
60116
+ ]
60117
+ },
59919
60118
  {
59920
60119
  "kind": "javascript-module",
59921
60120
  "path": "src/_config/styles/colors.ts",
@@ -61288,197 +61487,6 @@
61288
61487
  "declarations": [],
61289
61488
  "exports": []
61290
61489
  },
61291
- {
61292
- "kind": "javascript-module",
61293
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
61294
- "declarations": [],
61295
- "exports": []
61296
- },
61297
- {
61298
- "kind": "javascript-module",
61299
- "path": "src/ai-criteria-search/validation/operator-map.ts",
61300
- "declarations": [
61301
- {
61302
- "kind": "function",
61303
- "name": "groupsToCriteria",
61304
- "return": {
61305
- "type": {
61306
- "text": "string"
61307
- }
61308
- },
61309
- "parameters": [
61310
- {
61311
- "name": "groups",
61312
- "type": {
61313
- "text": "CriteriaGroup[]"
61314
- }
61315
- }
61316
- ],
61317
- "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."
61318
- },
61319
- {
61320
- "kind": "variable",
61321
- "name": "STRING_OPERATORS",
61322
- "type": {
61323
- "text": "CriteriaOperator[]"
61324
- },
61325
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
61326
- },
61327
- {
61328
- "kind": "variable",
61329
- "name": "NUMERIC_OPERATORS",
61330
- "type": {
61331
- "text": "CriteriaOperator[]"
61332
- },
61333
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
61334
- },
61335
- {
61336
- "kind": "variable",
61337
- "name": "DATE_OPERATORS",
61338
- "type": {
61339
- "text": "CriteriaOperator[]"
61340
- },
61341
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
61342
- },
61343
- {
61344
- "kind": "variable",
61345
- "name": "DATETIME_OPERATORS",
61346
- "type": {
61347
- "text": "CriteriaOperator[]"
61348
- },
61349
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
61350
- },
61351
- {
61352
- "kind": "variable",
61353
- "name": "OPERATOR_DISPLAY_LABEL",
61354
- "type": {
61355
- "text": "Record<CriteriaOperator, string>"
61356
- },
61357
- "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}"
61358
- }
61359
- ],
61360
- "exports": [
61361
- {
61362
- "kind": "js",
61363
- "name": "groupsToCriteria",
61364
- "declaration": {
61365
- "name": "groupsToCriteria",
61366
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61367
- }
61368
- },
61369
- {
61370
- "kind": "js",
61371
- "name": "STRING_OPERATORS",
61372
- "declaration": {
61373
- "name": "STRING_OPERATORS",
61374
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61375
- }
61376
- },
61377
- {
61378
- "kind": "js",
61379
- "name": "NUMERIC_OPERATORS",
61380
- "declaration": {
61381
- "name": "NUMERIC_OPERATORS",
61382
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61383
- }
61384
- },
61385
- {
61386
- "kind": "js",
61387
- "name": "DATE_OPERATORS",
61388
- "declaration": {
61389
- "name": "DATE_OPERATORS",
61390
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61391
- }
61392
- },
61393
- {
61394
- "kind": "js",
61395
- "name": "DATETIME_OPERATORS",
61396
- "declaration": {
61397
- "name": "DATETIME_OPERATORS",
61398
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61399
- }
61400
- },
61401
- {
61402
- "kind": "js",
61403
- "name": "OPERATOR_DISPLAY_LABEL",
61404
- "declaration": {
61405
- "name": "OPERATOR_DISPLAY_LABEL",
61406
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61407
- }
61408
- }
61409
- ]
61410
- },
61411
- {
61412
- "kind": "javascript-module",
61413
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
61414
- "declarations": [
61415
- {
61416
- "kind": "function",
61417
- "name": "validateClauses",
61418
- "return": {
61419
- "type": {
61420
- "text": "ValidationResult"
61421
- }
61422
- },
61423
- "parameters": [
61424
- {
61425
- "name": "clauses",
61426
- "type": {
61427
- "text": "CriteriaClause[]"
61428
- }
61429
- },
61430
- {
61431
- "name": "fieldMetadata",
61432
- "type": {
61433
- "text": "MetadataDetail[] | string[]"
61434
- }
61435
- }
61436
- ]
61437
- },
61438
- {
61439
- "kind": "function",
61440
- "name": "validateGroups",
61441
- "return": {
61442
- "type": {
61443
- "text": "GroupsValidationResult"
61444
- }
61445
- },
61446
- "parameters": [
61447
- {
61448
- "name": "groups",
61449
- "type": {
61450
- "text": "CriteriaGroup[]"
61451
- }
61452
- },
61453
- {
61454
- "name": "fieldMetadata",
61455
- "type": {
61456
- "text": "MetadataDetail[] | string[]"
61457
- }
61458
- }
61459
- ],
61460
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
61461
- }
61462
- ],
61463
- "exports": [
61464
- {
61465
- "kind": "js",
61466
- "name": "validateClauses",
61467
- "declaration": {
61468
- "name": "validateClauses",
61469
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61470
- }
61471
- },
61472
- {
61473
- "kind": "js",
61474
- "name": "validateGroups",
61475
- "declaration": {
61476
- "name": "validateGroups",
61477
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61478
- }
61479
- }
61480
- ]
61481
- },
61482
61490
  {
61483
61491
  "kind": "javascript-module",
61484
61492
  "path": "src/environment-indicator/utils/configure.ts",