@genesislcap/foundation-ui 14.416.1 → 14.417.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +735 -606
- package/dist/dts/_common/affix-mixin.d.ts +46 -0
- package/dist/dts/_common/affix-mixin.d.ts.map +1 -0
- package/dist/dts/_common/field-styles.d.ts +2 -0
- package/dist/dts/_common/field-styles.d.ts.map +1 -0
- package/dist/dts/_common/index.d.ts +2 -0
- package/dist/dts/_common/index.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.d.ts +12 -1
- package/dist/dts/number-field/number-field.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.styles.d.ts.map +1 -1
- package/dist/dts/number-field/number-field.template.d.ts.map +1 -1
- package/dist/dts/text-field/text-field.d.ts +12 -22
- package/dist/dts/text-field/text-field.d.ts.map +1 -1
- package/dist/dts/text-field/text-field.styles.d.ts.map +1 -1
- package/dist/esm/_common/affix-mixin.js +70 -0
- package/dist/esm/_common/field-styles.js +62 -0
- package/dist/esm/_common/index.js +2 -0
- package/dist/esm/number-field/number-field.js +2 -1
- package/dist/esm/number-field/number-field.styles.js +2 -3
- package/dist/esm/number-field/number-field.template.js +72 -46
- package/dist/esm/text-field/text-field.js +2 -49
- package/dist/esm/text-field/text-field.styles.js +2 -60
- package/package.json +19 -19
|
@@ -924,6 +924,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",
|
|
@@ -1236,120 +1292,40 @@
|
|
|
1236
1292
|
},
|
|
1237
1293
|
{
|
|
1238
1294
|
"kind": "javascript-module",
|
|
1239
|
-
"path": "src/_common/
|
|
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/accordion/accordion.styles.ts",
|
|
1295
|
+
"path": "src/_common/field-styles.ts",
|
|
1293
1296
|
"declarations": [
|
|
1294
1297
|
{
|
|
1295
|
-
"kind": "
|
|
1296
|
-
"name": "
|
|
1297
|
-
"
|
|
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
|
-
]
|
|
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`"
|
|
1316
1301
|
}
|
|
1317
1302
|
],
|
|
1318
1303
|
"exports": [
|
|
1319
1304
|
{
|
|
1320
1305
|
"kind": "js",
|
|
1321
|
-
"name": "
|
|
1306
|
+
"name": "sharedFieldStyles",
|
|
1322
1307
|
"declaration": {
|
|
1323
|
-
"name": "
|
|
1324
|
-
"module": "src/
|
|
1308
|
+
"name": "sharedFieldStyles",
|
|
1309
|
+
"module": "src/_common/field-styles.ts"
|
|
1325
1310
|
}
|
|
1326
1311
|
}
|
|
1327
1312
|
]
|
|
1328
1313
|
},
|
|
1329
1314
|
{
|
|
1330
1315
|
"kind": "javascript-module",
|
|
1331
|
-
"path": "src/
|
|
1316
|
+
"path": "src/_common/icons.ts",
|
|
1332
1317
|
"declarations": [
|
|
1333
1318
|
{
|
|
1334
1319
|
"kind": "function",
|
|
1335
|
-
"name": "
|
|
1336
|
-
"return": {
|
|
1337
|
-
"type": {
|
|
1338
|
-
"text": "ViewTemplate<Accordion>"
|
|
1339
|
-
}
|
|
1340
|
-
},
|
|
1320
|
+
"name": "closeIcon",
|
|
1341
1321
|
"parameters": [
|
|
1342
1322
|
{
|
|
1343
|
-
"name": "
|
|
1344
|
-
"
|
|
1345
|
-
"text": "ElementDefinitionContext"
|
|
1346
|
-
}
|
|
1323
|
+
"name": "slot",
|
|
1324
|
+
"default": "'start'"
|
|
1347
1325
|
},
|
|
1348
1326
|
{
|
|
1349
|
-
"name": "
|
|
1350
|
-
"
|
|
1351
|
-
"text": "FoundationElementDefinition"
|
|
1352
|
-
}
|
|
1327
|
+
"name": "fill",
|
|
1328
|
+
"default": "'#879ba6'"
|
|
1353
1329
|
}
|
|
1354
1330
|
]
|
|
1355
1331
|
}
|
|
@@ -1357,98 +1333,33 @@
|
|
|
1357
1333
|
"exports": [
|
|
1358
1334
|
{
|
|
1359
1335
|
"kind": "js",
|
|
1360
|
-
"name": "
|
|
1336
|
+
"name": "closeIcon",
|
|
1361
1337
|
"declaration": {
|
|
1362
|
-
"name": "
|
|
1363
|
-
"module": "src/
|
|
1338
|
+
"name": "closeIcon",
|
|
1339
|
+
"module": "src/_common/icons.ts"
|
|
1364
1340
|
}
|
|
1365
1341
|
}
|
|
1366
1342
|
]
|
|
1367
1343
|
},
|
|
1368
1344
|
{
|
|
1369
1345
|
"kind": "javascript-module",
|
|
1370
|
-
"path": "src/
|
|
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
|
-
],
|
|
1346
|
+
"path": "src/_common/index.ts",
|
|
1347
|
+
"declarations": [],
|
|
1406
1348
|
"exports": [
|
|
1407
1349
|
{
|
|
1408
1350
|
"kind": "js",
|
|
1409
|
-
"name": "
|
|
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"
|
|
1421
|
-
}
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"kind": "js",
|
|
1425
|
-
"name": "defaultAccordionConfig",
|
|
1351
|
+
"name": "*",
|
|
1426
1352
|
"declaration": {
|
|
1427
|
-
"name": "
|
|
1428
|
-
"
|
|
1353
|
+
"name": "*",
|
|
1354
|
+
"package": "./affix-mixin"
|
|
1429
1355
|
}
|
|
1430
1356
|
},
|
|
1431
|
-
{
|
|
1432
|
-
"kind": "js",
|
|
1433
|
-
"name": "foundationAccordion",
|
|
1434
|
-
"declaration": {
|
|
1435
|
-
"name": "foundationAccordion",
|
|
1436
|
-
"module": "src/accordion/accordion.ts"
|
|
1437
|
-
}
|
|
1438
|
-
}
|
|
1439
|
-
]
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"kind": "javascript-module",
|
|
1443
|
-
"path": "src/accordion/index.ts",
|
|
1444
|
-
"declarations": [],
|
|
1445
|
-
"exports": [
|
|
1446
1357
|
{
|
|
1447
1358
|
"kind": "js",
|
|
1448
1359
|
"name": "*",
|
|
1449
1360
|
"declaration": {
|
|
1450
1361
|
"name": "*",
|
|
1451
|
-
"package": "./
|
|
1362
|
+
"package": "./base-file-component"
|
|
1452
1363
|
}
|
|
1453
1364
|
},
|
|
1454
1365
|
{
|
|
@@ -1456,7 +1367,7 @@
|
|
|
1456
1367
|
"name": "*",
|
|
1457
1368
|
"declaration": {
|
|
1458
1369
|
"name": "*",
|
|
1459
|
-
"package": "./
|
|
1370
|
+
"package": "./field-styles"
|
|
1460
1371
|
}
|
|
1461
1372
|
},
|
|
1462
1373
|
{
|
|
@@ -1464,7 +1375,7 @@
|
|
|
1464
1375
|
"name": "*",
|
|
1465
1376
|
"declaration": {
|
|
1466
1377
|
"name": "*",
|
|
1467
|
-
"package": "./
|
|
1378
|
+
"package": "./icons"
|
|
1468
1379
|
}
|
|
1469
1380
|
}
|
|
1470
1381
|
]
|
|
@@ -2455,75 +2366,57 @@
|
|
|
2455
2366
|
},
|
|
2456
2367
|
{
|
|
2457
2368
|
"kind": "javascript-module",
|
|
2458
|
-
"path": "src/ai-
|
|
2369
|
+
"path": "src/ai-criteria-search/ai-criteria-search.styles.ts",
|
|
2459
2370
|
"declarations": [
|
|
2460
2371
|
{
|
|
2461
|
-
"kind": "
|
|
2462
|
-
"name": "
|
|
2463
|
-
"
|
|
2464
|
-
"type": {
|
|
2465
|
-
"text": "ElementStyles"
|
|
2466
|
-
}
|
|
2467
|
-
},
|
|
2468
|
-
"parameters": [
|
|
2469
|
-
{
|
|
2470
|
-
"name": "context",
|
|
2471
|
-
"type": {
|
|
2472
|
-
"text": "ElementDefinitionContext"
|
|
2473
|
-
}
|
|
2474
|
-
},
|
|
2475
|
-
{
|
|
2476
|
-
"name": "definition",
|
|
2477
|
-
"type": {
|
|
2478
|
-
"text": "FoundationElementDefinition"
|
|
2479
|
-
}
|
|
2480
|
-
}
|
|
2481
|
-
]
|
|
2372
|
+
"kind": "variable",
|
|
2373
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2374
|
+
"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`"
|
|
2482
2375
|
}
|
|
2483
2376
|
],
|
|
2484
2377
|
"exports": [
|
|
2485
2378
|
{
|
|
2486
2379
|
"kind": "js",
|
|
2487
|
-
"name": "
|
|
2380
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2488
2381
|
"declaration": {
|
|
2489
|
-
"name": "
|
|
2490
|
-
"module": "src/ai-
|
|
2382
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2383
|
+
"module": "src/ai-criteria-search/ai-criteria-search.styles.ts"
|
|
2491
2384
|
}
|
|
2492
2385
|
}
|
|
2493
2386
|
]
|
|
2494
2387
|
},
|
|
2495
2388
|
{
|
|
2496
2389
|
"kind": "javascript-module",
|
|
2497
|
-
"path": "src/ai-
|
|
2390
|
+
"path": "src/ai-criteria-search/ai-criteria-search.template.ts",
|
|
2498
2391
|
"declarations": [
|
|
2499
2392
|
{
|
|
2500
2393
|
"kind": "variable",
|
|
2501
|
-
"name": "
|
|
2394
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2502
2395
|
"type": {
|
|
2503
|
-
"text": "ViewTemplate<
|
|
2396
|
+
"text": "ViewTemplate<AiCriteriaSearch>"
|
|
2504
2397
|
},
|
|
2505
|
-
"default": "html`\n ${(x) =>
|
|
2398
|
+
"default": "html`\n ${(x) => aiCriteriaSearchTemplate(getPrefix(x))}\n`"
|
|
2506
2399
|
}
|
|
2507
2400
|
],
|
|
2508
2401
|
"exports": [
|
|
2509
2402
|
{
|
|
2510
2403
|
"kind": "js",
|
|
2511
|
-
"name": "
|
|
2404
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2512
2405
|
"declaration": {
|
|
2513
|
-
"name": "
|
|
2514
|
-
"module": "src/ai-
|
|
2406
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2407
|
+
"module": "src/ai-criteria-search/ai-criteria-search.template.ts"
|
|
2515
2408
|
}
|
|
2516
2409
|
}
|
|
2517
2410
|
]
|
|
2518
2411
|
},
|
|
2519
2412
|
{
|
|
2520
2413
|
"kind": "javascript-module",
|
|
2521
|
-
"path": "src/ai-
|
|
2414
|
+
"path": "src/ai-criteria-search/ai-criteria-search.ts",
|
|
2522
2415
|
"declarations": [
|
|
2523
2416
|
{
|
|
2524
2417
|
"kind": "class",
|
|
2525
2418
|
"description": "",
|
|
2526
|
-
"name": "
|
|
2419
|
+
"name": "AiCriteriaSearch",
|
|
2527
2420
|
"members": [
|
|
2528
2421
|
{
|
|
2529
2422
|
"kind": "field",
|
|
@@ -2534,31 +2427,38 @@
|
|
|
2534
2427
|
},
|
|
2535
2428
|
{
|
|
2536
2429
|
"kind": "field",
|
|
2537
|
-
"name": "
|
|
2430
|
+
"name": "placeholder",
|
|
2538
2431
|
"type": {
|
|
2539
|
-
"text": "
|
|
2432
|
+
"text": "string"
|
|
2540
2433
|
},
|
|
2541
|
-
"default": "
|
|
2434
|
+
"default": "'Describe your search criteria in natural language...'"
|
|
2542
2435
|
},
|
|
2543
2436
|
{
|
|
2544
2437
|
"kind": "field",
|
|
2545
|
-
"name": "
|
|
2438
|
+
"name": "disabled",
|
|
2546
2439
|
"type": {
|
|
2547
2440
|
"text": "boolean"
|
|
2441
|
+
}
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"kind": "field",
|
|
2445
|
+
"name": "mode",
|
|
2446
|
+
"type": {
|
|
2447
|
+
"text": "'append' | 'replace'"
|
|
2548
2448
|
},
|
|
2549
|
-
"default": "
|
|
2449
|
+
"default": "'replace'"
|
|
2550
2450
|
},
|
|
2551
2451
|
{
|
|
2552
2452
|
"kind": "field",
|
|
2553
|
-
"name": "
|
|
2453
|
+
"name": "inputValue",
|
|
2554
2454
|
"type": {
|
|
2555
|
-
"text": "
|
|
2455
|
+
"text": "string"
|
|
2556
2456
|
},
|
|
2557
|
-
"default": "'
|
|
2457
|
+
"default": "''"
|
|
2558
2458
|
},
|
|
2559
2459
|
{
|
|
2560
2460
|
"kind": "field",
|
|
2561
|
-
"name": "
|
|
2461
|
+
"name": "isInterpreting",
|
|
2562
2462
|
"type": {
|
|
2563
2463
|
"text": "boolean"
|
|
2564
2464
|
},
|
|
@@ -2566,133 +2466,91 @@
|
|
|
2566
2466
|
},
|
|
2567
2467
|
{
|
|
2568
2468
|
"kind": "field",
|
|
2569
|
-
"name": "
|
|
2469
|
+
"name": "lastValidCriteria",
|
|
2570
2470
|
"type": {
|
|
2571
|
-
"text": "
|
|
2471
|
+
"text": "string | null"
|
|
2572
2472
|
},
|
|
2573
|
-
"privacy": "private",
|
|
2574
2473
|
"default": "null"
|
|
2575
2474
|
},
|
|
2576
2475
|
{
|
|
2577
2476
|
"kind": "field",
|
|
2578
|
-
"name": "
|
|
2579
|
-
"privacy": "private"
|
|
2580
|
-
},
|
|
2581
|
-
{
|
|
2582
|
-
"kind": "field",
|
|
2583
|
-
"name": "chromeStatusLabel",
|
|
2477
|
+
"name": "fieldMetadata",
|
|
2584
2478
|
"type": {
|
|
2585
|
-
"text": "
|
|
2479
|
+
"text": "MetadataDetail[] | string[]"
|
|
2586
2480
|
},
|
|
2587
|
-
"
|
|
2481
|
+
"default": "[]"
|
|
2588
2482
|
},
|
|
2589
2483
|
{
|
|
2590
2484
|
"kind": "field",
|
|
2591
|
-
"name": "
|
|
2485
|
+
"name": "isRecording",
|
|
2592
2486
|
"type": {
|
|
2593
2487
|
"text": "boolean"
|
|
2594
2488
|
},
|
|
2595
|
-
"
|
|
2489
|
+
"default": "false"
|
|
2596
2490
|
},
|
|
2597
2491
|
{
|
|
2598
2492
|
"kind": "field",
|
|
2599
|
-
"name": "
|
|
2493
|
+
"name": "textAreaRef",
|
|
2600
2494
|
"type": {
|
|
2601
|
-
"text": "
|
|
2495
|
+
"text": "HTMLTextAreaElement"
|
|
2602
2496
|
},
|
|
2603
|
-
"
|
|
2497
|
+
"privacy": "public"
|
|
2604
2498
|
},
|
|
2605
2499
|
{
|
|
2606
|
-
"kind": "
|
|
2607
|
-
"name": "
|
|
2608
|
-
"
|
|
2609
|
-
"
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2500
|
+
"kind": "field",
|
|
2501
|
+
"name": "stopRecording",
|
|
2502
|
+
"type": {
|
|
2503
|
+
"text": "(() => void) | null"
|
|
2504
|
+
},
|
|
2505
|
+
"privacy": "private",
|
|
2506
|
+
"default": "null"
|
|
2613
2507
|
},
|
|
2614
2508
|
{
|
|
2615
|
-
"kind": "
|
|
2616
|
-
"name": "
|
|
2509
|
+
"kind": "field",
|
|
2510
|
+
"name": "speechApplyDebounceTimer",
|
|
2511
|
+
"type": {
|
|
2512
|
+
"text": "ReturnType<typeof setTimeout> | null"
|
|
2513
|
+
},
|
|
2617
2514
|
"privacy": "private",
|
|
2618
|
-
"
|
|
2619
|
-
{
|
|
2620
|
-
"name": "event",
|
|
2621
|
-
"type": {
|
|
2622
|
-
"text": "MouseEvent"
|
|
2623
|
-
}
|
|
2624
|
-
}
|
|
2625
|
-
]
|
|
2515
|
+
"default": "null"
|
|
2626
2516
|
},
|
|
2627
2517
|
{
|
|
2628
|
-
"kind": "
|
|
2629
|
-
"name": "
|
|
2518
|
+
"kind": "field",
|
|
2519
|
+
"name": "baseInputForAppend",
|
|
2520
|
+
"type": {
|
|
2521
|
+
"text": "string"
|
|
2522
|
+
},
|
|
2523
|
+
"privacy": "private",
|
|
2524
|
+
"default": "''"
|
|
2630
2525
|
},
|
|
2631
2526
|
{
|
|
2632
|
-
"kind": "
|
|
2633
|
-
"name": "
|
|
2634
|
-
"
|
|
2635
|
-
"
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
}
|
|
2527
|
+
"kind": "field",
|
|
2528
|
+
"name": "speechAvailable",
|
|
2529
|
+
"type": {
|
|
2530
|
+
"text": "boolean"
|
|
2531
|
+
},
|
|
2532
|
+
"readonly": true
|
|
2639
2533
|
},
|
|
2640
2534
|
{
|
|
2641
2535
|
"kind": "method",
|
|
2642
|
-
"name": "
|
|
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
|
-
]
|
|
2536
|
+
"name": "handleSubmit"
|
|
2657
2537
|
},
|
|
2658
2538
|
{
|
|
2659
2539
|
"kind": "method",
|
|
2660
|
-
"name": "
|
|
2661
|
-
"privacy": "private",
|
|
2662
|
-
"return": {
|
|
2663
|
-
"type": {
|
|
2664
|
-
"text": "void"
|
|
2665
|
-
}
|
|
2666
|
-
}
|
|
2540
|
+
"name": "handleBlur"
|
|
2667
2541
|
},
|
|
2668
2542
|
{
|
|
2669
2543
|
"kind": "method",
|
|
2670
|
-
"name": "
|
|
2671
|
-
"privacy": "private",
|
|
2672
|
-
"return": {
|
|
2673
|
-
"type": {
|
|
2674
|
-
"text": "void"
|
|
2675
|
-
}
|
|
2676
|
-
}
|
|
2544
|
+
"name": "clear"
|
|
2677
2545
|
},
|
|
2678
2546
|
{
|
|
2679
2547
|
"kind": "method",
|
|
2680
|
-
"name": "
|
|
2681
|
-
"privacy": "private",
|
|
2682
|
-
"return": {
|
|
2683
|
-
"type": {
|
|
2684
|
-
"text": "void"
|
|
2685
|
-
}
|
|
2686
|
-
}
|
|
2548
|
+
"name": "toggleSpeechInput"
|
|
2687
2549
|
},
|
|
2688
2550
|
{
|
|
2689
2551
|
"kind": "method",
|
|
2690
|
-
"name": "
|
|
2691
|
-
"
|
|
2692
|
-
"type": {
|
|
2693
|
-
"text": "Promise<void>"
|
|
2694
|
-
}
|
|
2695
|
-
}
|
|
2552
|
+
"name": "clearSpeechApplyDebounce",
|
|
2553
|
+
"privacy": "private"
|
|
2696
2554
|
},
|
|
2697
2555
|
{
|
|
2698
2556
|
"kind": "field",
|
|
@@ -2806,145 +2664,500 @@
|
|
|
2806
2664
|
}
|
|
2807
2665
|
}
|
|
2808
2666
|
],
|
|
2667
|
+
"attributes": [
|
|
2668
|
+
{
|
|
2669
|
+
"name": "placeholder",
|
|
2670
|
+
"type": {
|
|
2671
|
+
"text": "string"
|
|
2672
|
+
},
|
|
2673
|
+
"default": "'Describe your search criteria in natural language...'",
|
|
2674
|
+
"fieldName": "placeholder"
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"type": {
|
|
2678
|
+
"text": "boolean"
|
|
2679
|
+
},
|
|
2680
|
+
"fieldName": "disabled"
|
|
2681
|
+
},
|
|
2682
|
+
{
|
|
2683
|
+
"name": "mode",
|
|
2684
|
+
"type": {
|
|
2685
|
+
"text": "'append' | 'replace'"
|
|
2686
|
+
},
|
|
2687
|
+
"default": "'replace'",
|
|
2688
|
+
"fieldName": "mode"
|
|
2689
|
+
}
|
|
2690
|
+
],
|
|
2809
2691
|
"superclass": {
|
|
2810
2692
|
"name": "FoundationElement",
|
|
2811
2693
|
"package": "@microsoft/fast-foundation"
|
|
2812
2694
|
},
|
|
2813
|
-
"tagName": "%%prefix%%-ai-
|
|
2695
|
+
"tagName": "%%prefix%%-ai-criteria-search",
|
|
2814
2696
|
"customElement": true
|
|
2815
2697
|
},
|
|
2816
2698
|
{
|
|
2817
2699
|
"kind": "variable",
|
|
2818
|
-
"name": "
|
|
2700
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2701
|
+
"type": {
|
|
2702
|
+
"text": "ShadowRootInit"
|
|
2703
|
+
},
|
|
2704
|
+
"default": "undefined"
|
|
2705
|
+
},
|
|
2706
|
+
{
|
|
2707
|
+
"kind": "variable",
|
|
2708
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2709
|
+
"type": {
|
|
2710
|
+
"text": "object"
|
|
2711
|
+
},
|
|
2712
|
+
"default": "{}"
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"kind": "variable",
|
|
2716
|
+
"name": "foundationAiCriteriaSearch"
|
|
2819
2717
|
}
|
|
2820
2718
|
],
|
|
2821
2719
|
"exports": [
|
|
2822
2720
|
{
|
|
2823
2721
|
"kind": "js",
|
|
2824
|
-
"name": "
|
|
2722
|
+
"name": "AiCriteriaSearch",
|
|
2825
2723
|
"declaration": {
|
|
2826
|
-
"name": "
|
|
2827
|
-
"module": "src/ai-
|
|
2724
|
+
"name": "AiCriteriaSearch",
|
|
2725
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2828
2726
|
}
|
|
2829
2727
|
},
|
|
2830
2728
|
{
|
|
2831
2729
|
"kind": "js",
|
|
2832
|
-
"name": "
|
|
2730
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2833
2731
|
"declaration": {
|
|
2834
|
-
"name": "
|
|
2835
|
-
"module": "src/ai-
|
|
2732
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2733
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2734
|
+
}
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"kind": "js",
|
|
2738
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2739
|
+
"declaration": {
|
|
2740
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2741
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2742
|
+
}
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"kind": "js",
|
|
2746
|
+
"name": "foundationAiCriteriaSearch",
|
|
2747
|
+
"declaration": {
|
|
2748
|
+
"name": "foundationAiCriteriaSearch",
|
|
2749
|
+
"module": "src/ai-criteria-search/ai-criteria-search.ts"
|
|
2836
2750
|
}
|
|
2837
2751
|
}
|
|
2838
2752
|
]
|
|
2839
2753
|
},
|
|
2840
2754
|
{
|
|
2841
2755
|
"kind": "javascript-module",
|
|
2842
|
-
"path": "src/ai-
|
|
2756
|
+
"path": "src/ai-criteria-search/index.ts",
|
|
2843
2757
|
"declarations": [],
|
|
2844
2758
|
"exports": [
|
|
2845
2759
|
{
|
|
2846
2760
|
"kind": "js",
|
|
2847
|
-
"name": "
|
|
2761
|
+
"name": "AiCriteriaSearch",
|
|
2848
2762
|
"declaration": {
|
|
2849
|
-
"name": "
|
|
2850
|
-
"module": "./ai-
|
|
2763
|
+
"name": "AiCriteriaSearch",
|
|
2764
|
+
"module": "./ai-criteria-search"
|
|
2851
2765
|
}
|
|
2852
2766
|
},
|
|
2853
2767
|
{
|
|
2854
2768
|
"kind": "js",
|
|
2855
|
-
"name": "
|
|
2769
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2856
2770
|
"declaration": {
|
|
2857
|
-
"name": "
|
|
2858
|
-
"module": "./ai-
|
|
2771
|
+
"name": "defaultAiCriteriaSearchConfig",
|
|
2772
|
+
"module": "./ai-criteria-search"
|
|
2859
2773
|
}
|
|
2860
2774
|
},
|
|
2861
2775
|
{
|
|
2862
2776
|
"kind": "js",
|
|
2863
|
-
"name": "
|
|
2777
|
+
"name": "foundationAiCriteriaSearch",
|
|
2864
2778
|
"declaration": {
|
|
2865
|
-
"name": "
|
|
2866
|
-
"module": "./ai-
|
|
2779
|
+
"name": "foundationAiCriteriaSearch",
|
|
2780
|
+
"module": "./ai-criteria-search"
|
|
2867
2781
|
}
|
|
2868
2782
|
},
|
|
2869
2783
|
{
|
|
2870
2784
|
"kind": "js",
|
|
2871
|
-
"name": "
|
|
2785
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2872
2786
|
"declaration": {
|
|
2873
|
-
"name": "
|
|
2874
|
-
"module": "./ai-
|
|
2787
|
+
"name": "foundationAiCriteriaSearchShadowOptions",
|
|
2788
|
+
"module": "./ai-criteria-search"
|
|
2875
2789
|
}
|
|
2876
2790
|
},
|
|
2877
2791
|
{
|
|
2878
2792
|
"kind": "js",
|
|
2879
|
-
"name": "
|
|
2793
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2880
2794
|
"declaration": {
|
|
2881
|
-
"name": "
|
|
2882
|
-
"module": "./ai-
|
|
2795
|
+
"name": "foundationAiCriteriaSearchStyles",
|
|
2796
|
+
"module": "./ai-criteria-search.styles"
|
|
2883
2797
|
}
|
|
2884
2798
|
},
|
|
2885
2799
|
{
|
|
2886
2800
|
"kind": "js",
|
|
2887
|
-
"name": "
|
|
2801
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2888
2802
|
"declaration": {
|
|
2889
|
-
"name": "
|
|
2890
|
-
"module": "./ai-
|
|
2803
|
+
"name": "foundationAiCriteriaSearchTemplate",
|
|
2804
|
+
"module": "./ai-criteria-search.template"
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
"kind": "js",
|
|
2809
|
+
"name": "*",
|
|
2810
|
+
"declaration": {
|
|
2811
|
+
"name": "*",
|
|
2812
|
+
"package": "./validation/criteria-ir"
|
|
2813
|
+
}
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"kind": "js",
|
|
2817
|
+
"name": "*",
|
|
2818
|
+
"declaration": {
|
|
2819
|
+
"name": "*",
|
|
2820
|
+
"package": "./validation/operator-map"
|
|
2821
|
+
}
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"kind": "js",
|
|
2825
|
+
"name": "*",
|
|
2826
|
+
"declaration": {
|
|
2827
|
+
"name": "*",
|
|
2828
|
+
"package": "./validation/schema-validator"
|
|
2891
2829
|
}
|
|
2892
2830
|
}
|
|
2893
2831
|
]
|
|
2894
2832
|
},
|
|
2895
2833
|
{
|
|
2896
2834
|
"kind": "javascript-module",
|
|
2897
|
-
"path": "src/ai-criteria-search/
|
|
2835
|
+
"path": "src/ai-criteria-search/validation-error-notification.ts",
|
|
2898
2836
|
"declarations": [
|
|
2837
|
+
{
|
|
2838
|
+
"kind": "function",
|
|
2839
|
+
"name": "formatValidationErrors",
|
|
2840
|
+
"return": {
|
|
2841
|
+
"type": {
|
|
2842
|
+
"text": "string"
|
|
2843
|
+
}
|
|
2844
|
+
},
|
|
2845
|
+
"parameters": [
|
|
2846
|
+
{
|
|
2847
|
+
"name": "errors",
|
|
2848
|
+
"type": {
|
|
2849
|
+
"text": "ValidationError[]"
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
],
|
|
2853
|
+
"description": "Formats validation errors into a user-friendly message."
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
"kind": "function",
|
|
2857
|
+
"name": "showCriteriaError",
|
|
2858
|
+
"return": {
|
|
2859
|
+
"type": {
|
|
2860
|
+
"text": "void"
|
|
2861
|
+
}
|
|
2862
|
+
},
|
|
2863
|
+
"parameters": [
|
|
2864
|
+
{
|
|
2865
|
+
"name": "title",
|
|
2866
|
+
"type": {
|
|
2867
|
+
"text": "string"
|
|
2868
|
+
},
|
|
2869
|
+
"description": "Notification title (e.g. \"Criteria validation error\")"
|
|
2870
|
+
},
|
|
2871
|
+
{
|
|
2872
|
+
"name": "body",
|
|
2873
|
+
"type": {
|
|
2874
|
+
"text": "string"
|
|
2875
|
+
},
|
|
2876
|
+
"description": "Error message to display"
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"name": "tagName",
|
|
2880
|
+
"type": {
|
|
2881
|
+
"text": "string"
|
|
2882
|
+
},
|
|
2883
|
+
"description": "Design system prefix (e.g. \"rapid\", \"foundation\")"
|
|
2884
|
+
}
|
|
2885
|
+
],
|
|
2886
|
+
"description": "Shows a criteria error as a toast notification."
|
|
2887
|
+
}
|
|
2888
|
+
],
|
|
2889
|
+
"exports": [
|
|
2890
|
+
{
|
|
2891
|
+
"kind": "js",
|
|
2892
|
+
"name": "formatValidationErrors",
|
|
2893
|
+
"declaration": {
|
|
2894
|
+
"name": "formatValidationErrors",
|
|
2895
|
+
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2896
|
+
}
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"kind": "js",
|
|
2900
|
+
"name": "showCriteriaError",
|
|
2901
|
+
"declaration": {
|
|
2902
|
+
"name": "showCriteriaError",
|
|
2903
|
+
"module": "src/ai-criteria-search/validation-error-notification.ts"
|
|
2904
|
+
}
|
|
2905
|
+
}
|
|
2906
|
+
]
|
|
2907
|
+
},
|
|
2908
|
+
{
|
|
2909
|
+
"kind": "javascript-module",
|
|
2910
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
2911
|
+
"declarations": [
|
|
2912
|
+
{
|
|
2913
|
+
"kind": "function",
|
|
2914
|
+
"name": "foundationAccordionStyles",
|
|
2915
|
+
"return": {
|
|
2916
|
+
"type": {
|
|
2917
|
+
"text": "ElementStyles"
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
"parameters": [
|
|
2921
|
+
{
|
|
2922
|
+
"name": "context",
|
|
2923
|
+
"type": {
|
|
2924
|
+
"text": "ElementDefinitionContext"
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"name": "definition",
|
|
2929
|
+
"type": {
|
|
2930
|
+
"text": "FoundationElementDefinition"
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
]
|
|
2934
|
+
}
|
|
2935
|
+
],
|
|
2936
|
+
"exports": [
|
|
2937
|
+
{
|
|
2938
|
+
"kind": "js",
|
|
2939
|
+
"name": "foundationAccordionStyles",
|
|
2940
|
+
"declaration": {
|
|
2941
|
+
"name": "foundationAccordionStyles",
|
|
2942
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2945
|
+
]
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"kind": "javascript-module",
|
|
2949
|
+
"path": "src/accordion/accordion.template.ts",
|
|
2950
|
+
"declarations": [
|
|
2951
|
+
{
|
|
2952
|
+
"kind": "function",
|
|
2953
|
+
"name": "foundationAccordionTemplate",
|
|
2954
|
+
"return": {
|
|
2955
|
+
"type": {
|
|
2956
|
+
"text": "ViewTemplate<Accordion>"
|
|
2957
|
+
}
|
|
2958
|
+
},
|
|
2959
|
+
"parameters": [
|
|
2960
|
+
{
|
|
2961
|
+
"name": "context",
|
|
2962
|
+
"type": {
|
|
2963
|
+
"text": "ElementDefinitionContext"
|
|
2964
|
+
}
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"name": "definition",
|
|
2968
|
+
"type": {
|
|
2969
|
+
"text": "FoundationElementDefinition"
|
|
2970
|
+
}
|
|
2971
|
+
}
|
|
2972
|
+
]
|
|
2973
|
+
}
|
|
2974
|
+
],
|
|
2975
|
+
"exports": [
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "js",
|
|
2978
|
+
"name": "foundationAccordionTemplate",
|
|
2979
|
+
"declaration": {
|
|
2980
|
+
"name": "foundationAccordionTemplate",
|
|
2981
|
+
"module": "src/accordion/accordion.template.ts"
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
]
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
"kind": "javascript-module",
|
|
2988
|
+
"path": "src/accordion/accordion.ts",
|
|
2989
|
+
"declarations": [
|
|
2990
|
+
{
|
|
2991
|
+
"kind": "class",
|
|
2992
|
+
"description": "",
|
|
2993
|
+
"name": "Accordion",
|
|
2994
|
+
"superclass": {
|
|
2995
|
+
"name": "FASTAccordion",
|
|
2996
|
+
"package": "@microsoft/fast-foundation"
|
|
2997
|
+
},
|
|
2998
|
+
"tagName": "%%prefix%%-accordion",
|
|
2999
|
+
"customElement": true
|
|
3000
|
+
},
|
|
2899
3001
|
{
|
|
2900
3002
|
"kind": "variable",
|
|
2901
|
-
"name": "
|
|
2902
|
-
"
|
|
3003
|
+
"name": "foundationAccordionShadowOptions",
|
|
3004
|
+
"type": {
|
|
3005
|
+
"text": "ShadowRootInit"
|
|
3006
|
+
},
|
|
3007
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
"kind": "variable",
|
|
3011
|
+
"name": "defaultAccordionConfig",
|
|
3012
|
+
"type": {
|
|
3013
|
+
"text": "object"
|
|
3014
|
+
},
|
|
3015
|
+
"default": "{}"
|
|
3016
|
+
},
|
|
3017
|
+
{
|
|
3018
|
+
"kind": "variable",
|
|
3019
|
+
"name": "foundationAccordion",
|
|
3020
|
+
"description": "The Foundation Accordion",
|
|
3021
|
+
"privacy": "public"
|
|
2903
3022
|
}
|
|
2904
3023
|
],
|
|
2905
3024
|
"exports": [
|
|
2906
3025
|
{
|
|
2907
3026
|
"kind": "js",
|
|
2908
|
-
"name": "
|
|
3027
|
+
"name": "Accordion",
|
|
2909
3028
|
"declaration": {
|
|
2910
|
-
"name": "
|
|
2911
|
-
"module": "src/
|
|
3029
|
+
"name": "Accordion",
|
|
3030
|
+
"module": "src/accordion/accordion.ts"
|
|
3031
|
+
}
|
|
3032
|
+
},
|
|
3033
|
+
{
|
|
3034
|
+
"kind": "js",
|
|
3035
|
+
"name": "foundationAccordionShadowOptions",
|
|
3036
|
+
"declaration": {
|
|
3037
|
+
"name": "foundationAccordionShadowOptions",
|
|
3038
|
+
"module": "src/accordion/accordion.ts"
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"kind": "js",
|
|
3043
|
+
"name": "defaultAccordionConfig",
|
|
3044
|
+
"declaration": {
|
|
3045
|
+
"name": "defaultAccordionConfig",
|
|
3046
|
+
"module": "src/accordion/accordion.ts"
|
|
3047
|
+
}
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
"kind": "js",
|
|
3051
|
+
"name": "foundationAccordion",
|
|
3052
|
+
"declaration": {
|
|
3053
|
+
"name": "foundationAccordion",
|
|
3054
|
+
"module": "src/accordion/accordion.ts"
|
|
2912
3055
|
}
|
|
2913
3056
|
}
|
|
2914
3057
|
]
|
|
2915
3058
|
},
|
|
2916
3059
|
{
|
|
2917
3060
|
"kind": "javascript-module",
|
|
2918
|
-
"path": "src/
|
|
3061
|
+
"path": "src/accordion/index.ts",
|
|
3062
|
+
"declarations": [],
|
|
3063
|
+
"exports": [
|
|
3064
|
+
{
|
|
3065
|
+
"kind": "js",
|
|
3066
|
+
"name": "*",
|
|
3067
|
+
"declaration": {
|
|
3068
|
+
"name": "*",
|
|
3069
|
+
"package": "./accordion.template"
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
{
|
|
3073
|
+
"kind": "js",
|
|
3074
|
+
"name": "*",
|
|
3075
|
+
"declaration": {
|
|
3076
|
+
"name": "*",
|
|
3077
|
+
"package": "./accordion.styles"
|
|
3078
|
+
}
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"kind": "js",
|
|
3082
|
+
"name": "*",
|
|
3083
|
+
"declaration": {
|
|
3084
|
+
"name": "*",
|
|
3085
|
+
"package": "./accordion"
|
|
3086
|
+
}
|
|
3087
|
+
}
|
|
3088
|
+
]
|
|
3089
|
+
},
|
|
3090
|
+
{
|
|
3091
|
+
"kind": "javascript-module",
|
|
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": "
|
|
3135
|
+
"name": "foundationAiIndicatorTemplate",
|
|
2923
3136
|
"type": {
|
|
2924
|
-
"text": "ViewTemplate<
|
|
3137
|
+
"text": "ViewTemplate<AiIndicator>"
|
|
2925
3138
|
},
|
|
2926
|
-
"default": "html`\n ${(x) =>
|
|
3139
|
+
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
2927
3140
|
}
|
|
2928
3141
|
],
|
|
2929
3142
|
"exports": [
|
|
2930
3143
|
{
|
|
2931
3144
|
"kind": "js",
|
|
2932
|
-
"name": "
|
|
3145
|
+
"name": "foundationAiIndicatorTemplate",
|
|
2933
3146
|
"declaration": {
|
|
2934
|
-
"name": "
|
|
2935
|
-
"module": "src/ai-
|
|
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-
|
|
3155
|
+
"path": "src/ai-indicator/ai-indicator.ts",
|
|
2943
3156
|
"declarations": [
|
|
2944
3157
|
{
|
|
2945
3158
|
"kind": "class",
|
|
2946
3159
|
"description": "",
|
|
2947
|
-
"name": "
|
|
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": "
|
|
3171
|
+
"name": "status",
|
|
2959
3172
|
"type": {
|
|
2960
|
-
"text": "
|
|
3173
|
+
"text": "AIStatus | null"
|
|
2961
3174
|
},
|
|
2962
|
-
"default": "
|
|
3175
|
+
"default": "null"
|
|
2963
3176
|
},
|
|
2964
3177
|
{
|
|
2965
3178
|
"kind": "field",
|
|
2966
|
-
"name": "
|
|
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": "
|
|
3183
|
+
"default": "false"
|
|
2978
3184
|
},
|
|
2979
3185
|
{
|
|
2980
3186
|
"kind": "field",
|
|
2981
|
-
"name": "
|
|
3187
|
+
"name": "state",
|
|
2982
3188
|
"type": {
|
|
2983
|
-
"text": "
|
|
3189
|
+
"text": "AIIndicatorState"
|
|
2984
3190
|
},
|
|
2985
|
-
"default": "''"
|
|
3191
|
+
"default": "'none'"
|
|
2986
3192
|
},
|
|
2987
3193
|
{
|
|
2988
3194
|
"kind": "field",
|
|
2989
|
-
"name": "
|
|
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": "
|
|
3203
|
+
"name": "pollTimer",
|
|
2998
3204
|
"type": {
|
|
2999
|
-
"text": "
|
|
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": "
|
|
3006
|
-
"
|
|
3007
|
-
"text": "MetadataDetail[] | string[]"
|
|
3008
|
-
},
|
|
3009
|
-
"default": "[]"
|
|
3212
|
+
"name": "clickOutside",
|
|
3213
|
+
"privacy": "private"
|
|
3010
3214
|
},
|
|
3011
3215
|
{
|
|
3012
3216
|
"kind": "field",
|
|
3013
|
-
"name": "
|
|
3217
|
+
"name": "chromeStatusLabel",
|
|
3014
3218
|
"type": {
|
|
3015
|
-
"text": "
|
|
3219
|
+
"text": "string | null"
|
|
3016
3220
|
},
|
|
3017
|
-
"
|
|
3221
|
+
"readonly": true
|
|
3018
3222
|
},
|
|
3019
3223
|
{
|
|
3020
3224
|
"kind": "field",
|
|
3021
|
-
"name": "
|
|
3225
|
+
"name": "canInstall",
|
|
3022
3226
|
"type": {
|
|
3023
|
-
"text": "
|
|
3227
|
+
"text": "boolean"
|
|
3024
3228
|
},
|
|
3025
|
-
"
|
|
3229
|
+
"readonly": true
|
|
3026
3230
|
},
|
|
3027
3231
|
{
|
|
3028
3232
|
"kind": "field",
|
|
3029
|
-
"name": "
|
|
3233
|
+
"name": "isDownloading",
|
|
3030
3234
|
"type": {
|
|
3031
|
-
"text": "
|
|
3235
|
+
"text": "boolean"
|
|
3032
3236
|
},
|
|
3033
|
-
"
|
|
3034
|
-
"default": "null"
|
|
3237
|
+
"readonly": true
|
|
3035
3238
|
},
|
|
3036
3239
|
{
|
|
3037
|
-
"kind": "
|
|
3038
|
-
"name": "
|
|
3039
|
-
"
|
|
3040
|
-
"
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3240
|
+
"kind": "method",
|
|
3241
|
+
"name": "openChanged",
|
|
3242
|
+
"return": {
|
|
3243
|
+
"type": {
|
|
3244
|
+
"text": "void"
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3044
3247
|
},
|
|
3045
3248
|
{
|
|
3046
|
-
"kind": "
|
|
3047
|
-
"name": "
|
|
3048
|
-
"type": {
|
|
3049
|
-
"text": "string"
|
|
3050
|
-
},
|
|
3249
|
+
"kind": "method",
|
|
3250
|
+
"name": "handleClickOutside",
|
|
3051
3251
|
"privacy": "private",
|
|
3052
|
-
"
|
|
3252
|
+
"parameters": [
|
|
3253
|
+
{
|
|
3254
|
+
"name": "event",
|
|
3255
|
+
"type": {
|
|
3256
|
+
"text": "MouseEvent"
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
]
|
|
3053
3260
|
},
|
|
3054
3261
|
{
|
|
3055
|
-
"kind": "
|
|
3056
|
-
"name": "
|
|
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": "
|
|
3267
|
+
"name": "refreshStatus",
|
|
3268
|
+
"return": {
|
|
3269
|
+
"type": {
|
|
3270
|
+
"text": "Promise<void>"
|
|
3271
|
+
}
|
|
3272
|
+
}
|
|
3065
3273
|
},
|
|
3066
3274
|
{
|
|
3067
3275
|
"kind": "method",
|
|
3068
|
-
"name": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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-
|
|
3447
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
3224
3448
|
"customElement": true
|
|
3225
3449
|
},
|
|
3226
3450
|
{
|
|
3227
3451
|
"kind": "variable",
|
|
3228
|
-
"name": "
|
|
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": "
|
|
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": "
|
|
3269
|
-
"module": "src/ai-
|
|
3460
|
+
"name": "AiIndicator",
|
|
3461
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3270
3462
|
}
|
|
3271
3463
|
},
|
|
3272
3464
|
{
|
|
3273
3465
|
"kind": "js",
|
|
3274
|
-
"name": "
|
|
3466
|
+
"name": "foundationAiIndicator",
|
|
3275
3467
|
"declaration": {
|
|
3276
|
-
"name": "
|
|
3277
|
-
"module": "src/ai-
|
|
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-
|
|
3476
|
+
"path": "src/ai-indicator/index.ts",
|
|
3285
3477
|
"declarations": [],
|
|
3286
3478
|
"exports": [
|
|
3287
3479
|
{
|
|
3288
3480
|
"kind": "js",
|
|
3289
|
-
"name": "
|
|
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": "
|
|
3324
|
-
"module": "./ai-
|
|
3483
|
+
"name": "AiIndicator",
|
|
3484
|
+
"module": "./ai-indicator"
|
|
3325
3485
|
}
|
|
3326
3486
|
},
|
|
3327
3487
|
{
|
|
3328
3488
|
"kind": "js",
|
|
3329
|
-
"name": "
|
|
3489
|
+
"name": "foundationAiIndicator",
|
|
3330
3490
|
"declaration": {
|
|
3331
|
-
"name": "
|
|
3332
|
-
"module": "./ai-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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": "
|
|
3423
|
-
"module": "
|
|
3515
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3516
|
+
"module": "./ai-indicator.template"
|
|
3424
3517
|
}
|
|
3425
3518
|
},
|
|
3426
3519
|
{
|
|
3427
3520
|
"kind": "js",
|
|
3428
|
-
"name": "
|
|
3521
|
+
"name": "foundationAiIndicatorStyles",
|
|
3429
3522
|
"declaration": {
|
|
3430
|
-
"name": "
|
|
3431
|
-
"module": "
|
|
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
|
|
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"
|