@genesislcap/foundation-ui 14.409.0-FUI-2495.11 → 14.409.0-FUI-2495.12
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 +1311 -1311
- package/package.json +19 -19
|
@@ -926,98 +926,329 @@
|
|
|
926
926
|
},
|
|
927
927
|
{
|
|
928
928
|
"kind": "javascript-module",
|
|
929
|
-
"path": "src/
|
|
930
|
-
"declarations": [],
|
|
931
|
-
"exports": [
|
|
932
|
-
{
|
|
933
|
-
"kind": "js",
|
|
934
|
-
"name": "*",
|
|
935
|
-
"declaration": {
|
|
936
|
-
"name": "*",
|
|
937
|
-
"package": "./styles"
|
|
938
|
-
}
|
|
939
|
-
},
|
|
940
|
-
{
|
|
941
|
-
"kind": "js",
|
|
942
|
-
"name": "*",
|
|
943
|
-
"declaration": {
|
|
944
|
-
"name": "*",
|
|
945
|
-
"package": "./tokens"
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"kind": "js",
|
|
950
|
-
"name": "*",
|
|
951
|
-
"declaration": {
|
|
952
|
-
"name": "*",
|
|
953
|
-
"package": "./values"
|
|
954
|
-
}
|
|
955
|
-
}
|
|
956
|
-
]
|
|
957
|
-
},
|
|
958
|
-
{
|
|
959
|
-
"kind": "javascript-module",
|
|
960
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
929
|
+
"path": "src/_common/base-file-component.ts",
|
|
961
930
|
"declarations": [
|
|
962
931
|
{
|
|
963
|
-
"kind": "
|
|
964
|
-
"
|
|
965
|
-
"
|
|
966
|
-
|
|
967
|
-
"text": "ElementStyles"
|
|
968
|
-
}
|
|
969
|
-
},
|
|
970
|
-
"parameters": [
|
|
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": [
|
|
971
936
|
{
|
|
972
|
-
"
|
|
937
|
+
"kind": "field",
|
|
938
|
+
"name": "fileInput",
|
|
973
939
|
"type": {
|
|
974
|
-
"text": "
|
|
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"
|
|
975
958
|
}
|
|
976
959
|
},
|
|
977
960
|
{
|
|
978
|
-
"
|
|
961
|
+
"kind": "field",
|
|
962
|
+
"name": "accept",
|
|
979
963
|
"type": {
|
|
980
|
-
"text": "
|
|
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"
|
|
981
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"
|
|
982
1218
|
}
|
|
983
|
-
]
|
|
1219
|
+
],
|
|
1220
|
+
"superclass": {
|
|
1221
|
+
"name": "FoundationElement",
|
|
1222
|
+
"package": "@microsoft/fast-foundation"
|
|
1223
|
+
}
|
|
984
1224
|
}
|
|
985
1225
|
],
|
|
986
1226
|
"exports": [
|
|
987
1227
|
{
|
|
988
1228
|
"kind": "js",
|
|
989
|
-
"name": "
|
|
1229
|
+
"name": "BaseFileComponent",
|
|
990
1230
|
"declaration": {
|
|
991
|
-
"name": "
|
|
992
|
-
"module": "src/
|
|
1231
|
+
"name": "BaseFileComponent",
|
|
1232
|
+
"module": "src/_common/base-file-component.ts"
|
|
993
1233
|
}
|
|
994
1234
|
}
|
|
995
1235
|
]
|
|
996
1236
|
},
|
|
997
1237
|
{
|
|
998
1238
|
"kind": "javascript-module",
|
|
999
|
-
"path": "src/
|
|
1239
|
+
"path": "src/_common/icons.ts",
|
|
1000
1240
|
"declarations": [
|
|
1001
1241
|
{
|
|
1002
1242
|
"kind": "function",
|
|
1003
|
-
"name": "
|
|
1004
|
-
"return": {
|
|
1005
|
-
"type": {
|
|
1006
|
-
"text": "ViewTemplate<Accordion>"
|
|
1007
|
-
}
|
|
1008
|
-
},
|
|
1243
|
+
"name": "closeIcon",
|
|
1009
1244
|
"parameters": [
|
|
1010
1245
|
{
|
|
1011
|
-
"name": "
|
|
1012
|
-
"
|
|
1013
|
-
"text": "ElementDefinitionContext"
|
|
1014
|
-
}
|
|
1246
|
+
"name": "slot",
|
|
1247
|
+
"default": "'start'"
|
|
1015
1248
|
},
|
|
1016
1249
|
{
|
|
1017
|
-
"name": "
|
|
1018
|
-
"
|
|
1019
|
-
"text": "FoundationElementDefinition"
|
|
1020
|
-
}
|
|
1250
|
+
"name": "fill",
|
|
1251
|
+
"default": "'#879ba6'"
|
|
1021
1252
|
}
|
|
1022
1253
|
]
|
|
1023
1254
|
}
|
|
@@ -1025,90 +1256,40 @@
|
|
|
1025
1256
|
"exports": [
|
|
1026
1257
|
{
|
|
1027
1258
|
"kind": "js",
|
|
1028
|
-
"name": "
|
|
1259
|
+
"name": "closeIcon",
|
|
1029
1260
|
"declaration": {
|
|
1030
|
-
"name": "
|
|
1031
|
-
"module": "src/
|
|
1261
|
+
"name": "closeIcon",
|
|
1262
|
+
"module": "src/_common/icons.ts"
|
|
1032
1263
|
}
|
|
1033
1264
|
}
|
|
1034
1265
|
]
|
|
1035
1266
|
},
|
|
1036
1267
|
{
|
|
1037
1268
|
"kind": "javascript-module",
|
|
1038
|
-
"path": "src/
|
|
1039
|
-
"declarations": [
|
|
1040
|
-
{
|
|
1041
|
-
"kind": "class",
|
|
1042
|
-
"description": "",
|
|
1043
|
-
"name": "Accordion",
|
|
1044
|
-
"superclass": {
|
|
1045
|
-
"name": "FASTAccordion",
|
|
1046
|
-
"package": "@microsoft/fast-foundation"
|
|
1047
|
-
},
|
|
1048
|
-
"tagName": "%%prefix%%-accordion",
|
|
1049
|
-
"customElement": true
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"kind": "variable",
|
|
1053
|
-
"name": "foundationAccordionShadowOptions",
|
|
1054
|
-
"type": {
|
|
1055
|
-
"text": "ShadowRootInit"
|
|
1056
|
-
},
|
|
1057
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
"kind": "variable",
|
|
1061
|
-
"name": "defaultAccordionConfig",
|
|
1062
|
-
"type": {
|
|
1063
|
-
"text": "object"
|
|
1064
|
-
},
|
|
1065
|
-
"default": "{}"
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"kind": "variable",
|
|
1069
|
-
"name": "foundationAccordion",
|
|
1070
|
-
"description": "The Foundation Accordion",
|
|
1071
|
-
"privacy": "public"
|
|
1072
|
-
}
|
|
1073
|
-
],
|
|
1269
|
+
"path": "src/_common/index.ts",
|
|
1270
|
+
"declarations": [],
|
|
1074
1271
|
"exports": [
|
|
1075
1272
|
{
|
|
1076
1273
|
"kind": "js",
|
|
1077
|
-
"name": "
|
|
1078
|
-
"declaration": {
|
|
1079
|
-
"name": "Accordion",
|
|
1080
|
-
"module": "src/accordion/accordion.ts"
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"kind": "js",
|
|
1085
|
-
"name": "foundationAccordionShadowOptions",
|
|
1086
|
-
"declaration": {
|
|
1087
|
-
"name": "foundationAccordionShadowOptions",
|
|
1088
|
-
"module": "src/accordion/accordion.ts"
|
|
1089
|
-
}
|
|
1090
|
-
},
|
|
1091
|
-
{
|
|
1092
|
-
"kind": "js",
|
|
1093
|
-
"name": "defaultAccordionConfig",
|
|
1274
|
+
"name": "*",
|
|
1094
1275
|
"declaration": {
|
|
1095
|
-
"name": "
|
|
1096
|
-
"
|
|
1276
|
+
"name": "*",
|
|
1277
|
+
"package": "./base-file-component"
|
|
1097
1278
|
}
|
|
1098
1279
|
},
|
|
1099
1280
|
{
|
|
1100
1281
|
"kind": "js",
|
|
1101
|
-
"name": "
|
|
1282
|
+
"name": "*",
|
|
1102
1283
|
"declaration": {
|
|
1103
|
-
"name": "
|
|
1104
|
-
"
|
|
1284
|
+
"name": "*",
|
|
1285
|
+
"package": "./icons"
|
|
1105
1286
|
}
|
|
1106
1287
|
}
|
|
1107
1288
|
]
|
|
1108
1289
|
},
|
|
1109
1290
|
{
|
|
1110
1291
|
"kind": "javascript-module",
|
|
1111
|
-
"path": "src/
|
|
1292
|
+
"path": "src/_config/index.ts",
|
|
1112
1293
|
"declarations": [],
|
|
1113
1294
|
"exports": [
|
|
1114
1295
|
{
|
|
@@ -1116,7 +1297,7 @@
|
|
|
1116
1297
|
"name": "*",
|
|
1117
1298
|
"declaration": {
|
|
1118
1299
|
"name": "*",
|
|
1119
|
-
"package": "./
|
|
1300
|
+
"package": "./styles"
|
|
1120
1301
|
}
|
|
1121
1302
|
},
|
|
1122
1303
|
{
|
|
@@ -1124,7 +1305,7 @@
|
|
|
1124
1305
|
"name": "*",
|
|
1125
1306
|
"declaration": {
|
|
1126
1307
|
"name": "*",
|
|
1127
|
-
"package": "./
|
|
1308
|
+
"package": "./tokens"
|
|
1128
1309
|
}
|
|
1129
1310
|
},
|
|
1130
1311
|
{
|
|
@@ -1132,41 +1313,18 @@
|
|
|
1132
1313
|
"name": "*",
|
|
1133
1314
|
"declaration": {
|
|
1134
1315
|
"name": "*",
|
|
1135
|
-
"package": "./
|
|
1316
|
+
"package": "./values"
|
|
1136
1317
|
}
|
|
1137
1318
|
}
|
|
1138
1319
|
]
|
|
1139
1320
|
},
|
|
1140
1321
|
{
|
|
1141
1322
|
"kind": "javascript-module",
|
|
1142
|
-
"path": "src/
|
|
1323
|
+
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
1143
1324
|
"declarations": [
|
|
1144
1325
|
{
|
|
1145
1326
|
"kind": "function",
|
|
1146
|
-
"name": "
|
|
1147
|
-
"return": {
|
|
1148
|
-
"type": {
|
|
1149
|
-
"text": "ElementStyles"
|
|
1150
|
-
}
|
|
1151
|
-
},
|
|
1152
|
-
"parameters": [
|
|
1153
|
-
{
|
|
1154
|
-
"name": "context",
|
|
1155
|
-
"type": {
|
|
1156
|
-
"text": "ElementDefinitionContext"
|
|
1157
|
-
}
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
"name": "definition",
|
|
1161
|
-
"type": {
|
|
1162
|
-
"text": "FoundationElementDefinition"
|
|
1163
|
-
}
|
|
1164
|
-
}
|
|
1165
|
-
]
|
|
1166
|
-
},
|
|
1167
|
-
{
|
|
1168
|
-
"kind": "function",
|
|
1169
|
-
"name": "foundationActionsMenuStyles",
|
|
1327
|
+
"name": "foundationAccordionItemStyles",
|
|
1170
1328
|
"return": {
|
|
1171
1329
|
"type": {
|
|
1172
1330
|
"text": "ElementStyles"
|
|
@@ -1191,270 +1349,157 @@
|
|
|
1191
1349
|
"exports": [
|
|
1192
1350
|
{
|
|
1193
1351
|
"kind": "js",
|
|
1194
|
-
"name": "
|
|
1195
|
-
"declaration": {
|
|
1196
|
-
"name": "actionsMenuBaseStyles",
|
|
1197
|
-
"module": "src/actions-menu/actions-menu.styles.ts"
|
|
1198
|
-
}
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
"kind": "js",
|
|
1202
|
-
"name": "foundationActionsMenuStyles",
|
|
1352
|
+
"name": "foundationAccordionItemStyles",
|
|
1203
1353
|
"declaration": {
|
|
1204
|
-
"name": "
|
|
1205
|
-
"module": "src/
|
|
1354
|
+
"name": "foundationAccordionItemStyles",
|
|
1355
|
+
"module": "src/accordion-item/accordion-item.styles.ts"
|
|
1206
1356
|
}
|
|
1207
1357
|
}
|
|
1208
1358
|
]
|
|
1209
1359
|
},
|
|
1210
1360
|
{
|
|
1211
1361
|
"kind": "javascript-module",
|
|
1212
|
-
"path": "src/
|
|
1362
|
+
"path": "src/accordion-item/accordion-item.template.ts",
|
|
1213
1363
|
"declarations": [
|
|
1214
1364
|
{
|
|
1215
1365
|
"kind": "function",
|
|
1216
|
-
"name": "
|
|
1366
|
+
"name": "foundationAccordionItemTemplate",
|
|
1367
|
+
"return": {
|
|
1368
|
+
"type": {
|
|
1369
|
+
"text": "ViewTemplate<AccordionItem>"
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1217
1372
|
"parameters": [
|
|
1218
1373
|
{
|
|
1219
|
-
"name": "
|
|
1374
|
+
"name": "context",
|
|
1220
1375
|
"type": {
|
|
1221
|
-
"text": "
|
|
1376
|
+
"text": "ElementDefinitionContext"
|
|
1222
1377
|
}
|
|
1223
|
-
}
|
|
1224
|
-
]
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"kind": "function",
|
|
1228
|
-
"name": "singleOptionTemplate",
|
|
1229
|
-
"parameters": [
|
|
1378
|
+
},
|
|
1230
1379
|
{
|
|
1231
|
-
"name": "
|
|
1380
|
+
"name": "definition",
|
|
1232
1381
|
"type": {
|
|
1233
|
-
"text": "
|
|
1382
|
+
"text": "FoundationElementDefinition"
|
|
1234
1383
|
}
|
|
1235
1384
|
}
|
|
1236
1385
|
]
|
|
1237
|
-
},
|
|
1238
|
-
{
|
|
1239
|
-
"kind": "variable",
|
|
1240
|
-
"name": "foundationActionsMenuTemplate",
|
|
1241
|
-
"type": {
|
|
1242
|
-
"text": "ViewTemplate<ActionsMenu>"
|
|
1243
|
-
},
|
|
1244
|
-
"default": "html`\n <div\n class=\"actions-container${(x) => (x.isVertical ? ' actions-vertical' : '')}\"\n part=\"actions-container\"\n >\n ${(x) => x.getTemplate(getPrefix(x))}\n </div>\n`"
|
|
1245
1386
|
}
|
|
1246
1387
|
],
|
|
1247
1388
|
"exports": [
|
|
1248
1389
|
{
|
|
1249
1390
|
"kind": "js",
|
|
1250
|
-
"name": "
|
|
1251
|
-
"declaration": {
|
|
1252
|
-
"name": "menuTemplate",
|
|
1253
|
-
"module": "src/actions-menu/actions-menu.template.ts"
|
|
1254
|
-
}
|
|
1255
|
-
},
|
|
1256
|
-
{
|
|
1257
|
-
"kind": "js",
|
|
1258
|
-
"name": "singleOptionTemplate",
|
|
1259
|
-
"declaration": {
|
|
1260
|
-
"name": "singleOptionTemplate",
|
|
1261
|
-
"module": "src/actions-menu/actions-menu.template.ts"
|
|
1262
|
-
}
|
|
1263
|
-
},
|
|
1264
|
-
{
|
|
1265
|
-
"kind": "js",
|
|
1266
|
-
"name": "foundationActionsMenuTemplate",
|
|
1391
|
+
"name": "foundationAccordionItemTemplate",
|
|
1267
1392
|
"declaration": {
|
|
1268
|
-
"name": "
|
|
1269
|
-
"module": "src/
|
|
1393
|
+
"name": "foundationAccordionItemTemplate",
|
|
1394
|
+
"module": "src/accordion-item/accordion-item.template.ts"
|
|
1270
1395
|
}
|
|
1271
1396
|
}
|
|
1272
1397
|
]
|
|
1273
1398
|
},
|
|
1274
1399
|
{
|
|
1275
1400
|
"kind": "javascript-module",
|
|
1276
|
-
"path": "src/
|
|
1401
|
+
"path": "src/accordion-item/accordion-item.ts",
|
|
1277
1402
|
"declarations": [
|
|
1278
1403
|
{
|
|
1279
1404
|
"kind": "class",
|
|
1280
1405
|
"description": "",
|
|
1281
|
-
"name": "
|
|
1282
|
-
"
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
},
|
|
1290
|
-
{
|
|
1291
|
-
"kind": "field",
|
|
1292
|
-
"name": "isVertical",
|
|
1293
|
-
"type": {
|
|
1294
|
-
"text": "boolean"
|
|
1295
|
-
},
|
|
1296
|
-
"default": "false"
|
|
1297
|
-
},
|
|
1298
|
-
{
|
|
1299
|
-
"kind": "field",
|
|
1300
|
-
"name": "addDefaultActions",
|
|
1301
|
-
"type": {
|
|
1302
|
-
"text": "boolean"
|
|
1303
|
-
},
|
|
1304
|
-
"default": "true"
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
"kind": "field",
|
|
1308
|
-
"name": "autoCloseOnAction",
|
|
1309
|
-
"type": {
|
|
1310
|
-
"text": "boolean"
|
|
1311
|
-
},
|
|
1312
|
-
"default": "true"
|
|
1313
|
-
},
|
|
1406
|
+
"name": "AccordionItem",
|
|
1407
|
+
"superclass": {
|
|
1408
|
+
"name": "FASTAccordionItem",
|
|
1409
|
+
"package": "@microsoft/fast-components"
|
|
1410
|
+
},
|
|
1411
|
+
"tagName": "%%prefix%%-accordion-item",
|
|
1412
|
+
"customElement": true,
|
|
1413
|
+
"attributes": [
|
|
1314
1414
|
{
|
|
1315
|
-
"
|
|
1316
|
-
"name": "classNames",
|
|
1415
|
+
"name": "heading-level",
|
|
1317
1416
|
"type": {
|
|
1318
|
-
"text": "
|
|
1417
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1418
|
+
},
|
|
1419
|
+
"default": "2",
|
|
1420
|
+
"description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
|
|
1421
|
+
"fieldName": "headinglevel",
|
|
1422
|
+
"inheritedFrom": {
|
|
1423
|
+
"name": "AccordionItem",
|
|
1424
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1319
1425
|
}
|
|
1320
1426
|
},
|
|
1321
1427
|
{
|
|
1322
|
-
"kind": "field",
|
|
1323
|
-
"name": "definition",
|
|
1324
1428
|
"type": {
|
|
1325
|
-
"text": "
|
|
1429
|
+
"text": "boolean"
|
|
1430
|
+
},
|
|
1431
|
+
"default": "false",
|
|
1432
|
+
"description": "Expands or collapses the item.",
|
|
1433
|
+
"fieldName": "expanded",
|
|
1434
|
+
"inheritedFrom": {
|
|
1435
|
+
"name": "AccordionItem",
|
|
1436
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1326
1437
|
}
|
|
1327
1438
|
},
|
|
1328
1439
|
{
|
|
1329
|
-
"
|
|
1330
|
-
"name": "name",
|
|
1440
|
+
"name": "id",
|
|
1331
1441
|
"type": {
|
|
1332
1442
|
"text": "string"
|
|
1333
1443
|
},
|
|
1334
|
-
"
|
|
1335
|
-
|
|
1444
|
+
"description": "The item ID",
|
|
1445
|
+
"fieldName": "id",
|
|
1446
|
+
"inheritedFrom": {
|
|
1447
|
+
"name": "AccordionItem",
|
|
1448
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
],
|
|
1452
|
+
"members": [
|
|
1336
1453
|
{
|
|
1337
1454
|
"kind": "field",
|
|
1338
|
-
"name": "
|
|
1455
|
+
"name": "headinglevel",
|
|
1339
1456
|
"type": {
|
|
1340
|
-
"text": "
|
|
1457
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1341
1458
|
},
|
|
1342
|
-
"
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
"
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
"text": "string"
|
|
1459
|
+
"privacy": "public",
|
|
1460
|
+
"default": "2",
|
|
1461
|
+
"description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
|
|
1462
|
+
"inheritedFrom": {
|
|
1463
|
+
"name": "AccordionItem",
|
|
1464
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1349
1465
|
}
|
|
1350
1466
|
},
|
|
1351
1467
|
{
|
|
1352
1468
|
"kind": "field",
|
|
1353
|
-
"name": "
|
|
1469
|
+
"name": "expanded",
|
|
1354
1470
|
"type": {
|
|
1355
1471
|
"text": "boolean"
|
|
1356
1472
|
},
|
|
1357
|
-
"
|
|
1473
|
+
"privacy": "public",
|
|
1474
|
+
"default": "false",
|
|
1475
|
+
"description": "Expands or collapses the item.",
|
|
1476
|
+
"inheritedFrom": {
|
|
1477
|
+
"name": "AccordionItem",
|
|
1478
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1479
|
+
}
|
|
1358
1480
|
},
|
|
1359
1481
|
{
|
|
1360
1482
|
"kind": "field",
|
|
1361
|
-
"name": "
|
|
1483
|
+
"name": "id",
|
|
1362
1484
|
"type": {
|
|
1363
|
-
"text": "
|
|
1485
|
+
"text": "string"
|
|
1364
1486
|
},
|
|
1365
|
-
"
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
"type": {
|
|
1371
|
-
"text": "ActionMenuItem"
|
|
1487
|
+
"privacy": "public",
|
|
1488
|
+
"description": "The item ID",
|
|
1489
|
+
"inheritedFrom": {
|
|
1490
|
+
"name": "AccordionItem",
|
|
1491
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1372
1492
|
}
|
|
1373
1493
|
},
|
|
1374
1494
|
{
|
|
1375
1495
|
"kind": "field",
|
|
1376
|
-
"name": "
|
|
1377
|
-
"
|
|
1378
|
-
|
|
1496
|
+
"name": "change",
|
|
1497
|
+
"privacy": "private",
|
|
1498
|
+
"inheritedFrom": {
|
|
1499
|
+
"name": "AccordionItem",
|
|
1500
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1379
1501
|
}
|
|
1380
1502
|
},
|
|
1381
|
-
{
|
|
1382
|
-
"kind": "method",
|
|
1383
|
-
"name": "definitionChanged",
|
|
1384
|
-
"privacy": "protected",
|
|
1385
|
-
"parameters": [
|
|
1386
|
-
{
|
|
1387
|
-
"name": "oldValue",
|
|
1388
|
-
"type": {
|
|
1389
|
-
"text": "any"
|
|
1390
|
-
}
|
|
1391
|
-
},
|
|
1392
|
-
{
|
|
1393
|
-
"name": "newValue",
|
|
1394
|
-
"type": {
|
|
1395
|
-
"text": "any"
|
|
1396
|
-
}
|
|
1397
|
-
}
|
|
1398
|
-
]
|
|
1399
|
-
},
|
|
1400
|
-
{
|
|
1401
|
-
"kind": "method",
|
|
1402
|
-
"name": "openChanged",
|
|
1403
|
-
"privacy": "protected"
|
|
1404
|
-
},
|
|
1405
|
-
{
|
|
1406
|
-
"kind": "method",
|
|
1407
|
-
"name": "toggleActionsMenuVisibility"
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"kind": "method",
|
|
1411
|
-
"name": "onActionMenuItemClick",
|
|
1412
|
-
"parameters": [
|
|
1413
|
-
{
|
|
1414
|
-
"name": "callback",
|
|
1415
|
-
"type": {
|
|
1416
|
-
"text": "(rowData) => void | any"
|
|
1417
|
-
}
|
|
1418
|
-
}
|
|
1419
|
-
]
|
|
1420
|
-
},
|
|
1421
|
-
{
|
|
1422
|
-
"kind": "field",
|
|
1423
|
-
"name": "allActions",
|
|
1424
|
-
"type": {
|
|
1425
|
-
"text": "ActionMenuItem[]"
|
|
1426
|
-
},
|
|
1427
|
-
"readonly": true
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
"kind": "field",
|
|
1431
|
-
"name": "rowData",
|
|
1432
|
-
"readonly": true
|
|
1433
|
-
},
|
|
1434
|
-
{
|
|
1435
|
-
"kind": "method",
|
|
1436
|
-
"name": "getLabel",
|
|
1437
|
-
"parameters": [
|
|
1438
|
-
{
|
|
1439
|
-
"name": "name",
|
|
1440
|
-
"type": {
|
|
1441
|
-
"text": "string | ((rowData: any) => string)"
|
|
1442
|
-
}
|
|
1443
|
-
}
|
|
1444
|
-
]
|
|
1445
|
-
},
|
|
1446
|
-
{
|
|
1447
|
-
"kind": "method",
|
|
1448
|
-
"name": "getTemplate",
|
|
1449
|
-
"parameters": [
|
|
1450
|
-
{
|
|
1451
|
-
"name": "prefix",
|
|
1452
|
-
"type": {
|
|
1453
|
-
"text": "string"
|
|
1454
|
-
}
|
|
1455
|
-
}
|
|
1456
|
-
]
|
|
1457
|
-
},
|
|
1458
1503
|
{
|
|
1459
1504
|
"kind": "field",
|
|
1460
1505
|
"name": "_presentation",
|
|
@@ -1567,107 +1612,78 @@
|
|
|
1567
1612
|
}
|
|
1568
1613
|
}
|
|
1569
1614
|
],
|
|
1570
|
-
"
|
|
1571
|
-
{
|
|
1572
|
-
"name": "is-vertical",
|
|
1573
|
-
"type": {
|
|
1574
|
-
"text": "boolean"
|
|
1575
|
-
},
|
|
1576
|
-
"default": "false",
|
|
1577
|
-
"fieldName": "isVertical"
|
|
1578
|
-
},
|
|
1579
|
-
{
|
|
1580
|
-
"name": "add-default-actions",
|
|
1581
|
-
"type": {
|
|
1582
|
-
"text": "boolean"
|
|
1583
|
-
},
|
|
1584
|
-
"default": "true",
|
|
1585
|
-
"fieldName": "addDefaultActions"
|
|
1586
|
-
},
|
|
1587
|
-
{
|
|
1588
|
-
"name": "auto-close-on-action",
|
|
1589
|
-
"type": {
|
|
1590
|
-
"text": "boolean"
|
|
1591
|
-
},
|
|
1592
|
-
"default": "true",
|
|
1593
|
-
"fieldName": "autoCloseOnAction"
|
|
1594
|
-
},
|
|
1595
|
-
{
|
|
1596
|
-
"name": "name",
|
|
1597
|
-
"type": {
|
|
1598
|
-
"text": "string"
|
|
1599
|
-
},
|
|
1600
|
-
"default": "'Actions'",
|
|
1601
|
-
"fieldName": "name"
|
|
1602
|
-
},
|
|
1603
|
-
{
|
|
1604
|
-
"name": "open",
|
|
1605
|
-
"type": {
|
|
1606
|
-
"text": "boolean"
|
|
1607
|
-
},
|
|
1608
|
-
"default": "false",
|
|
1609
|
-
"fieldName": "open"
|
|
1610
|
-
},
|
|
1611
|
-
{
|
|
1612
|
-
"name": "buttonAppearance",
|
|
1613
|
-
"type": {
|
|
1614
|
-
"text": "string"
|
|
1615
|
-
},
|
|
1616
|
-
"fieldName": "buttonAppearance"
|
|
1617
|
-
},
|
|
1618
|
-
{
|
|
1619
|
-
"name": "hide-disabled",
|
|
1620
|
-
"type": {
|
|
1621
|
-
"text": "boolean"
|
|
1622
|
-
},
|
|
1623
|
-
"default": "false",
|
|
1624
|
-
"fieldName": "hideDisabled"
|
|
1625
|
-
},
|
|
1615
|
+
"events": [
|
|
1626
1616
|
{
|
|
1627
|
-
"
|
|
1628
|
-
"
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1617
|
+
"description": "Fires a custom 'change' event when the button is invoked",
|
|
1618
|
+
"name": "change",
|
|
1619
|
+
"inheritedFrom": {
|
|
1620
|
+
"name": "AccordionItem",
|
|
1621
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1622
|
+
}
|
|
1633
1623
|
}
|
|
1634
|
-
]
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1624
|
+
]
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"kind": "variable",
|
|
1628
|
+
"name": "foundationAccordionItemShadowOptions",
|
|
1629
|
+
"type": {
|
|
1630
|
+
"text": "ShadowRootInit"
|
|
1638
1631
|
},
|
|
1639
|
-
"
|
|
1640
|
-
|
|
1632
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
"kind": "variable",
|
|
1636
|
+
"name": "defaultAccordionItemConfig",
|
|
1637
|
+
"type": {
|
|
1638
|
+
"text": "object"
|
|
1639
|
+
},
|
|
1640
|
+
"default": "{\n collapsedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"collapsed-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M9 5.44446V12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"plus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n expandedIcon: `<svg width=\"16\" height=\"16\" viewBox=\"0 0 18 18\" xmlns=\"http://www.w3.org/2000/svg\" slot=\"expanded-icon\">\n <path d=\"M15.2222 1H2.77778C1.79594 1 1 1.79594 1 2.77778V15.2222C1 16.2041 1.79594 17 2.77778 17H15.2222C16.2041 17 17 16.2041 17 15.2222V2.77778C17 1.79594 16.2041 1 15.2222 1Z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n <path class=\"minus-sign\" d=\"M5.44446 9H12.5556\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n </svg>`,\n}"
|
|
1641
1641
|
},
|
|
1642
1642
|
{
|
|
1643
1643
|
"kind": "variable",
|
|
1644
|
-
"name": "
|
|
1645
|
-
"description": "The Foundation
|
|
1644
|
+
"name": "foundationAccordionItem",
|
|
1645
|
+
"description": "The Foundation Accordion Item",
|
|
1646
1646
|
"privacy": "public"
|
|
1647
1647
|
}
|
|
1648
1648
|
],
|
|
1649
1649
|
"exports": [
|
|
1650
1650
|
{
|
|
1651
1651
|
"kind": "js",
|
|
1652
|
-
"name": "
|
|
1652
|
+
"name": "AccordionItem",
|
|
1653
1653
|
"declaration": {
|
|
1654
|
-
"name": "
|
|
1655
|
-
"module": "src/
|
|
1654
|
+
"name": "AccordionItem",
|
|
1655
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1656
1656
|
}
|
|
1657
1657
|
},
|
|
1658
1658
|
{
|
|
1659
1659
|
"kind": "js",
|
|
1660
|
-
"name": "
|
|
1660
|
+
"name": "foundationAccordionItemShadowOptions",
|
|
1661
1661
|
"declaration": {
|
|
1662
|
-
"name": "
|
|
1663
|
-
"module": "src/
|
|
1662
|
+
"name": "foundationAccordionItemShadowOptions",
|
|
1663
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1664
|
+
}
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"kind": "js",
|
|
1668
|
+
"name": "defaultAccordionItemConfig",
|
|
1669
|
+
"declaration": {
|
|
1670
|
+
"name": "defaultAccordionItemConfig",
|
|
1671
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"kind": "js",
|
|
1676
|
+
"name": "foundationAccordionItem",
|
|
1677
|
+
"declaration": {
|
|
1678
|
+
"name": "foundationAccordionItem",
|
|
1679
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1664
1680
|
}
|
|
1665
1681
|
}
|
|
1666
1682
|
]
|
|
1667
1683
|
},
|
|
1668
1684
|
{
|
|
1669
1685
|
"kind": "javascript-module",
|
|
1670
|
-
"path": "src/
|
|
1686
|
+
"path": "src/accordion-item/index.ts",
|
|
1671
1687
|
"declarations": [],
|
|
1672
1688
|
"exports": [
|
|
1673
1689
|
{
|
|
@@ -1675,7 +1691,7 @@
|
|
|
1675
1691
|
"name": "*",
|
|
1676
1692
|
"declaration": {
|
|
1677
1693
|
"name": "*",
|
|
1678
|
-
"package": "./
|
|
1694
|
+
"package": "./accordion-item.template"
|
|
1679
1695
|
}
|
|
1680
1696
|
},
|
|
1681
1697
|
{
|
|
@@ -1683,7 +1699,7 @@
|
|
|
1683
1699
|
"name": "*",
|
|
1684
1700
|
"declaration": {
|
|
1685
1701
|
"name": "*",
|
|
1686
|
-
"package": "./
|
|
1702
|
+
"package": "./accordion-item.styles"
|
|
1687
1703
|
}
|
|
1688
1704
|
},
|
|
1689
1705
|
{
|
|
@@ -1691,106 +1707,210 @@
|
|
|
1691
1707
|
"name": "*",
|
|
1692
1708
|
"declaration": {
|
|
1693
1709
|
"name": "*",
|
|
1694
|
-
"package": "./
|
|
1710
|
+
"package": "./accordion-item"
|
|
1695
1711
|
}
|
|
1696
1712
|
}
|
|
1697
1713
|
]
|
|
1698
1714
|
},
|
|
1699
1715
|
{
|
|
1700
1716
|
"kind": "javascript-module",
|
|
1701
|
-
"path": "src/
|
|
1717
|
+
"path": "src/actions-menu/actions-menu.styles.ts",
|
|
1702
1718
|
"declarations": [
|
|
1703
1719
|
{
|
|
1704
|
-
"kind": "
|
|
1705
|
-
"name": "
|
|
1706
|
-
"
|
|
1720
|
+
"kind": "function",
|
|
1721
|
+
"name": "actionsMenuBaseStyles",
|
|
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
|
+
"kind": "function",
|
|
1744
|
+
"name": "foundationActionsMenuStyles",
|
|
1745
|
+
"return": {
|
|
1746
|
+
"type": {
|
|
1747
|
+
"text": "ElementStyles"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"parameters": [
|
|
1751
|
+
{
|
|
1752
|
+
"name": "context",
|
|
1753
|
+
"type": {
|
|
1754
|
+
"text": "ElementDefinitionContext"
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"name": "definition",
|
|
1759
|
+
"type": {
|
|
1760
|
+
"text": "FoundationElementDefinition"
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
]
|
|
1707
1764
|
}
|
|
1708
1765
|
],
|
|
1709
1766
|
"exports": [
|
|
1710
1767
|
{
|
|
1711
1768
|
"kind": "js",
|
|
1712
|
-
"name": "
|
|
1769
|
+
"name": "actionsMenuBaseStyles",
|
|
1713
1770
|
"declaration": {
|
|
1714
|
-
"name": "
|
|
1715
|
-
"module": "src/
|
|
1771
|
+
"name": "actionsMenuBaseStyles",
|
|
1772
|
+
"module": "src/actions-menu/actions-menu.styles.ts"
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"kind": "js",
|
|
1777
|
+
"name": "foundationActionsMenuStyles",
|
|
1778
|
+
"declaration": {
|
|
1779
|
+
"name": "foundationActionsMenuStyles",
|
|
1780
|
+
"module": "src/actions-menu/actions-menu.styles.ts"
|
|
1716
1781
|
}
|
|
1717
1782
|
}
|
|
1718
1783
|
]
|
|
1719
1784
|
},
|
|
1720
1785
|
{
|
|
1721
1786
|
"kind": "javascript-module",
|
|
1722
|
-
"path": "src/
|
|
1787
|
+
"path": "src/actions-menu/actions-menu.template.ts",
|
|
1723
1788
|
"declarations": [
|
|
1789
|
+
{
|
|
1790
|
+
"kind": "function",
|
|
1791
|
+
"name": "menuTemplate",
|
|
1792
|
+
"parameters": [
|
|
1793
|
+
{
|
|
1794
|
+
"name": "prefix",
|
|
1795
|
+
"type": {
|
|
1796
|
+
"text": "string"
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1799
|
+
]
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"kind": "function",
|
|
1803
|
+
"name": "singleOptionTemplate",
|
|
1804
|
+
"parameters": [
|
|
1805
|
+
{
|
|
1806
|
+
"name": "prefix",
|
|
1807
|
+
"type": {
|
|
1808
|
+
"text": "string"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
]
|
|
1812
|
+
},
|
|
1724
1813
|
{
|
|
1725
1814
|
"kind": "variable",
|
|
1726
|
-
"name": "
|
|
1815
|
+
"name": "foundationActionsMenuTemplate",
|
|
1727
1816
|
"type": {
|
|
1728
|
-
"text": "ViewTemplate<
|
|
1817
|
+
"text": "ViewTemplate<ActionsMenu>"
|
|
1729
1818
|
},
|
|
1730
|
-
"default": "html`\n ${(x) =>
|
|
1819
|
+
"default": "html`\n <div\n class=\"actions-container${(x) => (x.isVertical ? ' actions-vertical' : '')}\"\n part=\"actions-container\"\n >\n ${(x) => x.getTemplate(getPrefix(x))}\n </div>\n`"
|
|
1731
1820
|
}
|
|
1732
1821
|
],
|
|
1733
1822
|
"exports": [
|
|
1734
1823
|
{
|
|
1735
1824
|
"kind": "js",
|
|
1736
|
-
"name": "
|
|
1825
|
+
"name": "menuTemplate",
|
|
1737
1826
|
"declaration": {
|
|
1738
|
-
"name": "
|
|
1739
|
-
"module": "src/
|
|
1827
|
+
"name": "menuTemplate",
|
|
1828
|
+
"module": "src/actions-menu/actions-menu.template.ts"
|
|
1829
|
+
}
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"kind": "js",
|
|
1833
|
+
"name": "singleOptionTemplate",
|
|
1834
|
+
"declaration": {
|
|
1835
|
+
"name": "singleOptionTemplate",
|
|
1836
|
+
"module": "src/actions-menu/actions-menu.template.ts"
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"kind": "js",
|
|
1841
|
+
"name": "foundationActionsMenuTemplate",
|
|
1842
|
+
"declaration": {
|
|
1843
|
+
"name": "foundationActionsMenuTemplate",
|
|
1844
|
+
"module": "src/actions-menu/actions-menu.template.ts"
|
|
1740
1845
|
}
|
|
1741
1846
|
}
|
|
1742
1847
|
]
|
|
1743
1848
|
},
|
|
1744
1849
|
{
|
|
1745
1850
|
"kind": "javascript-module",
|
|
1746
|
-
"path": "src/
|
|
1851
|
+
"path": "src/actions-menu/actions-menu.ts",
|
|
1747
1852
|
"declarations": [
|
|
1748
1853
|
{
|
|
1749
1854
|
"kind": "class",
|
|
1750
1855
|
"description": "",
|
|
1751
|
-
"name": "
|
|
1856
|
+
"name": "ActionsMenu",
|
|
1752
1857
|
"members": [
|
|
1753
1858
|
{
|
|
1754
1859
|
"kind": "field",
|
|
1755
|
-
"name": "
|
|
1860
|
+
"name": "actions",
|
|
1756
1861
|
"type": {
|
|
1757
|
-
"text": "
|
|
1862
|
+
"text": "ActionMenuItem[]"
|
|
1758
1863
|
}
|
|
1759
1864
|
},
|
|
1760
1865
|
{
|
|
1761
1866
|
"kind": "field",
|
|
1762
|
-
"name": "
|
|
1867
|
+
"name": "isVertical",
|
|
1763
1868
|
"type": {
|
|
1764
|
-
"text": "
|
|
1869
|
+
"text": "boolean"
|
|
1765
1870
|
},
|
|
1766
|
-
"default": "
|
|
1871
|
+
"default": "false"
|
|
1767
1872
|
},
|
|
1768
1873
|
{
|
|
1769
1874
|
"kind": "field",
|
|
1770
|
-
"name": "
|
|
1875
|
+
"name": "addDefaultActions",
|
|
1771
1876
|
"type": {
|
|
1772
1877
|
"text": "boolean"
|
|
1773
|
-
}
|
|
1878
|
+
},
|
|
1879
|
+
"default": "true"
|
|
1774
1880
|
},
|
|
1775
1881
|
{
|
|
1776
1882
|
"kind": "field",
|
|
1777
|
-
"name": "
|
|
1883
|
+
"name": "autoCloseOnAction",
|
|
1778
1884
|
"type": {
|
|
1779
|
-
"text": "
|
|
1885
|
+
"text": "boolean"
|
|
1780
1886
|
},
|
|
1781
|
-
"default": "
|
|
1887
|
+
"default": "true"
|
|
1782
1888
|
},
|
|
1783
1889
|
{
|
|
1784
1890
|
"kind": "field",
|
|
1785
|
-
"name": "
|
|
1891
|
+
"name": "classNames",
|
|
1892
|
+
"type": {
|
|
1893
|
+
"text": "string"
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"kind": "field",
|
|
1898
|
+
"name": "definition",
|
|
1899
|
+
"type": {
|
|
1900
|
+
"text": "any"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"kind": "field",
|
|
1905
|
+
"name": "name",
|
|
1786
1906
|
"type": {
|
|
1787
1907
|
"text": "string"
|
|
1788
1908
|
},
|
|
1789
|
-
"default": "''"
|
|
1909
|
+
"default": "'Actions'"
|
|
1790
1910
|
},
|
|
1791
1911
|
{
|
|
1792
1912
|
"kind": "field",
|
|
1793
|
-
"name": "
|
|
1913
|
+
"name": "open",
|
|
1794
1914
|
"type": {
|
|
1795
1915
|
"text": "boolean"
|
|
1796
1916
|
},
|
|
@@ -1798,23 +1918,22 @@
|
|
|
1798
1918
|
},
|
|
1799
1919
|
{
|
|
1800
1920
|
"kind": "field",
|
|
1801
|
-
"name": "
|
|
1921
|
+
"name": "buttonAppearance",
|
|
1802
1922
|
"type": {
|
|
1803
|
-
"text": "string
|
|
1804
|
-
}
|
|
1805
|
-
"default": "null"
|
|
1923
|
+
"text": "string"
|
|
1924
|
+
}
|
|
1806
1925
|
},
|
|
1807
1926
|
{
|
|
1808
1927
|
"kind": "field",
|
|
1809
|
-
"name": "
|
|
1928
|
+
"name": "hideDisabled",
|
|
1810
1929
|
"type": {
|
|
1811
|
-
"text": "
|
|
1930
|
+
"text": "boolean"
|
|
1812
1931
|
},
|
|
1813
|
-
"default": "
|
|
1932
|
+
"default": "false"
|
|
1814
1933
|
},
|
|
1815
1934
|
{
|
|
1816
1935
|
"kind": "field",
|
|
1817
|
-
"name": "
|
|
1936
|
+
"name": "hideMenuSingleOption",
|
|
1818
1937
|
"type": {
|
|
1819
1938
|
"text": "boolean"
|
|
1820
1939
|
},
|
|
@@ -1822,67 +1941,94 @@
|
|
|
1822
1941
|
},
|
|
1823
1942
|
{
|
|
1824
1943
|
"kind": "field",
|
|
1825
|
-
"name": "
|
|
1944
|
+
"name": "singleOption",
|
|
1826
1945
|
"type": {
|
|
1827
|
-
"text": "
|
|
1828
|
-
}
|
|
1829
|
-
"privacy": "public"
|
|
1946
|
+
"text": "ActionMenuItem"
|
|
1947
|
+
}
|
|
1830
1948
|
},
|
|
1831
1949
|
{
|
|
1832
1950
|
"kind": "field",
|
|
1833
|
-
"name": "
|
|
1951
|
+
"name": "actionsMenu",
|
|
1834
1952
|
"type": {
|
|
1835
|
-
"text": "
|
|
1836
|
-
}
|
|
1837
|
-
|
|
1838
|
-
|
|
1953
|
+
"text": "HTMLElement"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"kind": "method",
|
|
1958
|
+
"name": "definitionChanged",
|
|
1959
|
+
"privacy": "protected",
|
|
1960
|
+
"parameters": [
|
|
1961
|
+
{
|
|
1962
|
+
"name": "oldValue",
|
|
1963
|
+
"type": {
|
|
1964
|
+
"text": "any"
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"name": "newValue",
|
|
1969
|
+
"type": {
|
|
1970
|
+
"text": "any"
|
|
1971
|
+
}
|
|
1972
|
+
}
|
|
1973
|
+
]
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"kind": "method",
|
|
1977
|
+
"name": "openChanged",
|
|
1978
|
+
"privacy": "protected"
|
|
1839
1979
|
},
|
|
1840
1980
|
{
|
|
1841
|
-
"kind": "
|
|
1842
|
-
"name": "
|
|
1843
|
-
"type": {
|
|
1844
|
-
"text": "ReturnType<typeof setTimeout> | null"
|
|
1845
|
-
},
|
|
1846
|
-
"privacy": "private",
|
|
1847
|
-
"default": "null"
|
|
1981
|
+
"kind": "method",
|
|
1982
|
+
"name": "toggleActionsMenuVisibility"
|
|
1848
1983
|
},
|
|
1849
1984
|
{
|
|
1850
|
-
"kind": "
|
|
1851
|
-
"name": "
|
|
1852
|
-
"
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1985
|
+
"kind": "method",
|
|
1986
|
+
"name": "onActionMenuItemClick",
|
|
1987
|
+
"parameters": [
|
|
1988
|
+
{
|
|
1989
|
+
"name": "callback",
|
|
1990
|
+
"type": {
|
|
1991
|
+
"text": "(rowData) => void | any"
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
]
|
|
1857
1995
|
},
|
|
1858
1996
|
{
|
|
1859
1997
|
"kind": "field",
|
|
1860
|
-
"name": "
|
|
1998
|
+
"name": "allActions",
|
|
1861
1999
|
"type": {
|
|
1862
|
-
"text": "
|
|
2000
|
+
"text": "ActionMenuItem[]"
|
|
1863
2001
|
},
|
|
1864
2002
|
"readonly": true
|
|
1865
2003
|
},
|
|
1866
2004
|
{
|
|
1867
|
-
"kind": "
|
|
1868
|
-
"name": "
|
|
1869
|
-
|
|
1870
|
-
{
|
|
1871
|
-
"kind": "method",
|
|
1872
|
-
"name": "handleBlur"
|
|
1873
|
-
},
|
|
1874
|
-
{
|
|
1875
|
-
"kind": "method",
|
|
1876
|
-
"name": "clear"
|
|
2005
|
+
"kind": "field",
|
|
2006
|
+
"name": "rowData",
|
|
2007
|
+
"readonly": true
|
|
1877
2008
|
},
|
|
1878
2009
|
{
|
|
1879
2010
|
"kind": "method",
|
|
1880
|
-
"name": "
|
|
2011
|
+
"name": "getLabel",
|
|
2012
|
+
"parameters": [
|
|
2013
|
+
{
|
|
2014
|
+
"name": "name",
|
|
2015
|
+
"type": {
|
|
2016
|
+
"text": "string | ((rowData: any) => string)"
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
2019
|
+
]
|
|
1881
2020
|
},
|
|
1882
2021
|
{
|
|
1883
2022
|
"kind": "method",
|
|
1884
|
-
"name": "
|
|
1885
|
-
"
|
|
2023
|
+
"name": "getTemplate",
|
|
2024
|
+
"parameters": [
|
|
2025
|
+
{
|
|
2026
|
+
"name": "prefix",
|
|
2027
|
+
"type": {
|
|
2028
|
+
"text": "string"
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
]
|
|
1886
2032
|
},
|
|
1887
2033
|
{
|
|
1888
2034
|
"kind": "field",
|
|
@@ -1998,400 +2144,320 @@
|
|
|
1998
2144
|
],
|
|
1999
2145
|
"attributes": [
|
|
2000
2146
|
{
|
|
2001
|
-
"name": "
|
|
2147
|
+
"name": "is-vertical",
|
|
2148
|
+
"type": {
|
|
2149
|
+
"text": "boolean"
|
|
2150
|
+
},
|
|
2151
|
+
"default": "false",
|
|
2152
|
+
"fieldName": "isVertical"
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"name": "add-default-actions",
|
|
2156
|
+
"type": {
|
|
2157
|
+
"text": "boolean"
|
|
2158
|
+
},
|
|
2159
|
+
"default": "true",
|
|
2160
|
+
"fieldName": "addDefaultActions"
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"name": "auto-close-on-action",
|
|
2164
|
+
"type": {
|
|
2165
|
+
"text": "boolean"
|
|
2166
|
+
},
|
|
2167
|
+
"default": "true",
|
|
2168
|
+
"fieldName": "autoCloseOnAction"
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"name": "name",
|
|
2002
2172
|
"type": {
|
|
2003
2173
|
"text": "string"
|
|
2004
2174
|
},
|
|
2005
|
-
"default": "'
|
|
2006
|
-
"fieldName": "
|
|
2175
|
+
"default": "'Actions'",
|
|
2176
|
+
"fieldName": "name"
|
|
2007
2177
|
},
|
|
2008
2178
|
{
|
|
2179
|
+
"name": "open",
|
|
2009
2180
|
"type": {
|
|
2010
2181
|
"text": "boolean"
|
|
2011
2182
|
},
|
|
2012
|
-
"
|
|
2183
|
+
"default": "false",
|
|
2184
|
+
"fieldName": "open"
|
|
2013
2185
|
},
|
|
2014
2186
|
{
|
|
2015
|
-
"name": "
|
|
2187
|
+
"name": "buttonAppearance",
|
|
2016
2188
|
"type": {
|
|
2017
|
-
"text": "
|
|
2189
|
+
"text": "string"
|
|
2018
2190
|
},
|
|
2019
|
-
"
|
|
2020
|
-
|
|
2191
|
+
"fieldName": "buttonAppearance"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"name": "hide-disabled",
|
|
2195
|
+
"type": {
|
|
2196
|
+
"text": "boolean"
|
|
2197
|
+
},
|
|
2198
|
+
"default": "false",
|
|
2199
|
+
"fieldName": "hideDisabled"
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"name": "hide-menu-single-option",
|
|
2203
|
+
"type": {
|
|
2204
|
+
"text": "boolean"
|
|
2205
|
+
},
|
|
2206
|
+
"default": "false",
|
|
2207
|
+
"fieldName": "hideMenuSingleOption"
|
|
2021
2208
|
}
|
|
2022
2209
|
],
|
|
2023
2210
|
"superclass": {
|
|
2024
2211
|
"name": "FoundationElement",
|
|
2025
2212
|
"package": "@microsoft/fast-foundation"
|
|
2026
2213
|
},
|
|
2027
|
-
"tagName": "%%prefix%%-
|
|
2214
|
+
"tagName": "%%prefix%%-actions-menu",
|
|
2028
2215
|
"customElement": true
|
|
2029
2216
|
},
|
|
2030
2217
|
{
|
|
2031
2218
|
"kind": "variable",
|
|
2032
|
-
"name": "
|
|
2033
|
-
"
|
|
2034
|
-
|
|
2035
|
-
},
|
|
2036
|
-
"default": "undefined"
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"kind": "variable",
|
|
2040
|
-
"name": "defaultAiCriteriaSearchConfig",
|
|
2041
|
-
"type": {
|
|
2042
|
-
"text": "object"
|
|
2043
|
-
},
|
|
2044
|
-
"default": "{}"
|
|
2045
|
-
},
|
|
2046
|
-
{
|
|
2047
|
-
"kind": "variable",
|
|
2048
|
-
"name": "foundationAiCriteriaSearch"
|
|
2219
|
+
"name": "foundationActionsMenu",
|
|
2220
|
+
"description": "The Foundation Actions Menu",
|
|
2221
|
+
"privacy": "public"
|
|
2049
2222
|
}
|
|
2050
2223
|
],
|
|
2051
2224
|
"exports": [
|
|
2052
2225
|
{
|
|
2053
2226
|
"kind": "js",
|
|
2054
|
-
"name": "
|
|
2055
|
-
"declaration": {
|
|
2056
|
-
"name": "AiCriteriaSearch",
|
|
2057
|
-
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2058
|
-
}
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
"kind": "js",
|
|
2062
|
-
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2063
|
-
"declaration": {
|
|
2064
|
-
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2065
|
-
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2066
|
-
}
|
|
2067
|
-
},
|
|
2068
|
-
{
|
|
2069
|
-
"kind": "js",
|
|
2070
|
-
"name": "defaultAiCriteriaSearchConfig",
|
|
2227
|
+
"name": "ActionsMenu",
|
|
2071
2228
|
"declaration": {
|
|
2072
|
-
"name": "
|
|
2073
|
-
"module": "src/
|
|
2229
|
+
"name": "ActionsMenu",
|
|
2230
|
+
"module": "src/actions-menu/actions-menu.ts"
|
|
2074
2231
|
}
|
|
2075
2232
|
},
|
|
2076
2233
|
{
|
|
2077
2234
|
"kind": "js",
|
|
2078
|
-
"name": "
|
|
2235
|
+
"name": "foundationActionsMenu",
|
|
2079
2236
|
"declaration": {
|
|
2080
|
-
"name": "
|
|
2081
|
-
"module": "src/
|
|
2237
|
+
"name": "foundationActionsMenu",
|
|
2238
|
+
"module": "src/actions-menu/actions-menu.ts"
|
|
2082
2239
|
}
|
|
2083
2240
|
}
|
|
2084
2241
|
]
|
|
2085
2242
|
},
|
|
2086
2243
|
{
|
|
2087
2244
|
"kind": "javascript-module",
|
|
2088
|
-
"path": "src/
|
|
2245
|
+
"path": "src/actions-menu/index.ts",
|
|
2089
2246
|
"declarations": [],
|
|
2090
2247
|
"exports": [
|
|
2091
2248
|
{
|
|
2092
2249
|
"kind": "js",
|
|
2093
|
-
"name": "
|
|
2250
|
+
"name": "*",
|
|
2094
2251
|
"declaration": {
|
|
2095
|
-
"name": "
|
|
2096
|
-
"
|
|
2252
|
+
"name": "*",
|
|
2253
|
+
"package": "./actions-menu.styles"
|
|
2097
2254
|
}
|
|
2098
2255
|
},
|
|
2099
2256
|
{
|
|
2100
2257
|
"kind": "js",
|
|
2101
|
-
"name": "
|
|
2258
|
+
"name": "*",
|
|
2102
2259
|
"declaration": {
|
|
2103
|
-
"name": "
|
|
2104
|
-
"
|
|
2260
|
+
"name": "*",
|
|
2261
|
+
"package": "./actions-menu.template"
|
|
2105
2262
|
}
|
|
2106
2263
|
},
|
|
2107
2264
|
{
|
|
2108
2265
|
"kind": "js",
|
|
2109
|
-
"name": "
|
|
2266
|
+
"name": "*",
|
|
2110
2267
|
"declaration": {
|
|
2111
|
-
"name": "
|
|
2112
|
-
"
|
|
2268
|
+
"name": "*",
|
|
2269
|
+
"package": "./actions-menu"
|
|
2113
2270
|
}
|
|
2114
|
-
}
|
|
2271
|
+
}
|
|
2272
|
+
]
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"kind": "javascript-module",
|
|
2276
|
+
"path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
|
|
2277
|
+
"declarations": [
|
|
2115
2278
|
{
|
|
2116
|
-
"kind": "
|
|
2117
|
-
"name": "
|
|
2118
|
-
"
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
},
|
|
2279
|
+
"kind": "variable",
|
|
2280
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2281
|
+
"default": "css`\n :host {\n display: block;\n width: 800px;\n }\n\n .ai-criteria-search {\n display: flex;\n flex-direction: column;\n gap: calc(${designUnit} * 2px);\n }\n\n .ai-criteria-search-row {\n display: flex;\n flex-direction: row;\n gap: calc(${designUnit} * 2px);\n align-items: center;\n }\n\n .criteria-input {\n height: calc(((var(--base-height-multiplier) + var(--density)) * var(--design-unit) - 4) * 1px);\n flex: 1;\n min-width: 0;\n }\n\n .mic-icon {\n color: var(--neutral-foreground-rest);\n fill: currentColor;\n }\n\n .mode-control {\n flex-shrink: 0;\n }\n`"
|
|
2282
|
+
}
|
|
2283
|
+
],
|
|
2284
|
+
"exports": [
|
|
2123
2285
|
{
|
|
2124
2286
|
"kind": "js",
|
|
2125
2287
|
"name": "foundationAiCriteriaSearchStyles",
|
|
2126
2288
|
"declaration": {
|
|
2127
2289
|
"name": "foundationAiCriteriaSearchStyles",
|
|
2128
|
-
"module": "
|
|
2290
|
+
"module": "src/ai-criteria-search/ai-criteria-search.styles.ts"
|
|
2129
2291
|
}
|
|
2130
|
-
}
|
|
2292
|
+
}
|
|
2293
|
+
]
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"kind": "javascript-module",
|
|
2297
|
+
"path": "src/ai-criteria-search/ai-criteria-search.template.ts",
|
|
2298
|
+
"declarations": [
|
|
2131
2299
|
{
|
|
2132
|
-
"kind": "
|
|
2300
|
+
"kind": "variable",
|
|
2133
2301
|
"name": "foundationAiCriteriaSearchTemplate",
|
|
2134
|
-
"
|
|
2135
|
-
"
|
|
2136
|
-
|
|
2137
|
-
}
|
|
2138
|
-
}
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
"name": "*",
|
|
2142
|
-
"declaration": {
|
|
2143
|
-
"name": "*",
|
|
2144
|
-
"package": "./validation/criteria-ir"
|
|
2145
|
-
}
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
"kind": "js",
|
|
2149
|
-
"name": "*",
|
|
2150
|
-
"declaration": {
|
|
2151
|
-
"name": "*",
|
|
2152
|
-
"package": "./validation/operator-map"
|
|
2153
|
-
}
|
|
2154
|
-
},
|
|
2302
|
+
"type": {
|
|
2303
|
+
"text": "ViewTemplate<AiCriteriaSearch>"
|
|
2304
|
+
},
|
|
2305
|
+
"default": "html`\n ${(x) => aiCriteriaSearchTemplate(getPrefix(x))}\n`"
|
|
2306
|
+
}
|
|
2307
|
+
],
|
|
2308
|
+
"exports": [
|
|
2155
2309
|
{
|
|
2156
2310
|
"kind": "js",
|
|
2157
|
-
"name": "
|
|
2311
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2158
2312
|
"declaration": {
|
|
2159
|
-
"name": "
|
|
2160
|
-
"
|
|
2313
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2314
|
+
"module": "src/ai-criteria-search/ai-criteria-search.template.ts"
|
|
2161
2315
|
}
|
|
2162
2316
|
}
|
|
2163
2317
|
]
|
|
2164
2318
|
},
|
|
2165
2319
|
{
|
|
2166
2320
|
"kind": "javascript-module",
|
|
2167
|
-
"path": "src/ai-criteria-search/
|
|
2321
|
+
"path": "src/ai-criteria-search/ai-criteria-search.ts",
|
|
2168
2322
|
"declarations": [
|
|
2169
2323
|
{
|
|
2170
|
-
"kind": "
|
|
2171
|
-
"
|
|
2172
|
-
"
|
|
2173
|
-
|
|
2174
|
-
"text": "string"
|
|
2175
|
-
}
|
|
2176
|
-
},
|
|
2177
|
-
"parameters": [
|
|
2324
|
+
"kind": "class",
|
|
2325
|
+
"description": "",
|
|
2326
|
+
"name": "AiCriteriaSearch",
|
|
2327
|
+
"members": [
|
|
2178
2328
|
{
|
|
2179
|
-
"
|
|
2329
|
+
"kind": "field",
|
|
2330
|
+
"name": "aiProvider",
|
|
2180
2331
|
"type": {
|
|
2181
|
-
"text": "
|
|
2332
|
+
"text": "AIProvider"
|
|
2182
2333
|
}
|
|
2183
|
-
}
|
|
2184
|
-
],
|
|
2185
|
-
"description": "Formats validation errors into a user-friendly message."
|
|
2186
|
-
},
|
|
2187
|
-
{
|
|
2188
|
-
"kind": "function",
|
|
2189
|
-
"name": "showCriteriaError",
|
|
2190
|
-
"return": {
|
|
2191
|
-
"type": {
|
|
2192
|
-
"text": "void"
|
|
2193
|
-
}
|
|
2194
|
-
},
|
|
2195
|
-
"parameters": [
|
|
2334
|
+
},
|
|
2196
2335
|
{
|
|
2197
|
-
"
|
|
2336
|
+
"kind": "field",
|
|
2337
|
+
"name": "placeholder",
|
|
2198
2338
|
"type": {
|
|
2199
2339
|
"text": "string"
|
|
2200
2340
|
},
|
|
2201
|
-
"
|
|
2341
|
+
"default": "'Describe your search criteria in natural language...'"
|
|
2202
2342
|
},
|
|
2203
2343
|
{
|
|
2204
|
-
"
|
|
2344
|
+
"kind": "field",
|
|
2345
|
+
"name": "disabled",
|
|
2205
2346
|
"type": {
|
|
2206
|
-
"text": "
|
|
2347
|
+
"text": "boolean"
|
|
2348
|
+
}
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"kind": "field",
|
|
2352
|
+
"name": "mode",
|
|
2353
|
+
"type": {
|
|
2354
|
+
"text": "'append' | 'replace'"
|
|
2207
2355
|
},
|
|
2208
|
-
"
|
|
2356
|
+
"default": "'replace'"
|
|
2209
2357
|
},
|
|
2210
2358
|
{
|
|
2211
|
-
"
|
|
2359
|
+
"kind": "field",
|
|
2360
|
+
"name": "inputValue",
|
|
2212
2361
|
"type": {
|
|
2213
2362
|
"text": "string"
|
|
2214
2363
|
},
|
|
2215
|
-
"
|
|
2216
|
-
}
|
|
2217
|
-
],
|
|
2218
|
-
"description": "Shows a criteria error as a toast notification."
|
|
2219
|
-
}
|
|
2220
|
-
],
|
|
2221
|
-
"exports": [
|
|
2222
|
-
{
|
|
2223
|
-
"kind": "js",
|
|
2224
|
-
"name": "formatValidationErrors",
|
|
2225
|
-
"declaration": {
|
|
2226
|
-
"name": "formatValidationErrors",
|
|
2227
|
-
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2228
|
-
}
|
|
2229
|
-
},
|
|
2230
|
-
{
|
|
2231
|
-
"kind": "js",
|
|
2232
|
-
"name": "showCriteriaError",
|
|
2233
|
-
"declaration": {
|
|
2234
|
-
"name": "showCriteriaError",
|
|
2235
|
-
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2236
|
-
}
|
|
2237
|
-
}
|
|
2238
|
-
]
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
"kind": "javascript-module",
|
|
2242
|
-
"path": "src/_common/base-file-component.ts",
|
|
2243
|
-
"declarations": [
|
|
2244
|
-
{
|
|
2245
|
-
"kind": "class",
|
|
2246
|
-
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
2247
|
-
"name": "BaseFileComponent",
|
|
2248
|
-
"members": [
|
|
2364
|
+
"default": "''"
|
|
2365
|
+
},
|
|
2249
2366
|
{
|
|
2250
2367
|
"kind": "field",
|
|
2251
|
-
"name": "
|
|
2368
|
+
"name": "isInterpreting",
|
|
2252
2369
|
"type": {
|
|
2253
|
-
"text": "
|
|
2370
|
+
"text": "boolean"
|
|
2254
2371
|
},
|
|
2255
|
-
"
|
|
2372
|
+
"default": "false"
|
|
2256
2373
|
},
|
|
2257
2374
|
{
|
|
2258
2375
|
"kind": "field",
|
|
2259
|
-
"name": "
|
|
2376
|
+
"name": "lastValidCriteria",
|
|
2260
2377
|
"type": {
|
|
2261
|
-
"text": "
|
|
2378
|
+
"text": "string | null"
|
|
2262
2379
|
},
|
|
2263
|
-
"privacy": "protected",
|
|
2264
2380
|
"default": "null"
|
|
2265
2381
|
},
|
|
2266
2382
|
{
|
|
2267
2383
|
"kind": "field",
|
|
2268
|
-
"name": "
|
|
2384
|
+
"name": "fieldMetadata",
|
|
2269
2385
|
"type": {
|
|
2270
|
-
"text": "string"
|
|
2271
|
-
}
|
|
2386
|
+
"text": "MetadataDetail[] | string[]"
|
|
2387
|
+
},
|
|
2388
|
+
"default": "[]"
|
|
2272
2389
|
},
|
|
2273
2390
|
{
|
|
2274
2391
|
"kind": "field",
|
|
2275
|
-
"name": "
|
|
2392
|
+
"name": "isRecording",
|
|
2276
2393
|
"type": {
|
|
2277
|
-
"text": "
|
|
2394
|
+
"text": "boolean"
|
|
2278
2395
|
},
|
|
2279
|
-
"default": "
|
|
2396
|
+
"default": "false"
|
|
2280
2397
|
},
|
|
2281
2398
|
{
|
|
2282
2399
|
"kind": "field",
|
|
2283
|
-
"name": "
|
|
2284
|
-
"default": "10_485_760",
|
|
2400
|
+
"name": "textAreaRef",
|
|
2285
2401
|
"type": {
|
|
2286
|
-
"text": "
|
|
2287
|
-
}
|
|
2402
|
+
"text": "HTMLTextAreaElement"
|
|
2403
|
+
},
|
|
2404
|
+
"privacy": "public"
|
|
2288
2405
|
},
|
|
2289
2406
|
{
|
|
2290
2407
|
"kind": "field",
|
|
2291
|
-
"name": "
|
|
2408
|
+
"name": "stopRecording",
|
|
2292
2409
|
"type": {
|
|
2293
|
-
"text": "
|
|
2410
|
+
"text": "(() => void) | null"
|
|
2294
2411
|
},
|
|
2295
|
-
"
|
|
2412
|
+
"privacy": "private",
|
|
2413
|
+
"default": "null"
|
|
2296
2414
|
},
|
|
2297
2415
|
{
|
|
2298
2416
|
"kind": "field",
|
|
2299
|
-
"name": "
|
|
2417
|
+
"name": "speechApplyDebounceTimer",
|
|
2300
2418
|
"type": {
|
|
2301
|
-
"text": "
|
|
2419
|
+
"text": "ReturnType<typeof setTimeout> | null"
|
|
2302
2420
|
},
|
|
2303
|
-
"
|
|
2421
|
+
"privacy": "private",
|
|
2422
|
+
"default": "null"
|
|
2304
2423
|
},
|
|
2305
2424
|
{
|
|
2306
|
-
"kind": "
|
|
2307
|
-
"name": "
|
|
2308
|
-
"
|
|
2309
|
-
|
|
2425
|
+
"kind": "field",
|
|
2426
|
+
"name": "baseInputForAppend",
|
|
2427
|
+
"type": {
|
|
2428
|
+
"text": "string"
|
|
2429
|
+
},
|
|
2430
|
+
"privacy": "private",
|
|
2431
|
+
"default": "''"
|
|
2310
2432
|
},
|
|
2311
2433
|
{
|
|
2312
|
-
"kind": "
|
|
2313
|
-
"name": "
|
|
2314
|
-
"
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
"type": {
|
|
2319
|
-
"text": "Event"
|
|
2320
|
-
},
|
|
2321
|
-
"description": "The change event from the file input"
|
|
2322
|
-
}
|
|
2323
|
-
],
|
|
2324
|
-
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
2434
|
+
"kind": "field",
|
|
2435
|
+
"name": "speechAvailable",
|
|
2436
|
+
"type": {
|
|
2437
|
+
"text": "boolean"
|
|
2438
|
+
},
|
|
2439
|
+
"readonly": true
|
|
2325
2440
|
},
|
|
2326
2441
|
{
|
|
2327
2442
|
"kind": "method",
|
|
2328
|
-
"name": "
|
|
2329
|
-
"privacy": "public",
|
|
2330
|
-
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
2443
|
+
"name": "handleSubmit"
|
|
2331
2444
|
},
|
|
2332
2445
|
{
|
|
2333
2446
|
"kind": "method",
|
|
2334
|
-
"name": "
|
|
2335
|
-
"privacy": "public",
|
|
2336
|
-
"description": "Gets the currently selected file object",
|
|
2337
|
-
"return": {
|
|
2338
|
-
"type": {
|
|
2339
|
-
"text": ""
|
|
2340
|
-
}
|
|
2341
|
-
}
|
|
2447
|
+
"name": "handleBlur"
|
|
2342
2448
|
},
|
|
2343
2449
|
{
|
|
2344
2450
|
"kind": "method",
|
|
2345
|
-
"name": "
|
|
2346
|
-
"privacy": "protected",
|
|
2347
|
-
"parameters": [
|
|
2348
|
-
{
|
|
2349
|
-
"name": "title",
|
|
2350
|
-
"type": {
|
|
2351
|
-
"text": "string"
|
|
2352
|
-
},
|
|
2353
|
-
"description": "The error title"
|
|
2354
|
-
},
|
|
2355
|
-
{
|
|
2356
|
-
"name": "message",
|
|
2357
|
-
"type": {
|
|
2358
|
-
"text": "string"
|
|
2359
|
-
},
|
|
2360
|
-
"description": "The error message"
|
|
2361
|
-
}
|
|
2362
|
-
],
|
|
2363
|
-
"description": "Shows an error notification using the unified error handling system"
|
|
2451
|
+
"name": "clear"
|
|
2364
2452
|
},
|
|
2365
2453
|
{
|
|
2366
2454
|
"kind": "method",
|
|
2367
|
-
"name": "
|
|
2368
|
-
"privacy": "protected",
|
|
2369
|
-
"return": {
|
|
2370
|
-
"type": {
|
|
2371
|
-
"text": "void"
|
|
2372
|
-
}
|
|
2373
|
-
},
|
|
2374
|
-
"parameters": [
|
|
2375
|
-
{
|
|
2376
|
-
"name": "files",
|
|
2377
|
-
"type": {
|
|
2378
|
-
"text": "File[]"
|
|
2379
|
-
},
|
|
2380
|
-
"description": "The selected file"
|
|
2381
|
-
}
|
|
2382
|
-
],
|
|
2383
|
-
"description": "Abstract method called when a file is selected"
|
|
2455
|
+
"name": "toggleSpeechInput"
|
|
2384
2456
|
},
|
|
2385
2457
|
{
|
|
2386
2458
|
"kind": "method",
|
|
2387
|
-
"name": "
|
|
2388
|
-
"privacy": "
|
|
2389
|
-
"return": {
|
|
2390
|
-
"type": {
|
|
2391
|
-
"text": "void"
|
|
2392
|
-
}
|
|
2393
|
-
},
|
|
2394
|
-
"description": "Abstract method called when file selection is cleared"
|
|
2459
|
+
"name": "clearSpeechApplyDebounce",
|
|
2460
|
+
"privacy": "private"
|
|
2395
2461
|
},
|
|
2396
2462
|
{
|
|
2397
2463
|
"kind": "field",
|
|
@@ -2507,545 +2573,434 @@
|
|
|
2507
2573
|
],
|
|
2508
2574
|
"attributes": [
|
|
2509
2575
|
{
|
|
2510
|
-
"name": "
|
|
2576
|
+
"name": "placeholder",
|
|
2511
2577
|
"type": {
|
|
2512
2578
|
"text": "string"
|
|
2513
2579
|
},
|
|
2514
|
-
"
|
|
2580
|
+
"default": "'Describe your search criteria in natural language...'",
|
|
2581
|
+
"fieldName": "placeholder"
|
|
2515
2582
|
},
|
|
2516
2583
|
{
|
|
2517
|
-
"name": "accept",
|
|
2518
2584
|
"type": {
|
|
2519
|
-
"text": "
|
|
2585
|
+
"text": "boolean"
|
|
2520
2586
|
},
|
|
2521
|
-
"
|
|
2522
|
-
"fieldName": "accept"
|
|
2587
|
+
"fieldName": "disabled"
|
|
2523
2588
|
},
|
|
2524
2589
|
{
|
|
2525
|
-
"name": "
|
|
2526
|
-
"
|
|
2527
|
-
|
|
2528
|
-
"module": "src/_common/base-file-component.ts"
|
|
2590
|
+
"name": "mode",
|
|
2591
|
+
"type": {
|
|
2592
|
+
"text": "'append' | 'replace'"
|
|
2529
2593
|
},
|
|
2530
|
-
"
|
|
2594
|
+
"default": "'replace'",
|
|
2595
|
+
"fieldName": "mode"
|
|
2531
2596
|
}
|
|
2532
2597
|
],
|
|
2533
2598
|
"superclass": {
|
|
2534
2599
|
"name": "FoundationElement",
|
|
2535
2600
|
"package": "@microsoft/fast-foundation"
|
|
2536
|
-
}
|
|
2601
|
+
},
|
|
2602
|
+
"tagName": "%%prefix%%-ai-criteria-search",
|
|
2603
|
+
"customElement": true
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"kind": "variable",
|
|
2607
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2608
|
+
"type": {
|
|
2609
|
+
"text": "ShadowRootInit"
|
|
2610
|
+
},
|
|
2611
|
+
"default": "undefined"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"kind": "variable",
|
|
2615
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2616
|
+
"type": {
|
|
2617
|
+
"text": "object"
|
|
2618
|
+
},
|
|
2619
|
+
"default": "{}"
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"kind": "variable",
|
|
2623
|
+
"name": "foundationAiCriteriaSearch"
|
|
2537
2624
|
}
|
|
2538
2625
|
],
|
|
2539
2626
|
"exports": [
|
|
2540
2627
|
{
|
|
2541
2628
|
"kind": "js",
|
|
2542
|
-
"name": "
|
|
2629
|
+
"name": "AiCriteriaSearch",
|
|
2543
2630
|
"declaration": {
|
|
2544
|
-
"name": "
|
|
2545
|
-
"module": "src/
|
|
2631
|
+
"name": "AiCriteriaSearch",
|
|
2632
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2546
2633
|
}
|
|
2547
|
-
}
|
|
2548
|
-
]
|
|
2549
|
-
},
|
|
2550
|
-
{
|
|
2551
|
-
"kind": "javascript-module",
|
|
2552
|
-
"path": "src/_common/icons.ts",
|
|
2553
|
-
"declarations": [
|
|
2634
|
+
},
|
|
2554
2635
|
{
|
|
2555
|
-
"kind": "
|
|
2556
|
-
"name": "
|
|
2557
|
-
"
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
{
|
|
2563
|
-
"name": "fill",
|
|
2564
|
-
"default": "'#879ba6'"
|
|
2565
|
-
}
|
|
2566
|
-
]
|
|
2567
|
-
}
|
|
2568
|
-
],
|
|
2569
|
-
"exports": [
|
|
2636
|
+
"kind": "js",
|
|
2637
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2638
|
+
"declaration": {
|
|
2639
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2640
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2570
2643
|
{
|
|
2571
2644
|
"kind": "js",
|
|
2572
|
-
"name": "
|
|
2645
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2573
2646
|
"declaration": {
|
|
2574
|
-
"name": "
|
|
2575
|
-
"module": "src/
|
|
2647
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2648
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2649
|
+
}
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"kind": "js",
|
|
2653
|
+
"name": "foundationAiCriteriaSearch",
|
|
2654
|
+
"declaration": {
|
|
2655
|
+
"name": "foundationAiCriteriaSearch",
|
|
2656
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2576
2657
|
}
|
|
2577
2658
|
}
|
|
2578
2659
|
]
|
|
2579
2660
|
},
|
|
2580
2661
|
{
|
|
2581
2662
|
"kind": "javascript-module",
|
|
2582
|
-
"path": "src/
|
|
2663
|
+
"path": "src/ai-criteria-search/index.ts",
|
|
2583
2664
|
"declarations": [],
|
|
2584
2665
|
"exports": [
|
|
2585
2666
|
{
|
|
2586
2667
|
"kind": "js",
|
|
2587
|
-
"name": "
|
|
2668
|
+
"name": "AiCriteriaSearch",
|
|
2588
2669
|
"declaration": {
|
|
2589
|
-
"name": "
|
|
2590
|
-
"
|
|
2670
|
+
"name": "AiCriteriaSearch",
|
|
2671
|
+
"module": "./ai-criteria-search"
|
|
2591
2672
|
}
|
|
2592
2673
|
},
|
|
2593
2674
|
{
|
|
2594
2675
|
"kind": "js",
|
|
2595
|
-
"name": "
|
|
2676
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2596
2677
|
"declaration": {
|
|
2597
|
-
"name": "
|
|
2598
|
-
"
|
|
2678
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2679
|
+
"module": "./ai-criteria-search"
|
|
2599
2680
|
}
|
|
2600
|
-
}
|
|
2601
|
-
]
|
|
2602
|
-
},
|
|
2603
|
-
{
|
|
2604
|
-
"kind": "javascript-module",
|
|
2605
|
-
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
2606
|
-
"declarations": [
|
|
2681
|
+
},
|
|
2607
2682
|
{
|
|
2608
|
-
"kind": "
|
|
2609
|
-
"name": "
|
|
2610
|
-
"
|
|
2611
|
-
"
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
"parameters": [
|
|
2616
|
-
{
|
|
2617
|
-
"name": "context",
|
|
2618
|
-
"type": {
|
|
2619
|
-
"text": "ElementDefinitionContext"
|
|
2620
|
-
}
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
"name": "definition",
|
|
2624
|
-
"type": {
|
|
2625
|
-
"text": "FoundationElementDefinition"
|
|
2626
|
-
}
|
|
2627
|
-
}
|
|
2628
|
-
]
|
|
2629
|
-
}
|
|
2630
|
-
],
|
|
2631
|
-
"exports": [
|
|
2683
|
+
"kind": "js",
|
|
2684
|
+
"name": "foundationAiCriteriaSearch",
|
|
2685
|
+
"declaration": {
|
|
2686
|
+
"name": "foundationAiCriteriaSearch",
|
|
2687
|
+
"module": "./ai-criteria-search"
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2632
2690
|
{
|
|
2633
2691
|
"kind": "js",
|
|
2634
|
-
"name": "
|
|
2692
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2635
2693
|
"declaration": {
|
|
2636
|
-
"name": "
|
|
2637
|
-
"module": "
|
|
2694
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2695
|
+
"module": "./ai-criteria-search"
|
|
2638
2696
|
}
|
|
2639
|
-
}
|
|
2640
|
-
]
|
|
2641
|
-
},
|
|
2642
|
-
{
|
|
2643
|
-
"kind": "javascript-module",
|
|
2644
|
-
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
2645
|
-
"declarations": [
|
|
2697
|
+
},
|
|
2646
2698
|
{
|
|
2647
|
-
"kind": "
|
|
2648
|
-
"name": "
|
|
2649
|
-
"
|
|
2650
|
-
"
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
}
|
|
2654
|
-
],
|
|
2655
|
-
"exports": [
|
|
2699
|
+
"kind": "js",
|
|
2700
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2701
|
+
"declaration": {
|
|
2702
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2703
|
+
"module": "./ai-criteria-search.styles"
|
|
2704
|
+
}
|
|
2705
|
+
},
|
|
2656
2706
|
{
|
|
2657
2707
|
"kind": "js",
|
|
2658
|
-
"name": "
|
|
2708
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2659
2709
|
"declaration": {
|
|
2660
|
-
"name": "
|
|
2661
|
-
"module": "
|
|
2710
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2711
|
+
"module": "./ai-criteria-search.template"
|
|
2662
2712
|
}
|
|
2663
|
-
}
|
|
2664
|
-
]
|
|
2665
|
-
},
|
|
2666
|
-
{
|
|
2667
|
-
"kind": "javascript-module",
|
|
2668
|
-
"path": "src/ai-indicator/ai-indicator.ts",
|
|
2669
|
-
"declarations": [
|
|
2713
|
+
},
|
|
2670
2714
|
{
|
|
2671
|
-
"kind": "
|
|
2672
|
-
"
|
|
2673
|
-
"
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
"type": {
|
|
2710
|
-
"text": "boolean"
|
|
2711
|
-
},
|
|
2712
|
-
"default": "false"
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"kind": "field",
|
|
2716
|
-
"name": "pollTimer",
|
|
2717
|
-
"type": {
|
|
2718
|
-
"text": "ReturnType<typeof setInterval> | null"
|
|
2719
|
-
},
|
|
2720
|
-
"privacy": "private",
|
|
2721
|
-
"default": "null"
|
|
2722
|
-
},
|
|
2723
|
-
{
|
|
2724
|
-
"kind": "field",
|
|
2725
|
-
"name": "clickOutside",
|
|
2726
|
-
"privacy": "private"
|
|
2727
|
-
},
|
|
2728
|
-
{
|
|
2729
|
-
"kind": "field",
|
|
2730
|
-
"name": "chromeStatusLabel",
|
|
2731
|
-
"type": {
|
|
2732
|
-
"text": "string | null"
|
|
2733
|
-
},
|
|
2734
|
-
"readonly": true
|
|
2735
|
-
},
|
|
2736
|
-
{
|
|
2737
|
-
"kind": "field",
|
|
2738
|
-
"name": "canInstall",
|
|
2739
|
-
"type": {
|
|
2740
|
-
"text": "boolean"
|
|
2741
|
-
},
|
|
2742
|
-
"readonly": true
|
|
2743
|
-
},
|
|
2715
|
+
"kind": "js",
|
|
2716
|
+
"name": "*",
|
|
2717
|
+
"declaration": {
|
|
2718
|
+
"name": "*",
|
|
2719
|
+
"package": "./validation/criteria-ir"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
{
|
|
2723
|
+
"kind": "js",
|
|
2724
|
+
"name": "*",
|
|
2725
|
+
"declaration": {
|
|
2726
|
+
"name": "*",
|
|
2727
|
+
"package": "./validation/operator-map"
|
|
2728
|
+
}
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
"kind": "js",
|
|
2732
|
+
"name": "*",
|
|
2733
|
+
"declaration": {
|
|
2734
|
+
"name": "*",
|
|
2735
|
+
"package": "./validation/schema-validator"
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2738
|
+
]
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "javascript-module",
|
|
2742
|
+
"path": "src/ai-criteria-search/validation-error-notification.ts",
|
|
2743
|
+
"declarations": [
|
|
2744
|
+
{
|
|
2745
|
+
"kind": "function",
|
|
2746
|
+
"name": "formatValidationErrors",
|
|
2747
|
+
"return": {
|
|
2748
|
+
"type": {
|
|
2749
|
+
"text": "string"
|
|
2750
|
+
}
|
|
2751
|
+
},
|
|
2752
|
+
"parameters": [
|
|
2744
2753
|
{
|
|
2745
|
-
"
|
|
2746
|
-
"name": "isDownloading",
|
|
2754
|
+
"name": "errors",
|
|
2747
2755
|
"type": {
|
|
2748
|
-
"text": "
|
|
2749
|
-
},
|
|
2750
|
-
"readonly": true
|
|
2751
|
-
},
|
|
2752
|
-
{
|
|
2753
|
-
"kind": "method",
|
|
2754
|
-
"name": "openChanged",
|
|
2755
|
-
"return": {
|
|
2756
|
-
"type": {
|
|
2757
|
-
"text": "void"
|
|
2758
|
-
}
|
|
2759
|
-
}
|
|
2760
|
-
},
|
|
2761
|
-
{
|
|
2762
|
-
"kind": "method",
|
|
2763
|
-
"name": "handleClickOutside",
|
|
2764
|
-
"privacy": "private",
|
|
2765
|
-
"parameters": [
|
|
2766
|
-
{
|
|
2767
|
-
"name": "event",
|
|
2768
|
-
"type": {
|
|
2769
|
-
"text": "MouseEvent"
|
|
2770
|
-
}
|
|
2771
|
-
}
|
|
2772
|
-
]
|
|
2773
|
-
},
|
|
2774
|
-
{
|
|
2775
|
-
"kind": "method",
|
|
2776
|
-
"name": "toggleDropdown"
|
|
2777
|
-
},
|
|
2778
|
-
{
|
|
2779
|
-
"kind": "method",
|
|
2780
|
-
"name": "refreshStatus",
|
|
2781
|
-
"return": {
|
|
2782
|
-
"type": {
|
|
2783
|
-
"text": "Promise<void>"
|
|
2784
|
-
}
|
|
2785
|
-
}
|
|
2786
|
-
},
|
|
2787
|
-
{
|
|
2788
|
-
"kind": "method",
|
|
2789
|
-
"name": "deriveState",
|
|
2790
|
-
"privacy": "private",
|
|
2791
|
-
"return": {
|
|
2792
|
-
"type": {
|
|
2793
|
-
"text": "AIIndicatorState"
|
|
2794
|
-
}
|
|
2795
|
-
},
|
|
2796
|
-
"parameters": [
|
|
2797
|
-
{
|
|
2798
|
-
"name": "s",
|
|
2799
|
-
"type": {
|
|
2800
|
-
"text": "AIStatus | null"
|
|
2801
|
-
}
|
|
2802
|
-
}
|
|
2803
|
-
]
|
|
2804
|
-
},
|
|
2805
|
-
{
|
|
2806
|
-
"kind": "method",
|
|
2807
|
-
"name": "maybeStartPolling",
|
|
2808
|
-
"privacy": "private",
|
|
2809
|
-
"return": {
|
|
2810
|
-
"type": {
|
|
2811
|
-
"text": "void"
|
|
2812
|
-
}
|
|
2813
|
-
}
|
|
2814
|
-
},
|
|
2815
|
-
{
|
|
2816
|
-
"kind": "method",
|
|
2817
|
-
"name": "startPolling",
|
|
2818
|
-
"privacy": "private",
|
|
2819
|
-
"return": {
|
|
2820
|
-
"type": {
|
|
2821
|
-
"text": "void"
|
|
2822
|
-
}
|
|
2823
|
-
}
|
|
2824
|
-
},
|
|
2825
|
-
{
|
|
2826
|
-
"kind": "method",
|
|
2827
|
-
"name": "stopPolling",
|
|
2828
|
-
"privacy": "private",
|
|
2829
|
-
"return": {
|
|
2830
|
-
"type": {
|
|
2831
|
-
"text": "void"
|
|
2832
|
-
}
|
|
2833
|
-
}
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"kind": "method",
|
|
2837
|
-
"name": "onInstall",
|
|
2838
|
-
"return": {
|
|
2839
|
-
"type": {
|
|
2840
|
-
"text": "Promise<void>"
|
|
2841
|
-
}
|
|
2756
|
+
"text": "ValidationError[]"
|
|
2842
2757
|
}
|
|
2843
|
-
}
|
|
2758
|
+
}
|
|
2759
|
+
],
|
|
2760
|
+
"description": "Formats validation errors into a user-friendly message."
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
"kind": "function",
|
|
2764
|
+
"name": "showCriteriaError",
|
|
2765
|
+
"return": {
|
|
2766
|
+
"type": {
|
|
2767
|
+
"text": "void"
|
|
2768
|
+
}
|
|
2769
|
+
},
|
|
2770
|
+
"parameters": [
|
|
2844
2771
|
{
|
|
2845
|
-
"
|
|
2846
|
-
"name": "_presentation",
|
|
2772
|
+
"name": "title",
|
|
2847
2773
|
"type": {
|
|
2848
|
-
"text": "
|
|
2774
|
+
"text": "string"
|
|
2849
2775
|
},
|
|
2850
|
-
"
|
|
2851
|
-
"default": "void 0",
|
|
2852
|
-
"inheritedFrom": {
|
|
2853
|
-
"name": "FoundationElement",
|
|
2854
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2855
|
-
}
|
|
2776
|
+
"description": "Notification title (e.g. \"Criteria validation error\")"
|
|
2856
2777
|
},
|
|
2857
2778
|
{
|
|
2858
|
-
"
|
|
2859
|
-
"name": "$presentation",
|
|
2779
|
+
"name": "body",
|
|
2860
2780
|
"type": {
|
|
2861
|
-
"text": "
|
|
2781
|
+
"text": "string"
|
|
2862
2782
|
},
|
|
2863
|
-
"
|
|
2864
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
2865
|
-
"inheritedFrom": {
|
|
2866
|
-
"name": "FoundationElement",
|
|
2867
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2868
|
-
}
|
|
2783
|
+
"description": "Error message to display"
|
|
2869
2784
|
},
|
|
2870
2785
|
{
|
|
2871
|
-
"
|
|
2872
|
-
"name": "template",
|
|
2786
|
+
"name": "tagName",
|
|
2873
2787
|
"type": {
|
|
2874
|
-
"text": "
|
|
2788
|
+
"text": "string"
|
|
2875
2789
|
},
|
|
2876
|
-
"
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2790
|
+
"description": "Design system prefix (e.g. \"rapid\", \"foundation\")"
|
|
2791
|
+
}
|
|
2792
|
+
],
|
|
2793
|
+
"description": "Shows a criteria error as a toast notification."
|
|
2794
|
+
}
|
|
2795
|
+
],
|
|
2796
|
+
"exports": [
|
|
2797
|
+
{
|
|
2798
|
+
"kind": "js",
|
|
2799
|
+
"name": "formatValidationErrors",
|
|
2800
|
+
"declaration": {
|
|
2801
|
+
"name": "formatValidationErrors",
|
|
2802
|
+
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2803
|
+
}
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"kind": "js",
|
|
2807
|
+
"name": "showCriteriaError",
|
|
2808
|
+
"declaration": {
|
|
2809
|
+
"name": "showCriteriaError",
|
|
2810
|
+
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
]
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"kind": "javascript-module",
|
|
2817
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
2818
|
+
"declarations": [
|
|
2819
|
+
{
|
|
2820
|
+
"kind": "function",
|
|
2821
|
+
"name": "foundationAccordionStyles",
|
|
2822
|
+
"return": {
|
|
2823
|
+
"type": {
|
|
2824
|
+
"text": "ElementStyles"
|
|
2825
|
+
}
|
|
2826
|
+
},
|
|
2827
|
+
"parameters": [
|
|
2883
2828
|
{
|
|
2884
|
-
"
|
|
2885
|
-
"
|
|
2886
|
-
|
|
2887
|
-
"return": {
|
|
2888
|
-
"type": {
|
|
2889
|
-
"text": "void"
|
|
2890
|
-
}
|
|
2891
|
-
},
|
|
2892
|
-
"inheritedFrom": {
|
|
2893
|
-
"name": "FoundationElement",
|
|
2894
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2829
|
+
"name": "context",
|
|
2830
|
+
"type": {
|
|
2831
|
+
"text": "ElementDefinitionContext"
|
|
2895
2832
|
}
|
|
2896
2833
|
},
|
|
2897
2834
|
{
|
|
2898
|
-
"
|
|
2899
|
-
"name": "styles",
|
|
2835
|
+
"name": "definition",
|
|
2900
2836
|
"type": {
|
|
2901
|
-
"text": "
|
|
2902
|
-
},
|
|
2903
|
-
"privacy": "public",
|
|
2904
|
-
"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.",
|
|
2905
|
-
"inheritedFrom": {
|
|
2906
|
-
"name": "FoundationElement",
|
|
2907
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2837
|
+
"text": "FoundationElementDefinition"
|
|
2908
2838
|
}
|
|
2909
|
-
}
|
|
2839
|
+
}
|
|
2840
|
+
]
|
|
2841
|
+
}
|
|
2842
|
+
],
|
|
2843
|
+
"exports": [
|
|
2844
|
+
{
|
|
2845
|
+
"kind": "js",
|
|
2846
|
+
"name": "foundationAccordionStyles",
|
|
2847
|
+
"declaration": {
|
|
2848
|
+
"name": "foundationAccordionStyles",
|
|
2849
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
]
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
"kind": "javascript-module",
|
|
2856
|
+
"path": "src/accordion/accordion.template.ts",
|
|
2857
|
+
"declarations": [
|
|
2858
|
+
{
|
|
2859
|
+
"kind": "function",
|
|
2860
|
+
"name": "foundationAccordionTemplate",
|
|
2861
|
+
"return": {
|
|
2862
|
+
"type": {
|
|
2863
|
+
"text": "ViewTemplate<Accordion>"
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2866
|
+
"parameters": [
|
|
2910
2867
|
{
|
|
2911
|
-
"
|
|
2912
|
-
"
|
|
2913
|
-
|
|
2914
|
-
"return": {
|
|
2915
|
-
"type": {
|
|
2916
|
-
"text": "void"
|
|
2917
|
-
}
|
|
2918
|
-
},
|
|
2919
|
-
"inheritedFrom": {
|
|
2920
|
-
"name": "FoundationElement",
|
|
2921
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2868
|
+
"name": "context",
|
|
2869
|
+
"type": {
|
|
2870
|
+
"text": "ElementDefinitionContext"
|
|
2922
2871
|
}
|
|
2923
2872
|
},
|
|
2924
2873
|
{
|
|
2925
|
-
"
|
|
2926
|
-
"
|
|
2927
|
-
|
|
2928
|
-
"static": true,
|
|
2929
|
-
"return": {
|
|
2930
|
-
"type": {
|
|
2931
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
2932
|
-
}
|
|
2933
|
-
},
|
|
2934
|
-
"parameters": [
|
|
2935
|
-
{
|
|
2936
|
-
"name": "this",
|
|
2937
|
-
"type": {
|
|
2938
|
-
"text": "K"
|
|
2939
|
-
}
|
|
2940
|
-
},
|
|
2941
|
-
{
|
|
2942
|
-
"name": "elementDefinition",
|
|
2943
|
-
"type": {
|
|
2944
|
-
"text": "T"
|
|
2945
|
-
},
|
|
2946
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
2947
|
-
}
|
|
2948
|
-
],
|
|
2949
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
2950
|
-
"inheritedFrom": {
|
|
2951
|
-
"name": "FoundationElement",
|
|
2952
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2874
|
+
"name": "definition",
|
|
2875
|
+
"type": {
|
|
2876
|
+
"text": "FoundationElementDefinition"
|
|
2953
2877
|
}
|
|
2954
2878
|
}
|
|
2955
|
-
]
|
|
2879
|
+
]
|
|
2880
|
+
}
|
|
2881
|
+
],
|
|
2882
|
+
"exports": [
|
|
2883
|
+
{
|
|
2884
|
+
"kind": "js",
|
|
2885
|
+
"name": "foundationAccordionTemplate",
|
|
2886
|
+
"declaration": {
|
|
2887
|
+
"name": "foundationAccordionTemplate",
|
|
2888
|
+
"module": "src/accordion/accordion.template.ts"
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
]
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
"kind": "javascript-module",
|
|
2895
|
+
"path": "src/accordion/accordion.ts",
|
|
2896
|
+
"declarations": [
|
|
2897
|
+
{
|
|
2898
|
+
"kind": "class",
|
|
2899
|
+
"description": "",
|
|
2900
|
+
"name": "Accordion",
|
|
2956
2901
|
"superclass": {
|
|
2957
|
-
"name": "
|
|
2902
|
+
"name": "FASTAccordion",
|
|
2958
2903
|
"package": "@microsoft/fast-foundation"
|
|
2959
2904
|
},
|
|
2960
|
-
"tagName": "%%prefix%%-
|
|
2905
|
+
"tagName": "%%prefix%%-accordion",
|
|
2961
2906
|
"customElement": true
|
|
2962
2907
|
},
|
|
2963
2908
|
{
|
|
2964
2909
|
"kind": "variable",
|
|
2965
|
-
"name": "
|
|
2910
|
+
"name": "foundationAccordionShadowOptions",
|
|
2911
|
+
"type": {
|
|
2912
|
+
"text": "ShadowRootInit"
|
|
2913
|
+
},
|
|
2914
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"kind": "variable",
|
|
2918
|
+
"name": "defaultAccordionConfig",
|
|
2919
|
+
"type": {
|
|
2920
|
+
"text": "object"
|
|
2921
|
+
},
|
|
2922
|
+
"default": "{}"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"kind": "variable",
|
|
2926
|
+
"name": "foundationAccordion",
|
|
2927
|
+
"description": "The Foundation Accordion",
|
|
2928
|
+
"privacy": "public"
|
|
2966
2929
|
}
|
|
2967
2930
|
],
|
|
2968
2931
|
"exports": [
|
|
2969
2932
|
{
|
|
2970
2933
|
"kind": "js",
|
|
2971
|
-
"name": "
|
|
2934
|
+
"name": "Accordion",
|
|
2972
2935
|
"declaration": {
|
|
2973
|
-
"name": "
|
|
2974
|
-
"module": "src/
|
|
2936
|
+
"name": "Accordion",
|
|
2937
|
+
"module": "src/accordion/accordion.ts"
|
|
2975
2938
|
}
|
|
2976
2939
|
},
|
|
2977
2940
|
{
|
|
2978
2941
|
"kind": "js",
|
|
2979
|
-
"name": "
|
|
2980
|
-
"declaration": {
|
|
2981
|
-
"name": "foundationAiIndicator",
|
|
2982
|
-
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2983
|
-
}
|
|
2984
|
-
}
|
|
2985
|
-
]
|
|
2986
|
-
},
|
|
2987
|
-
{
|
|
2988
|
-
"kind": "javascript-module",
|
|
2989
|
-
"path": "src/ai-indicator/index.ts",
|
|
2990
|
-
"declarations": [],
|
|
2991
|
-
"exports": [
|
|
2992
|
-
{
|
|
2993
|
-
"kind": "js",
|
|
2994
|
-
"name": "AiIndicator",
|
|
2942
|
+
"name": "foundationAccordionShadowOptions",
|
|
2995
2943
|
"declaration": {
|
|
2996
|
-
"name": "
|
|
2997
|
-
"module": "
|
|
2944
|
+
"name": "foundationAccordionShadowOptions",
|
|
2945
|
+
"module": "src/accordion/accordion.ts"
|
|
2998
2946
|
}
|
|
2999
2947
|
},
|
|
3000
2948
|
{
|
|
3001
2949
|
"kind": "js",
|
|
3002
|
-
"name": "
|
|
2950
|
+
"name": "defaultAccordionConfig",
|
|
3003
2951
|
"declaration": {
|
|
3004
|
-
"name": "
|
|
3005
|
-
"module": "
|
|
2952
|
+
"name": "defaultAccordionConfig",
|
|
2953
|
+
"module": "src/accordion/accordion.ts"
|
|
3006
2954
|
}
|
|
3007
2955
|
},
|
|
3008
2956
|
{
|
|
3009
2957
|
"kind": "js",
|
|
3010
|
-
"name": "
|
|
2958
|
+
"name": "foundationAccordion",
|
|
3011
2959
|
"declaration": {
|
|
3012
|
-
"name": "
|
|
3013
|
-
"module": "
|
|
2960
|
+
"name": "foundationAccordion",
|
|
2961
|
+
"module": "src/accordion/accordion.ts"
|
|
3014
2962
|
}
|
|
3015
|
-
}
|
|
2963
|
+
}
|
|
2964
|
+
]
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"kind": "javascript-module",
|
|
2968
|
+
"path": "src/accordion/index.ts",
|
|
2969
|
+
"declarations": [],
|
|
2970
|
+
"exports": [
|
|
3016
2971
|
{
|
|
3017
2972
|
"kind": "js",
|
|
3018
|
-
"name": "
|
|
2973
|
+
"name": "*",
|
|
3019
2974
|
"declaration": {
|
|
3020
|
-
"name": "
|
|
3021
|
-
"
|
|
2975
|
+
"name": "*",
|
|
2976
|
+
"package": "./accordion.template"
|
|
3022
2977
|
}
|
|
3023
2978
|
},
|
|
3024
2979
|
{
|
|
3025
2980
|
"kind": "js",
|
|
3026
|
-
"name": "
|
|
2981
|
+
"name": "*",
|
|
3027
2982
|
"declaration": {
|
|
3028
|
-
"name": "
|
|
3029
|
-
"
|
|
2983
|
+
"name": "*",
|
|
2984
|
+
"package": "./accordion.styles"
|
|
3030
2985
|
}
|
|
3031
2986
|
},
|
|
3032
2987
|
{
|
|
3033
2988
|
"kind": "js",
|
|
3034
|
-
"name": "
|
|
2989
|
+
"name": "*",
|
|
3035
2990
|
"declaration": {
|
|
3036
|
-
"name": "
|
|
3037
|
-
"
|
|
2991
|
+
"name": "*",
|
|
2992
|
+
"package": "./accordion"
|
|
3038
2993
|
}
|
|
3039
2994
|
}
|
|
3040
2995
|
]
|
|
3041
2996
|
},
|
|
3042
2997
|
{
|
|
3043
2998
|
"kind": "javascript-module",
|
|
3044
|
-
"path": "src/
|
|
2999
|
+
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
3045
3000
|
"declarations": [
|
|
3046
3001
|
{
|
|
3047
3002
|
"kind": "function",
|
|
3048
|
-
"name": "
|
|
3003
|
+
"name": "foundationAiIndicatorStyles",
|
|
3049
3004
|
"return": {
|
|
3050
3005
|
"type": {
|
|
3051
3006
|
"text": "ElementStyles"
|
|
@@ -3070,155 +3025,214 @@
|
|
|
3070
3025
|
"exports": [
|
|
3071
3026
|
{
|
|
3072
3027
|
"kind": "js",
|
|
3073
|
-
"name": "
|
|
3028
|
+
"name": "foundationAiIndicatorStyles",
|
|
3074
3029
|
"declaration": {
|
|
3075
|
-
"name": "
|
|
3076
|
-
"module": "src/
|
|
3030
|
+
"name": "foundationAiIndicatorStyles",
|
|
3031
|
+
"module": "src/ai-indicator/ai-indicator.styles.ts"
|
|
3077
3032
|
}
|
|
3078
3033
|
}
|
|
3079
3034
|
]
|
|
3080
3035
|
},
|
|
3081
3036
|
{
|
|
3082
3037
|
"kind": "javascript-module",
|
|
3083
|
-
"path": "src/
|
|
3038
|
+
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
3084
3039
|
"declarations": [
|
|
3085
3040
|
{
|
|
3086
|
-
"kind": "
|
|
3087
|
-
"name": "
|
|
3088
|
-
"
|
|
3089
|
-
"
|
|
3090
|
-
"text": "ViewTemplate<AccordionItem>"
|
|
3091
|
-
}
|
|
3041
|
+
"kind": "variable",
|
|
3042
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3043
|
+
"type": {
|
|
3044
|
+
"text": "ViewTemplate<AiIndicator>"
|
|
3092
3045
|
},
|
|
3093
|
-
"
|
|
3094
|
-
{
|
|
3095
|
-
"name": "context",
|
|
3096
|
-
"type": {
|
|
3097
|
-
"text": "ElementDefinitionContext"
|
|
3098
|
-
}
|
|
3099
|
-
},
|
|
3100
|
-
{
|
|
3101
|
-
"name": "definition",
|
|
3102
|
-
"type": {
|
|
3103
|
-
"text": "FoundationElementDefinition"
|
|
3104
|
-
}
|
|
3105
|
-
}
|
|
3106
|
-
]
|
|
3046
|
+
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
3107
3047
|
}
|
|
3108
3048
|
],
|
|
3109
3049
|
"exports": [
|
|
3110
3050
|
{
|
|
3111
3051
|
"kind": "js",
|
|
3112
|
-
"name": "
|
|
3052
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3113
3053
|
"declaration": {
|
|
3114
|
-
"name": "
|
|
3115
|
-
"module": "src/
|
|
3054
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3055
|
+
"module": "src/ai-indicator/ai-indicator.template.ts"
|
|
3116
3056
|
}
|
|
3117
3057
|
}
|
|
3118
3058
|
]
|
|
3119
3059
|
},
|
|
3120
3060
|
{
|
|
3121
3061
|
"kind": "javascript-module",
|
|
3122
|
-
"path": "src/
|
|
3062
|
+
"path": "src/ai-indicator/ai-indicator.ts",
|
|
3123
3063
|
"declarations": [
|
|
3124
3064
|
{
|
|
3125
3065
|
"kind": "class",
|
|
3126
3066
|
"description": "",
|
|
3127
|
-
"name": "
|
|
3128
|
-
"
|
|
3129
|
-
"name": "FASTAccordionItem",
|
|
3130
|
-
"package": "@microsoft/fast-components"
|
|
3131
|
-
},
|
|
3132
|
-
"tagName": "%%prefix%%-accordion-item",
|
|
3133
|
-
"customElement": true,
|
|
3134
|
-
"attributes": [
|
|
3067
|
+
"name": "AiIndicator",
|
|
3068
|
+
"members": [
|
|
3135
3069
|
{
|
|
3136
|
-
"
|
|
3070
|
+
"kind": "field",
|
|
3071
|
+
"name": "aiProvider",
|
|
3137
3072
|
"type": {
|
|
3138
|
-
"text": "
|
|
3139
|
-
},
|
|
3140
|
-
"default": "2",
|
|
3141
|
-
"description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
|
|
3142
|
-
"fieldName": "headinglevel",
|
|
3143
|
-
"inheritedFrom": {
|
|
3144
|
-
"name": "AccordionItem",
|
|
3145
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3073
|
+
"text": "AIProvider"
|
|
3146
3074
|
}
|
|
3147
3075
|
},
|
|
3148
3076
|
{
|
|
3077
|
+
"kind": "field",
|
|
3078
|
+
"name": "status",
|
|
3079
|
+
"type": {
|
|
3080
|
+
"text": "AIStatus | null"
|
|
3081
|
+
},
|
|
3082
|
+
"default": "null"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"kind": "field",
|
|
3086
|
+
"name": "open",
|
|
3087
|
+
"type": {
|
|
3088
|
+
"text": "boolean"
|
|
3089
|
+
},
|
|
3090
|
+
"default": "false"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"kind": "field",
|
|
3094
|
+
"name": "state",
|
|
3095
|
+
"type": {
|
|
3096
|
+
"text": "AIIndicatorState"
|
|
3097
|
+
},
|
|
3098
|
+
"default": "'none'"
|
|
3099
|
+
},
|
|
3100
|
+
{
|
|
3101
|
+
"kind": "field",
|
|
3102
|
+
"name": "isInstalling",
|
|
3149
3103
|
"type": {
|
|
3150
3104
|
"text": "boolean"
|
|
3151
3105
|
},
|
|
3152
|
-
"default": "false"
|
|
3153
|
-
"description": "Expands or collapses the item.",
|
|
3154
|
-
"fieldName": "expanded",
|
|
3155
|
-
"inheritedFrom": {
|
|
3156
|
-
"name": "AccordionItem",
|
|
3157
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3158
|
-
}
|
|
3106
|
+
"default": "false"
|
|
3159
3107
|
},
|
|
3160
3108
|
{
|
|
3161
|
-
"
|
|
3109
|
+
"kind": "field",
|
|
3110
|
+
"name": "pollTimer",
|
|
3162
3111
|
"type": {
|
|
3163
|
-
"text": "
|
|
3112
|
+
"text": "ReturnType<typeof setInterval> | null"
|
|
3164
3113
|
},
|
|
3165
|
-
"
|
|
3166
|
-
"
|
|
3167
|
-
|
|
3168
|
-
"name": "AccordionItem",
|
|
3169
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3170
|
-
}
|
|
3171
|
-
}
|
|
3172
|
-
],
|
|
3173
|
-
"members": [
|
|
3114
|
+
"privacy": "private",
|
|
3115
|
+
"default": "null"
|
|
3116
|
+
},
|
|
3174
3117
|
{
|
|
3175
3118
|
"kind": "field",
|
|
3176
|
-
"name": "
|
|
3119
|
+
"name": "clickOutside",
|
|
3120
|
+
"privacy": "private"
|
|
3121
|
+
},
|
|
3122
|
+
{
|
|
3123
|
+
"kind": "field",
|
|
3124
|
+
"name": "chromeStatusLabel",
|
|
3177
3125
|
"type": {
|
|
3178
|
-
"text": "
|
|
3126
|
+
"text": "string | null"
|
|
3179
3127
|
},
|
|
3180
|
-
"
|
|
3181
|
-
"default": "2",
|
|
3182
|
-
"description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
|
|
3183
|
-
"inheritedFrom": {
|
|
3184
|
-
"name": "AccordionItem",
|
|
3185
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3186
|
-
}
|
|
3128
|
+
"readonly": true
|
|
3187
3129
|
},
|
|
3188
3130
|
{
|
|
3189
3131
|
"kind": "field",
|
|
3190
|
-
"name": "
|
|
3132
|
+
"name": "canInstall",
|
|
3191
3133
|
"type": {
|
|
3192
3134
|
"text": "boolean"
|
|
3193
3135
|
},
|
|
3194
|
-
"
|
|
3195
|
-
"default": "false",
|
|
3196
|
-
"description": "Expands or collapses the item.",
|
|
3197
|
-
"inheritedFrom": {
|
|
3198
|
-
"name": "AccordionItem",
|
|
3199
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3200
|
-
}
|
|
3136
|
+
"readonly": true
|
|
3201
3137
|
},
|
|
3202
3138
|
{
|
|
3203
3139
|
"kind": "field",
|
|
3204
|
-
"name": "
|
|
3140
|
+
"name": "isDownloading",
|
|
3205
3141
|
"type": {
|
|
3206
|
-
"text": "
|
|
3142
|
+
"text": "boolean"
|
|
3207
3143
|
},
|
|
3208
|
-
"
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3144
|
+
"readonly": true
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"kind": "method",
|
|
3148
|
+
"name": "openChanged",
|
|
3149
|
+
"return": {
|
|
3150
|
+
"type": {
|
|
3151
|
+
"text": "void"
|
|
3152
|
+
}
|
|
3213
3153
|
}
|
|
3214
3154
|
},
|
|
3215
3155
|
{
|
|
3216
|
-
"kind": "
|
|
3217
|
-
"name": "
|
|
3156
|
+
"kind": "method",
|
|
3157
|
+
"name": "handleClickOutside",
|
|
3218
3158
|
"privacy": "private",
|
|
3219
|
-
"
|
|
3220
|
-
|
|
3221
|
-
|
|
3159
|
+
"parameters": [
|
|
3160
|
+
{
|
|
3161
|
+
"name": "event",
|
|
3162
|
+
"type": {
|
|
3163
|
+
"text": "MouseEvent"
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
]
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
"kind": "method",
|
|
3170
|
+
"name": "toggleDropdown"
|
|
3171
|
+
},
|
|
3172
|
+
{
|
|
3173
|
+
"kind": "method",
|
|
3174
|
+
"name": "refreshStatus",
|
|
3175
|
+
"return": {
|
|
3176
|
+
"type": {
|
|
3177
|
+
"text": "Promise<void>"
|
|
3178
|
+
}
|
|
3179
|
+
}
|
|
3180
|
+
},
|
|
3181
|
+
{
|
|
3182
|
+
"kind": "method",
|
|
3183
|
+
"name": "deriveState",
|
|
3184
|
+
"privacy": "private",
|
|
3185
|
+
"return": {
|
|
3186
|
+
"type": {
|
|
3187
|
+
"text": "AIIndicatorState"
|
|
3188
|
+
}
|
|
3189
|
+
},
|
|
3190
|
+
"parameters": [
|
|
3191
|
+
{
|
|
3192
|
+
"name": "s",
|
|
3193
|
+
"type": {
|
|
3194
|
+
"text": "AIStatus | null"
|
|
3195
|
+
}
|
|
3196
|
+
}
|
|
3197
|
+
]
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"kind": "method",
|
|
3201
|
+
"name": "maybeStartPolling",
|
|
3202
|
+
"privacy": "private",
|
|
3203
|
+
"return": {
|
|
3204
|
+
"type": {
|
|
3205
|
+
"text": "void"
|
|
3206
|
+
}
|
|
3207
|
+
}
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
"kind": "method",
|
|
3211
|
+
"name": "startPolling",
|
|
3212
|
+
"privacy": "private",
|
|
3213
|
+
"return": {
|
|
3214
|
+
"type": {
|
|
3215
|
+
"text": "void"
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
"kind": "method",
|
|
3221
|
+
"name": "stopPolling",
|
|
3222
|
+
"privacy": "private",
|
|
3223
|
+
"return": {
|
|
3224
|
+
"type": {
|
|
3225
|
+
"text": "void"
|
|
3226
|
+
}
|
|
3227
|
+
}
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"kind": "method",
|
|
3231
|
+
"name": "onInstall",
|
|
3232
|
+
"return": {
|
|
3233
|
+
"type": {
|
|
3234
|
+
"text": "Promise<void>"
|
|
3235
|
+
}
|
|
3222
3236
|
}
|
|
3223
3237
|
},
|
|
3224
3238
|
{
|
|
@@ -3333,102 +3347,88 @@
|
|
|
3333
3347
|
}
|
|
3334
3348
|
}
|
|
3335
3349
|
],
|
|
3336
|
-
"
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
"name": "change",
|
|
3340
|
-
"inheritedFrom": {
|
|
3341
|
-
"name": "AccordionItem",
|
|
3342
|
-
"module": "src/accordion-item/accordion-item.ts"
|
|
3343
|
-
}
|
|
3344
|
-
}
|
|
3345
|
-
]
|
|
3346
|
-
},
|
|
3347
|
-
{
|
|
3348
|
-
"kind": "variable",
|
|
3349
|
-
"name": "foundationAccordionItemShadowOptions",
|
|
3350
|
-
"type": {
|
|
3351
|
-
"text": "ShadowRootInit"
|
|
3352
|
-
},
|
|
3353
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"kind": "variable",
|
|
3357
|
-
"name": "defaultAccordionItemConfig",
|
|
3358
|
-
"type": {
|
|
3359
|
-
"text": "object"
|
|
3350
|
+
"superclass": {
|
|
3351
|
+
"name": "FoundationElement",
|
|
3352
|
+
"package": "@microsoft/fast-foundation"
|
|
3360
3353
|
},
|
|
3361
|
-
"
|
|
3354
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
3355
|
+
"customElement": true
|
|
3362
3356
|
},
|
|
3363
3357
|
{
|
|
3364
3358
|
"kind": "variable",
|
|
3365
|
-
"name": "
|
|
3366
|
-
"description": "The Foundation Accordion Item",
|
|
3367
|
-
"privacy": "public"
|
|
3359
|
+
"name": "foundationAiIndicator"
|
|
3368
3360
|
}
|
|
3369
3361
|
],
|
|
3370
3362
|
"exports": [
|
|
3371
3363
|
{
|
|
3372
3364
|
"kind": "js",
|
|
3373
|
-
"name": "
|
|
3365
|
+
"name": "AiIndicator",
|
|
3374
3366
|
"declaration": {
|
|
3375
|
-
"name": "
|
|
3376
|
-
"module": "src/
|
|
3367
|
+
"name": "AiIndicator",
|
|
3368
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3377
3369
|
}
|
|
3378
3370
|
},
|
|
3379
3371
|
{
|
|
3380
3372
|
"kind": "js",
|
|
3381
|
-
"name": "
|
|
3373
|
+
"name": "foundationAiIndicator",
|
|
3382
3374
|
"declaration": {
|
|
3383
|
-
"name": "
|
|
3384
|
-
"module": "src/
|
|
3375
|
+
"name": "foundationAiIndicator",
|
|
3376
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3377
|
+
}
|
|
3378
|
+
}
|
|
3379
|
+
]
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"kind": "javascript-module",
|
|
3383
|
+
"path": "src/ai-indicator/index.ts",
|
|
3384
|
+
"declarations": [],
|
|
3385
|
+
"exports": [
|
|
3386
|
+
{
|
|
3387
|
+
"kind": "js",
|
|
3388
|
+
"name": "AiIndicator",
|
|
3389
|
+
"declaration": {
|
|
3390
|
+
"name": "AiIndicator",
|
|
3391
|
+
"module": "./ai-indicator"
|
|
3385
3392
|
}
|
|
3386
3393
|
},
|
|
3387
3394
|
{
|
|
3388
3395
|
"kind": "js",
|
|
3389
|
-
"name": "
|
|
3396
|
+
"name": "foundationAiIndicator",
|
|
3390
3397
|
"declaration": {
|
|
3391
|
-
"name": "
|
|
3392
|
-
"module": "
|
|
3398
|
+
"name": "foundationAiIndicator",
|
|
3399
|
+
"module": "./ai-indicator"
|
|
3393
3400
|
}
|
|
3394
3401
|
},
|
|
3395
3402
|
{
|
|
3396
3403
|
"kind": "js",
|
|
3397
|
-
"name": "
|
|
3404
|
+
"name": "type",
|
|
3398
3405
|
"declaration": {
|
|
3399
|
-
"name": "
|
|
3400
|
-
"module": "
|
|
3406
|
+
"name": "type",
|
|
3407
|
+
"module": "./ai-indicator"
|
|
3401
3408
|
}
|
|
3402
|
-
}
|
|
3403
|
-
]
|
|
3404
|
-
},
|
|
3405
|
-
{
|
|
3406
|
-
"kind": "javascript-module",
|
|
3407
|
-
"path": "src/accordion-item/index.ts",
|
|
3408
|
-
"declarations": [],
|
|
3409
|
-
"exports": [
|
|
3409
|
+
},
|
|
3410
3410
|
{
|
|
3411
3411
|
"kind": "js",
|
|
3412
|
-
"name": "
|
|
3412
|
+
"name": "AIIndicatorState",
|
|
3413
3413
|
"declaration": {
|
|
3414
|
-
"name": "
|
|
3415
|
-
"
|
|
3414
|
+
"name": "AIIndicatorState",
|
|
3415
|
+
"module": "./ai-indicator"
|
|
3416
3416
|
}
|
|
3417
3417
|
},
|
|
3418
3418
|
{
|
|
3419
3419
|
"kind": "js",
|
|
3420
|
-
"name": "
|
|
3420
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3421
3421
|
"declaration": {
|
|
3422
|
-
"name": "
|
|
3423
|
-
"
|
|
3422
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3423
|
+
"module": "./ai-indicator.template"
|
|
3424
3424
|
}
|
|
3425
3425
|
},
|
|
3426
3426
|
{
|
|
3427
3427
|
"kind": "js",
|
|
3428
|
-
"name": "
|
|
3428
|
+
"name": "foundationAiIndicatorStyles",
|
|
3429
3429
|
"declaration": {
|
|
3430
|
-
"name": "
|
|
3431
|
-
"
|
|
3430
|
+
"name": "foundationAiIndicatorStyles",
|
|
3431
|
+
"module": "./ai-indicator.styles"
|
|
3432
3432
|
}
|
|
3433
3433
|
}
|
|
3434
3434
|
]
|