@genesislcap/foundation-ui 14.416.0 → 14.416.1-alpha-c3adbe7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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",
@@ -2812,6 +2418,476 @@
2812
2418
  }
2813
2419
  ]
2814
2420
  },
2421
+ {
2422
+ "kind": "javascript-module",
2423
+ "path": "src/_config/index.ts",
2424
+ "declarations": [],
2425
+ "exports": [
2426
+ {
2427
+ "kind": "js",
2428
+ "name": "*",
2429
+ "declaration": {
2430
+ "name": "*",
2431
+ "package": "./styles"
2432
+ }
2433
+ },
2434
+ {
2435
+ "kind": "js",
2436
+ "name": "*",
2437
+ "declaration": {
2438
+ "name": "*",
2439
+ "package": "./tokens"
2440
+ }
2441
+ },
2442
+ {
2443
+ "kind": "js",
2444
+ "name": "*",
2445
+ "declaration": {
2446
+ "name": "*",
2447
+ "package": "./values"
2448
+ }
2449
+ }
2450
+ ]
2451
+ },
2452
+ {
2453
+ "kind": "javascript-module",
2454
+ "path": "src/ai-indicator/ai-indicator.styles.ts",
2455
+ "declarations": [
2456
+ {
2457
+ "kind": "function",
2458
+ "name": "foundationAiIndicatorStyles",
2459
+ "return": {
2460
+ "type": {
2461
+ "text": "ElementStyles"
2462
+ }
2463
+ },
2464
+ "parameters": [
2465
+ {
2466
+ "name": "context",
2467
+ "type": {
2468
+ "text": "ElementDefinitionContext"
2469
+ }
2470
+ },
2471
+ {
2472
+ "name": "definition",
2473
+ "type": {
2474
+ "text": "FoundationElementDefinition"
2475
+ }
2476
+ }
2477
+ ]
2478
+ }
2479
+ ],
2480
+ "exports": [
2481
+ {
2482
+ "kind": "js",
2483
+ "name": "foundationAiIndicatorStyles",
2484
+ "declaration": {
2485
+ "name": "foundationAiIndicatorStyles",
2486
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
2487
+ }
2488
+ }
2489
+ ]
2490
+ },
2491
+ {
2492
+ "kind": "javascript-module",
2493
+ "path": "src/ai-indicator/ai-indicator.template.ts",
2494
+ "declarations": [
2495
+ {
2496
+ "kind": "variable",
2497
+ "name": "foundationAiIndicatorTemplate",
2498
+ "type": {
2499
+ "text": "ViewTemplate<AiIndicator>"
2500
+ },
2501
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
2502
+ }
2503
+ ],
2504
+ "exports": [
2505
+ {
2506
+ "kind": "js",
2507
+ "name": "foundationAiIndicatorTemplate",
2508
+ "declaration": {
2509
+ "name": "foundationAiIndicatorTemplate",
2510
+ "module": "src/ai-indicator/ai-indicator.template.ts"
2511
+ }
2512
+ }
2513
+ ]
2514
+ },
2515
+ {
2516
+ "kind": "javascript-module",
2517
+ "path": "src/ai-indicator/ai-indicator.ts",
2518
+ "declarations": [
2519
+ {
2520
+ "kind": "class",
2521
+ "description": "",
2522
+ "name": "AiIndicator",
2523
+ "members": [
2524
+ {
2525
+ "kind": "field",
2526
+ "name": "aiProvider",
2527
+ "type": {
2528
+ "text": "AIProvider"
2529
+ }
2530
+ },
2531
+ {
2532
+ "kind": "field",
2533
+ "name": "status",
2534
+ "type": {
2535
+ "text": "AIStatus | null"
2536
+ },
2537
+ "default": "null"
2538
+ },
2539
+ {
2540
+ "kind": "field",
2541
+ "name": "open",
2542
+ "type": {
2543
+ "text": "boolean"
2544
+ },
2545
+ "default": "false"
2546
+ },
2547
+ {
2548
+ "kind": "field",
2549
+ "name": "state",
2550
+ "type": {
2551
+ "text": "AIIndicatorState"
2552
+ },
2553
+ "default": "'none'"
2554
+ },
2555
+ {
2556
+ "kind": "field",
2557
+ "name": "isInstalling",
2558
+ "type": {
2559
+ "text": "boolean"
2560
+ },
2561
+ "default": "false"
2562
+ },
2563
+ {
2564
+ "kind": "field",
2565
+ "name": "pollTimer",
2566
+ "type": {
2567
+ "text": "ReturnType<typeof setInterval> | null"
2568
+ },
2569
+ "privacy": "private",
2570
+ "default": "null"
2571
+ },
2572
+ {
2573
+ "kind": "field",
2574
+ "name": "clickOutside",
2575
+ "privacy": "private"
2576
+ },
2577
+ {
2578
+ "kind": "field",
2579
+ "name": "chromeStatusLabel",
2580
+ "type": {
2581
+ "text": "string | null"
2582
+ },
2583
+ "readonly": true
2584
+ },
2585
+ {
2586
+ "kind": "field",
2587
+ "name": "canInstall",
2588
+ "type": {
2589
+ "text": "boolean"
2590
+ },
2591
+ "readonly": true
2592
+ },
2593
+ {
2594
+ "kind": "field",
2595
+ "name": "isDownloading",
2596
+ "type": {
2597
+ "text": "boolean"
2598
+ },
2599
+ "readonly": true
2600
+ },
2601
+ {
2602
+ "kind": "method",
2603
+ "name": "openChanged",
2604
+ "return": {
2605
+ "type": {
2606
+ "text": "void"
2607
+ }
2608
+ }
2609
+ },
2610
+ {
2611
+ "kind": "method",
2612
+ "name": "handleClickOutside",
2613
+ "privacy": "private",
2614
+ "parameters": [
2615
+ {
2616
+ "name": "event",
2617
+ "type": {
2618
+ "text": "MouseEvent"
2619
+ }
2620
+ }
2621
+ ]
2622
+ },
2623
+ {
2624
+ "kind": "method",
2625
+ "name": "toggleDropdown"
2626
+ },
2627
+ {
2628
+ "kind": "method",
2629
+ "name": "refreshStatus",
2630
+ "return": {
2631
+ "type": {
2632
+ "text": "Promise<void>"
2633
+ }
2634
+ }
2635
+ },
2636
+ {
2637
+ "kind": "method",
2638
+ "name": "deriveState",
2639
+ "privacy": "private",
2640
+ "return": {
2641
+ "type": {
2642
+ "text": "AIIndicatorState"
2643
+ }
2644
+ },
2645
+ "parameters": [
2646
+ {
2647
+ "name": "s",
2648
+ "type": {
2649
+ "text": "AIStatus | null"
2650
+ }
2651
+ }
2652
+ ]
2653
+ },
2654
+ {
2655
+ "kind": "method",
2656
+ "name": "maybeStartPolling",
2657
+ "privacy": "private",
2658
+ "return": {
2659
+ "type": {
2660
+ "text": "void"
2661
+ }
2662
+ }
2663
+ },
2664
+ {
2665
+ "kind": "method",
2666
+ "name": "startPolling",
2667
+ "privacy": "private",
2668
+ "return": {
2669
+ "type": {
2670
+ "text": "void"
2671
+ }
2672
+ }
2673
+ },
2674
+ {
2675
+ "kind": "method",
2676
+ "name": "stopPolling",
2677
+ "privacy": "private",
2678
+ "return": {
2679
+ "type": {
2680
+ "text": "void"
2681
+ }
2682
+ }
2683
+ },
2684
+ {
2685
+ "kind": "method",
2686
+ "name": "onInstall",
2687
+ "return": {
2688
+ "type": {
2689
+ "text": "Promise<void>"
2690
+ }
2691
+ }
2692
+ },
2693
+ {
2694
+ "kind": "field",
2695
+ "name": "_presentation",
2696
+ "type": {
2697
+ "text": "ComponentPresentation | null | undefined"
2698
+ },
2699
+ "privacy": "private",
2700
+ "default": "void 0",
2701
+ "inheritedFrom": {
2702
+ "name": "FoundationElement",
2703
+ "module": "src/foundation-element/foundation-element.ts"
2704
+ }
2705
+ },
2706
+ {
2707
+ "kind": "field",
2708
+ "name": "$presentation",
2709
+ "type": {
2710
+ "text": "ComponentPresentation | null"
2711
+ },
2712
+ "privacy": "public",
2713
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2714
+ "inheritedFrom": {
2715
+ "name": "FoundationElement",
2716
+ "module": "src/foundation-element/foundation-element.ts"
2717
+ }
2718
+ },
2719
+ {
2720
+ "kind": "field",
2721
+ "name": "template",
2722
+ "type": {
2723
+ "text": "ElementViewTemplate | void | null"
2724
+ },
2725
+ "privacy": "public",
2726
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2727
+ "inheritedFrom": {
2728
+ "name": "FoundationElement",
2729
+ "module": "src/foundation-element/foundation-element.ts"
2730
+ }
2731
+ },
2732
+ {
2733
+ "kind": "method",
2734
+ "name": "templateChanged",
2735
+ "privacy": "protected",
2736
+ "return": {
2737
+ "type": {
2738
+ "text": "void"
2739
+ }
2740
+ },
2741
+ "inheritedFrom": {
2742
+ "name": "FoundationElement",
2743
+ "module": "src/foundation-element/foundation-element.ts"
2744
+ }
2745
+ },
2746
+ {
2747
+ "kind": "field",
2748
+ "name": "styles",
2749
+ "type": {
2750
+ "text": "ElementStyles | void | null"
2751
+ },
2752
+ "privacy": "public",
2753
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2754
+ "inheritedFrom": {
2755
+ "name": "FoundationElement",
2756
+ "module": "src/foundation-element/foundation-element.ts"
2757
+ }
2758
+ },
2759
+ {
2760
+ "kind": "method",
2761
+ "name": "stylesChanged",
2762
+ "privacy": "protected",
2763
+ "return": {
2764
+ "type": {
2765
+ "text": "void"
2766
+ }
2767
+ },
2768
+ "inheritedFrom": {
2769
+ "name": "FoundationElement",
2770
+ "module": "src/foundation-element/foundation-element.ts"
2771
+ }
2772
+ },
2773
+ {
2774
+ "kind": "method",
2775
+ "name": "compose",
2776
+ "privacy": "public",
2777
+ "static": true,
2778
+ "return": {
2779
+ "type": {
2780
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2781
+ }
2782
+ },
2783
+ "parameters": [
2784
+ {
2785
+ "name": "this",
2786
+ "type": {
2787
+ "text": "K"
2788
+ }
2789
+ },
2790
+ {
2791
+ "name": "elementDefinition",
2792
+ "type": {
2793
+ "text": "T"
2794
+ },
2795
+ "description": "The definition of the element to create the registry\nfunction for."
2796
+ }
2797
+ ],
2798
+ "description": "Defines an element registry function with a set of element definition defaults.",
2799
+ "inheritedFrom": {
2800
+ "name": "FoundationElement",
2801
+ "module": "src/foundation-element/foundation-element.ts"
2802
+ }
2803
+ }
2804
+ ],
2805
+ "superclass": {
2806
+ "name": "FoundationElement",
2807
+ "package": "@microsoft/fast-foundation"
2808
+ },
2809
+ "tagName": "%%prefix%%-ai-indicator",
2810
+ "customElement": true
2811
+ },
2812
+ {
2813
+ "kind": "variable",
2814
+ "name": "foundationAiIndicator"
2815
+ }
2816
+ ],
2817
+ "exports": [
2818
+ {
2819
+ "kind": "js",
2820
+ "name": "AiIndicator",
2821
+ "declaration": {
2822
+ "name": "AiIndicator",
2823
+ "module": "src/ai-indicator/ai-indicator.ts"
2824
+ }
2825
+ },
2826
+ {
2827
+ "kind": "js",
2828
+ "name": "foundationAiIndicator",
2829
+ "declaration": {
2830
+ "name": "foundationAiIndicator",
2831
+ "module": "src/ai-indicator/ai-indicator.ts"
2832
+ }
2833
+ }
2834
+ ]
2835
+ },
2836
+ {
2837
+ "kind": "javascript-module",
2838
+ "path": "src/ai-indicator/index.ts",
2839
+ "declarations": [],
2840
+ "exports": [
2841
+ {
2842
+ "kind": "js",
2843
+ "name": "AiIndicator",
2844
+ "declaration": {
2845
+ "name": "AiIndicator",
2846
+ "module": "./ai-indicator"
2847
+ }
2848
+ },
2849
+ {
2850
+ "kind": "js",
2851
+ "name": "foundationAiIndicator",
2852
+ "declaration": {
2853
+ "name": "foundationAiIndicator",
2854
+ "module": "./ai-indicator"
2855
+ }
2856
+ },
2857
+ {
2858
+ "kind": "js",
2859
+ "name": "type",
2860
+ "declaration": {
2861
+ "name": "type",
2862
+ "module": "./ai-indicator"
2863
+ }
2864
+ },
2865
+ {
2866
+ "kind": "js",
2867
+ "name": "AIIndicatorState",
2868
+ "declaration": {
2869
+ "name": "AIIndicatorState",
2870
+ "module": "./ai-indicator"
2871
+ }
2872
+ },
2873
+ {
2874
+ "kind": "js",
2875
+ "name": "foundationAiIndicatorTemplate",
2876
+ "declaration": {
2877
+ "name": "foundationAiIndicatorTemplate",
2878
+ "module": "./ai-indicator.template"
2879
+ }
2880
+ },
2881
+ {
2882
+ "kind": "js",
2883
+ "name": "foundationAiIndicatorStyles",
2884
+ "declaration": {
2885
+ "name": "foundationAiIndicatorStyles",
2886
+ "module": "./ai-indicator.styles"
2887
+ }
2888
+ }
2889
+ ]
2890
+ },
2815
2891
  {
2816
2892
  "kind": "javascript-module",
2817
2893
  "path": "src/accordion/accordion.styles.ts",
@@ -2996,244 +3072,159 @@
2996
3072
  },
2997
3073
  {
2998
3074
  "kind": "javascript-module",
2999
- "path": "src/ai-indicator/ai-indicator.styles.ts",
3000
- "declarations": [
3001
- {
3002
- "kind": "function",
3003
- "name": "foundationAiIndicatorStyles",
3004
- "return": {
3005
- "type": {
3006
- "text": "ElementStyles"
3007
- }
3008
- },
3009
- "parameters": [
3010
- {
3011
- "name": "context",
3012
- "type": {
3013
- "text": "ElementDefinitionContext"
3014
- }
3015
- },
3016
- {
3017
- "name": "definition",
3018
- "type": {
3019
- "text": "FoundationElementDefinition"
3020
- }
3021
- }
3022
- ]
3023
- }
3024
- ],
3025
- "exports": [
3026
- {
3027
- "kind": "js",
3028
- "name": "foundationAiIndicatorStyles",
3029
- "declaration": {
3030
- "name": "foundationAiIndicatorStyles",
3031
- "module": "src/ai-indicator/ai-indicator.styles.ts"
3032
- }
3033
- }
3034
- ]
3035
- },
3036
- {
3037
- "kind": "javascript-module",
3038
- "path": "src/ai-indicator/ai-indicator.template.ts",
3039
- "declarations": [
3040
- {
3041
- "kind": "variable",
3042
- "name": "foundationAiIndicatorTemplate",
3043
- "type": {
3044
- "text": "ViewTemplate<AiIndicator>"
3045
- },
3046
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3047
- }
3048
- ],
3049
- "exports": [
3050
- {
3051
- "kind": "js",
3052
- "name": "foundationAiIndicatorTemplate",
3053
- "declaration": {
3054
- "name": "foundationAiIndicatorTemplate",
3055
- "module": "src/ai-indicator/ai-indicator.template.ts"
3056
- }
3057
- }
3058
- ]
3059
- },
3060
- {
3061
- "kind": "javascript-module",
3062
- "path": "src/ai-indicator/ai-indicator.ts",
3075
+ "path": "src/_common/base-file-component.ts",
3063
3076
  "declarations": [
3064
3077
  {
3065
3078
  "kind": "class",
3066
- "description": "",
3067
- "name": "AiIndicator",
3079
+ "description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
3080
+ "name": "BaseFileComponent",
3068
3081
  "members": [
3069
3082
  {
3070
3083
  "kind": "field",
3071
- "name": "aiProvider",
3072
- "type": {
3073
- "text": "AIProvider"
3074
- }
3075
- },
3076
- {
3077
- "kind": "field",
3078
- "name": "status",
3079
- "type": {
3080
- "text": "AIStatus | null"
3081
- },
3082
- "default": "null"
3083
- },
3084
- {
3085
- "kind": "field",
3086
- "name": "open",
3084
+ "name": "fileInput",
3087
3085
  "type": {
3088
- "text": "boolean"
3086
+ "text": "HTMLInputElement"
3089
3087
  },
3090
- "default": "false"
3088
+ "privacy": "public"
3091
3089
  },
3092
3090
  {
3093
3091
  "kind": "field",
3094
- "name": "state",
3092
+ "name": "selectedFile",
3095
3093
  "type": {
3096
- "text": "AIIndicatorState"
3094
+ "text": "File | null"
3097
3095
  },
3098
- "default": "'none'"
3096
+ "privacy": "protected",
3097
+ "default": "null"
3099
3098
  },
3100
3099
  {
3101
3100
  "kind": "field",
3102
- "name": "isInstalling",
3101
+ "name": "label",
3103
3102
  "type": {
3104
- "text": "boolean"
3105
- },
3106
- "default": "false"
3103
+ "text": "string"
3104
+ }
3107
3105
  },
3108
3106
  {
3109
3107
  "kind": "field",
3110
- "name": "pollTimer",
3108
+ "name": "accept",
3111
3109
  "type": {
3112
- "text": "ReturnType<typeof setInterval> | null"
3110
+ "text": "string"
3113
3111
  },
3114
- "privacy": "private",
3115
- "default": "null"
3116
- },
3117
- {
3118
- "kind": "field",
3119
- "name": "clickOutside",
3120
- "privacy": "private"
3112
+ "default": "''"
3121
3113
  },
3122
3114
  {
3123
3115
  "kind": "field",
3124
- "name": "chromeStatusLabel",
3116
+ "name": "fileSizeLimitBytes",
3117
+ "default": "10_485_760",
3125
3118
  "type": {
3126
- "text": "string | null"
3127
- },
3128
- "readonly": true
3119
+ "text": "number"
3120
+ }
3129
3121
  },
3130
3122
  {
3131
3123
  "kind": "field",
3132
- "name": "canInstall",
3124
+ "name": "fileName",
3133
3125
  "type": {
3134
- "text": "boolean"
3126
+ "text": "string"
3135
3127
  },
3136
- "readonly": true
3128
+ "default": "''"
3137
3129
  },
3138
3130
  {
3139
3131
  "kind": "field",
3140
- "name": "isDownloading",
3132
+ "name": "isProcessing",
3141
3133
  "type": {
3142
3134
  "text": "boolean"
3143
3135
  },
3144
- "readonly": true
3136
+ "default": "false"
3145
3137
  },
3146
3138
  {
3147
3139
  "kind": "method",
3148
- "name": "openChanged",
3149
- "return": {
3150
- "type": {
3151
- "text": "void"
3152
- }
3153
- }
3140
+ "name": "handleClick",
3141
+ "privacy": "public",
3142
+ "description": "Opens the file picker dialog\nClears any previous file selection before opening"
3154
3143
  },
3155
3144
  {
3156
3145
  "kind": "method",
3157
- "name": "handleClickOutside",
3158
- "privacy": "private",
3146
+ "name": "onInputChange",
3147
+ "privacy": "public",
3159
3148
  "parameters": [
3160
3149
  {
3161
- "name": "event",
3150
+ "name": "e",
3162
3151
  "type": {
3163
- "text": "MouseEvent"
3164
- }
3152
+ "text": "Event"
3153
+ },
3154
+ "description": "The change event from the file input"
3165
3155
  }
3166
- ]
3156
+ ],
3157
+ "description": "Handles file selection from the file input\nValidates file size and sets up for processing"
3167
3158
  },
3168
3159
  {
3169
3160
  "kind": "method",
3170
- "name": "toggleDropdown"
3161
+ "name": "clearSelection",
3162
+ "privacy": "public",
3163
+ "description": "Clears all file selection and processing state\nResets the component to its initial state"
3171
3164
  },
3172
3165
  {
3173
3166
  "kind": "method",
3174
- "name": "refreshStatus",
3167
+ "name": "getSelectedFile",
3168
+ "privacy": "public",
3169
+ "description": "Gets the currently selected file object",
3175
3170
  "return": {
3176
3171
  "type": {
3177
- "text": "Promise<void>"
3172
+ "text": ""
3178
3173
  }
3179
3174
  }
3180
3175
  },
3181
3176
  {
3182
3177
  "kind": "method",
3183
- "name": "deriveState",
3184
- "privacy": "private",
3185
- "return": {
3186
- "type": {
3187
- "text": "AIIndicatorState"
3188
- }
3189
- },
3178
+ "name": "showError",
3179
+ "privacy": "protected",
3190
3180
  "parameters": [
3191
3181
  {
3192
- "name": "s",
3182
+ "name": "title",
3193
3183
  "type": {
3194
- "text": "AIStatus | null"
3195
- }
3184
+ "text": "string"
3185
+ },
3186
+ "description": "The error title"
3187
+ },
3188
+ {
3189
+ "name": "message",
3190
+ "type": {
3191
+ "text": "string"
3192
+ },
3193
+ "description": "The error message"
3196
3194
  }
3197
- ]
3195
+ ],
3196
+ "description": "Shows an error notification using the unified error handling system"
3198
3197
  },
3199
3198
  {
3200
3199
  "kind": "method",
3201
- "name": "maybeStartPolling",
3202
- "privacy": "private",
3200
+ "name": "onFileSelected",
3201
+ "privacy": "protected",
3203
3202
  "return": {
3204
3203
  "type": {
3205
3204
  "text": "void"
3206
3205
  }
3207
- }
3208
- },
3209
- {
3210
- "kind": "method",
3211
- "name": "startPolling",
3212
- "privacy": "private",
3213
- "return": {
3214
- "type": {
3215
- "text": "void"
3206
+ },
3207
+ "parameters": [
3208
+ {
3209
+ "name": "files",
3210
+ "type": {
3211
+ "text": "File[]"
3212
+ },
3213
+ "description": "The selected file"
3216
3214
  }
3217
- }
3215
+ ],
3216
+ "description": "Abstract method called when a file is selected"
3218
3217
  },
3219
3218
  {
3220
3219
  "kind": "method",
3221
- "name": "stopPolling",
3222
- "privacy": "private",
3220
+ "name": "onFileCleared",
3221
+ "privacy": "protected",
3223
3222
  "return": {
3224
3223
  "type": {
3225
3224
  "text": "void"
3226
3225
  }
3227
- }
3228
- },
3229
- {
3230
- "kind": "method",
3231
- "name": "onInstall",
3232
- "return": {
3233
- "type": {
3234
- "text": "Promise<void>"
3235
- }
3236
- }
3226
+ },
3227
+ "description": "Abstract method called when file selection is cleared"
3237
3228
  },
3238
3229
  {
3239
3230
  "kind": "field",
@@ -3347,88 +3338,97 @@
3347
3338
  }
3348
3339
  }
3349
3340
  ],
3341
+ "attributes": [
3342
+ {
3343
+ "name": "label",
3344
+ "type": {
3345
+ "text": "string"
3346
+ },
3347
+ "fieldName": "label"
3348
+ },
3349
+ {
3350
+ "name": "accept",
3351
+ "type": {
3352
+ "text": "string"
3353
+ },
3354
+ "default": "''",
3355
+ "fieldName": "accept"
3356
+ },
3357
+ {
3358
+ "name": "file-size-limit-bytes",
3359
+ "default": "DEFAULT_FILE_SIZE_LIMIT",
3360
+ "resolveInitializer": {
3361
+ "module": "src/_common/base-file-component.ts"
3362
+ },
3363
+ "fieldName": "fileSizeLimitBytes"
3364
+ }
3365
+ ],
3350
3366
  "superclass": {
3351
3367
  "name": "FoundationElement",
3352
3368
  "package": "@microsoft/fast-foundation"
3353
- },
3354
- "tagName": "%%prefix%%-ai-indicator",
3355
- "customElement": true
3356
- },
3357
- {
3358
- "kind": "variable",
3359
- "name": "foundationAiIndicator"
3369
+ }
3360
3370
  }
3361
3371
  ],
3362
3372
  "exports": [
3363
3373
  {
3364
3374
  "kind": "js",
3365
- "name": "AiIndicator",
3375
+ "name": "BaseFileComponent",
3366
3376
  "declaration": {
3367
- "name": "AiIndicator",
3368
- "module": "src/ai-indicator/ai-indicator.ts"
3377
+ "name": "BaseFileComponent",
3378
+ "module": "src/_common/base-file-component.ts"
3369
3379
  }
3370
- },
3380
+ }
3381
+ ]
3382
+ },
3383
+ {
3384
+ "kind": "javascript-module",
3385
+ "path": "src/_common/icons.ts",
3386
+ "declarations": [
3387
+ {
3388
+ "kind": "function",
3389
+ "name": "closeIcon",
3390
+ "parameters": [
3391
+ {
3392
+ "name": "slot",
3393
+ "default": "'start'"
3394
+ },
3395
+ {
3396
+ "name": "fill",
3397
+ "default": "'#879ba6'"
3398
+ }
3399
+ ]
3400
+ }
3401
+ ],
3402
+ "exports": [
3371
3403
  {
3372
3404
  "kind": "js",
3373
- "name": "foundationAiIndicator",
3405
+ "name": "closeIcon",
3374
3406
  "declaration": {
3375
- "name": "foundationAiIndicator",
3376
- "module": "src/ai-indicator/ai-indicator.ts"
3407
+ "name": "closeIcon",
3408
+ "module": "src/_common/icons.ts"
3377
3409
  }
3378
3410
  }
3379
3411
  ]
3380
3412
  },
3381
3413
  {
3382
3414
  "kind": "javascript-module",
3383
- "path": "src/ai-indicator/index.ts",
3415
+ "path": "src/_common/index.ts",
3384
3416
  "declarations": [],
3385
3417
  "exports": [
3386
3418
  {
3387
3419
  "kind": "js",
3388
- "name": "AiIndicator",
3389
- "declaration": {
3390
- "name": "AiIndicator",
3391
- "module": "./ai-indicator"
3392
- }
3393
- },
3394
- {
3395
- "kind": "js",
3396
- "name": "foundationAiIndicator",
3397
- "declaration": {
3398
- "name": "foundationAiIndicator",
3399
- "module": "./ai-indicator"
3400
- }
3401
- },
3402
- {
3403
- "kind": "js",
3404
- "name": "type",
3405
- "declaration": {
3406
- "name": "type",
3407
- "module": "./ai-indicator"
3408
- }
3409
- },
3410
- {
3411
- "kind": "js",
3412
- "name": "AIIndicatorState",
3413
- "declaration": {
3414
- "name": "AIIndicatorState",
3415
- "module": "./ai-indicator"
3416
- }
3417
- },
3418
- {
3419
- "kind": "js",
3420
- "name": "foundationAiIndicatorTemplate",
3420
+ "name": "*",
3421
3421
  "declaration": {
3422
- "name": "foundationAiIndicatorTemplate",
3423
- "module": "./ai-indicator.template"
3422
+ "name": "*",
3423
+ "package": "./base-file-component"
3424
3424
  }
3425
3425
  },
3426
3426
  {
3427
3427
  "kind": "js",
3428
- "name": "foundationAiIndicatorStyles",
3428
+ "name": "*",
3429
3429
  "declaration": {
3430
- "name": "foundationAiIndicatorStyles",
3431
- "module": "./ai-indicator.styles"
3430
+ "name": "*",
3431
+ "package": "./icons"
3432
3432
  }
3433
3433
  }
3434
3434
  ]
@@ -24198,7 +24198,7 @@
24198
24198
  "type": {
24199
24199
  "text": "ElementStyles"
24200
24200
  },
24201
- "default": "css`\n /* Host */\n :host {\n display: inline-block;\n height: 100vh;\n position: absolute;\n width: 100vw;\n }\n\n :host([closed]) {\n display: none;\n }\n\n div.container {\n height: 100%;\n width: 100%;\n }\n\n /* flyout */\n div.flyout {\n background-color: white;\n color: black;\n height: 100%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition:\n transform ${flyoutAnimationTime.toString()}ms ease-in,\n width ${flyoutAnimationTime.toString()}ms ease-in-out;\n width: var(--flyout-width, 20%);\n z-index: 2001;\n }\n\n :host([position='left']) div.flyout {\n left: 0;\n transform: translateX(0%);\n }\n\n :host([position='right']) div.flyout {\n right: 0;\n transform: translateX(0%);\n }\n\n :host([visuallyhidden][position='left']) div.flyout {\n left: 0;\n transform: translateX(-100%);\n }\n\n :host([visuallyhidden][position='right']) div.flyout {\n right: 0;\n transform: translateX(100%);\n }\n\n div.header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--neutral-foreground-hint);\n font-weight: 500;\n padding: calc(var(--design-unit) * 2px) calc(var(--design-unit) * 3px);\n\n rapid-button {\n --base-height-multiplier: 8;\n }\n\n rapid-button::part(control) {\n padding: 0 calc((8 + var(--design-unit) * 1 * var(--density)) * 1px);\n }\n }\n\n div.title {\n flex-grow: 1;\n }\n\n div.footer {\n bottom: 0;\n position: absolute;\n width: 100%;\n }\n\n /* Background */\n div.background {\n background-color: black;\n height: 100%;\n opacity: 50%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition: opacity ${flyoutAnimationTime.toString()}ms linear;\n width: 100%;\n z-index: 2000;\n }\n\n :host([visuallyhidden]) div.background {\n opacity: 0%;\n }\n`"
24201
+ "default": "css`\n /* Host */\n :host {\n display: inline-block;\n height: 100vh;\n position: absolute;\n width: 100vw;\n }\n\n :host([closed]) {\n display: none;\n }\n\n div.container {\n height: 100%;\n width: 100%;\n }\n\n /* flyout */\n div.flyout {\n background-color: white;\n color: black;\n height: 100%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition:\n transform ${flyoutAnimationTime.toString()}ms ease-in,\n width ${flyoutAnimationTime.toString()}ms ease-in-out;\n width: 20%;\n z-index: 2001;\n }\n\n :host([position='left']) div.flyout {\n left: 0;\n transform: translateX(0%);\n }\n\n :host([position='right']) div.flyout {\n right: 0;\n transform: translateX(0%);\n }\n\n :host([visuallyhidden][position='left']) div.flyout {\n left: 0;\n transform: translateX(-100%);\n }\n\n :host([visuallyhidden][position='right']) div.flyout {\n right: 0;\n transform: translateX(100%);\n }\n\n div.header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--neutral-foreground-hint);\n font-weight: 500;\n padding: calc(var(--design-unit) * 2px) calc(var(--design-unit) * 3px);\n\n rapid-button {\n --base-height-multiplier: 8;\n }\n\n rapid-button::part(control) {\n padding: 0 calc((8 + var(--design-unit) * 1 * var(--density)) * 1px);\n }\n }\n\n div.title {\n flex-grow: 1;\n }\n\n div.footer {\n bottom: 0;\n position: absolute;\n width: 100%;\n }\n\n /* Background */\n div.background {\n background-color: black;\n height: 100%;\n opacity: 50%;\n position: absolute;\n /* stylelint-disable-next-line function-name-case */\n transition: opacity ${flyoutAnimationTime.toString()}ms linear;\n width: 100%;\n z-index: 2000;\n }\n\n :host([visuallyhidden]) div.background {\n opacity: 0%;\n }\n`"
24202
24202
  }
24203
24203
  ],
24204
24204
  "exports": [
@@ -24294,10 +24294,6 @@
24294
24294
  },
24295
24295
  "default": "'20%'"
24296
24296
  },
24297
- {
24298
- "kind": "method",
24299
- "name": "flyoutWidthChanged"
24300
- },
24301
24297
  {
24302
24298
  "kind": "field",
24303
24299
  "name": "displayHeader",
@@ -54374,6 +54370,181 @@
54374
54370
  }
54375
54371
  ]
54376
54372
  },
54373
+ {
54374
+ "kind": "javascript-module",
54375
+ "path": "src/ai-criteria-search/validation/criteria-ir.ts",
54376
+ "declarations": [],
54377
+ "exports": []
54378
+ },
54379
+ {
54380
+ "kind": "javascript-module",
54381
+ "path": "src/ai-criteria-search/validation/operator-map.ts",
54382
+ "declarations": [
54383
+ {
54384
+ "kind": "function",
54385
+ "name": "groupsToCriteria",
54386
+ "return": {
54387
+ "type": {
54388
+ "text": "string"
54389
+ }
54390
+ },
54391
+ "parameters": [
54392
+ {
54393
+ "name": "groups",
54394
+ "type": {
54395
+ "text": "CriteriaGroup[]"
54396
+ }
54397
+ }
54398
+ ],
54399
+ "description": "Converts validated CriteriaGroup[] to a Groovy criteria string using CriteriaBuilder.\nGroups are AND-ed at top level. Within each group, clauses use group.logic (and/or).\nIf group.negated is true, the group's combined expression is wrapped in NOT."
54400
+ },
54401
+ {
54402
+ "kind": "variable",
54403
+ "name": "STRING_OPERATORS",
54404
+ "type": {
54405
+ "text": "CriteriaOperator[]"
54406
+ },
54407
+ "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
54408
+ },
54409
+ {
54410
+ "kind": "variable",
54411
+ "name": "NUMERIC_OPERATORS",
54412
+ "type": {
54413
+ "text": "CriteriaOperator[]"
54414
+ },
54415
+ "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
54416
+ },
54417
+ {
54418
+ "kind": "variable",
54419
+ "name": "DATE_OPERATORS",
54420
+ "type": {
54421
+ "text": "CriteriaOperator[]"
54422
+ },
54423
+ "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
54424
+ },
54425
+ {
54426
+ "kind": "variable",
54427
+ "name": "DATETIME_OPERATORS",
54428
+ "type": {
54429
+ "text": "CriteriaOperator[]"
54430
+ },
54431
+ "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
54432
+ }
54433
+ ],
54434
+ "exports": [
54435
+ {
54436
+ "kind": "js",
54437
+ "name": "groupsToCriteria",
54438
+ "declaration": {
54439
+ "name": "groupsToCriteria",
54440
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
54441
+ }
54442
+ },
54443
+ {
54444
+ "kind": "js",
54445
+ "name": "STRING_OPERATORS",
54446
+ "declaration": {
54447
+ "name": "STRING_OPERATORS",
54448
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
54449
+ }
54450
+ },
54451
+ {
54452
+ "kind": "js",
54453
+ "name": "NUMERIC_OPERATORS",
54454
+ "declaration": {
54455
+ "name": "NUMERIC_OPERATORS",
54456
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
54457
+ }
54458
+ },
54459
+ {
54460
+ "kind": "js",
54461
+ "name": "DATE_OPERATORS",
54462
+ "declaration": {
54463
+ "name": "DATE_OPERATORS",
54464
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
54465
+ }
54466
+ },
54467
+ {
54468
+ "kind": "js",
54469
+ "name": "DATETIME_OPERATORS",
54470
+ "declaration": {
54471
+ "name": "DATETIME_OPERATORS",
54472
+ "module": "src/ai-criteria-search/validation/operator-map.ts"
54473
+ }
54474
+ }
54475
+ ]
54476
+ },
54477
+ {
54478
+ "kind": "javascript-module",
54479
+ "path": "src/ai-criteria-search/validation/schema-validator.ts",
54480
+ "declarations": [
54481
+ {
54482
+ "kind": "function",
54483
+ "name": "validateClauses",
54484
+ "return": {
54485
+ "type": {
54486
+ "text": "ValidationResult"
54487
+ }
54488
+ },
54489
+ "parameters": [
54490
+ {
54491
+ "name": "clauses",
54492
+ "type": {
54493
+ "text": "CriteriaClause[]"
54494
+ }
54495
+ },
54496
+ {
54497
+ "name": "fieldMetadata",
54498
+ "type": {
54499
+ "text": "MetadataDetail[] | string[]"
54500
+ }
54501
+ }
54502
+ ]
54503
+ },
54504
+ {
54505
+ "kind": "function",
54506
+ "name": "validateGroups",
54507
+ "return": {
54508
+ "type": {
54509
+ "text": "GroupsValidationResult"
54510
+ }
54511
+ },
54512
+ "parameters": [
54513
+ {
54514
+ "name": "groups",
54515
+ "type": {
54516
+ "text": "CriteriaGroup[]"
54517
+ }
54518
+ },
54519
+ {
54520
+ "name": "fieldMetadata",
54521
+ "type": {
54522
+ "text": "MetadataDetail[] | string[]"
54523
+ }
54524
+ }
54525
+ ],
54526
+ "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
54527
+ }
54528
+ ],
54529
+ "exports": [
54530
+ {
54531
+ "kind": "js",
54532
+ "name": "validateClauses",
54533
+ "declaration": {
54534
+ "name": "validateClauses",
54535
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
54536
+ }
54537
+ },
54538
+ {
54539
+ "kind": "js",
54540
+ "name": "validateGroups",
54541
+ "declaration": {
54542
+ "name": "validateGroups",
54543
+ "module": "src/ai-criteria-search/validation/schema-validator.ts"
54544
+ }
54545
+ }
54546
+ ]
54547
+ },
54377
54548
  {
54378
54549
  "kind": "javascript-module",
54379
54550
  "path": "src/_config/styles/colors.ts",
@@ -55746,181 +55917,6 @@
55746
55917
  "declarations": [],
55747
55918
  "exports": []
55748
55919
  },
55749
- {
55750
- "kind": "javascript-module",
55751
- "path": "src/ai-criteria-search/validation/criteria-ir.ts",
55752
- "declarations": [],
55753
- "exports": []
55754
- },
55755
- {
55756
- "kind": "javascript-module",
55757
- "path": "src/ai-criteria-search/validation/operator-map.ts",
55758
- "declarations": [
55759
- {
55760
- "kind": "function",
55761
- "name": "groupsToCriteria",
55762
- "return": {
55763
- "type": {
55764
- "text": "string"
55765
- }
55766
- },
55767
- "parameters": [
55768
- {
55769
- "name": "groups",
55770
- "type": {
55771
- "text": "CriteriaGroup[]"
55772
- }
55773
- }
55774
- ],
55775
- "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."
55776
- },
55777
- {
55778
- "kind": "variable",
55779
- "name": "STRING_OPERATORS",
55780
- "type": {
55781
- "text": "CriteriaOperator[]"
55782
- },
55783
- "default": "[\n 'contains',\n 'equals',\n 'startsWith',\n 'endsWith',\n 'notEqual',\n]"
55784
- },
55785
- {
55786
- "kind": "variable",
55787
- "name": "NUMERIC_OPERATORS",
55788
- "type": {
55789
- "text": "CriteriaOperator[]"
55790
- },
55791
- "default": "[\n 'equals',\n 'greaterThan',\n 'lessThan',\n 'greaterThanOrEqual',\n 'lessThanOrEqual',\n 'notEqual',\n]"
55792
- },
55793
- {
55794
- "kind": "variable",
55795
- "name": "DATE_OPERATORS",
55796
- "type": {
55797
- "text": "CriteriaOperator[]"
55798
- },
55799
- "default": "[\n 'dateIsToday',\n 'dateIsAfter',\n 'dateIsBefore',\n 'dateIsEqual',\n 'dateIsGreaterEqual',\n 'dateIsLessEqual',\n]"
55800
- },
55801
- {
55802
- "kind": "variable",
55803
- "name": "DATETIME_OPERATORS",
55804
- "type": {
55805
- "text": "CriteriaOperator[]"
55806
- },
55807
- "default": "[\n 'dateTimeIsAfter',\n 'dateTimeIsBefore',\n 'dateTimeIsGreaterEqual',\n 'dateTimeIsLessEqual',\n]"
55808
- }
55809
- ],
55810
- "exports": [
55811
- {
55812
- "kind": "js",
55813
- "name": "groupsToCriteria",
55814
- "declaration": {
55815
- "name": "groupsToCriteria",
55816
- "module": "src/ai-criteria-search/validation/operator-map.ts"
55817
- }
55818
- },
55819
- {
55820
- "kind": "js",
55821
- "name": "STRING_OPERATORS",
55822
- "declaration": {
55823
- "name": "STRING_OPERATORS",
55824
- "module": "src/ai-criteria-search/validation/operator-map.ts"
55825
- }
55826
- },
55827
- {
55828
- "kind": "js",
55829
- "name": "NUMERIC_OPERATORS",
55830
- "declaration": {
55831
- "name": "NUMERIC_OPERATORS",
55832
- "module": "src/ai-criteria-search/validation/operator-map.ts"
55833
- }
55834
- },
55835
- {
55836
- "kind": "js",
55837
- "name": "DATE_OPERATORS",
55838
- "declaration": {
55839
- "name": "DATE_OPERATORS",
55840
- "module": "src/ai-criteria-search/validation/operator-map.ts"
55841
- }
55842
- },
55843
- {
55844
- "kind": "js",
55845
- "name": "DATETIME_OPERATORS",
55846
- "declaration": {
55847
- "name": "DATETIME_OPERATORS",
55848
- "module": "src/ai-criteria-search/validation/operator-map.ts"
55849
- }
55850
- }
55851
- ]
55852
- },
55853
- {
55854
- "kind": "javascript-module",
55855
- "path": "src/ai-criteria-search/validation/schema-validator.ts",
55856
- "declarations": [
55857
- {
55858
- "kind": "function",
55859
- "name": "validateClauses",
55860
- "return": {
55861
- "type": {
55862
- "text": "ValidationResult"
55863
- }
55864
- },
55865
- "parameters": [
55866
- {
55867
- "name": "clauses",
55868
- "type": {
55869
- "text": "CriteriaClause[]"
55870
- }
55871
- },
55872
- {
55873
- "name": "fieldMetadata",
55874
- "type": {
55875
- "text": "MetadataDetail[] | string[]"
55876
- }
55877
- }
55878
- ]
55879
- },
55880
- {
55881
- "kind": "function",
55882
- "name": "validateGroups",
55883
- "return": {
55884
- "type": {
55885
- "text": "GroupsValidationResult"
55886
- }
55887
- },
55888
- "parameters": [
55889
- {
55890
- "name": "groups",
55891
- "type": {
55892
- "text": "CriteriaGroup[]"
55893
- }
55894
- },
55895
- {
55896
- "name": "fieldMetadata",
55897
- "type": {
55898
- "text": "MetadataDetail[] | string[]"
55899
- }
55900
- }
55901
- ],
55902
- "description": "Validates groups of criteria clauses. Each group's clauses are validated\nusing the same per-clause logic as validateClauses."
55903
- }
55904
- ],
55905
- "exports": [
55906
- {
55907
- "kind": "js",
55908
- "name": "validateClauses",
55909
- "declaration": {
55910
- "name": "validateClauses",
55911
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
55912
- }
55913
- },
55914
- {
55915
- "kind": "js",
55916
- "name": "validateGroups",
55917
- "declaration": {
55918
- "name": "validateGroups",
55919
- "module": "src/ai-criteria-search/validation/schema-validator.ts"
55920
- }
55921
- }
55922
- ]
55923
- },
55924
55920
  {
55925
55921
  "kind": "javascript-module",
55926
55922
  "path": "src/environment-indicator/utils/configure.ts",