@genesislcap/foundation-ui 14.401.3-hide-status-pill.3 → 14.401.3
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 +688 -715
- package/dist/dts/status-pill/status-pill.d.ts +0 -10
- package/dist/dts/status-pill/status-pill.d.ts.map +1 -1
- package/dist/dts/status-pill/status-pill.template.d.ts.map +1 -1
- package/dist/esm/status-pill/status-pill.js +3 -26
- package/dist/esm/status-pill/status-pill.template.js +26 -28
- package/package.json +19 -19
|
@@ -924,400 +924,6 @@
|
|
|
924
924
|
}
|
|
925
925
|
]
|
|
926
926
|
},
|
|
927
|
-
{
|
|
928
|
-
"kind": "javascript-module",
|
|
929
|
-
"path": "src/_common/base-file-component.ts",
|
|
930
|
-
"declarations": [
|
|
931
|
-
{
|
|
932
|
-
"kind": "class",
|
|
933
|
-
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
934
|
-
"name": "BaseFileComponent",
|
|
935
|
-
"members": [
|
|
936
|
-
{
|
|
937
|
-
"kind": "field",
|
|
938
|
-
"name": "fileInput",
|
|
939
|
-
"type": {
|
|
940
|
-
"text": "HTMLInputElement"
|
|
941
|
-
},
|
|
942
|
-
"privacy": "public"
|
|
943
|
-
},
|
|
944
|
-
{
|
|
945
|
-
"kind": "field",
|
|
946
|
-
"name": "selectedFile",
|
|
947
|
-
"type": {
|
|
948
|
-
"text": "File | null"
|
|
949
|
-
},
|
|
950
|
-
"privacy": "protected",
|
|
951
|
-
"default": "null"
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
"kind": "field",
|
|
955
|
-
"name": "label",
|
|
956
|
-
"type": {
|
|
957
|
-
"text": "string"
|
|
958
|
-
}
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"kind": "field",
|
|
962
|
-
"name": "accept",
|
|
963
|
-
"type": {
|
|
964
|
-
"text": "string"
|
|
965
|
-
},
|
|
966
|
-
"default": "''"
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
"kind": "field",
|
|
970
|
-
"name": "fileSizeLimitBytes",
|
|
971
|
-
"default": "10_485_760",
|
|
972
|
-
"type": {
|
|
973
|
-
"text": "number"
|
|
974
|
-
}
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
"kind": "field",
|
|
978
|
-
"name": "fileName",
|
|
979
|
-
"type": {
|
|
980
|
-
"text": "string"
|
|
981
|
-
},
|
|
982
|
-
"default": "''"
|
|
983
|
-
},
|
|
984
|
-
{
|
|
985
|
-
"kind": "field",
|
|
986
|
-
"name": "isProcessing",
|
|
987
|
-
"type": {
|
|
988
|
-
"text": "boolean"
|
|
989
|
-
},
|
|
990
|
-
"default": "false"
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"kind": "method",
|
|
994
|
-
"name": "handleClick",
|
|
995
|
-
"privacy": "public",
|
|
996
|
-
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
997
|
-
},
|
|
998
|
-
{
|
|
999
|
-
"kind": "method",
|
|
1000
|
-
"name": "onInputChange",
|
|
1001
|
-
"privacy": "public",
|
|
1002
|
-
"parameters": [
|
|
1003
|
-
{
|
|
1004
|
-
"name": "e",
|
|
1005
|
-
"type": {
|
|
1006
|
-
"text": "Event"
|
|
1007
|
-
},
|
|
1008
|
-
"description": "The change event from the file input"
|
|
1009
|
-
}
|
|
1010
|
-
],
|
|
1011
|
-
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"kind": "method",
|
|
1015
|
-
"name": "clearSelection",
|
|
1016
|
-
"privacy": "public",
|
|
1017
|
-
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"kind": "method",
|
|
1021
|
-
"name": "getSelectedFile",
|
|
1022
|
-
"privacy": "public",
|
|
1023
|
-
"description": "Gets the currently selected file object",
|
|
1024
|
-
"return": {
|
|
1025
|
-
"type": {
|
|
1026
|
-
"text": ""
|
|
1027
|
-
}
|
|
1028
|
-
}
|
|
1029
|
-
},
|
|
1030
|
-
{
|
|
1031
|
-
"kind": "method",
|
|
1032
|
-
"name": "showError",
|
|
1033
|
-
"privacy": "protected",
|
|
1034
|
-
"parameters": [
|
|
1035
|
-
{
|
|
1036
|
-
"name": "title",
|
|
1037
|
-
"type": {
|
|
1038
|
-
"text": "string"
|
|
1039
|
-
},
|
|
1040
|
-
"description": "The error title"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"name": "message",
|
|
1044
|
-
"type": {
|
|
1045
|
-
"text": "string"
|
|
1046
|
-
},
|
|
1047
|
-
"description": "The error message"
|
|
1048
|
-
}
|
|
1049
|
-
],
|
|
1050
|
-
"description": "Shows an error notification using the unified error handling system"
|
|
1051
|
-
},
|
|
1052
|
-
{
|
|
1053
|
-
"kind": "method",
|
|
1054
|
-
"name": "onFileSelected",
|
|
1055
|
-
"privacy": "protected",
|
|
1056
|
-
"return": {
|
|
1057
|
-
"type": {
|
|
1058
|
-
"text": "void"
|
|
1059
|
-
}
|
|
1060
|
-
},
|
|
1061
|
-
"parameters": [
|
|
1062
|
-
{
|
|
1063
|
-
"name": "files",
|
|
1064
|
-
"type": {
|
|
1065
|
-
"text": "File[]"
|
|
1066
|
-
},
|
|
1067
|
-
"description": "The selected file"
|
|
1068
|
-
}
|
|
1069
|
-
],
|
|
1070
|
-
"description": "Abstract method called when a file is selected"
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"kind": "method",
|
|
1074
|
-
"name": "onFileCleared",
|
|
1075
|
-
"privacy": "protected",
|
|
1076
|
-
"return": {
|
|
1077
|
-
"type": {
|
|
1078
|
-
"text": "void"
|
|
1079
|
-
}
|
|
1080
|
-
},
|
|
1081
|
-
"description": "Abstract method called when file selection is cleared"
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"kind": "field",
|
|
1085
|
-
"name": "_presentation",
|
|
1086
|
-
"type": {
|
|
1087
|
-
"text": "ComponentPresentation | null | undefined"
|
|
1088
|
-
},
|
|
1089
|
-
"privacy": "private",
|
|
1090
|
-
"default": "void 0",
|
|
1091
|
-
"inheritedFrom": {
|
|
1092
|
-
"name": "FoundationElement",
|
|
1093
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1094
|
-
}
|
|
1095
|
-
},
|
|
1096
|
-
{
|
|
1097
|
-
"kind": "field",
|
|
1098
|
-
"name": "$presentation",
|
|
1099
|
-
"type": {
|
|
1100
|
-
"text": "ComponentPresentation | null"
|
|
1101
|
-
},
|
|
1102
|
-
"privacy": "public",
|
|
1103
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1104
|
-
"inheritedFrom": {
|
|
1105
|
-
"name": "FoundationElement",
|
|
1106
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1107
|
-
}
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
"kind": "field",
|
|
1111
|
-
"name": "template",
|
|
1112
|
-
"type": {
|
|
1113
|
-
"text": "ElementViewTemplate | void | null"
|
|
1114
|
-
},
|
|
1115
|
-
"privacy": "public",
|
|
1116
|
-
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
1117
|
-
"inheritedFrom": {
|
|
1118
|
-
"name": "FoundationElement",
|
|
1119
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1120
|
-
}
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"kind": "method",
|
|
1124
|
-
"name": "templateChanged",
|
|
1125
|
-
"privacy": "protected",
|
|
1126
|
-
"return": {
|
|
1127
|
-
"type": {
|
|
1128
|
-
"text": "void"
|
|
1129
|
-
}
|
|
1130
|
-
},
|
|
1131
|
-
"inheritedFrom": {
|
|
1132
|
-
"name": "FoundationElement",
|
|
1133
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1134
|
-
}
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
"kind": "field",
|
|
1138
|
-
"name": "styles",
|
|
1139
|
-
"type": {
|
|
1140
|
-
"text": "ElementStyles | void | null"
|
|
1141
|
-
},
|
|
1142
|
-
"privacy": "public",
|
|
1143
|
-
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
1144
|
-
"inheritedFrom": {
|
|
1145
|
-
"name": "FoundationElement",
|
|
1146
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1147
|
-
}
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
"kind": "method",
|
|
1151
|
-
"name": "stylesChanged",
|
|
1152
|
-
"privacy": "protected",
|
|
1153
|
-
"return": {
|
|
1154
|
-
"type": {
|
|
1155
|
-
"text": "void"
|
|
1156
|
-
}
|
|
1157
|
-
},
|
|
1158
|
-
"inheritedFrom": {
|
|
1159
|
-
"name": "FoundationElement",
|
|
1160
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1161
|
-
}
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
"kind": "method",
|
|
1165
|
-
"name": "compose",
|
|
1166
|
-
"privacy": "public",
|
|
1167
|
-
"static": true,
|
|
1168
|
-
"return": {
|
|
1169
|
-
"type": {
|
|
1170
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
1171
|
-
}
|
|
1172
|
-
},
|
|
1173
|
-
"parameters": [
|
|
1174
|
-
{
|
|
1175
|
-
"name": "this",
|
|
1176
|
-
"type": {
|
|
1177
|
-
"text": "K"
|
|
1178
|
-
}
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
"name": "elementDefinition",
|
|
1182
|
-
"type": {
|
|
1183
|
-
"text": "T"
|
|
1184
|
-
},
|
|
1185
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
1186
|
-
}
|
|
1187
|
-
],
|
|
1188
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1189
|
-
"inheritedFrom": {
|
|
1190
|
-
"name": "FoundationElement",
|
|
1191
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
],
|
|
1195
|
-
"attributes": [
|
|
1196
|
-
{
|
|
1197
|
-
"name": "label",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "string"
|
|
1200
|
-
},
|
|
1201
|
-
"fieldName": "label"
|
|
1202
|
-
},
|
|
1203
|
-
{
|
|
1204
|
-
"name": "accept",
|
|
1205
|
-
"type": {
|
|
1206
|
-
"text": "string"
|
|
1207
|
-
},
|
|
1208
|
-
"default": "''",
|
|
1209
|
-
"fieldName": "accept"
|
|
1210
|
-
},
|
|
1211
|
-
{
|
|
1212
|
-
"name": "file-size-limit-bytes",
|
|
1213
|
-
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
1214
|
-
"resolveInitializer": {
|
|
1215
|
-
"module": "src/_common/base-file-component.ts"
|
|
1216
|
-
},
|
|
1217
|
-
"fieldName": "fileSizeLimitBytes"
|
|
1218
|
-
}
|
|
1219
|
-
],
|
|
1220
|
-
"superclass": {
|
|
1221
|
-
"name": "FoundationElement",
|
|
1222
|
-
"package": "@microsoft/fast-foundation"
|
|
1223
|
-
}
|
|
1224
|
-
}
|
|
1225
|
-
],
|
|
1226
|
-
"exports": [
|
|
1227
|
-
{
|
|
1228
|
-
"kind": "js",
|
|
1229
|
-
"name": "BaseFileComponent",
|
|
1230
|
-
"declaration": {
|
|
1231
|
-
"name": "BaseFileComponent",
|
|
1232
|
-
"module": "src/_common/base-file-component.ts"
|
|
1233
|
-
}
|
|
1234
|
-
}
|
|
1235
|
-
]
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"kind": "javascript-module",
|
|
1239
|
-
"path": "src/_common/icons.ts",
|
|
1240
|
-
"declarations": [
|
|
1241
|
-
{
|
|
1242
|
-
"kind": "function",
|
|
1243
|
-
"name": "closeIcon",
|
|
1244
|
-
"parameters": [
|
|
1245
|
-
{
|
|
1246
|
-
"name": "slot",
|
|
1247
|
-
"default": "'start'"
|
|
1248
|
-
},
|
|
1249
|
-
{
|
|
1250
|
-
"name": "fill",
|
|
1251
|
-
"default": "'#879ba6'"
|
|
1252
|
-
}
|
|
1253
|
-
]
|
|
1254
|
-
}
|
|
1255
|
-
],
|
|
1256
|
-
"exports": [
|
|
1257
|
-
{
|
|
1258
|
-
"kind": "js",
|
|
1259
|
-
"name": "closeIcon",
|
|
1260
|
-
"declaration": {
|
|
1261
|
-
"name": "closeIcon",
|
|
1262
|
-
"module": "src/_common/icons.ts"
|
|
1263
|
-
}
|
|
1264
|
-
}
|
|
1265
|
-
]
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"kind": "javascript-module",
|
|
1269
|
-
"path": "src/_common/index.ts",
|
|
1270
|
-
"declarations": [],
|
|
1271
|
-
"exports": [
|
|
1272
|
-
{
|
|
1273
|
-
"kind": "js",
|
|
1274
|
-
"name": "*",
|
|
1275
|
-
"declaration": {
|
|
1276
|
-
"name": "*",
|
|
1277
|
-
"package": "./base-file-component"
|
|
1278
|
-
}
|
|
1279
|
-
},
|
|
1280
|
-
{
|
|
1281
|
-
"kind": "js",
|
|
1282
|
-
"name": "*",
|
|
1283
|
-
"declaration": {
|
|
1284
|
-
"name": "*",
|
|
1285
|
-
"package": "./icons"
|
|
1286
|
-
}
|
|
1287
|
-
}
|
|
1288
|
-
]
|
|
1289
|
-
},
|
|
1290
|
-
{
|
|
1291
|
-
"kind": "javascript-module",
|
|
1292
|
-
"path": "src/_config/index.ts",
|
|
1293
|
-
"declarations": [],
|
|
1294
|
-
"exports": [
|
|
1295
|
-
{
|
|
1296
|
-
"kind": "js",
|
|
1297
|
-
"name": "*",
|
|
1298
|
-
"declaration": {
|
|
1299
|
-
"name": "*",
|
|
1300
|
-
"package": "./styles"
|
|
1301
|
-
}
|
|
1302
|
-
},
|
|
1303
|
-
{
|
|
1304
|
-
"kind": "js",
|
|
1305
|
-
"name": "*",
|
|
1306
|
-
"declaration": {
|
|
1307
|
-
"name": "*",
|
|
1308
|
-
"package": "./tokens"
|
|
1309
|
-
}
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"kind": "js",
|
|
1313
|
-
"name": "*",
|
|
1314
|
-
"declaration": {
|
|
1315
|
-
"name": "*",
|
|
1316
|
-
"package": "./values"
|
|
1317
|
-
}
|
|
1318
|
-
}
|
|
1319
|
-
]
|
|
1320
|
-
},
|
|
1321
927
|
{
|
|
1322
928
|
"kind": "javascript-module",
|
|
1323
929
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -2273,158 +1879,347 @@
|
|
|
2273
1879
|
},
|
|
2274
1880
|
{
|
|
2275
1881
|
"kind": "javascript-module",
|
|
2276
|
-
"path": "src/
|
|
1882
|
+
"path": "src/_common/base-file-component.ts",
|
|
2277
1883
|
"declarations": [
|
|
2278
1884
|
{
|
|
2279
|
-
"kind": "
|
|
2280
|
-
"
|
|
2281
|
-
"
|
|
2282
|
-
|
|
2283
|
-
"text": "ElementStyles"
|
|
2284
|
-
}
|
|
2285
|
-
},
|
|
2286
|
-
"parameters": [
|
|
1885
|
+
"kind": "class",
|
|
1886
|
+
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
1887
|
+
"name": "BaseFileComponent",
|
|
1888
|
+
"members": [
|
|
2287
1889
|
{
|
|
2288
|
-
"
|
|
1890
|
+
"kind": "field",
|
|
1891
|
+
"name": "fileInput",
|
|
2289
1892
|
"type": {
|
|
2290
|
-
"text": "
|
|
1893
|
+
"text": "HTMLInputElement"
|
|
1894
|
+
},
|
|
1895
|
+
"privacy": "public"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"kind": "field",
|
|
1899
|
+
"name": "selectedFile",
|
|
1900
|
+
"type": {
|
|
1901
|
+
"text": "File | null"
|
|
1902
|
+
},
|
|
1903
|
+
"privacy": "protected",
|
|
1904
|
+
"default": "null"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"kind": "field",
|
|
1908
|
+
"name": "label",
|
|
1909
|
+
"type": {
|
|
1910
|
+
"text": "string"
|
|
2291
1911
|
}
|
|
2292
1912
|
},
|
|
2293
1913
|
{
|
|
2294
|
-
"
|
|
1914
|
+
"kind": "field",
|
|
1915
|
+
"name": "accept",
|
|
2295
1916
|
"type": {
|
|
2296
|
-
"text": "
|
|
1917
|
+
"text": "string"
|
|
1918
|
+
},
|
|
1919
|
+
"default": "''"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"kind": "field",
|
|
1923
|
+
"name": "fileSizeLimitBytes",
|
|
1924
|
+
"default": "10_485_760",
|
|
1925
|
+
"type": {
|
|
1926
|
+
"text": "number"
|
|
2297
1927
|
}
|
|
2298
|
-
}
|
|
2299
|
-
]
|
|
2300
|
-
}
|
|
2301
|
-
],
|
|
2302
|
-
"exports": [
|
|
2303
|
-
{
|
|
2304
|
-
"kind": "js",
|
|
2305
|
-
"name": "foundationAccordionStyles",
|
|
2306
|
-
"declaration": {
|
|
2307
|
-
"name": "foundationAccordionStyles",
|
|
2308
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
2309
|
-
}
|
|
2310
|
-
}
|
|
2311
|
-
]
|
|
2312
|
-
},
|
|
2313
|
-
{
|
|
2314
|
-
"kind": "javascript-module",
|
|
2315
|
-
"path": "src/accordion/accordion.template.ts",
|
|
2316
|
-
"declarations": [
|
|
2317
|
-
{
|
|
2318
|
-
"kind": "function",
|
|
2319
|
-
"name": "foundationAccordionTemplate",
|
|
2320
|
-
"return": {
|
|
2321
|
-
"type": {
|
|
2322
|
-
"text": "ViewTemplate<Accordion>"
|
|
2323
|
-
}
|
|
2324
|
-
},
|
|
2325
|
-
"parameters": [
|
|
1928
|
+
},
|
|
2326
1929
|
{
|
|
2327
|
-
"
|
|
1930
|
+
"kind": "field",
|
|
1931
|
+
"name": "fileName",
|
|
2328
1932
|
"type": {
|
|
2329
|
-
"text": "
|
|
1933
|
+
"text": "string"
|
|
1934
|
+
},
|
|
1935
|
+
"default": "''"
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"kind": "field",
|
|
1939
|
+
"name": "isProcessing",
|
|
1940
|
+
"type": {
|
|
1941
|
+
"text": "boolean"
|
|
1942
|
+
},
|
|
1943
|
+
"default": "false"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"kind": "method",
|
|
1947
|
+
"name": "handleClick",
|
|
1948
|
+
"privacy": "public",
|
|
1949
|
+
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"kind": "method",
|
|
1953
|
+
"name": "onInputChange",
|
|
1954
|
+
"privacy": "public",
|
|
1955
|
+
"parameters": [
|
|
1956
|
+
{
|
|
1957
|
+
"name": "e",
|
|
1958
|
+
"type": {
|
|
1959
|
+
"text": "Event"
|
|
1960
|
+
},
|
|
1961
|
+
"description": "The change event from the file input"
|
|
1962
|
+
}
|
|
1963
|
+
],
|
|
1964
|
+
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"kind": "method",
|
|
1968
|
+
"name": "clearSelection",
|
|
1969
|
+
"privacy": "public",
|
|
1970
|
+
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
"kind": "method",
|
|
1974
|
+
"name": "getSelectedFile",
|
|
1975
|
+
"privacy": "public",
|
|
1976
|
+
"description": "Gets the currently selected file object",
|
|
1977
|
+
"return": {
|
|
1978
|
+
"type": {
|
|
1979
|
+
"text": ""
|
|
1980
|
+
}
|
|
2330
1981
|
}
|
|
2331
1982
|
},
|
|
2332
1983
|
{
|
|
2333
|
-
"
|
|
1984
|
+
"kind": "method",
|
|
1985
|
+
"name": "showError",
|
|
1986
|
+
"privacy": "protected",
|
|
1987
|
+
"parameters": [
|
|
1988
|
+
{
|
|
1989
|
+
"name": "title",
|
|
1990
|
+
"type": {
|
|
1991
|
+
"text": "string"
|
|
1992
|
+
},
|
|
1993
|
+
"description": "The error title"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "message",
|
|
1997
|
+
"type": {
|
|
1998
|
+
"text": "string"
|
|
1999
|
+
},
|
|
2000
|
+
"description": "The error message"
|
|
2001
|
+
}
|
|
2002
|
+
],
|
|
2003
|
+
"description": "Shows an error notification using the unified error handling system"
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
"kind": "method",
|
|
2007
|
+
"name": "onFileSelected",
|
|
2008
|
+
"privacy": "protected",
|
|
2009
|
+
"return": {
|
|
2010
|
+
"type": {
|
|
2011
|
+
"text": "void"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"parameters": [
|
|
2015
|
+
{
|
|
2016
|
+
"name": "files",
|
|
2017
|
+
"type": {
|
|
2018
|
+
"text": "File[]"
|
|
2019
|
+
},
|
|
2020
|
+
"description": "The selected file"
|
|
2021
|
+
}
|
|
2022
|
+
],
|
|
2023
|
+
"description": "Abstract method called when a file is selected"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"kind": "method",
|
|
2027
|
+
"name": "onFileCleared",
|
|
2028
|
+
"privacy": "protected",
|
|
2029
|
+
"return": {
|
|
2030
|
+
"type": {
|
|
2031
|
+
"text": "void"
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
"description": "Abstract method called when file selection is cleared"
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
"kind": "field",
|
|
2038
|
+
"name": "_presentation",
|
|
2334
2039
|
"type": {
|
|
2335
|
-
"text": "
|
|
2040
|
+
"text": "ComponentPresentation | null | undefined"
|
|
2041
|
+
},
|
|
2042
|
+
"privacy": "private",
|
|
2043
|
+
"default": "void 0",
|
|
2044
|
+
"inheritedFrom": {
|
|
2045
|
+
"name": "FoundationElement",
|
|
2046
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
"kind": "field",
|
|
2051
|
+
"name": "$presentation",
|
|
2052
|
+
"type": {
|
|
2053
|
+
"text": "ComponentPresentation | null"
|
|
2054
|
+
},
|
|
2055
|
+
"privacy": "public",
|
|
2056
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
2057
|
+
"inheritedFrom": {
|
|
2058
|
+
"name": "FoundationElement",
|
|
2059
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
"kind": "field",
|
|
2064
|
+
"name": "template",
|
|
2065
|
+
"type": {
|
|
2066
|
+
"text": "ElementViewTemplate | void | null"
|
|
2067
|
+
},
|
|
2068
|
+
"privacy": "public",
|
|
2069
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
2070
|
+
"inheritedFrom": {
|
|
2071
|
+
"name": "FoundationElement",
|
|
2072
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"kind": "method",
|
|
2077
|
+
"name": "templateChanged",
|
|
2078
|
+
"privacy": "protected",
|
|
2079
|
+
"return": {
|
|
2080
|
+
"type": {
|
|
2081
|
+
"text": "void"
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2084
|
+
"inheritedFrom": {
|
|
2085
|
+
"name": "FoundationElement",
|
|
2086
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"kind": "field",
|
|
2091
|
+
"name": "styles",
|
|
2092
|
+
"type": {
|
|
2093
|
+
"text": "ElementStyles | void | null"
|
|
2094
|
+
},
|
|
2095
|
+
"privacy": "public",
|
|
2096
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
2097
|
+
"inheritedFrom": {
|
|
2098
|
+
"name": "FoundationElement",
|
|
2099
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
"kind": "method",
|
|
2104
|
+
"name": "stylesChanged",
|
|
2105
|
+
"privacy": "protected",
|
|
2106
|
+
"return": {
|
|
2107
|
+
"type": {
|
|
2108
|
+
"text": "void"
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
"inheritedFrom": {
|
|
2112
|
+
"name": "FoundationElement",
|
|
2113
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"kind": "method",
|
|
2118
|
+
"name": "compose",
|
|
2119
|
+
"privacy": "public",
|
|
2120
|
+
"static": true,
|
|
2121
|
+
"return": {
|
|
2122
|
+
"type": {
|
|
2123
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
2124
|
+
}
|
|
2125
|
+
},
|
|
2126
|
+
"parameters": [
|
|
2127
|
+
{
|
|
2128
|
+
"name": "this",
|
|
2129
|
+
"type": {
|
|
2130
|
+
"text": "K"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"name": "elementDefinition",
|
|
2135
|
+
"type": {
|
|
2136
|
+
"text": "T"
|
|
2137
|
+
},
|
|
2138
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
2139
|
+
}
|
|
2140
|
+
],
|
|
2141
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
2142
|
+
"inheritedFrom": {
|
|
2143
|
+
"name": "FoundationElement",
|
|
2144
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2336
2145
|
}
|
|
2337
2146
|
}
|
|
2338
|
-
]
|
|
2147
|
+
],
|
|
2148
|
+
"attributes": [
|
|
2149
|
+
{
|
|
2150
|
+
"name": "label",
|
|
2151
|
+
"type": {
|
|
2152
|
+
"text": "string"
|
|
2153
|
+
},
|
|
2154
|
+
"fieldName": "label"
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"name": "accept",
|
|
2158
|
+
"type": {
|
|
2159
|
+
"text": "string"
|
|
2160
|
+
},
|
|
2161
|
+
"default": "''",
|
|
2162
|
+
"fieldName": "accept"
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"name": "file-size-limit-bytes",
|
|
2166
|
+
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
2167
|
+
"resolveInitializer": {
|
|
2168
|
+
"module": "src/_common/base-file-component.ts"
|
|
2169
|
+
},
|
|
2170
|
+
"fieldName": "fileSizeLimitBytes"
|
|
2171
|
+
}
|
|
2172
|
+
],
|
|
2173
|
+
"superclass": {
|
|
2174
|
+
"name": "FoundationElement",
|
|
2175
|
+
"package": "@microsoft/fast-foundation"
|
|
2176
|
+
}
|
|
2339
2177
|
}
|
|
2340
2178
|
],
|
|
2341
2179
|
"exports": [
|
|
2342
2180
|
{
|
|
2343
2181
|
"kind": "js",
|
|
2344
|
-
"name": "
|
|
2182
|
+
"name": "BaseFileComponent",
|
|
2345
2183
|
"declaration": {
|
|
2346
|
-
"name": "
|
|
2347
|
-
"module": "src/
|
|
2184
|
+
"name": "BaseFileComponent",
|
|
2185
|
+
"module": "src/_common/base-file-component.ts"
|
|
2348
2186
|
}
|
|
2349
2187
|
}
|
|
2350
2188
|
]
|
|
2351
2189
|
},
|
|
2352
2190
|
{
|
|
2353
2191
|
"kind": "javascript-module",
|
|
2354
|
-
"path": "src/
|
|
2192
|
+
"path": "src/_common/icons.ts",
|
|
2355
2193
|
"declarations": [
|
|
2356
2194
|
{
|
|
2357
|
-
"kind": "
|
|
2358
|
-
"
|
|
2359
|
-
"
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
"name": "foundationAccordionShadowOptions",
|
|
2370
|
-
"type": {
|
|
2371
|
-
"text": "ShadowRootInit"
|
|
2372
|
-
},
|
|
2373
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
2374
|
-
},
|
|
2375
|
-
{
|
|
2376
|
-
"kind": "variable",
|
|
2377
|
-
"name": "defaultAccordionConfig",
|
|
2378
|
-
"type": {
|
|
2379
|
-
"text": "object"
|
|
2380
|
-
},
|
|
2381
|
-
"default": "{}"
|
|
2382
|
-
},
|
|
2383
|
-
{
|
|
2384
|
-
"kind": "variable",
|
|
2385
|
-
"name": "foundationAccordion",
|
|
2386
|
-
"description": "The Foundation Accordion",
|
|
2387
|
-
"privacy": "public"
|
|
2195
|
+
"kind": "function",
|
|
2196
|
+
"name": "closeIcon",
|
|
2197
|
+
"parameters": [
|
|
2198
|
+
{
|
|
2199
|
+
"name": "slot",
|
|
2200
|
+
"default": "'start'"
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"name": "fill",
|
|
2204
|
+
"default": "'#879ba6'"
|
|
2205
|
+
}
|
|
2206
|
+
]
|
|
2388
2207
|
}
|
|
2389
2208
|
],
|
|
2390
2209
|
"exports": [
|
|
2391
2210
|
{
|
|
2392
2211
|
"kind": "js",
|
|
2393
|
-
"name": "
|
|
2394
|
-
"declaration": {
|
|
2395
|
-
"name": "Accordion",
|
|
2396
|
-
"module": "src/accordion/accordion.ts"
|
|
2397
|
-
}
|
|
2398
|
-
},
|
|
2399
|
-
{
|
|
2400
|
-
"kind": "js",
|
|
2401
|
-
"name": "foundationAccordionShadowOptions",
|
|
2402
|
-
"declaration": {
|
|
2403
|
-
"name": "foundationAccordionShadowOptions",
|
|
2404
|
-
"module": "src/accordion/accordion.ts"
|
|
2405
|
-
}
|
|
2406
|
-
},
|
|
2407
|
-
{
|
|
2408
|
-
"kind": "js",
|
|
2409
|
-
"name": "defaultAccordionConfig",
|
|
2410
|
-
"declaration": {
|
|
2411
|
-
"name": "defaultAccordionConfig",
|
|
2412
|
-
"module": "src/accordion/accordion.ts"
|
|
2413
|
-
}
|
|
2414
|
-
},
|
|
2415
|
-
{
|
|
2416
|
-
"kind": "js",
|
|
2417
|
-
"name": "foundationAccordion",
|
|
2212
|
+
"name": "closeIcon",
|
|
2418
2213
|
"declaration": {
|
|
2419
|
-
"name": "
|
|
2420
|
-
"module": "src/
|
|
2214
|
+
"name": "closeIcon",
|
|
2215
|
+
"module": "src/_common/icons.ts"
|
|
2421
2216
|
}
|
|
2422
2217
|
}
|
|
2423
2218
|
]
|
|
2424
2219
|
},
|
|
2425
2220
|
{
|
|
2426
2221
|
"kind": "javascript-module",
|
|
2427
|
-
"path": "src/
|
|
2222
|
+
"path": "src/_common/index.ts",
|
|
2428
2223
|
"declarations": [],
|
|
2429
2224
|
"exports": [
|
|
2430
2225
|
{
|
|
@@ -2432,15 +2227,7 @@
|
|
|
2432
2227
|
"name": "*",
|
|
2433
2228
|
"declaration": {
|
|
2434
2229
|
"name": "*",
|
|
2435
|
-
"package": "./
|
|
2436
|
-
}
|
|
2437
|
-
},
|
|
2438
|
-
{
|
|
2439
|
-
"kind": "js",
|
|
2440
|
-
"name": "*",
|
|
2441
|
-
"declaration": {
|
|
2442
|
-
"name": "*",
|
|
2443
|
-
"package": "./accordion.styles"
|
|
2230
|
+
"package": "./base-file-component"
|
|
2444
2231
|
}
|
|
2445
2232
|
},
|
|
2446
2233
|
{
|
|
@@ -2448,7 +2235,7 @@
|
|
|
2448
2235
|
"name": "*",
|
|
2449
2236
|
"declaration": {
|
|
2450
2237
|
"name": "*",
|
|
2451
|
-
"package": "./
|
|
2238
|
+
"package": "./icons"
|
|
2452
2239
|
}
|
|
2453
2240
|
}
|
|
2454
2241
|
]
|
|
@@ -3433,6 +3220,219 @@
|
|
|
3433
3220
|
}
|
|
3434
3221
|
]
|
|
3435
3222
|
},
|
|
3223
|
+
{
|
|
3224
|
+
"kind": "javascript-module",
|
|
3225
|
+
"path": "src/_config/index.ts",
|
|
3226
|
+
"declarations": [],
|
|
3227
|
+
"exports": [
|
|
3228
|
+
{
|
|
3229
|
+
"kind": "js",
|
|
3230
|
+
"name": "*",
|
|
3231
|
+
"declaration": {
|
|
3232
|
+
"name": "*",
|
|
3233
|
+
"package": "./styles"
|
|
3234
|
+
}
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"kind": "js",
|
|
3238
|
+
"name": "*",
|
|
3239
|
+
"declaration": {
|
|
3240
|
+
"name": "*",
|
|
3241
|
+
"package": "./tokens"
|
|
3242
|
+
}
|
|
3243
|
+
},
|
|
3244
|
+
{
|
|
3245
|
+
"kind": "js",
|
|
3246
|
+
"name": "*",
|
|
3247
|
+
"declaration": {
|
|
3248
|
+
"name": "*",
|
|
3249
|
+
"package": "./values"
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
]
|
|
3253
|
+
},
|
|
3254
|
+
{
|
|
3255
|
+
"kind": "javascript-module",
|
|
3256
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
3257
|
+
"declarations": [
|
|
3258
|
+
{
|
|
3259
|
+
"kind": "function",
|
|
3260
|
+
"name": "foundationAccordionStyles",
|
|
3261
|
+
"return": {
|
|
3262
|
+
"type": {
|
|
3263
|
+
"text": "ElementStyles"
|
|
3264
|
+
}
|
|
3265
|
+
},
|
|
3266
|
+
"parameters": [
|
|
3267
|
+
{
|
|
3268
|
+
"name": "context",
|
|
3269
|
+
"type": {
|
|
3270
|
+
"text": "ElementDefinitionContext"
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3273
|
+
{
|
|
3274
|
+
"name": "definition",
|
|
3275
|
+
"type": {
|
|
3276
|
+
"text": "FoundationElementDefinition"
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
]
|
|
3280
|
+
}
|
|
3281
|
+
],
|
|
3282
|
+
"exports": [
|
|
3283
|
+
{
|
|
3284
|
+
"kind": "js",
|
|
3285
|
+
"name": "foundationAccordionStyles",
|
|
3286
|
+
"declaration": {
|
|
3287
|
+
"name": "foundationAccordionStyles",
|
|
3288
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
]
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
"kind": "javascript-module",
|
|
3295
|
+
"path": "src/accordion/accordion.template.ts",
|
|
3296
|
+
"declarations": [
|
|
3297
|
+
{
|
|
3298
|
+
"kind": "function",
|
|
3299
|
+
"name": "foundationAccordionTemplate",
|
|
3300
|
+
"return": {
|
|
3301
|
+
"type": {
|
|
3302
|
+
"text": "ViewTemplate<Accordion>"
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
"parameters": [
|
|
3306
|
+
{
|
|
3307
|
+
"name": "context",
|
|
3308
|
+
"type": {
|
|
3309
|
+
"text": "ElementDefinitionContext"
|
|
3310
|
+
}
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
"name": "definition",
|
|
3314
|
+
"type": {
|
|
3315
|
+
"text": "FoundationElementDefinition"
|
|
3316
|
+
}
|
|
3317
|
+
}
|
|
3318
|
+
]
|
|
3319
|
+
}
|
|
3320
|
+
],
|
|
3321
|
+
"exports": [
|
|
3322
|
+
{
|
|
3323
|
+
"kind": "js",
|
|
3324
|
+
"name": "foundationAccordionTemplate",
|
|
3325
|
+
"declaration": {
|
|
3326
|
+
"name": "foundationAccordionTemplate",
|
|
3327
|
+
"module": "src/accordion/accordion.template.ts"
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
]
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"kind": "javascript-module",
|
|
3334
|
+
"path": "src/accordion/accordion.ts",
|
|
3335
|
+
"declarations": [
|
|
3336
|
+
{
|
|
3337
|
+
"kind": "class",
|
|
3338
|
+
"description": "",
|
|
3339
|
+
"name": "Accordion",
|
|
3340
|
+
"superclass": {
|
|
3341
|
+
"name": "FASTAccordion",
|
|
3342
|
+
"package": "@microsoft/fast-foundation"
|
|
3343
|
+
},
|
|
3344
|
+
"tagName": "%%prefix%%-accordion",
|
|
3345
|
+
"customElement": true
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
"kind": "variable",
|
|
3349
|
+
"name": "foundationAccordionShadowOptions",
|
|
3350
|
+
"type": {
|
|
3351
|
+
"text": "ShadowRootInit"
|
|
3352
|
+
},
|
|
3353
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3354
|
+
},
|
|
3355
|
+
{
|
|
3356
|
+
"kind": "variable",
|
|
3357
|
+
"name": "defaultAccordionConfig",
|
|
3358
|
+
"type": {
|
|
3359
|
+
"text": "object"
|
|
3360
|
+
},
|
|
3361
|
+
"default": "{}"
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
"kind": "variable",
|
|
3365
|
+
"name": "foundationAccordion",
|
|
3366
|
+
"description": "The Foundation Accordion",
|
|
3367
|
+
"privacy": "public"
|
|
3368
|
+
}
|
|
3369
|
+
],
|
|
3370
|
+
"exports": [
|
|
3371
|
+
{
|
|
3372
|
+
"kind": "js",
|
|
3373
|
+
"name": "Accordion",
|
|
3374
|
+
"declaration": {
|
|
3375
|
+
"name": "Accordion",
|
|
3376
|
+
"module": "src/accordion/accordion.ts"
|
|
3377
|
+
}
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
"kind": "js",
|
|
3381
|
+
"name": "foundationAccordionShadowOptions",
|
|
3382
|
+
"declaration": {
|
|
3383
|
+
"name": "foundationAccordionShadowOptions",
|
|
3384
|
+
"module": "src/accordion/accordion.ts"
|
|
3385
|
+
}
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"kind": "js",
|
|
3389
|
+
"name": "defaultAccordionConfig",
|
|
3390
|
+
"declaration": {
|
|
3391
|
+
"name": "defaultAccordionConfig",
|
|
3392
|
+
"module": "src/accordion/accordion.ts"
|
|
3393
|
+
}
|
|
3394
|
+
},
|
|
3395
|
+
{
|
|
3396
|
+
"kind": "js",
|
|
3397
|
+
"name": "foundationAccordion",
|
|
3398
|
+
"declaration": {
|
|
3399
|
+
"name": "foundationAccordion",
|
|
3400
|
+
"module": "src/accordion/accordion.ts"
|
|
3401
|
+
}
|
|
3402
|
+
}
|
|
3403
|
+
]
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"kind": "javascript-module",
|
|
3407
|
+
"path": "src/accordion/index.ts",
|
|
3408
|
+
"declarations": [],
|
|
3409
|
+
"exports": [
|
|
3410
|
+
{
|
|
3411
|
+
"kind": "js",
|
|
3412
|
+
"name": "*",
|
|
3413
|
+
"declaration": {
|
|
3414
|
+
"name": "*",
|
|
3415
|
+
"package": "./accordion.template"
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
"kind": "js",
|
|
3420
|
+
"name": "*",
|
|
3421
|
+
"declaration": {
|
|
3422
|
+
"name": "*",
|
|
3423
|
+
"package": "./accordion.styles"
|
|
3424
|
+
}
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
"kind": "js",
|
|
3428
|
+
"name": "*",
|
|
3429
|
+
"declaration": {
|
|
3430
|
+
"name": "*",
|
|
3431
|
+
"package": "./accordion"
|
|
3432
|
+
}
|
|
3433
|
+
}
|
|
3434
|
+
]
|
|
3435
|
+
},
|
|
3436
3436
|
{
|
|
3437
3437
|
"kind": "javascript-module",
|
|
3438
3438
|
"path": "src/anchor/anchor.styles.ts",
|
|
@@ -45408,15 +45408,6 @@
|
|
|
45408
45408
|
"default": "'second'",
|
|
45409
45409
|
"attribute": "date-countdown-unit"
|
|
45410
45410
|
},
|
|
45411
|
-
{
|
|
45412
|
-
"kind": "field",
|
|
45413
|
-
"name": "hideWhenCountdownCompleted",
|
|
45414
|
-
"type": {
|
|
45415
|
-
"text": "boolean"
|
|
45416
|
-
},
|
|
45417
|
-
"default": "false",
|
|
45418
|
-
"attribute": "hide-when-countdown-completed"
|
|
45419
|
-
},
|
|
45420
45411
|
{
|
|
45421
45412
|
"kind": "field",
|
|
45422
45413
|
"name": "dateInterval",
|
|
@@ -45654,15 +45645,6 @@
|
|
|
45654
45645
|
"fieldName": "dateCountdownUnit",
|
|
45655
45646
|
"description": "the minimum unit of time shown in the countdown. Defaults to 'seconds'"
|
|
45656
45647
|
},
|
|
45657
|
-
{
|
|
45658
|
-
"name": "hide-when-countdown-completed",
|
|
45659
|
-
"type": {
|
|
45660
|
-
"text": "boolean"
|
|
45661
|
-
},
|
|
45662
|
-
"default": "false",
|
|
45663
|
-
"fieldName": "hideWhenCountdownCompleted",
|
|
45664
|
-
"description": "if true, the status pill will be removed from the template once the countdown has expired."
|
|
45665
|
-
},
|
|
45666
45648
|
{
|
|
45667
45649
|
"name": "background-color",
|
|
45668
45650
|
"type": {
|
|
@@ -45753,15 +45735,6 @@
|
|
|
45753
45735
|
"default": "'second'",
|
|
45754
45736
|
"attribute": "date-countdown-unit",
|
|
45755
45737
|
"fieldName": "dateCountdownUnit"
|
|
45756
|
-
},
|
|
45757
|
-
{
|
|
45758
|
-
"name": "hide-when-countdown-completed",
|
|
45759
|
-
"type": {
|
|
45760
|
-
"text": "boolean"
|
|
45761
|
-
},
|
|
45762
|
-
"default": "false",
|
|
45763
|
-
"attribute": "hide-when-countdown-completed",
|
|
45764
|
-
"fieldName": "hideWhenCountdownCompleted"
|
|
45765
45738
|
}
|
|
45766
45739
|
],
|
|
45767
45740
|
"superclass": {
|
|
@@ -54253,6 +54226,181 @@
|
|
|
54253
54226
|
}
|
|
54254
54227
|
]
|
|
54255
54228
|
},
|
|
54229
|
+
{
|
|
54230
|
+
"kind": "javascript-module",
|
|
54231
|
+
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
54232
|
+
"declarations": [],
|
|
54233
|
+
"exports": []
|
|
54234
|
+
},
|
|
54235
|
+
{
|
|
54236
|
+
"kind": "javascript-module",
|
|
54237
|
+
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
54238
|
+
"declarations": [
|
|
54239
|
+
{
|
|
54240
|
+
"kind": "function",
|
|
54241
|
+
"name": "groupsToCriteria",
|
|
54242
|
+
"return": {
|
|
54243
|
+
"type": {
|
|
54244
|
+
"text": "string"
|
|
54245
|
+
}
|
|
54246
|
+
},
|
|
54247
|
+
"parameters": [
|
|
54248
|
+
{
|
|
54249
|
+
"name": "groups",
|
|
54250
|
+
"type": {
|
|
54251
|
+
"text": "CriteriaGroup[]"
|
|
54252
|
+
}
|
|
54253
|
+
}
|
|
54254
|
+
],
|
|
54255
|
+
"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."
|
|
54256
|
+
},
|
|
54257
|
+
{
|
|
54258
|
+
"kind": "variable",
|
|
54259
|
+
"name": "STRING_OPERATORS",
|
|
54260
|
+
"type": {
|
|
54261
|
+
"text": "CriteriaOperator[]"
|
|
54262
|
+
},
|
|
54263
|
+
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
54264
|
+
},
|
|
54265
|
+
{
|
|
54266
|
+
"kind": "variable",
|
|
54267
|
+
"name": "NUMERIC_OPERATORS",
|
|
54268
|
+
"type": {
|
|
54269
|
+
"text": "CriteriaOperator[]"
|
|
54270
|
+
},
|
|
54271
|
+
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
54272
|
+
},
|
|
54273
|
+
{
|
|
54274
|
+
"kind": "variable",
|
|
54275
|
+
"name": "DATE_OPERATORS",
|
|
54276
|
+
"type": {
|
|
54277
|
+
"text": "CriteriaOperator[]"
|
|
54278
|
+
},
|
|
54279
|
+
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
54280
|
+
},
|
|
54281
|
+
{
|
|
54282
|
+
"kind": "variable",
|
|
54283
|
+
"name": "DATETIME_OPERATORS",
|
|
54284
|
+
"type": {
|
|
54285
|
+
"text": "CriteriaOperator[]"
|
|
54286
|
+
},
|
|
54287
|
+
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
54288
|
+
}
|
|
54289
|
+
],
|
|
54290
|
+
"exports": [
|
|
54291
|
+
{
|
|
54292
|
+
"kind": "js",
|
|
54293
|
+
"name": "groupsToCriteria",
|
|
54294
|
+
"declaration": {
|
|
54295
|
+
"name": "groupsToCriteria",
|
|
54296
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54297
|
+
}
|
|
54298
|
+
},
|
|
54299
|
+
{
|
|
54300
|
+
"kind": "js",
|
|
54301
|
+
"name": "STRING_OPERATORS",
|
|
54302
|
+
"declaration": {
|
|
54303
|
+
"name": "STRING_OPERATORS",
|
|
54304
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54305
|
+
}
|
|
54306
|
+
},
|
|
54307
|
+
{
|
|
54308
|
+
"kind": "js",
|
|
54309
|
+
"name": "NUMERIC_OPERATORS",
|
|
54310
|
+
"declaration": {
|
|
54311
|
+
"name": "NUMERIC_OPERATORS",
|
|
54312
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54313
|
+
}
|
|
54314
|
+
},
|
|
54315
|
+
{
|
|
54316
|
+
"kind": "js",
|
|
54317
|
+
"name": "DATE_OPERATORS",
|
|
54318
|
+
"declaration": {
|
|
54319
|
+
"name": "DATE_OPERATORS",
|
|
54320
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54321
|
+
}
|
|
54322
|
+
},
|
|
54323
|
+
{
|
|
54324
|
+
"kind": "js",
|
|
54325
|
+
"name": "DATETIME_OPERATORS",
|
|
54326
|
+
"declaration": {
|
|
54327
|
+
"name": "DATETIME_OPERATORS",
|
|
54328
|
+
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
54329
|
+
}
|
|
54330
|
+
}
|
|
54331
|
+
]
|
|
54332
|
+
},
|
|
54333
|
+
{
|
|
54334
|
+
"kind": "javascript-module",
|
|
54335
|
+
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
54336
|
+
"declarations": [
|
|
54337
|
+
{
|
|
54338
|
+
"kind": "function",
|
|
54339
|
+
"name": "validateClauses",
|
|
54340
|
+
"return": {
|
|
54341
|
+
"type": {
|
|
54342
|
+
"text": "ValidationResult"
|
|
54343
|
+
}
|
|
54344
|
+
},
|
|
54345
|
+
"parameters": [
|
|
54346
|
+
{
|
|
54347
|
+
"name": "clauses",
|
|
54348
|
+
"type": {
|
|
54349
|
+
"text": "CriteriaClause[]"
|
|
54350
|
+
}
|
|
54351
|
+
},
|
|
54352
|
+
{
|
|
54353
|
+
"name": "fieldMetadata",
|
|
54354
|
+
"type": {
|
|
54355
|
+
"text": "MetadataDetail[] | string[]"
|
|
54356
|
+
}
|
|
54357
|
+
}
|
|
54358
|
+
]
|
|
54359
|
+
},
|
|
54360
|
+
{
|
|
54361
|
+
"kind": "function",
|
|
54362
|
+
"name": "validateGroups",
|
|
54363
|
+
"return": {
|
|
54364
|
+
"type": {
|
|
54365
|
+
"text": "GroupsValidationResult"
|
|
54366
|
+
}
|
|
54367
|
+
},
|
|
54368
|
+
"parameters": [
|
|
54369
|
+
{
|
|
54370
|
+
"name": "groups",
|
|
54371
|
+
"type": {
|
|
54372
|
+
"text": "CriteriaGroup[]"
|
|
54373
|
+
}
|
|
54374
|
+
},
|
|
54375
|
+
{
|
|
54376
|
+
"name": "fieldMetadata",
|
|
54377
|
+
"type": {
|
|
54378
|
+
"text": "MetadataDetail[] | string[]"
|
|
54379
|
+
}
|
|
54380
|
+
}
|
|
54381
|
+
],
|
|
54382
|
+
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
54383
|
+
}
|
|
54384
|
+
],
|
|
54385
|
+
"exports": [
|
|
54386
|
+
{
|
|
54387
|
+
"kind": "js",
|
|
54388
|
+
"name": "validateClauses",
|
|
54389
|
+
"declaration": {
|
|
54390
|
+
"name": "validateClauses",
|
|
54391
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54392
|
+
}
|
|
54393
|
+
},
|
|
54394
|
+
{
|
|
54395
|
+
"kind": "js",
|
|
54396
|
+
"name": "validateGroups",
|
|
54397
|
+
"declaration": {
|
|
54398
|
+
"name": "validateGroups",
|
|
54399
|
+
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
54400
|
+
}
|
|
54401
|
+
}
|
|
54402
|
+
]
|
|
54403
|
+
},
|
|
54256
54404
|
{
|
|
54257
54405
|
"kind": "javascript-module",
|
|
54258
54406
|
"path": "src/_config/styles/colors.ts",
|
|
@@ -55625,181 +55773,6 @@
|
|
|
55625
55773
|
"declarations": [],
|
|
55626
55774
|
"exports": []
|
|
55627
55775
|
},
|
|
55628
|
-
{
|
|
55629
|
-
"kind": "javascript-module",
|
|
55630
|
-
"path": "src/ai-criteria-search/validation/criteria-ir.ts",
|
|
55631
|
-
"declarations": [],
|
|
55632
|
-
"exports": []
|
|
55633
|
-
},
|
|
55634
|
-
{
|
|
55635
|
-
"kind": "javascript-module",
|
|
55636
|
-
"path": "src/ai-criteria-search/validation/operator-map.ts",
|
|
55637
|
-
"declarations": [
|
|
55638
|
-
{
|
|
55639
|
-
"kind": "function",
|
|
55640
|
-
"name": "groupsToCriteria",
|
|
55641
|
-
"return": {
|
|
55642
|
-
"type": {
|
|
55643
|
-
"text": "string"
|
|
55644
|
-
}
|
|
55645
|
-
},
|
|
55646
|
-
"parameters": [
|
|
55647
|
-
{
|
|
55648
|
-
"name": "groups",
|
|
55649
|
-
"type": {
|
|
55650
|
-
"text": "CriteriaGroup[]"
|
|
55651
|
-
}
|
|
55652
|
-
}
|
|
55653
|
-
],
|
|
55654
|
-
"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."
|
|
55655
|
-
},
|
|
55656
|
-
{
|
|
55657
|
-
"kind": "variable",
|
|
55658
|
-
"name": "STRING_OPERATORS",
|
|
55659
|
-
"type": {
|
|
55660
|
-
"text": "CriteriaOperator[]"
|
|
55661
|
-
},
|
|
55662
|
-
"default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
|
|
55663
|
-
},
|
|
55664
|
-
{
|
|
55665
|
-
"kind": "variable",
|
|
55666
|
-
"name": "NUMERIC_OPERATORS",
|
|
55667
|
-
"type": {
|
|
55668
|
-
"text": "CriteriaOperator[]"
|
|
55669
|
-
},
|
|
55670
|
-
"default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
|
|
55671
|
-
},
|
|
55672
|
-
{
|
|
55673
|
-
"kind": "variable",
|
|
55674
|
-
"name": "DATE_OPERATORS",
|
|
55675
|
-
"type": {
|
|
55676
|
-
"text": "CriteriaOperator[]"
|
|
55677
|
-
},
|
|
55678
|
-
"default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
|
|
55679
|
-
},
|
|
55680
|
-
{
|
|
55681
|
-
"kind": "variable",
|
|
55682
|
-
"name": "DATETIME_OPERATORS",
|
|
55683
|
-
"type": {
|
|
55684
|
-
"text": "CriteriaOperator[]"
|
|
55685
|
-
},
|
|
55686
|
-
"default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
|
|
55687
|
-
}
|
|
55688
|
-
],
|
|
55689
|
-
"exports": [
|
|
55690
|
-
{
|
|
55691
|
-
"kind": "js",
|
|
55692
|
-
"name": "groupsToCriteria",
|
|
55693
|
-
"declaration": {
|
|
55694
|
-
"name": "groupsToCriteria",
|
|
55695
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55696
|
-
}
|
|
55697
|
-
},
|
|
55698
|
-
{
|
|
55699
|
-
"kind": "js",
|
|
55700
|
-
"name": "STRING_OPERATORS",
|
|
55701
|
-
"declaration": {
|
|
55702
|
-
"name": "STRING_OPERATORS",
|
|
55703
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55704
|
-
}
|
|
55705
|
-
},
|
|
55706
|
-
{
|
|
55707
|
-
"kind": "js",
|
|
55708
|
-
"name": "NUMERIC_OPERATORS",
|
|
55709
|
-
"declaration": {
|
|
55710
|
-
"name": "NUMERIC_OPERATORS",
|
|
55711
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55712
|
-
}
|
|
55713
|
-
},
|
|
55714
|
-
{
|
|
55715
|
-
"kind": "js",
|
|
55716
|
-
"name": "DATE_OPERATORS",
|
|
55717
|
-
"declaration": {
|
|
55718
|
-
"name": "DATE_OPERATORS",
|
|
55719
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55720
|
-
}
|
|
55721
|
-
},
|
|
55722
|
-
{
|
|
55723
|
-
"kind": "js",
|
|
55724
|
-
"name": "DATETIME_OPERATORS",
|
|
55725
|
-
"declaration": {
|
|
55726
|
-
"name": "DATETIME_OPERATORS",
|
|
55727
|
-
"module": "src/ai-criteria-search/validation/operator-map.ts"
|
|
55728
|
-
}
|
|
55729
|
-
}
|
|
55730
|
-
]
|
|
55731
|
-
},
|
|
55732
|
-
{
|
|
55733
|
-
"kind": "javascript-module",
|
|
55734
|
-
"path": "src/ai-criteria-search/validation/schema-validator.ts",
|
|
55735
|
-
"declarations": [
|
|
55736
|
-
{
|
|
55737
|
-
"kind": "function",
|
|
55738
|
-
"name": "validateClauses",
|
|
55739
|
-
"return": {
|
|
55740
|
-
"type": {
|
|
55741
|
-
"text": "ValidationResult"
|
|
55742
|
-
}
|
|
55743
|
-
},
|
|
55744
|
-
"parameters": [
|
|
55745
|
-
{
|
|
55746
|
-
"name": "clauses",
|
|
55747
|
-
"type": {
|
|
55748
|
-
"text": "CriteriaClause[]"
|
|
55749
|
-
}
|
|
55750
|
-
},
|
|
55751
|
-
{
|
|
55752
|
-
"name": "fieldMetadata",
|
|
55753
|
-
"type": {
|
|
55754
|
-
"text": "MetadataDetail[] | string[]"
|
|
55755
|
-
}
|
|
55756
|
-
}
|
|
55757
|
-
]
|
|
55758
|
-
},
|
|
55759
|
-
{
|
|
55760
|
-
"kind": "function",
|
|
55761
|
-
"name": "validateGroups",
|
|
55762
|
-
"return": {
|
|
55763
|
-
"type": {
|
|
55764
|
-
"text": "GroupsValidationResult"
|
|
55765
|
-
}
|
|
55766
|
-
},
|
|
55767
|
-
"parameters": [
|
|
55768
|
-
{
|
|
55769
|
-
"name": "groups",
|
|
55770
|
-
"type": {
|
|
55771
|
-
"text": "CriteriaGroup[]"
|
|
55772
|
-
}
|
|
55773
|
-
},
|
|
55774
|
-
{
|
|
55775
|
-
"name": "fieldMetadata",
|
|
55776
|
-
"type": {
|
|
55777
|
-
"text": "MetadataDetail[] | string[]"
|
|
55778
|
-
}
|
|
55779
|
-
}
|
|
55780
|
-
],
|
|
55781
|
-
"description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
|
|
55782
|
-
}
|
|
55783
|
-
],
|
|
55784
|
-
"exports": [
|
|
55785
|
-
{
|
|
55786
|
-
"kind": "js",
|
|
55787
|
-
"name": "validateClauses",
|
|
55788
|
-
"declaration": {
|
|
55789
|
-
"name": "validateClauses",
|
|
55790
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55791
|
-
}
|
|
55792
|
-
},
|
|
55793
|
-
{
|
|
55794
|
-
"kind": "js",
|
|
55795
|
-
"name": "validateGroups",
|
|
55796
|
-
"declaration": {
|
|
55797
|
-
"name": "validateGroups",
|
|
55798
|
-
"module": "src/ai-criteria-search/validation/schema-validator.ts"
|
|
55799
|
-
}
|
|
55800
|
-
}
|
|
55801
|
-
]
|
|
55802
|
-
},
|
|
55803
55776
|
{
|
|
55804
55777
|
"kind": "javascript-module",
|
|
55805
55778
|
"path": "src/environment-indicator/utils/configure.ts",
|