@genesislcap/foundation-ui 14.401.4 → 14.402.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +850 -782
- package/dist/dts/status-pill/status-pill.d.ts +33 -0
- package/dist/dts/status-pill/status-pill.d.ts.map +1 -1
- package/dist/dts/status-pill/status-pill.template.d.ts.map +1 -1
- package/dist/esm/status-pill/status-pill.js +70 -3
- package/dist/esm/status-pill/status-pill.template.js +28 -26
- package/package.json +19 -19
|
@@ -924,400 +924,6 @@
|
|
|
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/_config/index.ts",
|
|
1293
|
-
"declarations": [],
|
|
1294
|
-
"exports": [
|
|
1295
|
-
{
|
|
1296
|
-
"kind": "js",
|
|
1297
|
-
"name": "*",
|
|
1298
|
-
"declaration": {
|
|
1299
|
-
"name": "*",
|
|
1300
|
-
"package": "./styles"
|
|
1301
|
-
}
|
|
1302
|
-
},
|
|
1303
|
-
{
|
|
1304
|
-
"kind": "js",
|
|
1305
|
-
"name": "*",
|
|
1306
|
-
"declaration": {
|
|
1307
|
-
"name": "*",
|
|
1308
|
-
"package": "./tokens"
|
|
1309
|
-
}
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"kind": "js",
|
|
1313
|
-
"name": "*",
|
|
1314
|
-
"declaration": {
|
|
1315
|
-
"name": "*",
|
|
1316
|
-
"package": "./values"
|
|
1317
|
-
}
|
|
1318
|
-
}
|
|
1319
|
-
]
|
|
1320
|
-
},
|
|
1321
927
|
{
|
|
1322
928
|
"kind": "javascript-module",
|
|
1323
929
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -1712,188 +1318,6 @@
|
|
|
1712
1318
|
}
|
|
1713
1319
|
]
|
|
1714
1320
|
},
|
|
1715
|
-
{
|
|
1716
|
-
"kind": "javascript-module",
|
|
1717
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
1718
|
-
"declarations": [
|
|
1719
|
-
{
|
|
1720
|
-
"kind": "function",
|
|
1721
|
-
"name": "foundationAccordionStyles",
|
|
1722
|
-
"return": {
|
|
1723
|
-
"type": {
|
|
1724
|
-
"text": "ElementStyles"
|
|
1725
|
-
}
|
|
1726
|
-
},
|
|
1727
|
-
"parameters": [
|
|
1728
|
-
{
|
|
1729
|
-
"name": "context",
|
|
1730
|
-
"type": {
|
|
1731
|
-
"text": "ElementDefinitionContext"
|
|
1732
|
-
}
|
|
1733
|
-
},
|
|
1734
|
-
{
|
|
1735
|
-
"name": "definition",
|
|
1736
|
-
"type": {
|
|
1737
|
-
"text": "FoundationElementDefinition"
|
|
1738
|
-
}
|
|
1739
|
-
}
|
|
1740
|
-
]
|
|
1741
|
-
}
|
|
1742
|
-
],
|
|
1743
|
-
"exports": [
|
|
1744
|
-
{
|
|
1745
|
-
"kind": "js",
|
|
1746
|
-
"name": "foundationAccordionStyles",
|
|
1747
|
-
"declaration": {
|
|
1748
|
-
"name": "foundationAccordionStyles",
|
|
1749
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
1750
|
-
}
|
|
1751
|
-
}
|
|
1752
|
-
]
|
|
1753
|
-
},
|
|
1754
|
-
{
|
|
1755
|
-
"kind": "javascript-module",
|
|
1756
|
-
"path": "src/accordion/accordion.template.ts",
|
|
1757
|
-
"declarations": [
|
|
1758
|
-
{
|
|
1759
|
-
"kind": "function",
|
|
1760
|
-
"name": "foundationAccordionTemplate",
|
|
1761
|
-
"return": {
|
|
1762
|
-
"type": {
|
|
1763
|
-
"text": "ViewTemplate<Accordion>"
|
|
1764
|
-
}
|
|
1765
|
-
},
|
|
1766
|
-
"parameters": [
|
|
1767
|
-
{
|
|
1768
|
-
"name": "context",
|
|
1769
|
-
"type": {
|
|
1770
|
-
"text": "ElementDefinitionContext"
|
|
1771
|
-
}
|
|
1772
|
-
},
|
|
1773
|
-
{
|
|
1774
|
-
"name": "definition",
|
|
1775
|
-
"type": {
|
|
1776
|
-
"text": "FoundationElementDefinition"
|
|
1777
|
-
}
|
|
1778
|
-
}
|
|
1779
|
-
]
|
|
1780
|
-
}
|
|
1781
|
-
],
|
|
1782
|
-
"exports": [
|
|
1783
|
-
{
|
|
1784
|
-
"kind": "js",
|
|
1785
|
-
"name": "foundationAccordionTemplate",
|
|
1786
|
-
"declaration": {
|
|
1787
|
-
"name": "foundationAccordionTemplate",
|
|
1788
|
-
"module": "src/accordion/accordion.template.ts"
|
|
1789
|
-
}
|
|
1790
|
-
}
|
|
1791
|
-
]
|
|
1792
|
-
},
|
|
1793
|
-
{
|
|
1794
|
-
"kind": "javascript-module",
|
|
1795
|
-
"path": "src/accordion/accordion.ts",
|
|
1796
|
-
"declarations": [
|
|
1797
|
-
{
|
|
1798
|
-
"kind": "class",
|
|
1799
|
-
"description": "",
|
|
1800
|
-
"name": "Accordion",
|
|
1801
|
-
"superclass": {
|
|
1802
|
-
"name": "FASTAccordion",
|
|
1803
|
-
"package": "@microsoft/fast-foundation"
|
|
1804
|
-
},
|
|
1805
|
-
"tagName": "%%prefix%%-accordion",
|
|
1806
|
-
"customElement": true
|
|
1807
|
-
},
|
|
1808
|
-
{
|
|
1809
|
-
"kind": "variable",
|
|
1810
|
-
"name": "foundationAccordionShadowOptions",
|
|
1811
|
-
"type": {
|
|
1812
|
-
"text": "ShadowRootInit"
|
|
1813
|
-
},
|
|
1814
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
1815
|
-
},
|
|
1816
|
-
{
|
|
1817
|
-
"kind": "variable",
|
|
1818
|
-
"name": "defaultAccordionConfig",
|
|
1819
|
-
"type": {
|
|
1820
|
-
"text": "object"
|
|
1821
|
-
},
|
|
1822
|
-
"default": "{}"
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
"kind": "variable",
|
|
1826
|
-
"name": "foundationAccordion",
|
|
1827
|
-
"description": "The Foundation Accordion",
|
|
1828
|
-
"privacy": "public"
|
|
1829
|
-
}
|
|
1830
|
-
],
|
|
1831
|
-
"exports": [
|
|
1832
|
-
{
|
|
1833
|
-
"kind": "js",
|
|
1834
|
-
"name": "Accordion",
|
|
1835
|
-
"declaration": {
|
|
1836
|
-
"name": "Accordion",
|
|
1837
|
-
"module": "src/accordion/accordion.ts"
|
|
1838
|
-
}
|
|
1839
|
-
},
|
|
1840
|
-
{
|
|
1841
|
-
"kind": "js",
|
|
1842
|
-
"name": "foundationAccordionShadowOptions",
|
|
1843
|
-
"declaration": {
|
|
1844
|
-
"name": "foundationAccordionShadowOptions",
|
|
1845
|
-
"module": "src/accordion/accordion.ts"
|
|
1846
|
-
}
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
"kind": "js",
|
|
1850
|
-
"name": "defaultAccordionConfig",
|
|
1851
|
-
"declaration": {
|
|
1852
|
-
"name": "defaultAccordionConfig",
|
|
1853
|
-
"module": "src/accordion/accordion.ts"
|
|
1854
|
-
}
|
|
1855
|
-
},
|
|
1856
|
-
{
|
|
1857
|
-
"kind": "js",
|
|
1858
|
-
"name": "foundationAccordion",
|
|
1859
|
-
"declaration": {
|
|
1860
|
-
"name": "foundationAccordion",
|
|
1861
|
-
"module": "src/accordion/accordion.ts"
|
|
1862
|
-
}
|
|
1863
|
-
}
|
|
1864
|
-
]
|
|
1865
|
-
},
|
|
1866
|
-
{
|
|
1867
|
-
"kind": "javascript-module",
|
|
1868
|
-
"path": "src/accordion/index.ts",
|
|
1869
|
-
"declarations": [],
|
|
1870
|
-
"exports": [
|
|
1871
|
-
{
|
|
1872
|
-
"kind": "js",
|
|
1873
|
-
"name": "*",
|
|
1874
|
-
"declaration": {
|
|
1875
|
-
"name": "*",
|
|
1876
|
-
"package": "./accordion.template"
|
|
1877
|
-
}
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
"kind": "js",
|
|
1881
|
-
"name": "*",
|
|
1882
|
-
"declaration": {
|
|
1883
|
-
"name": "*",
|
|
1884
|
-
"package": "./accordion.styles"
|
|
1885
|
-
}
|
|
1886
|
-
},
|
|
1887
|
-
{
|
|
1888
|
-
"kind": "js",
|
|
1889
|
-
"name": "*",
|
|
1890
|
-
"declaration": {
|
|
1891
|
-
"name": "*",
|
|
1892
|
-
"package": "./accordion"
|
|
1893
|
-
}
|
|
1894
|
-
}
|
|
1895
|
-
]
|
|
1896
|
-
},
|
|
1897
1321
|
{
|
|
1898
1322
|
"kind": "javascript-module",
|
|
1899
1323
|
"path": "src/actions-menu/actions-menu.styles.ts",
|
|
@@ -3350,85 +2774,661 @@
|
|
|
3350
2774
|
"superclass": {
|
|
3351
2775
|
"name": "FoundationElement",
|
|
3352
2776
|
"package": "@microsoft/fast-foundation"
|
|
3353
|
-
},
|
|
3354
|
-
"tagName": "%%prefix%%-ai-indicator",
|
|
3355
|
-
"customElement": true
|
|
3356
|
-
},
|
|
2777
|
+
},
|
|
2778
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
2779
|
+
"customElement": true
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"kind": "variable",
|
|
2783
|
+
"name": "foundationAiIndicator"
|
|
2784
|
+
}
|
|
2785
|
+
],
|
|
2786
|
+
"exports": [
|
|
2787
|
+
{
|
|
2788
|
+
"kind": "js",
|
|
2789
|
+
"name": "AiIndicator",
|
|
2790
|
+
"declaration": {
|
|
2791
|
+
"name": "AiIndicator",
|
|
2792
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"kind": "js",
|
|
2797
|
+
"name": "foundationAiIndicator",
|
|
2798
|
+
"declaration": {
|
|
2799
|
+
"name": "foundationAiIndicator",
|
|
2800
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
]
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"kind": "javascript-module",
|
|
2807
|
+
"path": "src/ai-indicator/index.ts",
|
|
2808
|
+
"declarations": [],
|
|
2809
|
+
"exports": [
|
|
2810
|
+
{
|
|
2811
|
+
"kind": "js",
|
|
2812
|
+
"name": "AiIndicator",
|
|
2813
|
+
"declaration": {
|
|
2814
|
+
"name": "AiIndicator",
|
|
2815
|
+
"module": "./ai-indicator"
|
|
2816
|
+
}
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"kind": "js",
|
|
2820
|
+
"name": "foundationAiIndicator",
|
|
2821
|
+
"declaration": {
|
|
2822
|
+
"name": "foundationAiIndicator",
|
|
2823
|
+
"module": "./ai-indicator"
|
|
2824
|
+
}
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"kind": "js",
|
|
2828
|
+
"name": "type",
|
|
2829
|
+
"declaration": {
|
|
2830
|
+
"name": "type",
|
|
2831
|
+
"module": "./ai-indicator"
|
|
2832
|
+
}
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"kind": "js",
|
|
2836
|
+
"name": "AIIndicatorState",
|
|
2837
|
+
"declaration": {
|
|
2838
|
+
"name": "AIIndicatorState",
|
|
2839
|
+
"module": "./ai-indicator"
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"kind": "js",
|
|
2844
|
+
"name": "foundationAiIndicatorTemplate",
|
|
2845
|
+
"declaration": {
|
|
2846
|
+
"name": "foundationAiIndicatorTemplate",
|
|
2847
|
+
"module": "./ai-indicator.template"
|
|
2848
|
+
}
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"kind": "js",
|
|
2852
|
+
"name": "foundationAiIndicatorStyles",
|
|
2853
|
+
"declaration": {
|
|
2854
|
+
"name": "foundationAiIndicatorStyles",
|
|
2855
|
+
"module": "./ai-indicator.styles"
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
]
|
|
2859
|
+
},
|
|
2860
|
+
{
|
|
2861
|
+
"kind": "javascript-module",
|
|
2862
|
+
"path": "src/_common/base-file-component.ts",
|
|
2863
|
+
"declarations": [
|
|
2864
|
+
{
|
|
2865
|
+
"kind": "class",
|
|
2866
|
+
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
2867
|
+
"name": "BaseFileComponent",
|
|
2868
|
+
"members": [
|
|
2869
|
+
{
|
|
2870
|
+
"kind": "field",
|
|
2871
|
+
"name": "fileInput",
|
|
2872
|
+
"type": {
|
|
2873
|
+
"text": "HTMLInputElement"
|
|
2874
|
+
},
|
|
2875
|
+
"privacy": "public"
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"kind": "field",
|
|
2879
|
+
"name": "selectedFile",
|
|
2880
|
+
"type": {
|
|
2881
|
+
"text": "File | null"
|
|
2882
|
+
},
|
|
2883
|
+
"privacy": "protected",
|
|
2884
|
+
"default": "null"
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
"kind": "field",
|
|
2888
|
+
"name": "label",
|
|
2889
|
+
"type": {
|
|
2890
|
+
"text": "string"
|
|
2891
|
+
}
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
"kind": "field",
|
|
2895
|
+
"name": "accept",
|
|
2896
|
+
"type": {
|
|
2897
|
+
"text": "string"
|
|
2898
|
+
},
|
|
2899
|
+
"default": "''"
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"kind": "field",
|
|
2903
|
+
"name": "fileSizeLimitBytes",
|
|
2904
|
+
"default": "10_485_760",
|
|
2905
|
+
"type": {
|
|
2906
|
+
"text": "number"
|
|
2907
|
+
}
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"kind": "field",
|
|
2911
|
+
"name": "fileName",
|
|
2912
|
+
"type": {
|
|
2913
|
+
"text": "string"
|
|
2914
|
+
},
|
|
2915
|
+
"default": "''"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
"kind": "field",
|
|
2919
|
+
"name": "isProcessing",
|
|
2920
|
+
"type": {
|
|
2921
|
+
"text": "boolean"
|
|
2922
|
+
},
|
|
2923
|
+
"default": "false"
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"kind": "method",
|
|
2927
|
+
"name": "handleClick",
|
|
2928
|
+
"privacy": "public",
|
|
2929
|
+
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
"kind": "method",
|
|
2933
|
+
"name": "onInputChange",
|
|
2934
|
+
"privacy": "public",
|
|
2935
|
+
"parameters": [
|
|
2936
|
+
{
|
|
2937
|
+
"name": "e",
|
|
2938
|
+
"type": {
|
|
2939
|
+
"text": "Event"
|
|
2940
|
+
},
|
|
2941
|
+
"description": "The change event from the file input"
|
|
2942
|
+
}
|
|
2943
|
+
],
|
|
2944
|
+
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
"kind": "method",
|
|
2948
|
+
"name": "clearSelection",
|
|
2949
|
+
"privacy": "public",
|
|
2950
|
+
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
"kind": "method",
|
|
2954
|
+
"name": "getSelectedFile",
|
|
2955
|
+
"privacy": "public",
|
|
2956
|
+
"description": "Gets the currently selected file object",
|
|
2957
|
+
"return": {
|
|
2958
|
+
"type": {
|
|
2959
|
+
"text": ""
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
"kind": "method",
|
|
2965
|
+
"name": "showError",
|
|
2966
|
+
"privacy": "protected",
|
|
2967
|
+
"parameters": [
|
|
2968
|
+
{
|
|
2969
|
+
"name": "title",
|
|
2970
|
+
"type": {
|
|
2971
|
+
"text": "string"
|
|
2972
|
+
},
|
|
2973
|
+
"description": "The error title"
|
|
2974
|
+
},
|
|
2975
|
+
{
|
|
2976
|
+
"name": "message",
|
|
2977
|
+
"type": {
|
|
2978
|
+
"text": "string"
|
|
2979
|
+
},
|
|
2980
|
+
"description": "The error message"
|
|
2981
|
+
}
|
|
2982
|
+
],
|
|
2983
|
+
"description": "Shows an error notification using the unified error handling system"
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"kind": "method",
|
|
2987
|
+
"name": "onFileSelected",
|
|
2988
|
+
"privacy": "protected",
|
|
2989
|
+
"return": {
|
|
2990
|
+
"type": {
|
|
2991
|
+
"text": "void"
|
|
2992
|
+
}
|
|
2993
|
+
},
|
|
2994
|
+
"parameters": [
|
|
2995
|
+
{
|
|
2996
|
+
"name": "files",
|
|
2997
|
+
"type": {
|
|
2998
|
+
"text": "File[]"
|
|
2999
|
+
},
|
|
3000
|
+
"description": "The selected file"
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
"description": "Abstract method called when a file is selected"
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"kind": "method",
|
|
3007
|
+
"name": "onFileCleared",
|
|
3008
|
+
"privacy": "protected",
|
|
3009
|
+
"return": {
|
|
3010
|
+
"type": {
|
|
3011
|
+
"text": "void"
|
|
3012
|
+
}
|
|
3013
|
+
},
|
|
3014
|
+
"description": "Abstract method called when file selection is cleared"
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
"kind": "field",
|
|
3018
|
+
"name": "_presentation",
|
|
3019
|
+
"type": {
|
|
3020
|
+
"text": "ComponentPresentation | null | undefined"
|
|
3021
|
+
},
|
|
3022
|
+
"privacy": "private",
|
|
3023
|
+
"default": "void 0",
|
|
3024
|
+
"inheritedFrom": {
|
|
3025
|
+
"name": "FoundationElement",
|
|
3026
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"kind": "field",
|
|
3031
|
+
"name": "$presentation",
|
|
3032
|
+
"type": {
|
|
3033
|
+
"text": "ComponentPresentation | null"
|
|
3034
|
+
},
|
|
3035
|
+
"privacy": "public",
|
|
3036
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
3037
|
+
"inheritedFrom": {
|
|
3038
|
+
"name": "FoundationElement",
|
|
3039
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3040
|
+
}
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"kind": "field",
|
|
3044
|
+
"name": "template",
|
|
3045
|
+
"type": {
|
|
3046
|
+
"text": "ElementViewTemplate | void | null"
|
|
3047
|
+
},
|
|
3048
|
+
"privacy": "public",
|
|
3049
|
+
"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.",
|
|
3050
|
+
"inheritedFrom": {
|
|
3051
|
+
"name": "FoundationElement",
|
|
3052
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3053
|
+
}
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
"kind": "method",
|
|
3057
|
+
"name": "templateChanged",
|
|
3058
|
+
"privacy": "protected",
|
|
3059
|
+
"return": {
|
|
3060
|
+
"type": {
|
|
3061
|
+
"text": "void"
|
|
3062
|
+
}
|
|
3063
|
+
},
|
|
3064
|
+
"inheritedFrom": {
|
|
3065
|
+
"name": "FoundationElement",
|
|
3066
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3067
|
+
}
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"kind": "field",
|
|
3071
|
+
"name": "styles",
|
|
3072
|
+
"type": {
|
|
3073
|
+
"text": "ElementStyles | void | null"
|
|
3074
|
+
},
|
|
3075
|
+
"privacy": "public",
|
|
3076
|
+
"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.",
|
|
3077
|
+
"inheritedFrom": {
|
|
3078
|
+
"name": "FoundationElement",
|
|
3079
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3080
|
+
}
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"kind": "method",
|
|
3084
|
+
"name": "stylesChanged",
|
|
3085
|
+
"privacy": "protected",
|
|
3086
|
+
"return": {
|
|
3087
|
+
"type": {
|
|
3088
|
+
"text": "void"
|
|
3089
|
+
}
|
|
3090
|
+
},
|
|
3091
|
+
"inheritedFrom": {
|
|
3092
|
+
"name": "FoundationElement",
|
|
3093
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3094
|
+
}
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"kind": "method",
|
|
3098
|
+
"name": "compose",
|
|
3099
|
+
"privacy": "public",
|
|
3100
|
+
"static": true,
|
|
3101
|
+
"return": {
|
|
3102
|
+
"type": {
|
|
3103
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
3104
|
+
}
|
|
3105
|
+
},
|
|
3106
|
+
"parameters": [
|
|
3107
|
+
{
|
|
3108
|
+
"name": "this",
|
|
3109
|
+
"type": {
|
|
3110
|
+
"text": "K"
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3113
|
+
{
|
|
3114
|
+
"name": "elementDefinition",
|
|
3115
|
+
"type": {
|
|
3116
|
+
"text": "T"
|
|
3117
|
+
},
|
|
3118
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
3119
|
+
}
|
|
3120
|
+
],
|
|
3121
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
3122
|
+
"inheritedFrom": {
|
|
3123
|
+
"name": "FoundationElement",
|
|
3124
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
],
|
|
3128
|
+
"attributes": [
|
|
3129
|
+
{
|
|
3130
|
+
"name": "label",
|
|
3131
|
+
"type": {
|
|
3132
|
+
"text": "string"
|
|
3133
|
+
},
|
|
3134
|
+
"fieldName": "label"
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
"name": "accept",
|
|
3138
|
+
"type": {
|
|
3139
|
+
"text": "string"
|
|
3140
|
+
},
|
|
3141
|
+
"default": "''",
|
|
3142
|
+
"fieldName": "accept"
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
"name": "file-size-limit-bytes",
|
|
3146
|
+
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
3147
|
+
"resolveInitializer": {
|
|
3148
|
+
"module": "src/_common/base-file-component.ts"
|
|
3149
|
+
},
|
|
3150
|
+
"fieldName": "fileSizeLimitBytes"
|
|
3151
|
+
}
|
|
3152
|
+
],
|
|
3153
|
+
"superclass": {
|
|
3154
|
+
"name": "FoundationElement",
|
|
3155
|
+
"package": "@microsoft/fast-foundation"
|
|
3156
|
+
}
|
|
3157
|
+
}
|
|
3158
|
+
],
|
|
3159
|
+
"exports": [
|
|
3357
3160
|
{
|
|
3358
|
-
"kind": "
|
|
3359
|
-
"name": "
|
|
3161
|
+
"kind": "js",
|
|
3162
|
+
"name": "BaseFileComponent",
|
|
3163
|
+
"declaration": {
|
|
3164
|
+
"name": "BaseFileComponent",
|
|
3165
|
+
"module": "src/_common/base-file-component.ts"
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
3168
|
+
]
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"kind": "javascript-module",
|
|
3172
|
+
"path": "src/_common/icons.ts",
|
|
3173
|
+
"declarations": [
|
|
3174
|
+
{
|
|
3175
|
+
"kind": "function",
|
|
3176
|
+
"name": "closeIcon",
|
|
3177
|
+
"parameters": [
|
|
3178
|
+
{
|
|
3179
|
+
"name": "slot",
|
|
3180
|
+
"default": "'start'"
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"name": "fill",
|
|
3184
|
+
"default": "'#879ba6'"
|
|
3185
|
+
}
|
|
3186
|
+
]
|
|
3360
3187
|
}
|
|
3361
3188
|
],
|
|
3362
3189
|
"exports": [
|
|
3363
3190
|
{
|
|
3364
3191
|
"kind": "js",
|
|
3365
|
-
"name": "
|
|
3192
|
+
"name": "closeIcon",
|
|
3366
3193
|
"declaration": {
|
|
3367
|
-
"name": "
|
|
3368
|
-
"module": "src/
|
|
3194
|
+
"name": "closeIcon",
|
|
3195
|
+
"module": "src/_common/icons.ts"
|
|
3196
|
+
}
|
|
3197
|
+
}
|
|
3198
|
+
]
|
|
3199
|
+
},
|
|
3200
|
+
{
|
|
3201
|
+
"kind": "javascript-module",
|
|
3202
|
+
"path": "src/_common/index.ts",
|
|
3203
|
+
"declarations": [],
|
|
3204
|
+
"exports": [
|
|
3205
|
+
{
|
|
3206
|
+
"kind": "js",
|
|
3207
|
+
"name": "*",
|
|
3208
|
+
"declaration": {
|
|
3209
|
+
"name": "*",
|
|
3210
|
+
"package": "./base-file-component"
|
|
3369
3211
|
}
|
|
3370
3212
|
},
|
|
3371
3213
|
{
|
|
3372
3214
|
"kind": "js",
|
|
3373
|
-
"name": "
|
|
3215
|
+
"name": "*",
|
|
3374
3216
|
"declaration": {
|
|
3375
|
-
"name": "
|
|
3376
|
-
"
|
|
3217
|
+
"name": "*",
|
|
3218
|
+
"package": "./icons"
|
|
3377
3219
|
}
|
|
3378
3220
|
}
|
|
3379
3221
|
]
|
|
3380
3222
|
},
|
|
3381
3223
|
{
|
|
3382
3224
|
"kind": "javascript-module",
|
|
3383
|
-
"path": "src/
|
|
3225
|
+
"path": "src/_config/index.ts",
|
|
3384
3226
|
"declarations": [],
|
|
3385
3227
|
"exports": [
|
|
3386
3228
|
{
|
|
3387
3229
|
"kind": "js",
|
|
3388
|
-
"name": "
|
|
3230
|
+
"name": "*",
|
|
3389
3231
|
"declaration": {
|
|
3390
|
-
"name": "
|
|
3391
|
-
"
|
|
3232
|
+
"name": "*",
|
|
3233
|
+
"package": "./styles"
|
|
3392
3234
|
}
|
|
3393
3235
|
},
|
|
3394
3236
|
{
|
|
3395
3237
|
"kind": "js",
|
|
3396
|
-
"name": "
|
|
3238
|
+
"name": "*",
|
|
3397
3239
|
"declaration": {
|
|
3398
|
-
"name": "
|
|
3399
|
-
"
|
|
3240
|
+
"name": "*",
|
|
3241
|
+
"package": "./tokens"
|
|
3400
3242
|
}
|
|
3401
3243
|
},
|
|
3402
3244
|
{
|
|
3403
3245
|
"kind": "js",
|
|
3404
|
-
"name": "
|
|
3246
|
+
"name": "*",
|
|
3405
3247
|
"declaration": {
|
|
3406
|
-
"name": "
|
|
3407
|
-
"
|
|
3248
|
+
"name": "*",
|
|
3249
|
+
"package": "./values"
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
]
|
|
3253
|
+
},
|
|
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"
|
|
3408
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}"
|
|
3409
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": [
|
|
3410
3371
|
{
|
|
3411
3372
|
"kind": "js",
|
|
3412
|
-
"name": "
|
|
3373
|
+
"name": "Accordion",
|
|
3413
3374
|
"declaration": {
|
|
3414
|
-
"name": "
|
|
3415
|
-
"module": "
|
|
3375
|
+
"name": "Accordion",
|
|
3376
|
+
"module": "src/accordion/accordion.ts"
|
|
3416
3377
|
}
|
|
3417
3378
|
},
|
|
3418
3379
|
{
|
|
3419
3380
|
"kind": "js",
|
|
3420
|
-
"name": "
|
|
3381
|
+
"name": "foundationAccordionShadowOptions",
|
|
3421
3382
|
"declaration": {
|
|
3422
|
-
"name": "
|
|
3423
|
-
"module": "
|
|
3383
|
+
"name": "foundationAccordionShadowOptions",
|
|
3384
|
+
"module": "src/accordion/accordion.ts"
|
|
3424
3385
|
}
|
|
3425
3386
|
},
|
|
3426
3387
|
{
|
|
3427
3388
|
"kind": "js",
|
|
3428
|
-
"name": "
|
|
3389
|
+
"name": "defaultAccordionConfig",
|
|
3429
3390
|
"declaration": {
|
|
3430
|
-
"name": "
|
|
3431
|
-
"module": "
|
|
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
3432
|
}
|
|
3433
3433
|
}
|
|
3434
3434
|
]
|
|
@@ -45408,11 +45408,40 @@
|
|
|
45408
45408
|
"default": "'second'",
|
|
45409
45409
|
"attribute": "date-countdown-unit"
|
|
45410
45410
|
},
|
|
45411
|
+
{
|
|
45412
|
+
"kind": "field",
|
|
45413
|
+
"name": "dateCountdownVisibleAfter",
|
|
45414
|
+
"type": {
|
|
45415
|
+
"text": "number"
|
|
45416
|
+
},
|
|
45417
|
+
"attribute": "date-countdown-visible-after"
|
|
45418
|
+
},
|
|
45419
|
+
{
|
|
45420
|
+
"kind": "field",
|
|
45421
|
+
"name": "hideWhenCountdownCompleted",
|
|
45422
|
+
"type": {
|
|
45423
|
+
"text": "boolean"
|
|
45424
|
+
},
|
|
45425
|
+
"default": "false",
|
|
45426
|
+
"attribute": "hide-when-countdown-completed"
|
|
45427
|
+
},
|
|
45411
45428
|
{
|
|
45412
45429
|
"kind": "field",
|
|
45413
45430
|
"name": "dateInterval",
|
|
45414
45431
|
"privacy": "private"
|
|
45415
45432
|
},
|
|
45433
|
+
{
|
|
45434
|
+
"kind": "method",
|
|
45435
|
+
"name": "dateCountdownVisibleAfterChanged",
|
|
45436
|
+
"parameters": [
|
|
45437
|
+
{
|
|
45438
|
+
"name": "oldValue"
|
|
45439
|
+
},
|
|
45440
|
+
{
|
|
45441
|
+
"name": "newValue"
|
|
45442
|
+
}
|
|
45443
|
+
]
|
|
45444
|
+
},
|
|
45416
45445
|
{
|
|
45417
45446
|
"kind": "method",
|
|
45418
45447
|
"name": "setUpDateCountdown",
|
|
@@ -45444,6 +45473,11 @@
|
|
|
45444
45473
|
}
|
|
45445
45474
|
]
|
|
45446
45475
|
},
|
|
45476
|
+
{
|
|
45477
|
+
"kind": "method",
|
|
45478
|
+
"name": "updateVisibilityFromStartTime",
|
|
45479
|
+
"privacy": "private"
|
|
45480
|
+
},
|
|
45447
45481
|
{
|
|
45448
45482
|
"kind": "method",
|
|
45449
45483
|
"name": "clearCountdownTimer",
|
|
@@ -45645,6 +45679,23 @@
|
|
|
45645
45679
|
"fieldName": "dateCountdownUnit",
|
|
45646
45680
|
"description": "the minimum unit of time shown in the countdown. Defaults to 'seconds'"
|
|
45647
45681
|
},
|
|
45682
|
+
{
|
|
45683
|
+
"name": "date-countdown-visible-after",
|
|
45684
|
+
"type": {
|
|
45685
|
+
"text": "number"
|
|
45686
|
+
},
|
|
45687
|
+
"fieldName": "dateCountdownVisibleAfter",
|
|
45688
|
+
"description": "a timestamp (in milliseconds) that controls when the countdown (and pill) becomes visible. If present, the pill will only be shown once the current time is equal to or after this timestamp."
|
|
45689
|
+
},
|
|
45690
|
+
{
|
|
45691
|
+
"name": "hide-when-countdown-completed",
|
|
45692
|
+
"type": {
|
|
45693
|
+
"text": "boolean"
|
|
45694
|
+
},
|
|
45695
|
+
"default": "false",
|
|
45696
|
+
"fieldName": "hideWhenCountdownCompleted",
|
|
45697
|
+
"description": "if true, the status pill will be removed from the template once the countdown has expired."
|
|
45698
|
+
},
|
|
45648
45699
|
{
|
|
45649
45700
|
"name": "background-color",
|
|
45650
45701
|
"type": {
|
|
@@ -45735,6 +45786,23 @@
|
|
|
45735
45786
|
"default": "'second'",
|
|
45736
45787
|
"attribute": "date-countdown-unit",
|
|
45737
45788
|
"fieldName": "dateCountdownUnit"
|
|
45789
|
+
},
|
|
45790
|
+
{
|
|
45791
|
+
"name": "date-countdown-visible-after",
|
|
45792
|
+
"type": {
|
|
45793
|
+
"text": "number"
|
|
45794
|
+
},
|
|
45795
|
+
"attribute": "date-countdown-visible-after",
|
|
45796
|
+
"fieldName": "dateCountdownVisibleAfter"
|
|
45797
|
+
},
|
|
45798
|
+
{
|
|
45799
|
+
"name": "hide-when-countdown-completed",
|
|
45800
|
+
"type": {
|
|
45801
|
+
"text": "boolean"
|
|
45802
|
+
},
|
|
45803
|
+
"default": "false",
|
|
45804
|
+
"attribute": "hide-when-countdown-completed",
|
|
45805
|
+
"fieldName": "hideWhenCountdownCompleted"
|
|
45738
45806
|
}
|
|
45739
45807
|
],
|
|
45740
45808
|
"superclass": {
|
|
@@ -54226,6 +54294,181 @@
|
|
|
54226
54294
|
}
|
|
54227
54295
|
]
|
|
54228
54296
|
},
|
|
54297
|
+
{
|
|
54298
|
+
"kind": "javascript-module",
|
|
54299
|
+
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
54300
|
+
"declarations": [],
|
|
54301
|
+
"exports": []
|
|
54302
|
+
},
|
|
54303
|
+
{
|
|
54304
|
+
"kind": "javascript-module",
|
|
54305
|
+
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
54306
|
+
"declarations": [
|
|
54307
|
+
{
|
|
54308
|
+
"kind": "function",
|
|
54309
|
+
"name": "groupsToCriteria",
|
|
54310
|
+
"return": {
|
|
54311
|
+
"type": {
|
|
54312
|
+
"text": "string"
|
|
54313
|
+
}
|
|
54314
|
+
},
|
|
54315
|
+
"parameters": [
|
|
54316
|
+
{
|
|
54317
|
+
"name": "groups",
|
|
54318
|
+
"type": {
|
|
54319
|
+
"text": "CriteriaGroup[]"
|
|
54320
|
+
}
|
|
54321
|
+
}
|
|
54322
|
+
],
|
|
54323
|
+
"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."
|
|
54324
|
+
},
|
|
54325
|
+
{
|
|
54326
|
+
"kind": "variable",
|
|
54327
|
+
"name": "STRING_OPERATORS",
|
|
54328
|
+
"type": {
|
|
54329
|
+
"text": "CriteriaOperator[]"
|
|
54330
|
+
},
|
|
54331
|
+
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
54332
|
+
},
|
|
54333
|
+
{
|
|
54334
|
+
"kind": "variable",
|
|
54335
|
+
"name": "NUMERIC_OPERATORS",
|
|
54336
|
+
"type": {
|
|
54337
|
+
"text": "CriteriaOperator[]"
|
|
54338
|
+
},
|
|
54339
|
+
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
54340
|
+
},
|
|
54341
|
+
{
|
|
54342
|
+
"kind": "variable",
|
|
54343
|
+
"name": "DATE_OPERATORS",
|
|
54344
|
+
"type": {
|
|
54345
|
+
"text": "CriteriaOperator[]"
|
|
54346
|
+
},
|
|
54347
|
+
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
54348
|
+
},
|
|
54349
|
+
{
|
|
54350
|
+
"kind": "variable",
|
|
54351
|
+
"name": "DATETIME_OPERATORS",
|
|
54352
|
+
"type": {
|
|
54353
|
+
"text": "CriteriaOperator[]"
|
|
54354
|
+
},
|
|
54355
|
+
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
54356
|
+
}
|
|
54357
|
+
],
|
|
54358
|
+
"exports": [
|
|
54359
|
+
{
|
|
54360
|
+
"kind": "js",
|
|
54361
|
+
"name": "groupsToCriteria",
|
|
54362
|
+
"declaration": {
|
|
54363
|
+
"name": "groupsToCriteria",
|
|
54364
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54365
|
+
}
|
|
54366
|
+
},
|
|
54367
|
+
{
|
|
54368
|
+
"kind": "js",
|
|
54369
|
+
"name": "STRING_OPERATORS",
|
|
54370
|
+
"declaration": {
|
|
54371
|
+
"name": "STRING_OPERATORS",
|
|
54372
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54373
|
+
}
|
|
54374
|
+
},
|
|
54375
|
+
{
|
|
54376
|
+
"kind": "js",
|
|
54377
|
+
"name": "NUMERIC_OPERATORS",
|
|
54378
|
+
"declaration": {
|
|
54379
|
+
"name": "NUMERIC_OPERATORS",
|
|
54380
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54381
|
+
}
|
|
54382
|
+
},
|
|
54383
|
+
{
|
|
54384
|
+
"kind": "js",
|
|
54385
|
+
"name": "DATE_OPERATORS",
|
|
54386
|
+
"declaration": {
|
|
54387
|
+
"name": "DATE_OPERATORS",
|
|
54388
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54389
|
+
}
|
|
54390
|
+
},
|
|
54391
|
+
{
|
|
54392
|
+
"kind": "js",
|
|
54393
|
+
"name": "DATETIME_OPERATORS",
|
|
54394
|
+
"declaration": {
|
|
54395
|
+
"name": "DATETIME_OPERATORS",
|
|
54396
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54397
|
+
}
|
|
54398
|
+
}
|
|
54399
|
+
]
|
|
54400
|
+
},
|
|
54401
|
+
{
|
|
54402
|
+
"kind": "javascript-module",
|
|
54403
|
+
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
54404
|
+
"declarations": [
|
|
54405
|
+
{
|
|
54406
|
+
"kind": "function",
|
|
54407
|
+
"name": "validateClauses",
|
|
54408
|
+
"return": {
|
|
54409
|
+
"type": {
|
|
54410
|
+
"text": "ValidationResult"
|
|
54411
|
+
}
|
|
54412
|
+
},
|
|
54413
|
+
"parameters": [
|
|
54414
|
+
{
|
|
54415
|
+
"name": "clauses",
|
|
54416
|
+
"type": {
|
|
54417
|
+
"text": "CriteriaClause[]"
|
|
54418
|
+
}
|
|
54419
|
+
},
|
|
54420
|
+
{
|
|
54421
|
+
"name": "fieldMetadata",
|
|
54422
|
+
"type": {
|
|
54423
|
+
"text": "MetadataDetail[] | string[]"
|
|
54424
|
+
}
|
|
54425
|
+
}
|
|
54426
|
+
]
|
|
54427
|
+
},
|
|
54428
|
+
{
|
|
54429
|
+
"kind": "function",
|
|
54430
|
+
"name": "validateGroups",
|
|
54431
|
+
"return": {
|
|
54432
|
+
"type": {
|
|
54433
|
+
"text": "GroupsValidationResult"
|
|
54434
|
+
}
|
|
54435
|
+
},
|
|
54436
|
+
"parameters": [
|
|
54437
|
+
{
|
|
54438
|
+
"name": "groups",
|
|
54439
|
+
"type": {
|
|
54440
|
+
"text": "CriteriaGroup[]"
|
|
54441
|
+
}
|
|
54442
|
+
},
|
|
54443
|
+
{
|
|
54444
|
+
"name": "fieldMetadata",
|
|
54445
|
+
"type": {
|
|
54446
|
+
"text": "MetadataDetail[] | string[]"
|
|
54447
|
+
}
|
|
54448
|
+
}
|
|
54449
|
+
],
|
|
54450
|
+
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
54451
|
+
}
|
|
54452
|
+
],
|
|
54453
|
+
"exports": [
|
|
54454
|
+
{
|
|
54455
|
+
"kind": "js",
|
|
54456
|
+
"name": "validateClauses",
|
|
54457
|
+
"declaration": {
|
|
54458
|
+
"name": "validateClauses",
|
|
54459
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54460
|
+
}
|
|
54461
|
+
},
|
|
54462
|
+
{
|
|
54463
|
+
"kind": "js",
|
|
54464
|
+
"name": "validateGroups",
|
|
54465
|
+
"declaration": {
|
|
54466
|
+
"name": "validateGroups",
|
|
54467
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54468
|
+
}
|
|
54469
|
+
}
|
|
54470
|
+
]
|
|
54471
|
+
},
|
|
54229
54472
|
{
|
|
54230
54473
|
"kind": "javascript-module",
|
|
54231
54474
|
"path": "src/_config/styles/colors.ts",
|
|
@@ -55598,181 +55841,6 @@
|
|
|
55598
55841
|
"declarations": [],
|
|
55599
55842
|
"exports": []
|
|
55600
55843
|
},
|
|
55601
|
-
{
|
|
55602
|
-
"kind": "javascript-module",
|
|
55603
|
-
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
55604
|
-
"declarations": [],
|
|
55605
|
-
"exports": []
|
|
55606
|
-
},
|
|
55607
|
-
{
|
|
55608
|
-
"kind": "javascript-module",
|
|
55609
|
-
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
55610
|
-
"declarations": [
|
|
55611
|
-
{
|
|
55612
|
-
"kind": "function",
|
|
55613
|
-
"name": "groupsToCriteria",
|
|
55614
|
-
"return": {
|
|
55615
|
-
"type": {
|
|
55616
|
-
"text": "string"
|
|
55617
|
-
}
|
|
55618
|
-
},
|
|
55619
|
-
"parameters": [
|
|
55620
|
-
{
|
|
55621
|
-
"name": "groups",
|
|
55622
|
-
"type": {
|
|
55623
|
-
"text": "CriteriaGroup[]"
|
|
55624
|
-
}
|
|
55625
|
-
}
|
|
55626
|
-
],
|
|
55627
|
-
"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."
|
|
55628
|
-
},
|
|
55629
|
-
{
|
|
55630
|
-
"kind": "variable",
|
|
55631
|
-
"name": "STRING_OPERATORS",
|
|
55632
|
-
"type": {
|
|
55633
|
-
"text": "CriteriaOperator[]"
|
|
55634
|
-
},
|
|
55635
|
-
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
55636
|
-
},
|
|
55637
|
-
{
|
|
55638
|
-
"kind": "variable",
|
|
55639
|
-
"name": "NUMERIC_OPERATORS",
|
|
55640
|
-
"type": {
|
|
55641
|
-
"text": "CriteriaOperator[]"
|
|
55642
|
-
},
|
|
55643
|
-
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
55644
|
-
},
|
|
55645
|
-
{
|
|
55646
|
-
"kind": "variable",
|
|
55647
|
-
"name": "DATE_OPERATORS",
|
|
55648
|
-
"type": {
|
|
55649
|
-
"text": "CriteriaOperator[]"
|
|
55650
|
-
},
|
|
55651
|
-
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
55652
|
-
},
|
|
55653
|
-
{
|
|
55654
|
-
"kind": "variable",
|
|
55655
|
-
"name": "DATETIME_OPERATORS",
|
|
55656
|
-
"type": {
|
|
55657
|
-
"text": "CriteriaOperator[]"
|
|
55658
|
-
},
|
|
55659
|
-
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
55660
|
-
}
|
|
55661
|
-
],
|
|
55662
|
-
"exports": [
|
|
55663
|
-
{
|
|
55664
|
-
"kind": "js",
|
|
55665
|
-
"name": "groupsToCriteria",
|
|
55666
|
-
"declaration": {
|
|
55667
|
-
"name": "groupsToCriteria",
|
|
55668
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55669
|
-
}
|
|
55670
|
-
},
|
|
55671
|
-
{
|
|
55672
|
-
"kind": "js",
|
|
55673
|
-
"name": "STRING_OPERATORS",
|
|
55674
|
-
"declaration": {
|
|
55675
|
-
"name": "STRING_OPERATORS",
|
|
55676
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55677
|
-
}
|
|
55678
|
-
},
|
|
55679
|
-
{
|
|
55680
|
-
"kind": "js",
|
|
55681
|
-
"name": "NUMERIC_OPERATORS",
|
|
55682
|
-
"declaration": {
|
|
55683
|
-
"name": "NUMERIC_OPERATORS",
|
|
55684
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55685
|
-
}
|
|
55686
|
-
},
|
|
55687
|
-
{
|
|
55688
|
-
"kind": "js",
|
|
55689
|
-
"name": "DATE_OPERATORS",
|
|
55690
|
-
"declaration": {
|
|
55691
|
-
"name": "DATE_OPERATORS",
|
|
55692
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55693
|
-
}
|
|
55694
|
-
},
|
|
55695
|
-
{
|
|
55696
|
-
"kind": "js",
|
|
55697
|
-
"name": "DATETIME_OPERATORS",
|
|
55698
|
-
"declaration": {
|
|
55699
|
-
"name": "DATETIME_OPERATORS",
|
|
55700
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55701
|
-
}
|
|
55702
|
-
}
|
|
55703
|
-
]
|
|
55704
|
-
},
|
|
55705
|
-
{
|
|
55706
|
-
"kind": "javascript-module",
|
|
55707
|
-
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
55708
|
-
"declarations": [
|
|
55709
|
-
{
|
|
55710
|
-
"kind": "function",
|
|
55711
|
-
"name": "validateClauses",
|
|
55712
|
-
"return": {
|
|
55713
|
-
"type": {
|
|
55714
|
-
"text": "ValidationResult"
|
|
55715
|
-
}
|
|
55716
|
-
},
|
|
55717
|
-
"parameters": [
|
|
55718
|
-
{
|
|
55719
|
-
"name": "clauses",
|
|
55720
|
-
"type": {
|
|
55721
|
-
"text": "CriteriaClause[]"
|
|
55722
|
-
}
|
|
55723
|
-
},
|
|
55724
|
-
{
|
|
55725
|
-
"name": "fieldMetadata",
|
|
55726
|
-
"type": {
|
|
55727
|
-
"text": "MetadataDetail[] | string[]"
|
|
55728
|
-
}
|
|
55729
|
-
}
|
|
55730
|
-
]
|
|
55731
|
-
},
|
|
55732
|
-
{
|
|
55733
|
-
"kind": "function",
|
|
55734
|
-
"name": "validateGroups",
|
|
55735
|
-
"return": {
|
|
55736
|
-
"type": {
|
|
55737
|
-
"text": "GroupsValidationResult"
|
|
55738
|
-
}
|
|
55739
|
-
},
|
|
55740
|
-
"parameters": [
|
|
55741
|
-
{
|
|
55742
|
-
"name": "groups",
|
|
55743
|
-
"type": {
|
|
55744
|
-
"text": "CriteriaGroup[]"
|
|
55745
|
-
}
|
|
55746
|
-
},
|
|
55747
|
-
{
|
|
55748
|
-
"name": "fieldMetadata",
|
|
55749
|
-
"type": {
|
|
55750
|
-
"text": "MetadataDetail[] | string[]"
|
|
55751
|
-
}
|
|
55752
|
-
}
|
|
55753
|
-
],
|
|
55754
|
-
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
55755
|
-
}
|
|
55756
|
-
],
|
|
55757
|
-
"exports": [
|
|
55758
|
-
{
|
|
55759
|
-
"kind": "js",
|
|
55760
|
-
"name": "validateClauses",
|
|
55761
|
-
"declaration": {
|
|
55762
|
-
"name": "validateClauses",
|
|
55763
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55764
|
-
}
|
|
55765
|
-
},
|
|
55766
|
-
{
|
|
55767
|
-
"kind": "js",
|
|
55768
|
-
"name": "validateGroups",
|
|
55769
|
-
"declaration": {
|
|
55770
|
-
"name": "validateGroups",
|
|
55771
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55772
|
-
}
|
|
55773
|
-
}
|
|
55774
|
-
]
|
|
55775
|
-
},
|
|
55776
55844
|
{
|
|
55777
55845
|
"kind": "javascript-module",
|
|
55778
55846
|
"path": "src/environment-indicator/utils/configure.ts",
|