@genesislcap/foundation-ui 14.409.0-FUI-2495.3 → 14.409.0-FUI-2495.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 +982 -982
- package/package.json +19 -19
|
@@ -924,6 +924,551 @@
|
|
|
924
924
|
}
|
|
925
925
|
]
|
|
926
926
|
},
|
|
927
|
+
{
|
|
928
|
+
"kind": "javascript-module",
|
|
929
|
+
"path": "src/_common/base-file-component.ts",
|
|
930
|
+
"declarations": [
|
|
931
|
+
{
|
|
932
|
+
"kind": "class",
|
|
933
|
+
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
934
|
+
"name": "BaseFileComponent",
|
|
935
|
+
"members": [
|
|
936
|
+
{
|
|
937
|
+
"kind": "field",
|
|
938
|
+
"name": "fileInput",
|
|
939
|
+
"type": {
|
|
940
|
+
"text": "HTMLInputElement"
|
|
941
|
+
},
|
|
942
|
+
"privacy": "public"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"kind": "field",
|
|
946
|
+
"name": "selectedFile",
|
|
947
|
+
"type": {
|
|
948
|
+
"text": "File | null"
|
|
949
|
+
},
|
|
950
|
+
"privacy": "protected",
|
|
951
|
+
"default": "null"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"kind": "field",
|
|
955
|
+
"name": "label",
|
|
956
|
+
"type": {
|
|
957
|
+
"text": "string"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"kind": "field",
|
|
962
|
+
"name": "accept",
|
|
963
|
+
"type": {
|
|
964
|
+
"text": "string"
|
|
965
|
+
},
|
|
966
|
+
"default": "''"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"kind": "field",
|
|
970
|
+
"name": "fileSizeLimitBytes",
|
|
971
|
+
"default": "10_485_760",
|
|
972
|
+
"type": {
|
|
973
|
+
"text": "number"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"kind": "field",
|
|
978
|
+
"name": "fileName",
|
|
979
|
+
"type": {
|
|
980
|
+
"text": "string"
|
|
981
|
+
},
|
|
982
|
+
"default": "''"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"kind": "field",
|
|
986
|
+
"name": "isProcessing",
|
|
987
|
+
"type": {
|
|
988
|
+
"text": "boolean"
|
|
989
|
+
},
|
|
990
|
+
"default": "false"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"kind": "method",
|
|
994
|
+
"name": "handleClick",
|
|
995
|
+
"privacy": "public",
|
|
996
|
+
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"kind": "method",
|
|
1000
|
+
"name": "onInputChange",
|
|
1001
|
+
"privacy": "public",
|
|
1002
|
+
"parameters": [
|
|
1003
|
+
{
|
|
1004
|
+
"name": "e",
|
|
1005
|
+
"type": {
|
|
1006
|
+
"text": "Event"
|
|
1007
|
+
},
|
|
1008
|
+
"description": "The change event from the file input"
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"kind": "method",
|
|
1015
|
+
"name": "clearSelection",
|
|
1016
|
+
"privacy": "public",
|
|
1017
|
+
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"kind": "method",
|
|
1021
|
+
"name": "getSelectedFile",
|
|
1022
|
+
"privacy": "public",
|
|
1023
|
+
"description": "Gets the currently selected file object",
|
|
1024
|
+
"return": {
|
|
1025
|
+
"type": {
|
|
1026
|
+
"text": ""
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"kind": "method",
|
|
1032
|
+
"name": "showError",
|
|
1033
|
+
"privacy": "protected",
|
|
1034
|
+
"parameters": [
|
|
1035
|
+
{
|
|
1036
|
+
"name": "title",
|
|
1037
|
+
"type": {
|
|
1038
|
+
"text": "string"
|
|
1039
|
+
},
|
|
1040
|
+
"description": "The error title"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"name": "message",
|
|
1044
|
+
"type": {
|
|
1045
|
+
"text": "string"
|
|
1046
|
+
},
|
|
1047
|
+
"description": "The error message"
|
|
1048
|
+
}
|
|
1049
|
+
],
|
|
1050
|
+
"description": "Shows an error notification using the unified error handling system"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"kind": "method",
|
|
1054
|
+
"name": "onFileSelected",
|
|
1055
|
+
"privacy": "protected",
|
|
1056
|
+
"return": {
|
|
1057
|
+
"type": {
|
|
1058
|
+
"text": "void"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"parameters": [
|
|
1062
|
+
{
|
|
1063
|
+
"name": "files",
|
|
1064
|
+
"type": {
|
|
1065
|
+
"text": "File[]"
|
|
1066
|
+
},
|
|
1067
|
+
"description": "The selected file"
|
|
1068
|
+
}
|
|
1069
|
+
],
|
|
1070
|
+
"description": "Abstract method called when a file is selected"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"kind": "method",
|
|
1074
|
+
"name": "onFileCleared",
|
|
1075
|
+
"privacy": "protected",
|
|
1076
|
+
"return": {
|
|
1077
|
+
"type": {
|
|
1078
|
+
"text": "void"
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
"description": "Abstract method called when file selection is cleared"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"kind": "field",
|
|
1085
|
+
"name": "_presentation",
|
|
1086
|
+
"type": {
|
|
1087
|
+
"text": "ComponentPresentation | null | undefined"
|
|
1088
|
+
},
|
|
1089
|
+
"privacy": "private",
|
|
1090
|
+
"default": "void 0",
|
|
1091
|
+
"inheritedFrom": {
|
|
1092
|
+
"name": "FoundationElement",
|
|
1093
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"kind": "field",
|
|
1098
|
+
"name": "$presentation",
|
|
1099
|
+
"type": {
|
|
1100
|
+
"text": "ComponentPresentation | null"
|
|
1101
|
+
},
|
|
1102
|
+
"privacy": "public",
|
|
1103
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1104
|
+
"inheritedFrom": {
|
|
1105
|
+
"name": "FoundationElement",
|
|
1106
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"kind": "field",
|
|
1111
|
+
"name": "template",
|
|
1112
|
+
"type": {
|
|
1113
|
+
"text": "ElementViewTemplate | void | null"
|
|
1114
|
+
},
|
|
1115
|
+
"privacy": "public",
|
|
1116
|
+
"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.",
|
|
1117
|
+
"inheritedFrom": {
|
|
1118
|
+
"name": "FoundationElement",
|
|
1119
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"kind": "method",
|
|
1124
|
+
"name": "templateChanged",
|
|
1125
|
+
"privacy": "protected",
|
|
1126
|
+
"return": {
|
|
1127
|
+
"type": {
|
|
1128
|
+
"text": "void"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"inheritedFrom": {
|
|
1132
|
+
"name": "FoundationElement",
|
|
1133
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"kind": "field",
|
|
1138
|
+
"name": "styles",
|
|
1139
|
+
"type": {
|
|
1140
|
+
"text": "ElementStyles | void | null"
|
|
1141
|
+
},
|
|
1142
|
+
"privacy": "public",
|
|
1143
|
+
"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.",
|
|
1144
|
+
"inheritedFrom": {
|
|
1145
|
+
"name": "FoundationElement",
|
|
1146
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"kind": "method",
|
|
1151
|
+
"name": "stylesChanged",
|
|
1152
|
+
"privacy": "protected",
|
|
1153
|
+
"return": {
|
|
1154
|
+
"type": {
|
|
1155
|
+
"text": "void"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"inheritedFrom": {
|
|
1159
|
+
"name": "FoundationElement",
|
|
1160
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"kind": "method",
|
|
1165
|
+
"name": "compose",
|
|
1166
|
+
"privacy": "public",
|
|
1167
|
+
"static": true,
|
|
1168
|
+
"return": {
|
|
1169
|
+
"type": {
|
|
1170
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
"parameters": [
|
|
1174
|
+
{
|
|
1175
|
+
"name": "this",
|
|
1176
|
+
"type": {
|
|
1177
|
+
"text": "K"
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"name": "elementDefinition",
|
|
1182
|
+
"type": {
|
|
1183
|
+
"text": "T"
|
|
1184
|
+
},
|
|
1185
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
1186
|
+
}
|
|
1187
|
+
],
|
|
1188
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1189
|
+
"inheritedFrom": {
|
|
1190
|
+
"name": "FoundationElement",
|
|
1191
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
],
|
|
1195
|
+
"attributes": [
|
|
1196
|
+
{
|
|
1197
|
+
"name": "label",
|
|
1198
|
+
"type": {
|
|
1199
|
+
"text": "string"
|
|
1200
|
+
},
|
|
1201
|
+
"fieldName": "label"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"name": "accept",
|
|
1205
|
+
"type": {
|
|
1206
|
+
"text": "string"
|
|
1207
|
+
},
|
|
1208
|
+
"default": "''",
|
|
1209
|
+
"fieldName": "accept"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"name": "file-size-limit-bytes",
|
|
1213
|
+
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
1214
|
+
"resolveInitializer": {
|
|
1215
|
+
"module": "src/_common/base-file-component.ts"
|
|
1216
|
+
},
|
|
1217
|
+
"fieldName": "fileSizeLimitBytes"
|
|
1218
|
+
}
|
|
1219
|
+
],
|
|
1220
|
+
"superclass": {
|
|
1221
|
+
"name": "FoundationElement",
|
|
1222
|
+
"package": "@microsoft/fast-foundation"
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
],
|
|
1226
|
+
"exports": [
|
|
1227
|
+
{
|
|
1228
|
+
"kind": "js",
|
|
1229
|
+
"name": "BaseFileComponent",
|
|
1230
|
+
"declaration": {
|
|
1231
|
+
"name": "BaseFileComponent",
|
|
1232
|
+
"module": "src/_common/base-file-component.ts"
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
]
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"kind": "javascript-module",
|
|
1239
|
+
"path": "src/_common/icons.ts",
|
|
1240
|
+
"declarations": [
|
|
1241
|
+
{
|
|
1242
|
+
"kind": "function",
|
|
1243
|
+
"name": "closeIcon",
|
|
1244
|
+
"parameters": [
|
|
1245
|
+
{
|
|
1246
|
+
"name": "slot",
|
|
1247
|
+
"default": "'start'"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"name": "fill",
|
|
1251
|
+
"default": "'#879ba6'"
|
|
1252
|
+
}
|
|
1253
|
+
]
|
|
1254
|
+
}
|
|
1255
|
+
],
|
|
1256
|
+
"exports": [
|
|
1257
|
+
{
|
|
1258
|
+
"kind": "js",
|
|
1259
|
+
"name": "closeIcon",
|
|
1260
|
+
"declaration": {
|
|
1261
|
+
"name": "closeIcon",
|
|
1262
|
+
"module": "src/_common/icons.ts"
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"kind": "javascript-module",
|
|
1269
|
+
"path": "src/_common/index.ts",
|
|
1270
|
+
"declarations": [],
|
|
1271
|
+
"exports": [
|
|
1272
|
+
{
|
|
1273
|
+
"kind": "js",
|
|
1274
|
+
"name": "*",
|
|
1275
|
+
"declaration": {
|
|
1276
|
+
"name": "*",
|
|
1277
|
+
"package": "./base-file-component"
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"kind": "js",
|
|
1282
|
+
"name": "*",
|
|
1283
|
+
"declaration": {
|
|
1284
|
+
"name": "*",
|
|
1285
|
+
"package": "./icons"
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
]
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"kind": "javascript-module",
|
|
1292
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
1293
|
+
"declarations": [
|
|
1294
|
+
{
|
|
1295
|
+
"kind": "function",
|
|
1296
|
+
"name": "foundationAccordionStyles",
|
|
1297
|
+
"return": {
|
|
1298
|
+
"type": {
|
|
1299
|
+
"text": "ElementStyles"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"parameters": [
|
|
1303
|
+
{
|
|
1304
|
+
"name": "context",
|
|
1305
|
+
"type": {
|
|
1306
|
+
"text": "ElementDefinitionContext"
|
|
1307
|
+
}
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"name": "definition",
|
|
1311
|
+
"type": {
|
|
1312
|
+
"text": "FoundationElementDefinition"
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
]
|
|
1316
|
+
}
|
|
1317
|
+
],
|
|
1318
|
+
"exports": [
|
|
1319
|
+
{
|
|
1320
|
+
"kind": "js",
|
|
1321
|
+
"name": "foundationAccordionStyles",
|
|
1322
|
+
"declaration": {
|
|
1323
|
+
"name": "foundationAccordionStyles",
|
|
1324
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
]
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"kind": "javascript-module",
|
|
1331
|
+
"path": "src/accordion/accordion.template.ts",
|
|
1332
|
+
"declarations": [
|
|
1333
|
+
{
|
|
1334
|
+
"kind": "function",
|
|
1335
|
+
"name": "foundationAccordionTemplate",
|
|
1336
|
+
"return": {
|
|
1337
|
+
"type": {
|
|
1338
|
+
"text": "ViewTemplate<Accordion>"
|
|
1339
|
+
}
|
|
1340
|
+
},
|
|
1341
|
+
"parameters": [
|
|
1342
|
+
{
|
|
1343
|
+
"name": "context",
|
|
1344
|
+
"type": {
|
|
1345
|
+
"text": "ElementDefinitionContext"
|
|
1346
|
+
}
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"name": "definition",
|
|
1350
|
+
"type": {
|
|
1351
|
+
"text": "FoundationElementDefinition"
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
]
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
1357
|
+
"exports": [
|
|
1358
|
+
{
|
|
1359
|
+
"kind": "js",
|
|
1360
|
+
"name": "foundationAccordionTemplate",
|
|
1361
|
+
"declaration": {
|
|
1362
|
+
"name": "foundationAccordionTemplate",
|
|
1363
|
+
"module": "src/accordion/accordion.template.ts"
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
]
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"kind": "javascript-module",
|
|
1370
|
+
"path": "src/accordion/accordion.ts",
|
|
1371
|
+
"declarations": [
|
|
1372
|
+
{
|
|
1373
|
+
"kind": "class",
|
|
1374
|
+
"description": "",
|
|
1375
|
+
"name": "Accordion",
|
|
1376
|
+
"superclass": {
|
|
1377
|
+
"name": "FASTAccordion",
|
|
1378
|
+
"package": "@microsoft/fast-foundation"
|
|
1379
|
+
},
|
|
1380
|
+
"tagName": "%%prefix%%-accordion",
|
|
1381
|
+
"customElement": true
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"kind": "variable",
|
|
1385
|
+
"name": "foundationAccordionShadowOptions",
|
|
1386
|
+
"type": {
|
|
1387
|
+
"text": "ShadowRootInit"
|
|
1388
|
+
},
|
|
1389
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"kind": "variable",
|
|
1393
|
+
"name": "defaultAccordionConfig",
|
|
1394
|
+
"type": {
|
|
1395
|
+
"text": "object"
|
|
1396
|
+
},
|
|
1397
|
+
"default": "{}"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"kind": "variable",
|
|
1401
|
+
"name": "foundationAccordion",
|
|
1402
|
+
"description": "The Foundation Accordion",
|
|
1403
|
+
"privacy": "public"
|
|
1404
|
+
}
|
|
1405
|
+
],
|
|
1406
|
+
"exports": [
|
|
1407
|
+
{
|
|
1408
|
+
"kind": "js",
|
|
1409
|
+
"name": "Accordion",
|
|
1410
|
+
"declaration": {
|
|
1411
|
+
"name": "Accordion",
|
|
1412
|
+
"module": "src/accordion/accordion.ts"
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"kind": "js",
|
|
1417
|
+
"name": "foundationAccordionShadowOptions",
|
|
1418
|
+
"declaration": {
|
|
1419
|
+
"name": "foundationAccordionShadowOptions",
|
|
1420
|
+
"module": "src/accordion/accordion.ts"
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"kind": "js",
|
|
1425
|
+
"name": "defaultAccordionConfig",
|
|
1426
|
+
"declaration": {
|
|
1427
|
+
"name": "defaultAccordionConfig",
|
|
1428
|
+
"module": "src/accordion/accordion.ts"
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"kind": "js",
|
|
1433
|
+
"name": "foundationAccordion",
|
|
1434
|
+
"declaration": {
|
|
1435
|
+
"name": "foundationAccordion",
|
|
1436
|
+
"module": "src/accordion/accordion.ts"
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
]
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"kind": "javascript-module",
|
|
1443
|
+
"path": "src/accordion/index.ts",
|
|
1444
|
+
"declarations": [],
|
|
1445
|
+
"exports": [
|
|
1446
|
+
{
|
|
1447
|
+
"kind": "js",
|
|
1448
|
+
"name": "*",
|
|
1449
|
+
"declaration": {
|
|
1450
|
+
"name": "*",
|
|
1451
|
+
"package": "./accordion.template"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"kind": "js",
|
|
1456
|
+
"name": "*",
|
|
1457
|
+
"declaration": {
|
|
1458
|
+
"name": "*",
|
|
1459
|
+
"package": "./accordion.styles"
|
|
1460
|
+
}
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"kind": "js",
|
|
1464
|
+
"name": "*",
|
|
1465
|
+
"declaration": {
|
|
1466
|
+
"name": "*",
|
|
1467
|
+
"package": "./accordion"
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
927
1472
|
{
|
|
928
1473
|
"kind": "javascript-module",
|
|
929
1474
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -1318,6 +1863,37 @@
|
|
|
1318
1863
|
}
|
|
1319
1864
|
]
|
|
1320
1865
|
},
|
|
1866
|
+
{
|
|
1867
|
+
"kind": "javascript-module",
|
|
1868
|
+
"path": "src/_config/index.ts",
|
|
1869
|
+
"declarations": [],
|
|
1870
|
+
"exports": [
|
|
1871
|
+
{
|
|
1872
|
+
"kind": "js",
|
|
1873
|
+
"name": "*",
|
|
1874
|
+
"declaration": {
|
|
1875
|
+
"name": "*",
|
|
1876
|
+
"package": "./styles"
|
|
1877
|
+
}
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"kind": "js",
|
|
1881
|
+
"name": "*",
|
|
1882
|
+
"declaration": {
|
|
1883
|
+
"name": "*",
|
|
1884
|
+
"package": "./tokens"
|
|
1885
|
+
}
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"kind": "js",
|
|
1889
|
+
"name": "*",
|
|
1890
|
+
"declaration": {
|
|
1891
|
+
"name": "*",
|
|
1892
|
+
"package": "./values"
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
]
|
|
1896
|
+
},
|
|
1321
1897
|
{
|
|
1322
1898
|
"kind": "javascript-module",
|
|
1323
1899
|
"path": "src/actions-menu/actions-menu.styles.ts",
|
|
@@ -1750,476 +2326,105 @@
|
|
|
1750
2326
|
],
|
|
1751
2327
|
"attributes": [
|
|
1752
2328
|
{
|
|
1753
|
-
"name": "is-vertical",
|
|
1754
|
-
"type": {
|
|
1755
|
-
"text": "boolean"
|
|
1756
|
-
},
|
|
1757
|
-
"default": "false",
|
|
1758
|
-
"fieldName": "isVertical"
|
|
1759
|
-
},
|
|
1760
|
-
{
|
|
1761
|
-
"name": "add-default-actions",
|
|
1762
|
-
"type": {
|
|
1763
|
-
"text": "boolean"
|
|
1764
|
-
},
|
|
1765
|
-
"default": "true",
|
|
1766
|
-
"fieldName": "addDefaultActions"
|
|
1767
|
-
},
|
|
1768
|
-
{
|
|
1769
|
-
"name": "auto-close-on-action",
|
|
1770
|
-
"type": {
|
|
1771
|
-
"text": "boolean"
|
|
1772
|
-
},
|
|
1773
|
-
"default": "true",
|
|
1774
|
-
"fieldName": "autoCloseOnAction"
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"name": "name",
|
|
1778
|
-
"type": {
|
|
1779
|
-
"text": "string"
|
|
1780
|
-
},
|
|
1781
|
-
"default": "'Actions'",
|
|
1782
|
-
"fieldName": "name"
|
|
1783
|
-
},
|
|
1784
|
-
{
|
|
1785
|
-
"name": "open",
|
|
1786
|
-
"type": {
|
|
1787
|
-
"text": "boolean"
|
|
1788
|
-
},
|
|
1789
|
-
"default": "false",
|
|
1790
|
-
"fieldName": "open"
|
|
1791
|
-
},
|
|
1792
|
-
{
|
|
1793
|
-
"name": "buttonAppearance",
|
|
1794
|
-
"type": {
|
|
1795
|
-
"text": "string"
|
|
1796
|
-
},
|
|
1797
|
-
"fieldName": "buttonAppearance"
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
"name": "hide-disabled",
|
|
1801
|
-
"type": {
|
|
1802
|
-
"text": "boolean"
|
|
1803
|
-
},
|
|
1804
|
-
"default": "false",
|
|
1805
|
-
"fieldName": "hideDisabled"
|
|
1806
|
-
},
|
|
1807
|
-
{
|
|
1808
|
-
"name": "hide-menu-single-option",
|
|
1809
|
-
"type": {
|
|
1810
|
-
"text": "boolean"
|
|
1811
|
-
},
|
|
1812
|
-
"default": "false",
|
|
1813
|
-
"fieldName": "hideMenuSingleOption"
|
|
1814
|
-
}
|
|
1815
|
-
],
|
|
1816
|
-
"superclass": {
|
|
1817
|
-
"name": "FoundationElement",
|
|
1818
|
-
"package": "@microsoft/fast-foundation"
|
|
1819
|
-
},
|
|
1820
|
-
"tagName": "%%prefix%%-actions-menu",
|
|
1821
|
-
"customElement": true
|
|
1822
|
-
},
|
|
1823
|
-
{
|
|
1824
|
-
"kind": "variable",
|
|
1825
|
-
"name": "foundationActionsMenu",
|
|
1826
|
-
"description": "The Foundation Actions Menu",
|
|
1827
|
-
"privacy": "public"
|
|
1828
|
-
}
|
|
1829
|
-
],
|
|
1830
|
-
"exports": [
|
|
1831
|
-
{
|
|
1832
|
-
"kind": "js",
|
|
1833
|
-
"name": "ActionsMenu",
|
|
1834
|
-
"declaration": {
|
|
1835
|
-
"name": "ActionsMenu",
|
|
1836
|
-
"module": "src/actions-menu/actions-menu.ts"
|
|
1837
|
-
}
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"kind": "js",
|
|
1841
|
-
"name": "foundationActionsMenu",
|
|
1842
|
-
"declaration": {
|
|
1843
|
-
"name": "foundationActionsMenu",
|
|
1844
|
-
"module": "src/actions-menu/actions-menu.ts"
|
|
1845
|
-
}
|
|
1846
|
-
}
|
|
1847
|
-
]
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"kind": "javascript-module",
|
|
1851
|
-
"path": "src/actions-menu/index.ts",
|
|
1852
|
-
"declarations": [],
|
|
1853
|
-
"exports": [
|
|
1854
|
-
{
|
|
1855
|
-
"kind": "js",
|
|
1856
|
-
"name": "*",
|
|
1857
|
-
"declaration": {
|
|
1858
|
-
"name": "*",
|
|
1859
|
-
"package": "./actions-menu.styles"
|
|
1860
|
-
}
|
|
1861
|
-
},
|
|
1862
|
-
{
|
|
1863
|
-
"kind": "js",
|
|
1864
|
-
"name": "*",
|
|
1865
|
-
"declaration": {
|
|
1866
|
-
"name": "*",
|
|
1867
|
-
"package": "./actions-menu.template"
|
|
1868
|
-
}
|
|
1869
|
-
},
|
|
1870
|
-
{
|
|
1871
|
-
"kind": "js",
|
|
1872
|
-
"name": "*",
|
|
1873
|
-
"declaration": {
|
|
1874
|
-
"name": "*",
|
|
1875
|
-
"package": "./actions-menu"
|
|
1876
|
-
}
|
|
1877
|
-
}
|
|
1878
|
-
]
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
"kind": "javascript-module",
|
|
1882
|
-
"path": "src/_common/base-file-component.ts",
|
|
1883
|
-
"declarations": [
|
|
1884
|
-
{
|
|
1885
|
-
"kind": "class",
|
|
1886
|
-
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
1887
|
-
"name": "BaseFileComponent",
|
|
1888
|
-
"members": [
|
|
1889
|
-
{
|
|
1890
|
-
"kind": "field",
|
|
1891
|
-
"name": "fileInput",
|
|
1892
|
-
"type": {
|
|
1893
|
-
"text": "HTMLInputElement"
|
|
1894
|
-
},
|
|
1895
|
-
"privacy": "public"
|
|
1896
|
-
},
|
|
1897
|
-
{
|
|
1898
|
-
"kind": "field",
|
|
1899
|
-
"name": "selectedFile",
|
|
1900
|
-
"type": {
|
|
1901
|
-
"text": "File | null"
|
|
1902
|
-
},
|
|
1903
|
-
"privacy": "protected",
|
|
1904
|
-
"default": "null"
|
|
1905
|
-
},
|
|
1906
|
-
{
|
|
1907
|
-
"kind": "field",
|
|
1908
|
-
"name": "label",
|
|
1909
|
-
"type": {
|
|
1910
|
-
"text": "string"
|
|
1911
|
-
}
|
|
1912
|
-
},
|
|
1913
|
-
{
|
|
1914
|
-
"kind": "field",
|
|
1915
|
-
"name": "accept",
|
|
1916
|
-
"type": {
|
|
1917
|
-
"text": "string"
|
|
1918
|
-
},
|
|
1919
|
-
"default": "''"
|
|
1920
|
-
},
|
|
1921
|
-
{
|
|
1922
|
-
"kind": "field",
|
|
1923
|
-
"name": "fileSizeLimitBytes",
|
|
1924
|
-
"default": "10_485_760",
|
|
1925
|
-
"type": {
|
|
1926
|
-
"text": "number"
|
|
1927
|
-
}
|
|
1928
|
-
},
|
|
1929
|
-
{
|
|
1930
|
-
"kind": "field",
|
|
1931
|
-
"name": "fileName",
|
|
1932
|
-
"type": {
|
|
1933
|
-
"text": "string"
|
|
1934
|
-
},
|
|
1935
|
-
"default": "''"
|
|
1936
|
-
},
|
|
1937
|
-
{
|
|
1938
|
-
"kind": "field",
|
|
1939
|
-
"name": "isProcessing",
|
|
1940
|
-
"type": {
|
|
1941
|
-
"text": "boolean"
|
|
1942
|
-
},
|
|
1943
|
-
"default": "false"
|
|
1944
|
-
},
|
|
1945
|
-
{
|
|
1946
|
-
"kind": "method",
|
|
1947
|
-
"name": "handleClick",
|
|
1948
|
-
"privacy": "public",
|
|
1949
|
-
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
1950
|
-
},
|
|
1951
|
-
{
|
|
1952
|
-
"kind": "method",
|
|
1953
|
-
"name": "onInputChange",
|
|
1954
|
-
"privacy": "public",
|
|
1955
|
-
"parameters": [
|
|
1956
|
-
{
|
|
1957
|
-
"name": "e",
|
|
1958
|
-
"type": {
|
|
1959
|
-
"text": "Event"
|
|
1960
|
-
},
|
|
1961
|
-
"description": "The change event from the file input"
|
|
1962
|
-
}
|
|
1963
|
-
],
|
|
1964
|
-
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1965
|
-
},
|
|
1966
|
-
{
|
|
1967
|
-
"kind": "method",
|
|
1968
|
-
"name": "clearSelection",
|
|
1969
|
-
"privacy": "public",
|
|
1970
|
-
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
"kind": "method",
|
|
1974
|
-
"name": "getSelectedFile",
|
|
1975
|
-
"privacy": "public",
|
|
1976
|
-
"description": "Gets the currently selected file object",
|
|
1977
|
-
"return": {
|
|
1978
|
-
"type": {
|
|
1979
|
-
"text": ""
|
|
1980
|
-
}
|
|
1981
|
-
}
|
|
1982
|
-
},
|
|
1983
|
-
{
|
|
1984
|
-
"kind": "method",
|
|
1985
|
-
"name": "showError",
|
|
1986
|
-
"privacy": "protected",
|
|
1987
|
-
"parameters": [
|
|
1988
|
-
{
|
|
1989
|
-
"name": "title",
|
|
1990
|
-
"type": {
|
|
1991
|
-
"text": "string"
|
|
1992
|
-
},
|
|
1993
|
-
"description": "The error title"
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
"name": "message",
|
|
1997
|
-
"type": {
|
|
1998
|
-
"text": "string"
|
|
1999
|
-
},
|
|
2000
|
-
"description": "The error message"
|
|
2001
|
-
}
|
|
2002
|
-
],
|
|
2003
|
-
"description": "Shows an error notification using the unified error handling system"
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
"kind": "method",
|
|
2007
|
-
"name": "onFileSelected",
|
|
2008
|
-
"privacy": "protected",
|
|
2009
|
-
"return": {
|
|
2010
|
-
"type": {
|
|
2011
|
-
"text": "void"
|
|
2012
|
-
}
|
|
2013
|
-
},
|
|
2014
|
-
"parameters": [
|
|
2015
|
-
{
|
|
2016
|
-
"name": "files",
|
|
2017
|
-
"type": {
|
|
2018
|
-
"text": "File[]"
|
|
2019
|
-
},
|
|
2020
|
-
"description": "The selected file"
|
|
2021
|
-
}
|
|
2022
|
-
],
|
|
2023
|
-
"description": "Abstract method called when a file is selected"
|
|
2024
|
-
},
|
|
2025
|
-
{
|
|
2026
|
-
"kind": "method",
|
|
2027
|
-
"name": "onFileCleared",
|
|
2028
|
-
"privacy": "protected",
|
|
2029
|
-
"return": {
|
|
2030
|
-
"type": {
|
|
2031
|
-
"text": "void"
|
|
2032
|
-
}
|
|
2033
|
-
},
|
|
2034
|
-
"description": "Abstract method called when file selection is cleared"
|
|
2035
|
-
},
|
|
2036
|
-
{
|
|
2037
|
-
"kind": "field",
|
|
2038
|
-
"name": "_presentation",
|
|
2039
|
-
"type": {
|
|
2040
|
-
"text": "ComponentPresentation | null | undefined"
|
|
2041
|
-
},
|
|
2042
|
-
"privacy": "private",
|
|
2043
|
-
"default": "void 0",
|
|
2044
|
-
"inheritedFrom": {
|
|
2045
|
-
"name": "FoundationElement",
|
|
2046
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2047
|
-
}
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"kind": "field",
|
|
2051
|
-
"name": "$presentation",
|
|
2052
|
-
"type": {
|
|
2053
|
-
"text": "ComponentPresentation | null"
|
|
2054
|
-
},
|
|
2055
|
-
"privacy": "public",
|
|
2056
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
2057
|
-
"inheritedFrom": {
|
|
2058
|
-
"name": "FoundationElement",
|
|
2059
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2060
|
-
}
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
"kind": "field",
|
|
2064
|
-
"name": "template",
|
|
2065
|
-
"type": {
|
|
2066
|
-
"text": "ElementViewTemplate | void | null"
|
|
2067
|
-
},
|
|
2068
|
-
"privacy": "public",
|
|
2069
|
-
"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.",
|
|
2070
|
-
"inheritedFrom": {
|
|
2071
|
-
"name": "FoundationElement",
|
|
2072
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2073
|
-
}
|
|
2074
|
-
},
|
|
2075
|
-
{
|
|
2076
|
-
"kind": "method",
|
|
2077
|
-
"name": "templateChanged",
|
|
2078
|
-
"privacy": "protected",
|
|
2079
|
-
"return": {
|
|
2080
|
-
"type": {
|
|
2081
|
-
"text": "void"
|
|
2082
|
-
}
|
|
2083
|
-
},
|
|
2084
|
-
"inheritedFrom": {
|
|
2085
|
-
"name": "FoundationElement",
|
|
2086
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2087
|
-
}
|
|
2088
|
-
},
|
|
2089
|
-
{
|
|
2090
|
-
"kind": "field",
|
|
2091
|
-
"name": "styles",
|
|
2092
|
-
"type": {
|
|
2093
|
-
"text": "ElementStyles | void | null"
|
|
2094
|
-
},
|
|
2095
|
-
"privacy": "public",
|
|
2096
|
-
"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.",
|
|
2097
|
-
"inheritedFrom": {
|
|
2098
|
-
"name": "FoundationElement",
|
|
2099
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2100
|
-
}
|
|
2101
|
-
},
|
|
2102
|
-
{
|
|
2103
|
-
"kind": "method",
|
|
2104
|
-
"name": "stylesChanged",
|
|
2105
|
-
"privacy": "protected",
|
|
2106
|
-
"return": {
|
|
2107
|
-
"type": {
|
|
2108
|
-
"text": "void"
|
|
2109
|
-
}
|
|
2110
|
-
},
|
|
2111
|
-
"inheritedFrom": {
|
|
2112
|
-
"name": "FoundationElement",
|
|
2113
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2114
|
-
}
|
|
2115
|
-
},
|
|
2116
|
-
{
|
|
2117
|
-
"kind": "method",
|
|
2118
|
-
"name": "compose",
|
|
2119
|
-
"privacy": "public",
|
|
2120
|
-
"static": true,
|
|
2121
|
-
"return": {
|
|
2122
|
-
"type": {
|
|
2123
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
2124
|
-
}
|
|
2125
|
-
},
|
|
2126
|
-
"parameters": [
|
|
2127
|
-
{
|
|
2128
|
-
"name": "this",
|
|
2129
|
-
"type": {
|
|
2130
|
-
"text": "K"
|
|
2131
|
-
}
|
|
2132
|
-
},
|
|
2133
|
-
{
|
|
2134
|
-
"name": "elementDefinition",
|
|
2135
|
-
"type": {
|
|
2136
|
-
"text": "T"
|
|
2137
|
-
},
|
|
2138
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
2139
|
-
}
|
|
2140
|
-
],
|
|
2141
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
2142
|
-
"inheritedFrom": {
|
|
2143
|
-
"name": "FoundationElement",
|
|
2144
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2145
|
-
}
|
|
2146
|
-
}
|
|
2147
|
-
],
|
|
2148
|
-
"attributes": [
|
|
2149
|
-
{
|
|
2150
|
-
"name": "label",
|
|
2329
|
+
"name": "is-vertical",
|
|
2330
|
+
"type": {
|
|
2331
|
+
"text": "boolean"
|
|
2332
|
+
},
|
|
2333
|
+
"default": "false",
|
|
2334
|
+
"fieldName": "isVertical"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"name": "add-default-actions",
|
|
2338
|
+
"type": {
|
|
2339
|
+
"text": "boolean"
|
|
2340
|
+
},
|
|
2341
|
+
"default": "true",
|
|
2342
|
+
"fieldName": "addDefaultActions"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"name": "auto-close-on-action",
|
|
2346
|
+
"type": {
|
|
2347
|
+
"text": "boolean"
|
|
2348
|
+
},
|
|
2349
|
+
"default": "true",
|
|
2350
|
+
"fieldName": "autoCloseOnAction"
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
"name": "name",
|
|
2151
2354
|
"type": {
|
|
2152
2355
|
"text": "string"
|
|
2153
2356
|
},
|
|
2154
|
-
"
|
|
2357
|
+
"default": "'Actions'",
|
|
2358
|
+
"fieldName": "name"
|
|
2155
2359
|
},
|
|
2156
2360
|
{
|
|
2157
|
-
"name": "
|
|
2361
|
+
"name": "open",
|
|
2362
|
+
"type": {
|
|
2363
|
+
"text": "boolean"
|
|
2364
|
+
},
|
|
2365
|
+
"default": "false",
|
|
2366
|
+
"fieldName": "open"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"name": "buttonAppearance",
|
|
2158
2370
|
"type": {
|
|
2159
2371
|
"text": "string"
|
|
2160
2372
|
},
|
|
2161
|
-
"
|
|
2162
|
-
"fieldName": "accept"
|
|
2373
|
+
"fieldName": "buttonAppearance"
|
|
2163
2374
|
},
|
|
2164
2375
|
{
|
|
2165
|
-
"name": "
|
|
2166
|
-
"
|
|
2167
|
-
|
|
2168
|
-
"module": "src/_common/base-file-component.ts"
|
|
2376
|
+
"name": "hide-disabled",
|
|
2377
|
+
"type": {
|
|
2378
|
+
"text": "boolean"
|
|
2169
2379
|
},
|
|
2170
|
-
"
|
|
2380
|
+
"default": "false",
|
|
2381
|
+
"fieldName": "hideDisabled"
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"name": "hide-menu-single-option",
|
|
2385
|
+
"type": {
|
|
2386
|
+
"text": "boolean"
|
|
2387
|
+
},
|
|
2388
|
+
"default": "false",
|
|
2389
|
+
"fieldName": "hideMenuSingleOption"
|
|
2171
2390
|
}
|
|
2172
2391
|
],
|
|
2173
2392
|
"superclass": {
|
|
2174
2393
|
"name": "FoundationElement",
|
|
2175
2394
|
"package": "@microsoft/fast-foundation"
|
|
2176
|
-
}
|
|
2395
|
+
},
|
|
2396
|
+
"tagName": "%%prefix%%-actions-menu",
|
|
2397
|
+
"customElement": true
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"kind": "variable",
|
|
2401
|
+
"name": "foundationActionsMenu",
|
|
2402
|
+
"description": "The Foundation Actions Menu",
|
|
2403
|
+
"privacy": "public"
|
|
2177
2404
|
}
|
|
2178
2405
|
],
|
|
2179
2406
|
"exports": [
|
|
2180
2407
|
{
|
|
2181
2408
|
"kind": "js",
|
|
2182
|
-
"name": "
|
|
2409
|
+
"name": "ActionsMenu",
|
|
2183
2410
|
"declaration": {
|
|
2184
|
-
"name": "
|
|
2185
|
-
"module": "src/
|
|
2411
|
+
"name": "ActionsMenu",
|
|
2412
|
+
"module": "src/actions-menu/actions-menu.ts"
|
|
2186
2413
|
}
|
|
2187
|
-
}
|
|
2188
|
-
]
|
|
2189
|
-
},
|
|
2190
|
-
{
|
|
2191
|
-
"kind": "javascript-module",
|
|
2192
|
-
"path": "src/_common/icons.ts",
|
|
2193
|
-
"declarations": [
|
|
2194
|
-
{
|
|
2195
|
-
"kind": "function",
|
|
2196
|
-
"name": "closeIcon",
|
|
2197
|
-
"parameters": [
|
|
2198
|
-
{
|
|
2199
|
-
"name": "slot",
|
|
2200
|
-
"default": "'start'"
|
|
2201
|
-
},
|
|
2202
|
-
{
|
|
2203
|
-
"name": "fill",
|
|
2204
|
-
"default": "'#879ba6'"
|
|
2205
|
-
}
|
|
2206
|
-
]
|
|
2207
|
-
}
|
|
2208
|
-
],
|
|
2209
|
-
"exports": [
|
|
2414
|
+
},
|
|
2210
2415
|
{
|
|
2211
2416
|
"kind": "js",
|
|
2212
|
-
"name": "
|
|
2417
|
+
"name": "foundationActionsMenu",
|
|
2213
2418
|
"declaration": {
|
|
2214
|
-
"name": "
|
|
2215
|
-
"module": "src/
|
|
2419
|
+
"name": "foundationActionsMenu",
|
|
2420
|
+
"module": "src/actions-menu/actions-menu.ts"
|
|
2216
2421
|
}
|
|
2217
2422
|
}
|
|
2218
2423
|
]
|
|
2219
2424
|
},
|
|
2220
2425
|
{
|
|
2221
2426
|
"kind": "javascript-module",
|
|
2222
|
-
"path": "src/
|
|
2427
|
+
"path": "src/actions-menu/index.ts",
|
|
2223
2428
|
"declarations": [],
|
|
2224
2429
|
"exports": [
|
|
2225
2430
|
{
|
|
@@ -2227,7 +2432,7 @@
|
|
|
2227
2432
|
"name": "*",
|
|
2228
2433
|
"declaration": {
|
|
2229
2434
|
"name": "*",
|
|
2230
|
-
"package": "./
|
|
2435
|
+
"package": "./actions-menu.styles"
|
|
2231
2436
|
}
|
|
2232
2437
|
},
|
|
2233
2438
|
{
|
|
@@ -2235,7 +2440,15 @@
|
|
|
2235
2440
|
"name": "*",
|
|
2236
2441
|
"declaration": {
|
|
2237
2442
|
"name": "*",
|
|
2238
|
-
"package": "./
|
|
2443
|
+
"package": "./actions-menu.template"
|
|
2444
|
+
}
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "js",
|
|
2448
|
+
"name": "*",
|
|
2449
|
+
"declaration": {
|
|
2450
|
+
"name": "*",
|
|
2451
|
+
"package": "./actions-menu"
|
|
2239
2452
|
}
|
|
2240
2453
|
}
|
|
2241
2454
|
]
|
|
@@ -2781,37 +2994,6 @@
|
|
|
2781
2994
|
}
|
|
2782
2995
|
]
|
|
2783
2996
|
},
|
|
2784
|
-
{
|
|
2785
|
-
"kind": "javascript-module",
|
|
2786
|
-
"path": "src/_config/index.ts",
|
|
2787
|
-
"declarations": [],
|
|
2788
|
-
"exports": [
|
|
2789
|
-
{
|
|
2790
|
-
"kind": "js",
|
|
2791
|
-
"name": "*",
|
|
2792
|
-
"declaration": {
|
|
2793
|
-
"name": "*",
|
|
2794
|
-
"package": "./styles"
|
|
2795
|
-
}
|
|
2796
|
-
},
|
|
2797
|
-
{
|
|
2798
|
-
"kind": "js",
|
|
2799
|
-
"name": "*",
|
|
2800
|
-
"declaration": {
|
|
2801
|
-
"name": "*",
|
|
2802
|
-
"package": "./tokens"
|
|
2803
|
-
}
|
|
2804
|
-
},
|
|
2805
|
-
{
|
|
2806
|
-
"kind": "js",
|
|
2807
|
-
"name": "*",
|
|
2808
|
-
"declaration": {
|
|
2809
|
-
"name": "*",
|
|
2810
|
-
"package": "./values"
|
|
2811
|
-
}
|
|
2812
|
-
}
|
|
2813
|
-
]
|
|
2814
|
-
},
|
|
2815
2997
|
{
|
|
2816
2998
|
"kind": "javascript-module",
|
|
2817
2999
|
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
@@ -3251,188 +3433,6 @@
|
|
|
3251
3433
|
}
|
|
3252
3434
|
]
|
|
3253
3435
|
},
|
|
3254
|
-
{
|
|
3255
|
-
"kind": "javascript-module",
|
|
3256
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
3257
|
-
"declarations": [
|
|
3258
|
-
{
|
|
3259
|
-
"kind": "function",
|
|
3260
|
-
"name": "foundationAccordionStyles",
|
|
3261
|
-
"return": {
|
|
3262
|
-
"type": {
|
|
3263
|
-
"text": "ElementStyles"
|
|
3264
|
-
}
|
|
3265
|
-
},
|
|
3266
|
-
"parameters": [
|
|
3267
|
-
{
|
|
3268
|
-
"name": "context",
|
|
3269
|
-
"type": {
|
|
3270
|
-
"text": "ElementDefinitionContext"
|
|
3271
|
-
}
|
|
3272
|
-
},
|
|
3273
|
-
{
|
|
3274
|
-
"name": "definition",
|
|
3275
|
-
"type": {
|
|
3276
|
-
"text": "FoundationElementDefinition"
|
|
3277
|
-
}
|
|
3278
|
-
}
|
|
3279
|
-
]
|
|
3280
|
-
}
|
|
3281
|
-
],
|
|
3282
|
-
"exports": [
|
|
3283
|
-
{
|
|
3284
|
-
"kind": "js",
|
|
3285
|
-
"name": "foundationAccordionStyles",
|
|
3286
|
-
"declaration": {
|
|
3287
|
-
"name": "foundationAccordionStyles",
|
|
3288
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
3289
|
-
}
|
|
3290
|
-
}
|
|
3291
|
-
]
|
|
3292
|
-
},
|
|
3293
|
-
{
|
|
3294
|
-
"kind": "javascript-module",
|
|
3295
|
-
"path": "src/accordion/accordion.template.ts",
|
|
3296
|
-
"declarations": [
|
|
3297
|
-
{
|
|
3298
|
-
"kind": "function",
|
|
3299
|
-
"name": "foundationAccordionTemplate",
|
|
3300
|
-
"return": {
|
|
3301
|
-
"type": {
|
|
3302
|
-
"text": "ViewTemplate<Accordion>"
|
|
3303
|
-
}
|
|
3304
|
-
},
|
|
3305
|
-
"parameters": [
|
|
3306
|
-
{
|
|
3307
|
-
"name": "context",
|
|
3308
|
-
"type": {
|
|
3309
|
-
"text": "ElementDefinitionContext"
|
|
3310
|
-
}
|
|
3311
|
-
},
|
|
3312
|
-
{
|
|
3313
|
-
"name": "definition",
|
|
3314
|
-
"type": {
|
|
3315
|
-
"text": "FoundationElementDefinition"
|
|
3316
|
-
}
|
|
3317
|
-
}
|
|
3318
|
-
]
|
|
3319
|
-
}
|
|
3320
|
-
],
|
|
3321
|
-
"exports": [
|
|
3322
|
-
{
|
|
3323
|
-
"kind": "js",
|
|
3324
|
-
"name": "foundationAccordionTemplate",
|
|
3325
|
-
"declaration": {
|
|
3326
|
-
"name": "foundationAccordionTemplate",
|
|
3327
|
-
"module": "src/accordion/accordion.template.ts"
|
|
3328
|
-
}
|
|
3329
|
-
}
|
|
3330
|
-
]
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"kind": "javascript-module",
|
|
3334
|
-
"path": "src/accordion/accordion.ts",
|
|
3335
|
-
"declarations": [
|
|
3336
|
-
{
|
|
3337
|
-
"kind": "class",
|
|
3338
|
-
"description": "",
|
|
3339
|
-
"name": "Accordion",
|
|
3340
|
-
"superclass": {
|
|
3341
|
-
"name": "FASTAccordion",
|
|
3342
|
-
"package": "@microsoft/fast-foundation"
|
|
3343
|
-
},
|
|
3344
|
-
"tagName": "%%prefix%%-accordion",
|
|
3345
|
-
"customElement": true
|
|
3346
|
-
},
|
|
3347
|
-
{
|
|
3348
|
-
"kind": "variable",
|
|
3349
|
-
"name": "foundationAccordionShadowOptions",
|
|
3350
|
-
"type": {
|
|
3351
|
-
"text": "ShadowRootInit"
|
|
3352
|
-
},
|
|
3353
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"kind": "variable",
|
|
3357
|
-
"name": "defaultAccordionConfig",
|
|
3358
|
-
"type": {
|
|
3359
|
-
"text": "object"
|
|
3360
|
-
},
|
|
3361
|
-
"default": "{}"
|
|
3362
|
-
},
|
|
3363
|
-
{
|
|
3364
|
-
"kind": "variable",
|
|
3365
|
-
"name": "foundationAccordion",
|
|
3366
|
-
"description": "The Foundation Accordion",
|
|
3367
|
-
"privacy": "public"
|
|
3368
|
-
}
|
|
3369
|
-
],
|
|
3370
|
-
"exports": [
|
|
3371
|
-
{
|
|
3372
|
-
"kind": "js",
|
|
3373
|
-
"name": "Accordion",
|
|
3374
|
-
"declaration": {
|
|
3375
|
-
"name": "Accordion",
|
|
3376
|
-
"module": "src/accordion/accordion.ts"
|
|
3377
|
-
}
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
"kind": "js",
|
|
3381
|
-
"name": "foundationAccordionShadowOptions",
|
|
3382
|
-
"declaration": {
|
|
3383
|
-
"name": "foundationAccordionShadowOptions",
|
|
3384
|
-
"module": "src/accordion/accordion.ts"
|
|
3385
|
-
}
|
|
3386
|
-
},
|
|
3387
|
-
{
|
|
3388
|
-
"kind": "js",
|
|
3389
|
-
"name": "defaultAccordionConfig",
|
|
3390
|
-
"declaration": {
|
|
3391
|
-
"name": "defaultAccordionConfig",
|
|
3392
|
-
"module": "src/accordion/accordion.ts"
|
|
3393
|
-
}
|
|
3394
|
-
},
|
|
3395
|
-
{
|
|
3396
|
-
"kind": "js",
|
|
3397
|
-
"name": "foundationAccordion",
|
|
3398
|
-
"declaration": {
|
|
3399
|
-
"name": "foundationAccordion",
|
|
3400
|
-
"module": "src/accordion/accordion.ts"
|
|
3401
|
-
}
|
|
3402
|
-
}
|
|
3403
|
-
]
|
|
3404
|
-
},
|
|
3405
|
-
{
|
|
3406
|
-
"kind": "javascript-module",
|
|
3407
|
-
"path": "src/accordion/index.ts",
|
|
3408
|
-
"declarations": [],
|
|
3409
|
-
"exports": [
|
|
3410
|
-
{
|
|
3411
|
-
"kind": "js",
|
|
3412
|
-
"name": "*",
|
|
3413
|
-
"declaration": {
|
|
3414
|
-
"name": "*",
|
|
3415
|
-
"package": "./accordion.template"
|
|
3416
|
-
}
|
|
3417
|
-
},
|
|
3418
|
-
{
|
|
3419
|
-
"kind": "js",
|
|
3420
|
-
"name": "*",
|
|
3421
|
-
"declaration": {
|
|
3422
|
-
"name": "*",
|
|
3423
|
-
"package": "./accordion.styles"
|
|
3424
|
-
}
|
|
3425
|
-
},
|
|
3426
|
-
{
|
|
3427
|
-
"kind": "js",
|
|
3428
|
-
"name": "*",
|
|
3429
|
-
"declaration": {
|
|
3430
|
-
"name": "*",
|
|
3431
|
-
"package": "./accordion"
|
|
3432
|
-
}
|
|
3433
|
-
}
|
|
3434
|
-
]
|
|
3435
|
-
},
|
|
3436
3436
|
{
|
|
3437
3437
|
"kind": "javascript-module",
|
|
3438
3438
|
"path": "src/anchor/anchor.styles.ts",
|
|
@@ -5545,11 +5545,11 @@
|
|
|
5545
5545
|
},
|
|
5546
5546
|
{
|
|
5547
5547
|
"kind": "javascript-module",
|
|
5548
|
-
"path": "src/
|
|
5548
|
+
"path": "src/badge/badge.styles.ts",
|
|
5549
5549
|
"declarations": [
|
|
5550
5550
|
{
|
|
5551
5551
|
"kind": "function",
|
|
5552
|
-
"name": "
|
|
5552
|
+
"name": "foundationBadgeStyles",
|
|
5553
5553
|
"return": {
|
|
5554
5554
|
"type": {
|
|
5555
5555
|
"text": "ElementStyles"
|
|
@@ -5574,24 +5574,24 @@
|
|
|
5574
5574
|
"exports": [
|
|
5575
5575
|
{
|
|
5576
5576
|
"kind": "js",
|
|
5577
|
-
"name": "
|
|
5577
|
+
"name": "foundationBadgeStyles",
|
|
5578
5578
|
"declaration": {
|
|
5579
|
-
"name": "
|
|
5580
|
-
"module": "src/
|
|
5579
|
+
"name": "foundationBadgeStyles",
|
|
5580
|
+
"module": "src/badge/badge.styles.ts"
|
|
5581
5581
|
}
|
|
5582
5582
|
}
|
|
5583
5583
|
]
|
|
5584
5584
|
},
|
|
5585
5585
|
{
|
|
5586
5586
|
"kind": "javascript-module",
|
|
5587
|
-
"path": "src/
|
|
5587
|
+
"path": "src/badge/badge.template.ts",
|
|
5588
5588
|
"declarations": [
|
|
5589
5589
|
{
|
|
5590
5590
|
"kind": "function",
|
|
5591
|
-
"name": "
|
|
5591
|
+
"name": "foundationBadgeTemplate",
|
|
5592
5592
|
"return": {
|
|
5593
5593
|
"type": {
|
|
5594
|
-
"text": "ViewTemplate<
|
|
5594
|
+
"text": "ViewTemplate<Badge>"
|
|
5595
5595
|
}
|
|
5596
5596
|
},
|
|
5597
5597
|
"parameters": [
|
|
@@ -5608,45 +5608,32 @@
|
|
|
5608
5608
|
}
|
|
5609
5609
|
}
|
|
5610
5610
|
]
|
|
5611
|
-
},
|
|
5612
|
-
{
|
|
5613
|
-
"kind": "variable",
|
|
5614
|
-
"name": "media",
|
|
5615
|
-
"default": "html<Avatar>`\n ${when(\n (x) => x.imgSrc,\n html<Avatar>`\n <img src=\"${(x) => x.imgSrc}\" alt=\"${(x) => x.alt}\" slot=\"media\" class=\"media\" part=\"media\" />\n `,\n )}\n`"
|
|
5616
5611
|
}
|
|
5617
5612
|
],
|
|
5618
5613
|
"exports": [
|
|
5619
5614
|
{
|
|
5620
5615
|
"kind": "js",
|
|
5621
|
-
"name": "
|
|
5622
|
-
"declaration": {
|
|
5623
|
-
"name": "foundationAvatarTemplate",
|
|
5624
|
-
"module": "src/avatar/avatar.template.ts"
|
|
5625
|
-
}
|
|
5626
|
-
},
|
|
5627
|
-
{
|
|
5628
|
-
"kind": "js",
|
|
5629
|
-
"name": "media",
|
|
5616
|
+
"name": "foundationBadgeTemplate",
|
|
5630
5617
|
"declaration": {
|
|
5631
|
-
"name": "
|
|
5632
|
-
"module": "src/
|
|
5618
|
+
"name": "foundationBadgeTemplate",
|
|
5619
|
+
"module": "src/badge/badge.template.ts"
|
|
5633
5620
|
}
|
|
5634
5621
|
}
|
|
5635
5622
|
]
|
|
5636
5623
|
},
|
|
5637
5624
|
{
|
|
5638
5625
|
"kind": "javascript-module",
|
|
5639
|
-
"path": "src/
|
|
5626
|
+
"path": "src/badge/badge.ts",
|
|
5640
5627
|
"declarations": [
|
|
5641
5628
|
{
|
|
5642
5629
|
"kind": "class",
|
|
5643
5630
|
"description": "",
|
|
5644
|
-
"name": "
|
|
5631
|
+
"name": "Badge",
|
|
5645
5632
|
"superclass": {
|
|
5646
|
-
"name": "
|
|
5633
|
+
"name": "FASTBadge",
|
|
5647
5634
|
"package": "@microsoft/fast-components"
|
|
5648
5635
|
},
|
|
5649
|
-
"tagName": "%%prefix%%-
|
|
5636
|
+
"tagName": "%%prefix%%-badge",
|
|
5650
5637
|
"customElement": true,
|
|
5651
5638
|
"attributes": [
|
|
5652
5639
|
{
|
|
@@ -5654,11 +5641,11 @@
|
|
|
5654
5641
|
"type": {
|
|
5655
5642
|
"text": "string"
|
|
5656
5643
|
},
|
|
5657
|
-
"description": "Indicates the
|
|
5644
|
+
"description": "Indicates the badge should have a filled style.",
|
|
5658
5645
|
"fieldName": "fill",
|
|
5659
5646
|
"inheritedFrom": {
|
|
5660
|
-
"name": "
|
|
5661
|
-
"module": "src/
|
|
5647
|
+
"name": "Badge",
|
|
5648
|
+
"module": "src/badge/badge.ts"
|
|
5662
5649
|
}
|
|
5663
5650
|
},
|
|
5664
5651
|
{
|
|
@@ -5666,35 +5653,22 @@
|
|
|
5666
5653
|
"type": {
|
|
5667
5654
|
"text": "string"
|
|
5668
5655
|
},
|
|
5669
|
-
"description": "Indicates the
|
|
5656
|
+
"description": "Indicates the badge should have a filled style.",
|
|
5670
5657
|
"fieldName": "color",
|
|
5671
5658
|
"inheritedFrom": {
|
|
5672
|
-
"name": "
|
|
5673
|
-
"module": "src/
|
|
5674
|
-
}
|
|
5675
|
-
},
|
|
5676
|
-
{
|
|
5677
|
-
"name": "link",
|
|
5678
|
-
"type": {
|
|
5679
|
-
"text": "string"
|
|
5680
|
-
},
|
|
5681
|
-
"description": "Indicates the Avatar should have url link",
|
|
5682
|
-
"fieldName": "link",
|
|
5683
|
-
"inheritedFrom": {
|
|
5684
|
-
"name": "Avatar",
|
|
5685
|
-
"module": "src/avatar/avatar.ts"
|
|
5659
|
+
"name": "Badge",
|
|
5660
|
+
"module": "src/badge/badge.ts"
|
|
5686
5661
|
}
|
|
5687
5662
|
},
|
|
5688
5663
|
{
|
|
5689
|
-
"name": "shape",
|
|
5690
5664
|
"type": {
|
|
5691
|
-
"text": "
|
|
5665
|
+
"text": "boolean"
|
|
5692
5666
|
},
|
|
5693
|
-
"description": "Indicates the
|
|
5694
|
-
"fieldName": "
|
|
5667
|
+
"description": "Indicates the element should be circular",
|
|
5668
|
+
"fieldName": "circular",
|
|
5695
5669
|
"inheritedFrom": {
|
|
5696
|
-
"name": "
|
|
5697
|
-
"module": "src/
|
|
5670
|
+
"name": "Badge",
|
|
5671
|
+
"module": "src/badge/badge.ts"
|
|
5698
5672
|
}
|
|
5699
5673
|
}
|
|
5700
5674
|
],
|
|
@@ -5706,10 +5680,10 @@
|
|
|
5706
5680
|
"text": "string"
|
|
5707
5681
|
},
|
|
5708
5682
|
"privacy": "public",
|
|
5709
|
-
"description": "Indicates the
|
|
5683
|
+
"description": "Indicates the badge should have a filled style.",
|
|
5710
5684
|
"inheritedFrom": {
|
|
5711
|
-
"name": "
|
|
5712
|
-
"module": "src/
|
|
5685
|
+
"name": "Badge",
|
|
5686
|
+
"module": "src/badge/badge.ts"
|
|
5713
5687
|
}
|
|
5714
5688
|
},
|
|
5715
5689
|
{
|
|
@@ -5719,36 +5693,32 @@
|
|
|
5719
5693
|
"text": "string"
|
|
5720
5694
|
},
|
|
5721
5695
|
"privacy": "public",
|
|
5722
|
-
"description": "Indicates the
|
|
5696
|
+
"description": "Indicates the badge should have a filled style.",
|
|
5723
5697
|
"inheritedFrom": {
|
|
5724
|
-
"name": "
|
|
5725
|
-
"module": "src/
|
|
5698
|
+
"name": "Badge",
|
|
5699
|
+
"module": "src/badge/badge.ts"
|
|
5726
5700
|
}
|
|
5727
5701
|
},
|
|
5728
5702
|
{
|
|
5729
5703
|
"kind": "field",
|
|
5730
|
-
"name": "
|
|
5704
|
+
"name": "circular",
|
|
5731
5705
|
"type": {
|
|
5732
|
-
"text": "
|
|
5706
|
+
"text": "boolean"
|
|
5733
5707
|
},
|
|
5734
5708
|
"privacy": "public",
|
|
5735
|
-
"description": "Indicates the
|
|
5709
|
+
"description": "Indicates the element should be circular",
|
|
5736
5710
|
"inheritedFrom": {
|
|
5737
|
-
"name": "
|
|
5738
|
-
"module": "src/
|
|
5711
|
+
"name": "Badge",
|
|
5712
|
+
"module": "src/badge/badge.ts"
|
|
5739
5713
|
}
|
|
5740
5714
|
},
|
|
5741
5715
|
{
|
|
5742
5716
|
"kind": "field",
|
|
5743
|
-
"name": "
|
|
5744
|
-
"type": {
|
|
5745
|
-
"text": "AvatarShape"
|
|
5746
|
-
},
|
|
5717
|
+
"name": "generateBadgeStyle",
|
|
5747
5718
|
"privacy": "public",
|
|
5748
|
-
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
5749
5719
|
"inheritedFrom": {
|
|
5750
|
-
"name": "
|
|
5751
|
-
"module": "src/
|
|
5720
|
+
"name": "Badge",
|
|
5721
|
+
"module": "src/badge/badge.ts"
|
|
5752
5722
|
}
|
|
5753
5723
|
},
|
|
5754
5724
|
{
|
|
@@ -5866,65 +5836,65 @@
|
|
|
5866
5836
|
},
|
|
5867
5837
|
{
|
|
5868
5838
|
"kind": "variable",
|
|
5869
|
-
"name": "
|
|
5839
|
+
"name": "foundationBadgeShadowOptions",
|
|
5870
5840
|
"type": {
|
|
5871
5841
|
"text": "ShadowRootInit"
|
|
5872
5842
|
},
|
|
5873
|
-
"default": "
|
|
5843
|
+
"default": "undefined"
|
|
5874
5844
|
},
|
|
5875
5845
|
{
|
|
5876
5846
|
"kind": "variable",
|
|
5877
|
-
"name": "
|
|
5847
|
+
"name": "defaultBadgeConfig",
|
|
5878
5848
|
"type": {
|
|
5879
5849
|
"text": "object"
|
|
5880
5850
|
},
|
|
5881
|
-
"default": "{
|
|
5851
|
+
"default": "{}"
|
|
5882
5852
|
},
|
|
5883
5853
|
{
|
|
5884
5854
|
"kind": "variable",
|
|
5885
|
-
"name": "
|
|
5886
|
-
"description": "The Foundation
|
|
5855
|
+
"name": "foundationBadge",
|
|
5856
|
+
"description": "The Foundation Badge",
|
|
5887
5857
|
"privacy": "public"
|
|
5888
5858
|
}
|
|
5889
5859
|
],
|
|
5890
5860
|
"exports": [
|
|
5891
5861
|
{
|
|
5892
5862
|
"kind": "js",
|
|
5893
|
-
"name": "
|
|
5863
|
+
"name": "Badge",
|
|
5894
5864
|
"declaration": {
|
|
5895
|
-
"name": "
|
|
5896
|
-
"module": "src/
|
|
5865
|
+
"name": "Badge",
|
|
5866
|
+
"module": "src/badge/badge.ts"
|
|
5897
5867
|
}
|
|
5898
5868
|
},
|
|
5899
5869
|
{
|
|
5900
5870
|
"kind": "js",
|
|
5901
|
-
"name": "
|
|
5871
|
+
"name": "foundationBadgeShadowOptions",
|
|
5902
5872
|
"declaration": {
|
|
5903
|
-
"name": "
|
|
5904
|
-
"module": "src/
|
|
5873
|
+
"name": "foundationBadgeShadowOptions",
|
|
5874
|
+
"module": "src/badge/badge.ts"
|
|
5905
5875
|
}
|
|
5906
5876
|
},
|
|
5907
5877
|
{
|
|
5908
5878
|
"kind": "js",
|
|
5909
|
-
"name": "
|
|
5879
|
+
"name": "defaultBadgeConfig",
|
|
5910
5880
|
"declaration": {
|
|
5911
|
-
"name": "
|
|
5912
|
-
"module": "src/
|
|
5881
|
+
"name": "defaultBadgeConfig",
|
|
5882
|
+
"module": "src/badge/badge.ts"
|
|
5913
5883
|
}
|
|
5914
5884
|
},
|
|
5915
5885
|
{
|
|
5916
5886
|
"kind": "js",
|
|
5917
|
-
"name": "
|
|
5887
|
+
"name": "foundationBadge",
|
|
5918
5888
|
"declaration": {
|
|
5919
|
-
"name": "
|
|
5920
|
-
"module": "src/
|
|
5889
|
+
"name": "foundationBadge",
|
|
5890
|
+
"module": "src/badge/badge.ts"
|
|
5921
5891
|
}
|
|
5922
5892
|
}
|
|
5923
5893
|
]
|
|
5924
5894
|
},
|
|
5925
5895
|
{
|
|
5926
5896
|
"kind": "javascript-module",
|
|
5927
|
-
"path": "src/
|
|
5897
|
+
"path": "src/badge/index.ts",
|
|
5928
5898
|
"declarations": [],
|
|
5929
5899
|
"exports": [
|
|
5930
5900
|
{
|
|
@@ -5932,7 +5902,7 @@
|
|
|
5932
5902
|
"name": "*",
|
|
5933
5903
|
"declaration": {
|
|
5934
5904
|
"name": "*",
|
|
5935
|
-
"package": "./
|
|
5905
|
+
"package": "./badge.template"
|
|
5936
5906
|
}
|
|
5937
5907
|
},
|
|
5938
5908
|
{
|
|
@@ -5940,7 +5910,7 @@
|
|
|
5940
5910
|
"name": "*",
|
|
5941
5911
|
"declaration": {
|
|
5942
5912
|
"name": "*",
|
|
5943
|
-
"package": "./
|
|
5913
|
+
"package": "./badge.styles"
|
|
5944
5914
|
}
|
|
5945
5915
|
},
|
|
5946
5916
|
{
|
|
@@ -5948,18 +5918,18 @@
|
|
|
5948
5918
|
"name": "*",
|
|
5949
5919
|
"declaration": {
|
|
5950
5920
|
"name": "*",
|
|
5951
|
-
"package": "./
|
|
5921
|
+
"package": "./badge"
|
|
5952
5922
|
}
|
|
5953
5923
|
}
|
|
5954
5924
|
]
|
|
5955
5925
|
},
|
|
5956
5926
|
{
|
|
5957
5927
|
"kind": "javascript-module",
|
|
5958
|
-
"path": "src/
|
|
5928
|
+
"path": "src/avatar/avatar.styles.ts",
|
|
5959
5929
|
"declarations": [
|
|
5960
5930
|
{
|
|
5961
5931
|
"kind": "function",
|
|
5962
|
-
"name": "
|
|
5932
|
+
"name": "foundationAvatarStyles",
|
|
5963
5933
|
"return": {
|
|
5964
5934
|
"type": {
|
|
5965
5935
|
"text": "ElementStyles"
|
|
@@ -5984,24 +5954,24 @@
|
|
|
5984
5954
|
"exports": [
|
|
5985
5955
|
{
|
|
5986
5956
|
"kind": "js",
|
|
5987
|
-
"name": "
|
|
5957
|
+
"name": "foundationAvatarStyles",
|
|
5988
5958
|
"declaration": {
|
|
5989
|
-
"name": "
|
|
5990
|
-
"module": "src/
|
|
5959
|
+
"name": "foundationAvatarStyles",
|
|
5960
|
+
"module": "src/avatar/avatar.styles.ts"
|
|
5991
5961
|
}
|
|
5992
5962
|
}
|
|
5993
5963
|
]
|
|
5994
5964
|
},
|
|
5995
5965
|
{
|
|
5996
5966
|
"kind": "javascript-module",
|
|
5997
|
-
"path": "src/
|
|
5967
|
+
"path": "src/avatar/avatar.template.ts",
|
|
5998
5968
|
"declarations": [
|
|
5999
5969
|
{
|
|
6000
5970
|
"kind": "function",
|
|
6001
|
-
"name": "
|
|
5971
|
+
"name": "foundationAvatarTemplate",
|
|
6002
5972
|
"return": {
|
|
6003
5973
|
"type": {
|
|
6004
|
-
"text": "ViewTemplate<
|
|
5974
|
+
"text": "ViewTemplate<Avatar>"
|
|
6005
5975
|
}
|
|
6006
5976
|
},
|
|
6007
5977
|
"parameters": [
|
|
@@ -6018,32 +5988,45 @@
|
|
|
6018
5988
|
}
|
|
6019
5989
|
}
|
|
6020
5990
|
]
|
|
5991
|
+
},
|
|
5992
|
+
{
|
|
5993
|
+
"kind": "variable",
|
|
5994
|
+
"name": "media",
|
|
5995
|
+
"default": "html<Avatar>`\n ${when(\n (x) => x.imgSrc,\n html<Avatar>`\n <img src=\"${(x) => x.imgSrc}\" alt=\"${(x) => x.alt}\" slot=\"media\" class=\"media\" part=\"media\" />\n `,\n )}\n`"
|
|
6021
5996
|
}
|
|
6022
5997
|
],
|
|
6023
5998
|
"exports": [
|
|
6024
5999
|
{
|
|
6025
6000
|
"kind": "js",
|
|
6026
|
-
"name": "
|
|
6001
|
+
"name": "foundationAvatarTemplate",
|
|
6027
6002
|
"declaration": {
|
|
6028
|
-
"name": "
|
|
6029
|
-
"module": "src/
|
|
6003
|
+
"name": "foundationAvatarTemplate",
|
|
6004
|
+
"module": "src/avatar/avatar.template.ts"
|
|
6005
|
+
}
|
|
6006
|
+
},
|
|
6007
|
+
{
|
|
6008
|
+
"kind": "js",
|
|
6009
|
+
"name": "media",
|
|
6010
|
+
"declaration": {
|
|
6011
|
+
"name": "media",
|
|
6012
|
+
"module": "src/avatar/avatar.template.ts"
|
|
6030
6013
|
}
|
|
6031
6014
|
}
|
|
6032
6015
|
]
|
|
6033
6016
|
},
|
|
6034
6017
|
{
|
|
6035
6018
|
"kind": "javascript-module",
|
|
6036
|
-
"path": "src/
|
|
6019
|
+
"path": "src/avatar/avatar.ts",
|
|
6037
6020
|
"declarations": [
|
|
6038
6021
|
{
|
|
6039
6022
|
"kind": "class",
|
|
6040
6023
|
"description": "",
|
|
6041
|
-
"name": "
|
|
6024
|
+
"name": "Avatar",
|
|
6042
6025
|
"superclass": {
|
|
6043
|
-
"name": "
|
|
6026
|
+
"name": "FASTAvatar",
|
|
6044
6027
|
"package": "@microsoft/fast-components"
|
|
6045
6028
|
},
|
|
6046
|
-
"tagName": "%%prefix%%-
|
|
6029
|
+
"tagName": "%%prefix%%-avatar",
|
|
6047
6030
|
"customElement": true,
|
|
6048
6031
|
"attributes": [
|
|
6049
6032
|
{
|
|
@@ -6051,11 +6034,11 @@
|
|
|
6051
6034
|
"type": {
|
|
6052
6035
|
"text": "string"
|
|
6053
6036
|
},
|
|
6054
|
-
"description": "Indicates the
|
|
6037
|
+
"description": "Indicates the Avatar should have a color fill.",
|
|
6055
6038
|
"fieldName": "fill",
|
|
6056
6039
|
"inheritedFrom": {
|
|
6057
|
-
"name": "
|
|
6058
|
-
"module": "src/
|
|
6040
|
+
"name": "Avatar",
|
|
6041
|
+
"module": "src/avatar/avatar.ts"
|
|
6059
6042
|
}
|
|
6060
6043
|
},
|
|
6061
6044
|
{
|
|
@@ -6063,22 +6046,35 @@
|
|
|
6063
6046
|
"type": {
|
|
6064
6047
|
"text": "string"
|
|
6065
6048
|
},
|
|
6066
|
-
"description": "Indicates the
|
|
6049
|
+
"description": "Indicates the Avatar should have a text color.",
|
|
6067
6050
|
"fieldName": "color",
|
|
6068
6051
|
"inheritedFrom": {
|
|
6069
|
-
"name": "
|
|
6070
|
-
"module": "src/
|
|
6052
|
+
"name": "Avatar",
|
|
6053
|
+
"module": "src/avatar/avatar.ts"
|
|
6071
6054
|
}
|
|
6072
6055
|
},
|
|
6073
6056
|
{
|
|
6057
|
+
"name": "link",
|
|
6074
6058
|
"type": {
|
|
6075
|
-
"text": "
|
|
6059
|
+
"text": "string"
|
|
6076
6060
|
},
|
|
6077
|
-
"description": "Indicates the
|
|
6078
|
-
"fieldName": "
|
|
6061
|
+
"description": "Indicates the Avatar should have url link",
|
|
6062
|
+
"fieldName": "link",
|
|
6079
6063
|
"inheritedFrom": {
|
|
6080
|
-
"name": "
|
|
6081
|
-
"module": "src/
|
|
6064
|
+
"name": "Avatar",
|
|
6065
|
+
"module": "src/avatar/avatar.ts"
|
|
6066
|
+
}
|
|
6067
|
+
},
|
|
6068
|
+
{
|
|
6069
|
+
"name": "shape",
|
|
6070
|
+
"type": {
|
|
6071
|
+
"text": "AvatarShape"
|
|
6072
|
+
},
|
|
6073
|
+
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
6074
|
+
"fieldName": "shape",
|
|
6075
|
+
"inheritedFrom": {
|
|
6076
|
+
"name": "Avatar",
|
|
6077
|
+
"module": "src/avatar/avatar.ts"
|
|
6082
6078
|
}
|
|
6083
6079
|
}
|
|
6084
6080
|
],
|
|
@@ -6090,10 +6086,10 @@
|
|
|
6090
6086
|
"text": "string"
|
|
6091
6087
|
},
|
|
6092
6088
|
"privacy": "public",
|
|
6093
|
-
"description": "Indicates the
|
|
6089
|
+
"description": "Indicates the Avatar should have a color fill.",
|
|
6094
6090
|
"inheritedFrom": {
|
|
6095
|
-
"name": "
|
|
6096
|
-
"module": "src/
|
|
6091
|
+
"name": "Avatar",
|
|
6092
|
+
"module": "src/avatar/avatar.ts"
|
|
6097
6093
|
}
|
|
6098
6094
|
},
|
|
6099
6095
|
{
|
|
@@ -6103,32 +6099,36 @@
|
|
|
6103
6099
|
"text": "string"
|
|
6104
6100
|
},
|
|
6105
6101
|
"privacy": "public",
|
|
6106
|
-
"description": "Indicates the
|
|
6102
|
+
"description": "Indicates the Avatar should have a text color.",
|
|
6107
6103
|
"inheritedFrom": {
|
|
6108
|
-
"name": "
|
|
6109
|
-
"module": "src/
|
|
6104
|
+
"name": "Avatar",
|
|
6105
|
+
"module": "src/avatar/avatar.ts"
|
|
6110
6106
|
}
|
|
6111
6107
|
},
|
|
6112
6108
|
{
|
|
6113
6109
|
"kind": "field",
|
|
6114
|
-
"name": "
|
|
6110
|
+
"name": "link",
|
|
6115
6111
|
"type": {
|
|
6116
|
-
"text": "
|
|
6112
|
+
"text": "string"
|
|
6117
6113
|
},
|
|
6118
6114
|
"privacy": "public",
|
|
6119
|
-
"description": "Indicates the
|
|
6115
|
+
"description": "Indicates the Avatar should have url link",
|
|
6120
6116
|
"inheritedFrom": {
|
|
6121
|
-
"name": "
|
|
6122
|
-
"module": "src/
|
|
6117
|
+
"name": "Avatar",
|
|
6118
|
+
"module": "src/avatar/avatar.ts"
|
|
6123
6119
|
}
|
|
6124
6120
|
},
|
|
6125
6121
|
{
|
|
6126
6122
|
"kind": "field",
|
|
6127
|
-
"name": "
|
|
6123
|
+
"name": "shape",
|
|
6124
|
+
"type": {
|
|
6125
|
+
"text": "AvatarShape"
|
|
6126
|
+
},
|
|
6128
6127
|
"privacy": "public",
|
|
6128
|
+
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
6129
6129
|
"inheritedFrom": {
|
|
6130
|
-
"name": "
|
|
6131
|
-
"module": "src/
|
|
6130
|
+
"name": "Avatar",
|
|
6131
|
+
"module": "src/avatar/avatar.ts"
|
|
6132
6132
|
}
|
|
6133
6133
|
},
|
|
6134
6134
|
{
|
|
@@ -6246,65 +6246,65 @@
|
|
|
6246
6246
|
},
|
|
6247
6247
|
{
|
|
6248
6248
|
"kind": "variable",
|
|
6249
|
-
"name": "
|
|
6249
|
+
"name": "foundationAvatarShadowOptions",
|
|
6250
6250
|
"type": {
|
|
6251
6251
|
"text": "ShadowRootInit"
|
|
6252
6252
|
},
|
|
6253
|
-
"default": "
|
|
6253
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
6254
6254
|
},
|
|
6255
6255
|
{
|
|
6256
6256
|
"kind": "variable",
|
|
6257
|
-
"name": "
|
|
6257
|
+
"name": "defaultAvatarConfig",
|
|
6258
6258
|
"type": {
|
|
6259
6259
|
"text": "object"
|
|
6260
6260
|
},
|
|
6261
|
-
"default": "{}"
|
|
6261
|
+
"default": "{\n media: mediaTemplate,\n}"
|
|
6262
6262
|
},
|
|
6263
6263
|
{
|
|
6264
6264
|
"kind": "variable",
|
|
6265
|
-
"name": "
|
|
6266
|
-
"description": "The Foundation
|
|
6265
|
+
"name": "foundationAvatar",
|
|
6266
|
+
"description": "The Foundation Avatar",
|
|
6267
6267
|
"privacy": "public"
|
|
6268
6268
|
}
|
|
6269
6269
|
],
|
|
6270
6270
|
"exports": [
|
|
6271
6271
|
{
|
|
6272
6272
|
"kind": "js",
|
|
6273
|
-
"name": "
|
|
6273
|
+
"name": "Avatar",
|
|
6274
6274
|
"declaration": {
|
|
6275
|
-
"name": "
|
|
6276
|
-
"module": "src/
|
|
6275
|
+
"name": "Avatar",
|
|
6276
|
+
"module": "src/avatar/avatar.ts"
|
|
6277
6277
|
}
|
|
6278
6278
|
},
|
|
6279
6279
|
{
|
|
6280
6280
|
"kind": "js",
|
|
6281
|
-
"name": "
|
|
6281
|
+
"name": "foundationAvatarShadowOptions",
|
|
6282
6282
|
"declaration": {
|
|
6283
|
-
"name": "
|
|
6284
|
-
"module": "src/
|
|
6283
|
+
"name": "foundationAvatarShadowOptions",
|
|
6284
|
+
"module": "src/avatar/avatar.ts"
|
|
6285
6285
|
}
|
|
6286
6286
|
},
|
|
6287
6287
|
{
|
|
6288
6288
|
"kind": "js",
|
|
6289
|
-
"name": "
|
|
6289
|
+
"name": "defaultAvatarConfig",
|
|
6290
6290
|
"declaration": {
|
|
6291
|
-
"name": "
|
|
6292
|
-
"module": "src/
|
|
6291
|
+
"name": "defaultAvatarConfig",
|
|
6292
|
+
"module": "src/avatar/avatar.ts"
|
|
6293
6293
|
}
|
|
6294
6294
|
},
|
|
6295
6295
|
{
|
|
6296
6296
|
"kind": "js",
|
|
6297
|
-
"name": "
|
|
6297
|
+
"name": "foundationAvatar",
|
|
6298
6298
|
"declaration": {
|
|
6299
|
-
"name": "
|
|
6300
|
-
"module": "src/
|
|
6299
|
+
"name": "foundationAvatar",
|
|
6300
|
+
"module": "src/avatar/avatar.ts"
|
|
6301
6301
|
}
|
|
6302
6302
|
}
|
|
6303
6303
|
]
|
|
6304
6304
|
},
|
|
6305
6305
|
{
|
|
6306
6306
|
"kind": "javascript-module",
|
|
6307
|
-
"path": "src/
|
|
6307
|
+
"path": "src/avatar/index.ts",
|
|
6308
6308
|
"declarations": [],
|
|
6309
6309
|
"exports": [
|
|
6310
6310
|
{
|
|
@@ -6312,7 +6312,7 @@
|
|
|
6312
6312
|
"name": "*",
|
|
6313
6313
|
"declaration": {
|
|
6314
6314
|
"name": "*",
|
|
6315
|
-
"package": "./
|
|
6315
|
+
"package": "./avatar.template"
|
|
6316
6316
|
}
|
|
6317
6317
|
},
|
|
6318
6318
|
{
|
|
@@ -6320,7 +6320,7 @@
|
|
|
6320
6320
|
"name": "*",
|
|
6321
6321
|
"declaration": {
|
|
6322
6322
|
"name": "*",
|
|
6323
|
-
"package": "./
|
|
6323
|
+
"package": "./avatar.styles"
|
|
6324
6324
|
}
|
|
6325
6325
|
},
|
|
6326
6326
|
{
|
|
@@ -6328,7 +6328,7 @@
|
|
|
6328
6328
|
"name": "*",
|
|
6329
6329
|
"declaration": {
|
|
6330
6330
|
"name": "*",
|
|
6331
|
-
"package": "./
|
|
6331
|
+
"package": "./avatar"
|
|
6332
6332
|
}
|
|
6333
6333
|
}
|
|
6334
6334
|
]
|
|
@@ -54304,181 +54304,6 @@
|
|
|
54304
54304
|
}
|
|
54305
54305
|
]
|
|
54306
54306
|
},
|
|
54307
|
-
{
|
|
54308
|
-
"kind": "javascript-module",
|
|
54309
|
-
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
54310
|
-
"declarations": [],
|
|
54311
|
-
"exports": []
|
|
54312
|
-
},
|
|
54313
|
-
{
|
|
54314
|
-
"kind": "javascript-module",
|
|
54315
|
-
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
54316
|
-
"declarations": [
|
|
54317
|
-
{
|
|
54318
|
-
"kind": "function",
|
|
54319
|
-
"name": "groupsToCriteria",
|
|
54320
|
-
"return": {
|
|
54321
|
-
"type": {
|
|
54322
|
-
"text": "string"
|
|
54323
|
-
}
|
|
54324
|
-
},
|
|
54325
|
-
"parameters": [
|
|
54326
|
-
{
|
|
54327
|
-
"name": "groups",
|
|
54328
|
-
"type": {
|
|
54329
|
-
"text": "CriteriaGroup[]"
|
|
54330
|
-
}
|
|
54331
|
-
}
|
|
54332
|
-
],
|
|
54333
|
-
"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."
|
|
54334
|
-
},
|
|
54335
|
-
{
|
|
54336
|
-
"kind": "variable",
|
|
54337
|
-
"name": "STRING_OPERATORS",
|
|
54338
|
-
"type": {
|
|
54339
|
-
"text": "CriteriaOperator[]"
|
|
54340
|
-
},
|
|
54341
|
-
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
54342
|
-
},
|
|
54343
|
-
{
|
|
54344
|
-
"kind": "variable",
|
|
54345
|
-
"name": "NUMERIC_OPERATORS",
|
|
54346
|
-
"type": {
|
|
54347
|
-
"text": "CriteriaOperator[]"
|
|
54348
|
-
},
|
|
54349
|
-
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
54350
|
-
},
|
|
54351
|
-
{
|
|
54352
|
-
"kind": "variable",
|
|
54353
|
-
"name": "DATE_OPERATORS",
|
|
54354
|
-
"type": {
|
|
54355
|
-
"text": "CriteriaOperator[]"
|
|
54356
|
-
},
|
|
54357
|
-
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
54358
|
-
},
|
|
54359
|
-
{
|
|
54360
|
-
"kind": "variable",
|
|
54361
|
-
"name": "DATETIME_OPERATORS",
|
|
54362
|
-
"type": {
|
|
54363
|
-
"text": "CriteriaOperator[]"
|
|
54364
|
-
},
|
|
54365
|
-
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
54366
|
-
}
|
|
54367
|
-
],
|
|
54368
|
-
"exports": [
|
|
54369
|
-
{
|
|
54370
|
-
"kind": "js",
|
|
54371
|
-
"name": "groupsToCriteria",
|
|
54372
|
-
"declaration": {
|
|
54373
|
-
"name": "groupsToCriteria",
|
|
54374
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54375
|
-
}
|
|
54376
|
-
},
|
|
54377
|
-
{
|
|
54378
|
-
"kind": "js",
|
|
54379
|
-
"name": "STRING_OPERATORS",
|
|
54380
|
-
"declaration": {
|
|
54381
|
-
"name": "STRING_OPERATORS",
|
|
54382
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54383
|
-
}
|
|
54384
|
-
},
|
|
54385
|
-
{
|
|
54386
|
-
"kind": "js",
|
|
54387
|
-
"name": "NUMERIC_OPERATORS",
|
|
54388
|
-
"declaration": {
|
|
54389
|
-
"name": "NUMERIC_OPERATORS",
|
|
54390
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54391
|
-
}
|
|
54392
|
-
},
|
|
54393
|
-
{
|
|
54394
|
-
"kind": "js",
|
|
54395
|
-
"name": "DATE_OPERATORS",
|
|
54396
|
-
"declaration": {
|
|
54397
|
-
"name": "DATE_OPERATORS",
|
|
54398
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54399
|
-
}
|
|
54400
|
-
},
|
|
54401
|
-
{
|
|
54402
|
-
"kind": "js",
|
|
54403
|
-
"name": "DATETIME_OPERATORS",
|
|
54404
|
-
"declaration": {
|
|
54405
|
-
"name": "DATETIME_OPERATORS",
|
|
54406
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54407
|
-
}
|
|
54408
|
-
}
|
|
54409
|
-
]
|
|
54410
|
-
},
|
|
54411
|
-
{
|
|
54412
|
-
"kind": "javascript-module",
|
|
54413
|
-
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
54414
|
-
"declarations": [
|
|
54415
|
-
{
|
|
54416
|
-
"kind": "function",
|
|
54417
|
-
"name": "validateClauses",
|
|
54418
|
-
"return": {
|
|
54419
|
-
"type": {
|
|
54420
|
-
"text": "ValidationResult"
|
|
54421
|
-
}
|
|
54422
|
-
},
|
|
54423
|
-
"parameters": [
|
|
54424
|
-
{
|
|
54425
|
-
"name": "clauses",
|
|
54426
|
-
"type": {
|
|
54427
|
-
"text": "CriteriaClause[]"
|
|
54428
|
-
}
|
|
54429
|
-
},
|
|
54430
|
-
{
|
|
54431
|
-
"name": "fieldMetadata",
|
|
54432
|
-
"type": {
|
|
54433
|
-
"text": "MetadataDetail[] | string[]"
|
|
54434
|
-
}
|
|
54435
|
-
}
|
|
54436
|
-
]
|
|
54437
|
-
},
|
|
54438
|
-
{
|
|
54439
|
-
"kind": "function",
|
|
54440
|
-
"name": "validateGroups",
|
|
54441
|
-
"return": {
|
|
54442
|
-
"type": {
|
|
54443
|
-
"text": "GroupsValidationResult"
|
|
54444
|
-
}
|
|
54445
|
-
},
|
|
54446
|
-
"parameters": [
|
|
54447
|
-
{
|
|
54448
|
-
"name": "groups",
|
|
54449
|
-
"type": {
|
|
54450
|
-
"text": "CriteriaGroup[]"
|
|
54451
|
-
}
|
|
54452
|
-
},
|
|
54453
|
-
{
|
|
54454
|
-
"name": "fieldMetadata",
|
|
54455
|
-
"type": {
|
|
54456
|
-
"text": "MetadataDetail[] | string[]"
|
|
54457
|
-
}
|
|
54458
|
-
}
|
|
54459
|
-
],
|
|
54460
|
-
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
54461
|
-
}
|
|
54462
|
-
],
|
|
54463
|
-
"exports": [
|
|
54464
|
-
{
|
|
54465
|
-
"kind": "js",
|
|
54466
|
-
"name": "validateClauses",
|
|
54467
|
-
"declaration": {
|
|
54468
|
-
"name": "validateClauses",
|
|
54469
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54470
|
-
}
|
|
54471
|
-
},
|
|
54472
|
-
{
|
|
54473
|
-
"kind": "js",
|
|
54474
|
-
"name": "validateGroups",
|
|
54475
|
-
"declaration": {
|
|
54476
|
-
"name": "validateGroups",
|
|
54477
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54478
|
-
}
|
|
54479
|
-
}
|
|
54480
|
-
]
|
|
54481
|
-
},
|
|
54482
54307
|
{
|
|
54483
54308
|
"kind": "javascript-module",
|
|
54484
54309
|
"path": "src/_config/styles/colors.ts",
|
|
@@ -55851,6 +55676,181 @@
|
|
|
55851
55676
|
"declarations": [],
|
|
55852
55677
|
"exports": []
|
|
55853
55678
|
},
|
|
55679
|
+
{
|
|
55680
|
+
"kind": "javascript-module",
|
|
55681
|
+
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
55682
|
+
"declarations": [],
|
|
55683
|
+
"exports": []
|
|
55684
|
+
},
|
|
55685
|
+
{
|
|
55686
|
+
"kind": "javascript-module",
|
|
55687
|
+
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
55688
|
+
"declarations": [
|
|
55689
|
+
{
|
|
55690
|
+
"kind": "function",
|
|
55691
|
+
"name": "groupsToCriteria",
|
|
55692
|
+
"return": {
|
|
55693
|
+
"type": {
|
|
55694
|
+
"text": "string"
|
|
55695
|
+
}
|
|
55696
|
+
},
|
|
55697
|
+
"parameters": [
|
|
55698
|
+
{
|
|
55699
|
+
"name": "groups",
|
|
55700
|
+
"type": {
|
|
55701
|
+
"text": "CriteriaGroup[]"
|
|
55702
|
+
}
|
|
55703
|
+
}
|
|
55704
|
+
],
|
|
55705
|
+
"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."
|
|
55706
|
+
},
|
|
55707
|
+
{
|
|
55708
|
+
"kind": "variable",
|
|
55709
|
+
"name": "STRING_OPERATORS",
|
|
55710
|
+
"type": {
|
|
55711
|
+
"text": "CriteriaOperator[]"
|
|
55712
|
+
},
|
|
55713
|
+
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
55714
|
+
},
|
|
55715
|
+
{
|
|
55716
|
+
"kind": "variable",
|
|
55717
|
+
"name": "NUMERIC_OPERATORS",
|
|
55718
|
+
"type": {
|
|
55719
|
+
"text": "CriteriaOperator[]"
|
|
55720
|
+
},
|
|
55721
|
+
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
55722
|
+
},
|
|
55723
|
+
{
|
|
55724
|
+
"kind": "variable",
|
|
55725
|
+
"name": "DATE_OPERATORS",
|
|
55726
|
+
"type": {
|
|
55727
|
+
"text": "CriteriaOperator[]"
|
|
55728
|
+
},
|
|
55729
|
+
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
55730
|
+
},
|
|
55731
|
+
{
|
|
55732
|
+
"kind": "variable",
|
|
55733
|
+
"name": "DATETIME_OPERATORS",
|
|
55734
|
+
"type": {
|
|
55735
|
+
"text": "CriteriaOperator[]"
|
|
55736
|
+
},
|
|
55737
|
+
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
55738
|
+
}
|
|
55739
|
+
],
|
|
55740
|
+
"exports": [
|
|
55741
|
+
{
|
|
55742
|
+
"kind": "js",
|
|
55743
|
+
"name": "groupsToCriteria",
|
|
55744
|
+
"declaration": {
|
|
55745
|
+
"name": "groupsToCriteria",
|
|
55746
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55747
|
+
}
|
|
55748
|
+
},
|
|
55749
|
+
{
|
|
55750
|
+
"kind": "js",
|
|
55751
|
+
"name": "STRING_OPERATORS",
|
|
55752
|
+
"declaration": {
|
|
55753
|
+
"name": "STRING_OPERATORS",
|
|
55754
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55755
|
+
}
|
|
55756
|
+
},
|
|
55757
|
+
{
|
|
55758
|
+
"kind": "js",
|
|
55759
|
+
"name": "NUMERIC_OPERATORS",
|
|
55760
|
+
"declaration": {
|
|
55761
|
+
"name": "NUMERIC_OPERATORS",
|
|
55762
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55763
|
+
}
|
|
55764
|
+
},
|
|
55765
|
+
{
|
|
55766
|
+
"kind": "js",
|
|
55767
|
+
"name": "DATE_OPERATORS",
|
|
55768
|
+
"declaration": {
|
|
55769
|
+
"name": "DATE_OPERATORS",
|
|
55770
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55771
|
+
}
|
|
55772
|
+
},
|
|
55773
|
+
{
|
|
55774
|
+
"kind": "js",
|
|
55775
|
+
"name": "DATETIME_OPERATORS",
|
|
55776
|
+
"declaration": {
|
|
55777
|
+
"name": "DATETIME_OPERATORS",
|
|
55778
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55779
|
+
}
|
|
55780
|
+
}
|
|
55781
|
+
]
|
|
55782
|
+
},
|
|
55783
|
+
{
|
|
55784
|
+
"kind": "javascript-module",
|
|
55785
|
+
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
55786
|
+
"declarations": [
|
|
55787
|
+
{
|
|
55788
|
+
"kind": "function",
|
|
55789
|
+
"name": "validateClauses",
|
|
55790
|
+
"return": {
|
|
55791
|
+
"type": {
|
|
55792
|
+
"text": "ValidationResult"
|
|
55793
|
+
}
|
|
55794
|
+
},
|
|
55795
|
+
"parameters": [
|
|
55796
|
+
{
|
|
55797
|
+
"name": "clauses",
|
|
55798
|
+
"type": {
|
|
55799
|
+
"text": "CriteriaClause[]"
|
|
55800
|
+
}
|
|
55801
|
+
},
|
|
55802
|
+
{
|
|
55803
|
+
"name": "fieldMetadata",
|
|
55804
|
+
"type": {
|
|
55805
|
+
"text": "MetadataDetail[] | string[]"
|
|
55806
|
+
}
|
|
55807
|
+
}
|
|
55808
|
+
]
|
|
55809
|
+
},
|
|
55810
|
+
{
|
|
55811
|
+
"kind": "function",
|
|
55812
|
+
"name": "validateGroups",
|
|
55813
|
+
"return": {
|
|
55814
|
+
"type": {
|
|
55815
|
+
"text": "GroupsValidationResult"
|
|
55816
|
+
}
|
|
55817
|
+
},
|
|
55818
|
+
"parameters": [
|
|
55819
|
+
{
|
|
55820
|
+
"name": "groups",
|
|
55821
|
+
"type": {
|
|
55822
|
+
"text": "CriteriaGroup[]"
|
|
55823
|
+
}
|
|
55824
|
+
},
|
|
55825
|
+
{
|
|
55826
|
+
"name": "fieldMetadata",
|
|
55827
|
+
"type": {
|
|
55828
|
+
"text": "MetadataDetail[] | string[]"
|
|
55829
|
+
}
|
|
55830
|
+
}
|
|
55831
|
+
],
|
|
55832
|
+
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
55833
|
+
}
|
|
55834
|
+
],
|
|
55835
|
+
"exports": [
|
|
55836
|
+
{
|
|
55837
|
+
"kind": "js",
|
|
55838
|
+
"name": "validateClauses",
|
|
55839
|
+
"declaration": {
|
|
55840
|
+
"name": "validateClauses",
|
|
55841
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55842
|
+
}
|
|
55843
|
+
},
|
|
55844
|
+
{
|
|
55845
|
+
"kind": "js",
|
|
55846
|
+
"name": "validateGroups",
|
|
55847
|
+
"declaration": {
|
|
55848
|
+
"name": "validateGroups",
|
|
55849
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55850
|
+
}
|
|
55851
|
+
}
|
|
55852
|
+
]
|
|
55853
|
+
},
|
|
55854
55854
|
{
|
|
55855
55855
|
"kind": "javascript-module",
|
|
55856
55856
|
"path": "src/environment-indicator/utils/configure.ts",
|