@genesislcap/foundation-ui 14.416.1-alpha-c3adbe7.0 → 14.417.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +943 -810
- package/dist/dts/_common/affix-mixin.d.ts +46 -0
- package/dist/dts/_common/affix-mixin.d.ts.map +1 -0
- package/dist/dts/_common/field-styles.d.ts +2 -0
- package/dist/dts/_common/field-styles.d.ts.map +1 -0
- package/dist/dts/_common/index.d.ts +2 -0
- package/dist/dts/_common/index.d.ts.map +1 -1
- package/dist/dts/flyout/flyout.d.ts +2 -0
- package/dist/dts/flyout/flyout.d.ts.map +1 -1
- package/dist/dts/flyout/flyout.template.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.d.ts +12 -1
- package/dist/dts/number-field/number-field.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.styles.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.template.d.ts.map +1 -1
- package/dist/dts/text-field/text-field.d.ts +12 -22
- package/dist/dts/text-field/text-field.d.ts.map +1 -1
- package/dist/dts/text-field/text-field.styles.d.ts.map +1 -1
- package/dist/esm/_common/affix-mixin.js +70 -0
- package/dist/esm/_common/field-styles.js +62 -0
- package/dist/esm/_common/index.js +2 -0
- package/dist/esm/flyout/flyout.js +11 -0
- package/dist/esm/flyout/flyout.styles.js +1 -1
- package/dist/esm/flyout/flyout.template.js +1 -6
- package/dist/esm/number-field/number-field.js +2 -1
- package/dist/esm/number-field/number-field.styles.js +2 -3
- package/dist/esm/number-field/number-field.template.js +72 -46
- package/dist/esm/text-field/text-field.js +2 -49
- package/dist/esm/text-field/text-field.styles.js +2 -60
- package/package.json +19 -19
|
@@ -924,6 +924,462 @@
|
|
|
924
924
|
}
|
|
925
925
|
]
|
|
926
926
|
},
|
|
927
|
+
{
|
|
928
|
+
"kind": "javascript-module",
|
|
929
|
+
"path": "src/_common/affix-mixin.ts",
|
|
930
|
+
"declarations": [
|
|
931
|
+
{
|
|
932
|
+
"kind": "mixin",
|
|
933
|
+
"description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
|
|
934
|
+
"name": "AffixMixin",
|
|
935
|
+
"members": [
|
|
936
|
+
{
|
|
937
|
+
"kind": "field",
|
|
938
|
+
"name": "prefix",
|
|
939
|
+
"type": {
|
|
940
|
+
"text": "string"
|
|
941
|
+
},
|
|
942
|
+
"description": "Optional non-editable label shown on the left inside the field, before the input."
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"kind": "field",
|
|
946
|
+
"name": "suffix",
|
|
947
|
+
"type": {
|
|
948
|
+
"text": "string"
|
|
949
|
+
},
|
|
950
|
+
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"kind": "field",
|
|
954
|
+
"name": "hideAffixFromScreenReader",
|
|
955
|
+
"type": {
|
|
956
|
+
"text": "boolean"
|
|
957
|
+
},
|
|
958
|
+
"default": "false",
|
|
959
|
+
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"parameters": [
|
|
963
|
+
{
|
|
964
|
+
"name": "Base",
|
|
965
|
+
"type": {
|
|
966
|
+
"text": "TBase"
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
]
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
"exports": [
|
|
973
|
+
{
|
|
974
|
+
"kind": "js",
|
|
975
|
+
"name": "AffixMixin",
|
|
976
|
+
"declaration": {
|
|
977
|
+
"name": "AffixMixin",
|
|
978
|
+
"module": "src/_common/affix-mixin.ts"
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
]
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"kind": "javascript-module",
|
|
985
|
+
"path": "src/_common/base-file-component.ts",
|
|
986
|
+
"declarations": [
|
|
987
|
+
{
|
|
988
|
+
"kind": "class",
|
|
989
|
+
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
990
|
+
"name": "BaseFileComponent",
|
|
991
|
+
"members": [
|
|
992
|
+
{
|
|
993
|
+
"kind": "field",
|
|
994
|
+
"name": "fileInput",
|
|
995
|
+
"type": {
|
|
996
|
+
"text": "HTMLInputElement"
|
|
997
|
+
},
|
|
998
|
+
"privacy": "public"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"kind": "field",
|
|
1002
|
+
"name": "selectedFile",
|
|
1003
|
+
"type": {
|
|
1004
|
+
"text": "File | null"
|
|
1005
|
+
},
|
|
1006
|
+
"privacy": "protected",
|
|
1007
|
+
"default": "null"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"kind": "field",
|
|
1011
|
+
"name": "label",
|
|
1012
|
+
"type": {
|
|
1013
|
+
"text": "string"
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"kind": "field",
|
|
1018
|
+
"name": "accept",
|
|
1019
|
+
"type": {
|
|
1020
|
+
"text": "string"
|
|
1021
|
+
},
|
|
1022
|
+
"default": "''"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"kind": "field",
|
|
1026
|
+
"name": "fileSizeLimitBytes",
|
|
1027
|
+
"default": "10_485_760",
|
|
1028
|
+
"type": {
|
|
1029
|
+
"text": "number"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"kind": "field",
|
|
1034
|
+
"name": "fileName",
|
|
1035
|
+
"type": {
|
|
1036
|
+
"text": "string"
|
|
1037
|
+
},
|
|
1038
|
+
"default": "''"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"kind": "field",
|
|
1042
|
+
"name": "isProcessing",
|
|
1043
|
+
"type": {
|
|
1044
|
+
"text": "boolean"
|
|
1045
|
+
},
|
|
1046
|
+
"default": "false"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"kind": "method",
|
|
1050
|
+
"name": "handleClick",
|
|
1051
|
+
"privacy": "public",
|
|
1052
|
+
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"kind": "method",
|
|
1056
|
+
"name": "onInputChange",
|
|
1057
|
+
"privacy": "public",
|
|
1058
|
+
"parameters": [
|
|
1059
|
+
{
|
|
1060
|
+
"name": "e",
|
|
1061
|
+
"type": {
|
|
1062
|
+
"text": "Event"
|
|
1063
|
+
},
|
|
1064
|
+
"description": "The change event from the file input"
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"kind": "method",
|
|
1071
|
+
"name": "clearSelection",
|
|
1072
|
+
"privacy": "public",
|
|
1073
|
+
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"kind": "method",
|
|
1077
|
+
"name": "getSelectedFile",
|
|
1078
|
+
"privacy": "public",
|
|
1079
|
+
"description": "Gets the currently selected file object",
|
|
1080
|
+
"return": {
|
|
1081
|
+
"type": {
|
|
1082
|
+
"text": ""
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"kind": "method",
|
|
1088
|
+
"name": "showError",
|
|
1089
|
+
"privacy": "protected",
|
|
1090
|
+
"parameters": [
|
|
1091
|
+
{
|
|
1092
|
+
"name": "title",
|
|
1093
|
+
"type": {
|
|
1094
|
+
"text": "string"
|
|
1095
|
+
},
|
|
1096
|
+
"description": "The error title"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"name": "message",
|
|
1100
|
+
"type": {
|
|
1101
|
+
"text": "string"
|
|
1102
|
+
},
|
|
1103
|
+
"description": "The error message"
|
|
1104
|
+
}
|
|
1105
|
+
],
|
|
1106
|
+
"description": "Shows an error notification using the unified error handling system"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"kind": "method",
|
|
1110
|
+
"name": "onFileSelected",
|
|
1111
|
+
"privacy": "protected",
|
|
1112
|
+
"return": {
|
|
1113
|
+
"type": {
|
|
1114
|
+
"text": "void"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"parameters": [
|
|
1118
|
+
{
|
|
1119
|
+
"name": "files",
|
|
1120
|
+
"type": {
|
|
1121
|
+
"text": "File[]"
|
|
1122
|
+
},
|
|
1123
|
+
"description": "The selected file"
|
|
1124
|
+
}
|
|
1125
|
+
],
|
|
1126
|
+
"description": "Abstract method called when a file is selected"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"kind": "method",
|
|
1130
|
+
"name": "onFileCleared",
|
|
1131
|
+
"privacy": "protected",
|
|
1132
|
+
"return": {
|
|
1133
|
+
"type": {
|
|
1134
|
+
"text": "void"
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
"description": "Abstract method called when file selection is cleared"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"kind": "field",
|
|
1141
|
+
"name": "_presentation",
|
|
1142
|
+
"type": {
|
|
1143
|
+
"text": "ComponentPresentation | null | undefined"
|
|
1144
|
+
},
|
|
1145
|
+
"privacy": "private",
|
|
1146
|
+
"default": "void 0",
|
|
1147
|
+
"inheritedFrom": {
|
|
1148
|
+
"name": "FoundationElement",
|
|
1149
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"kind": "field",
|
|
1154
|
+
"name": "$presentation",
|
|
1155
|
+
"type": {
|
|
1156
|
+
"text": "ComponentPresentation | null"
|
|
1157
|
+
},
|
|
1158
|
+
"privacy": "public",
|
|
1159
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1160
|
+
"inheritedFrom": {
|
|
1161
|
+
"name": "FoundationElement",
|
|
1162
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"kind": "field",
|
|
1167
|
+
"name": "template",
|
|
1168
|
+
"type": {
|
|
1169
|
+
"text": "ElementViewTemplate | void | null"
|
|
1170
|
+
},
|
|
1171
|
+
"privacy": "public",
|
|
1172
|
+
"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.",
|
|
1173
|
+
"inheritedFrom": {
|
|
1174
|
+
"name": "FoundationElement",
|
|
1175
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"kind": "method",
|
|
1180
|
+
"name": "templateChanged",
|
|
1181
|
+
"privacy": "protected",
|
|
1182
|
+
"return": {
|
|
1183
|
+
"type": {
|
|
1184
|
+
"text": "void"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"inheritedFrom": {
|
|
1188
|
+
"name": "FoundationElement",
|
|
1189
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"kind": "field",
|
|
1194
|
+
"name": "styles",
|
|
1195
|
+
"type": {
|
|
1196
|
+
"text": "ElementStyles | void | null"
|
|
1197
|
+
},
|
|
1198
|
+
"privacy": "public",
|
|
1199
|
+
"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.",
|
|
1200
|
+
"inheritedFrom": {
|
|
1201
|
+
"name": "FoundationElement",
|
|
1202
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1203
|
+
}
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"kind": "method",
|
|
1207
|
+
"name": "stylesChanged",
|
|
1208
|
+
"privacy": "protected",
|
|
1209
|
+
"return": {
|
|
1210
|
+
"type": {
|
|
1211
|
+
"text": "void"
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
1214
|
+
"inheritedFrom": {
|
|
1215
|
+
"name": "FoundationElement",
|
|
1216
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"kind": "method",
|
|
1221
|
+
"name": "compose",
|
|
1222
|
+
"privacy": "public",
|
|
1223
|
+
"static": true,
|
|
1224
|
+
"return": {
|
|
1225
|
+
"type": {
|
|
1226
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"parameters": [
|
|
1230
|
+
{
|
|
1231
|
+
"name": "this",
|
|
1232
|
+
"type": {
|
|
1233
|
+
"text": "K"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"name": "elementDefinition",
|
|
1238
|
+
"type": {
|
|
1239
|
+
"text": "T"
|
|
1240
|
+
},
|
|
1241
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
1242
|
+
}
|
|
1243
|
+
],
|
|
1244
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1245
|
+
"inheritedFrom": {
|
|
1246
|
+
"name": "FoundationElement",
|
|
1247
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
],
|
|
1251
|
+
"attributes": [
|
|
1252
|
+
{
|
|
1253
|
+
"name": "label",
|
|
1254
|
+
"type": {
|
|
1255
|
+
"text": "string"
|
|
1256
|
+
},
|
|
1257
|
+
"fieldName": "label"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"name": "accept",
|
|
1261
|
+
"type": {
|
|
1262
|
+
"text": "string"
|
|
1263
|
+
},
|
|
1264
|
+
"default": "''",
|
|
1265
|
+
"fieldName": "accept"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"name": "file-size-limit-bytes",
|
|
1269
|
+
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
1270
|
+
"resolveInitializer": {
|
|
1271
|
+
"module": "src/_common/base-file-component.ts"
|
|
1272
|
+
},
|
|
1273
|
+
"fieldName": "fileSizeLimitBytes"
|
|
1274
|
+
}
|
|
1275
|
+
],
|
|
1276
|
+
"superclass": {
|
|
1277
|
+
"name": "FoundationElement",
|
|
1278
|
+
"package": "@microsoft/fast-foundation"
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
],
|
|
1282
|
+
"exports": [
|
|
1283
|
+
{
|
|
1284
|
+
"kind": "js",
|
|
1285
|
+
"name": "BaseFileComponent",
|
|
1286
|
+
"declaration": {
|
|
1287
|
+
"name": "BaseFileComponent",
|
|
1288
|
+
"module": "src/_common/base-file-component.ts"
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"kind": "javascript-module",
|
|
1295
|
+
"path": "src/_common/field-styles.ts",
|
|
1296
|
+
"declarations": [
|
|
1297
|
+
{
|
|
1298
|
+
"kind": "variable",
|
|
1299
|
+
"name": "sharedFieldStyles",
|
|
1300
|
+
"default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
|
|
1301
|
+
}
|
|
1302
|
+
],
|
|
1303
|
+
"exports": [
|
|
1304
|
+
{
|
|
1305
|
+
"kind": "js",
|
|
1306
|
+
"name": "sharedFieldStyles",
|
|
1307
|
+
"declaration": {
|
|
1308
|
+
"name": "sharedFieldStyles",
|
|
1309
|
+
"module": "src/_common/field-styles.ts"
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
]
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"kind": "javascript-module",
|
|
1316
|
+
"path": "src/_common/icons.ts",
|
|
1317
|
+
"declarations": [
|
|
1318
|
+
{
|
|
1319
|
+
"kind": "function",
|
|
1320
|
+
"name": "closeIcon",
|
|
1321
|
+
"parameters": [
|
|
1322
|
+
{
|
|
1323
|
+
"name": "slot",
|
|
1324
|
+
"default": "'start'"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "fill",
|
|
1328
|
+
"default": "'#879ba6'"
|
|
1329
|
+
}
|
|
1330
|
+
]
|
|
1331
|
+
}
|
|
1332
|
+
],
|
|
1333
|
+
"exports": [
|
|
1334
|
+
{
|
|
1335
|
+
"kind": "js",
|
|
1336
|
+
"name": "closeIcon",
|
|
1337
|
+
"declaration": {
|
|
1338
|
+
"name": "closeIcon",
|
|
1339
|
+
"module": "src/_common/icons.ts"
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
]
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"kind": "javascript-module",
|
|
1346
|
+
"path": "src/_common/index.ts",
|
|
1347
|
+
"declarations": [],
|
|
1348
|
+
"exports": [
|
|
1349
|
+
{
|
|
1350
|
+
"kind": "js",
|
|
1351
|
+
"name": "*",
|
|
1352
|
+
"declaration": {
|
|
1353
|
+
"name": "*",
|
|
1354
|
+
"package": "./affix-mixin"
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"kind": "js",
|
|
1359
|
+
"name": "*",
|
|
1360
|
+
"declaration": {
|
|
1361
|
+
"name": "*",
|
|
1362
|
+
"package": "./base-file-component"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"kind": "js",
|
|
1367
|
+
"name": "*",
|
|
1368
|
+
"declaration": {
|
|
1369
|
+
"name": "*",
|
|
1370
|
+
"package": "./field-styles"
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"kind": "js",
|
|
1375
|
+
"name": "*",
|
|
1376
|
+
"declaration": {
|
|
1377
|
+
"name": "*",
|
|
1378
|
+
"package": "./icons"
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
927
1383
|
{
|
|
928
1384
|
"kind": "javascript-module",
|
|
929
1385
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -1318,6 +1774,37 @@
|
|
|
1318
1774
|
}
|
|
1319
1775
|
]
|
|
1320
1776
|
},
|
|
1777
|
+
{
|
|
1778
|
+
"kind": "javascript-module",
|
|
1779
|
+
"path": "src/_config/index.ts",
|
|
1780
|
+
"declarations": [],
|
|
1781
|
+
"exports": [
|
|
1782
|
+
{
|
|
1783
|
+
"kind": "js",
|
|
1784
|
+
"name": "*",
|
|
1785
|
+
"declaration": {
|
|
1786
|
+
"name": "*",
|
|
1787
|
+
"package": "./styles"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"kind": "js",
|
|
1792
|
+
"name": "*",
|
|
1793
|
+
"declaration": {
|
|
1794
|
+
"name": "*",
|
|
1795
|
+
"package": "./tokens"
|
|
1796
|
+
}
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"kind": "js",
|
|
1800
|
+
"name": "*",
|
|
1801
|
+
"declaration": {
|
|
1802
|
+
"name": "*",
|
|
1803
|
+
"package": "./values"
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
]
|
|
1807
|
+
},
|
|
1321
1808
|
{
|
|
1322
1809
|
"kind": "javascript-module",
|
|
1323
1810
|
"path": "src/actions-menu/actions-menu.styles.ts",
|
|
@@ -2418,476 +2905,6 @@
|
|
|
2418
2905
|
}
|
|
2419
2906
|
]
|
|
2420
2907
|
},
|
|
2421
|
-
{
|
|
2422
|
-
"kind": "javascript-module",
|
|
2423
|
-
"path": "src/_config/index.ts",
|
|
2424
|
-
"declarations": [],
|
|
2425
|
-
"exports": [
|
|
2426
|
-
{
|
|
2427
|
-
"kind": "js",
|
|
2428
|
-
"name": "*",
|
|
2429
|
-
"declaration": {
|
|
2430
|
-
"name": "*",
|
|
2431
|
-
"package": "./styles"
|
|
2432
|
-
}
|
|
2433
|
-
},
|
|
2434
|
-
{
|
|
2435
|
-
"kind": "js",
|
|
2436
|
-
"name": "*",
|
|
2437
|
-
"declaration": {
|
|
2438
|
-
"name": "*",
|
|
2439
|
-
"package": "./tokens"
|
|
2440
|
-
}
|
|
2441
|
-
},
|
|
2442
|
-
{
|
|
2443
|
-
"kind": "js",
|
|
2444
|
-
"name": "*",
|
|
2445
|
-
"declaration": {
|
|
2446
|
-
"name": "*",
|
|
2447
|
-
"package": "./values"
|
|
2448
|
-
}
|
|
2449
|
-
}
|
|
2450
|
-
]
|
|
2451
|
-
},
|
|
2452
|
-
{
|
|
2453
|
-
"kind": "javascript-module",
|
|
2454
|
-
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
2455
|
-
"declarations": [
|
|
2456
|
-
{
|
|
2457
|
-
"kind": "function",
|
|
2458
|
-
"name": "foundationAiIndicatorStyles",
|
|
2459
|
-
"return": {
|
|
2460
|
-
"type": {
|
|
2461
|
-
"text": "ElementStyles"
|
|
2462
|
-
}
|
|
2463
|
-
},
|
|
2464
|
-
"parameters": [
|
|
2465
|
-
{
|
|
2466
|
-
"name": "context",
|
|
2467
|
-
"type": {
|
|
2468
|
-
"text": "ElementDefinitionContext"
|
|
2469
|
-
}
|
|
2470
|
-
},
|
|
2471
|
-
{
|
|
2472
|
-
"name": "definition",
|
|
2473
|
-
"type": {
|
|
2474
|
-
"text": "FoundationElementDefinition"
|
|
2475
|
-
}
|
|
2476
|
-
}
|
|
2477
|
-
]
|
|
2478
|
-
}
|
|
2479
|
-
],
|
|
2480
|
-
"exports": [
|
|
2481
|
-
{
|
|
2482
|
-
"kind": "js",
|
|
2483
|
-
"name": "foundationAiIndicatorStyles",
|
|
2484
|
-
"declaration": {
|
|
2485
|
-
"name": "foundationAiIndicatorStyles",
|
|
2486
|
-
"module": "src/ai-indicator/ai-indicator.styles.ts"
|
|
2487
|
-
}
|
|
2488
|
-
}
|
|
2489
|
-
]
|
|
2490
|
-
},
|
|
2491
|
-
{
|
|
2492
|
-
"kind": "javascript-module",
|
|
2493
|
-
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
2494
|
-
"declarations": [
|
|
2495
|
-
{
|
|
2496
|
-
"kind": "variable",
|
|
2497
|
-
"name": "foundationAiIndicatorTemplate",
|
|
2498
|
-
"type": {
|
|
2499
|
-
"text": "ViewTemplate<AiIndicator>"
|
|
2500
|
-
},
|
|
2501
|
-
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
2502
|
-
}
|
|
2503
|
-
],
|
|
2504
|
-
"exports": [
|
|
2505
|
-
{
|
|
2506
|
-
"kind": "js",
|
|
2507
|
-
"name": "foundationAiIndicatorTemplate",
|
|
2508
|
-
"declaration": {
|
|
2509
|
-
"name": "foundationAiIndicatorTemplate",
|
|
2510
|
-
"module": "src/ai-indicator/ai-indicator.template.ts"
|
|
2511
|
-
}
|
|
2512
|
-
}
|
|
2513
|
-
]
|
|
2514
|
-
},
|
|
2515
|
-
{
|
|
2516
|
-
"kind": "javascript-module",
|
|
2517
|
-
"path": "src/ai-indicator/ai-indicator.ts",
|
|
2518
|
-
"declarations": [
|
|
2519
|
-
{
|
|
2520
|
-
"kind": "class",
|
|
2521
|
-
"description": "",
|
|
2522
|
-
"name": "AiIndicator",
|
|
2523
|
-
"members": [
|
|
2524
|
-
{
|
|
2525
|
-
"kind": "field",
|
|
2526
|
-
"name": "aiProvider",
|
|
2527
|
-
"type": {
|
|
2528
|
-
"text": "AIProvider"
|
|
2529
|
-
}
|
|
2530
|
-
},
|
|
2531
|
-
{
|
|
2532
|
-
"kind": "field",
|
|
2533
|
-
"name": "status",
|
|
2534
|
-
"type": {
|
|
2535
|
-
"text": "AIStatus | null"
|
|
2536
|
-
},
|
|
2537
|
-
"default": "null"
|
|
2538
|
-
},
|
|
2539
|
-
{
|
|
2540
|
-
"kind": "field",
|
|
2541
|
-
"name": "open",
|
|
2542
|
-
"type": {
|
|
2543
|
-
"text": "boolean"
|
|
2544
|
-
},
|
|
2545
|
-
"default": "false"
|
|
2546
|
-
},
|
|
2547
|
-
{
|
|
2548
|
-
"kind": "field",
|
|
2549
|
-
"name": "state",
|
|
2550
|
-
"type": {
|
|
2551
|
-
"text": "AIIndicatorState"
|
|
2552
|
-
},
|
|
2553
|
-
"default": "'none'"
|
|
2554
|
-
},
|
|
2555
|
-
{
|
|
2556
|
-
"kind": "field",
|
|
2557
|
-
"name": "isInstalling",
|
|
2558
|
-
"type": {
|
|
2559
|
-
"text": "boolean"
|
|
2560
|
-
},
|
|
2561
|
-
"default": "false"
|
|
2562
|
-
},
|
|
2563
|
-
{
|
|
2564
|
-
"kind": "field",
|
|
2565
|
-
"name": "pollTimer",
|
|
2566
|
-
"type": {
|
|
2567
|
-
"text": "ReturnType<typeof setInterval> | null"
|
|
2568
|
-
},
|
|
2569
|
-
"privacy": "private",
|
|
2570
|
-
"default": "null"
|
|
2571
|
-
},
|
|
2572
|
-
{
|
|
2573
|
-
"kind": "field",
|
|
2574
|
-
"name": "clickOutside",
|
|
2575
|
-
"privacy": "private"
|
|
2576
|
-
},
|
|
2577
|
-
{
|
|
2578
|
-
"kind": "field",
|
|
2579
|
-
"name": "chromeStatusLabel",
|
|
2580
|
-
"type": {
|
|
2581
|
-
"text": "string | null"
|
|
2582
|
-
},
|
|
2583
|
-
"readonly": true
|
|
2584
|
-
},
|
|
2585
|
-
{
|
|
2586
|
-
"kind": "field",
|
|
2587
|
-
"name": "canInstall",
|
|
2588
|
-
"type": {
|
|
2589
|
-
"text": "boolean"
|
|
2590
|
-
},
|
|
2591
|
-
"readonly": true
|
|
2592
|
-
},
|
|
2593
|
-
{
|
|
2594
|
-
"kind": "field",
|
|
2595
|
-
"name": "isDownloading",
|
|
2596
|
-
"type": {
|
|
2597
|
-
"text": "boolean"
|
|
2598
|
-
},
|
|
2599
|
-
"readonly": true
|
|
2600
|
-
},
|
|
2601
|
-
{
|
|
2602
|
-
"kind": "method",
|
|
2603
|
-
"name": "openChanged",
|
|
2604
|
-
"return": {
|
|
2605
|
-
"type": {
|
|
2606
|
-
"text": "void"
|
|
2607
|
-
}
|
|
2608
|
-
}
|
|
2609
|
-
},
|
|
2610
|
-
{
|
|
2611
|
-
"kind": "method",
|
|
2612
|
-
"name": "handleClickOutside",
|
|
2613
|
-
"privacy": "private",
|
|
2614
|
-
"parameters": [
|
|
2615
|
-
{
|
|
2616
|
-
"name": "event",
|
|
2617
|
-
"type": {
|
|
2618
|
-
"text": "MouseEvent"
|
|
2619
|
-
}
|
|
2620
|
-
}
|
|
2621
|
-
]
|
|
2622
|
-
},
|
|
2623
|
-
{
|
|
2624
|
-
"kind": "method",
|
|
2625
|
-
"name": "toggleDropdown"
|
|
2626
|
-
},
|
|
2627
|
-
{
|
|
2628
|
-
"kind": "method",
|
|
2629
|
-
"name": "refreshStatus",
|
|
2630
|
-
"return": {
|
|
2631
|
-
"type": {
|
|
2632
|
-
"text": "Promise<void>"
|
|
2633
|
-
}
|
|
2634
|
-
}
|
|
2635
|
-
},
|
|
2636
|
-
{
|
|
2637
|
-
"kind": "method",
|
|
2638
|
-
"name": "deriveState",
|
|
2639
|
-
"privacy": "private",
|
|
2640
|
-
"return": {
|
|
2641
|
-
"type": {
|
|
2642
|
-
"text": "AIIndicatorState"
|
|
2643
|
-
}
|
|
2644
|
-
},
|
|
2645
|
-
"parameters": [
|
|
2646
|
-
{
|
|
2647
|
-
"name": "s",
|
|
2648
|
-
"type": {
|
|
2649
|
-
"text": "AIStatus | null"
|
|
2650
|
-
}
|
|
2651
|
-
}
|
|
2652
|
-
]
|
|
2653
|
-
},
|
|
2654
|
-
{
|
|
2655
|
-
"kind": "method",
|
|
2656
|
-
"name": "maybeStartPolling",
|
|
2657
|
-
"privacy": "private",
|
|
2658
|
-
"return": {
|
|
2659
|
-
"type": {
|
|
2660
|
-
"text": "void"
|
|
2661
|
-
}
|
|
2662
|
-
}
|
|
2663
|
-
},
|
|
2664
|
-
{
|
|
2665
|
-
"kind": "method",
|
|
2666
|
-
"name": "startPolling",
|
|
2667
|
-
"privacy": "private",
|
|
2668
|
-
"return": {
|
|
2669
|
-
"type": {
|
|
2670
|
-
"text": "void"
|
|
2671
|
-
}
|
|
2672
|
-
}
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"kind": "method",
|
|
2676
|
-
"name": "stopPolling",
|
|
2677
|
-
"privacy": "private",
|
|
2678
|
-
"return": {
|
|
2679
|
-
"type": {
|
|
2680
|
-
"text": "void"
|
|
2681
|
-
}
|
|
2682
|
-
}
|
|
2683
|
-
},
|
|
2684
|
-
{
|
|
2685
|
-
"kind": "method",
|
|
2686
|
-
"name": "onInstall",
|
|
2687
|
-
"return": {
|
|
2688
|
-
"type": {
|
|
2689
|
-
"text": "Promise<void>"
|
|
2690
|
-
}
|
|
2691
|
-
}
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
"kind": "field",
|
|
2695
|
-
"name": "_presentation",
|
|
2696
|
-
"type": {
|
|
2697
|
-
"text": "ComponentPresentation | null | undefined"
|
|
2698
|
-
},
|
|
2699
|
-
"privacy": "private",
|
|
2700
|
-
"default": "void 0",
|
|
2701
|
-
"inheritedFrom": {
|
|
2702
|
-
"name": "FoundationElement",
|
|
2703
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2704
|
-
}
|
|
2705
|
-
},
|
|
2706
|
-
{
|
|
2707
|
-
"kind": "field",
|
|
2708
|
-
"name": "$presentation",
|
|
2709
|
-
"type": {
|
|
2710
|
-
"text": "ComponentPresentation | null"
|
|
2711
|
-
},
|
|
2712
|
-
"privacy": "public",
|
|
2713
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
2714
|
-
"inheritedFrom": {
|
|
2715
|
-
"name": "FoundationElement",
|
|
2716
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2717
|
-
}
|
|
2718
|
-
},
|
|
2719
|
-
{
|
|
2720
|
-
"kind": "field",
|
|
2721
|
-
"name": "template",
|
|
2722
|
-
"type": {
|
|
2723
|
-
"text": "ElementViewTemplate | void | null"
|
|
2724
|
-
},
|
|
2725
|
-
"privacy": "public",
|
|
2726
|
-
"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.",
|
|
2727
|
-
"inheritedFrom": {
|
|
2728
|
-
"name": "FoundationElement",
|
|
2729
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2730
|
-
}
|
|
2731
|
-
},
|
|
2732
|
-
{
|
|
2733
|
-
"kind": "method",
|
|
2734
|
-
"name": "templateChanged",
|
|
2735
|
-
"privacy": "protected",
|
|
2736
|
-
"return": {
|
|
2737
|
-
"type": {
|
|
2738
|
-
"text": "void"
|
|
2739
|
-
}
|
|
2740
|
-
},
|
|
2741
|
-
"inheritedFrom": {
|
|
2742
|
-
"name": "FoundationElement",
|
|
2743
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2744
|
-
}
|
|
2745
|
-
},
|
|
2746
|
-
{
|
|
2747
|
-
"kind": "field",
|
|
2748
|
-
"name": "styles",
|
|
2749
|
-
"type": {
|
|
2750
|
-
"text": "ElementStyles | void | null"
|
|
2751
|
-
},
|
|
2752
|
-
"privacy": "public",
|
|
2753
|
-
"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.",
|
|
2754
|
-
"inheritedFrom": {
|
|
2755
|
-
"name": "FoundationElement",
|
|
2756
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2757
|
-
}
|
|
2758
|
-
},
|
|
2759
|
-
{
|
|
2760
|
-
"kind": "method",
|
|
2761
|
-
"name": "stylesChanged",
|
|
2762
|
-
"privacy": "protected",
|
|
2763
|
-
"return": {
|
|
2764
|
-
"type": {
|
|
2765
|
-
"text": "void"
|
|
2766
|
-
}
|
|
2767
|
-
},
|
|
2768
|
-
"inheritedFrom": {
|
|
2769
|
-
"name": "FoundationElement",
|
|
2770
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2771
|
-
}
|
|
2772
|
-
},
|
|
2773
|
-
{
|
|
2774
|
-
"kind": "method",
|
|
2775
|
-
"name": "compose",
|
|
2776
|
-
"privacy": "public",
|
|
2777
|
-
"static": true,
|
|
2778
|
-
"return": {
|
|
2779
|
-
"type": {
|
|
2780
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
2781
|
-
}
|
|
2782
|
-
},
|
|
2783
|
-
"parameters": [
|
|
2784
|
-
{
|
|
2785
|
-
"name": "this",
|
|
2786
|
-
"type": {
|
|
2787
|
-
"text": "K"
|
|
2788
|
-
}
|
|
2789
|
-
},
|
|
2790
|
-
{
|
|
2791
|
-
"name": "elementDefinition",
|
|
2792
|
-
"type": {
|
|
2793
|
-
"text": "T"
|
|
2794
|
-
},
|
|
2795
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
2796
|
-
}
|
|
2797
|
-
],
|
|
2798
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
2799
|
-
"inheritedFrom": {
|
|
2800
|
-
"name": "FoundationElement",
|
|
2801
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
2802
|
-
}
|
|
2803
|
-
}
|
|
2804
|
-
],
|
|
2805
|
-
"superclass": {
|
|
2806
|
-
"name": "FoundationElement",
|
|
2807
|
-
"package": "@microsoft/fast-foundation"
|
|
2808
|
-
},
|
|
2809
|
-
"tagName": "%%prefix%%-ai-indicator",
|
|
2810
|
-
"customElement": true
|
|
2811
|
-
},
|
|
2812
|
-
{
|
|
2813
|
-
"kind": "variable",
|
|
2814
|
-
"name": "foundationAiIndicator"
|
|
2815
|
-
}
|
|
2816
|
-
],
|
|
2817
|
-
"exports": [
|
|
2818
|
-
{
|
|
2819
|
-
"kind": "js",
|
|
2820
|
-
"name": "AiIndicator",
|
|
2821
|
-
"declaration": {
|
|
2822
|
-
"name": "AiIndicator",
|
|
2823
|
-
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2824
|
-
}
|
|
2825
|
-
},
|
|
2826
|
-
{
|
|
2827
|
-
"kind": "js",
|
|
2828
|
-
"name": "foundationAiIndicator",
|
|
2829
|
-
"declaration": {
|
|
2830
|
-
"name": "foundationAiIndicator",
|
|
2831
|
-
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2832
|
-
}
|
|
2833
|
-
}
|
|
2834
|
-
]
|
|
2835
|
-
},
|
|
2836
|
-
{
|
|
2837
|
-
"kind": "javascript-module",
|
|
2838
|
-
"path": "src/ai-indicator/index.ts",
|
|
2839
|
-
"declarations": [],
|
|
2840
|
-
"exports": [
|
|
2841
|
-
{
|
|
2842
|
-
"kind": "js",
|
|
2843
|
-
"name": "AiIndicator",
|
|
2844
|
-
"declaration": {
|
|
2845
|
-
"name": "AiIndicator",
|
|
2846
|
-
"module": "./ai-indicator"
|
|
2847
|
-
}
|
|
2848
|
-
},
|
|
2849
|
-
{
|
|
2850
|
-
"kind": "js",
|
|
2851
|
-
"name": "foundationAiIndicator",
|
|
2852
|
-
"declaration": {
|
|
2853
|
-
"name": "foundationAiIndicator",
|
|
2854
|
-
"module": "./ai-indicator"
|
|
2855
|
-
}
|
|
2856
|
-
},
|
|
2857
|
-
{
|
|
2858
|
-
"kind": "js",
|
|
2859
|
-
"name": "type",
|
|
2860
|
-
"declaration": {
|
|
2861
|
-
"name": "type",
|
|
2862
|
-
"module": "./ai-indicator"
|
|
2863
|
-
}
|
|
2864
|
-
},
|
|
2865
|
-
{
|
|
2866
|
-
"kind": "js",
|
|
2867
|
-
"name": "AIIndicatorState",
|
|
2868
|
-
"declaration": {
|
|
2869
|
-
"name": "AIIndicatorState",
|
|
2870
|
-
"module": "./ai-indicator"
|
|
2871
|
-
}
|
|
2872
|
-
},
|
|
2873
|
-
{
|
|
2874
|
-
"kind": "js",
|
|
2875
|
-
"name": "foundationAiIndicatorTemplate",
|
|
2876
|
-
"declaration": {
|
|
2877
|
-
"name": "foundationAiIndicatorTemplate",
|
|
2878
|
-
"module": "./ai-indicator.template"
|
|
2879
|
-
}
|
|
2880
|
-
},
|
|
2881
|
-
{
|
|
2882
|
-
"kind": "js",
|
|
2883
|
-
"name": "foundationAiIndicatorStyles",
|
|
2884
|
-
"declaration": {
|
|
2885
|
-
"name": "foundationAiIndicatorStyles",
|
|
2886
|
-
"module": "./ai-indicator.styles"
|
|
2887
|
-
}
|
|
2888
|
-
}
|
|
2889
|
-
]
|
|
2890
|
-
},
|
|
2891
2908
|
{
|
|
2892
2909
|
"kind": "javascript-module",
|
|
2893
2910
|
"path": "src/accordion/accordion.styles.ts",
|
|
@@ -3072,159 +3089,244 @@
|
|
|
3072
3089
|
},
|
|
3073
3090
|
{
|
|
3074
3091
|
"kind": "javascript-module",
|
|
3075
|
-
"path": "src/
|
|
3092
|
+
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
3093
|
+
"declarations": [
|
|
3094
|
+
{
|
|
3095
|
+
"kind": "function",
|
|
3096
|
+
"name": "foundationAiIndicatorStyles",
|
|
3097
|
+
"return": {
|
|
3098
|
+
"type": {
|
|
3099
|
+
"text": "ElementStyles"
|
|
3100
|
+
}
|
|
3101
|
+
},
|
|
3102
|
+
"parameters": [
|
|
3103
|
+
{
|
|
3104
|
+
"name": "context",
|
|
3105
|
+
"type": {
|
|
3106
|
+
"text": "ElementDefinitionContext"
|
|
3107
|
+
}
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
"name": "definition",
|
|
3111
|
+
"type": {
|
|
3112
|
+
"text": "FoundationElementDefinition"
|
|
3113
|
+
}
|
|
3114
|
+
}
|
|
3115
|
+
]
|
|
3116
|
+
}
|
|
3117
|
+
],
|
|
3118
|
+
"exports": [
|
|
3119
|
+
{
|
|
3120
|
+
"kind": "js",
|
|
3121
|
+
"name": "foundationAiIndicatorStyles",
|
|
3122
|
+
"declaration": {
|
|
3123
|
+
"name": "foundationAiIndicatorStyles",
|
|
3124
|
+
"module": "src/ai-indicator/ai-indicator.styles.ts"
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
]
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
"kind": "javascript-module",
|
|
3131
|
+
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
3132
|
+
"declarations": [
|
|
3133
|
+
{
|
|
3134
|
+
"kind": "variable",
|
|
3135
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3136
|
+
"type": {
|
|
3137
|
+
"text": "ViewTemplate<AiIndicator>"
|
|
3138
|
+
},
|
|
3139
|
+
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
3140
|
+
}
|
|
3141
|
+
],
|
|
3142
|
+
"exports": [
|
|
3143
|
+
{
|
|
3144
|
+
"kind": "js",
|
|
3145
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3146
|
+
"declaration": {
|
|
3147
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3148
|
+
"module": "src/ai-indicator/ai-indicator.template.ts"
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
]
|
|
3152
|
+
},
|
|
3153
|
+
{
|
|
3154
|
+
"kind": "javascript-module",
|
|
3155
|
+
"path": "src/ai-indicator/ai-indicator.ts",
|
|
3076
3156
|
"declarations": [
|
|
3077
3157
|
{
|
|
3078
3158
|
"kind": "class",
|
|
3079
|
-
"description": "
|
|
3080
|
-
"name": "
|
|
3159
|
+
"description": "",
|
|
3160
|
+
"name": "AiIndicator",
|
|
3081
3161
|
"members": [
|
|
3082
3162
|
{
|
|
3083
3163
|
"kind": "field",
|
|
3084
|
-
"name": "
|
|
3164
|
+
"name": "aiProvider",
|
|
3085
3165
|
"type": {
|
|
3086
|
-
"text": "
|
|
3087
|
-
}
|
|
3088
|
-
"privacy": "public"
|
|
3166
|
+
"text": "AIProvider"
|
|
3167
|
+
}
|
|
3089
3168
|
},
|
|
3090
3169
|
{
|
|
3091
3170
|
"kind": "field",
|
|
3092
|
-
"name": "
|
|
3171
|
+
"name": "status",
|
|
3093
3172
|
"type": {
|
|
3094
|
-
"text": "
|
|
3173
|
+
"text": "AIStatus | null"
|
|
3095
3174
|
},
|
|
3096
|
-
"privacy": "protected",
|
|
3097
3175
|
"default": "null"
|
|
3098
3176
|
},
|
|
3099
3177
|
{
|
|
3100
3178
|
"kind": "field",
|
|
3101
|
-
"name": "
|
|
3179
|
+
"name": "open",
|
|
3102
3180
|
"type": {
|
|
3103
|
-
"text": "
|
|
3104
|
-
}
|
|
3181
|
+
"text": "boolean"
|
|
3182
|
+
},
|
|
3183
|
+
"default": "false"
|
|
3105
3184
|
},
|
|
3106
3185
|
{
|
|
3107
3186
|
"kind": "field",
|
|
3108
|
-
"name": "
|
|
3187
|
+
"name": "state",
|
|
3109
3188
|
"type": {
|
|
3110
|
-
"text": "
|
|
3189
|
+
"text": "AIIndicatorState"
|
|
3111
3190
|
},
|
|
3112
|
-
"default": "''"
|
|
3191
|
+
"default": "'none'"
|
|
3113
3192
|
},
|
|
3114
3193
|
{
|
|
3115
3194
|
"kind": "field",
|
|
3116
|
-
"name": "
|
|
3117
|
-
"default": "10_485_760",
|
|
3195
|
+
"name": "isInstalling",
|
|
3118
3196
|
"type": {
|
|
3119
|
-
"text": "
|
|
3120
|
-
}
|
|
3197
|
+
"text": "boolean"
|
|
3198
|
+
},
|
|
3199
|
+
"default": "false"
|
|
3121
3200
|
},
|
|
3122
3201
|
{
|
|
3123
3202
|
"kind": "field",
|
|
3124
|
-
"name": "
|
|
3203
|
+
"name": "pollTimer",
|
|
3125
3204
|
"type": {
|
|
3126
|
-
"text": "
|
|
3205
|
+
"text": "ReturnType<typeof setInterval> | null"
|
|
3127
3206
|
},
|
|
3128
|
-
"
|
|
3207
|
+
"privacy": "private",
|
|
3208
|
+
"default": "null"
|
|
3129
3209
|
},
|
|
3130
3210
|
{
|
|
3131
3211
|
"kind": "field",
|
|
3132
|
-
"name": "
|
|
3212
|
+
"name": "clickOutside",
|
|
3213
|
+
"privacy": "private"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"kind": "field",
|
|
3217
|
+
"name": "chromeStatusLabel",
|
|
3218
|
+
"type": {
|
|
3219
|
+
"text": "string | null"
|
|
3220
|
+
},
|
|
3221
|
+
"readonly": true
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"kind": "field",
|
|
3225
|
+
"name": "canInstall",
|
|
3133
3226
|
"type": {
|
|
3134
3227
|
"text": "boolean"
|
|
3135
3228
|
},
|
|
3136
|
-
"
|
|
3229
|
+
"readonly": true
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"kind": "field",
|
|
3233
|
+
"name": "isDownloading",
|
|
3234
|
+
"type": {
|
|
3235
|
+
"text": "boolean"
|
|
3236
|
+
},
|
|
3237
|
+
"readonly": true
|
|
3137
3238
|
},
|
|
3138
3239
|
{
|
|
3139
3240
|
"kind": "method",
|
|
3140
|
-
"name": "
|
|
3141
|
-
"
|
|
3142
|
-
|
|
3241
|
+
"name": "openChanged",
|
|
3242
|
+
"return": {
|
|
3243
|
+
"type": {
|
|
3244
|
+
"text": "void"
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3143
3247
|
},
|
|
3144
3248
|
{
|
|
3145
3249
|
"kind": "method",
|
|
3146
|
-
"name": "
|
|
3147
|
-
"privacy": "
|
|
3250
|
+
"name": "handleClickOutside",
|
|
3251
|
+
"privacy": "private",
|
|
3148
3252
|
"parameters": [
|
|
3149
3253
|
{
|
|
3150
|
-
"name": "
|
|
3254
|
+
"name": "event",
|
|
3151
3255
|
"type": {
|
|
3152
|
-
"text": "
|
|
3153
|
-
}
|
|
3154
|
-
"description": "The change event from the file input"
|
|
3256
|
+
"text": "MouseEvent"
|
|
3257
|
+
}
|
|
3155
3258
|
}
|
|
3156
|
-
]
|
|
3157
|
-
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
3259
|
+
]
|
|
3158
3260
|
},
|
|
3159
3261
|
{
|
|
3160
3262
|
"kind": "method",
|
|
3161
|
-
"name": "
|
|
3162
|
-
"privacy": "public",
|
|
3163
|
-
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
3263
|
+
"name": "toggleDropdown"
|
|
3164
3264
|
},
|
|
3165
3265
|
{
|
|
3166
3266
|
"kind": "method",
|
|
3167
|
-
"name": "
|
|
3168
|
-
"privacy": "public",
|
|
3169
|
-
"description": "Gets the currently selected file object",
|
|
3267
|
+
"name": "refreshStatus",
|
|
3170
3268
|
"return": {
|
|
3171
3269
|
"type": {
|
|
3172
|
-
"text": ""
|
|
3270
|
+
"text": "Promise<void>"
|
|
3173
3271
|
}
|
|
3174
3272
|
}
|
|
3175
3273
|
},
|
|
3176
3274
|
{
|
|
3177
3275
|
"kind": "method",
|
|
3178
|
-
"name": "
|
|
3179
|
-
"privacy": "
|
|
3276
|
+
"name": "deriveState",
|
|
3277
|
+
"privacy": "private",
|
|
3278
|
+
"return": {
|
|
3279
|
+
"type": {
|
|
3280
|
+
"text": "AIIndicatorState"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3180
3283
|
"parameters": [
|
|
3181
3284
|
{
|
|
3182
|
-
"name": "
|
|
3183
|
-
"type": {
|
|
3184
|
-
"text": "string"
|
|
3185
|
-
},
|
|
3186
|
-
"description": "The error title"
|
|
3187
|
-
},
|
|
3188
|
-
{
|
|
3189
|
-
"name": "message",
|
|
3285
|
+
"name": "s",
|
|
3190
3286
|
"type": {
|
|
3191
|
-
"text": "
|
|
3192
|
-
}
|
|
3193
|
-
"description": "The error message"
|
|
3287
|
+
"text": "AIStatus | null"
|
|
3288
|
+
}
|
|
3194
3289
|
}
|
|
3195
|
-
]
|
|
3196
|
-
"description": "Shows an error notification using the unified error handling system"
|
|
3290
|
+
]
|
|
3197
3291
|
},
|
|
3198
3292
|
{
|
|
3199
3293
|
"kind": "method",
|
|
3200
|
-
"name": "
|
|
3201
|
-
"privacy": "
|
|
3294
|
+
"name": "maybeStartPolling",
|
|
3295
|
+
"privacy": "private",
|
|
3202
3296
|
"return": {
|
|
3203
3297
|
"type": {
|
|
3204
3298
|
"text": "void"
|
|
3205
3299
|
}
|
|
3206
|
-
}
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
"kind": "method",
|
|
3304
|
+
"name": "startPolling",
|
|
3305
|
+
"privacy": "private",
|
|
3306
|
+
"return": {
|
|
3307
|
+
"type": {
|
|
3308
|
+
"text": "void"
|
|
3214
3309
|
}
|
|
3215
|
-
|
|
3216
|
-
"description": "Abstract method called when a file is selected"
|
|
3310
|
+
}
|
|
3217
3311
|
},
|
|
3218
3312
|
{
|
|
3219
3313
|
"kind": "method",
|
|
3220
|
-
"name": "
|
|
3221
|
-
"privacy": "
|
|
3314
|
+
"name": "stopPolling",
|
|
3315
|
+
"privacy": "private",
|
|
3222
3316
|
"return": {
|
|
3223
3317
|
"type": {
|
|
3224
3318
|
"text": "void"
|
|
3225
3319
|
}
|
|
3226
|
-
}
|
|
3227
|
-
|
|
3320
|
+
}
|
|
3321
|
+
},
|
|
3322
|
+
{
|
|
3323
|
+
"kind": "method",
|
|
3324
|
+
"name": "onInstall",
|
|
3325
|
+
"return": {
|
|
3326
|
+
"type": {
|
|
3327
|
+
"text": "Promise<void>"
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3228
3330
|
},
|
|
3229
3331
|
{
|
|
3230
3332
|
"kind": "field",
|
|
@@ -3338,97 +3440,88 @@
|
|
|
3338
3440
|
}
|
|
3339
3441
|
}
|
|
3340
3442
|
],
|
|
3341
|
-
"attributes": [
|
|
3342
|
-
{
|
|
3343
|
-
"name": "label",
|
|
3344
|
-
"type": {
|
|
3345
|
-
"text": "string"
|
|
3346
|
-
},
|
|
3347
|
-
"fieldName": "label"
|
|
3348
|
-
},
|
|
3349
|
-
{
|
|
3350
|
-
"name": "accept",
|
|
3351
|
-
"type": {
|
|
3352
|
-
"text": "string"
|
|
3353
|
-
},
|
|
3354
|
-
"default": "''",
|
|
3355
|
-
"fieldName": "accept"
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
"name": "file-size-limit-bytes",
|
|
3359
|
-
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
3360
|
-
"resolveInitializer": {
|
|
3361
|
-
"module": "src/_common/base-file-component.ts"
|
|
3362
|
-
},
|
|
3363
|
-
"fieldName": "fileSizeLimitBytes"
|
|
3364
|
-
}
|
|
3365
|
-
],
|
|
3366
3443
|
"superclass": {
|
|
3367
3444
|
"name": "FoundationElement",
|
|
3368
3445
|
"package": "@microsoft/fast-foundation"
|
|
3369
|
-
}
|
|
3446
|
+
},
|
|
3447
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
3448
|
+
"customElement": true
|
|
3449
|
+
},
|
|
3450
|
+
{
|
|
3451
|
+
"kind": "variable",
|
|
3452
|
+
"name": "foundationAiIndicator"
|
|
3370
3453
|
}
|
|
3371
3454
|
],
|
|
3372
3455
|
"exports": [
|
|
3373
3456
|
{
|
|
3374
3457
|
"kind": "js",
|
|
3375
|
-
"name": "
|
|
3458
|
+
"name": "AiIndicator",
|
|
3376
3459
|
"declaration": {
|
|
3377
|
-
"name": "
|
|
3378
|
-
"module": "src/
|
|
3460
|
+
"name": "AiIndicator",
|
|
3461
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3379
3462
|
}
|
|
3380
|
-
}
|
|
3381
|
-
]
|
|
3382
|
-
},
|
|
3383
|
-
{
|
|
3384
|
-
"kind": "javascript-module",
|
|
3385
|
-
"path": "src/_common/icons.ts",
|
|
3386
|
-
"declarations": [
|
|
3387
|
-
{
|
|
3388
|
-
"kind": "function",
|
|
3389
|
-
"name": "closeIcon",
|
|
3390
|
-
"parameters": [
|
|
3391
|
-
{
|
|
3392
|
-
"name": "slot",
|
|
3393
|
-
"default": "'start'"
|
|
3394
|
-
},
|
|
3395
|
-
{
|
|
3396
|
-
"name": "fill",
|
|
3397
|
-
"default": "'#879ba6'"
|
|
3398
|
-
}
|
|
3399
|
-
]
|
|
3400
|
-
}
|
|
3401
|
-
],
|
|
3402
|
-
"exports": [
|
|
3463
|
+
},
|
|
3403
3464
|
{
|
|
3404
3465
|
"kind": "js",
|
|
3405
|
-
"name": "
|
|
3466
|
+
"name": "foundationAiIndicator",
|
|
3406
3467
|
"declaration": {
|
|
3407
|
-
"name": "
|
|
3408
|
-
"module": "src/
|
|
3468
|
+
"name": "foundationAiIndicator",
|
|
3469
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3409
3470
|
}
|
|
3410
3471
|
}
|
|
3411
3472
|
]
|
|
3412
3473
|
},
|
|
3413
3474
|
{
|
|
3414
3475
|
"kind": "javascript-module",
|
|
3415
|
-
"path": "src/
|
|
3476
|
+
"path": "src/ai-indicator/index.ts",
|
|
3416
3477
|
"declarations": [],
|
|
3417
3478
|
"exports": [
|
|
3418
3479
|
{
|
|
3419
3480
|
"kind": "js",
|
|
3420
|
-
"name": "
|
|
3481
|
+
"name": "AiIndicator",
|
|
3421
3482
|
"declaration": {
|
|
3422
|
-
"name": "
|
|
3423
|
-
"
|
|
3483
|
+
"name": "AiIndicator",
|
|
3484
|
+
"module": "./ai-indicator"
|
|
3424
3485
|
}
|
|
3425
3486
|
},
|
|
3426
3487
|
{
|
|
3427
3488
|
"kind": "js",
|
|
3428
|
-
"name": "
|
|
3489
|
+
"name": "foundationAiIndicator",
|
|
3429
3490
|
"declaration": {
|
|
3430
|
-
"name": "
|
|
3431
|
-
"
|
|
3491
|
+
"name": "foundationAiIndicator",
|
|
3492
|
+
"module": "./ai-indicator"
|
|
3493
|
+
}
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"kind": "js",
|
|
3497
|
+
"name": "type",
|
|
3498
|
+
"declaration": {
|
|
3499
|
+
"name": "type",
|
|
3500
|
+
"module": "./ai-indicator"
|
|
3501
|
+
}
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
"kind": "js",
|
|
3505
|
+
"name": "AIIndicatorState",
|
|
3506
|
+
"declaration": {
|
|
3507
|
+
"name": "AIIndicatorState",
|
|
3508
|
+
"module": "./ai-indicator"
|
|
3509
|
+
}
|
|
3510
|
+
},
|
|
3511
|
+
{
|
|
3512
|
+
"kind": "js",
|
|
3513
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3514
|
+
"declaration": {
|
|
3515
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3516
|
+
"module": "./ai-indicator.template"
|
|
3517
|
+
}
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"kind": "js",
|
|
3521
|
+
"name": "foundationAiIndicatorStyles",
|
|
3522
|
+
"declaration": {
|
|
3523
|
+
"name": "foundationAiIndicatorStyles",
|
|
3524
|
+
"module": "./ai-indicator.styles"
|
|
3432
3525
|
}
|
|
3433
3526
|
}
|
|
3434
3527
|
]
|
|
@@ -24198,7 +24291,7 @@
|
|
|
24198
24291
|
"type": {
|
|
24199
24292
|
"text": "ElementStyles"
|
|
24200
24293
|
},
|
|
24201
|
-
"default": "css`\n /* Host */\n :host {\n display: inline-block;\n height: 100vh;\n position: absolute;\n width: 100vw;\n }\n\n :host([closed]) {\n display: none;\n }\n\n div.container {\n height: 100%;\n width: 100%;\n }\n\n /* flyout */\n div.flyout {\n background-color: white;\n color: black;\n height: 100%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition:\n transform ${flyoutAnimationTime.toString()}ms ease-in,\n width ${flyoutAnimationTime.toString()}ms ease-in-out;\n width: 20
|
|
24294
|
+
"default": "css`\n /* Host */\n :host {\n display: inline-block;\n height: 100vh;\n position: absolute;\n width: 100vw;\n }\n\n :host([closed]) {\n display: none;\n }\n\n div.container {\n height: 100%;\n width: 100%;\n }\n\n /* flyout */\n div.flyout {\n background-color: white;\n color: black;\n height: 100%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition:\n transform ${flyoutAnimationTime.toString()}ms ease-in,\n width ${flyoutAnimationTime.toString()}ms ease-in-out;\n width: var(--flyout-width, 20%);\n z-index: 2001;\n }\n\n :host([position='left']) div.flyout {\n left: 0;\n transform: translateX(0%);\n }\n\n :host([position='right']) div.flyout {\n right: 0;\n transform: translateX(0%);\n }\n\n :host([visuallyhidden][position='left']) div.flyout {\n left: 0;\n transform: translateX(-100%);\n }\n\n :host([visuallyhidden][position='right']) div.flyout {\n right: 0;\n transform: translateX(100%);\n }\n\n div.header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--neutral-foreground-hint);\n font-weight: 500;\n padding: calc(var(--design-unit) * 2px) calc(var(--design-unit) * 3px);\n\n rapid-button {\n --base-height-multiplier: 8;\n }\n\n rapid-button::part(control) {\n padding: 0 calc((8 + var(--design-unit) * 1 * var(--density)) * 1px);\n }\n }\n\n div.title {\n flex-grow: 1;\n }\n\n div.footer {\n bottom: 0;\n position: absolute;\n width: 100%;\n }\n\n /* Background */\n div.background {\n background-color: black;\n height: 100%;\n opacity: 50%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition: opacity ${flyoutAnimationTime.toString()}ms linear;\n width: 100%;\n z-index: 2000;\n }\n\n :host([visuallyhidden]) div.background {\n opacity: 0%;\n }\n`"
|
|
24202
24295
|
}
|
|
24203
24296
|
],
|
|
24204
24297
|
"exports": [
|
|
@@ -24294,6 +24387,10 @@
|
|
|
24294
24387
|
},
|
|
24295
24388
|
"default": "'20%'"
|
|
24296
24389
|
},
|
|
24390
|
+
{
|
|
24391
|
+
"kind": "method",
|
|
24392
|
+
"name": "flyoutWidthChanged"
|
|
24393
|
+
},
|
|
24297
24394
|
{
|
|
24298
24395
|
"kind": "field",
|
|
24299
24396
|
"name": "displayHeader",
|
|
@@ -31624,6 +31721,43 @@
|
|
|
31624
31721
|
}
|
|
31625
31722
|
}
|
|
31626
31723
|
},
|
|
31724
|
+
{
|
|
31725
|
+
"kind": "field",
|
|
31726
|
+
"name": "prefix",
|
|
31727
|
+
"type": {
|
|
31728
|
+
"text": "string"
|
|
31729
|
+
},
|
|
31730
|
+
"description": "Optional non-editable label shown on the left inside the field, before the input.",
|
|
31731
|
+
"inheritedFrom": {
|
|
31732
|
+
"name": "AffixMixin",
|
|
31733
|
+
"module": "src/_common/affix-mixin.ts"
|
|
31734
|
+
}
|
|
31735
|
+
},
|
|
31736
|
+
{
|
|
31737
|
+
"kind": "field",
|
|
31738
|
+
"name": "suffix",
|
|
31739
|
+
"type": {
|
|
31740
|
+
"text": "string"
|
|
31741
|
+
},
|
|
31742
|
+
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
|
|
31743
|
+
"inheritedFrom": {
|
|
31744
|
+
"name": "AffixMixin",
|
|
31745
|
+
"module": "src/_common/affix-mixin.ts"
|
|
31746
|
+
}
|
|
31747
|
+
},
|
|
31748
|
+
{
|
|
31749
|
+
"kind": "field",
|
|
31750
|
+
"name": "hideAffixFromScreenReader",
|
|
31751
|
+
"type": {
|
|
31752
|
+
"text": "boolean"
|
|
31753
|
+
},
|
|
31754
|
+
"default": "false",
|
|
31755
|
+
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
|
|
31756
|
+
"inheritedFrom": {
|
|
31757
|
+
"name": "AffixMixin",
|
|
31758
|
+
"module": "src/_common/affix-mixin.ts"
|
|
31759
|
+
}
|
|
31760
|
+
},
|
|
31627
31761
|
{
|
|
31628
31762
|
"kind": "field",
|
|
31629
31763
|
"name": "readOnly",
|
|
@@ -32040,6 +32174,12 @@
|
|
|
32040
32174
|
}
|
|
32041
32175
|
}
|
|
32042
32176
|
],
|
|
32177
|
+
"mixins": [
|
|
32178
|
+
{
|
|
32179
|
+
"name": "AffixMixin",
|
|
32180
|
+
"module": "/src/_common"
|
|
32181
|
+
}
|
|
32182
|
+
],
|
|
32043
32183
|
"superclass": {
|
|
32044
32184
|
"name": "FASTNumberField",
|
|
32045
32185
|
"package": "@microsoft/fast-components"
|
|
@@ -49732,7 +49872,11 @@
|
|
|
49732
49872
|
"type": {
|
|
49733
49873
|
"text": "string"
|
|
49734
49874
|
},
|
|
49735
|
-
"description": "Optional non-editable label shown on the left inside the field, before the input."
|
|
49875
|
+
"description": "Optional non-editable label shown on the left inside the field, before the input.",
|
|
49876
|
+
"inheritedFrom": {
|
|
49877
|
+
"name": "AffixMixin",
|
|
49878
|
+
"module": "src/_common/affix-mixin.ts"
|
|
49879
|
+
}
|
|
49736
49880
|
},
|
|
49737
49881
|
{
|
|
49738
49882
|
"kind": "field",
|
|
@@ -49740,7 +49884,11 @@
|
|
|
49740
49884
|
"type": {
|
|
49741
49885
|
"text": "string"
|
|
49742
49886
|
},
|
|
49743
|
-
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
|
|
49887
|
+
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
|
|
49888
|
+
"inheritedFrom": {
|
|
49889
|
+
"name": "AffixMixin",
|
|
49890
|
+
"module": "src/_common/affix-mixin.ts"
|
|
49891
|
+
}
|
|
49744
49892
|
},
|
|
49745
49893
|
{
|
|
49746
49894
|
"kind": "field",
|
|
@@ -49749,7 +49897,11 @@
|
|
|
49749
49897
|
"text": "boolean"
|
|
49750
49898
|
},
|
|
49751
49899
|
"default": "false",
|
|
49752
|
-
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes
|
|
49900
|
+
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
|
|
49901
|
+
"inheritedFrom": {
|
|
49902
|
+
"name": "AffixMixin",
|
|
49903
|
+
"module": "src/_common/affix-mixin.ts"
|
|
49904
|
+
}
|
|
49753
49905
|
},
|
|
49754
49906
|
{
|
|
49755
49907
|
"kind": "field",
|
|
@@ -50195,31 +50347,6 @@
|
|
|
50195
50347
|
},
|
|
50196
50348
|
"fieldName": "step"
|
|
50197
50349
|
},
|
|
50198
|
-
{
|
|
50199
|
-
"name": "prefix",
|
|
50200
|
-
"type": {
|
|
50201
|
-
"text": "string"
|
|
50202
|
-
},
|
|
50203
|
-
"description": "Optional non-editable label shown on the left inside the field, before the input.",
|
|
50204
|
-
"fieldName": "prefix"
|
|
50205
|
-
},
|
|
50206
|
-
{
|
|
50207
|
-
"name": "suffix",
|
|
50208
|
-
"type": {
|
|
50209
|
-
"text": "string"
|
|
50210
|
-
},
|
|
50211
|
-
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
|
|
50212
|
-
"fieldName": "suffix"
|
|
50213
|
-
},
|
|
50214
|
-
{
|
|
50215
|
-
"name": "hide-affix-from-screen-reader",
|
|
50216
|
-
"type": {
|
|
50217
|
-
"text": "boolean"
|
|
50218
|
-
},
|
|
50219
|
-
"default": "false",
|
|
50220
|
-
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes, and their ids are omitted from the control’s `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
|
|
50221
|
-
"fieldName": "hideAffixFromScreenReader"
|
|
50222
|
-
},
|
|
50223
50350
|
{
|
|
50224
50351
|
"name": "readonly",
|
|
50225
50352
|
"type": {
|
|
@@ -50292,6 +50419,12 @@
|
|
|
50292
50419
|
}
|
|
50293
50420
|
}
|
|
50294
50421
|
],
|
|
50422
|
+
"mixins": [
|
|
50423
|
+
{
|
|
50424
|
+
"name": "AffixMixin",
|
|
50425
|
+
"module": "/src/_common"
|
|
50426
|
+
}
|
|
50427
|
+
],
|
|
50295
50428
|
"superclass": {
|
|
50296
50429
|
"name": "FASTTextField",
|
|
50297
50430
|
"package": "@microsoft/fast-components"
|
|
@@ -54370,181 +54503,6 @@
|
|
|
54370
54503
|
}
|
|
54371
54504
|
]
|
|
54372
54505
|
},
|
|
54373
|
-
{
|
|
54374
|
-
"kind": "javascript-module",
|
|
54375
|
-
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
54376
|
-
"declarations": [],
|
|
54377
|
-
"exports": []
|
|
54378
|
-
},
|
|
54379
|
-
{
|
|
54380
|
-
"kind": "javascript-module",
|
|
54381
|
-
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
54382
|
-
"declarations": [
|
|
54383
|
-
{
|
|
54384
|
-
"kind": "function",
|
|
54385
|
-
"name": "groupsToCriteria",
|
|
54386
|
-
"return": {
|
|
54387
|
-
"type": {
|
|
54388
|
-
"text": "string"
|
|
54389
|
-
}
|
|
54390
|
-
},
|
|
54391
|
-
"parameters": [
|
|
54392
|
-
{
|
|
54393
|
-
"name": "groups",
|
|
54394
|
-
"type": {
|
|
54395
|
-
"text": "CriteriaGroup[]"
|
|
54396
|
-
}
|
|
54397
|
-
}
|
|
54398
|
-
],
|
|
54399
|
-
"description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
|
|
54400
|
-
},
|
|
54401
|
-
{
|
|
54402
|
-
"kind": "variable",
|
|
54403
|
-
"name": "STRING_OPERATORS",
|
|
54404
|
-
"type": {
|
|
54405
|
-
"text": "CriteriaOperator[]"
|
|
54406
|
-
},
|
|
54407
|
-
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
54408
|
-
},
|
|
54409
|
-
{
|
|
54410
|
-
"kind": "variable",
|
|
54411
|
-
"name": "NUMERIC_OPERATORS",
|
|
54412
|
-
"type": {
|
|
54413
|
-
"text": "CriteriaOperator[]"
|
|
54414
|
-
},
|
|
54415
|
-
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
54416
|
-
},
|
|
54417
|
-
{
|
|
54418
|
-
"kind": "variable",
|
|
54419
|
-
"name": "DATE_OPERATORS",
|
|
54420
|
-
"type": {
|
|
54421
|
-
"text": "CriteriaOperator[]"
|
|
54422
|
-
},
|
|
54423
|
-
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
54424
|
-
},
|
|
54425
|
-
{
|
|
54426
|
-
"kind": "variable",
|
|
54427
|
-
"name": "DATETIME_OPERATORS",
|
|
54428
|
-
"type": {
|
|
54429
|
-
"text": "CriteriaOperator[]"
|
|
54430
|
-
},
|
|
54431
|
-
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
54432
|
-
}
|
|
54433
|
-
],
|
|
54434
|
-
"exports": [
|
|
54435
|
-
{
|
|
54436
|
-
"kind": "js",
|
|
54437
|
-
"name": "groupsToCriteria",
|
|
54438
|
-
"declaration": {
|
|
54439
|
-
"name": "groupsToCriteria",
|
|
54440
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54441
|
-
}
|
|
54442
|
-
},
|
|
54443
|
-
{
|
|
54444
|
-
"kind": "js",
|
|
54445
|
-
"name": "STRING_OPERATORS",
|
|
54446
|
-
"declaration": {
|
|
54447
|
-
"name": "STRING_OPERATORS",
|
|
54448
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54449
|
-
}
|
|
54450
|
-
},
|
|
54451
|
-
{
|
|
54452
|
-
"kind": "js",
|
|
54453
|
-
"name": "NUMERIC_OPERATORS",
|
|
54454
|
-
"declaration": {
|
|
54455
|
-
"name": "NUMERIC_OPERATORS",
|
|
54456
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54457
|
-
}
|
|
54458
|
-
},
|
|
54459
|
-
{
|
|
54460
|
-
"kind": "js",
|
|
54461
|
-
"name": "DATE_OPERATORS",
|
|
54462
|
-
"declaration": {
|
|
54463
|
-
"name": "DATE_OPERATORS",
|
|
54464
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54465
|
-
}
|
|
54466
|
-
},
|
|
54467
|
-
{
|
|
54468
|
-
"kind": "js",
|
|
54469
|
-
"name": "DATETIME_OPERATORS",
|
|
54470
|
-
"declaration": {
|
|
54471
|
-
"name": "DATETIME_OPERATORS",
|
|
54472
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54473
|
-
}
|
|
54474
|
-
}
|
|
54475
|
-
]
|
|
54476
|
-
},
|
|
54477
|
-
{
|
|
54478
|
-
"kind": "javascript-module",
|
|
54479
|
-
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
54480
|
-
"declarations": [
|
|
54481
|
-
{
|
|
54482
|
-
"kind": "function",
|
|
54483
|
-
"name": "validateClauses",
|
|
54484
|
-
"return": {
|
|
54485
|
-
"type": {
|
|
54486
|
-
"text": "ValidationResult"
|
|
54487
|
-
}
|
|
54488
|
-
},
|
|
54489
|
-
"parameters": [
|
|
54490
|
-
{
|
|
54491
|
-
"name": "clauses",
|
|
54492
|
-
"type": {
|
|
54493
|
-
"text": "CriteriaClause[]"
|
|
54494
|
-
}
|
|
54495
|
-
},
|
|
54496
|
-
{
|
|
54497
|
-
"name": "fieldMetadata",
|
|
54498
|
-
"type": {
|
|
54499
|
-
"text": "MetadataDetail[] | string[]"
|
|
54500
|
-
}
|
|
54501
|
-
}
|
|
54502
|
-
]
|
|
54503
|
-
},
|
|
54504
|
-
{
|
|
54505
|
-
"kind": "function",
|
|
54506
|
-
"name": "validateGroups",
|
|
54507
|
-
"return": {
|
|
54508
|
-
"type": {
|
|
54509
|
-
"text": "GroupsValidationResult"
|
|
54510
|
-
}
|
|
54511
|
-
},
|
|
54512
|
-
"parameters": [
|
|
54513
|
-
{
|
|
54514
|
-
"name": "groups",
|
|
54515
|
-
"type": {
|
|
54516
|
-
"text": "CriteriaGroup[]"
|
|
54517
|
-
}
|
|
54518
|
-
},
|
|
54519
|
-
{
|
|
54520
|
-
"name": "fieldMetadata",
|
|
54521
|
-
"type": {
|
|
54522
|
-
"text": "MetadataDetail[] | string[]"
|
|
54523
|
-
}
|
|
54524
|
-
}
|
|
54525
|
-
],
|
|
54526
|
-
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
54527
|
-
}
|
|
54528
|
-
],
|
|
54529
|
-
"exports": [
|
|
54530
|
-
{
|
|
54531
|
-
"kind": "js",
|
|
54532
|
-
"name": "validateClauses",
|
|
54533
|
-
"declaration": {
|
|
54534
|
-
"name": "validateClauses",
|
|
54535
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54536
|
-
}
|
|
54537
|
-
},
|
|
54538
|
-
{
|
|
54539
|
-
"kind": "js",
|
|
54540
|
-
"name": "validateGroups",
|
|
54541
|
-
"declaration": {
|
|
54542
|
-
"name": "validateGroups",
|
|
54543
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54544
|
-
}
|
|
54545
|
-
}
|
|
54546
|
-
]
|
|
54547
|
-
},
|
|
54548
54506
|
{
|
|
54549
54507
|
"kind": "javascript-module",
|
|
54550
54508
|
"path": "src/_config/styles/colors.ts",
|
|
@@ -55917,6 +55875,181 @@
|
|
|
55917
55875
|
"declarations": [],
|
|
55918
55876
|
"exports": []
|
|
55919
55877
|
},
|
|
55878
|
+
{
|
|
55879
|
+
"kind": "javascript-module",
|
|
55880
|
+
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
55881
|
+
"declarations": [],
|
|
55882
|
+
"exports": []
|
|
55883
|
+
},
|
|
55884
|
+
{
|
|
55885
|
+
"kind": "javascript-module",
|
|
55886
|
+
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
55887
|
+
"declarations": [
|
|
55888
|
+
{
|
|
55889
|
+
"kind": "function",
|
|
55890
|
+
"name": "groupsToCriteria",
|
|
55891
|
+
"return": {
|
|
55892
|
+
"type": {
|
|
55893
|
+
"text": "string"
|
|
55894
|
+
}
|
|
55895
|
+
},
|
|
55896
|
+
"parameters": [
|
|
55897
|
+
{
|
|
55898
|
+
"name": "groups",
|
|
55899
|
+
"type": {
|
|
55900
|
+
"text": "CriteriaGroup[]"
|
|
55901
|
+
}
|
|
55902
|
+
}
|
|
55903
|
+
],
|
|
55904
|
+
"description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
|
|
55905
|
+
},
|
|
55906
|
+
{
|
|
55907
|
+
"kind": "variable",
|
|
55908
|
+
"name": "STRING_OPERATORS",
|
|
55909
|
+
"type": {
|
|
55910
|
+
"text": "CriteriaOperator[]"
|
|
55911
|
+
},
|
|
55912
|
+
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
55913
|
+
},
|
|
55914
|
+
{
|
|
55915
|
+
"kind": "variable",
|
|
55916
|
+
"name": "NUMERIC_OPERATORS",
|
|
55917
|
+
"type": {
|
|
55918
|
+
"text": "CriteriaOperator[]"
|
|
55919
|
+
},
|
|
55920
|
+
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
55921
|
+
},
|
|
55922
|
+
{
|
|
55923
|
+
"kind": "variable",
|
|
55924
|
+
"name": "DATE_OPERATORS",
|
|
55925
|
+
"type": {
|
|
55926
|
+
"text": "CriteriaOperator[]"
|
|
55927
|
+
},
|
|
55928
|
+
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
55929
|
+
},
|
|
55930
|
+
{
|
|
55931
|
+
"kind": "variable",
|
|
55932
|
+
"name": "DATETIME_OPERATORS",
|
|
55933
|
+
"type": {
|
|
55934
|
+
"text": "CriteriaOperator[]"
|
|
55935
|
+
},
|
|
55936
|
+
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
55937
|
+
}
|
|
55938
|
+
],
|
|
55939
|
+
"exports": [
|
|
55940
|
+
{
|
|
55941
|
+
"kind": "js",
|
|
55942
|
+
"name": "groupsToCriteria",
|
|
55943
|
+
"declaration": {
|
|
55944
|
+
"name": "groupsToCriteria",
|
|
55945
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55946
|
+
}
|
|
55947
|
+
},
|
|
55948
|
+
{
|
|
55949
|
+
"kind": "js",
|
|
55950
|
+
"name": "STRING_OPERATORS",
|
|
55951
|
+
"declaration": {
|
|
55952
|
+
"name": "STRING_OPERATORS",
|
|
55953
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55954
|
+
}
|
|
55955
|
+
},
|
|
55956
|
+
{
|
|
55957
|
+
"kind": "js",
|
|
55958
|
+
"name": "NUMERIC_OPERATORS",
|
|
55959
|
+
"declaration": {
|
|
55960
|
+
"name": "NUMERIC_OPERATORS",
|
|
55961
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55962
|
+
}
|
|
55963
|
+
},
|
|
55964
|
+
{
|
|
55965
|
+
"kind": "js",
|
|
55966
|
+
"name": "DATE_OPERATORS",
|
|
55967
|
+
"declaration": {
|
|
55968
|
+
"name": "DATE_OPERATORS",
|
|
55969
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55970
|
+
}
|
|
55971
|
+
},
|
|
55972
|
+
{
|
|
55973
|
+
"kind": "js",
|
|
55974
|
+
"name": "DATETIME_OPERATORS",
|
|
55975
|
+
"declaration": {
|
|
55976
|
+
"name": "DATETIME_OPERATORS",
|
|
55977
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55978
|
+
}
|
|
55979
|
+
}
|
|
55980
|
+
]
|
|
55981
|
+
},
|
|
55982
|
+
{
|
|
55983
|
+
"kind": "javascript-module",
|
|
55984
|
+
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
55985
|
+
"declarations": [
|
|
55986
|
+
{
|
|
55987
|
+
"kind": "function",
|
|
55988
|
+
"name": "validateClauses",
|
|
55989
|
+
"return": {
|
|
55990
|
+
"type": {
|
|
55991
|
+
"text": "ValidationResult"
|
|
55992
|
+
}
|
|
55993
|
+
},
|
|
55994
|
+
"parameters": [
|
|
55995
|
+
{
|
|
55996
|
+
"name": "clauses",
|
|
55997
|
+
"type": {
|
|
55998
|
+
"text": "CriteriaClause[]"
|
|
55999
|
+
}
|
|
56000
|
+
},
|
|
56001
|
+
{
|
|
56002
|
+
"name": "fieldMetadata",
|
|
56003
|
+
"type": {
|
|
56004
|
+
"text": "MetadataDetail[] | string[]"
|
|
56005
|
+
}
|
|
56006
|
+
}
|
|
56007
|
+
]
|
|
56008
|
+
},
|
|
56009
|
+
{
|
|
56010
|
+
"kind": "function",
|
|
56011
|
+
"name": "validateGroups",
|
|
56012
|
+
"return": {
|
|
56013
|
+
"type": {
|
|
56014
|
+
"text": "GroupsValidationResult"
|
|
56015
|
+
}
|
|
56016
|
+
},
|
|
56017
|
+
"parameters": [
|
|
56018
|
+
{
|
|
56019
|
+
"name": "groups",
|
|
56020
|
+
"type": {
|
|
56021
|
+
"text": "CriteriaGroup[]"
|
|
56022
|
+
}
|
|
56023
|
+
},
|
|
56024
|
+
{
|
|
56025
|
+
"name": "fieldMetadata",
|
|
56026
|
+
"type": {
|
|
56027
|
+
"text": "MetadataDetail[] | string[]"
|
|
56028
|
+
}
|
|
56029
|
+
}
|
|
56030
|
+
],
|
|
56031
|
+
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
56032
|
+
}
|
|
56033
|
+
],
|
|
56034
|
+
"exports": [
|
|
56035
|
+
{
|
|
56036
|
+
"kind": "js",
|
|
56037
|
+
"name": "validateClauses",
|
|
56038
|
+
"declaration": {
|
|
56039
|
+
"name": "validateClauses",
|
|
56040
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
56041
|
+
}
|
|
56042
|
+
},
|
|
56043
|
+
{
|
|
56044
|
+
"kind": "js",
|
|
56045
|
+
"name": "validateGroups",
|
|
56046
|
+
"declaration": {
|
|
56047
|
+
"name": "validateGroups",
|
|
56048
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
56049
|
+
}
|
|
56050
|
+
}
|
|
56051
|
+
]
|
|
56052
|
+
},
|
|
55920
56053
|
{
|
|
55921
56054
|
"kind": "javascript-module",
|
|
55922
56055
|
"path": "src/environment-indicator/utils/configure.ts",
|