@genesislcap/foundation-ui 15.0.0-FUI-2567.2 → 15.1.0-FUI-2567.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.
@@ -956,503 +956,6 @@
956
956
  }
957
957
  ]
958
958
  },
959
- {
960
- "kind": "javascript-module",
961
- "path": "src/_common/affix-mixin.ts",
962
- "declarations": [
963
- {
964
- "kind": "mixin",
965
- "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.",
966
- "name": "AffixMixin",
967
- "members": [
968
- {
969
- "kind": "field",
970
- "name": "prefix",
971
- "type": {
972
- "text": "string"
973
- },
974
- "description": "Optional non-editable label shown on the left inside the field, before the input."
975
- },
976
- {
977
- "kind": "field",
978
- "name": "suffix",
979
- "type": {
980
- "text": "string"
981
- },
982
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
983
- },
984
- {
985
- "kind": "field",
986
- "name": "hideAffixFromScreenReader",
987
- "type": {
988
- "text": "boolean"
989
- },
990
- "default": "false",
991
- "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."
992
- }
993
- ],
994
- "parameters": [
995
- {
996
- "name": "Base",
997
- "type": {
998
- "text": "TBase"
999
- }
1000
- }
1001
- ]
1002
- }
1003
- ],
1004
- "exports": [
1005
- {
1006
- "kind": "js",
1007
- "name": "AffixMixin",
1008
- "declaration": {
1009
- "name": "AffixMixin",
1010
- "module": "src/_common/affix-mixin.ts"
1011
- }
1012
- }
1013
- ]
1014
- },
1015
- {
1016
- "kind": "javascript-module",
1017
- "path": "src/_common/base-file-component.ts",
1018
- "declarations": [
1019
- {
1020
- "kind": "class",
1021
- "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
1022
- "name": "BaseFileComponent",
1023
- "members": [
1024
- {
1025
- "kind": "field",
1026
- "name": "fileInput",
1027
- "type": {
1028
- "text": "HTMLInputElement"
1029
- },
1030
- "privacy": "public"
1031
- },
1032
- {
1033
- "kind": "field",
1034
- "name": "selectedFile",
1035
- "type": {
1036
- "text": "File | null"
1037
- },
1038
- "privacy": "protected",
1039
- "default": "null"
1040
- },
1041
- {
1042
- "kind": "field",
1043
- "name": "label",
1044
- "type": {
1045
- "text": "string"
1046
- }
1047
- },
1048
- {
1049
- "kind": "field",
1050
- "name": "accept",
1051
- "type": {
1052
- "text": "string"
1053
- },
1054
- "default": "''"
1055
- },
1056
- {
1057
- "kind": "field",
1058
- "name": "fileSizeLimitBytes",
1059
- "default": "10_485_760",
1060
- "type": {
1061
- "text": "number"
1062
- }
1063
- },
1064
- {
1065
- "kind": "field",
1066
- "name": "fileName",
1067
- "type": {
1068
- "text": "string"
1069
- },
1070
- "default": "''"
1071
- },
1072
- {
1073
- "kind": "field",
1074
- "name": "isProcessing",
1075
- "type": {
1076
- "text": "boolean"
1077
- },
1078
- "default": "false"
1079
- },
1080
- {
1081
- "kind": "method",
1082
- "name": "handleClick",
1083
- "privacy": "public",
1084
- "description": "Opens the file picker dialog\nClears any previous file selection before opening"
1085
- },
1086
- {
1087
- "kind": "method",
1088
- "name": "onInputChange",
1089
- "privacy": "public",
1090
- "parameters": [
1091
- {
1092
- "name": "e",
1093
- "type": {
1094
- "text": "Event"
1095
- },
1096
- "description": "The change event from the file input"
1097
- }
1098
- ],
1099
- "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
1100
- },
1101
- {
1102
- "kind": "method",
1103
- "name": "clearSelection",
1104
- "privacy": "public",
1105
- "description": "Clears all file selection and processing state\nResets the component to its initial state"
1106
- },
1107
- {
1108
- "kind": "method",
1109
- "name": "getSelectedFile",
1110
- "privacy": "public",
1111
- "description": "Gets the currently selected file object",
1112
- "return": {
1113
- "type": {
1114
- "text": ""
1115
- }
1116
- }
1117
- },
1118
- {
1119
- "kind": "method",
1120
- "name": "showError",
1121
- "privacy": "protected",
1122
- "parameters": [
1123
- {
1124
- "name": "title",
1125
- "type": {
1126
- "text": "string"
1127
- },
1128
- "description": "The error title"
1129
- },
1130
- {
1131
- "name": "message",
1132
- "type": {
1133
- "text": "string"
1134
- },
1135
- "description": "The error message"
1136
- }
1137
- ],
1138
- "description": "Shows an error notification using the unified error handling system"
1139
- },
1140
- {
1141
- "kind": "method",
1142
- "name": "onFileSelected",
1143
- "privacy": "protected",
1144
- "return": {
1145
- "type": {
1146
- "text": "void"
1147
- }
1148
- },
1149
- "parameters": [
1150
- {
1151
- "name": "files",
1152
- "type": {
1153
- "text": "File[]"
1154
- },
1155
- "description": "The selected file"
1156
- }
1157
- ],
1158
- "description": "Abstract method called when a file is selected"
1159
- },
1160
- {
1161
- "kind": "method",
1162
- "name": "onFileCleared",
1163
- "privacy": "protected",
1164
- "return": {
1165
- "type": {
1166
- "text": "void"
1167
- }
1168
- },
1169
- "description": "Abstract method called when file selection is cleared"
1170
- },
1171
- {
1172
- "kind": "field",
1173
- "name": "_presentation",
1174
- "type": {
1175
- "text": "ComponentPresentation | null | undefined"
1176
- },
1177
- "privacy": "private",
1178
- "default": "void 0",
1179
- "inheritedFrom": {
1180
- "name": "FoundationElement",
1181
- "module": "src/foundation-element/foundation-element.ts"
1182
- }
1183
- },
1184
- {
1185
- "kind": "field",
1186
- "name": "$presentation",
1187
- "type": {
1188
- "text": "ComponentPresentation | null"
1189
- },
1190
- "privacy": "public",
1191
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1192
- "inheritedFrom": {
1193
- "name": "FoundationElement",
1194
- "module": "src/foundation-element/foundation-element.ts"
1195
- }
1196
- },
1197
- {
1198
- "kind": "field",
1199
- "name": "template",
1200
- "type": {
1201
- "text": "ElementViewTemplate | void | null"
1202
- },
1203
- "privacy": "public",
1204
- "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.",
1205
- "inheritedFrom": {
1206
- "name": "FoundationElement",
1207
- "module": "src/foundation-element/foundation-element.ts"
1208
- }
1209
- },
1210
- {
1211
- "kind": "method",
1212
- "name": "templateChanged",
1213
- "privacy": "protected",
1214
- "return": {
1215
- "type": {
1216
- "text": "void"
1217
- }
1218
- },
1219
- "inheritedFrom": {
1220
- "name": "FoundationElement",
1221
- "module": "src/foundation-element/foundation-element.ts"
1222
- }
1223
- },
1224
- {
1225
- "kind": "field",
1226
- "name": "styles",
1227
- "type": {
1228
- "text": "ElementStyles | void | null"
1229
- },
1230
- "privacy": "public",
1231
- "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.",
1232
- "inheritedFrom": {
1233
- "name": "FoundationElement",
1234
- "module": "src/foundation-element/foundation-element.ts"
1235
- }
1236
- },
1237
- {
1238
- "kind": "method",
1239
- "name": "stylesChanged",
1240
- "privacy": "protected",
1241
- "return": {
1242
- "type": {
1243
- "text": "void"
1244
- }
1245
- },
1246
- "inheritedFrom": {
1247
- "name": "FoundationElement",
1248
- "module": "src/foundation-element/foundation-element.ts"
1249
- }
1250
- },
1251
- {
1252
- "kind": "method",
1253
- "name": "compose",
1254
- "privacy": "public",
1255
- "static": true,
1256
- "return": {
1257
- "type": {
1258
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1259
- }
1260
- },
1261
- "parameters": [
1262
- {
1263
- "name": "this",
1264
- "type": {
1265
- "text": "K"
1266
- }
1267
- },
1268
- {
1269
- "name": "elementDefinition",
1270
- "type": {
1271
- "text": "T"
1272
- },
1273
- "description": "The definition of the element to create the registry\nfunction for."
1274
- }
1275
- ],
1276
- "description": "Defines an element registry function with a set of element definition defaults.",
1277
- "inheritedFrom": {
1278
- "name": "FoundationElement",
1279
- "module": "src/foundation-element/foundation-element.ts"
1280
- }
1281
- }
1282
- ],
1283
- "events": [
1284
- {
1285
- "description": "Fired when file size validation fails. detail: `Error`",
1286
- "name": "error"
1287
- },
1288
- {
1289
- "description": "Fired when selection is cleared",
1290
- "name": "clear"
1291
- }
1292
- ],
1293
- "attributes": [
1294
- {
1295
- "name": "label",
1296
- "type": {
1297
- "text": "string"
1298
- },
1299
- "fieldName": "label"
1300
- },
1301
- {
1302
- "name": "accept",
1303
- "type": {
1304
- "text": "string"
1305
- },
1306
- "default": "''",
1307
- "fieldName": "accept"
1308
- },
1309
- {
1310
- "name": "file-size-limit-bytes",
1311
- "default": "DEFAULT_FILE_SIZE_LIMIT",
1312
- "resolveInitializer": {
1313
- "module": "src/_common/base-file-component.ts"
1314
- },
1315
- "fieldName": "fileSizeLimitBytes"
1316
- }
1317
- ],
1318
- "superclass": {
1319
- "name": "FoundationElement",
1320
- "package": "@microsoft/fast-foundation"
1321
- }
1322
- }
1323
- ],
1324
- "exports": [
1325
- {
1326
- "kind": "js",
1327
- "name": "BaseFileComponent",
1328
- "declaration": {
1329
- "name": "BaseFileComponent",
1330
- "module": "src/_common/base-file-component.ts"
1331
- }
1332
- }
1333
- ]
1334
- },
1335
- {
1336
- "kind": "javascript-module",
1337
- "path": "src/_common/field-styles.ts",
1338
- "declarations": [
1339
- {
1340
- "kind": "variable",
1341
- "name": "sharedFieldStyles",
1342
- "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`"
1343
- }
1344
- ],
1345
- "exports": [
1346
- {
1347
- "kind": "js",
1348
- "name": "sharedFieldStyles",
1349
- "declaration": {
1350
- "name": "sharedFieldStyles",
1351
- "module": "src/_common/field-styles.ts"
1352
- }
1353
- }
1354
- ]
1355
- },
1356
- {
1357
- "kind": "javascript-module",
1358
- "path": "src/_common/icons.ts",
1359
- "declarations": [
1360
- {
1361
- "kind": "function",
1362
- "name": "closeIcon",
1363
- "parameters": [
1364
- {
1365
- "name": "slot",
1366
- "default": "'start'"
1367
- },
1368
- {
1369
- "name": "fill",
1370
- "default": "'#879ba6'"
1371
- }
1372
- ]
1373
- }
1374
- ],
1375
- "exports": [
1376
- {
1377
- "kind": "js",
1378
- "name": "closeIcon",
1379
- "declaration": {
1380
- "name": "closeIcon",
1381
- "module": "src/_common/icons.ts"
1382
- }
1383
- }
1384
- ]
1385
- },
1386
- {
1387
- "kind": "javascript-module",
1388
- "path": "src/_common/index.ts",
1389
- "declarations": [],
1390
- "exports": [
1391
- {
1392
- "kind": "js",
1393
- "name": "*",
1394
- "declaration": {
1395
- "name": "*",
1396
- "package": "./affix-mixin"
1397
- }
1398
- },
1399
- {
1400
- "kind": "js",
1401
- "name": "*",
1402
- "declaration": {
1403
- "name": "*",
1404
- "package": "./base-file-component"
1405
- }
1406
- },
1407
- {
1408
- "kind": "js",
1409
- "name": "*",
1410
- "declaration": {
1411
- "name": "*",
1412
- "package": "./field-styles"
1413
- }
1414
- },
1415
- {
1416
- "kind": "js",
1417
- "name": "*",
1418
- "declaration": {
1419
- "name": "*",
1420
- "package": "./icons"
1421
- }
1422
- }
1423
- ]
1424
- },
1425
- {
1426
- "kind": "javascript-module",
1427
- "path": "src/_config/index.ts",
1428
- "declarations": [],
1429
- "exports": [
1430
- {
1431
- "kind": "js",
1432
- "name": "*",
1433
- "declaration": {
1434
- "name": "*",
1435
- "package": "./styles"
1436
- }
1437
- },
1438
- {
1439
- "kind": "js",
1440
- "name": "*",
1441
- "declaration": {
1442
- "name": "*",
1443
- "package": "./tokens"
1444
- }
1445
- },
1446
- {
1447
- "kind": "js",
1448
- "name": "*",
1449
- "declaration": {
1450
- "name": "*",
1451
- "package": "./values"
1452
- }
1453
- }
1454
- ]
1455
- },
1456
959
  {
1457
960
  "kind": "javascript-module",
1458
961
  "path": "src/accordion-item/accordion-item.styles.ts",
@@ -3464,6 +2967,503 @@
3464
2967
  }
3465
2968
  ]
3466
2969
  },
2970
+ {
2971
+ "kind": "javascript-module",
2972
+ "path": "src/_common/affix-mixin.ts",
2973
+ "declarations": [
2974
+ {
2975
+ "kind": "mixin",
2976
+ "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.",
2977
+ "name": "AffixMixin",
2978
+ "members": [
2979
+ {
2980
+ "kind": "field",
2981
+ "name": "prefix",
2982
+ "type": {
2983
+ "text": "string"
2984
+ },
2985
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
2986
+ },
2987
+ {
2988
+ "kind": "field",
2989
+ "name": "suffix",
2990
+ "type": {
2991
+ "text": "string"
2992
+ },
2993
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
2994
+ },
2995
+ {
2996
+ "kind": "field",
2997
+ "name": "hideAffixFromScreenReader",
2998
+ "type": {
2999
+ "text": "boolean"
3000
+ },
3001
+ "default": "false",
3002
+ "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."
3003
+ }
3004
+ ],
3005
+ "parameters": [
3006
+ {
3007
+ "name": "Base",
3008
+ "type": {
3009
+ "text": "TBase"
3010
+ }
3011
+ }
3012
+ ]
3013
+ }
3014
+ ],
3015
+ "exports": [
3016
+ {
3017
+ "kind": "js",
3018
+ "name": "AffixMixin",
3019
+ "declaration": {
3020
+ "name": "AffixMixin",
3021
+ "module": "src/_common/affix-mixin.ts"
3022
+ }
3023
+ }
3024
+ ]
3025
+ },
3026
+ {
3027
+ "kind": "javascript-module",
3028
+ "path": "src/_common/base-file-component.ts",
3029
+ "declarations": [
3030
+ {
3031
+ "kind": "class",
3032
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
3033
+ "name": "BaseFileComponent",
3034
+ "members": [
3035
+ {
3036
+ "kind": "field",
3037
+ "name": "fileInput",
3038
+ "type": {
3039
+ "text": "HTMLInputElement"
3040
+ },
3041
+ "privacy": "public"
3042
+ },
3043
+ {
3044
+ "kind": "field",
3045
+ "name": "selectedFile",
3046
+ "type": {
3047
+ "text": "File | null"
3048
+ },
3049
+ "privacy": "protected",
3050
+ "default": "null"
3051
+ },
3052
+ {
3053
+ "kind": "field",
3054
+ "name": "label",
3055
+ "type": {
3056
+ "text": "string"
3057
+ }
3058
+ },
3059
+ {
3060
+ "kind": "field",
3061
+ "name": "accept",
3062
+ "type": {
3063
+ "text": "string"
3064
+ },
3065
+ "default": "''"
3066
+ },
3067
+ {
3068
+ "kind": "field",
3069
+ "name": "fileSizeLimitBytes",
3070
+ "default": "10_485_760",
3071
+ "type": {
3072
+ "text": "number"
3073
+ }
3074
+ },
3075
+ {
3076
+ "kind": "field",
3077
+ "name": "fileName",
3078
+ "type": {
3079
+ "text": "string"
3080
+ },
3081
+ "default": "''"
3082
+ },
3083
+ {
3084
+ "kind": "field",
3085
+ "name": "isProcessing",
3086
+ "type": {
3087
+ "text": "boolean"
3088
+ },
3089
+ "default": "false"
3090
+ },
3091
+ {
3092
+ "kind": "method",
3093
+ "name": "handleClick",
3094
+ "privacy": "public",
3095
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
3096
+ },
3097
+ {
3098
+ "kind": "method",
3099
+ "name": "onInputChange",
3100
+ "privacy": "public",
3101
+ "parameters": [
3102
+ {
3103
+ "name": "e",
3104
+ "type": {
3105
+ "text": "Event"
3106
+ },
3107
+ "description": "The change event from the file input"
3108
+ }
3109
+ ],
3110
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
3111
+ },
3112
+ {
3113
+ "kind": "method",
3114
+ "name": "clearSelection",
3115
+ "privacy": "public",
3116
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
3117
+ },
3118
+ {
3119
+ "kind": "method",
3120
+ "name": "getSelectedFile",
3121
+ "privacy": "public",
3122
+ "description": "Gets the currently selected file object",
3123
+ "return": {
3124
+ "type": {
3125
+ "text": ""
3126
+ }
3127
+ }
3128
+ },
3129
+ {
3130
+ "kind": "method",
3131
+ "name": "showError",
3132
+ "privacy": "protected",
3133
+ "parameters": [
3134
+ {
3135
+ "name": "title",
3136
+ "type": {
3137
+ "text": "string"
3138
+ },
3139
+ "description": "The error title"
3140
+ },
3141
+ {
3142
+ "name": "message",
3143
+ "type": {
3144
+ "text": "string"
3145
+ },
3146
+ "description": "The error message"
3147
+ }
3148
+ ],
3149
+ "description": "Shows an error notification using the unified error handling system"
3150
+ },
3151
+ {
3152
+ "kind": "method",
3153
+ "name": "onFileSelected",
3154
+ "privacy": "protected",
3155
+ "return": {
3156
+ "type": {
3157
+ "text": "void"
3158
+ }
3159
+ },
3160
+ "parameters": [
3161
+ {
3162
+ "name": "files",
3163
+ "type": {
3164
+ "text": "File[]"
3165
+ },
3166
+ "description": "The selected file"
3167
+ }
3168
+ ],
3169
+ "description": "Abstract method called when a file is selected"
3170
+ },
3171
+ {
3172
+ "kind": "method",
3173
+ "name": "onFileCleared",
3174
+ "privacy": "protected",
3175
+ "return": {
3176
+ "type": {
3177
+ "text": "void"
3178
+ }
3179
+ },
3180
+ "description": "Abstract method called when file selection is cleared"
3181
+ },
3182
+ {
3183
+ "kind": "field",
3184
+ "name": "_presentation",
3185
+ "type": {
3186
+ "text": "ComponentPresentation | null | undefined"
3187
+ },
3188
+ "privacy": "private",
3189
+ "default": "void 0",
3190
+ "inheritedFrom": {
3191
+ "name": "FoundationElement",
3192
+ "module": "src/foundation-element/foundation-element.ts"
3193
+ }
3194
+ },
3195
+ {
3196
+ "kind": "field",
3197
+ "name": "$presentation",
3198
+ "type": {
3199
+ "text": "ComponentPresentation | null"
3200
+ },
3201
+ "privacy": "public",
3202
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3203
+ "inheritedFrom": {
3204
+ "name": "FoundationElement",
3205
+ "module": "src/foundation-element/foundation-element.ts"
3206
+ }
3207
+ },
3208
+ {
3209
+ "kind": "field",
3210
+ "name": "template",
3211
+ "type": {
3212
+ "text": "ElementViewTemplate | void | null"
3213
+ },
3214
+ "privacy": "public",
3215
+ "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.",
3216
+ "inheritedFrom": {
3217
+ "name": "FoundationElement",
3218
+ "module": "src/foundation-element/foundation-element.ts"
3219
+ }
3220
+ },
3221
+ {
3222
+ "kind": "method",
3223
+ "name": "templateChanged",
3224
+ "privacy": "protected",
3225
+ "return": {
3226
+ "type": {
3227
+ "text": "void"
3228
+ }
3229
+ },
3230
+ "inheritedFrom": {
3231
+ "name": "FoundationElement",
3232
+ "module": "src/foundation-element/foundation-element.ts"
3233
+ }
3234
+ },
3235
+ {
3236
+ "kind": "field",
3237
+ "name": "styles",
3238
+ "type": {
3239
+ "text": "ElementStyles | void | null"
3240
+ },
3241
+ "privacy": "public",
3242
+ "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.",
3243
+ "inheritedFrom": {
3244
+ "name": "FoundationElement",
3245
+ "module": "src/foundation-element/foundation-element.ts"
3246
+ }
3247
+ },
3248
+ {
3249
+ "kind": "method",
3250
+ "name": "stylesChanged",
3251
+ "privacy": "protected",
3252
+ "return": {
3253
+ "type": {
3254
+ "text": "void"
3255
+ }
3256
+ },
3257
+ "inheritedFrom": {
3258
+ "name": "FoundationElement",
3259
+ "module": "src/foundation-element/foundation-element.ts"
3260
+ }
3261
+ },
3262
+ {
3263
+ "kind": "method",
3264
+ "name": "compose",
3265
+ "privacy": "public",
3266
+ "static": true,
3267
+ "return": {
3268
+ "type": {
3269
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3270
+ }
3271
+ },
3272
+ "parameters": [
3273
+ {
3274
+ "name": "this",
3275
+ "type": {
3276
+ "text": "K"
3277
+ }
3278
+ },
3279
+ {
3280
+ "name": "elementDefinition",
3281
+ "type": {
3282
+ "text": "T"
3283
+ },
3284
+ "description": "The definition of the element to create the registry\nfunction for."
3285
+ }
3286
+ ],
3287
+ "description": "Defines an element registry function with a set of element definition defaults.",
3288
+ "inheritedFrom": {
3289
+ "name": "FoundationElement",
3290
+ "module": "src/foundation-element/foundation-element.ts"
3291
+ }
3292
+ }
3293
+ ],
3294
+ "events": [
3295
+ {
3296
+ "description": "Fired when file size validation fails. detail: `Error`",
3297
+ "name": "error"
3298
+ },
3299
+ {
3300
+ "description": "Fired when selection is cleared",
3301
+ "name": "clear"
3302
+ }
3303
+ ],
3304
+ "attributes": [
3305
+ {
3306
+ "name": "label",
3307
+ "type": {
3308
+ "text": "string"
3309
+ },
3310
+ "fieldName": "label"
3311
+ },
3312
+ {
3313
+ "name": "accept",
3314
+ "type": {
3315
+ "text": "string"
3316
+ },
3317
+ "default": "''",
3318
+ "fieldName": "accept"
3319
+ },
3320
+ {
3321
+ "name": "file-size-limit-bytes",
3322
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
3323
+ "resolveInitializer": {
3324
+ "module": "src/_common/base-file-component.ts"
3325
+ },
3326
+ "fieldName": "fileSizeLimitBytes"
3327
+ }
3328
+ ],
3329
+ "superclass": {
3330
+ "name": "FoundationElement",
3331
+ "package": "@microsoft/fast-foundation"
3332
+ }
3333
+ }
3334
+ ],
3335
+ "exports": [
3336
+ {
3337
+ "kind": "js",
3338
+ "name": "BaseFileComponent",
3339
+ "declaration": {
3340
+ "name": "BaseFileComponent",
3341
+ "module": "src/_common/base-file-component.ts"
3342
+ }
3343
+ }
3344
+ ]
3345
+ },
3346
+ {
3347
+ "kind": "javascript-module",
3348
+ "path": "src/_common/field-styles.ts",
3349
+ "declarations": [
3350
+ {
3351
+ "kind": "variable",
3352
+ "name": "sharedFieldStyles",
3353
+ "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`"
3354
+ }
3355
+ ],
3356
+ "exports": [
3357
+ {
3358
+ "kind": "js",
3359
+ "name": "sharedFieldStyles",
3360
+ "declaration": {
3361
+ "name": "sharedFieldStyles",
3362
+ "module": "src/_common/field-styles.ts"
3363
+ }
3364
+ }
3365
+ ]
3366
+ },
3367
+ {
3368
+ "kind": "javascript-module",
3369
+ "path": "src/_common/icons.ts",
3370
+ "declarations": [
3371
+ {
3372
+ "kind": "function",
3373
+ "name": "closeIcon",
3374
+ "parameters": [
3375
+ {
3376
+ "name": "slot",
3377
+ "default": "'start'"
3378
+ },
3379
+ {
3380
+ "name": "fill",
3381
+ "default": "'#879ba6'"
3382
+ }
3383
+ ]
3384
+ }
3385
+ ],
3386
+ "exports": [
3387
+ {
3388
+ "kind": "js",
3389
+ "name": "closeIcon",
3390
+ "declaration": {
3391
+ "name": "closeIcon",
3392
+ "module": "src/_common/icons.ts"
3393
+ }
3394
+ }
3395
+ ]
3396
+ },
3397
+ {
3398
+ "kind": "javascript-module",
3399
+ "path": "src/_common/index.ts",
3400
+ "declarations": [],
3401
+ "exports": [
3402
+ {
3403
+ "kind": "js",
3404
+ "name": "*",
3405
+ "declaration": {
3406
+ "name": "*",
3407
+ "package": "./affix-mixin"
3408
+ }
3409
+ },
3410
+ {
3411
+ "kind": "js",
3412
+ "name": "*",
3413
+ "declaration": {
3414
+ "name": "*",
3415
+ "package": "./base-file-component"
3416
+ }
3417
+ },
3418
+ {
3419
+ "kind": "js",
3420
+ "name": "*",
3421
+ "declaration": {
3422
+ "name": "*",
3423
+ "package": "./field-styles"
3424
+ }
3425
+ },
3426
+ {
3427
+ "kind": "js",
3428
+ "name": "*",
3429
+ "declaration": {
3430
+ "name": "*",
3431
+ "package": "./icons"
3432
+ }
3433
+ }
3434
+ ]
3435
+ },
3436
+ {
3437
+ "kind": "javascript-module",
3438
+ "path": "src/_config/index.ts",
3439
+ "declarations": [],
3440
+ "exports": [
3441
+ {
3442
+ "kind": "js",
3443
+ "name": "*",
3444
+ "declaration": {
3445
+ "name": "*",
3446
+ "package": "./styles"
3447
+ }
3448
+ },
3449
+ {
3450
+ "kind": "js",
3451
+ "name": "*",
3452
+ "declaration": {
3453
+ "name": "*",
3454
+ "package": "./tokens"
3455
+ }
3456
+ },
3457
+ {
3458
+ "kind": "js",
3459
+ "name": "*",
3460
+ "declaration": {
3461
+ "name": "*",
3462
+ "package": "./values"
3463
+ }
3464
+ }
3465
+ ]
3466
+ },
3467
3467
  {
3468
3468
  "kind": "javascript-module",
3469
3469
  "path": "src/accordion/accordion.styles.ts",
@@ -59193,7 +59193,7 @@
59193
59193
  {
59194
59194
  "kind": "variable",
59195
59195
  "name": "foundationVerificationCodeInputTemplate",
59196
- "default": "html<VerificationCodeInput>`\n <label\n part=\"label\"\n id=\"${(x) => x.labelId}\"\n for=\"${(x) => x.getControlId(0)}\"\n class=\"${(x) =>\n x.defaultSlottedNodes && x.defaultSlottedNodes.length ? 'label' : 'label label-hidden'}\"\n >\n <slot\n ${slotted({\n property: 'defaultSlottedNodes',\n filter: whitespaceFilter,\n })}\n ></slot>\n </label>\n <div\n class=\"container\"\n role=\"group\"\n aria-labelledby=\"${(x) => (x.hasLabel ? x.labelId : void 0)}\"\n aria-label=\"${(x) => (x.hasLabel ? void 0 : 'Verification code')}\"\n >\n ${repeat(\n (x) => x.digitsIndexes,\n html`\n <div\n class=\"digit ${(x, c) => (c.parent as VerificationCodeInput).digitClassnames}\"\n data-digit-index=\"${(x) => x}\"\n appearance=\"${(x, c) => (c.parent as VerificationCodeInput).appearance}\"\n >\n <div class=\"root\" part=\"root\">\n <div class=\"control-field\">\n <input\n class=\"control\"\n part=\"control\"\n type=\"text\"\n inputmode=\"numeric\"\n pattern=\"[0-9]*\"\n name=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n id=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n autocomplete=\"${(x) => (x === 0 ? 'one-time-code' : 'off')}\"\n data-test-id=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n title=\"Only numbers are allowed\"\n maxlength=\"1\"\n ?autofocus=\"${(x, c) => (c.parent as VerificationCodeInput).autofocus && x === 0}\"\n ?readonly=\"${(x, c) => (c.parent as VerificationCodeInput).readOnly}\"\n ?disabled=\"${(x, c) =>\n (c.parent as VerificationCodeInput).disabled ||\n (c.parent as VerificationCodeInput).readOnly}\"\n ?aria-required=\"${(x, c) => (c.parent as VerificationCodeInput).required}\"\n ?aria-invalid=\"${(x, c) => (c.parent as VerificationCodeInput).error}\"\n />\n </div>\n </div>\n </div>\n `,\n )}\n </div>\n`"
59196
+ "default": "html<VerificationCodeInput>`\n <label\n part=\"label\"\n id=\"${(x) => x.labelId}\"\n for=\"${(x) => x.getControlId(0)}\"\n class=\"${(x) =>\n x.defaultSlottedNodes && x.defaultSlottedNodes.length ? 'label' : 'label label-hidden'}\"\n >\n <slot\n ${slotted({\n property: 'defaultSlottedNodes',\n filter: whitespaceFilter,\n })}\n ></slot>\n </label>\n <div\n class=\"container\"\n role=\"group\"\n aria-labelledby=\"${(x) => (x.hasLabel ? x.labelId : void 0)}\"\n aria-label=\"${(x) => (x.hasLabel ? void 0 : 'Verification code')}\"\n >\n ${repeat(\n (x) => x.digitsIndexes,\n html`\n <div\n class=\"digit ${(x, c) => (c.parent as VerificationCodeInput).digitClassnames}\"\n data-digit-index=\"${(x) => x}\"\n appearance=\"${(x, c) => (c.parent as VerificationCodeInput).appearance}\"\n >\n <div class=\"root\" part=\"root\">\n <div class=\"control-field\">\n <input\n class=\"control\"\n part=\"control\"\n type=\"text\"\n inputmode=\"numeric\"\n pattern=\"[0-9]*\"\n name=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n id=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n autocomplete=\"${(x) => (x === 0 ? 'one-time-code' : 'off')}\"\n data-test-id=\"${(x, c) => (c.parent as VerificationCodeInput).getControlId(x)}\"\n title=\"Only numbers are allowed\"\n maxlength=\"1\"\n ?autofocus=\"${(x, c) => (c.parent as VerificationCodeInput).autofocus && x === 0}\"\n ?readonly=\"${(x, c) => (c.parent as VerificationCodeInput).readOnly}\"\n ?disabled=\"${(x, c) =>\n (c.parent as VerificationCodeInput).disabled ||\n (c.parent as VerificationCodeInput).readOnly}\"\n aria-required=\"${(x, c) => (c.parent as VerificationCodeInput).required}\"\n aria-invalid=\"${(x, c) => (c.parent as VerificationCodeInput).error}\"\n />\n </div>\n </div>\n </div>\n `,\n )}\n </div>\n`"
59197
59197
  }
59198
59198
  ],
59199
59199
  "exports": [
@@ -59304,16 +59304,6 @@
59304
59304
  "description": "When true, digit fields are non-interactive.",
59305
59305
  "privacy": "public"
59306
59306
  },
59307
- {
59308
- "kind": "field",
59309
- "name": "disabled",
59310
- "type": {
59311
- "text": "boolean"
59312
- },
59313
- "default": "false",
59314
- "description": "When true, digit fields are non-interactive.",
59315
- "privacy": "public"
59316
- },
59317
59307
  {
59318
59308
  "kind": "field",
59319
59309
  "name": "autofocus",
@@ -59795,11 +59785,11 @@
59795
59785
  ],
59796
59786
  "events": [
59797
59787
  {
59798
- "description": "Fired when any digit changes. Detail: `{ value: string }`.",
59788
+ "description": "Fired when any digit changes. detail: `VerificationCodeInputEventDetail`",
59799
59789
  "name": "change"
59800
59790
  },
59801
59791
  {
59802
- "description": "Fired when all digits are filled. Detail: `{ value: string }`.",
59792
+ "description": "Fired when all digits are filled. detail: `VerificationCodeInputEventDetail`",
59803
59793
  "name": "complete"
59804
59794
  }
59805
59795
  ],
@@ -59842,14 +59832,6 @@
59842
59832
  "description": "When true, digit fields are non-interactive.",
59843
59833
  "fieldName": "readOnly"
59844
59834
  },
59845
- {
59846
- "type": {
59847
- "text": "boolean"
59848
- },
59849
- "default": "false",
59850
- "description": "When true, digit fields are non-interactive.",
59851
- "fieldName": "disabled"
59852
- },
59853
59835
  {
59854
59836
  "type": {
59855
59837
  "text": "boolean"
@@ -59922,6 +59904,197 @@
59922
59904
  }
59923
59905
  ]
59924
59906
  },
59907
+ {
59908
+ "kind": "javascript-module",
59909
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
59910
+ "declarations": [],
59911
+ "exports": []
59912
+ },
59913
+ {
59914
+ "kind": "javascript-module",
59915
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
59916
+ "declarations": [
59917
+ {
59918
+ "kind": "function",
59919
+ "name": "groupsToCriteria",
59920
+ "return": {
59921
+ "type": {
59922
+ "text": "string"
59923
+ }
59924
+ },
59925
+ "parameters": [
59926
+ {
59927
+ "name": "groups",
59928
+ "type": {
59929
+ "text": "CriteriaGroup[]"
59930
+ }
59931
+ }
59932
+ ],
59933
+ "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."
59934
+ },
59935
+ {
59936
+ "kind": "variable",
59937
+ "name": "STRING_OPERATORS",
59938
+ "type": {
59939
+ "text": "CriteriaOperator[]"
59940
+ },
59941
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
59942
+ },
59943
+ {
59944
+ "kind": "variable",
59945
+ "name": "NUMERIC_OPERATORS",
59946
+ "type": {
59947
+ "text": "CriteriaOperator[]"
59948
+ },
59949
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
59950
+ },
59951
+ {
59952
+ "kind": "variable",
59953
+ "name": "DATE_OPERATORS",
59954
+ "type": {
59955
+ "text": "CriteriaOperator[]"
59956
+ },
59957
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
59958
+ },
59959
+ {
59960
+ "kind": "variable",
59961
+ "name": "DATETIME_OPERATORS",
59962
+ "type": {
59963
+ "text": "CriteriaOperator[]"
59964
+ },
59965
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
59966
+ },
59967
+ {
59968
+ "kind": "variable",
59969
+ "name": "OPERATOR_DISPLAY_LABEL",
59970
+ "type": {
59971
+ "text": "Record<CriteriaOperator, string>"
59972
+ },
59973
+ "default": "{\n contains: 'contains',\n equals: '=',\n startsWith: 'starts with',\n endsWith: 'ends with',\n notEqual: '≠',\n greaterThan: '>',\n lessThan: '<',\n greaterThanOrEqual: '≥',\n lessThanOrEqual: '≤',\n dateIsToday: 'is today',\n dateIsAfter: 'after',\n dateIsBefore: 'before',\n dateIsEqual: '=',\n dateIsGreaterEqual: '≥',\n dateIsLessEqual: '≤',\n dateTimeIsAfter: 'after',\n dateTimeIsBefore: 'before',\n dateTimeIsGreaterEqual: '≥',\n dateTimeIsLessEqual: '≤',\n}"
59974
+ }
59975
+ ],
59976
+ "exports": [
59977
+ {
59978
+ "kind": "js",
59979
+ "name": "groupsToCriteria",
59980
+ "declaration": {
59981
+ "name": "groupsToCriteria",
59982
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59983
+ }
59984
+ },
59985
+ {
59986
+ "kind": "js",
59987
+ "name": "STRING_OPERATORS",
59988
+ "declaration": {
59989
+ "name": "STRING_OPERATORS",
59990
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59991
+ }
59992
+ },
59993
+ {
59994
+ "kind": "js",
59995
+ "name": "NUMERIC_OPERATORS",
59996
+ "declaration": {
59997
+ "name": "NUMERIC_OPERATORS",
59998
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
59999
+ }
60000
+ },
60001
+ {
60002
+ "kind": "js",
60003
+ "name": "DATE_OPERATORS",
60004
+ "declaration": {
60005
+ "name": "DATE_OPERATORS",
60006
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60007
+ }
60008
+ },
60009
+ {
60010
+ "kind": "js",
60011
+ "name": "DATETIME_OPERATORS",
60012
+ "declaration": {
60013
+ "name": "DATETIME_OPERATORS",
60014
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60015
+ }
60016
+ },
60017
+ {
60018
+ "kind": "js",
60019
+ "name": "OPERATOR_DISPLAY_LABEL",
60020
+ "declaration": {
60021
+ "name": "OPERATOR_DISPLAY_LABEL",
60022
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
60023
+ }
60024
+ }
60025
+ ]
60026
+ },
60027
+ {
60028
+ "kind": "javascript-module",
60029
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
60030
+ "declarations": [
60031
+ {
60032
+ "kind": "function",
60033
+ "name": "validateClauses",
60034
+ "return": {
60035
+ "type": {
60036
+ "text": "ValidationResult"
60037
+ }
60038
+ },
60039
+ "parameters": [
60040
+ {
60041
+ "name": "clauses",
60042
+ "type": {
60043
+ "text": "CriteriaClause[]"
60044
+ }
60045
+ },
60046
+ {
60047
+ "name": "fieldMetadata",
60048
+ "type": {
60049
+ "text": "MetadataDetail[] | string[]"
60050
+ }
60051
+ }
60052
+ ]
60053
+ },
60054
+ {
60055
+ "kind": "function",
60056
+ "name": "validateGroups",
60057
+ "return": {
60058
+ "type": {
60059
+ "text": "GroupsValidationResult"
60060
+ }
60061
+ },
60062
+ "parameters": [
60063
+ {
60064
+ "name": "groups",
60065
+ "type": {
60066
+ "text": "CriteriaGroup[]"
60067
+ }
60068
+ },
60069
+ {
60070
+ "name": "fieldMetadata",
60071
+ "type": {
60072
+ "text": "MetadataDetail[] | string[]"
60073
+ }
60074
+ }
60075
+ ],
60076
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
60077
+ }
60078
+ ],
60079
+ "exports": [
60080
+ {
60081
+ "kind": "js",
60082
+ "name": "validateClauses",
60083
+ "declaration": {
60084
+ "name": "validateClauses",
60085
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60086
+ }
60087
+ },
60088
+ {
60089
+ "kind": "js",
60090
+ "name": "validateGroups",
60091
+ "declaration": {
60092
+ "name": "validateGroups",
60093
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
60094
+ }
60095
+ }
60096
+ ]
60097
+ },
59925
60098
  {
59926
60099
  "kind": "javascript-module",
59927
60100
  "path": "src/_config/styles/colors.ts",
@@ -61294,197 +61467,6 @@
61294
61467
  "declarations": [],
61295
61468
  "exports": []
61296
61469
  },
61297
- {
61298
- "kind": "javascript-module",
61299
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
61300
- "declarations": [],
61301
- "exports": []
61302
- },
61303
- {
61304
- "kind": "javascript-module",
61305
- "path": "src/ai-criteria-search/validation/operator-map.ts",
61306
- "declarations": [
61307
- {
61308
- "kind": "function",
61309
- "name": "groupsToCriteria",
61310
- "return": {
61311
- "type": {
61312
- "text": "string"
61313
- }
61314
- },
61315
- "parameters": [
61316
- {
61317
- "name": "groups",
61318
- "type": {
61319
- "text": "CriteriaGroup[]"
61320
- }
61321
- }
61322
- ],
61323
- "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."
61324
- },
61325
- {
61326
- "kind": "variable",
61327
- "name": "STRING_OPERATORS",
61328
- "type": {
61329
- "text": "CriteriaOperator[]"
61330
- },
61331
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
61332
- },
61333
- {
61334
- "kind": "variable",
61335
- "name": "NUMERIC_OPERATORS",
61336
- "type": {
61337
- "text": "CriteriaOperator[]"
61338
- },
61339
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
61340
- },
61341
- {
61342
- "kind": "variable",
61343
- "name": "DATE_OPERATORS",
61344
- "type": {
61345
- "text": "CriteriaOperator[]"
61346
- },
61347
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
61348
- },
61349
- {
61350
- "kind": "variable",
61351
- "name": "DATETIME_OPERATORS",
61352
- "type": {
61353
- "text": "CriteriaOperator[]"
61354
- },
61355
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
61356
- },
61357
- {
61358
- "kind": "variable",
61359
- "name": "OPERATOR_DISPLAY_LABEL",
61360
- "type": {
61361
- "text": "Record<CriteriaOperator, string>"
61362
- },
61363
- "default": "{\n contains: 'contains',\n equals: '=',\n startsWith: 'starts with',\n endsWith: 'ends with',\n notEqual: '≠',\n greaterThan: '>',\n lessThan: '<',\n greaterThanOrEqual: '≥',\n lessThanOrEqual: '≤',\n dateIsToday: 'is today',\n dateIsAfter: 'after',\n dateIsBefore: 'before',\n dateIsEqual: '=',\n dateIsGreaterEqual: '≥',\n dateIsLessEqual: '≤',\n dateTimeIsAfter: 'after',\n dateTimeIsBefore: 'before',\n dateTimeIsGreaterEqual: '≥',\n dateTimeIsLessEqual: '≤',\n}"
61364
- }
61365
- ],
61366
- "exports": [
61367
- {
61368
- "kind": "js",
61369
- "name": "groupsToCriteria",
61370
- "declaration": {
61371
- "name": "groupsToCriteria",
61372
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61373
- }
61374
- },
61375
- {
61376
- "kind": "js",
61377
- "name": "STRING_OPERATORS",
61378
- "declaration": {
61379
- "name": "STRING_OPERATORS",
61380
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61381
- }
61382
- },
61383
- {
61384
- "kind": "js",
61385
- "name": "NUMERIC_OPERATORS",
61386
- "declaration": {
61387
- "name": "NUMERIC_OPERATORS",
61388
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61389
- }
61390
- },
61391
- {
61392
- "kind": "js",
61393
- "name": "DATE_OPERATORS",
61394
- "declaration": {
61395
- "name": "DATE_OPERATORS",
61396
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61397
- }
61398
- },
61399
- {
61400
- "kind": "js",
61401
- "name": "DATETIME_OPERATORS",
61402
- "declaration": {
61403
- "name": "DATETIME_OPERATORS",
61404
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61405
- }
61406
- },
61407
- {
61408
- "kind": "js",
61409
- "name": "OPERATOR_DISPLAY_LABEL",
61410
- "declaration": {
61411
- "name": "OPERATOR_DISPLAY_LABEL",
61412
- "module": "src/ai-criteria-search/validation/operator-map.ts"
61413
- }
61414
- }
61415
- ]
61416
- },
61417
- {
61418
- "kind": "javascript-module",
61419
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
61420
- "declarations": [
61421
- {
61422
- "kind": "function",
61423
- "name": "validateClauses",
61424
- "return": {
61425
- "type": {
61426
- "text": "ValidationResult"
61427
- }
61428
- },
61429
- "parameters": [
61430
- {
61431
- "name": "clauses",
61432
- "type": {
61433
- "text": "CriteriaClause[]"
61434
- }
61435
- },
61436
- {
61437
- "name": "fieldMetadata",
61438
- "type": {
61439
- "text": "MetadataDetail[] | string[]"
61440
- }
61441
- }
61442
- ]
61443
- },
61444
- {
61445
- "kind": "function",
61446
- "name": "validateGroups",
61447
- "return": {
61448
- "type": {
61449
- "text": "GroupsValidationResult"
61450
- }
61451
- },
61452
- "parameters": [
61453
- {
61454
- "name": "groups",
61455
- "type": {
61456
- "text": "CriteriaGroup[]"
61457
- }
61458
- },
61459
- {
61460
- "name": "fieldMetadata",
61461
- "type": {
61462
- "text": "MetadataDetail[] | string[]"
61463
- }
61464
- }
61465
- ],
61466
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
61467
- }
61468
- ],
61469
- "exports": [
61470
- {
61471
- "kind": "js",
61472
- "name": "validateClauses",
61473
- "declaration": {
61474
- "name": "validateClauses",
61475
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61476
- }
61477
- },
61478
- {
61479
- "kind": "js",
61480
- "name": "validateGroups",
61481
- "declaration": {
61482
- "name": "validateGroups",
61483
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
61484
- }
61485
- }
61486
- ]
61487
- },
61488
61470
  {
61489
61471
  "kind": "javascript-module",
61490
61472
  "path": "src/environment-indicator/utils/configure.ts",