@genesislcap/foundation-ui 14.489.0-canary.FUI-2574-1 → 14.489.1-alpha-519bcd2.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 +811 -406
- package/dist/dts/base-components.d.ts +11 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/pill/index.d.ts +4 -0
- package/dist/dts/pill/index.d.ts.map +1 -0
- package/dist/dts/pill/pill.d.ts +58 -0
- package/dist/dts/pill/pill.d.ts.map +1 -0
- package/dist/dts/pill/pill.styles.d.ts +2 -0
- package/dist/dts/pill/pill.styles.d.ts.map +1 -0
- package/dist/dts/pill/pill.template.d.ts +3 -0
- package/dist/dts/pill/pill.template.d.ts.map +1 -0
- package/dist/dts/react.d.ts +20 -8
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/pill/index.js +3 -0
- package/dist/esm/pill/pill.js +63 -0
- package/dist/esm/pill/pill.styles.js +75 -0
- package/dist/esm/pill/pill.template.js +38 -0
- package/dist/foundation-ui.api.json +588 -1
- package/dist/foundation-ui.d.ts +75 -0
- package/dist/react.cjs +30 -6
- package/dist/react.mjs +27 -4
- package/package.json +19 -19
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n foundationAccordion,\n foundationAiCriteriaSearch,\n foundationAiIndicator,\n foundationAccordionItem,\n foundationActionsMenu,\n foundationAnchor,\n foundationAnchoredRegion,\n foundationAvatar,\n foundationBadge,\n foundationBanner,\n foundationBreadcrumb,\n foundationBreadcrumbItem,\n foundationButton,\n foundationCalendar,\n foundationCard,\n foundationCategorizedMultiselect,\n foundationCheckbox,\n foundationCombobox,\n foundationConnectionIndicator,\n foundationDataGrid,\n foundationDataGridCell,\n foundationDataGridRow,\n foundationDatePicker,\n foundationDesignSystemProvider,\n foundationDialog,\n foundationDisclosure,\n foundationDivider,\n foundationDropdownMenu,\n foundationErrorBanner,\n foundationErrorBoundary,\n foundationErrorDialog,\n foundationFileReader,\n foundationFileUpload,\n foundationFilter,\n foundationFilterBar,\n foundationFlexLayout,\n foundationFlipper,\n foundationFlyout,\n foundationGridLayout,\n foundationGridLayoutItem,\n foundationHorizontalScroll,\n foundationIcon,\n foundationListbox,\n foundationListboxOption,\n foundationMenu,\n foundationMenuItem,\n foundationModal,\n foundationMultiselect,\n foundationNumberField,\n foundationOptgroup,\n foundationPopper,\n foundationProgress,\n foundationProgressRing,\n foundationRadio,\n foundationRadioGroup,\n foundationScheduler,\n foundationSchedulerCronBuilder,\n foundationSchedulerTimezone,\n foundationSearchBar,\n foundationSearchBarCombobox,\n foundationSegmentedControl,\n foundationSegmentedItem,\n foundationSelect,\n foundationSkeleton,\n foundationSlider,\n foundationSliderLabel,\n foundationSnackbar,\n foundationStackingIcons,\n foundationStatusPill,\n foundationEnvironmentIndicator,\n foundationStepperTab,\n foundationStepperTabPanel,\n foundationSwitch,\n foundationSystemHealthOverlay,\n foundationTab,\n foundationTabPanel,\n foundationTabs,\n foundationTextArea,\n foundationTextField,\n foundationToast,\n foundationToolbar,\n foundationTooltip,\n foundationTreeItem,\n foundationTreeView,\n foundationUrlInput,\n foundationSectionNavigator,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
|
|
15
|
+
"default": "{\n foundationAccordion,\n foundationAiCriteriaSearch,\n foundationAiIndicator,\n foundationAccordionItem,\n foundationActionsMenu,\n foundationAnchor,\n foundationAnchoredRegion,\n foundationAvatar,\n foundationBadge,\n foundationBanner,\n foundationBreadcrumb,\n foundationBreadcrumbItem,\n foundationButton,\n foundationCalendar,\n foundationCard,\n foundationCategorizedMultiselect,\n foundationCheckbox,\n foundationCombobox,\n foundationConnectionIndicator,\n foundationDataGrid,\n foundationDataGridCell,\n foundationDataGridRow,\n foundationDatePicker,\n foundationDesignSystemProvider,\n foundationDialog,\n foundationDisclosure,\n foundationDivider,\n foundationDropdownMenu,\n foundationErrorBanner,\n foundationErrorBoundary,\n foundationErrorDialog,\n foundationFileReader,\n foundationFileUpload,\n foundationFilter,\n foundationFilterBar,\n foundationFlexLayout,\n foundationFlipper,\n foundationFlyout,\n foundationGridLayout,\n foundationGridLayoutItem,\n foundationHorizontalScroll,\n foundationIcon,\n foundationListbox,\n foundationListboxOption,\n foundationMenu,\n foundationMenuItem,\n foundationModal,\n foundationMultiselect,\n foundationNumberField,\n foundationOptgroup,\n foundationPill,\n foundationPopper,\n foundationProgress,\n foundationProgressRing,\n foundationRadio,\n foundationRadioGroup,\n foundationScheduler,\n foundationSchedulerCronBuilder,\n foundationSchedulerTimezone,\n foundationSearchBar,\n foundationSearchBarCombobox,\n foundationSegmentedControl,\n foundationSegmentedItem,\n foundationSelect,\n foundationSkeleton,\n foundationSlider,\n foundationSliderLabel,\n foundationSnackbar,\n foundationStackingIcons,\n foundationStatusPill,\n foundationEnvironmentIndicator,\n foundationStepperTab,\n foundationStepperTabPanel,\n foundationSwitch,\n foundationSystemHealthOverlay,\n foundationTab,\n foundationTabPanel,\n foundationTabs,\n foundationTextArea,\n foundationTextField,\n foundationToast,\n foundationToolbar,\n foundationTooltip,\n foundationTreeItem,\n foundationTreeView,\n foundationUrlInput,\n foundationSectionNavigator,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"exports": [
|
|
@@ -548,6 +548,14 @@
|
|
|
548
548
|
"package": "./patterns"
|
|
549
549
|
}
|
|
550
550
|
},
|
|
551
|
+
{
|
|
552
|
+
"kind": "js",
|
|
553
|
+
"name": "*",
|
|
554
|
+
"declaration": {
|
|
555
|
+
"name": "*",
|
|
556
|
+
"package": "./pill"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
551
559
|
{
|
|
552
560
|
"kind": "js",
|
|
553
561
|
"name": "*",
|
|
@@ -940,6 +948,37 @@
|
|
|
940
948
|
}
|
|
941
949
|
]
|
|
942
950
|
},
|
|
951
|
+
{
|
|
952
|
+
"kind": "javascript-module",
|
|
953
|
+
"path": "src/_config/index.ts",
|
|
954
|
+
"declarations": [],
|
|
955
|
+
"exports": [
|
|
956
|
+
{
|
|
957
|
+
"kind": "js",
|
|
958
|
+
"name": "*",
|
|
959
|
+
"declaration": {
|
|
960
|
+
"name": "*",
|
|
961
|
+
"package": "./styles"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"kind": "js",
|
|
966
|
+
"name": "*",
|
|
967
|
+
"declaration": {
|
|
968
|
+
"name": "*",
|
|
969
|
+
"package": "./tokens"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"kind": "js",
|
|
974
|
+
"name": "*",
|
|
975
|
+
"declaration": {
|
|
976
|
+
"name": "*",
|
|
977
|
+
"package": "./values"
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
]
|
|
981
|
+
},
|
|
943
982
|
{
|
|
944
983
|
"kind": "javascript-module",
|
|
945
984
|
"path": "src/_common/affix-mixin.ts",
|
|
@@ -1406,37 +1445,6 @@
|
|
|
1406
1445
|
}
|
|
1407
1446
|
]
|
|
1408
1447
|
},
|
|
1409
|
-
{
|
|
1410
|
-
"kind": "javascript-module",
|
|
1411
|
-
"path": "src/_config/index.ts",
|
|
1412
|
-
"declarations": [],
|
|
1413
|
-
"exports": [
|
|
1414
|
-
{
|
|
1415
|
-
"kind": "js",
|
|
1416
|
-
"name": "*",
|
|
1417
|
-
"declaration": {
|
|
1418
|
-
"name": "*",
|
|
1419
|
-
"package": "./styles"
|
|
1420
|
-
}
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"kind": "js",
|
|
1424
|
-
"name": "*",
|
|
1425
|
-
"declaration": {
|
|
1426
|
-
"name": "*",
|
|
1427
|
-
"package": "./tokens"
|
|
1428
|
-
}
|
|
1429
|
-
},
|
|
1430
|
-
{
|
|
1431
|
-
"kind": "js",
|
|
1432
|
-
"name": "*",
|
|
1433
|
-
"declaration": {
|
|
1434
|
-
"name": "*",
|
|
1435
|
-
"package": "./values"
|
|
1436
|
-
}
|
|
1437
|
-
}
|
|
1438
|
-
]
|
|
1439
|
-
},
|
|
1440
1448
|
{
|
|
1441
1449
|
"kind": "javascript-module",
|
|
1442
1450
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -2392,11 +2400,11 @@
|
|
|
2392
2400
|
},
|
|
2393
2401
|
{
|
|
2394
2402
|
"kind": "javascript-module",
|
|
2395
|
-
"path": "src/
|
|
2403
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
2396
2404
|
"declarations": [
|
|
2397
2405
|
{
|
|
2398
2406
|
"kind": "function",
|
|
2399
|
-
"name": "
|
|
2407
|
+
"name": "foundationAccordionStyles",
|
|
2400
2408
|
"return": {
|
|
2401
2409
|
"type": {
|
|
2402
2410
|
"text": "ElementStyles"
|
|
@@ -2421,224 +2429,276 @@
|
|
|
2421
2429
|
"exports": [
|
|
2422
2430
|
{
|
|
2423
2431
|
"kind": "js",
|
|
2424
|
-
"name": "
|
|
2432
|
+
"name": "foundationAccordionStyles",
|
|
2425
2433
|
"declaration": {
|
|
2426
|
-
"name": "
|
|
2427
|
-
"module": "src/
|
|
2434
|
+
"name": "foundationAccordionStyles",
|
|
2435
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
2428
2436
|
}
|
|
2429
2437
|
}
|
|
2430
2438
|
]
|
|
2431
2439
|
},
|
|
2432
2440
|
{
|
|
2433
2441
|
"kind": "javascript-module",
|
|
2434
|
-
"path": "src/
|
|
2442
|
+
"path": "src/accordion/accordion.template.ts",
|
|
2435
2443
|
"declarations": [
|
|
2436
2444
|
{
|
|
2437
|
-
"kind": "
|
|
2438
|
-
"name": "
|
|
2439
|
-
"
|
|
2440
|
-
"
|
|
2445
|
+
"kind": "function",
|
|
2446
|
+
"name": "foundationAccordionTemplate",
|
|
2447
|
+
"return": {
|
|
2448
|
+
"type": {
|
|
2449
|
+
"text": "ViewTemplate<Accordion>"
|
|
2450
|
+
}
|
|
2441
2451
|
},
|
|
2442
|
-
"
|
|
2452
|
+
"parameters": [
|
|
2453
|
+
{
|
|
2454
|
+
"name": "context",
|
|
2455
|
+
"type": {
|
|
2456
|
+
"text": "ElementDefinitionContext"
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"name": "definition",
|
|
2461
|
+
"type": {
|
|
2462
|
+
"text": "FoundationElementDefinition"
|
|
2463
|
+
}
|
|
2464
|
+
}
|
|
2465
|
+
]
|
|
2443
2466
|
}
|
|
2444
2467
|
],
|
|
2445
2468
|
"exports": [
|
|
2446
2469
|
{
|
|
2447
2470
|
"kind": "js",
|
|
2448
|
-
"name": "
|
|
2471
|
+
"name": "foundationAccordionTemplate",
|
|
2449
2472
|
"declaration": {
|
|
2450
|
-
"name": "
|
|
2451
|
-
"module": "src/
|
|
2473
|
+
"name": "foundationAccordionTemplate",
|
|
2474
|
+
"module": "src/accordion/accordion.template.ts"
|
|
2452
2475
|
}
|
|
2453
2476
|
}
|
|
2454
2477
|
]
|
|
2455
2478
|
},
|
|
2456
2479
|
{
|
|
2457
2480
|
"kind": "javascript-module",
|
|
2458
|
-
"path": "src/
|
|
2481
|
+
"path": "src/accordion/accordion.ts",
|
|
2459
2482
|
"declarations": [
|
|
2460
2483
|
{
|
|
2461
2484
|
"kind": "class",
|
|
2462
2485
|
"description": "",
|
|
2463
|
-
"name": "
|
|
2464
|
-
"
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
},
|
|
2472
|
-
{
|
|
2473
|
-
"kind": "field",
|
|
2474
|
-
"name": "aiProvider",
|
|
2475
|
-
"type": {
|
|
2476
|
-
"text": "AIProvider | undefined"
|
|
2477
|
-
},
|
|
2478
|
-
"privacy": "private",
|
|
2479
|
-
"description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
|
|
2480
|
-
"readonly": true
|
|
2481
|
-
},
|
|
2486
|
+
"name": "Accordion",
|
|
2487
|
+
"superclass": {
|
|
2488
|
+
"name": "FASTAccordion",
|
|
2489
|
+
"package": "@microsoft/fast-foundation"
|
|
2490
|
+
},
|
|
2491
|
+
"tagName": "%%prefix%%-accordion",
|
|
2492
|
+
"customElement": true,
|
|
2493
|
+
"attributes": [
|
|
2482
2494
|
{
|
|
2483
|
-
"
|
|
2484
|
-
"name": "status",
|
|
2495
|
+
"name": "expand-mode",
|
|
2485
2496
|
"type": {
|
|
2486
|
-
"text": "
|
|
2497
|
+
"text": "AccordionExpandMode"
|
|
2487
2498
|
},
|
|
2488
|
-
"
|
|
2489
|
-
|
|
2499
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
2500
|
+
"fieldName": "expandmode",
|
|
2501
|
+
"inheritedFrom": {
|
|
2502
|
+
"name": "Accordion",
|
|
2503
|
+
"module": "src/accordion/accordion.ts"
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
],
|
|
2507
|
+
"members": [
|
|
2490
2508
|
{
|
|
2491
2509
|
"kind": "field",
|
|
2492
|
-
"name": "
|
|
2510
|
+
"name": "expandmode",
|
|
2493
2511
|
"type": {
|
|
2494
|
-
"text": "
|
|
2512
|
+
"text": "AccordionExpandMode"
|
|
2495
2513
|
},
|
|
2496
|
-
"
|
|
2514
|
+
"privacy": "public",
|
|
2515
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
2516
|
+
"inheritedFrom": {
|
|
2517
|
+
"name": "Accordion",
|
|
2518
|
+
"module": "src/accordion/accordion.ts"
|
|
2519
|
+
}
|
|
2497
2520
|
},
|
|
2498
2521
|
{
|
|
2499
2522
|
"kind": "field",
|
|
2500
|
-
"name": "
|
|
2523
|
+
"name": "activeid",
|
|
2501
2524
|
"type": {
|
|
2502
|
-
"text": "
|
|
2525
|
+
"text": "string | null"
|
|
2503
2526
|
},
|
|
2504
|
-
"
|
|
2527
|
+
"privacy": "private",
|
|
2528
|
+
"inheritedFrom": {
|
|
2529
|
+
"name": "Accordion",
|
|
2530
|
+
"module": "src/accordion/accordion.ts"
|
|
2531
|
+
}
|
|
2505
2532
|
},
|
|
2506
2533
|
{
|
|
2507
2534
|
"kind": "field",
|
|
2508
|
-
"name": "
|
|
2535
|
+
"name": "activeItemIndex",
|
|
2509
2536
|
"type": {
|
|
2510
|
-
"text": "
|
|
2537
|
+
"text": "number"
|
|
2511
2538
|
},
|
|
2512
|
-
"
|
|
2539
|
+
"privacy": "private",
|
|
2540
|
+
"default": "0",
|
|
2541
|
+
"inheritedFrom": {
|
|
2542
|
+
"name": "Accordion",
|
|
2543
|
+
"module": "src/accordion/accordion.ts"
|
|
2544
|
+
}
|
|
2513
2545
|
},
|
|
2514
2546
|
{
|
|
2515
2547
|
"kind": "field",
|
|
2516
|
-
"name": "
|
|
2548
|
+
"name": "accordionIds",
|
|
2517
2549
|
"type": {
|
|
2518
|
-
"text": "
|
|
2550
|
+
"text": "Array<string | null>"
|
|
2519
2551
|
},
|
|
2520
2552
|
"privacy": "private",
|
|
2521
|
-
"
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
"name": "clickOutside",
|
|
2526
|
-
"privacy": "private"
|
|
2553
|
+
"inheritedFrom": {
|
|
2554
|
+
"name": "Accordion",
|
|
2555
|
+
"module": "src/accordion/accordion.ts"
|
|
2556
|
+
}
|
|
2527
2557
|
},
|
|
2528
2558
|
{
|
|
2529
2559
|
"kind": "field",
|
|
2530
|
-
"name": "
|
|
2531
|
-
"
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2560
|
+
"name": "change",
|
|
2561
|
+
"privacy": "private",
|
|
2562
|
+
"inheritedFrom": {
|
|
2563
|
+
"name": "Accordion",
|
|
2564
|
+
"module": "src/accordion/accordion.ts"
|
|
2565
|
+
}
|
|
2535
2566
|
},
|
|
2536
2567
|
{
|
|
2537
|
-
"kind": "
|
|
2538
|
-
"name": "
|
|
2539
|
-
"
|
|
2540
|
-
|
|
2568
|
+
"kind": "method",
|
|
2569
|
+
"name": "findExpandedItem",
|
|
2570
|
+
"privacy": "private",
|
|
2571
|
+
"return": {
|
|
2572
|
+
"type": {
|
|
2573
|
+
"text": "AccordionItem | null"
|
|
2574
|
+
}
|
|
2541
2575
|
},
|
|
2542
|
-
"
|
|
2576
|
+
"inheritedFrom": {
|
|
2577
|
+
"name": "Accordion",
|
|
2578
|
+
"module": "src/accordion/accordion.ts"
|
|
2579
|
+
}
|
|
2543
2580
|
},
|
|
2544
2581
|
{
|
|
2545
2582
|
"kind": "field",
|
|
2546
|
-
"name": "
|
|
2547
|
-
"
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2583
|
+
"name": "setItems",
|
|
2584
|
+
"privacy": "private",
|
|
2585
|
+
"inheritedFrom": {
|
|
2586
|
+
"name": "Accordion",
|
|
2587
|
+
"module": "src/accordion/accordion.ts"
|
|
2588
|
+
}
|
|
2551
2589
|
},
|
|
2552
2590
|
{
|
|
2553
2591
|
"kind": "method",
|
|
2554
|
-
"name": "
|
|
2592
|
+
"name": "resetItems",
|
|
2593
|
+
"privacy": "private",
|
|
2555
2594
|
"return": {
|
|
2556
2595
|
"type": {
|
|
2557
2596
|
"text": "void"
|
|
2558
2597
|
}
|
|
2598
|
+
},
|
|
2599
|
+
"inheritedFrom": {
|
|
2600
|
+
"name": "Accordion",
|
|
2601
|
+
"module": "src/accordion/accordion.ts"
|
|
2559
2602
|
}
|
|
2560
2603
|
},
|
|
2561
2604
|
{
|
|
2562
|
-
"kind": "
|
|
2563
|
-
"name": "
|
|
2605
|
+
"kind": "field",
|
|
2606
|
+
"name": "removeItemListeners",
|
|
2564
2607
|
"privacy": "private",
|
|
2565
|
-
"
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
"text": "MouseEvent"
|
|
2570
|
-
}
|
|
2571
|
-
}
|
|
2572
|
-
]
|
|
2608
|
+
"inheritedFrom": {
|
|
2609
|
+
"name": "Accordion",
|
|
2610
|
+
"module": "src/accordion/accordion.ts"
|
|
2611
|
+
}
|
|
2573
2612
|
},
|
|
2574
2613
|
{
|
|
2575
|
-
"kind": "
|
|
2576
|
-
"name": "
|
|
2614
|
+
"kind": "field",
|
|
2615
|
+
"name": "activeItemChange",
|
|
2616
|
+
"privacy": "private",
|
|
2617
|
+
"inheritedFrom": {
|
|
2618
|
+
"name": "Accordion",
|
|
2619
|
+
"module": "src/accordion/accordion.ts"
|
|
2620
|
+
}
|
|
2577
2621
|
},
|
|
2578
2622
|
{
|
|
2579
2623
|
"kind": "method",
|
|
2580
|
-
"name": "
|
|
2624
|
+
"name": "getItemIds",
|
|
2625
|
+
"privacy": "private",
|
|
2581
2626
|
"return": {
|
|
2582
2627
|
"type": {
|
|
2583
|
-
"text": "
|
|
2628
|
+
"text": "Array<string | null>"
|
|
2584
2629
|
}
|
|
2630
|
+
},
|
|
2631
|
+
"inheritedFrom": {
|
|
2632
|
+
"name": "Accordion",
|
|
2633
|
+
"module": "src/accordion/accordion.ts"
|
|
2585
2634
|
}
|
|
2586
2635
|
},
|
|
2587
2636
|
{
|
|
2588
2637
|
"kind": "method",
|
|
2589
|
-
"name": "
|
|
2638
|
+
"name": "isSingleExpandMode",
|
|
2590
2639
|
"privacy": "private",
|
|
2591
2640
|
"return": {
|
|
2592
2641
|
"type": {
|
|
2593
|
-
"text": "
|
|
2642
|
+
"text": "boolean"
|
|
2594
2643
|
}
|
|
2595
2644
|
},
|
|
2596
|
-
"
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
"text": "AIStatus | null"
|
|
2601
|
-
}
|
|
2602
|
-
}
|
|
2603
|
-
]
|
|
2645
|
+
"inheritedFrom": {
|
|
2646
|
+
"name": "Accordion",
|
|
2647
|
+
"module": "src/accordion/accordion.ts"
|
|
2648
|
+
}
|
|
2604
2649
|
},
|
|
2605
2650
|
{
|
|
2606
|
-
"kind": "
|
|
2607
|
-
"name": "
|
|
2651
|
+
"kind": "field",
|
|
2652
|
+
"name": "handleItemKeyDown",
|
|
2608
2653
|
"privacy": "private",
|
|
2609
|
-
"
|
|
2610
|
-
"
|
|
2611
|
-
|
|
2612
|
-
}
|
|
2654
|
+
"inheritedFrom": {
|
|
2655
|
+
"name": "Accordion",
|
|
2656
|
+
"module": "src/accordion/accordion.ts"
|
|
2613
2657
|
}
|
|
2614
2658
|
},
|
|
2615
2659
|
{
|
|
2616
|
-
"kind": "
|
|
2617
|
-
"name": "
|
|
2660
|
+
"kind": "field",
|
|
2661
|
+
"name": "handleItemFocus",
|
|
2618
2662
|
"privacy": "private",
|
|
2619
|
-
"
|
|
2620
|
-
"
|
|
2621
|
-
|
|
2622
|
-
}
|
|
2663
|
+
"inheritedFrom": {
|
|
2664
|
+
"name": "Accordion",
|
|
2665
|
+
"module": "src/accordion/accordion.ts"
|
|
2623
2666
|
}
|
|
2624
2667
|
},
|
|
2625
2668
|
{
|
|
2626
2669
|
"kind": "method",
|
|
2627
|
-
"name": "
|
|
2670
|
+
"name": "adjust",
|
|
2628
2671
|
"privacy": "private",
|
|
2629
2672
|
"return": {
|
|
2630
2673
|
"type": {
|
|
2631
2674
|
"text": "void"
|
|
2632
2675
|
}
|
|
2676
|
+
},
|
|
2677
|
+
"parameters": [
|
|
2678
|
+
{
|
|
2679
|
+
"name": "adjustment",
|
|
2680
|
+
"type": {
|
|
2681
|
+
"text": "number"
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
],
|
|
2685
|
+
"inheritedFrom": {
|
|
2686
|
+
"name": "Accordion",
|
|
2687
|
+
"module": "src/accordion/accordion.ts"
|
|
2633
2688
|
}
|
|
2634
2689
|
},
|
|
2635
2690
|
{
|
|
2636
2691
|
"kind": "method",
|
|
2637
|
-
"name": "
|
|
2692
|
+
"name": "focusItem",
|
|
2693
|
+
"privacy": "private",
|
|
2638
2694
|
"return": {
|
|
2639
2695
|
"type": {
|
|
2640
|
-
"text": "
|
|
2696
|
+
"text": "void"
|
|
2641
2697
|
}
|
|
2698
|
+
},
|
|
2699
|
+
"inheritedFrom": {
|
|
2700
|
+
"name": "Accordion",
|
|
2701
|
+
"module": "src/accordion/accordion.ts"
|
|
2642
2702
|
}
|
|
2643
2703
|
},
|
|
2644
2704
|
{
|
|
@@ -2753,88 +2813,102 @@
|
|
|
2753
2813
|
}
|
|
2754
2814
|
}
|
|
2755
2815
|
],
|
|
2756
|
-
"
|
|
2757
|
-
|
|
2758
|
-
|
|
2816
|
+
"events": [
|
|
2817
|
+
{
|
|
2818
|
+
"description": "Fires a custom 'change' event when the active item changes",
|
|
2819
|
+
"name": "change",
|
|
2820
|
+
"inheritedFrom": {
|
|
2821
|
+
"name": "Accordion",
|
|
2822
|
+
"module": "src/accordion/accordion.ts"
|
|
2823
|
+
}
|
|
2824
|
+
}
|
|
2825
|
+
]
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"kind": "variable",
|
|
2829
|
+
"name": "foundationAccordionShadowOptions",
|
|
2830
|
+
"type": {
|
|
2831
|
+
"text": "ShadowRootInit"
|
|
2759
2832
|
},
|
|
2760
|
-
"
|
|
2761
|
-
"customElement": true
|
|
2833
|
+
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
2762
2834
|
},
|
|
2763
2835
|
{
|
|
2764
2836
|
"kind": "variable",
|
|
2765
|
-
"name": "
|
|
2837
|
+
"name": "defaultAccordionConfig",
|
|
2838
|
+
"type": {
|
|
2839
|
+
"text": "object"
|
|
2840
|
+
},
|
|
2841
|
+
"default": "{}"
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
"kind": "variable",
|
|
2845
|
+
"name": "foundationAccordion",
|
|
2846
|
+
"description": "The Foundation Accordion",
|
|
2847
|
+
"privacy": "public"
|
|
2766
2848
|
}
|
|
2767
2849
|
],
|
|
2768
2850
|
"exports": [
|
|
2769
2851
|
{
|
|
2770
2852
|
"kind": "js",
|
|
2771
|
-
"name": "
|
|
2853
|
+
"name": "Accordion",
|
|
2772
2854
|
"declaration": {
|
|
2773
|
-
"name": "
|
|
2774
|
-
"module": "src/
|
|
2855
|
+
"name": "Accordion",
|
|
2856
|
+
"module": "src/accordion/accordion.ts"
|
|
2775
2857
|
}
|
|
2776
2858
|
},
|
|
2777
2859
|
{
|
|
2778
2860
|
"kind": "js",
|
|
2779
|
-
"name": "
|
|
2780
|
-
"declaration": {
|
|
2781
|
-
"name": "foundationAiIndicator",
|
|
2782
|
-
"module": "src/ai-indicator/ai-indicator.ts"
|
|
2783
|
-
}
|
|
2784
|
-
}
|
|
2785
|
-
]
|
|
2786
|
-
},
|
|
2787
|
-
{
|
|
2788
|
-
"kind": "javascript-module",
|
|
2789
|
-
"path": "src/ai-indicator/index.ts",
|
|
2790
|
-
"declarations": [],
|
|
2791
|
-
"exports": [
|
|
2792
|
-
{
|
|
2793
|
-
"kind": "js",
|
|
2794
|
-
"name": "AiIndicator",
|
|
2861
|
+
"name": "foundationAccordionShadowOptions",
|
|
2795
2862
|
"declaration": {
|
|
2796
|
-
"name": "
|
|
2797
|
-
"module": "
|
|
2863
|
+
"name": "foundationAccordionShadowOptions",
|
|
2864
|
+
"module": "src/accordion/accordion.ts"
|
|
2798
2865
|
}
|
|
2799
2866
|
},
|
|
2800
2867
|
{
|
|
2801
2868
|
"kind": "js",
|
|
2802
|
-
"name": "
|
|
2869
|
+
"name": "defaultAccordionConfig",
|
|
2803
2870
|
"declaration": {
|
|
2804
|
-
"name": "
|
|
2805
|
-
"module": "
|
|
2871
|
+
"name": "defaultAccordionConfig",
|
|
2872
|
+
"module": "src/accordion/accordion.ts"
|
|
2806
2873
|
}
|
|
2807
2874
|
},
|
|
2808
2875
|
{
|
|
2809
2876
|
"kind": "js",
|
|
2810
|
-
"name": "
|
|
2877
|
+
"name": "foundationAccordion",
|
|
2811
2878
|
"declaration": {
|
|
2812
|
-
"name": "
|
|
2813
|
-
"module": "
|
|
2879
|
+
"name": "foundationAccordion",
|
|
2880
|
+
"module": "src/accordion/accordion.ts"
|
|
2814
2881
|
}
|
|
2815
|
-
}
|
|
2882
|
+
}
|
|
2883
|
+
]
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
"kind": "javascript-module",
|
|
2887
|
+
"path": "src/accordion/index.ts",
|
|
2888
|
+
"declarations": [],
|
|
2889
|
+
"exports": [
|
|
2816
2890
|
{
|
|
2817
2891
|
"kind": "js",
|
|
2818
|
-
"name": "
|
|
2892
|
+
"name": "*",
|
|
2819
2893
|
"declaration": {
|
|
2820
|
-
"name": "
|
|
2821
|
-
"
|
|
2894
|
+
"name": "*",
|
|
2895
|
+
"package": "./accordion.template"
|
|
2822
2896
|
}
|
|
2823
2897
|
},
|
|
2824
2898
|
{
|
|
2825
2899
|
"kind": "js",
|
|
2826
|
-
"name": "
|
|
2900
|
+
"name": "*",
|
|
2827
2901
|
"declaration": {
|
|
2828
|
-
"name": "
|
|
2829
|
-
"
|
|
2902
|
+
"name": "*",
|
|
2903
|
+
"package": "./accordion.styles"
|
|
2830
2904
|
}
|
|
2831
2905
|
},
|
|
2832
2906
|
{
|
|
2833
2907
|
"kind": "js",
|
|
2834
|
-
"name": "
|
|
2908
|
+
"name": "*",
|
|
2835
2909
|
"declaration": {
|
|
2836
|
-
"name": "
|
|
2837
|
-
"
|
|
2910
|
+
"name": "*",
|
|
2911
|
+
"package": "./accordion"
|
|
2838
2912
|
}
|
|
2839
2913
|
}
|
|
2840
2914
|
]
|
|
@@ -3450,11 +3524,11 @@
|
|
|
3450
3524
|
},
|
|
3451
3525
|
{
|
|
3452
3526
|
"kind": "javascript-module",
|
|
3453
|
-
"path": "src/
|
|
3527
|
+
"path": "src/ai-indicator/ai-indicator.styles.ts",
|
|
3454
3528
|
"declarations": [
|
|
3455
3529
|
{
|
|
3456
3530
|
"kind": "function",
|
|
3457
|
-
"name": "
|
|
3531
|
+
"name": "foundationAiIndicatorStyles",
|
|
3458
3532
|
"return": {
|
|
3459
3533
|
"type": {
|
|
3460
3534
|
"text": "ElementStyles"
|
|
@@ -3479,276 +3553,224 @@
|
|
|
3479
3553
|
"exports": [
|
|
3480
3554
|
{
|
|
3481
3555
|
"kind": "js",
|
|
3482
|
-
"name": "
|
|
3556
|
+
"name": "foundationAiIndicatorStyles",
|
|
3483
3557
|
"declaration": {
|
|
3484
|
-
"name": "
|
|
3485
|
-
"module": "src/
|
|
3558
|
+
"name": "foundationAiIndicatorStyles",
|
|
3559
|
+
"module": "src/ai-indicator/ai-indicator.styles.ts"
|
|
3486
3560
|
}
|
|
3487
3561
|
}
|
|
3488
3562
|
]
|
|
3489
3563
|
},
|
|
3490
3564
|
{
|
|
3491
3565
|
"kind": "javascript-module",
|
|
3492
|
-
"path": "src/
|
|
3566
|
+
"path": "src/ai-indicator/ai-indicator.template.ts",
|
|
3493
3567
|
"declarations": [
|
|
3494
3568
|
{
|
|
3495
|
-
"kind": "
|
|
3496
|
-
"name": "
|
|
3497
|
-
"
|
|
3498
|
-
"
|
|
3499
|
-
"text": "ViewTemplate<Accordion>"
|
|
3500
|
-
}
|
|
3569
|
+
"kind": "variable",
|
|
3570
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3571
|
+
"type": {
|
|
3572
|
+
"text": "ViewTemplate<AiIndicator>"
|
|
3501
3573
|
},
|
|
3502
|
-
"
|
|
3503
|
-
{
|
|
3504
|
-
"name": "context",
|
|
3505
|
-
"type": {
|
|
3506
|
-
"text": "ElementDefinitionContext"
|
|
3507
|
-
}
|
|
3508
|
-
},
|
|
3509
|
-
{
|
|
3510
|
-
"name": "definition",
|
|
3511
|
-
"type": {
|
|
3512
|
-
"text": "FoundationElementDefinition"
|
|
3513
|
-
}
|
|
3514
|
-
}
|
|
3515
|
-
]
|
|
3574
|
+
"default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
|
|
3516
3575
|
}
|
|
3517
3576
|
],
|
|
3518
3577
|
"exports": [
|
|
3519
3578
|
{
|
|
3520
3579
|
"kind": "js",
|
|
3521
|
-
"name": "
|
|
3580
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3522
3581
|
"declaration": {
|
|
3523
|
-
"name": "
|
|
3524
|
-
"module": "src/
|
|
3582
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3583
|
+
"module": "src/ai-indicator/ai-indicator.template.ts"
|
|
3525
3584
|
}
|
|
3526
3585
|
}
|
|
3527
3586
|
]
|
|
3528
3587
|
},
|
|
3529
3588
|
{
|
|
3530
3589
|
"kind": "javascript-module",
|
|
3531
|
-
"path": "src/
|
|
3590
|
+
"path": "src/ai-indicator/ai-indicator.ts",
|
|
3532
3591
|
"declarations": [
|
|
3533
3592
|
{
|
|
3534
3593
|
"kind": "class",
|
|
3535
3594
|
"description": "",
|
|
3536
|
-
"name": "
|
|
3537
|
-
"
|
|
3538
|
-
"name": "FASTAccordion",
|
|
3539
|
-
"package": "@microsoft/fast-foundation"
|
|
3540
|
-
},
|
|
3541
|
-
"tagName": "%%prefix%%-accordion",
|
|
3542
|
-
"customElement": true,
|
|
3543
|
-
"attributes": [
|
|
3595
|
+
"name": "AiIndicator",
|
|
3596
|
+
"members": [
|
|
3544
3597
|
{
|
|
3545
|
-
"
|
|
3598
|
+
"kind": "field",
|
|
3599
|
+
"name": "providerRegistry",
|
|
3546
3600
|
"type": {
|
|
3547
|
-
"text": "
|
|
3548
|
-
},
|
|
3549
|
-
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
3550
|
-
"fieldName": "expandmode",
|
|
3551
|
-
"inheritedFrom": {
|
|
3552
|
-
"name": "Accordion",
|
|
3553
|
-
"module": "src/accordion/accordion.ts"
|
|
3601
|
+
"text": "AIProviderRegistry"
|
|
3554
3602
|
}
|
|
3555
|
-
}
|
|
3556
|
-
],
|
|
3557
|
-
"members": [
|
|
3603
|
+
},
|
|
3558
3604
|
{
|
|
3559
3605
|
"kind": "field",
|
|
3560
|
-
"name": "
|
|
3606
|
+
"name": "aiProvider",
|
|
3561
3607
|
"type": {
|
|
3562
|
-
"text": "
|
|
3608
|
+
"text": "AIProvider | undefined"
|
|
3563
3609
|
},
|
|
3564
|
-
"privacy": "
|
|
3565
|
-
"description": "
|
|
3566
|
-
"
|
|
3567
|
-
"name": "Accordion",
|
|
3568
|
-
"module": "src/accordion/accordion.ts"
|
|
3569
|
-
}
|
|
3610
|
+
"privacy": "private",
|
|
3611
|
+
"description": "The indicator reflects status for the registry's default provider only —\nper-agent provider overrides live with the assistant component, not this\ntop-level chrome.",
|
|
3612
|
+
"readonly": true
|
|
3570
3613
|
},
|
|
3571
3614
|
{
|
|
3572
3615
|
"kind": "field",
|
|
3573
|
-
"name": "
|
|
3616
|
+
"name": "status",
|
|
3574
3617
|
"type": {
|
|
3575
|
-
"text": "
|
|
3618
|
+
"text": "AIStatus | null"
|
|
3576
3619
|
},
|
|
3577
|
-
"
|
|
3578
|
-
"inheritedFrom": {
|
|
3579
|
-
"name": "Accordion",
|
|
3580
|
-
"module": "src/accordion/accordion.ts"
|
|
3581
|
-
}
|
|
3620
|
+
"default": "null"
|
|
3582
3621
|
},
|
|
3583
3622
|
{
|
|
3584
3623
|
"kind": "field",
|
|
3585
|
-
"name": "
|
|
3624
|
+
"name": "open",
|
|
3586
3625
|
"type": {
|
|
3587
|
-
"text": "
|
|
3626
|
+
"text": "boolean"
|
|
3588
3627
|
},
|
|
3589
|
-
"
|
|
3590
|
-
"default": "0",
|
|
3591
|
-
"inheritedFrom": {
|
|
3592
|
-
"name": "Accordion",
|
|
3593
|
-
"module": "src/accordion/accordion.ts"
|
|
3594
|
-
}
|
|
3628
|
+
"default": "false"
|
|
3595
3629
|
},
|
|
3596
3630
|
{
|
|
3597
3631
|
"kind": "field",
|
|
3598
|
-
"name": "
|
|
3632
|
+
"name": "state",
|
|
3599
3633
|
"type": {
|
|
3600
|
-
"text": "
|
|
3634
|
+
"text": "AIIndicatorState"
|
|
3601
3635
|
},
|
|
3602
|
-
"
|
|
3603
|
-
"inheritedFrom": {
|
|
3604
|
-
"name": "Accordion",
|
|
3605
|
-
"module": "src/accordion/accordion.ts"
|
|
3606
|
-
}
|
|
3636
|
+
"default": "'none'"
|
|
3607
3637
|
},
|
|
3608
3638
|
{
|
|
3609
3639
|
"kind": "field",
|
|
3610
|
-
"name": "
|
|
3611
|
-
"
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
}
|
|
3640
|
+
"name": "isInstalling",
|
|
3641
|
+
"type": {
|
|
3642
|
+
"text": "boolean"
|
|
3643
|
+
},
|
|
3644
|
+
"default": "false"
|
|
3616
3645
|
},
|
|
3617
3646
|
{
|
|
3618
|
-
"kind": "
|
|
3619
|
-
"name": "
|
|
3647
|
+
"kind": "field",
|
|
3648
|
+
"name": "pollTimer",
|
|
3649
|
+
"type": {
|
|
3650
|
+
"text": "ReturnType<typeof setInterval> | null"
|
|
3651
|
+
},
|
|
3620
3652
|
"privacy": "private",
|
|
3621
|
-
"
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3653
|
+
"default": "null"
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
"kind": "field",
|
|
3657
|
+
"name": "clickOutside",
|
|
3658
|
+
"privacy": "private"
|
|
3659
|
+
},
|
|
3660
|
+
{
|
|
3661
|
+
"kind": "field",
|
|
3662
|
+
"name": "chromeStatusLabel",
|
|
3663
|
+
"type": {
|
|
3664
|
+
"text": "string | null"
|
|
3625
3665
|
},
|
|
3626
|
-
"
|
|
3627
|
-
"name": "Accordion",
|
|
3628
|
-
"module": "src/accordion/accordion.ts"
|
|
3629
|
-
}
|
|
3666
|
+
"readonly": true
|
|
3630
3667
|
},
|
|
3631
3668
|
{
|
|
3632
3669
|
"kind": "field",
|
|
3633
|
-
"name": "
|
|
3634
|
-
"
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3670
|
+
"name": "canInstall",
|
|
3671
|
+
"type": {
|
|
3672
|
+
"text": "boolean"
|
|
3673
|
+
},
|
|
3674
|
+
"readonly": true
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
"kind": "field",
|
|
3678
|
+
"name": "isDownloading",
|
|
3679
|
+
"type": {
|
|
3680
|
+
"text": "boolean"
|
|
3681
|
+
},
|
|
3682
|
+
"readonly": true
|
|
3639
3683
|
},
|
|
3640
3684
|
{
|
|
3641
3685
|
"kind": "method",
|
|
3642
|
-
"name": "
|
|
3643
|
-
"privacy": "private",
|
|
3686
|
+
"name": "openChanged",
|
|
3644
3687
|
"return": {
|
|
3645
3688
|
"type": {
|
|
3646
3689
|
"text": "void"
|
|
3647
3690
|
}
|
|
3648
|
-
},
|
|
3649
|
-
"inheritedFrom": {
|
|
3650
|
-
"name": "Accordion",
|
|
3651
|
-
"module": "src/accordion/accordion.ts"
|
|
3652
3691
|
}
|
|
3653
3692
|
},
|
|
3654
3693
|
{
|
|
3655
|
-
"kind": "
|
|
3656
|
-
"name": "
|
|
3694
|
+
"kind": "method",
|
|
3695
|
+
"name": "handleClickOutside",
|
|
3657
3696
|
"privacy": "private",
|
|
3658
|
-
"
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3697
|
+
"parameters": [
|
|
3698
|
+
{
|
|
3699
|
+
"name": "event",
|
|
3700
|
+
"type": {
|
|
3701
|
+
"text": "MouseEvent"
|
|
3702
|
+
}
|
|
3703
|
+
}
|
|
3704
|
+
]
|
|
3662
3705
|
},
|
|
3663
3706
|
{
|
|
3664
|
-
"kind": "
|
|
3665
|
-
"name": "
|
|
3666
|
-
"privacy": "private",
|
|
3667
|
-
"inheritedFrom": {
|
|
3668
|
-
"name": "Accordion",
|
|
3669
|
-
"module": "src/accordion/accordion.ts"
|
|
3670
|
-
}
|
|
3707
|
+
"kind": "method",
|
|
3708
|
+
"name": "toggleDropdown"
|
|
3671
3709
|
},
|
|
3672
3710
|
{
|
|
3673
3711
|
"kind": "method",
|
|
3674
|
-
"name": "
|
|
3675
|
-
"privacy": "private",
|
|
3712
|
+
"name": "refreshStatus",
|
|
3676
3713
|
"return": {
|
|
3677
3714
|
"type": {
|
|
3678
|
-
"text": "
|
|
3715
|
+
"text": "Promise<void>"
|
|
3679
3716
|
}
|
|
3680
|
-
},
|
|
3681
|
-
"inheritedFrom": {
|
|
3682
|
-
"name": "Accordion",
|
|
3683
|
-
"module": "src/accordion/accordion.ts"
|
|
3684
3717
|
}
|
|
3685
3718
|
},
|
|
3686
3719
|
{
|
|
3687
3720
|
"kind": "method",
|
|
3688
|
-
"name": "
|
|
3721
|
+
"name": "deriveState",
|
|
3689
3722
|
"privacy": "private",
|
|
3690
3723
|
"return": {
|
|
3691
3724
|
"type": {
|
|
3692
|
-
"text": "
|
|
3725
|
+
"text": "AIIndicatorState"
|
|
3693
3726
|
}
|
|
3694
3727
|
},
|
|
3695
|
-
"
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3728
|
+
"parameters": [
|
|
3729
|
+
{
|
|
3730
|
+
"name": "s",
|
|
3731
|
+
"type": {
|
|
3732
|
+
"text": "AIStatus | null"
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3735
|
+
]
|
|
3699
3736
|
},
|
|
3700
3737
|
{
|
|
3701
|
-
"kind": "
|
|
3702
|
-
"name": "
|
|
3738
|
+
"kind": "method",
|
|
3739
|
+
"name": "maybeStartPolling",
|
|
3703
3740
|
"privacy": "private",
|
|
3704
|
-
"
|
|
3705
|
-
"
|
|
3706
|
-
|
|
3741
|
+
"return": {
|
|
3742
|
+
"type": {
|
|
3743
|
+
"text": "void"
|
|
3744
|
+
}
|
|
3707
3745
|
}
|
|
3708
3746
|
},
|
|
3709
3747
|
{
|
|
3710
|
-
"kind": "
|
|
3711
|
-
"name": "
|
|
3748
|
+
"kind": "method",
|
|
3749
|
+
"name": "startPolling",
|
|
3712
3750
|
"privacy": "private",
|
|
3713
|
-
"
|
|
3714
|
-
"
|
|
3715
|
-
|
|
3751
|
+
"return": {
|
|
3752
|
+
"type": {
|
|
3753
|
+
"text": "void"
|
|
3754
|
+
}
|
|
3716
3755
|
}
|
|
3717
3756
|
},
|
|
3718
3757
|
{
|
|
3719
3758
|
"kind": "method",
|
|
3720
|
-
"name": "
|
|
3759
|
+
"name": "stopPolling",
|
|
3721
3760
|
"privacy": "private",
|
|
3722
3761
|
"return": {
|
|
3723
3762
|
"type": {
|
|
3724
3763
|
"text": "void"
|
|
3725
3764
|
}
|
|
3726
|
-
},
|
|
3727
|
-
"parameters": [
|
|
3728
|
-
{
|
|
3729
|
-
"name": "adjustment",
|
|
3730
|
-
"type": {
|
|
3731
|
-
"text": "number"
|
|
3732
|
-
}
|
|
3733
|
-
}
|
|
3734
|
-
],
|
|
3735
|
-
"inheritedFrom": {
|
|
3736
|
-
"name": "Accordion",
|
|
3737
|
-
"module": "src/accordion/accordion.ts"
|
|
3738
3765
|
}
|
|
3739
3766
|
},
|
|
3740
3767
|
{
|
|
3741
3768
|
"kind": "method",
|
|
3742
|
-
"name": "
|
|
3743
|
-
"privacy": "private",
|
|
3769
|
+
"name": "onInstall",
|
|
3744
3770
|
"return": {
|
|
3745
3771
|
"type": {
|
|
3746
|
-
"text": "void"
|
|
3772
|
+
"text": "Promise<void>"
|
|
3747
3773
|
}
|
|
3748
|
-
},
|
|
3749
|
-
"inheritedFrom": {
|
|
3750
|
-
"name": "Accordion",
|
|
3751
|
-
"module": "src/accordion/accordion.ts"
|
|
3752
3774
|
}
|
|
3753
3775
|
},
|
|
3754
3776
|
{
|
|
@@ -3863,102 +3885,88 @@
|
|
|
3863
3885
|
}
|
|
3864
3886
|
}
|
|
3865
3887
|
],
|
|
3866
|
-
"
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
"name": "change",
|
|
3870
|
-
"inheritedFrom": {
|
|
3871
|
-
"name": "Accordion",
|
|
3872
|
-
"module": "src/accordion/accordion.ts"
|
|
3873
|
-
}
|
|
3874
|
-
}
|
|
3875
|
-
]
|
|
3876
|
-
},
|
|
3877
|
-
{
|
|
3878
|
-
"kind": "variable",
|
|
3879
|
-
"name": "foundationAccordionShadowOptions",
|
|
3880
|
-
"type": {
|
|
3881
|
-
"text": "ShadowRootInit"
|
|
3882
|
-
},
|
|
3883
|
-
"default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
|
|
3884
|
-
},
|
|
3885
|
-
{
|
|
3886
|
-
"kind": "variable",
|
|
3887
|
-
"name": "defaultAccordionConfig",
|
|
3888
|
-
"type": {
|
|
3889
|
-
"text": "object"
|
|
3888
|
+
"superclass": {
|
|
3889
|
+
"name": "FoundationElement",
|
|
3890
|
+
"package": "@microsoft/fast-foundation"
|
|
3890
3891
|
},
|
|
3891
|
-
"
|
|
3892
|
+
"tagName": "%%prefix%%-ai-indicator",
|
|
3893
|
+
"customElement": true
|
|
3892
3894
|
},
|
|
3893
3895
|
{
|
|
3894
3896
|
"kind": "variable",
|
|
3895
|
-
"name": "
|
|
3896
|
-
"description": "The Foundation Accordion",
|
|
3897
|
-
"privacy": "public"
|
|
3897
|
+
"name": "foundationAiIndicator"
|
|
3898
3898
|
}
|
|
3899
3899
|
],
|
|
3900
3900
|
"exports": [
|
|
3901
3901
|
{
|
|
3902
3902
|
"kind": "js",
|
|
3903
|
-
"name": "
|
|
3903
|
+
"name": "AiIndicator",
|
|
3904
3904
|
"declaration": {
|
|
3905
|
-
"name": "
|
|
3906
|
-
"module": "src/
|
|
3905
|
+
"name": "AiIndicator",
|
|
3906
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3907
3907
|
}
|
|
3908
3908
|
},
|
|
3909
3909
|
{
|
|
3910
3910
|
"kind": "js",
|
|
3911
|
-
"name": "
|
|
3911
|
+
"name": "foundationAiIndicator",
|
|
3912
3912
|
"declaration": {
|
|
3913
|
-
"name": "
|
|
3914
|
-
"module": "src/
|
|
3913
|
+
"name": "foundationAiIndicator",
|
|
3914
|
+
"module": "src/ai-indicator/ai-indicator.ts"
|
|
3915
|
+
}
|
|
3916
|
+
}
|
|
3917
|
+
]
|
|
3918
|
+
},
|
|
3919
|
+
{
|
|
3920
|
+
"kind": "javascript-module",
|
|
3921
|
+
"path": "src/ai-indicator/index.ts",
|
|
3922
|
+
"declarations": [],
|
|
3923
|
+
"exports": [
|
|
3924
|
+
{
|
|
3925
|
+
"kind": "js",
|
|
3926
|
+
"name": "AiIndicator",
|
|
3927
|
+
"declaration": {
|
|
3928
|
+
"name": "AiIndicator",
|
|
3929
|
+
"module": "./ai-indicator"
|
|
3915
3930
|
}
|
|
3916
3931
|
},
|
|
3917
3932
|
{
|
|
3918
3933
|
"kind": "js",
|
|
3919
|
-
"name": "
|
|
3934
|
+
"name": "foundationAiIndicator",
|
|
3920
3935
|
"declaration": {
|
|
3921
|
-
"name": "
|
|
3922
|
-
"module": "
|
|
3936
|
+
"name": "foundationAiIndicator",
|
|
3937
|
+
"module": "./ai-indicator"
|
|
3923
3938
|
}
|
|
3924
3939
|
},
|
|
3925
3940
|
{
|
|
3926
3941
|
"kind": "js",
|
|
3927
|
-
"name": "
|
|
3942
|
+
"name": "type",
|
|
3928
3943
|
"declaration": {
|
|
3929
|
-
"name": "
|
|
3930
|
-
"module": "
|
|
3944
|
+
"name": "type",
|
|
3945
|
+
"module": "./ai-indicator"
|
|
3931
3946
|
}
|
|
3932
|
-
}
|
|
3933
|
-
]
|
|
3934
|
-
},
|
|
3935
|
-
{
|
|
3936
|
-
"kind": "javascript-module",
|
|
3937
|
-
"path": "src/accordion/index.ts",
|
|
3938
|
-
"declarations": [],
|
|
3939
|
-
"exports": [
|
|
3947
|
+
},
|
|
3940
3948
|
{
|
|
3941
3949
|
"kind": "js",
|
|
3942
|
-
"name": "
|
|
3950
|
+
"name": "AIIndicatorState",
|
|
3943
3951
|
"declaration": {
|
|
3944
|
-
"name": "
|
|
3945
|
-
"
|
|
3952
|
+
"name": "AIIndicatorState",
|
|
3953
|
+
"module": "./ai-indicator"
|
|
3946
3954
|
}
|
|
3947
3955
|
},
|
|
3948
3956
|
{
|
|
3949
3957
|
"kind": "js",
|
|
3950
|
-
"name": "
|
|
3958
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3951
3959
|
"declaration": {
|
|
3952
|
-
"name": "
|
|
3953
|
-
"
|
|
3960
|
+
"name": "foundationAiIndicatorTemplate",
|
|
3961
|
+
"module": "./ai-indicator.template"
|
|
3954
3962
|
}
|
|
3955
3963
|
},
|
|
3956
3964
|
{
|
|
3957
3965
|
"kind": "js",
|
|
3958
|
-
"name": "
|
|
3966
|
+
"name": "foundationAiIndicatorStyles",
|
|
3959
3967
|
"declaration": {
|
|
3960
|
-
"name": "
|
|
3961
|
-
"
|
|
3968
|
+
"name": "foundationAiIndicatorStyles",
|
|
3969
|
+
"module": "./ai-indicator.styles"
|
|
3962
3970
|
}
|
|
3963
3971
|
}
|
|
3964
3972
|
]
|
|
@@ -38644,6 +38652,403 @@
|
|
|
38644
38652
|
}
|
|
38645
38653
|
]
|
|
38646
38654
|
},
|
|
38655
|
+
{
|
|
38656
|
+
"kind": "javascript-module",
|
|
38657
|
+
"path": "src/pill/index.ts",
|
|
38658
|
+
"declarations": [],
|
|
38659
|
+
"exports": [
|
|
38660
|
+
{
|
|
38661
|
+
"kind": "js",
|
|
38662
|
+
"name": "*",
|
|
38663
|
+
"declaration": {
|
|
38664
|
+
"name": "*",
|
|
38665
|
+
"package": "./pill"
|
|
38666
|
+
}
|
|
38667
|
+
},
|
|
38668
|
+
{
|
|
38669
|
+
"kind": "js",
|
|
38670
|
+
"name": "*",
|
|
38671
|
+
"declaration": {
|
|
38672
|
+
"name": "*",
|
|
38673
|
+
"package": "./pill.styles"
|
|
38674
|
+
}
|
|
38675
|
+
},
|
|
38676
|
+
{
|
|
38677
|
+
"kind": "js",
|
|
38678
|
+
"name": "*",
|
|
38679
|
+
"declaration": {
|
|
38680
|
+
"name": "*",
|
|
38681
|
+
"package": "./pill.template"
|
|
38682
|
+
}
|
|
38683
|
+
}
|
|
38684
|
+
]
|
|
38685
|
+
},
|
|
38686
|
+
{
|
|
38687
|
+
"kind": "javascript-module",
|
|
38688
|
+
"path": "src/pill/pill.styles.ts",
|
|
38689
|
+
"declarations": [
|
|
38690
|
+
{
|
|
38691
|
+
"kind": "variable",
|
|
38692
|
+
"name": "pillStyles",
|
|
38693
|
+
"default": "css`\n :host {\n --pill-fill: var(--neutral-fill-rest, #e5e5e5);\n --pill-fill-hover: var(--neutral-fill-hover, #d9d9d9);\n --pill-foreground: var(--neutral-foreground-rest, #1a1a1a);\n --pill-border-radius: 12px;\n\n display: inline-flex;\n }\n\n .pill {\n display: inline-flex;\n align-items: center;\n gap: 4px;\n height: 24px;\n padding: 0 4px 0 10px;\n border-radius: var(--pill-border-radius);\n background: var(--pill-fill);\n color: var(--pill-foreground);\n font-size: 12px;\n line-height: 1;\n }\n\n .pill[disabled] {\n opacity: 50%;\n }\n\n .pill-body {\n display: inline-flex;\n align-items: center;\n gap: 4px;\n border: none;\n background: transparent;\n color: inherit;\n font: inherit;\n padding: 0;\n cursor: pointer;\n }\n\n .pill-body:disabled {\n cursor: not-allowed;\n }\n\n .pill-label {\n font-weight: 600;\n white-space: nowrap;\n }\n\n .pill-value {\n white-space: nowrap;\n }\n\n .pill-remove {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: 16px;\n height: 16px;\n border: none;\n border-radius: 50%;\n background: transparent;\n color: inherit;\n cursor: pointer;\n padding: 0;\n }\n\n .pill-remove:hover {\n background: var(--pill-fill-hover);\n }\n\n .pill-remove:disabled {\n cursor: not-allowed;\n }\n`"
|
|
38694
|
+
}
|
|
38695
|
+
],
|
|
38696
|
+
"exports": [
|
|
38697
|
+
{
|
|
38698
|
+
"kind": "js",
|
|
38699
|
+
"name": "pillStyles",
|
|
38700
|
+
"declaration": {
|
|
38701
|
+
"name": "pillStyles",
|
|
38702
|
+
"module": "src/pill/pill.styles.ts"
|
|
38703
|
+
}
|
|
38704
|
+
}
|
|
38705
|
+
]
|
|
38706
|
+
},
|
|
38707
|
+
{
|
|
38708
|
+
"kind": "javascript-module",
|
|
38709
|
+
"path": "src/pill/pill.template.ts",
|
|
38710
|
+
"declarations": [
|
|
38711
|
+
{
|
|
38712
|
+
"kind": "variable",
|
|
38713
|
+
"name": "foundationPillTemplate",
|
|
38714
|
+
"default": "html<Pill>`\n ${(x) => getPrefixedPillTemplate(getPrefix(x))}\n`"
|
|
38715
|
+
}
|
|
38716
|
+
],
|
|
38717
|
+
"exports": [
|
|
38718
|
+
{
|
|
38719
|
+
"kind": "js",
|
|
38720
|
+
"name": "foundationPillTemplate",
|
|
38721
|
+
"declaration": {
|
|
38722
|
+
"name": "foundationPillTemplate",
|
|
38723
|
+
"module": "src/pill/pill.template.ts"
|
|
38724
|
+
}
|
|
38725
|
+
}
|
|
38726
|
+
]
|
|
38727
|
+
},
|
|
38728
|
+
{
|
|
38729
|
+
"kind": "javascript-module",
|
|
38730
|
+
"path": "src/pill/pill.ts",
|
|
38731
|
+
"declarations": [
|
|
38732
|
+
{
|
|
38733
|
+
"kind": "variable",
|
|
38734
|
+
"name": "foundationPillShadowOptions",
|
|
38735
|
+
"type": {
|
|
38736
|
+
"text": "ShadowRootInit"
|
|
38737
|
+
},
|
|
38738
|
+
"default": "undefined"
|
|
38739
|
+
},
|
|
38740
|
+
{
|
|
38741
|
+
"kind": "variable",
|
|
38742
|
+
"name": "defaultPillConfig",
|
|
38743
|
+
"type": {
|
|
38744
|
+
"text": "object"
|
|
38745
|
+
},
|
|
38746
|
+
"default": "{}"
|
|
38747
|
+
},
|
|
38748
|
+
{
|
|
38749
|
+
"kind": "class",
|
|
38750
|
+
"description": "",
|
|
38751
|
+
"name": "Pill",
|
|
38752
|
+
"members": [
|
|
38753
|
+
{
|
|
38754
|
+
"kind": "field",
|
|
38755
|
+
"name": "label",
|
|
38756
|
+
"type": {
|
|
38757
|
+
"text": "string"
|
|
38758
|
+
},
|
|
38759
|
+
"attribute": "label"
|
|
38760
|
+
},
|
|
38761
|
+
{
|
|
38762
|
+
"kind": "field",
|
|
38763
|
+
"name": "value",
|
|
38764
|
+
"type": {
|
|
38765
|
+
"text": "string"
|
|
38766
|
+
},
|
|
38767
|
+
"attribute": "value"
|
|
38768
|
+
},
|
|
38769
|
+
{
|
|
38770
|
+
"kind": "field",
|
|
38771
|
+
"name": "removable",
|
|
38772
|
+
"type": {
|
|
38773
|
+
"text": "boolean"
|
|
38774
|
+
},
|
|
38775
|
+
"default": "true",
|
|
38776
|
+
"attribute": "removable"
|
|
38777
|
+
},
|
|
38778
|
+
{
|
|
38779
|
+
"kind": "field",
|
|
38780
|
+
"name": "disabled",
|
|
38781
|
+
"type": {
|
|
38782
|
+
"text": "boolean"
|
|
38783
|
+
},
|
|
38784
|
+
"default": "false",
|
|
38785
|
+
"attribute": "disabled"
|
|
38786
|
+
},
|
|
38787
|
+
{
|
|
38788
|
+
"kind": "method",
|
|
38789
|
+
"name": "handleBodyClick",
|
|
38790
|
+
"return": {
|
|
38791
|
+
"type": {
|
|
38792
|
+
"text": "void"
|
|
38793
|
+
}
|
|
38794
|
+
}
|
|
38795
|
+
},
|
|
38796
|
+
{
|
|
38797
|
+
"kind": "method",
|
|
38798
|
+
"name": "handleRemoveClick",
|
|
38799
|
+
"return": {
|
|
38800
|
+
"type": {
|
|
38801
|
+
"text": "void"
|
|
38802
|
+
}
|
|
38803
|
+
},
|
|
38804
|
+
"parameters": [
|
|
38805
|
+
{
|
|
38806
|
+
"name": "event",
|
|
38807
|
+
"type": {
|
|
38808
|
+
"text": "Event"
|
|
38809
|
+
}
|
|
38810
|
+
}
|
|
38811
|
+
]
|
|
38812
|
+
},
|
|
38813
|
+
{
|
|
38814
|
+
"kind": "field",
|
|
38815
|
+
"name": "_presentation",
|
|
38816
|
+
"type": {
|
|
38817
|
+
"text": "ComponentPresentation | null | undefined"
|
|
38818
|
+
},
|
|
38819
|
+
"privacy": "private",
|
|
38820
|
+
"default": "void 0",
|
|
38821
|
+
"inheritedFrom": {
|
|
38822
|
+
"name": "FoundationElement",
|
|
38823
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38824
|
+
}
|
|
38825
|
+
},
|
|
38826
|
+
{
|
|
38827
|
+
"kind": "field",
|
|
38828
|
+
"name": "$presentation",
|
|
38829
|
+
"type": {
|
|
38830
|
+
"text": "ComponentPresentation | null"
|
|
38831
|
+
},
|
|
38832
|
+
"privacy": "public",
|
|
38833
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
38834
|
+
"inheritedFrom": {
|
|
38835
|
+
"name": "FoundationElement",
|
|
38836
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38837
|
+
}
|
|
38838
|
+
},
|
|
38839
|
+
{
|
|
38840
|
+
"kind": "field",
|
|
38841
|
+
"name": "template",
|
|
38842
|
+
"type": {
|
|
38843
|
+
"text": "ElementViewTemplate | void | null"
|
|
38844
|
+
},
|
|
38845
|
+
"privacy": "public",
|
|
38846
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
38847
|
+
"inheritedFrom": {
|
|
38848
|
+
"name": "FoundationElement",
|
|
38849
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38850
|
+
}
|
|
38851
|
+
},
|
|
38852
|
+
{
|
|
38853
|
+
"kind": "method",
|
|
38854
|
+
"name": "templateChanged",
|
|
38855
|
+
"privacy": "protected",
|
|
38856
|
+
"return": {
|
|
38857
|
+
"type": {
|
|
38858
|
+
"text": "void"
|
|
38859
|
+
}
|
|
38860
|
+
},
|
|
38861
|
+
"inheritedFrom": {
|
|
38862
|
+
"name": "FoundationElement",
|
|
38863
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38864
|
+
}
|
|
38865
|
+
},
|
|
38866
|
+
{
|
|
38867
|
+
"kind": "field",
|
|
38868
|
+
"name": "styles",
|
|
38869
|
+
"type": {
|
|
38870
|
+
"text": "ElementStyles | void | null"
|
|
38871
|
+
},
|
|
38872
|
+
"privacy": "public",
|
|
38873
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
38874
|
+
"inheritedFrom": {
|
|
38875
|
+
"name": "FoundationElement",
|
|
38876
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38877
|
+
}
|
|
38878
|
+
},
|
|
38879
|
+
{
|
|
38880
|
+
"kind": "method",
|
|
38881
|
+
"name": "stylesChanged",
|
|
38882
|
+
"privacy": "protected",
|
|
38883
|
+
"return": {
|
|
38884
|
+
"type": {
|
|
38885
|
+
"text": "void"
|
|
38886
|
+
}
|
|
38887
|
+
},
|
|
38888
|
+
"inheritedFrom": {
|
|
38889
|
+
"name": "FoundationElement",
|
|
38890
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38891
|
+
}
|
|
38892
|
+
},
|
|
38893
|
+
{
|
|
38894
|
+
"kind": "method",
|
|
38895
|
+
"name": "compose",
|
|
38896
|
+
"privacy": "public",
|
|
38897
|
+
"static": true,
|
|
38898
|
+
"return": {
|
|
38899
|
+
"type": {
|
|
38900
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
38901
|
+
}
|
|
38902
|
+
},
|
|
38903
|
+
"parameters": [
|
|
38904
|
+
{
|
|
38905
|
+
"name": "this",
|
|
38906
|
+
"type": {
|
|
38907
|
+
"text": "K"
|
|
38908
|
+
}
|
|
38909
|
+
},
|
|
38910
|
+
{
|
|
38911
|
+
"name": "elementDefinition",
|
|
38912
|
+
"type": {
|
|
38913
|
+
"text": "T"
|
|
38914
|
+
},
|
|
38915
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
38916
|
+
}
|
|
38917
|
+
],
|
|
38918
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
38919
|
+
"inheritedFrom": {
|
|
38920
|
+
"name": "FoundationElement",
|
|
38921
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
38922
|
+
}
|
|
38923
|
+
}
|
|
38924
|
+
],
|
|
38925
|
+
"events": [
|
|
38926
|
+
{
|
|
38927
|
+
"description": "Fired when the remove control is activated.",
|
|
38928
|
+
"name": "remove"
|
|
38929
|
+
},
|
|
38930
|
+
{
|
|
38931
|
+
"description": "Fired when the pill body (excluding the remove control) is activated.",
|
|
38932
|
+
"name": "pill-click"
|
|
38933
|
+
}
|
|
38934
|
+
],
|
|
38935
|
+
"attributes": [
|
|
38936
|
+
{
|
|
38937
|
+
"name": "label",
|
|
38938
|
+
"type": {
|
|
38939
|
+
"text": "string"
|
|
38940
|
+
},
|
|
38941
|
+
"fieldName": "label",
|
|
38942
|
+
"description": "the name of the thing this pill represents, e.g. a filter field name"
|
|
38943
|
+
},
|
|
38944
|
+
{
|
|
38945
|
+
"name": "value",
|
|
38946
|
+
"type": {
|
|
38947
|
+
"text": "string"
|
|
38948
|
+
},
|
|
38949
|
+
"fieldName": "value",
|
|
38950
|
+
"description": "the current value shown alongside the label, e.g. \"Cpty Desk: EQUITIES\""
|
|
38951
|
+
},
|
|
38952
|
+
{
|
|
38953
|
+
"name": "removable",
|
|
38954
|
+
"type": {
|
|
38955
|
+
"text": "boolean"
|
|
38956
|
+
},
|
|
38957
|
+
"default": "true",
|
|
38958
|
+
"fieldName": "removable",
|
|
38959
|
+
"description": "whether the \"x\" remove control is shown"
|
|
38960
|
+
},
|
|
38961
|
+
{
|
|
38962
|
+
"name": "disabled",
|
|
38963
|
+
"type": {
|
|
38964
|
+
"text": "boolean"
|
|
38965
|
+
},
|
|
38966
|
+
"default": "false",
|
|
38967
|
+
"fieldName": "disabled",
|
|
38968
|
+
"description": "disables both the pill body and the remove control"
|
|
38969
|
+
},
|
|
38970
|
+
{
|
|
38971
|
+
"name": "label",
|
|
38972
|
+
"type": {
|
|
38973
|
+
"text": "string"
|
|
38974
|
+
},
|
|
38975
|
+
"attribute": "label",
|
|
38976
|
+
"fieldName": "label"
|
|
38977
|
+
},
|
|
38978
|
+
{
|
|
38979
|
+
"name": "value",
|
|
38980
|
+
"type": {
|
|
38981
|
+
"text": "string"
|
|
38982
|
+
},
|
|
38983
|
+
"attribute": "value",
|
|
38984
|
+
"fieldName": "value"
|
|
38985
|
+
},
|
|
38986
|
+
{
|
|
38987
|
+
"type": {
|
|
38988
|
+
"text": "boolean"
|
|
38989
|
+
},
|
|
38990
|
+
"default": "true",
|
|
38991
|
+
"attribute": "removable",
|
|
38992
|
+
"fieldName": "removable"
|
|
38993
|
+
},
|
|
38994
|
+
{
|
|
38995
|
+
"type": {
|
|
38996
|
+
"text": "boolean"
|
|
38997
|
+
},
|
|
38998
|
+
"default": "false",
|
|
38999
|
+
"attribute": "disabled",
|
|
39000
|
+
"fieldName": "disabled"
|
|
39001
|
+
}
|
|
39002
|
+
],
|
|
39003
|
+
"superclass": {
|
|
39004
|
+
"name": "FoundationElement",
|
|
39005
|
+
"package": "@microsoft/fast-foundation"
|
|
39006
|
+
},
|
|
39007
|
+
"tagName": "%%prefix%%-pill",
|
|
39008
|
+
"customElement": true
|
|
39009
|
+
},
|
|
39010
|
+
{
|
|
39011
|
+
"kind": "variable",
|
|
39012
|
+
"name": "foundationPill",
|
|
39013
|
+
"description": "The Foundation Pill",
|
|
39014
|
+
"privacy": "public"
|
|
39015
|
+
}
|
|
39016
|
+
],
|
|
39017
|
+
"exports": [
|
|
39018
|
+
{
|
|
39019
|
+
"kind": "js",
|
|
39020
|
+
"name": "foundationPillShadowOptions",
|
|
39021
|
+
"declaration": {
|
|
39022
|
+
"name": "foundationPillShadowOptions",
|
|
39023
|
+
"module": "src/pill/pill.ts"
|
|
39024
|
+
}
|
|
39025
|
+
},
|
|
39026
|
+
{
|
|
39027
|
+
"kind": "js",
|
|
39028
|
+
"name": "defaultPillConfig",
|
|
39029
|
+
"declaration": {
|
|
39030
|
+
"name": "defaultPillConfig",
|
|
39031
|
+
"module": "src/pill/pill.ts"
|
|
39032
|
+
}
|
|
39033
|
+
},
|
|
39034
|
+
{
|
|
39035
|
+
"kind": "js",
|
|
39036
|
+
"name": "Pill",
|
|
39037
|
+
"declaration": {
|
|
39038
|
+
"name": "Pill",
|
|
39039
|
+
"module": "src/pill/pill.ts"
|
|
39040
|
+
}
|
|
39041
|
+
},
|
|
39042
|
+
{
|
|
39043
|
+
"kind": "js",
|
|
39044
|
+
"name": "foundationPill",
|
|
39045
|
+
"declaration": {
|
|
39046
|
+
"name": "foundationPill",
|
|
39047
|
+
"module": "src/pill/pill.ts"
|
|
39048
|
+
}
|
|
39049
|
+
}
|
|
39050
|
+
]
|
|
39051
|
+
},
|
|
38647
39052
|
{
|
|
38648
39053
|
"kind": "javascript-module",
|
|
38649
39054
|
"path": "src/popper/index.ts",
|