@genesislcap/foundation-ui 15.3.3 → 15.3.5
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.
- package/dist/custom-elements.json +1049 -1049
- package/dist/dts/react.d.ts +8 -8
- package/dist/react.cjs +5 -5
- package/dist/react.mjs +4 -4
- package/package.json +19 -19
|
@@ -956,6 +956,472 @@
|
|
|
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
|
+
},
|
|
959
1425
|
{
|
|
960
1426
|
"kind": "javascript-module",
|
|
961
1427
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -1350,6 +1816,37 @@
|
|
|
1350
1816
|
}
|
|
1351
1817
|
]
|
|
1352
1818
|
},
|
|
1819
|
+
{
|
|
1820
|
+
"kind": "javascript-module",
|
|
1821
|
+
"path": "src/_config/index.ts",
|
|
1822
|
+
"declarations": [],
|
|
1823
|
+
"exports": [
|
|
1824
|
+
{
|
|
1825
|
+
"kind": "js",
|
|
1826
|
+
"name": "*",
|
|
1827
|
+
"declaration": {
|
|
1828
|
+
"name": "*",
|
|
1829
|
+
"package": "./styles"
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"kind": "js",
|
|
1834
|
+
"name": "*",
|
|
1835
|
+
"declaration": {
|
|
1836
|
+
"name": "*",
|
|
1837
|
+
"package": "./tokens"
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
"kind": "js",
|
|
1842
|
+
"name": "*",
|
|
1843
|
+
"declaration": {
|
|
1844
|
+
"name": "*",
|
|
1845
|
+
"package": "./values"
|
|
1846
|
+
}
|
|
1847
|
+
}
|
|
1848
|
+
]
|
|
1849
|
+
},
|
|
1353
1850
|
{
|
|
1354
1851
|
"kind": "javascript-module",
|
|
1355
1852
|
"path": "src/actions-menu/actions-menu.styles.ts",
|
|
@@ -1923,473 +2420,7 @@
|
|
|
1923
2420
|
},
|
|
1924
2421
|
{
|
|
1925
2422
|
"kind": "javascript-module",
|
|
1926
|
-
"path": "src/
|
|
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",
|
|
2344
|
-
"declaration": {
|
|
2345
|
-
"name": "closeIcon",
|
|
2346
|
-
"module": "src/_common/icons.ts"
|
|
2347
|
-
}
|
|
2348
|
-
}
|
|
2349
|
-
]
|
|
2350
|
-
},
|
|
2351
|
-
{
|
|
2352
|
-
"kind": "javascript-module",
|
|
2353
|
-
"path": "src/_common/index.ts",
|
|
2354
|
-
"declarations": [],
|
|
2355
|
-
"exports": [
|
|
2356
|
-
{
|
|
2357
|
-
"kind": "js",
|
|
2358
|
-
"name": "*",
|
|
2359
|
-
"declaration": {
|
|
2360
|
-
"name": "*",
|
|
2361
|
-
"package": "./affix-mixin"
|
|
2362
|
-
}
|
|
2363
|
-
},
|
|
2364
|
-
{
|
|
2365
|
-
"kind": "js",
|
|
2366
|
-
"name": "*",
|
|
2367
|
-
"declaration": {
|
|
2368
|
-
"name": "*",
|
|
2369
|
-
"package": "./base-file-component"
|
|
2370
|
-
}
|
|
2371
|
-
},
|
|
2372
|
-
{
|
|
2373
|
-
"kind": "js",
|
|
2374
|
-
"name": "*",
|
|
2375
|
-
"declaration": {
|
|
2376
|
-
"name": "*",
|
|
2377
|
-
"package": "./field-styles"
|
|
2378
|
-
}
|
|
2379
|
-
},
|
|
2380
|
-
{
|
|
2381
|
-
"kind": "js",
|
|
2382
|
-
"name": "*",
|
|
2383
|
-
"declaration": {
|
|
2384
|
-
"name": "*",
|
|
2385
|
-
"package": "./icons"
|
|
2386
|
-
}
|
|
2387
|
-
}
|
|
2388
|
-
]
|
|
2389
|
-
},
|
|
2390
|
-
{
|
|
2391
|
-
"kind": "javascript-module",
|
|
2392
|
-
"path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
|
|
2423
|
+
"path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
|
|
2393
2424
|
"declarations": [
|
|
2394
2425
|
{
|
|
2395
2426
|
"kind": "variable",
|
|
@@ -2998,11 +3029,11 @@
|
|
|
2998
3029
|
},
|
|
2999
3030
|
{
|
|
3000
3031
|
"kind": "javascript-module",
|
|
3001
|
-
"path": "src/
|
|
3032
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
3002
3033
|
"declarations": [
|
|
3003
3034
|
{
|
|
3004
3035
|
"kind": "function",
|
|
3005
|
-
"name": "
|
|
3036
|
+
"name": "foundationAccordionStyles",
|
|
3006
3037
|
"return": {
|
|
3007
3038
|
"type": {
|
|
3008
3039
|
"text": "ElementStyles"
|
|
@@ -3027,224 +3058,276 @@
|
|
|
3027
3058
|
"exports": [
|
|
3028
3059
|
{
|
|
3029
3060
|
"kind": "js",
|
|
3030
|
-
"name": "
|
|
3061
|
+
"name": "foundationAccordionStyles",
|
|
3031
3062
|
"declaration": {
|
|
3032
|
-
"name": "
|
|
3033
|
-
"module": "src/
|
|
3063
|
+
"name": "foundationAccordionStyles",
|
|
3064
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
3034
3065
|
}
|
|
3035
3066
|
}
|
|
3036
3067
|
]
|
|
3037
3068
|
},
|
|
3038
3069
|
{
|
|
3039
3070
|
"kind": "javascript-module",
|
|
3040
|
-
"path": "src/
|
|
3071
|
+
"path": "src/accordion/accordion.template.ts",
|
|
3041
3072
|
"declarations": [
|
|
3042
3073
|
{
|
|
3043
|
-
"kind": "
|
|
3044
|
-
"name": "
|
|
3045
|
-
"
|
|
3046
|
-
"
|
|
3074
|
+
"kind": "function",
|
|
3075
|
+
"name": "foundationAccordionTemplate",
|
|
3076
|
+
"return": {
|
|
3077
|
+
"type": {
|
|
3078
|
+
"text": "ViewTemplate<Accordion>"
|
|
3079
|
+
}
|
|
3047
3080
|
},
|
|
3048
|
-
"
|
|
3081
|
+
"parameters": [
|
|
3082
|
+
{
|
|
3083
|
+
"name": "context",
|
|
3084
|
+
"type": {
|
|
3085
|
+
"text": "ElementDefinitionContext"
|
|
3086
|
+
}
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
"name": "definition",
|
|
3090
|
+
"type": {
|
|
3091
|
+
"text": "FoundationElementDefinition"
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
]
|
|
3049
3095
|
}
|
|
3050
3096
|
],
|
|
3051
3097
|
"exports": [
|
|
3052
3098
|
{
|
|
3053
3099
|
"kind": "js",
|
|
3054
|
-
"name": "
|
|
3100
|
+
"name": "foundationAccordionTemplate",
|
|
3055
3101
|
"declaration": {
|
|
3056
|
-
"name": "
|
|
3057
|
-
"module": "src/
|
|
3102
|
+
"name": "foundationAccordionTemplate",
|
|
3103
|
+
"module": "src/accordion/accordion.template.ts"
|
|
3058
3104
|
}
|
|
3059
3105
|
}
|
|
3060
3106
|
]
|
|
3061
3107
|
},
|
|
3062
3108
|
{
|
|
3063
3109
|
"kind": "javascript-module",
|
|
3064
|
-
"path": "src/
|
|
3110
|
+
"path": "src/accordion/accordion.ts",
|
|
3065
3111
|
"declarations": [
|
|
3066
3112
|
{
|
|
3067
3113
|
"kind": "class",
|
|
3068
3114
|
"description": "",
|
|
3069
|
-
"name": "
|
|
3070
|
-
"
|
|
3115
|
+
"name": "Accordion",
|
|
3116
|
+
"superclass": {
|
|
3117
|
+
"name": "FASTAccordion",
|
|
3118
|
+
"package": "@microsoft/fast-foundation"
|
|
3119
|
+
},
|
|
3120
|
+
"tagName": "%%prefix%%-accordion",
|
|
3121
|
+
"customElement": true,
|
|
3122
|
+
"attributes": [
|
|
3071
3123
|
{
|
|
3072
|
-
"
|
|
3073
|
-
"name": "providerRegistry",
|
|
3124
|
+
"name": "expand-mode",
|
|
3074
3125
|
"type": {
|
|
3075
|
-
"text": "
|
|
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"
|
|
3126
|
+
"text": "AccordionExpandMode"
|
|
3093
3127
|
},
|
|
3094
|
-
"
|
|
3095
|
-
|
|
3128
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
3129
|
+
"fieldName": "expandmode",
|
|
3130
|
+
"inheritedFrom": {
|
|
3131
|
+
"name": "Accordion",
|
|
3132
|
+
"module": "src/accordion/accordion.ts"
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
],
|
|
3136
|
+
"members": [
|
|
3096
3137
|
{
|
|
3097
3138
|
"kind": "field",
|
|
3098
|
-
"name": "
|
|
3139
|
+
"name": "expandmode",
|
|
3099
3140
|
"type": {
|
|
3100
|
-
"text": "
|
|
3141
|
+
"text": "AccordionExpandMode"
|
|
3101
3142
|
},
|
|
3102
|
-
"
|
|
3143
|
+
"privacy": "public",
|
|
3144
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
3145
|
+
"inheritedFrom": {
|
|
3146
|
+
"name": "Accordion",
|
|
3147
|
+
"module": "src/accordion/accordion.ts"
|
|
3148
|
+
}
|
|
3103
3149
|
},
|
|
3104
3150
|
{
|
|
3105
3151
|
"kind": "field",
|
|
3106
|
-
"name": "
|
|
3152
|
+
"name": "activeid",
|
|
3107
3153
|
"type": {
|
|
3108
|
-
"text": "
|
|
3154
|
+
"text": "string | null"
|
|
3109
3155
|
},
|
|
3110
|
-
"
|
|
3156
|
+
"privacy": "private",
|
|
3157
|
+
"inheritedFrom": {
|
|
3158
|
+
"name": "Accordion",
|
|
3159
|
+
"module": "src/accordion/accordion.ts"
|
|
3160
|
+
}
|
|
3111
3161
|
},
|
|
3112
3162
|
{
|
|
3113
3163
|
"kind": "field",
|
|
3114
|
-
"name": "
|
|
3164
|
+
"name": "activeItemIndex",
|
|
3115
3165
|
"type": {
|
|
3116
|
-
"text": "
|
|
3166
|
+
"text": "number"
|
|
3117
3167
|
},
|
|
3118
|
-
"
|
|
3168
|
+
"privacy": "private",
|
|
3169
|
+
"default": "0",
|
|
3170
|
+
"inheritedFrom": {
|
|
3171
|
+
"name": "Accordion",
|
|
3172
|
+
"module": "src/accordion/accordion.ts"
|
|
3173
|
+
}
|
|
3119
3174
|
},
|
|
3120
3175
|
{
|
|
3121
3176
|
"kind": "field",
|
|
3122
|
-
"name": "
|
|
3177
|
+
"name": "accordionIds",
|
|
3123
3178
|
"type": {
|
|
3124
|
-
"text": "
|
|
3179
|
+
"text": "Array<string | null>"
|
|
3125
3180
|
},
|
|
3126
3181
|
"privacy": "private",
|
|
3127
|
-
"
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
"name": "clickOutside",
|
|
3132
|
-
"privacy": "private"
|
|
3182
|
+
"inheritedFrom": {
|
|
3183
|
+
"name": "Accordion",
|
|
3184
|
+
"module": "src/accordion/accordion.ts"
|
|
3185
|
+
}
|
|
3133
3186
|
},
|
|
3134
3187
|
{
|
|
3135
3188
|
"kind": "field",
|
|
3136
|
-
"name": "
|
|
3137
|
-
"
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3189
|
+
"name": "change",
|
|
3190
|
+
"privacy": "private",
|
|
3191
|
+
"inheritedFrom": {
|
|
3192
|
+
"name": "Accordion",
|
|
3193
|
+
"module": "src/accordion/accordion.ts"
|
|
3194
|
+
}
|
|
3141
3195
|
},
|
|
3142
3196
|
{
|
|
3143
|
-
"kind": "
|
|
3144
|
-
"name": "
|
|
3145
|
-
"
|
|
3146
|
-
|
|
3197
|
+
"kind": "method",
|
|
3198
|
+
"name": "findExpandedItem",
|
|
3199
|
+
"privacy": "private",
|
|
3200
|
+
"return": {
|
|
3201
|
+
"type": {
|
|
3202
|
+
"text": "AccordionItem | null"
|
|
3203
|
+
}
|
|
3147
3204
|
},
|
|
3148
|
-
"
|
|
3205
|
+
"inheritedFrom": {
|
|
3206
|
+
"name": "Accordion",
|
|
3207
|
+
"module": "src/accordion/accordion.ts"
|
|
3208
|
+
}
|
|
3149
3209
|
},
|
|
3150
3210
|
{
|
|
3151
3211
|
"kind": "field",
|
|
3152
|
-
"name": "
|
|
3153
|
-
"
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3212
|
+
"name": "setItems",
|
|
3213
|
+
"privacy": "private",
|
|
3214
|
+
"inheritedFrom": {
|
|
3215
|
+
"name": "Accordion",
|
|
3216
|
+
"module": "src/accordion/accordion.ts"
|
|
3217
|
+
}
|
|
3157
3218
|
},
|
|
3158
3219
|
{
|
|
3159
3220
|
"kind": "method",
|
|
3160
|
-
"name": "
|
|
3221
|
+
"name": "resetItems",
|
|
3222
|
+
"privacy": "private",
|
|
3161
3223
|
"return": {
|
|
3162
3224
|
"type": {
|
|
3163
3225
|
"text": "void"
|
|
3164
3226
|
}
|
|
3227
|
+
},
|
|
3228
|
+
"inheritedFrom": {
|
|
3229
|
+
"name": "Accordion",
|
|
3230
|
+
"module": "src/accordion/accordion.ts"
|
|
3165
3231
|
}
|
|
3166
3232
|
},
|
|
3167
3233
|
{
|
|
3168
|
-
"kind": "
|
|
3169
|
-
"name": "
|
|
3234
|
+
"kind": "field",
|
|
3235
|
+
"name": "removeItemListeners",
|
|
3170
3236
|
"privacy": "private",
|
|
3171
|
-
"
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
"text": "MouseEvent"
|
|
3176
|
-
}
|
|
3177
|
-
}
|
|
3178
|
-
]
|
|
3237
|
+
"inheritedFrom": {
|
|
3238
|
+
"name": "Accordion",
|
|
3239
|
+
"module": "src/accordion/accordion.ts"
|
|
3240
|
+
}
|
|
3179
3241
|
},
|
|
3180
3242
|
{
|
|
3181
|
-
"kind": "
|
|
3182
|
-
"name": "
|
|
3243
|
+
"kind": "field",
|
|
3244
|
+
"name": "activeItemChange",
|
|
3245
|
+
"privacy": "private",
|
|
3246
|
+
"inheritedFrom": {
|
|
3247
|
+
"name": "Accordion",
|
|
3248
|
+
"module": "src/accordion/accordion.ts"
|
|
3249
|
+
}
|
|
3183
3250
|
},
|
|
3184
3251
|
{
|
|
3185
3252
|
"kind": "method",
|
|
3186
|
-
"name": "
|
|
3253
|
+
"name": "getItemIds",
|
|
3254
|
+
"privacy": "private",
|
|
3187
3255
|
"return": {
|
|
3188
3256
|
"type": {
|
|
3189
|
-
"text": "
|
|
3257
|
+
"text": "Array<string | null>"
|
|
3190
3258
|
}
|
|
3259
|
+
},
|
|
3260
|
+
"inheritedFrom": {
|
|
3261
|
+
"name": "Accordion",
|
|
3262
|
+
"module": "src/accordion/accordion.ts"
|
|
3191
3263
|
}
|
|
3192
3264
|
},
|
|
3193
3265
|
{
|
|
3194
3266
|
"kind": "method",
|
|
3195
|
-
"name": "
|
|
3267
|
+
"name": "isSingleExpandMode",
|
|
3196
3268
|
"privacy": "private",
|
|
3197
3269
|
"return": {
|
|
3198
3270
|
"type": {
|
|
3199
|
-
"text": "
|
|
3271
|
+
"text": "boolean"
|
|
3200
3272
|
}
|
|
3201
3273
|
},
|
|
3202
|
-
"
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
"text": "AIStatus | null"
|
|
3207
|
-
}
|
|
3208
|
-
}
|
|
3209
|
-
]
|
|
3274
|
+
"inheritedFrom": {
|
|
3275
|
+
"name": "Accordion",
|
|
3276
|
+
"module": "src/accordion/accordion.ts"
|
|
3277
|
+
}
|
|
3210
3278
|
},
|
|
3211
3279
|
{
|
|
3212
|
-
"kind": "
|
|
3213
|
-
"name": "
|
|
3280
|
+
"kind": "field",
|
|
3281
|
+
"name": "handleItemKeyDown",
|
|
3214
3282
|
"privacy": "private",
|
|
3215
|
-
"
|
|
3216
|
-
"
|
|
3217
|
-
|
|
3218
|
-
}
|
|
3283
|
+
"inheritedFrom": {
|
|
3284
|
+
"name": "Accordion",
|
|
3285
|
+
"module": "src/accordion/accordion.ts"
|
|
3219
3286
|
}
|
|
3220
3287
|
},
|
|
3221
3288
|
{
|
|
3222
|
-
"kind": "
|
|
3223
|
-
"name": "
|
|
3289
|
+
"kind": "field",
|
|
3290
|
+
"name": "handleItemFocus",
|
|
3224
3291
|
"privacy": "private",
|
|
3225
|
-
"
|
|
3226
|
-
"
|
|
3227
|
-
|
|
3228
|
-
}
|
|
3292
|
+
"inheritedFrom": {
|
|
3293
|
+
"name": "Accordion",
|
|
3294
|
+
"module": "src/accordion/accordion.ts"
|
|
3229
3295
|
}
|
|
3230
3296
|
},
|
|
3231
3297
|
{
|
|
3232
3298
|
"kind": "method",
|
|
3233
|
-
"name": "
|
|
3299
|
+
"name": "adjust",
|
|
3234
3300
|
"privacy": "private",
|
|
3235
3301
|
"return": {
|
|
3236
3302
|
"type": {
|
|
3237
3303
|
"text": "void"
|
|
3238
3304
|
}
|
|
3305
|
+
},
|
|
3306
|
+
"parameters": [
|
|
3307
|
+
{
|
|
3308
|
+
"name": "adjustment",
|
|
3309
|
+
"type": {
|
|
3310
|
+
"text": "number"
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
],
|
|
3314
|
+
"inheritedFrom": {
|
|
3315
|
+
"name": "Accordion",
|
|
3316
|
+
"module": "src/accordion/accordion.ts"
|
|
3239
3317
|
}
|
|
3240
3318
|
},
|
|
3241
3319
|
{
|
|
3242
3320
|
"kind": "method",
|
|
3243
|
-
"name": "
|
|
3321
|
+
"name": "focusItem",
|
|
3322
|
+
"privacy": "private",
|
|
3244
3323
|
"return": {
|
|
3245
3324
|
"type": {
|
|
3246
|
-
"text": "
|
|
3325
|
+
"text": "void"
|
|
3247
3326
|
}
|
|
3327
|
+
},
|
|
3328
|
+
"inheritedFrom": {
|
|
3329
|
+
"name": "Accordion",
|
|
3330
|
+
"module": "src/accordion/accordion.ts"
|
|
3248
3331
|
}
|
|
3249
3332
|
},
|
|
3250
3333
|
{
|
|
@@ -3359,95 +3442,78 @@
|
|
|
3359
3442
|
}
|
|
3360
3443
|
}
|
|
3361
3444
|
],
|
|
3362
|
-
"
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3445
|
+
"events": [
|
|
3446
|
+
{
|
|
3447
|
+
"description": "Fires a custom 'change' event when the active item changes",
|
|
3448
|
+
"name": "change",
|
|
3449
|
+
"inheritedFrom": {
|
|
3450
|
+
"name": "Accordion",
|
|
3451
|
+
"module": "src/accordion/accordion.ts"
|
|
3452
|
+
}
|
|
3453
|
+
}
|
|
3454
|
+
]
|
|
3368
3455
|
},
|
|
3369
3456
|
{
|
|
3370
3457
|
"kind": "variable",
|
|
3371
|
-
"name": "
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3458
|
+
"name": "foundationAccordionShadowOptions",
|
|
3459
|
+
"type": {
|
|
3460
|
+
"text": "ShadowRootInit"
|
|
3461
|
+
},
|
|
3462
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3463
|
+
},
|
|
3375
3464
|
{
|
|
3376
|
-
"kind": "
|
|
3377
|
-
"name": "
|
|
3378
|
-
"
|
|
3379
|
-
"
|
|
3380
|
-
|
|
3381
|
-
}
|
|
3465
|
+
"kind": "variable",
|
|
3466
|
+
"name": "defaultAccordionConfig",
|
|
3467
|
+
"type": {
|
|
3468
|
+
"text": "object"
|
|
3469
|
+
},
|
|
3470
|
+
"default": "{}"
|
|
3382
3471
|
},
|
|
3383
3472
|
{
|
|
3384
|
-
"kind": "
|
|
3385
|
-
"name": "
|
|
3386
|
-
"
|
|
3387
|
-
|
|
3388
|
-
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3389
|
-
}
|
|
3473
|
+
"kind": "variable",
|
|
3474
|
+
"name": "foundationAccordion",
|
|
3475
|
+
"description": "The Foundation Accordion",
|
|
3476
|
+
"privacy": "public"
|
|
3390
3477
|
}
|
|
3391
|
-
]
|
|
3392
|
-
},
|
|
3393
|
-
{
|
|
3394
|
-
"kind": "javascript-module",
|
|
3395
|
-
"path": "src/ai-indicator/index.ts",
|
|
3396
|
-
"declarations": [],
|
|
3478
|
+
],
|
|
3397
3479
|
"exports": [
|
|
3398
3480
|
{
|
|
3399
3481
|
"kind": "js",
|
|
3400
|
-
"name": "
|
|
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",
|
|
3482
|
+
"name": "Accordion",
|
|
3417
3483
|
"declaration": {
|
|
3418
|
-
"name": "
|
|
3419
|
-
"module": "
|
|
3484
|
+
"name": "Accordion",
|
|
3485
|
+
"module": "src/accordion/accordion.ts"
|
|
3420
3486
|
}
|
|
3421
3487
|
},
|
|
3422
3488
|
{
|
|
3423
3489
|
"kind": "js",
|
|
3424
|
-
"name": "
|
|
3490
|
+
"name": "foundationAccordionShadowOptions",
|
|
3425
3491
|
"declaration": {
|
|
3426
|
-
"name": "
|
|
3427
|
-
"module": "
|
|
3492
|
+
"name": "foundationAccordionShadowOptions",
|
|
3493
|
+
"module": "src/accordion/accordion.ts"
|
|
3428
3494
|
}
|
|
3429
3495
|
},
|
|
3430
3496
|
{
|
|
3431
3497
|
"kind": "js",
|
|
3432
|
-
"name": "
|
|
3498
|
+
"name": "defaultAccordionConfig",
|
|
3433
3499
|
"declaration": {
|
|
3434
|
-
"name": "
|
|
3435
|
-
"module": "
|
|
3500
|
+
"name": "defaultAccordionConfig",
|
|
3501
|
+
"module": "src/accordion/accordion.ts"
|
|
3436
3502
|
}
|
|
3437
3503
|
},
|
|
3438
3504
|
{
|
|
3439
3505
|
"kind": "js",
|
|
3440
|
-
"name": "
|
|
3506
|
+
"name": "foundationAccordion",
|
|
3441
3507
|
"declaration": {
|
|
3442
|
-
"name": "
|
|
3443
|
-
"module": "
|
|
3508
|
+
"name": "foundationAccordion",
|
|
3509
|
+
"module": "src/accordion/accordion.ts"
|
|
3444
3510
|
}
|
|
3445
3511
|
}
|
|
3446
3512
|
]
|
|
3447
3513
|
},
|
|
3448
3514
|
{
|
|
3449
3515
|
"kind": "javascript-module",
|
|
3450
|
-
"path": "src/
|
|
3516
|
+
"path": "src/accordion/index.ts",
|
|
3451
3517
|
"declarations": [],
|
|
3452
3518
|
"exports": [
|
|
3453
3519
|
{
|
|
@@ -3455,7 +3521,7 @@
|
|
|
3455
3521
|
"name": "*",
|
|
3456
3522
|
"declaration": {
|
|
3457
3523
|
"name": "*",
|
|
3458
|
-
"package": "./
|
|
3524
|
+
"package": "./accordion.template"
|
|
3459
3525
|
}
|
|
3460
3526
|
},
|
|
3461
3527
|
{
|
|
@@ -3463,7 +3529,7 @@
|
|
|
3463
3529
|
"name": "*",
|
|
3464
3530
|
"declaration": {
|
|
3465
3531
|
"name": "*",
|
|
3466
|
-
"package": "./
|
|
3532
|
+
"package": "./accordion.styles"
|
|
3467
3533
|
}
|
|
3468
3534
|
},
|
|
3469
3535
|
{
|
|
@@ -3471,18 +3537,18 @@
|
|
|
3471
3537
|
"name": "*",
|
|
3472
3538
|
"declaration": {
|
|
3473
3539
|
"name": "*",
|
|
3474
|
-
"package": "./
|
|
3540
|
+
"package": "./accordion"
|
|
3475
3541
|
}
|
|
3476
3542
|
}
|
|
3477
3543
|
]
|
|
3478
3544
|
},
|
|
3479
3545
|
{
|
|
3480
3546
|
"kind": "javascript-module",
|
|
3481
|
-
"path": "src/
|
|
3547
|
+
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
3482
3548
|
"declarations": [
|
|
3483
3549
|
{
|
|
3484
3550
|
"kind": "function",
|
|
3485
|
-
"name": "
|
|
3551
|
+
"name": "foundationAiIndicatorStyles",
|
|
3486
3552
|
"return": {
|
|
3487
3553
|
"type": {
|
|
3488
3554
|
"text": "ElementStyles"
|
|
@@ -3507,276 +3573,224 @@
|
|
|
3507
3573
|
"exports": [
|
|
3508
3574
|
{
|
|
3509
3575
|
"kind": "js",
|
|
3510
|
-
"name": "
|
|
3576
|
+
"name": "foundationAiIndicatorStyles",
|
|
3511
3577
|
"declaration": {
|
|
3512
|
-
"name": "
|
|
3513
|
-
"module": "src/
|
|
3578
|
+
"name": "foundationAiIndicatorStyles",
|
|
3579
|
+
"module": "src/ai-indicator/ai-indicator.styles.ts"
|
|
3514
3580
|
}
|
|
3515
3581
|
}
|
|
3516
3582
|
]
|
|
3517
3583
|
},
|
|
3518
3584
|
{
|
|
3519
3585
|
"kind": "javascript-module",
|
|
3520
|
-
"path": "src/
|
|
3586
|
+
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
3521
3587
|
"declarations": [
|
|
3522
3588
|
{
|
|
3523
|
-
"kind": "
|
|
3524
|
-
"name": "
|
|
3525
|
-
"
|
|
3526
|
-
"
|
|
3527
|
-
"text": "ViewTemplate<Accordion>"
|
|
3528
|
-
}
|
|
3589
|
+
"kind": "variable",
|
|
3590
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3591
|
+
"type": {
|
|
3592
|
+
"text": "ViewTemplate<AiIndicator>"
|
|
3529
3593
|
},
|
|
3530
|
-
"
|
|
3531
|
-
{
|
|
3532
|
-
"name": "context",
|
|
3533
|
-
"type": {
|
|
3534
|
-
"text": "ElementDefinitionContext"
|
|
3535
|
-
}
|
|
3536
|
-
},
|
|
3537
|
-
{
|
|
3538
|
-
"name": "definition",
|
|
3539
|
-
"type": {
|
|
3540
|
-
"text": "FoundationElementDefinition"
|
|
3541
|
-
}
|
|
3542
|
-
}
|
|
3543
|
-
]
|
|
3594
|
+
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
3544
3595
|
}
|
|
3545
3596
|
],
|
|
3546
3597
|
"exports": [
|
|
3547
3598
|
{
|
|
3548
3599
|
"kind": "js",
|
|
3549
|
-
"name": "
|
|
3600
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3550
3601
|
"declaration": {
|
|
3551
|
-
"name": "
|
|
3552
|
-
"module": "src/
|
|
3602
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3603
|
+
"module": "src/ai-indicator/ai-indicator.template.ts"
|
|
3553
3604
|
}
|
|
3554
3605
|
}
|
|
3555
3606
|
]
|
|
3556
3607
|
},
|
|
3557
3608
|
{
|
|
3558
3609
|
"kind": "javascript-module",
|
|
3559
|
-
"path": "src/
|
|
3610
|
+
"path": "src/ai-indicator/ai-indicator.ts",
|
|
3560
3611
|
"declarations": [
|
|
3561
3612
|
{
|
|
3562
3613
|
"kind": "class",
|
|
3563
3614
|
"description": "",
|
|
3564
|
-
"name": "
|
|
3565
|
-
"
|
|
3566
|
-
"name": "FASTAccordion",
|
|
3567
|
-
"package": "@microsoft/fast-foundation"
|
|
3568
|
-
},
|
|
3569
|
-
"tagName": "%%prefix%%-accordion",
|
|
3570
|
-
"customElement": true,
|
|
3571
|
-
"attributes": [
|
|
3615
|
+
"name": "AiIndicator",
|
|
3616
|
+
"members": [
|
|
3572
3617
|
{
|
|
3573
|
-
"
|
|
3618
|
+
"kind": "field",
|
|
3619
|
+
"name": "providerRegistry",
|
|
3574
3620
|
"type": {
|
|
3575
|
-
"text": "
|
|
3576
|
-
},
|
|
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"
|
|
3621
|
+
"text": "AIProviderRegistry"
|
|
3582
3622
|
}
|
|
3583
|
-
}
|
|
3584
|
-
],
|
|
3585
|
-
"members": [
|
|
3623
|
+
},
|
|
3586
3624
|
{
|
|
3587
3625
|
"kind": "field",
|
|
3588
|
-
"name": "
|
|
3626
|
+
"name": "aiProvider",
|
|
3589
3627
|
"type": {
|
|
3590
|
-
"text": "
|
|
3628
|
+
"text": "AIProvider | undefined"
|
|
3591
3629
|
},
|
|
3592
|
-
"privacy": "
|
|
3593
|
-
"description": "
|
|
3594
|
-
"
|
|
3595
|
-
"name": "Accordion",
|
|
3596
|
-
"module": "src/accordion/accordion.ts"
|
|
3597
|
-
}
|
|
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
|
|
3598
3633
|
},
|
|
3599
3634
|
{
|
|
3600
3635
|
"kind": "field",
|
|
3601
|
-
"name": "
|
|
3636
|
+
"name": "status",
|
|
3602
3637
|
"type": {
|
|
3603
|
-
"text": "
|
|
3638
|
+
"text": "AIStatus | null"
|
|
3604
3639
|
},
|
|
3605
|
-
"
|
|
3606
|
-
"inheritedFrom": {
|
|
3607
|
-
"name": "Accordion",
|
|
3608
|
-
"module": "src/accordion/accordion.ts"
|
|
3609
|
-
}
|
|
3640
|
+
"default": "null"
|
|
3610
3641
|
},
|
|
3611
3642
|
{
|
|
3612
3643
|
"kind": "field",
|
|
3613
|
-
"name": "
|
|
3644
|
+
"name": "open",
|
|
3614
3645
|
"type": {
|
|
3615
|
-
"text": "
|
|
3646
|
+
"text": "boolean"
|
|
3616
3647
|
},
|
|
3617
|
-
"
|
|
3618
|
-
"default": "0",
|
|
3619
|
-
"inheritedFrom": {
|
|
3620
|
-
"name": "Accordion",
|
|
3621
|
-
"module": "src/accordion/accordion.ts"
|
|
3622
|
-
}
|
|
3648
|
+
"default": "false"
|
|
3623
3649
|
},
|
|
3624
3650
|
{
|
|
3625
3651
|
"kind": "field",
|
|
3626
|
-
"name": "
|
|
3652
|
+
"name": "state",
|
|
3627
3653
|
"type": {
|
|
3628
|
-
"text": "
|
|
3654
|
+
"text": "AIIndicatorState"
|
|
3629
3655
|
},
|
|
3630
|
-
"
|
|
3631
|
-
"inheritedFrom": {
|
|
3632
|
-
"name": "Accordion",
|
|
3633
|
-
"module": "src/accordion/accordion.ts"
|
|
3634
|
-
}
|
|
3656
|
+
"default": "'none'"
|
|
3635
3657
|
},
|
|
3636
3658
|
{
|
|
3637
3659
|
"kind": "field",
|
|
3638
|
-
"name": "
|
|
3639
|
-
"
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
}
|
|
3660
|
+
"name": "isInstalling",
|
|
3661
|
+
"type": {
|
|
3662
|
+
"text": "boolean"
|
|
3663
|
+
},
|
|
3664
|
+
"default": "false"
|
|
3644
3665
|
},
|
|
3645
3666
|
{
|
|
3646
|
-
"kind": "
|
|
3647
|
-
"name": "
|
|
3667
|
+
"kind": "field",
|
|
3668
|
+
"name": "pollTimer",
|
|
3669
|
+
"type": {
|
|
3670
|
+
"text": "ReturnType<typeof setInterval> | null"
|
|
3671
|
+
},
|
|
3648
3672
|
"privacy": "private",
|
|
3649
|
-
"
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3673
|
+
"default": "null"
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
"kind": "field",
|
|
3677
|
+
"name": "clickOutside",
|
|
3678
|
+
"privacy": "private"
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
"kind": "field",
|
|
3682
|
+
"name": "chromeStatusLabel",
|
|
3683
|
+
"type": {
|
|
3684
|
+
"text": "string | null"
|
|
3653
3685
|
},
|
|
3654
|
-
"
|
|
3655
|
-
"name": "Accordion",
|
|
3656
|
-
"module": "src/accordion/accordion.ts"
|
|
3657
|
-
}
|
|
3686
|
+
"readonly": true
|
|
3658
3687
|
},
|
|
3659
3688
|
{
|
|
3660
3689
|
"kind": "field",
|
|
3661
|
-
"name": "
|
|
3662
|
-
"
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3690
|
+
"name": "canInstall",
|
|
3691
|
+
"type": {
|
|
3692
|
+
"text": "boolean"
|
|
3693
|
+
},
|
|
3694
|
+
"readonly": true
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"kind": "field",
|
|
3698
|
+
"name": "isDownloading",
|
|
3699
|
+
"type": {
|
|
3700
|
+
"text": "boolean"
|
|
3701
|
+
},
|
|
3702
|
+
"readonly": true
|
|
3667
3703
|
},
|
|
3668
3704
|
{
|
|
3669
3705
|
"kind": "method",
|
|
3670
|
-
"name": "
|
|
3671
|
-
"privacy": "private",
|
|
3706
|
+
"name": "openChanged",
|
|
3672
3707
|
"return": {
|
|
3673
3708
|
"type": {
|
|
3674
3709
|
"text": "void"
|
|
3675
3710
|
}
|
|
3676
|
-
},
|
|
3677
|
-
"inheritedFrom": {
|
|
3678
|
-
"name": "Accordion",
|
|
3679
|
-
"module": "src/accordion/accordion.ts"
|
|
3680
3711
|
}
|
|
3681
3712
|
},
|
|
3682
3713
|
{
|
|
3683
|
-
"kind": "
|
|
3684
|
-
"name": "
|
|
3714
|
+
"kind": "method",
|
|
3715
|
+
"name": "handleClickOutside",
|
|
3685
3716
|
"privacy": "private",
|
|
3686
|
-
"
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3717
|
+
"parameters": [
|
|
3718
|
+
{
|
|
3719
|
+
"name": "event",
|
|
3720
|
+
"type": {
|
|
3721
|
+
"text": "MouseEvent"
|
|
3722
|
+
}
|
|
3723
|
+
}
|
|
3724
|
+
]
|
|
3690
3725
|
},
|
|
3691
3726
|
{
|
|
3692
|
-
"kind": "
|
|
3693
|
-
"name": "
|
|
3694
|
-
"privacy": "private",
|
|
3695
|
-
"inheritedFrom": {
|
|
3696
|
-
"name": "Accordion",
|
|
3697
|
-
"module": "src/accordion/accordion.ts"
|
|
3698
|
-
}
|
|
3727
|
+
"kind": "method",
|
|
3728
|
+
"name": "toggleDropdown"
|
|
3699
3729
|
},
|
|
3700
3730
|
{
|
|
3701
3731
|
"kind": "method",
|
|
3702
|
-
"name": "
|
|
3703
|
-
"privacy": "private",
|
|
3732
|
+
"name": "refreshStatus",
|
|
3704
3733
|
"return": {
|
|
3705
3734
|
"type": {
|
|
3706
|
-
"text": "
|
|
3735
|
+
"text": "Promise<void>"
|
|
3707
3736
|
}
|
|
3708
|
-
},
|
|
3709
|
-
"inheritedFrom": {
|
|
3710
|
-
"name": "Accordion",
|
|
3711
|
-
"module": "src/accordion/accordion.ts"
|
|
3712
3737
|
}
|
|
3713
3738
|
},
|
|
3714
3739
|
{
|
|
3715
3740
|
"kind": "method",
|
|
3716
|
-
"name": "
|
|
3741
|
+
"name": "deriveState",
|
|
3717
3742
|
"privacy": "private",
|
|
3718
3743
|
"return": {
|
|
3719
3744
|
"type": {
|
|
3720
|
-
"text": "
|
|
3745
|
+
"text": "AIIndicatorState"
|
|
3721
3746
|
}
|
|
3722
3747
|
},
|
|
3723
|
-
"
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3748
|
+
"parameters": [
|
|
3749
|
+
{
|
|
3750
|
+
"name": "s",
|
|
3751
|
+
"type": {
|
|
3752
|
+
"text": "AIStatus | null"
|
|
3753
|
+
}
|
|
3754
|
+
}
|
|
3755
|
+
]
|
|
3727
3756
|
},
|
|
3728
3757
|
{
|
|
3729
|
-
"kind": "
|
|
3730
|
-
"name": "
|
|
3758
|
+
"kind": "method",
|
|
3759
|
+
"name": "maybeStartPolling",
|
|
3731
3760
|
"privacy": "private",
|
|
3732
|
-
"
|
|
3733
|
-
"
|
|
3734
|
-
|
|
3761
|
+
"return": {
|
|
3762
|
+
"type": {
|
|
3763
|
+
"text": "void"
|
|
3764
|
+
}
|
|
3735
3765
|
}
|
|
3736
3766
|
},
|
|
3737
3767
|
{
|
|
3738
|
-
"kind": "
|
|
3739
|
-
"name": "
|
|
3768
|
+
"kind": "method",
|
|
3769
|
+
"name": "startPolling",
|
|
3740
3770
|
"privacy": "private",
|
|
3741
|
-
"
|
|
3742
|
-
"
|
|
3743
|
-
|
|
3771
|
+
"return": {
|
|
3772
|
+
"type": {
|
|
3773
|
+
"text": "void"
|
|
3774
|
+
}
|
|
3744
3775
|
}
|
|
3745
3776
|
},
|
|
3746
3777
|
{
|
|
3747
3778
|
"kind": "method",
|
|
3748
|
-
"name": "
|
|
3779
|
+
"name": "stopPolling",
|
|
3749
3780
|
"privacy": "private",
|
|
3750
3781
|
"return": {
|
|
3751
3782
|
"type": {
|
|
3752
3783
|
"text": "void"
|
|
3753
3784
|
}
|
|
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"
|
|
3766
3785
|
}
|
|
3767
3786
|
},
|
|
3768
3787
|
{
|
|
3769
3788
|
"kind": "method",
|
|
3770
|
-
"name": "
|
|
3771
|
-
"privacy": "private",
|
|
3789
|
+
"name": "onInstall",
|
|
3772
3790
|
"return": {
|
|
3773
3791
|
"type": {
|
|
3774
|
-
"text": "void"
|
|
3792
|
+
"text": "Promise<void>"
|
|
3775
3793
|
}
|
|
3776
|
-
},
|
|
3777
|
-
"inheritedFrom": {
|
|
3778
|
-
"name": "Accordion",
|
|
3779
|
-
"module": "src/accordion/accordion.ts"
|
|
3780
3794
|
}
|
|
3781
3795
|
},
|
|
3782
3796
|
{
|
|
@@ -3891,102 +3905,88 @@
|
|
|
3891
3905
|
}
|
|
3892
3906
|
}
|
|
3893
3907
|
],
|
|
3894
|
-
"
|
|
3895
|
-
|
|
3896
|
-
|
|
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"
|
|
3910
|
-
},
|
|
3911
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3912
|
-
},
|
|
3913
|
-
{
|
|
3914
|
-
"kind": "variable",
|
|
3915
|
-
"name": "defaultAccordionConfig",
|
|
3916
|
-
"type": {
|
|
3917
|
-
"text": "object"
|
|
3908
|
+
"superclass": {
|
|
3909
|
+
"name": "FoundationElement",
|
|
3910
|
+
"package": "@microsoft/fast-foundation"
|
|
3918
3911
|
},
|
|
3919
|
-
"
|
|
3912
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
3913
|
+
"customElement": true
|
|
3920
3914
|
},
|
|
3921
3915
|
{
|
|
3922
3916
|
"kind": "variable",
|
|
3923
|
-
"name": "
|
|
3924
|
-
"description": "The Foundation Accordion",
|
|
3925
|
-
"privacy": "public"
|
|
3917
|
+
"name": "foundationAiIndicator"
|
|
3926
3918
|
}
|
|
3927
3919
|
],
|
|
3928
3920
|
"exports": [
|
|
3929
3921
|
{
|
|
3930
3922
|
"kind": "js",
|
|
3931
|
-
"name": "
|
|
3923
|
+
"name": "AiIndicator",
|
|
3932
3924
|
"declaration": {
|
|
3933
|
-
"name": "
|
|
3934
|
-
"module": "src/
|
|
3925
|
+
"name": "AiIndicator",
|
|
3926
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3935
3927
|
}
|
|
3936
3928
|
},
|
|
3937
3929
|
{
|
|
3938
3930
|
"kind": "js",
|
|
3939
|
-
"name": "
|
|
3931
|
+
"name": "foundationAiIndicator",
|
|
3940
3932
|
"declaration": {
|
|
3941
|
-
"name": "
|
|
3942
|
-
"module": "src/
|
|
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",
|
|
3947
|
+
"declaration": {
|
|
3948
|
+
"name": "AiIndicator",
|
|
3949
|
+
"module": "./ai-indicator"
|
|
3943
3950
|
}
|
|
3944
3951
|
},
|
|
3945
3952
|
{
|
|
3946
3953
|
"kind": "js",
|
|
3947
|
-
"name": "
|
|
3954
|
+
"name": "foundationAiIndicator",
|
|
3948
3955
|
"declaration": {
|
|
3949
|
-
"name": "
|
|
3950
|
-
"module": "
|
|
3956
|
+
"name": "foundationAiIndicator",
|
|
3957
|
+
"module": "./ai-indicator"
|
|
3951
3958
|
}
|
|
3952
3959
|
},
|
|
3953
3960
|
{
|
|
3954
3961
|
"kind": "js",
|
|
3955
|
-
"name": "
|
|
3962
|
+
"name": "type",
|
|
3956
3963
|
"declaration": {
|
|
3957
|
-
"name": "
|
|
3958
|
-
"module": "
|
|
3964
|
+
"name": "type",
|
|
3965
|
+
"module": "./ai-indicator"
|
|
3959
3966
|
}
|
|
3960
|
-
}
|
|
3961
|
-
]
|
|
3962
|
-
},
|
|
3963
|
-
{
|
|
3964
|
-
"kind": "javascript-module",
|
|
3965
|
-
"path": "src/accordion/index.ts",
|
|
3966
|
-
"declarations": [],
|
|
3967
|
-
"exports": [
|
|
3967
|
+
},
|
|
3968
3968
|
{
|
|
3969
3969
|
"kind": "js",
|
|
3970
|
-
"name": "
|
|
3970
|
+
"name": "AIIndicatorState",
|
|
3971
3971
|
"declaration": {
|
|
3972
|
-
"name": "
|
|
3973
|
-
"
|
|
3972
|
+
"name": "AIIndicatorState",
|
|
3973
|
+
"module": "./ai-indicator"
|
|
3974
3974
|
}
|
|
3975
3975
|
},
|
|
3976
3976
|
{
|
|
3977
3977
|
"kind": "js",
|
|
3978
|
-
"name": "
|
|
3978
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3979
3979
|
"declaration": {
|
|
3980
|
-
"name": "
|
|
3981
|
-
"
|
|
3980
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3981
|
+
"module": "./ai-indicator.template"
|
|
3982
3982
|
}
|
|
3983
3983
|
},
|
|
3984
3984
|
{
|
|
3985
3985
|
"kind": "js",
|
|
3986
|
-
"name": "
|
|
3986
|
+
"name": "foundationAiIndicatorStyles",
|
|
3987
3987
|
"declaration": {
|
|
3988
|
-
"name": "
|
|
3989
|
-
"
|
|
3988
|
+
"name": "foundationAiIndicatorStyles",
|
|
3989
|
+
"module": "./ai-indicator.styles"
|
|
3990
3990
|
}
|
|
3991
3991
|
}
|
|
3992
3992
|
]
|
|
@@ -59924,197 +59924,6 @@
|
|
|
59924
59924
|
}
|
|
59925
59925
|
]
|
|
59926
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
|
-
},
|
|
60118
59927
|
{
|
|
60119
59928
|
"kind": "javascript-module",
|
|
60120
59929
|
"path": "src/_config/styles/colors.ts",
|
|
@@ -61487,6 +61296,197 @@
|
|
|
61487
61296
|
"declarations": [],
|
|
61488
61297
|
"exports": []
|
|
61489
61298
|
},
|
|
61299
|
+
{
|
|
61300
|
+
"kind": "javascript-module",
|
|
61301
|
+
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
61302
|
+
"declarations": [],
|
|
61303
|
+
"exports": []
|
|
61304
|
+
},
|
|
61305
|
+
{
|
|
61306
|
+
"kind": "javascript-module",
|
|
61307
|
+
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
61308
|
+
"declarations": [
|
|
61309
|
+
{
|
|
61310
|
+
"kind": "function",
|
|
61311
|
+
"name": "groupsToCriteria",
|
|
61312
|
+
"return": {
|
|
61313
|
+
"type": {
|
|
61314
|
+
"text": "string"
|
|
61315
|
+
}
|
|
61316
|
+
},
|
|
61317
|
+
"parameters": [
|
|
61318
|
+
{
|
|
61319
|
+
"name": "groups",
|
|
61320
|
+
"type": {
|
|
61321
|
+
"text": "CriteriaGroup[]"
|
|
61322
|
+
}
|
|
61323
|
+
}
|
|
61324
|
+
],
|
|
61325
|
+
"description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
|
|
61326
|
+
},
|
|
61327
|
+
{
|
|
61328
|
+
"kind": "variable",
|
|
61329
|
+
"name": "STRING_OPERATORS",
|
|
61330
|
+
"type": {
|
|
61331
|
+
"text": "CriteriaOperator[]"
|
|
61332
|
+
},
|
|
61333
|
+
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
61334
|
+
},
|
|
61335
|
+
{
|
|
61336
|
+
"kind": "variable",
|
|
61337
|
+
"name": "NUMERIC_OPERATORS",
|
|
61338
|
+
"type": {
|
|
61339
|
+
"text": "CriteriaOperator[]"
|
|
61340
|
+
},
|
|
61341
|
+
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
61342
|
+
},
|
|
61343
|
+
{
|
|
61344
|
+
"kind": "variable",
|
|
61345
|
+
"name": "DATE_OPERATORS",
|
|
61346
|
+
"type": {
|
|
61347
|
+
"text": "CriteriaOperator[]"
|
|
61348
|
+
},
|
|
61349
|
+
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
61350
|
+
},
|
|
61351
|
+
{
|
|
61352
|
+
"kind": "variable",
|
|
61353
|
+
"name": "DATETIME_OPERATORS",
|
|
61354
|
+
"type": {
|
|
61355
|
+
"text": "CriteriaOperator[]"
|
|
61356
|
+
},
|
|
61357
|
+
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
61358
|
+
},
|
|
61359
|
+
{
|
|
61360
|
+
"kind": "variable",
|
|
61361
|
+
"name": "OPERATOR_DISPLAY_LABEL",
|
|
61362
|
+
"type": {
|
|
61363
|
+
"text": "Record<CriteriaOperator, string>"
|
|
61364
|
+
},
|
|
61365
|
+
"default": "{\n contains: 'contains',\n equals: '=',\n startsWith: 'starts with',\n endsWith: 'ends with',\n notEqual: '≠',\n greaterThan: '>',\n lessThan: '<',\n greaterThanOrEqual: '≥',\n lessThanOrEqual: '≤',\n dateIsToday: 'is today',\n dateIsAfter: 'after',\n dateIsBefore: 'before',\n dateIsEqual: '=',\n dateIsGreaterEqual: '≥',\n dateIsLessEqual: '≤',\n dateTimeIsAfter: 'after',\n dateTimeIsBefore: 'before',\n dateTimeIsGreaterEqual: '≥',\n dateTimeIsLessEqual: '≤',\n}"
|
|
61366
|
+
}
|
|
61367
|
+
],
|
|
61368
|
+
"exports": [
|
|
61369
|
+
{
|
|
61370
|
+
"kind": "js",
|
|
61371
|
+
"name": "groupsToCriteria",
|
|
61372
|
+
"declaration": {
|
|
61373
|
+
"name": "groupsToCriteria",
|
|
61374
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61375
|
+
}
|
|
61376
|
+
},
|
|
61377
|
+
{
|
|
61378
|
+
"kind": "js",
|
|
61379
|
+
"name": "STRING_OPERATORS",
|
|
61380
|
+
"declaration": {
|
|
61381
|
+
"name": "STRING_OPERATORS",
|
|
61382
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61383
|
+
}
|
|
61384
|
+
},
|
|
61385
|
+
{
|
|
61386
|
+
"kind": "js",
|
|
61387
|
+
"name": "NUMERIC_OPERATORS",
|
|
61388
|
+
"declaration": {
|
|
61389
|
+
"name": "NUMERIC_OPERATORS",
|
|
61390
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61391
|
+
}
|
|
61392
|
+
},
|
|
61393
|
+
{
|
|
61394
|
+
"kind": "js",
|
|
61395
|
+
"name": "DATE_OPERATORS",
|
|
61396
|
+
"declaration": {
|
|
61397
|
+
"name": "DATE_OPERATORS",
|
|
61398
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61399
|
+
}
|
|
61400
|
+
},
|
|
61401
|
+
{
|
|
61402
|
+
"kind": "js",
|
|
61403
|
+
"name": "DATETIME_OPERATORS",
|
|
61404
|
+
"declaration": {
|
|
61405
|
+
"name": "DATETIME_OPERATORS",
|
|
61406
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61407
|
+
}
|
|
61408
|
+
},
|
|
61409
|
+
{
|
|
61410
|
+
"kind": "js",
|
|
61411
|
+
"name": "OPERATOR_DISPLAY_LABEL",
|
|
61412
|
+
"declaration": {
|
|
61413
|
+
"name": "OPERATOR_DISPLAY_LABEL",
|
|
61414
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
61415
|
+
}
|
|
61416
|
+
}
|
|
61417
|
+
]
|
|
61418
|
+
},
|
|
61419
|
+
{
|
|
61420
|
+
"kind": "javascript-module",
|
|
61421
|
+
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
61422
|
+
"declarations": [
|
|
61423
|
+
{
|
|
61424
|
+
"kind": "function",
|
|
61425
|
+
"name": "validateClauses",
|
|
61426
|
+
"return": {
|
|
61427
|
+
"type": {
|
|
61428
|
+
"text": "ValidationResult"
|
|
61429
|
+
}
|
|
61430
|
+
},
|
|
61431
|
+
"parameters": [
|
|
61432
|
+
{
|
|
61433
|
+
"name": "clauses",
|
|
61434
|
+
"type": {
|
|
61435
|
+
"text": "CriteriaClause[]"
|
|
61436
|
+
}
|
|
61437
|
+
},
|
|
61438
|
+
{
|
|
61439
|
+
"name": "fieldMetadata",
|
|
61440
|
+
"type": {
|
|
61441
|
+
"text": "MetadataDetail[] | string[]"
|
|
61442
|
+
}
|
|
61443
|
+
}
|
|
61444
|
+
]
|
|
61445
|
+
},
|
|
61446
|
+
{
|
|
61447
|
+
"kind": "function",
|
|
61448
|
+
"name": "validateGroups",
|
|
61449
|
+
"return": {
|
|
61450
|
+
"type": {
|
|
61451
|
+
"text": "GroupsValidationResult"
|
|
61452
|
+
}
|
|
61453
|
+
},
|
|
61454
|
+
"parameters": [
|
|
61455
|
+
{
|
|
61456
|
+
"name": "groups",
|
|
61457
|
+
"type": {
|
|
61458
|
+
"text": "CriteriaGroup[]"
|
|
61459
|
+
}
|
|
61460
|
+
},
|
|
61461
|
+
{
|
|
61462
|
+
"name": "fieldMetadata",
|
|
61463
|
+
"type": {
|
|
61464
|
+
"text": "MetadataDetail[] | string[]"
|
|
61465
|
+
}
|
|
61466
|
+
}
|
|
61467
|
+
],
|
|
61468
|
+
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
61469
|
+
}
|
|
61470
|
+
],
|
|
61471
|
+
"exports": [
|
|
61472
|
+
{
|
|
61473
|
+
"kind": "js",
|
|
61474
|
+
"name": "validateClauses",
|
|
61475
|
+
"declaration": {
|
|
61476
|
+
"name": "validateClauses",
|
|
61477
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
61478
|
+
}
|
|
61479
|
+
},
|
|
61480
|
+
{
|
|
61481
|
+
"kind": "js",
|
|
61482
|
+
"name": "validateGroups",
|
|
61483
|
+
"declaration": {
|
|
61484
|
+
"name": "validateGroups",
|
|
61485
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
61486
|
+
}
|
|
61487
|
+
}
|
|
61488
|
+
]
|
|
61489
|
+
},
|
|
61490
61490
|
{
|
|
61491
61491
|
"kind": "javascript-module",
|
|
61492
61492
|
"path": "src/environment-indicator/utils/configure.ts",
|