@genesislcap/foundation-ui 14.416.1 → 14.417.0-FUI-0-react-renderers.1

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,6 +924,62 @@
924
924
  }
925
925
  ]
926
926
  },
927
+ {
928
+ "kind": "javascript-module",
929
+ "path": "src/_common/affix-mixin.ts",
930
+ "declarations": [
931
+ {
932
+ "kind": "mixin",
933
+ "description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
934
+ "name": "AffixMixin",
935
+ "members": [
936
+ {
937
+ "kind": "field",
938
+ "name": "prefix",
939
+ "type": {
940
+ "text": "string"
941
+ },
942
+ "description": "Optional non-editable label shown on the left inside the field, before the input."
943
+ },
944
+ {
945
+ "kind": "field",
946
+ "name": "suffix",
947
+ "type": {
948
+ "text": "string"
949
+ },
950
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
951
+ },
952
+ {
953
+ "kind": "field",
954
+ "name": "hideAffixFromScreenReader",
955
+ "type": {
956
+ "text": "boolean"
957
+ },
958
+ "default": "false",
959
+ "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
960
+ }
961
+ ],
962
+ "parameters": [
963
+ {
964
+ "name": "Base",
965
+ "type": {
966
+ "text": "TBase"
967
+ }
968
+ }
969
+ ]
970
+ }
971
+ ],
972
+ "exports": [
973
+ {
974
+ "kind": "js",
975
+ "name": "AffixMixin",
976
+ "declaration": {
977
+ "name": "AffixMixin",
978
+ "module": "src/_common/affix-mixin.ts"
979
+ }
980
+ }
981
+ ]
982
+ },
927
983
  {
928
984
  "kind": "javascript-module",
929
985
  "path": "src/_common/base-file-component.ts",
@@ -1234,6 +1290,27 @@
1234
1290
  }
1235
1291
  ]
1236
1292
  },
1293
+ {
1294
+ "kind": "javascript-module",
1295
+ "path": "src/_common/field-styles.ts",
1296
+ "declarations": [
1297
+ {
1298
+ "kind": "variable",
1299
+ "name": "sharedFieldStyles",
1300
+ "default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
1301
+ }
1302
+ ],
1303
+ "exports": [
1304
+ {
1305
+ "kind": "js",
1306
+ "name": "sharedFieldStyles",
1307
+ "declaration": {
1308
+ "name": "sharedFieldStyles",
1309
+ "module": "src/_common/field-styles.ts"
1310
+ }
1311
+ }
1312
+ ]
1313
+ },
1237
1314
  {
1238
1315
  "kind": "javascript-module",
1239
1316
  "path": "src/_common/icons.ts",
@@ -1274,7 +1351,7 @@
1274
1351
  "name": "*",
1275
1352
  "declaration": {
1276
1353
  "name": "*",
1277
- "package": "./base-file-component"
1354
+ "package": "./affix-mixin"
1278
1355
  }
1279
1356
  },
1280
1357
  {
@@ -1282,165 +1359,30 @@
1282
1359
  "name": "*",
1283
1360
  "declaration": {
1284
1361
  "name": "*",
1285
- "package": "./icons"
1286
- }
1287
- }
1288
- ]
1289
- },
1290
- {
1291
- "kind": "javascript-module",
1292
- "path": "src/accordion/accordion.styles.ts",
1293
- "declarations": [
1294
- {
1295
- "kind": "function",
1296
- "name": "foundationAccordionStyles",
1297
- "return": {
1298
- "type": {
1299
- "text": "ElementStyles"
1300
- }
1301
- },
1302
- "parameters": [
1303
- {
1304
- "name": "context",
1305
- "type": {
1306
- "text": "ElementDefinitionContext"
1307
- }
1308
- },
1309
- {
1310
- "name": "definition",
1311
- "type": {
1312
- "text": "FoundationElementDefinition"
1313
- }
1314
- }
1315
- ]
1316
- }
1317
- ],
1318
- "exports": [
1319
- {
1320
- "kind": "js",
1321
- "name": "foundationAccordionStyles",
1322
- "declaration": {
1323
- "name": "foundationAccordionStyles",
1324
- "module": "src/accordion/accordion.styles.ts"
1325
- }
1326
- }
1327
- ]
1328
- },
1329
- {
1330
- "kind": "javascript-module",
1331
- "path": "src/accordion/accordion.template.ts",
1332
- "declarations": [
1333
- {
1334
- "kind": "function",
1335
- "name": "foundationAccordionTemplate",
1336
- "return": {
1337
- "type": {
1338
- "text": "ViewTemplate<Accordion>"
1339
- }
1340
- },
1341
- "parameters": [
1342
- {
1343
- "name": "context",
1344
- "type": {
1345
- "text": "ElementDefinitionContext"
1346
- }
1347
- },
1348
- {
1349
- "name": "definition",
1350
- "type": {
1351
- "text": "FoundationElementDefinition"
1352
- }
1353
- }
1354
- ]
1355
- }
1356
- ],
1357
- "exports": [
1358
- {
1359
- "kind": "js",
1360
- "name": "foundationAccordionTemplate",
1361
- "declaration": {
1362
- "name": "foundationAccordionTemplate",
1363
- "module": "src/accordion/accordion.template.ts"
1364
- }
1365
- }
1366
- ]
1367
- },
1368
- {
1369
- "kind": "javascript-module",
1370
- "path": "src/accordion/accordion.ts",
1371
- "declarations": [
1372
- {
1373
- "kind": "class",
1374
- "description": "",
1375
- "name": "Accordion",
1376
- "superclass": {
1377
- "name": "FASTAccordion",
1378
- "package": "@microsoft/fast-foundation"
1379
- },
1380
- "tagName": "%%prefix%%-accordion",
1381
- "customElement": true
1382
- },
1383
- {
1384
- "kind": "variable",
1385
- "name": "foundationAccordionShadowOptions",
1386
- "type": {
1387
- "text": "ShadowRootInit"
1388
- },
1389
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1390
- },
1391
- {
1392
- "kind": "variable",
1393
- "name": "defaultAccordionConfig",
1394
- "type": {
1395
- "text": "object"
1396
- },
1397
- "default": "{}"
1398
- },
1399
- {
1400
- "kind": "variable",
1401
- "name": "foundationAccordion",
1402
- "description": "The Foundation Accordion",
1403
- "privacy": "public"
1404
- }
1405
- ],
1406
- "exports": [
1407
- {
1408
- "kind": "js",
1409
- "name": "Accordion",
1410
- "declaration": {
1411
- "name": "Accordion",
1412
- "module": "src/accordion/accordion.ts"
1413
- }
1414
- },
1415
- {
1416
- "kind": "js",
1417
- "name": "foundationAccordionShadowOptions",
1418
- "declaration": {
1419
- "name": "foundationAccordionShadowOptions",
1420
- "module": "src/accordion/accordion.ts"
1362
+ "package": "./base-file-component"
1421
1363
  }
1422
1364
  },
1423
1365
  {
1424
1366
  "kind": "js",
1425
- "name": "defaultAccordionConfig",
1367
+ "name": "*",
1426
1368
  "declaration": {
1427
- "name": "defaultAccordionConfig",
1428
- "module": "src/accordion/accordion.ts"
1369
+ "name": "*",
1370
+ "package": "./field-styles"
1429
1371
  }
1430
1372
  },
1431
1373
  {
1432
1374
  "kind": "js",
1433
- "name": "foundationAccordion",
1375
+ "name": "*",
1434
1376
  "declaration": {
1435
- "name": "foundationAccordion",
1436
- "module": "src/accordion/accordion.ts"
1377
+ "name": "*",
1378
+ "package": "./icons"
1437
1379
  }
1438
1380
  }
1439
1381
  ]
1440
1382
  },
1441
1383
  {
1442
1384
  "kind": "javascript-module",
1443
- "path": "src/accordion/index.ts",
1385
+ "path": "src/_config/index.ts",
1444
1386
  "declarations": [],
1445
1387
  "exports": [
1446
1388
  {
@@ -1448,7 +1390,7 @@
1448
1390
  "name": "*",
1449
1391
  "declaration": {
1450
1392
  "name": "*",
1451
- "package": "./accordion.template"
1393
+ "package": "./styles"
1452
1394
  }
1453
1395
  },
1454
1396
  {
@@ -1456,7 +1398,7 @@
1456
1398
  "name": "*",
1457
1399
  "declaration": {
1458
1400
  "name": "*",
1459
- "package": "./accordion.styles"
1401
+ "package": "./tokens"
1460
1402
  }
1461
1403
  },
1462
1404
  {
@@ -1464,7 +1406,7 @@
1464
1406
  "name": "*",
1465
1407
  "declaration": {
1466
1408
  "name": "*",
1467
- "package": "./accordion"
1409
+ "package": "./values"
1468
1410
  }
1469
1411
  }
1470
1412
  ]
@@ -1863,37 +1805,6 @@
1863
1805
  }
1864
1806
  ]
1865
1807
  },
1866
- {
1867
- "kind": "javascript-module",
1868
- "path": "src/_config/index.ts",
1869
- "declarations": [],
1870
- "exports": [
1871
- {
1872
- "kind": "js",
1873
- "name": "*",
1874
- "declaration": {
1875
- "name": "*",
1876
- "package": "./styles"
1877
- }
1878
- },
1879
- {
1880
- "kind": "js",
1881
- "name": "*",
1882
- "declaration": {
1883
- "name": "*",
1884
- "package": "./tokens"
1885
- }
1886
- },
1887
- {
1888
- "kind": "js",
1889
- "name": "*",
1890
- "declaration": {
1891
- "name": "*",
1892
- "package": "./values"
1893
- }
1894
- }
1895
- ]
1896
- },
1897
1808
  {
1898
1809
  "kind": "javascript-module",
1899
1810
  "path": "src/actions-menu/actions-menu.styles.ts",
@@ -2455,11 +2366,11 @@
2455
2366
  },
2456
2367
  {
2457
2368
  "kind": "javascript-module",
2458
- "path": "src/ai-indicator/ai-indicator.styles.ts",
2369
+ "path": "src/accordion/accordion.styles.ts",
2459
2370
  "declarations": [
2460
2371
  {
2461
2372
  "kind": "function",
2462
- "name": "foundationAiIndicatorStyles",
2373
+ "name": "foundationAccordionStyles",
2463
2374
  "return": {
2464
2375
  "type": {
2465
2376
  "text": "ElementStyles"
@@ -2484,46 +2395,210 @@
2484
2395
  "exports": [
2485
2396
  {
2486
2397
  "kind": "js",
2487
- "name": "foundationAiIndicatorStyles",
2398
+ "name": "foundationAccordionStyles",
2488
2399
  "declaration": {
2489
- "name": "foundationAiIndicatorStyles",
2490
- "module": "src/ai-indicator/ai-indicator.styles.ts"
2400
+ "name": "foundationAccordionStyles",
2401
+ "module": "src/accordion/accordion.styles.ts"
2491
2402
  }
2492
2403
  }
2493
2404
  ]
2494
2405
  },
2495
2406
  {
2496
2407
  "kind": "javascript-module",
2497
- "path": "src/ai-indicator/ai-indicator.template.ts",
2408
+ "path": "src/accordion/accordion.template.ts",
2498
2409
  "declarations": [
2410
+ {
2411
+ "kind": "function",
2412
+ "name": "foundationAccordionTemplate",
2413
+ "return": {
2414
+ "type": {
2415
+ "text": "ViewTemplate<Accordion>"
2416
+ }
2417
+ },
2418
+ "parameters": [
2419
+ {
2420
+ "name": "context",
2421
+ "type": {
2422
+ "text": "ElementDefinitionContext"
2423
+ }
2424
+ },
2425
+ {
2426
+ "name": "definition",
2427
+ "type": {
2428
+ "text": "FoundationElementDefinition"
2429
+ }
2430
+ }
2431
+ ]
2432
+ }
2433
+ ],
2434
+ "exports": [
2435
+ {
2436
+ "kind": "js",
2437
+ "name": "foundationAccordionTemplate",
2438
+ "declaration": {
2439
+ "name": "foundationAccordionTemplate",
2440
+ "module": "src/accordion/accordion.template.ts"
2441
+ }
2442
+ }
2443
+ ]
2444
+ },
2445
+ {
2446
+ "kind": "javascript-module",
2447
+ "path": "src/accordion/accordion.ts",
2448
+ "declarations": [
2449
+ {
2450
+ "kind": "class",
2451
+ "description": "",
2452
+ "name": "Accordion",
2453
+ "superclass": {
2454
+ "name": "FASTAccordion",
2455
+ "package": "@microsoft/fast-foundation"
2456
+ },
2457
+ "tagName": "%%prefix%%-accordion",
2458
+ "customElement": true
2459
+ },
2499
2460
  {
2500
2461
  "kind": "variable",
2501
- "name": "foundationAiIndicatorTemplate",
2462
+ "name": "foundationAccordionShadowOptions",
2502
2463
  "type": {
2503
- "text": "ViewTemplate<AiIndicator>"
2464
+ "text": "ShadowRootInit"
2504
2465
  },
2505
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
2466
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
2467
+ },
2468
+ {
2469
+ "kind": "variable",
2470
+ "name": "defaultAccordionConfig",
2471
+ "type": {
2472
+ "text": "object"
2473
+ },
2474
+ "default": "{}"
2475
+ },
2476
+ {
2477
+ "kind": "variable",
2478
+ "name": "foundationAccordion",
2479
+ "description": "The Foundation Accordion",
2480
+ "privacy": "public"
2506
2481
  }
2507
2482
  ],
2508
2483
  "exports": [
2509
2484
  {
2510
2485
  "kind": "js",
2511
- "name": "foundationAiIndicatorTemplate",
2486
+ "name": "Accordion",
2512
2487
  "declaration": {
2513
- "name": "foundationAiIndicatorTemplate",
2514
- "module": "src/ai-indicator/ai-indicator.template.ts"
2488
+ "name": "Accordion",
2489
+ "module": "src/accordion/accordion.ts"
2490
+ }
2491
+ },
2492
+ {
2493
+ "kind": "js",
2494
+ "name": "foundationAccordionShadowOptions",
2495
+ "declaration": {
2496
+ "name": "foundationAccordionShadowOptions",
2497
+ "module": "src/accordion/accordion.ts"
2498
+ }
2499
+ },
2500
+ {
2501
+ "kind": "js",
2502
+ "name": "defaultAccordionConfig",
2503
+ "declaration": {
2504
+ "name": "defaultAccordionConfig",
2505
+ "module": "src/accordion/accordion.ts"
2506
+ }
2507
+ },
2508
+ {
2509
+ "kind": "js",
2510
+ "name": "foundationAccordion",
2511
+ "declaration": {
2512
+ "name": "foundationAccordion",
2513
+ "module": "src/accordion/accordion.ts"
2515
2514
  }
2516
2515
  }
2517
2516
  ]
2518
2517
  },
2519
2518
  {
2520
2519
  "kind": "javascript-module",
2521
- "path": "src/ai-indicator/ai-indicator.ts",
2520
+ "path": "src/accordion/index.ts",
2521
+ "declarations": [],
2522
+ "exports": [
2523
+ {
2524
+ "kind": "js",
2525
+ "name": "*",
2526
+ "declaration": {
2527
+ "name": "*",
2528
+ "package": "./accordion.template"
2529
+ }
2530
+ },
2531
+ {
2532
+ "kind": "js",
2533
+ "name": "*",
2534
+ "declaration": {
2535
+ "name": "*",
2536
+ "package": "./accordion.styles"
2537
+ }
2538
+ },
2539
+ {
2540
+ "kind": "js",
2541
+ "name": "*",
2542
+ "declaration": {
2543
+ "name": "*",
2544
+ "package": "./accordion"
2545
+ }
2546
+ }
2547
+ ]
2548
+ },
2549
+ {
2550
+ "kind": "javascript-module",
2551
+ "path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
2552
+ "declarations": [
2553
+ {
2554
+ "kind": "variable",
2555
+ "name": "foundationAiCriteriaSearchStyles",
2556
+ "default": "css`\n :host {\n display: block;\n width: 800px;\n }\n\n .ai-criteria-search {\n display: flex;\n flex-direction: column;\n gap: calc(${designUnit} * 2px);\n }\n\n .ai-criteria-search-row {\n display: flex;\n flex-direction: row;\n gap: calc(${designUnit} * 2px);\n align-items: center;\n }\n\n .criteria-input {\n height: calc(((var(--base-height-multiplier) + var(--density)) * var(--design-unit) - 4) * 1px);\n flex: 1;\n min-width: 0;\n }\n\n .mic-icon {\n color: var(--neutral-foreground-rest);\n fill: currentColor;\n }\n\n .mode-control {\n flex-shrink: 0;\n }\n`"
2557
+ }
2558
+ ],
2559
+ "exports": [
2560
+ {
2561
+ "kind": "js",
2562
+ "name": "foundationAiCriteriaSearchStyles",
2563
+ "declaration": {
2564
+ "name": "foundationAiCriteriaSearchStyles",
2565
+ "module": "src/ai-criteria-search/ai-criteria-search.styles.ts"
2566
+ }
2567
+ }
2568
+ ]
2569
+ },
2570
+ {
2571
+ "kind": "javascript-module",
2572
+ "path": "src/ai-criteria-search/ai-criteria-search.template.ts",
2573
+ "declarations": [
2574
+ {
2575
+ "kind": "variable",
2576
+ "name": "foundationAiCriteriaSearchTemplate",
2577
+ "type": {
2578
+ "text": "ViewTemplate<AiCriteriaSearch>"
2579
+ },
2580
+ "default": "html`\n ${(x) => aiCriteriaSearchTemplate(getPrefix(x))}\n`"
2581
+ }
2582
+ ],
2583
+ "exports": [
2584
+ {
2585
+ "kind": "js",
2586
+ "name": "foundationAiCriteriaSearchTemplate",
2587
+ "declaration": {
2588
+ "name": "foundationAiCriteriaSearchTemplate",
2589
+ "module": "src/ai-criteria-search/ai-criteria-search.template.ts"
2590
+ }
2591
+ }
2592
+ ]
2593
+ },
2594
+ {
2595
+ "kind": "javascript-module",
2596
+ "path": "src/ai-criteria-search/ai-criteria-search.ts",
2522
2597
  "declarations": [
2523
2598
  {
2524
2599
  "kind": "class",
2525
2600
  "description": "",
2526
- "name": "AiIndicator",
2601
+ "name": "AiCriteriaSearch",
2527
2602
  "members": [
2528
2603
  {
2529
2604
  "kind": "field",
@@ -2534,31 +2609,38 @@
2534
2609
  },
2535
2610
  {
2536
2611
  "kind": "field",
2537
- "name": "status",
2612
+ "name": "placeholder",
2538
2613
  "type": {
2539
- "text": "AIStatus | null"
2614
+ "text": "string"
2540
2615
  },
2541
- "default": "null"
2616
+ "default": "'Describe your search criteria in natural language...'"
2542
2617
  },
2543
2618
  {
2544
2619
  "kind": "field",
2545
- "name": "open",
2620
+ "name": "disabled",
2546
2621
  "type": {
2547
2622
  "text": "boolean"
2623
+ }
2624
+ },
2625
+ {
2626
+ "kind": "field",
2627
+ "name": "mode",
2628
+ "type": {
2629
+ "text": "'append' | 'replace'"
2548
2630
  },
2549
- "default": "false"
2631
+ "default": "'replace'"
2550
2632
  },
2551
2633
  {
2552
2634
  "kind": "field",
2553
- "name": "state",
2635
+ "name": "inputValue",
2554
2636
  "type": {
2555
- "text": "AIIndicatorState"
2637
+ "text": "string"
2556
2638
  },
2557
- "default": "'none'"
2639
+ "default": "''"
2558
2640
  },
2559
2641
  {
2560
2642
  "kind": "field",
2561
- "name": "isInstalling",
2643
+ "name": "isInterpreting",
2562
2644
  "type": {
2563
2645
  "text": "boolean"
2564
2646
  },
@@ -2566,133 +2648,91 @@
2566
2648
  },
2567
2649
  {
2568
2650
  "kind": "field",
2569
- "name": "pollTimer",
2651
+ "name": "lastValidCriteria",
2570
2652
  "type": {
2571
- "text": "ReturnType<typeof setInterval> | null"
2653
+ "text": "string | null"
2572
2654
  },
2573
- "privacy": "private",
2574
2655
  "default": "null"
2575
2656
  },
2576
2657
  {
2577
2658
  "kind": "field",
2578
- "name": "clickOutside",
2579
- "privacy": "private"
2580
- },
2581
- {
2582
- "kind": "field",
2583
- "name": "chromeStatusLabel",
2659
+ "name": "fieldMetadata",
2584
2660
  "type": {
2585
- "text": "string | null"
2661
+ "text": "MetadataDetail[] | string[]"
2586
2662
  },
2587
- "readonly": true
2663
+ "default": "[]"
2588
2664
  },
2589
2665
  {
2590
2666
  "kind": "field",
2591
- "name": "canInstall",
2667
+ "name": "isRecording",
2592
2668
  "type": {
2593
2669
  "text": "boolean"
2594
2670
  },
2595
- "readonly": true
2671
+ "default": "false"
2596
2672
  },
2597
2673
  {
2598
2674
  "kind": "field",
2599
- "name": "isDownloading",
2675
+ "name": "textAreaRef",
2600
2676
  "type": {
2601
- "text": "boolean"
2677
+ "text": "HTMLTextAreaElement"
2602
2678
  },
2603
- "readonly": true
2679
+ "privacy": "public"
2604
2680
  },
2605
2681
  {
2606
- "kind": "method",
2607
- "name": "openChanged",
2608
- "return": {
2609
- "type": {
2610
- "text": "void"
2611
- }
2612
- }
2682
+ "kind": "field",
2683
+ "name": "stopRecording",
2684
+ "type": {
2685
+ "text": "(() => void) | null"
2686
+ },
2687
+ "privacy": "private",
2688
+ "default": "null"
2613
2689
  },
2614
2690
  {
2615
- "kind": "method",
2616
- "name": "handleClickOutside",
2691
+ "kind": "field",
2692
+ "name": "speechApplyDebounceTimer",
2693
+ "type": {
2694
+ "text": "ReturnType<typeof setTimeout> | null"
2695
+ },
2617
2696
  "privacy": "private",
2618
- "parameters": [
2619
- {
2620
- "name": "event",
2621
- "type": {
2622
- "text": "MouseEvent"
2623
- }
2624
- }
2625
- ]
2697
+ "default": "null"
2626
2698
  },
2627
2699
  {
2628
- "kind": "method",
2629
- "name": "toggleDropdown"
2700
+ "kind": "field",
2701
+ "name": "baseInputForAppend",
2702
+ "type": {
2703
+ "text": "string"
2704
+ },
2705
+ "privacy": "private",
2706
+ "default": "''"
2630
2707
  },
2631
2708
  {
2632
- "kind": "method",
2633
- "name": "refreshStatus",
2634
- "return": {
2635
- "type": {
2636
- "text": "Promise<void>"
2637
- }
2638
- }
2709
+ "kind": "field",
2710
+ "name": "speechAvailable",
2711
+ "type": {
2712
+ "text": "boolean"
2713
+ },
2714
+ "readonly": true
2639
2715
  },
2640
2716
  {
2641
2717
  "kind": "method",
2642
- "name": "deriveState",
2643
- "privacy": "private",
2644
- "return": {
2645
- "type": {
2646
- "text": "AIIndicatorState"
2647
- }
2648
- },
2649
- "parameters": [
2650
- {
2651
- "name": "s",
2652
- "type": {
2653
- "text": "AIStatus | null"
2654
- }
2655
- }
2656
- ]
2718
+ "name": "handleSubmit"
2657
2719
  },
2658
2720
  {
2659
2721
  "kind": "method",
2660
- "name": "maybeStartPolling",
2661
- "privacy": "private",
2662
- "return": {
2663
- "type": {
2664
- "text": "void"
2665
- }
2666
- }
2722
+ "name": "handleBlur"
2667
2723
  },
2668
2724
  {
2669
2725
  "kind": "method",
2670
- "name": "startPolling",
2671
- "privacy": "private",
2672
- "return": {
2673
- "type": {
2674
- "text": "void"
2675
- }
2676
- }
2726
+ "name": "clear"
2677
2727
  },
2678
2728
  {
2679
2729
  "kind": "method",
2680
- "name": "stopPolling",
2681
- "privacy": "private",
2682
- "return": {
2683
- "type": {
2684
- "text": "void"
2685
- }
2686
- }
2730
+ "name": "toggleSpeechInput"
2687
2731
  },
2688
2732
  {
2689
2733
  "kind": "method",
2690
- "name": "onInstall",
2691
- "return": {
2692
- "type": {
2693
- "text": "Promise<void>"
2694
- }
2695
- }
2734
+ "name": "clearSpeechApplyDebounce",
2735
+ "privacy": "private"
2696
2736
  },
2697
2737
  {
2698
2738
  "kind": "field",
@@ -2806,145 +2846,318 @@
2806
2846
  }
2807
2847
  }
2808
2848
  ],
2849
+ "attributes": [
2850
+ {
2851
+ "name": "placeholder",
2852
+ "type": {
2853
+ "text": "string"
2854
+ },
2855
+ "default": "'Describe your search criteria in natural language...'",
2856
+ "fieldName": "placeholder"
2857
+ },
2858
+ {
2859
+ "type": {
2860
+ "text": "boolean"
2861
+ },
2862
+ "fieldName": "disabled"
2863
+ },
2864
+ {
2865
+ "name": "mode",
2866
+ "type": {
2867
+ "text": "'append' | 'replace'"
2868
+ },
2869
+ "default": "'replace'",
2870
+ "fieldName": "mode"
2871
+ }
2872
+ ],
2809
2873
  "superclass": {
2810
2874
  "name": "FoundationElement",
2811
2875
  "package": "@microsoft/fast-foundation"
2812
2876
  },
2813
- "tagName": "%%prefix%%-ai-indicator",
2877
+ "tagName": "%%prefix%%-ai-criteria-search",
2814
2878
  "customElement": true
2815
2879
  },
2816
2880
  {
2817
2881
  "kind": "variable",
2818
- "name": "foundationAiIndicator"
2882
+ "name": "foundationAiCriteriaSearchShadowOptions",
2883
+ "type": {
2884
+ "text": "ShadowRootInit"
2885
+ },
2886
+ "default": "undefined"
2887
+ },
2888
+ {
2889
+ "kind": "variable",
2890
+ "name": "defaultAiCriteriaSearchConfig",
2891
+ "type": {
2892
+ "text": "object"
2893
+ },
2894
+ "default": "{}"
2895
+ },
2896
+ {
2897
+ "kind": "variable",
2898
+ "name": "foundationAiCriteriaSearch"
2819
2899
  }
2820
2900
  ],
2821
2901
  "exports": [
2822
2902
  {
2823
2903
  "kind": "js",
2824
- "name": "AiIndicator",
2904
+ "name": "AiCriteriaSearch",
2825
2905
  "declaration": {
2826
- "name": "AiIndicator",
2827
- "module": "src/ai-indicator/ai-indicator.ts"
2906
+ "name": "AiCriteriaSearch",
2907
+ "module": "src/ai-criteria-search/ai-criteria-search.ts"
2828
2908
  }
2829
2909
  },
2830
2910
  {
2831
2911
  "kind": "js",
2832
- "name": "foundationAiIndicator",
2912
+ "name": "foundationAiCriteriaSearchShadowOptions",
2833
2913
  "declaration": {
2834
- "name": "foundationAiIndicator",
2835
- "module": "src/ai-indicator/ai-indicator.ts"
2914
+ "name": "foundationAiCriteriaSearchShadowOptions",
2915
+ "module": "src/ai-criteria-search/ai-criteria-search.ts"
2916
+ }
2917
+ },
2918
+ {
2919
+ "kind": "js",
2920
+ "name": "defaultAiCriteriaSearchConfig",
2921
+ "declaration": {
2922
+ "name": "defaultAiCriteriaSearchConfig",
2923
+ "module": "src/ai-criteria-search/ai-criteria-search.ts"
2924
+ }
2925
+ },
2926
+ {
2927
+ "kind": "js",
2928
+ "name": "foundationAiCriteriaSearch",
2929
+ "declaration": {
2930
+ "name": "foundationAiCriteriaSearch",
2931
+ "module": "src/ai-criteria-search/ai-criteria-search.ts"
2836
2932
  }
2837
2933
  }
2838
2934
  ]
2839
2935
  },
2840
2936
  {
2841
2937
  "kind": "javascript-module",
2842
- "path": "src/ai-indicator/index.ts",
2938
+ "path": "src/ai-criteria-search/index.ts",
2843
2939
  "declarations": [],
2844
2940
  "exports": [
2845
2941
  {
2846
2942
  "kind": "js",
2847
- "name": "AiIndicator",
2943
+ "name": "AiCriteriaSearch",
2848
2944
  "declaration": {
2849
- "name": "AiIndicator",
2850
- "module": "./ai-indicator"
2945
+ "name": "AiCriteriaSearch",
2946
+ "module": "./ai-criteria-search"
2851
2947
  }
2852
2948
  },
2853
2949
  {
2854
2950
  "kind": "js",
2855
- "name": "foundationAiIndicator",
2951
+ "name": "defaultAiCriteriaSearchConfig",
2856
2952
  "declaration": {
2857
- "name": "foundationAiIndicator",
2858
- "module": "./ai-indicator"
2953
+ "name": "defaultAiCriteriaSearchConfig",
2954
+ "module": "./ai-criteria-search"
2859
2955
  }
2860
2956
  },
2861
2957
  {
2862
2958
  "kind": "js",
2863
- "name": "type",
2959
+ "name": "foundationAiCriteriaSearch",
2864
2960
  "declaration": {
2865
- "name": "type",
2866
- "module": "./ai-indicator"
2961
+ "name": "foundationAiCriteriaSearch",
2962
+ "module": "./ai-criteria-search"
2867
2963
  }
2868
2964
  },
2869
2965
  {
2870
2966
  "kind": "js",
2871
- "name": "AIIndicatorState",
2967
+ "name": "foundationAiCriteriaSearchShadowOptions",
2872
2968
  "declaration": {
2873
- "name": "AIIndicatorState",
2874
- "module": "./ai-indicator"
2969
+ "name": "foundationAiCriteriaSearchShadowOptions",
2970
+ "module": "./ai-criteria-search"
2875
2971
  }
2876
2972
  },
2877
2973
  {
2878
2974
  "kind": "js",
2879
- "name": "foundationAiIndicatorTemplate",
2975
+ "name": "foundationAiCriteriaSearchStyles",
2880
2976
  "declaration": {
2881
- "name": "foundationAiIndicatorTemplate",
2882
- "module": "./ai-indicator.template"
2977
+ "name": "foundationAiCriteriaSearchStyles",
2978
+ "module": "./ai-criteria-search.styles"
2883
2979
  }
2884
2980
  },
2885
2981
  {
2886
2982
  "kind": "js",
2887
- "name": "foundationAiIndicatorStyles",
2983
+ "name": "foundationAiCriteriaSearchTemplate",
2888
2984
  "declaration": {
2889
- "name": "foundationAiIndicatorStyles",
2890
- "module": "./ai-indicator.styles"
2985
+ "name": "foundationAiCriteriaSearchTemplate",
2986
+ "module": "./ai-criteria-search.template"
2987
+ }
2988
+ },
2989
+ {
2990
+ "kind": "js",
2991
+ "name": "*",
2992
+ "declaration": {
2993
+ "name": "*",
2994
+ "package": "./validation/criteria-ir"
2995
+ }
2996
+ },
2997
+ {
2998
+ "kind": "js",
2999
+ "name": "*",
3000
+ "declaration": {
3001
+ "name": "*",
3002
+ "package": "./validation/operator-map"
3003
+ }
3004
+ },
3005
+ {
3006
+ "kind": "js",
3007
+ "name": "*",
3008
+ "declaration": {
3009
+ "name": "*",
3010
+ "package": "./validation/schema-validator"
2891
3011
  }
2892
3012
  }
2893
3013
  ]
2894
3014
  },
2895
3015
  {
2896
3016
  "kind": "javascript-module",
2897
- "path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
3017
+ "path": "src/ai-criteria-search/validation-error-notification.ts",
2898
3018
  "declarations": [
2899
3019
  {
2900
- "kind": "variable",
2901
- "name": "foundationAiCriteriaSearchStyles",
2902
- "default": "css`\n :host {\n display: block;\n width: 800px;\n }\n\n .ai-criteria-search {\n display: flex;\n flex-direction: column;\n gap: calc(${designUnit} * 2px);\n }\n\n .ai-criteria-search-row {\n display: flex;\n flex-direction: row;\n gap: calc(${designUnit} * 2px);\n align-items: center;\n }\n\n .criteria-input {\n height: calc(((var(--base-height-multiplier) + var(--density)) * var(--design-unit) - 4) * 1px);\n flex: 1;\n min-width: 0;\n }\n\n .mic-icon {\n color: var(--neutral-foreground-rest);\n fill: currentColor;\n }\n\n .mode-control {\n flex-shrink: 0;\n }\n`"
3020
+ "kind": "function",
3021
+ "name": "formatValidationErrors",
3022
+ "return": {
3023
+ "type": {
3024
+ "text": "string"
3025
+ }
3026
+ },
3027
+ "parameters": [
3028
+ {
3029
+ "name": "errors",
3030
+ "type": {
3031
+ "text": "ValidationError[]"
3032
+ }
3033
+ }
3034
+ ],
3035
+ "description": "Formats validation errors into a user-friendly message."
3036
+ },
3037
+ {
3038
+ "kind": "function",
3039
+ "name": "showCriteriaError",
3040
+ "return": {
3041
+ "type": {
3042
+ "text": "void"
3043
+ }
3044
+ },
3045
+ "parameters": [
3046
+ {
3047
+ "name": "title",
3048
+ "type": {
3049
+ "text": "string"
3050
+ },
3051
+ "description": "Notification title (e.g. \"Criteria validation error\")"
3052
+ },
3053
+ {
3054
+ "name": "body",
3055
+ "type": {
3056
+ "text": "string"
3057
+ },
3058
+ "description": "Error message to display"
3059
+ },
3060
+ {
3061
+ "name": "tagName",
3062
+ "type": {
3063
+ "text": "string"
3064
+ },
3065
+ "description": "Design system prefix (e.g. \"rapid\", \"foundation\")"
3066
+ }
3067
+ ],
3068
+ "description": "Shows a criteria error as a toast notification."
2903
3069
  }
2904
3070
  ],
2905
3071
  "exports": [
2906
3072
  {
2907
3073
  "kind": "js",
2908
- "name": "foundationAiCriteriaSearchStyles",
3074
+ "name": "formatValidationErrors",
2909
3075
  "declaration": {
2910
- "name": "foundationAiCriteriaSearchStyles",
2911
- "module": "src/ai-criteria-search/ai-criteria-search.styles.ts"
3076
+ "name": "formatValidationErrors",
3077
+ "module": "src/ai-criteria-search/validation-error-notification.ts"
3078
+ }
3079
+ },
3080
+ {
3081
+ "kind": "js",
3082
+ "name": "showCriteriaError",
3083
+ "declaration": {
3084
+ "name": "showCriteriaError",
3085
+ "module": "src/ai-criteria-search/validation-error-notification.ts"
2912
3086
  }
2913
3087
  }
2914
3088
  ]
2915
3089
  },
2916
3090
  {
2917
3091
  "kind": "javascript-module",
2918
- "path": "src/ai-criteria-search/ai-criteria-search.template.ts",
3092
+ "path": "src/ai-indicator/ai-indicator.styles.ts",
3093
+ "declarations": [
3094
+ {
3095
+ "kind": "function",
3096
+ "name": "foundationAiIndicatorStyles",
3097
+ "return": {
3098
+ "type": {
3099
+ "text": "ElementStyles"
3100
+ }
3101
+ },
3102
+ "parameters": [
3103
+ {
3104
+ "name": "context",
3105
+ "type": {
3106
+ "text": "ElementDefinitionContext"
3107
+ }
3108
+ },
3109
+ {
3110
+ "name": "definition",
3111
+ "type": {
3112
+ "text": "FoundationElementDefinition"
3113
+ }
3114
+ }
3115
+ ]
3116
+ }
3117
+ ],
3118
+ "exports": [
3119
+ {
3120
+ "kind": "js",
3121
+ "name": "foundationAiIndicatorStyles",
3122
+ "declaration": {
3123
+ "name": "foundationAiIndicatorStyles",
3124
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
3125
+ }
3126
+ }
3127
+ ]
3128
+ },
3129
+ {
3130
+ "kind": "javascript-module",
3131
+ "path": "src/ai-indicator/ai-indicator.template.ts",
2919
3132
  "declarations": [
2920
3133
  {
2921
3134
  "kind": "variable",
2922
- "name": "foundationAiCriteriaSearchTemplate",
3135
+ "name": "foundationAiIndicatorTemplate",
2923
3136
  "type": {
2924
- "text": "ViewTemplate<AiCriteriaSearch>"
3137
+ "text": "ViewTemplate<AiIndicator>"
2925
3138
  },
2926
- "default": "html`\n ${(x) => aiCriteriaSearchTemplate(getPrefix(x))}\n`"
3139
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
2927
3140
  }
2928
3141
  ],
2929
3142
  "exports": [
2930
3143
  {
2931
3144
  "kind": "js",
2932
- "name": "foundationAiCriteriaSearchTemplate",
3145
+ "name": "foundationAiIndicatorTemplate",
2933
3146
  "declaration": {
2934
- "name": "foundationAiCriteriaSearchTemplate",
2935
- "module": "src/ai-criteria-search/ai-criteria-search.template.ts"
3147
+ "name": "foundationAiIndicatorTemplate",
3148
+ "module": "src/ai-indicator/ai-indicator.template.ts"
2936
3149
  }
2937
3150
  }
2938
3151
  ]
2939
3152
  },
2940
3153
  {
2941
3154
  "kind": "javascript-module",
2942
- "path": "src/ai-criteria-search/ai-criteria-search.ts",
3155
+ "path": "src/ai-indicator/ai-indicator.ts",
2943
3156
  "declarations": [
2944
3157
  {
2945
3158
  "kind": "class",
2946
3159
  "description": "",
2947
- "name": "AiCriteriaSearch",
3160
+ "name": "AiIndicator",
2948
3161
  "members": [
2949
3162
  {
2950
3163
  "kind": "field",
@@ -2955,38 +3168,31 @@
2955
3168
  },
2956
3169
  {
2957
3170
  "kind": "field",
2958
- "name": "placeholder",
3171
+ "name": "status",
2959
3172
  "type": {
2960
- "text": "string"
3173
+ "text": "AIStatus | null"
2961
3174
  },
2962
- "default": "'Describe your search criteria in natural language...'"
3175
+ "default": "null"
2963
3176
  },
2964
3177
  {
2965
3178
  "kind": "field",
2966
- "name": "disabled",
3179
+ "name": "open",
2967
3180
  "type": {
2968
3181
  "text": "boolean"
2969
- }
2970
- },
2971
- {
2972
- "kind": "field",
2973
- "name": "mode",
2974
- "type": {
2975
- "text": "'append' | 'replace'"
2976
3182
  },
2977
- "default": "'replace'"
3183
+ "default": "false"
2978
3184
  },
2979
3185
  {
2980
3186
  "kind": "field",
2981
- "name": "inputValue",
3187
+ "name": "state",
2982
3188
  "type": {
2983
- "text": "string"
3189
+ "text": "AIIndicatorState"
2984
3190
  },
2985
- "default": "''"
3191
+ "default": "'none'"
2986
3192
  },
2987
3193
  {
2988
3194
  "kind": "field",
2989
- "name": "isInterpreting",
3195
+ "name": "isInstalling",
2990
3196
  "type": {
2991
3197
  "text": "boolean"
2992
3198
  },
@@ -2994,91 +3200,133 @@
2994
3200
  },
2995
3201
  {
2996
3202
  "kind": "field",
2997
- "name": "lastValidCriteria",
3203
+ "name": "pollTimer",
2998
3204
  "type": {
2999
- "text": "string | null"
3205
+ "text": "ReturnType<typeof setInterval> | null"
3000
3206
  },
3207
+ "privacy": "private",
3001
3208
  "default": "null"
3002
3209
  },
3003
3210
  {
3004
3211
  "kind": "field",
3005
- "name": "fieldMetadata",
3006
- "type": {
3007
- "text": "MetadataDetail[] | string[]"
3008
- },
3009
- "default": "[]"
3212
+ "name": "clickOutside",
3213
+ "privacy": "private"
3010
3214
  },
3011
3215
  {
3012
3216
  "kind": "field",
3013
- "name": "isRecording",
3217
+ "name": "chromeStatusLabel",
3014
3218
  "type": {
3015
- "text": "boolean"
3219
+ "text": "string | null"
3016
3220
  },
3017
- "default": "false"
3221
+ "readonly": true
3018
3222
  },
3019
3223
  {
3020
3224
  "kind": "field",
3021
- "name": "textAreaRef",
3225
+ "name": "canInstall",
3022
3226
  "type": {
3023
- "text": "HTMLTextAreaElement"
3227
+ "text": "boolean"
3024
3228
  },
3025
- "privacy": "public"
3229
+ "readonly": true
3026
3230
  },
3027
3231
  {
3028
3232
  "kind": "field",
3029
- "name": "stopRecording",
3233
+ "name": "isDownloading",
3030
3234
  "type": {
3031
- "text": "(() => void) | null"
3235
+ "text": "boolean"
3032
3236
  },
3033
- "privacy": "private",
3034
- "default": "null"
3237
+ "readonly": true
3035
3238
  },
3036
3239
  {
3037
- "kind": "field",
3038
- "name": "speechApplyDebounceTimer",
3039
- "type": {
3040
- "text": "ReturnType<typeof setTimeout> | null"
3041
- },
3042
- "privacy": "private",
3043
- "default": "null"
3240
+ "kind": "method",
3241
+ "name": "openChanged",
3242
+ "return": {
3243
+ "type": {
3244
+ "text": "void"
3245
+ }
3246
+ }
3044
3247
  },
3045
3248
  {
3046
- "kind": "field",
3047
- "name": "baseInputForAppend",
3048
- "type": {
3049
- "text": "string"
3050
- },
3249
+ "kind": "method",
3250
+ "name": "handleClickOutside",
3051
3251
  "privacy": "private",
3052
- "default": "''"
3252
+ "parameters": [
3253
+ {
3254
+ "name": "event",
3255
+ "type": {
3256
+ "text": "MouseEvent"
3257
+ }
3258
+ }
3259
+ ]
3053
3260
  },
3054
3261
  {
3055
- "kind": "field",
3056
- "name": "speechAvailable",
3057
- "type": {
3058
- "text": "boolean"
3059
- },
3060
- "readonly": true
3262
+ "kind": "method",
3263
+ "name": "toggleDropdown"
3061
3264
  },
3062
3265
  {
3063
3266
  "kind": "method",
3064
- "name": "handleSubmit"
3267
+ "name": "refreshStatus",
3268
+ "return": {
3269
+ "type": {
3270
+ "text": "Promise<void>"
3271
+ }
3272
+ }
3065
3273
  },
3066
3274
  {
3067
3275
  "kind": "method",
3068
- "name": "handleBlur"
3276
+ "name": "deriveState",
3277
+ "privacy": "private",
3278
+ "return": {
3279
+ "type": {
3280
+ "text": "AIIndicatorState"
3281
+ }
3282
+ },
3283
+ "parameters": [
3284
+ {
3285
+ "name": "s",
3286
+ "type": {
3287
+ "text": "AIStatus | null"
3288
+ }
3289
+ }
3290
+ ]
3069
3291
  },
3070
3292
  {
3071
3293
  "kind": "method",
3072
- "name": "clear"
3294
+ "name": "maybeStartPolling",
3295
+ "privacy": "private",
3296
+ "return": {
3297
+ "type": {
3298
+ "text": "void"
3299
+ }
3300
+ }
3073
3301
  },
3074
3302
  {
3075
3303
  "kind": "method",
3076
- "name": "toggleSpeechInput"
3304
+ "name": "startPolling",
3305
+ "privacy": "private",
3306
+ "return": {
3307
+ "type": {
3308
+ "text": "void"
3309
+ }
3310
+ }
3077
3311
  },
3078
3312
  {
3079
3313
  "kind": "method",
3080
- "name": "clearSpeechApplyDebounce",
3081
- "privacy": "private"
3314
+ "name": "stopPolling",
3315
+ "privacy": "private",
3316
+ "return": {
3317
+ "type": {
3318
+ "text": "void"
3319
+ }
3320
+ }
3321
+ },
3322
+ {
3323
+ "kind": "method",
3324
+ "name": "onInstall",
3325
+ "return": {
3326
+ "type": {
3327
+ "text": "Promise<void>"
3328
+ }
3329
+ }
3082
3330
  },
3083
3331
  {
3084
3332
  "kind": "field",
@@ -3192,243 +3440,88 @@
3192
3440
  }
3193
3441
  }
3194
3442
  ],
3195
- "attributes": [
3196
- {
3197
- "name": "placeholder",
3198
- "type": {
3199
- "text": "string"
3200
- },
3201
- "default": "'Describe your search criteria in natural language...'",
3202
- "fieldName": "placeholder"
3203
- },
3204
- {
3205
- "type": {
3206
- "text": "boolean"
3207
- },
3208
- "fieldName": "disabled"
3209
- },
3210
- {
3211
- "name": "mode",
3212
- "type": {
3213
- "text": "'append' | 'replace'"
3214
- },
3215
- "default": "'replace'",
3216
- "fieldName": "mode"
3217
- }
3218
- ],
3219
3443
  "superclass": {
3220
3444
  "name": "FoundationElement",
3221
3445
  "package": "@microsoft/fast-foundation"
3222
3446
  },
3223
- "tagName": "%%prefix%%-ai-criteria-search",
3447
+ "tagName": "%%prefix%%-ai-indicator",
3224
3448
  "customElement": true
3225
3449
  },
3226
3450
  {
3227
3451
  "kind": "variable",
3228
- "name": "foundationAiCriteriaSearchShadowOptions",
3229
- "type": {
3230
- "text": "ShadowRootInit"
3231
- },
3232
- "default": "undefined"
3233
- },
3234
- {
3235
- "kind": "variable",
3236
- "name": "defaultAiCriteriaSearchConfig",
3237
- "type": {
3238
- "text": "object"
3239
- },
3240
- "default": "{}"
3241
- },
3242
- {
3243
- "kind": "variable",
3244
- "name": "foundationAiCriteriaSearch"
3452
+ "name": "foundationAiIndicator"
3245
3453
  }
3246
3454
  ],
3247
3455
  "exports": [
3248
3456
  {
3249
3457
  "kind": "js",
3250
- "name": "AiCriteriaSearch",
3251
- "declaration": {
3252
- "name": "AiCriteriaSearch",
3253
- "module": "src/ai-criteria-search/ai-criteria-search.ts"
3254
- }
3255
- },
3256
- {
3257
- "kind": "js",
3258
- "name": "foundationAiCriteriaSearchShadowOptions",
3259
- "declaration": {
3260
- "name": "foundationAiCriteriaSearchShadowOptions",
3261
- "module": "src/ai-criteria-search/ai-criteria-search.ts"
3262
- }
3263
- },
3264
- {
3265
- "kind": "js",
3266
- "name": "defaultAiCriteriaSearchConfig",
3458
+ "name": "AiIndicator",
3267
3459
  "declaration": {
3268
- "name": "defaultAiCriteriaSearchConfig",
3269
- "module": "src/ai-criteria-search/ai-criteria-search.ts"
3460
+ "name": "AiIndicator",
3461
+ "module": "src/ai-indicator/ai-indicator.ts"
3270
3462
  }
3271
3463
  },
3272
3464
  {
3273
3465
  "kind": "js",
3274
- "name": "foundationAiCriteriaSearch",
3466
+ "name": "foundationAiIndicator",
3275
3467
  "declaration": {
3276
- "name": "foundationAiCriteriaSearch",
3277
- "module": "src/ai-criteria-search/ai-criteria-search.ts"
3468
+ "name": "foundationAiIndicator",
3469
+ "module": "src/ai-indicator/ai-indicator.ts"
3278
3470
  }
3279
3471
  }
3280
3472
  ]
3281
3473
  },
3282
3474
  {
3283
3475
  "kind": "javascript-module",
3284
- "path": "src/ai-criteria-search/index.ts",
3476
+ "path": "src/ai-indicator/index.ts",
3285
3477
  "declarations": [],
3286
3478
  "exports": [
3287
3479
  {
3288
3480
  "kind": "js",
3289
- "name": "AiCriteriaSearch",
3290
- "declaration": {
3291
- "name": "AiCriteriaSearch",
3292
- "module": "./ai-criteria-search"
3293
- }
3294
- },
3295
- {
3296
- "kind": "js",
3297
- "name": "defaultAiCriteriaSearchConfig",
3298
- "declaration": {
3299
- "name": "defaultAiCriteriaSearchConfig",
3300
- "module": "./ai-criteria-search"
3301
- }
3302
- },
3303
- {
3304
- "kind": "js",
3305
- "name": "foundationAiCriteriaSearch",
3306
- "declaration": {
3307
- "name": "foundationAiCriteriaSearch",
3308
- "module": "./ai-criteria-search"
3309
- }
3310
- },
3311
- {
3312
- "kind": "js",
3313
- "name": "foundationAiCriteriaSearchShadowOptions",
3314
- "declaration": {
3315
- "name": "foundationAiCriteriaSearchShadowOptions",
3316
- "module": "./ai-criteria-search"
3317
- }
3318
- },
3319
- {
3320
- "kind": "js",
3321
- "name": "foundationAiCriteriaSearchStyles",
3481
+ "name": "AiIndicator",
3322
3482
  "declaration": {
3323
- "name": "foundationAiCriteriaSearchStyles",
3324
- "module": "./ai-criteria-search.styles"
3483
+ "name": "AiIndicator",
3484
+ "module": "./ai-indicator"
3325
3485
  }
3326
3486
  },
3327
3487
  {
3328
3488
  "kind": "js",
3329
- "name": "foundationAiCriteriaSearchTemplate",
3489
+ "name": "foundationAiIndicator",
3330
3490
  "declaration": {
3331
- "name": "foundationAiCriteriaSearchTemplate",
3332
- "module": "./ai-criteria-search.template"
3491
+ "name": "foundationAiIndicator",
3492
+ "module": "./ai-indicator"
3333
3493
  }
3334
3494
  },
3335
3495
  {
3336
3496
  "kind": "js",
3337
- "name": "*",
3497
+ "name": "type",
3338
3498
  "declaration": {
3339
- "name": "*",
3340
- "package": "./validation/criteria-ir"
3499
+ "name": "type",
3500
+ "module": "./ai-indicator"
3341
3501
  }
3342
3502
  },
3343
3503
  {
3344
3504
  "kind": "js",
3345
- "name": "*",
3505
+ "name": "AIIndicatorState",
3346
3506
  "declaration": {
3347
- "name": "*",
3348
- "package": "./validation/operator-map"
3507
+ "name": "AIIndicatorState",
3508
+ "module": "./ai-indicator"
3349
3509
  }
3350
3510
  },
3351
3511
  {
3352
3512
  "kind": "js",
3353
- "name": "*",
3354
- "declaration": {
3355
- "name": "*",
3356
- "package": "./validation/schema-validator"
3357
- }
3358
- }
3359
- ]
3360
- },
3361
- {
3362
- "kind": "javascript-module",
3363
- "path": "src/ai-criteria-search/validation-error-notification.ts",
3364
- "declarations": [
3365
- {
3366
- "kind": "function",
3367
- "name": "formatValidationErrors",
3368
- "return": {
3369
- "type": {
3370
- "text": "string"
3371
- }
3372
- },
3373
- "parameters": [
3374
- {
3375
- "name": "errors",
3376
- "type": {
3377
- "text": "ValidationError[]"
3378
- }
3379
- }
3380
- ],
3381
- "description": "Formats validation errors into a user-friendly message."
3382
- },
3383
- {
3384
- "kind": "function",
3385
- "name": "showCriteriaError",
3386
- "return": {
3387
- "type": {
3388
- "text": "void"
3389
- }
3390
- },
3391
- "parameters": [
3392
- {
3393
- "name": "title",
3394
- "type": {
3395
- "text": "string"
3396
- },
3397
- "description": "Notification title (e.g. \"Criteria validation error\")"
3398
- },
3399
- {
3400
- "name": "body",
3401
- "type": {
3402
- "text": "string"
3403
- },
3404
- "description": "Error message to display"
3405
- },
3406
- {
3407
- "name": "tagName",
3408
- "type": {
3409
- "text": "string"
3410
- },
3411
- "description": "Design system prefix (e.g. \"rapid\", \"foundation\")"
3412
- }
3413
- ],
3414
- "description": "Shows a criteria error as a toast notification."
3415
- }
3416
- ],
3417
- "exports": [
3418
- {
3419
- "kind": "js",
3420
- "name": "formatValidationErrors",
3513
+ "name": "foundationAiIndicatorTemplate",
3421
3514
  "declaration": {
3422
- "name": "formatValidationErrors",
3423
- "module": "src/ai-criteria-search/validation-error-notification.ts"
3515
+ "name": "foundationAiIndicatorTemplate",
3516
+ "module": "./ai-indicator.template"
3424
3517
  }
3425
3518
  },
3426
3519
  {
3427
3520
  "kind": "js",
3428
- "name": "showCriteriaError",
3521
+ "name": "foundationAiIndicatorStyles",
3429
3522
  "declaration": {
3430
- "name": "showCriteriaError",
3431
- "module": "src/ai-criteria-search/validation-error-notification.ts"
3523
+ "name": "foundationAiIndicatorStyles",
3524
+ "module": "./ai-indicator.styles"
3432
3525
  }
3433
3526
  }
3434
3527
  ]
@@ -31628,6 +31721,43 @@
31628
31721
  }
31629
31722
  }
31630
31723
  },
31724
+ {
31725
+ "kind": "field",
31726
+ "name": "prefix",
31727
+ "type": {
31728
+ "text": "string"
31729
+ },
31730
+ "description": "Optional non-editable label shown on the left inside the field, before the input.",
31731
+ "inheritedFrom": {
31732
+ "name": "AffixMixin",
31733
+ "module": "src/_common/affix-mixin.ts"
31734
+ }
31735
+ },
31736
+ {
31737
+ "kind": "field",
31738
+ "name": "suffix",
31739
+ "type": {
31740
+ "text": "string"
31741
+ },
31742
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
31743
+ "inheritedFrom": {
31744
+ "name": "AffixMixin",
31745
+ "module": "src/_common/affix-mixin.ts"
31746
+ }
31747
+ },
31748
+ {
31749
+ "kind": "field",
31750
+ "name": "hideAffixFromScreenReader",
31751
+ "type": {
31752
+ "text": "boolean"
31753
+ },
31754
+ "default": "false",
31755
+ "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
31756
+ "inheritedFrom": {
31757
+ "name": "AffixMixin",
31758
+ "module": "src/_common/affix-mixin.ts"
31759
+ }
31760
+ },
31631
31761
  {
31632
31762
  "kind": "field",
31633
31763
  "name": "readOnly",
@@ -32044,6 +32174,12 @@
32044
32174
  }
32045
32175
  }
32046
32176
  ],
32177
+ "mixins": [
32178
+ {
32179
+ "name": "AffixMixin",
32180
+ "module": "/src/_common"
32181
+ }
32182
+ ],
32047
32183
  "superclass": {
32048
32184
  "name": "FASTNumberField",
32049
32185
  "package": "@microsoft/fast-components"
@@ -49736,7 +49872,11 @@
49736
49872
  "type": {
49737
49873
  "text": "string"
49738
49874
  },
49739
- "description": "Optional non-editable label shown on the left inside the field, before the input."
49875
+ "description": "Optional non-editable label shown on the left inside the field, before the input.",
49876
+ "inheritedFrom": {
49877
+ "name": "AffixMixin",
49878
+ "module": "src/_common/affix-mixin.ts"
49879
+ }
49740
49880
  },
49741
49881
  {
49742
49882
  "kind": "field",
@@ -49744,7 +49884,11 @@
49744
49884
  "type": {
49745
49885
  "text": "string"
49746
49886
  },
49747
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
49887
+ "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
49888
+ "inheritedFrom": {
49889
+ "name": "AffixMixin",
49890
+ "module": "src/_common/affix-mixin.ts"
49891
+ }
49748
49892
  },
49749
49893
  {
49750
49894
  "kind": "field",
@@ -49753,7 +49897,11 @@
49753
49897
  "text": "boolean"
49754
49898
  },
49755
49899
  "default": "false",
49756
- "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes, and their ids are omitted from the controls `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
49900
+ "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
49901
+ "inheritedFrom": {
49902
+ "name": "AffixMixin",
49903
+ "module": "src/_common/affix-mixin.ts"
49904
+ }
49757
49905
  },
49758
49906
  {
49759
49907
  "kind": "field",
@@ -50199,31 +50347,6 @@
50199
50347
  },
50200
50348
  "fieldName": "step"
50201
50349
  },
50202
- {
50203
- "name": "prefix",
50204
- "type": {
50205
- "text": "string"
50206
- },
50207
- "description": "Optional non-editable label shown on the left inside the field, before the input.",
50208
- "fieldName": "prefix"
50209
- },
50210
- {
50211
- "name": "suffix",
50212
- "type": {
50213
- "text": "string"
50214
- },
50215
- "description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field.",
50216
- "fieldName": "suffix"
50217
- },
50218
- {
50219
- "name": "hide-affix-from-screen-reader",
50220
- "type": {
50221
- "text": "boolean"
50222
- },
50223
- "default": "false",
50224
- "description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes, and their ids are omitted from the control’s `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text.",
50225
- "fieldName": "hideAffixFromScreenReader"
50226
- },
50227
50350
  {
50228
50351
  "name": "readonly",
50229
50352
  "type": {
@@ -50296,6 +50419,12 @@
50296
50419
  }
50297
50420
  }
50298
50421
  ],
50422
+ "mixins": [
50423
+ {
50424
+ "name": "AffixMixin",
50425
+ "module": "/src/_common"
50426
+ }
50427
+ ],
50299
50428
  "superclass": {
50300
50429
  "name": "FASTTextField",
50301
50430
  "package": "@microsoft/fast-components"