@genesislcap/foundation-ui 14.167.2 → 14.167.3-alpha-b40d1e5.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 +1949 -1376
- package/dist/dts/base-components.d.ts +8 -7
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/error-boundary/error-boundary.d.ts +3 -0
- package/dist/dts/error-boundary/error-boundary.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/notification-listener/notification-listener.d.ts +3 -0
- package/dist/dts/notification-listener/notification-listener.d.ts.map +1 -1
- package/dist/dts/overlays/index.d.ts +2 -0
- package/dist/dts/overlays/index.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/index.d.ts +2 -0
- package/dist/dts/overlays/system-health/index.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/system-health-overlay.d.ts +131 -0
- package/dist/dts/overlays/system-health/system-health-overlay.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/types.d.ts +22 -0
- package/dist/dts/overlays/system-health/types.d.ts.map +1 -0
- package/dist/dts/utils/base-datasource.d.ts.map +1 -1
- package/dist/dts/utils/logger.d.ts +2 -0
- package/dist/dts/utils/logger.d.ts.map +1 -1
- package/dist/esm/base-components.js +7 -5
- package/dist/esm/error-boundary/error-boundary.js +18 -2
- package/dist/esm/index.js +1 -0
- package/dist/esm/notification-listener/notification-listener.js +18 -2
- package/dist/esm/overlays/index.js +1 -0
- package/dist/esm/overlays/system-health/index.js +1 -0
- package/dist/esm/overlays/system-health/system-health-overlay.js +756 -0
- package/dist/esm/overlays/system-health/types.js +8 -0
- package/dist/esm/utils/base-datasource.js +10 -0
- package/dist/esm/utils/logger.js +2 -1
- package/package.json +15 -15
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n foundationAccordion,\n foundationAccordionItem,\n foundationActionsMenu,\n foundationAnchor,\n foundationAnchoredRegion,\n foundationAvatar,\n foundationBadge,\n foundationBanner,\n foundationBreadcrumbItem,\n foundationBreadcrumb,\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 foundationErrorBoundary,\n foundationErrorBanner,\n foundationErrorDialog,\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 foundationProgress,\n foundationPopper,\n foundationProgressRing,\n foundationRadio,\n foundationRadioGroup,\n foundationSearchBar,\n foundationSearchBarCombobox,\n foundationSegmentedControl,\n foundationSegmentedItem,\n foundationSelect,\n foundationSkeleton,\n foundationSlider,\n foundationSliderLabel,\n foundationSnackbar,\n foundationStepper,\n foundationStepperTab,\n foundationStepperTabPanel,\n foundationStackingIcons,\n foundationSwitch,\n foundationTab,\n foundationTabPanel,\n foundationTabs,\n foundationTextArea,\n foundationTextField,\n foundationToast,\n foundationToolbar,\n foundationTooltip,\n foundationTreeItem,\n foundationTreeView,\n foundationUrlInput,\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 foundationAccordionItem,\n foundationActionsMenu,\n foundationAnchor,\n foundationAnchoredRegion,\n foundationAvatar,\n foundationBadge,\n foundationBanner,\n foundationBreadcrumbItem,\n foundationBreadcrumb,\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 foundationErrorBoundary,\n foundationErrorBanner,\n foundationErrorDialog,\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 foundationProgress,\n foundationPopper,\n foundationProgressRing,\n foundationRadio,\n foundationRadioGroup,\n foundationSearchBar,\n foundationSearchBarCombobox,\n foundationSegmentedControl,\n foundationSegmentedItem,\n foundationSelect,\n foundationSkeleton,\n foundationSlider,\n foundationSliderLabel,\n foundationSnackbar,\n foundationStepper,\n foundationStepperTab,\n foundationStepperTabPanel,\n foundationStackingIcons,\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 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": [
|
|
@@ -482,6 +482,14 @@
|
|
|
482
482
|
"package": "./options-datasource"
|
|
483
483
|
}
|
|
484
484
|
},
|
|
485
|
+
{
|
|
486
|
+
"kind": "js",
|
|
487
|
+
"name": "*",
|
|
488
|
+
"declaration": {
|
|
489
|
+
"name": "*",
|
|
490
|
+
"package": "./overlays"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
485
493
|
{
|
|
486
494
|
"kind": "js",
|
|
487
495
|
"name": "*",
|
|
@@ -8508,6 +8516,374 @@
|
|
|
8508
8516
|
}
|
|
8509
8517
|
]
|
|
8510
8518
|
},
|
|
8519
|
+
{
|
|
8520
|
+
"kind": "javascript-module",
|
|
8521
|
+
"path": "src/checkbox/checkbox.styles.ts",
|
|
8522
|
+
"declarations": [
|
|
8523
|
+
{
|
|
8524
|
+
"kind": "function",
|
|
8525
|
+
"name": "foundationCheckboxStyles",
|
|
8526
|
+
"return": {
|
|
8527
|
+
"type": {
|
|
8528
|
+
"text": "ElementStyles"
|
|
8529
|
+
}
|
|
8530
|
+
},
|
|
8531
|
+
"parameters": [
|
|
8532
|
+
{
|
|
8533
|
+
"name": "context",
|
|
8534
|
+
"type": {
|
|
8535
|
+
"text": "ElementDefinitionContext"
|
|
8536
|
+
}
|
|
8537
|
+
},
|
|
8538
|
+
{
|
|
8539
|
+
"name": "definition",
|
|
8540
|
+
"type": {
|
|
8541
|
+
"text": "CheckboxOptions"
|
|
8542
|
+
}
|
|
8543
|
+
}
|
|
8544
|
+
]
|
|
8545
|
+
}
|
|
8546
|
+
],
|
|
8547
|
+
"exports": [
|
|
8548
|
+
{
|
|
8549
|
+
"kind": "js",
|
|
8550
|
+
"name": "foundationCheckboxStyles",
|
|
8551
|
+
"declaration": {
|
|
8552
|
+
"name": "foundationCheckboxStyles",
|
|
8553
|
+
"module": "src/checkbox/checkbox.styles.ts"
|
|
8554
|
+
}
|
|
8555
|
+
}
|
|
8556
|
+
]
|
|
8557
|
+
},
|
|
8558
|
+
{
|
|
8559
|
+
"kind": "javascript-module",
|
|
8560
|
+
"path": "src/checkbox/checkbox.template.ts",
|
|
8561
|
+
"declarations": [
|
|
8562
|
+
{
|
|
8563
|
+
"kind": "function",
|
|
8564
|
+
"name": "foundationCheckboxTemplate",
|
|
8565
|
+
"return": {
|
|
8566
|
+
"type": {
|
|
8567
|
+
"text": "ViewTemplate<Checkbox>"
|
|
8568
|
+
}
|
|
8569
|
+
},
|
|
8570
|
+
"parameters": [
|
|
8571
|
+
{
|
|
8572
|
+
"name": "context",
|
|
8573
|
+
"type": {
|
|
8574
|
+
"text": "ElementDefinitionContext"
|
|
8575
|
+
}
|
|
8576
|
+
},
|
|
8577
|
+
{
|
|
8578
|
+
"name": "definition",
|
|
8579
|
+
"type": {
|
|
8580
|
+
"text": "CheckboxOptions"
|
|
8581
|
+
}
|
|
8582
|
+
}
|
|
8583
|
+
]
|
|
8584
|
+
}
|
|
8585
|
+
],
|
|
8586
|
+
"exports": [
|
|
8587
|
+
{
|
|
8588
|
+
"kind": "js",
|
|
8589
|
+
"name": "foundationCheckboxTemplate",
|
|
8590
|
+
"declaration": {
|
|
8591
|
+
"name": "foundationCheckboxTemplate",
|
|
8592
|
+
"module": "src/checkbox/checkbox.template.ts"
|
|
8593
|
+
}
|
|
8594
|
+
}
|
|
8595
|
+
]
|
|
8596
|
+
},
|
|
8597
|
+
{
|
|
8598
|
+
"kind": "javascript-module",
|
|
8599
|
+
"path": "src/checkbox/checkbox.ts",
|
|
8600
|
+
"declarations": [
|
|
8601
|
+
{
|
|
8602
|
+
"kind": "class",
|
|
8603
|
+
"description": "",
|
|
8604
|
+
"name": "Checkbox",
|
|
8605
|
+
"superclass": {
|
|
8606
|
+
"name": "FASTCheckbox",
|
|
8607
|
+
"package": "@microsoft/fast-components"
|
|
8608
|
+
},
|
|
8609
|
+
"tagName": "%%prefix%%-checkbox",
|
|
8610
|
+
"customElement": true,
|
|
8611
|
+
"attributes": [
|
|
8612
|
+
{
|
|
8613
|
+
"name": "readonly",
|
|
8614
|
+
"type": {
|
|
8615
|
+
"text": "boolean"
|
|
8616
|
+
},
|
|
8617
|
+
"description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
|
|
8618
|
+
"fieldName": "readOnly",
|
|
8619
|
+
"inheritedFrom": {
|
|
8620
|
+
"name": "Checkbox",
|
|
8621
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8622
|
+
}
|
|
8623
|
+
}
|
|
8624
|
+
],
|
|
8625
|
+
"members": [
|
|
8626
|
+
{
|
|
8627
|
+
"kind": "field",
|
|
8628
|
+
"name": "readOnly",
|
|
8629
|
+
"type": {
|
|
8630
|
+
"text": "boolean"
|
|
8631
|
+
},
|
|
8632
|
+
"privacy": "public",
|
|
8633
|
+
"description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
|
|
8634
|
+
"inheritedFrom": {
|
|
8635
|
+
"name": "Checkbox",
|
|
8636
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8637
|
+
}
|
|
8638
|
+
},
|
|
8639
|
+
{
|
|
8640
|
+
"kind": "method",
|
|
8641
|
+
"name": "readOnlyChanged",
|
|
8642
|
+
"privacy": "private",
|
|
8643
|
+
"return": {
|
|
8644
|
+
"type": {
|
|
8645
|
+
"text": "void"
|
|
8646
|
+
}
|
|
8647
|
+
},
|
|
8648
|
+
"inheritedFrom": {
|
|
8649
|
+
"name": "Checkbox",
|
|
8650
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8651
|
+
}
|
|
8652
|
+
},
|
|
8653
|
+
{
|
|
8654
|
+
"kind": "field",
|
|
8655
|
+
"name": "indeterminate",
|
|
8656
|
+
"type": {
|
|
8657
|
+
"text": "boolean"
|
|
8658
|
+
},
|
|
8659
|
+
"privacy": "public",
|
|
8660
|
+
"default": "false",
|
|
8661
|
+
"description": "The indeterminate state of the control",
|
|
8662
|
+
"inheritedFrom": {
|
|
8663
|
+
"name": "Checkbox",
|
|
8664
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8665
|
+
}
|
|
8666
|
+
},
|
|
8667
|
+
{
|
|
8668
|
+
"kind": "field",
|
|
8669
|
+
"name": "proxy",
|
|
8670
|
+
"inheritedFrom": {
|
|
8671
|
+
"name": "Checkbox",
|
|
8672
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8673
|
+
}
|
|
8674
|
+
},
|
|
8675
|
+
{
|
|
8676
|
+
"kind": "field",
|
|
8677
|
+
"name": "_presentation",
|
|
8678
|
+
"type": {
|
|
8679
|
+
"text": "ComponentPresentation | null | undefined"
|
|
8680
|
+
},
|
|
8681
|
+
"privacy": "private",
|
|
8682
|
+
"default": "void 0",
|
|
8683
|
+
"inheritedFrom": {
|
|
8684
|
+
"name": "Checkbox",
|
|
8685
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8686
|
+
}
|
|
8687
|
+
},
|
|
8688
|
+
{
|
|
8689
|
+
"kind": "field",
|
|
8690
|
+
"name": "$presentation",
|
|
8691
|
+
"type": {
|
|
8692
|
+
"text": "ComponentPresentation | null"
|
|
8693
|
+
},
|
|
8694
|
+
"privacy": "public",
|
|
8695
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
8696
|
+
"inheritedFrom": {
|
|
8697
|
+
"name": "Checkbox",
|
|
8698
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8699
|
+
}
|
|
8700
|
+
},
|
|
8701
|
+
{
|
|
8702
|
+
"kind": "field",
|
|
8703
|
+
"name": "template",
|
|
8704
|
+
"type": {
|
|
8705
|
+
"text": "ElementViewTemplate | void | null"
|
|
8706
|
+
},
|
|
8707
|
+
"privacy": "public",
|
|
8708
|
+
"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.",
|
|
8709
|
+
"inheritedFrom": {
|
|
8710
|
+
"name": "Checkbox",
|
|
8711
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8712
|
+
}
|
|
8713
|
+
},
|
|
8714
|
+
{
|
|
8715
|
+
"kind": "method",
|
|
8716
|
+
"name": "templateChanged",
|
|
8717
|
+
"privacy": "protected",
|
|
8718
|
+
"return": {
|
|
8719
|
+
"type": {
|
|
8720
|
+
"text": "void"
|
|
8721
|
+
}
|
|
8722
|
+
},
|
|
8723
|
+
"inheritedFrom": {
|
|
8724
|
+
"name": "Checkbox",
|
|
8725
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8726
|
+
}
|
|
8727
|
+
},
|
|
8728
|
+
{
|
|
8729
|
+
"kind": "field",
|
|
8730
|
+
"name": "styles",
|
|
8731
|
+
"type": {
|
|
8732
|
+
"text": "ElementStyles | void | null"
|
|
8733
|
+
},
|
|
8734
|
+
"privacy": "public",
|
|
8735
|
+
"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.",
|
|
8736
|
+
"inheritedFrom": {
|
|
8737
|
+
"name": "Checkbox",
|
|
8738
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8739
|
+
}
|
|
8740
|
+
},
|
|
8741
|
+
{
|
|
8742
|
+
"kind": "method",
|
|
8743
|
+
"name": "stylesChanged",
|
|
8744
|
+
"privacy": "protected",
|
|
8745
|
+
"return": {
|
|
8746
|
+
"type": {
|
|
8747
|
+
"text": "void"
|
|
8748
|
+
}
|
|
8749
|
+
},
|
|
8750
|
+
"inheritedFrom": {
|
|
8751
|
+
"name": "Checkbox",
|
|
8752
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8753
|
+
}
|
|
8754
|
+
},
|
|
8755
|
+
{
|
|
8756
|
+
"kind": "method",
|
|
8757
|
+
"name": "compose",
|
|
8758
|
+
"privacy": "public",
|
|
8759
|
+
"static": true,
|
|
8760
|
+
"return": {
|
|
8761
|
+
"type": {
|
|
8762
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
8763
|
+
}
|
|
8764
|
+
},
|
|
8765
|
+
"parameters": [
|
|
8766
|
+
{
|
|
8767
|
+
"name": "this",
|
|
8768
|
+
"type": {
|
|
8769
|
+
"text": "K"
|
|
8770
|
+
}
|
|
8771
|
+
},
|
|
8772
|
+
{
|
|
8773
|
+
"name": "elementDefinition",
|
|
8774
|
+
"type": {
|
|
8775
|
+
"text": "T"
|
|
8776
|
+
},
|
|
8777
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
8778
|
+
}
|
|
8779
|
+
],
|
|
8780
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
8781
|
+
"inheritedFrom": {
|
|
8782
|
+
"name": "Checkbox",
|
|
8783
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8784
|
+
}
|
|
8785
|
+
}
|
|
8786
|
+
],
|
|
8787
|
+
"events": [
|
|
8788
|
+
{
|
|
8789
|
+
"description": "Emits a custom change event when the checked state changes",
|
|
8790
|
+
"name": "change",
|
|
8791
|
+
"inheritedFrom": {
|
|
8792
|
+
"name": "Checkbox",
|
|
8793
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8794
|
+
}
|
|
8795
|
+
}
|
|
8796
|
+
]
|
|
8797
|
+
},
|
|
8798
|
+
{
|
|
8799
|
+
"kind": "variable",
|
|
8800
|
+
"name": "foundationCheckboxShadowOptions",
|
|
8801
|
+
"type": {
|
|
8802
|
+
"text": "ShadowRootInit"
|
|
8803
|
+
},
|
|
8804
|
+
"default": "undefined"
|
|
8805
|
+
},
|
|
8806
|
+
{
|
|
8807
|
+
"kind": "variable",
|
|
8808
|
+
"name": "defaultCheckboxConfig",
|
|
8809
|
+
"type": {
|
|
8810
|
+
"text": "object"
|
|
8811
|
+
},
|
|
8812
|
+
"default": "{\n checkedIndicator: `\n <svg\n aria-hidden=\"true\"\n part=\"checked-indicator\"\n class=\"checked-indicator\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M8.143 12.6697L15.235 4.5L16.8 5.90363L8.23812 15.7667L3.80005 11.2556L5.27591 9.7555L8.143 12.6697Z\"\n />\n </svg>\n `,\n indeterminateIndicator: `\n <div part=\"indeterminate-indicator\" class=\"indeterminate-indicator\"></div>\n `,\n}"
|
|
8813
|
+
},
|
|
8814
|
+
{
|
|
8815
|
+
"kind": "variable",
|
|
8816
|
+
"name": "foundationCheckbox",
|
|
8817
|
+
"description": "The Foundation Checkbox",
|
|
8818
|
+
"privacy": "public"
|
|
8819
|
+
}
|
|
8820
|
+
],
|
|
8821
|
+
"exports": [
|
|
8822
|
+
{
|
|
8823
|
+
"kind": "js",
|
|
8824
|
+
"name": "Checkbox",
|
|
8825
|
+
"declaration": {
|
|
8826
|
+
"name": "Checkbox",
|
|
8827
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8828
|
+
}
|
|
8829
|
+
},
|
|
8830
|
+
{
|
|
8831
|
+
"kind": "js",
|
|
8832
|
+
"name": "foundationCheckboxShadowOptions",
|
|
8833
|
+
"declaration": {
|
|
8834
|
+
"name": "foundationCheckboxShadowOptions",
|
|
8835
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8836
|
+
}
|
|
8837
|
+
},
|
|
8838
|
+
{
|
|
8839
|
+
"kind": "js",
|
|
8840
|
+
"name": "defaultCheckboxConfig",
|
|
8841
|
+
"declaration": {
|
|
8842
|
+
"name": "defaultCheckboxConfig",
|
|
8843
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8844
|
+
}
|
|
8845
|
+
},
|
|
8846
|
+
{
|
|
8847
|
+
"kind": "js",
|
|
8848
|
+
"name": "foundationCheckbox",
|
|
8849
|
+
"declaration": {
|
|
8850
|
+
"name": "foundationCheckbox",
|
|
8851
|
+
"module": "src/checkbox/checkbox.ts"
|
|
8852
|
+
}
|
|
8853
|
+
}
|
|
8854
|
+
]
|
|
8855
|
+
},
|
|
8856
|
+
{
|
|
8857
|
+
"kind": "javascript-module",
|
|
8858
|
+
"path": "src/checkbox/index.ts",
|
|
8859
|
+
"declarations": [],
|
|
8860
|
+
"exports": [
|
|
8861
|
+
{
|
|
8862
|
+
"kind": "js",
|
|
8863
|
+
"name": "*",
|
|
8864
|
+
"declaration": {
|
|
8865
|
+
"name": "*",
|
|
8866
|
+
"package": "./checkbox.template"
|
|
8867
|
+
}
|
|
8868
|
+
},
|
|
8869
|
+
{
|
|
8870
|
+
"kind": "js",
|
|
8871
|
+
"name": "*",
|
|
8872
|
+
"declaration": {
|
|
8873
|
+
"name": "*",
|
|
8874
|
+
"package": "./checkbox.styles"
|
|
8875
|
+
}
|
|
8876
|
+
},
|
|
8877
|
+
{
|
|
8878
|
+
"kind": "js",
|
|
8879
|
+
"name": "*",
|
|
8880
|
+
"declaration": {
|
|
8881
|
+
"name": "*",
|
|
8882
|
+
"package": "./checkbox"
|
|
8883
|
+
}
|
|
8884
|
+
}
|
|
8885
|
+
]
|
|
8886
|
+
},
|
|
8511
8887
|
{
|
|
8512
8888
|
"kind": "javascript-module",
|
|
8513
8889
|
"path": "src/combobox/combobox.styles.ts",
|
|
@@ -8956,374 +9332,6 @@
|
|
|
8956
9332
|
}
|
|
8957
9333
|
]
|
|
8958
9334
|
},
|
|
8959
|
-
{
|
|
8960
|
-
"kind": "javascript-module",
|
|
8961
|
-
"path": "src/checkbox/checkbox.styles.ts",
|
|
8962
|
-
"declarations": [
|
|
8963
|
-
{
|
|
8964
|
-
"kind": "function",
|
|
8965
|
-
"name": "foundationCheckboxStyles",
|
|
8966
|
-
"return": {
|
|
8967
|
-
"type": {
|
|
8968
|
-
"text": "ElementStyles"
|
|
8969
|
-
}
|
|
8970
|
-
},
|
|
8971
|
-
"parameters": [
|
|
8972
|
-
{
|
|
8973
|
-
"name": "context",
|
|
8974
|
-
"type": {
|
|
8975
|
-
"text": "ElementDefinitionContext"
|
|
8976
|
-
}
|
|
8977
|
-
},
|
|
8978
|
-
{
|
|
8979
|
-
"name": "definition",
|
|
8980
|
-
"type": {
|
|
8981
|
-
"text": "CheckboxOptions"
|
|
8982
|
-
}
|
|
8983
|
-
}
|
|
8984
|
-
]
|
|
8985
|
-
}
|
|
8986
|
-
],
|
|
8987
|
-
"exports": [
|
|
8988
|
-
{
|
|
8989
|
-
"kind": "js",
|
|
8990
|
-
"name": "foundationCheckboxStyles",
|
|
8991
|
-
"declaration": {
|
|
8992
|
-
"name": "foundationCheckboxStyles",
|
|
8993
|
-
"module": "src/checkbox/checkbox.styles.ts"
|
|
8994
|
-
}
|
|
8995
|
-
}
|
|
8996
|
-
]
|
|
8997
|
-
},
|
|
8998
|
-
{
|
|
8999
|
-
"kind": "javascript-module",
|
|
9000
|
-
"path": "src/checkbox/checkbox.template.ts",
|
|
9001
|
-
"declarations": [
|
|
9002
|
-
{
|
|
9003
|
-
"kind": "function",
|
|
9004
|
-
"name": "foundationCheckboxTemplate",
|
|
9005
|
-
"return": {
|
|
9006
|
-
"type": {
|
|
9007
|
-
"text": "ViewTemplate<Checkbox>"
|
|
9008
|
-
}
|
|
9009
|
-
},
|
|
9010
|
-
"parameters": [
|
|
9011
|
-
{
|
|
9012
|
-
"name": "context",
|
|
9013
|
-
"type": {
|
|
9014
|
-
"text": "ElementDefinitionContext"
|
|
9015
|
-
}
|
|
9016
|
-
},
|
|
9017
|
-
{
|
|
9018
|
-
"name": "definition",
|
|
9019
|
-
"type": {
|
|
9020
|
-
"text": "CheckboxOptions"
|
|
9021
|
-
}
|
|
9022
|
-
}
|
|
9023
|
-
]
|
|
9024
|
-
}
|
|
9025
|
-
],
|
|
9026
|
-
"exports": [
|
|
9027
|
-
{
|
|
9028
|
-
"kind": "js",
|
|
9029
|
-
"name": "foundationCheckboxTemplate",
|
|
9030
|
-
"declaration": {
|
|
9031
|
-
"name": "foundationCheckboxTemplate",
|
|
9032
|
-
"module": "src/checkbox/checkbox.template.ts"
|
|
9033
|
-
}
|
|
9034
|
-
}
|
|
9035
|
-
]
|
|
9036
|
-
},
|
|
9037
|
-
{
|
|
9038
|
-
"kind": "javascript-module",
|
|
9039
|
-
"path": "src/checkbox/checkbox.ts",
|
|
9040
|
-
"declarations": [
|
|
9041
|
-
{
|
|
9042
|
-
"kind": "class",
|
|
9043
|
-
"description": "",
|
|
9044
|
-
"name": "Checkbox",
|
|
9045
|
-
"superclass": {
|
|
9046
|
-
"name": "FASTCheckbox",
|
|
9047
|
-
"package": "@microsoft/fast-components"
|
|
9048
|
-
},
|
|
9049
|
-
"tagName": "%%prefix%%-checkbox",
|
|
9050
|
-
"customElement": true,
|
|
9051
|
-
"attributes": [
|
|
9052
|
-
{
|
|
9053
|
-
"name": "readonly",
|
|
9054
|
-
"type": {
|
|
9055
|
-
"text": "boolean"
|
|
9056
|
-
},
|
|
9057
|
-
"description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
|
|
9058
|
-
"fieldName": "readOnly",
|
|
9059
|
-
"inheritedFrom": {
|
|
9060
|
-
"name": "Checkbox",
|
|
9061
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9062
|
-
}
|
|
9063
|
-
}
|
|
9064
|
-
],
|
|
9065
|
-
"members": [
|
|
9066
|
-
{
|
|
9067
|
-
"kind": "field",
|
|
9068
|
-
"name": "readOnly",
|
|
9069
|
-
"type": {
|
|
9070
|
-
"text": "boolean"
|
|
9071
|
-
},
|
|
9072
|
-
"privacy": "public",
|
|
9073
|
-
"description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
|
|
9074
|
-
"inheritedFrom": {
|
|
9075
|
-
"name": "Checkbox",
|
|
9076
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9077
|
-
}
|
|
9078
|
-
},
|
|
9079
|
-
{
|
|
9080
|
-
"kind": "method",
|
|
9081
|
-
"name": "readOnlyChanged",
|
|
9082
|
-
"privacy": "private",
|
|
9083
|
-
"return": {
|
|
9084
|
-
"type": {
|
|
9085
|
-
"text": "void"
|
|
9086
|
-
}
|
|
9087
|
-
},
|
|
9088
|
-
"inheritedFrom": {
|
|
9089
|
-
"name": "Checkbox",
|
|
9090
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9091
|
-
}
|
|
9092
|
-
},
|
|
9093
|
-
{
|
|
9094
|
-
"kind": "field",
|
|
9095
|
-
"name": "indeterminate",
|
|
9096
|
-
"type": {
|
|
9097
|
-
"text": "boolean"
|
|
9098
|
-
},
|
|
9099
|
-
"privacy": "public",
|
|
9100
|
-
"default": "false",
|
|
9101
|
-
"description": "The indeterminate state of the control",
|
|
9102
|
-
"inheritedFrom": {
|
|
9103
|
-
"name": "Checkbox",
|
|
9104
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9105
|
-
}
|
|
9106
|
-
},
|
|
9107
|
-
{
|
|
9108
|
-
"kind": "field",
|
|
9109
|
-
"name": "proxy",
|
|
9110
|
-
"inheritedFrom": {
|
|
9111
|
-
"name": "Checkbox",
|
|
9112
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9113
|
-
}
|
|
9114
|
-
},
|
|
9115
|
-
{
|
|
9116
|
-
"kind": "field",
|
|
9117
|
-
"name": "_presentation",
|
|
9118
|
-
"type": {
|
|
9119
|
-
"text": "ComponentPresentation | null | undefined"
|
|
9120
|
-
},
|
|
9121
|
-
"privacy": "private",
|
|
9122
|
-
"default": "void 0",
|
|
9123
|
-
"inheritedFrom": {
|
|
9124
|
-
"name": "Checkbox",
|
|
9125
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9126
|
-
}
|
|
9127
|
-
},
|
|
9128
|
-
{
|
|
9129
|
-
"kind": "field",
|
|
9130
|
-
"name": "$presentation",
|
|
9131
|
-
"type": {
|
|
9132
|
-
"text": "ComponentPresentation | null"
|
|
9133
|
-
},
|
|
9134
|
-
"privacy": "public",
|
|
9135
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
9136
|
-
"inheritedFrom": {
|
|
9137
|
-
"name": "Checkbox",
|
|
9138
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9139
|
-
}
|
|
9140
|
-
},
|
|
9141
|
-
{
|
|
9142
|
-
"kind": "field",
|
|
9143
|
-
"name": "template",
|
|
9144
|
-
"type": {
|
|
9145
|
-
"text": "ElementViewTemplate | void | null"
|
|
9146
|
-
},
|
|
9147
|
-
"privacy": "public",
|
|
9148
|
-
"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.",
|
|
9149
|
-
"inheritedFrom": {
|
|
9150
|
-
"name": "Checkbox",
|
|
9151
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9152
|
-
}
|
|
9153
|
-
},
|
|
9154
|
-
{
|
|
9155
|
-
"kind": "method",
|
|
9156
|
-
"name": "templateChanged",
|
|
9157
|
-
"privacy": "protected",
|
|
9158
|
-
"return": {
|
|
9159
|
-
"type": {
|
|
9160
|
-
"text": "void"
|
|
9161
|
-
}
|
|
9162
|
-
},
|
|
9163
|
-
"inheritedFrom": {
|
|
9164
|
-
"name": "Checkbox",
|
|
9165
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9166
|
-
}
|
|
9167
|
-
},
|
|
9168
|
-
{
|
|
9169
|
-
"kind": "field",
|
|
9170
|
-
"name": "styles",
|
|
9171
|
-
"type": {
|
|
9172
|
-
"text": "ElementStyles | void | null"
|
|
9173
|
-
},
|
|
9174
|
-
"privacy": "public",
|
|
9175
|
-
"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.",
|
|
9176
|
-
"inheritedFrom": {
|
|
9177
|
-
"name": "Checkbox",
|
|
9178
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9179
|
-
}
|
|
9180
|
-
},
|
|
9181
|
-
{
|
|
9182
|
-
"kind": "method",
|
|
9183
|
-
"name": "stylesChanged",
|
|
9184
|
-
"privacy": "protected",
|
|
9185
|
-
"return": {
|
|
9186
|
-
"type": {
|
|
9187
|
-
"text": "void"
|
|
9188
|
-
}
|
|
9189
|
-
},
|
|
9190
|
-
"inheritedFrom": {
|
|
9191
|
-
"name": "Checkbox",
|
|
9192
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9193
|
-
}
|
|
9194
|
-
},
|
|
9195
|
-
{
|
|
9196
|
-
"kind": "method",
|
|
9197
|
-
"name": "compose",
|
|
9198
|
-
"privacy": "public",
|
|
9199
|
-
"static": true,
|
|
9200
|
-
"return": {
|
|
9201
|
-
"type": {
|
|
9202
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
9203
|
-
}
|
|
9204
|
-
},
|
|
9205
|
-
"parameters": [
|
|
9206
|
-
{
|
|
9207
|
-
"name": "this",
|
|
9208
|
-
"type": {
|
|
9209
|
-
"text": "K"
|
|
9210
|
-
}
|
|
9211
|
-
},
|
|
9212
|
-
{
|
|
9213
|
-
"name": "elementDefinition",
|
|
9214
|
-
"type": {
|
|
9215
|
-
"text": "T"
|
|
9216
|
-
},
|
|
9217
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
9218
|
-
}
|
|
9219
|
-
],
|
|
9220
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
9221
|
-
"inheritedFrom": {
|
|
9222
|
-
"name": "Checkbox",
|
|
9223
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9224
|
-
}
|
|
9225
|
-
}
|
|
9226
|
-
],
|
|
9227
|
-
"events": [
|
|
9228
|
-
{
|
|
9229
|
-
"description": "Emits a custom change event when the checked state changes",
|
|
9230
|
-
"name": "change",
|
|
9231
|
-
"inheritedFrom": {
|
|
9232
|
-
"name": "Checkbox",
|
|
9233
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9234
|
-
}
|
|
9235
|
-
}
|
|
9236
|
-
]
|
|
9237
|
-
},
|
|
9238
|
-
{
|
|
9239
|
-
"kind": "variable",
|
|
9240
|
-
"name": "foundationCheckboxShadowOptions",
|
|
9241
|
-
"type": {
|
|
9242
|
-
"text": "ShadowRootInit"
|
|
9243
|
-
},
|
|
9244
|
-
"default": "undefined"
|
|
9245
|
-
},
|
|
9246
|
-
{
|
|
9247
|
-
"kind": "variable",
|
|
9248
|
-
"name": "defaultCheckboxConfig",
|
|
9249
|
-
"type": {
|
|
9250
|
-
"text": "object"
|
|
9251
|
-
},
|
|
9252
|
-
"default": "{\n checkedIndicator: `\n <svg\n aria-hidden=\"true\"\n part=\"checked-indicator\"\n class=\"checked-indicator\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M8.143 12.6697L15.235 4.5L16.8 5.90363L8.23812 15.7667L3.80005 11.2556L5.27591 9.7555L8.143 12.6697Z\"\n />\n </svg>\n `,\n indeterminateIndicator: `\n <div part=\"indeterminate-indicator\" class=\"indeterminate-indicator\"></div>\n `,\n}"
|
|
9253
|
-
},
|
|
9254
|
-
{
|
|
9255
|
-
"kind": "variable",
|
|
9256
|
-
"name": "foundationCheckbox",
|
|
9257
|
-
"description": "The Foundation Checkbox",
|
|
9258
|
-
"privacy": "public"
|
|
9259
|
-
}
|
|
9260
|
-
],
|
|
9261
|
-
"exports": [
|
|
9262
|
-
{
|
|
9263
|
-
"kind": "js",
|
|
9264
|
-
"name": "Checkbox",
|
|
9265
|
-
"declaration": {
|
|
9266
|
-
"name": "Checkbox",
|
|
9267
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9268
|
-
}
|
|
9269
|
-
},
|
|
9270
|
-
{
|
|
9271
|
-
"kind": "js",
|
|
9272
|
-
"name": "foundationCheckboxShadowOptions",
|
|
9273
|
-
"declaration": {
|
|
9274
|
-
"name": "foundationCheckboxShadowOptions",
|
|
9275
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9276
|
-
}
|
|
9277
|
-
},
|
|
9278
|
-
{
|
|
9279
|
-
"kind": "js",
|
|
9280
|
-
"name": "defaultCheckboxConfig",
|
|
9281
|
-
"declaration": {
|
|
9282
|
-
"name": "defaultCheckboxConfig",
|
|
9283
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9284
|
-
}
|
|
9285
|
-
},
|
|
9286
|
-
{
|
|
9287
|
-
"kind": "js",
|
|
9288
|
-
"name": "foundationCheckbox",
|
|
9289
|
-
"declaration": {
|
|
9290
|
-
"name": "foundationCheckbox",
|
|
9291
|
-
"module": "src/checkbox/checkbox.ts"
|
|
9292
|
-
}
|
|
9293
|
-
}
|
|
9294
|
-
]
|
|
9295
|
-
},
|
|
9296
|
-
{
|
|
9297
|
-
"kind": "javascript-module",
|
|
9298
|
-
"path": "src/checkbox/index.ts",
|
|
9299
|
-
"declarations": [],
|
|
9300
|
-
"exports": [
|
|
9301
|
-
{
|
|
9302
|
-
"kind": "js",
|
|
9303
|
-
"name": "*",
|
|
9304
|
-
"declaration": {
|
|
9305
|
-
"name": "*",
|
|
9306
|
-
"package": "./checkbox.template"
|
|
9307
|
-
}
|
|
9308
|
-
},
|
|
9309
|
-
{
|
|
9310
|
-
"kind": "js",
|
|
9311
|
-
"name": "*",
|
|
9312
|
-
"declaration": {
|
|
9313
|
-
"name": "*",
|
|
9314
|
-
"package": "./checkbox.styles"
|
|
9315
|
-
}
|
|
9316
|
-
},
|
|
9317
|
-
{
|
|
9318
|
-
"kind": "js",
|
|
9319
|
-
"name": "*",
|
|
9320
|
-
"declaration": {
|
|
9321
|
-
"name": "*",
|
|
9322
|
-
"package": "./checkbox"
|
|
9323
|
-
}
|
|
9324
|
-
}
|
|
9325
|
-
]
|
|
9326
|
-
},
|
|
9327
9335
|
{
|
|
9328
9336
|
"kind": "javascript-module",
|
|
9329
9337
|
"path": "src/connection-indicator/connection-indicator.styles.ts",
|
|
@@ -15554,6 +15562,14 @@
|
|
|
15554
15562
|
"description": "Number of milliseconds before toast will disappear. Leave empty or set to 0 to keep toast open indefinitely",
|
|
15555
15563
|
"privacy": "public"
|
|
15556
15564
|
},
|
|
15565
|
+
{
|
|
15566
|
+
"kind": "field",
|
|
15567
|
+
"name": "dataSub",
|
|
15568
|
+
"type": {
|
|
15569
|
+
"text": "Subscription"
|
|
15570
|
+
},
|
|
15571
|
+
"privacy": "protected"
|
|
15572
|
+
},
|
|
15557
15573
|
{
|
|
15558
15574
|
"kind": "field",
|
|
15559
15575
|
"name": "datasource",
|
|
@@ -20664,11 +20680,42 @@
|
|
|
20664
20680
|
},
|
|
20665
20681
|
{
|
|
20666
20682
|
"kind": "javascript-module",
|
|
20667
|
-
"path": "src/
|
|
20683
|
+
"path": "src/listbox/index.ts",
|
|
20684
|
+
"declarations": [],
|
|
20685
|
+
"exports": [
|
|
20686
|
+
{
|
|
20687
|
+
"kind": "js",
|
|
20688
|
+
"name": "*",
|
|
20689
|
+
"declaration": {
|
|
20690
|
+
"name": "*",
|
|
20691
|
+
"package": "./listbox.template"
|
|
20692
|
+
}
|
|
20693
|
+
},
|
|
20694
|
+
{
|
|
20695
|
+
"kind": "js",
|
|
20696
|
+
"name": "*",
|
|
20697
|
+
"declaration": {
|
|
20698
|
+
"name": "*",
|
|
20699
|
+
"package": "./listbox.styles"
|
|
20700
|
+
}
|
|
20701
|
+
},
|
|
20702
|
+
{
|
|
20703
|
+
"kind": "js",
|
|
20704
|
+
"name": "*",
|
|
20705
|
+
"declaration": {
|
|
20706
|
+
"name": "*",
|
|
20707
|
+
"package": "./listbox"
|
|
20708
|
+
}
|
|
20709
|
+
}
|
|
20710
|
+
]
|
|
20711
|
+
},
|
|
20712
|
+
{
|
|
20713
|
+
"kind": "javascript-module",
|
|
20714
|
+
"path": "src/listbox/listbox.styles.ts",
|
|
20668
20715
|
"declarations": [
|
|
20669
20716
|
{
|
|
20670
20717
|
"kind": "function",
|
|
20671
|
-
"name": "
|
|
20718
|
+
"name": "foundationListboxStyles",
|
|
20672
20719
|
"return": {
|
|
20673
20720
|
"type": {
|
|
20674
20721
|
"text": "ElementStyles"
|
|
@@ -20693,671 +20740,198 @@
|
|
|
20693
20740
|
"exports": [
|
|
20694
20741
|
{
|
|
20695
20742
|
"kind": "js",
|
|
20696
|
-
"name": "
|
|
20743
|
+
"name": "foundationListboxStyles",
|
|
20697
20744
|
"declaration": {
|
|
20698
|
-
"name": "
|
|
20699
|
-
"module": "src/
|
|
20745
|
+
"name": "foundationListboxStyles",
|
|
20746
|
+
"module": "src/listbox/listbox.styles.ts"
|
|
20700
20747
|
}
|
|
20701
20748
|
}
|
|
20702
20749
|
]
|
|
20703
20750
|
},
|
|
20704
20751
|
{
|
|
20705
20752
|
"kind": "javascript-module",
|
|
20706
|
-
"path": "src/
|
|
20753
|
+
"path": "src/listbox/listbox.template.ts",
|
|
20707
20754
|
"declarations": [
|
|
20708
20755
|
{
|
|
20709
|
-
"kind": "
|
|
20710
|
-
"name": "
|
|
20711
|
-
"
|
|
20712
|
-
"
|
|
20756
|
+
"kind": "function",
|
|
20757
|
+
"name": "foundationListboxTemplate",
|
|
20758
|
+
"return": {
|
|
20759
|
+
"type": {
|
|
20760
|
+
"text": "ViewTemplate<Listbox>"
|
|
20761
|
+
}
|
|
20713
20762
|
},
|
|
20714
|
-
"
|
|
20763
|
+
"parameters": [
|
|
20764
|
+
{
|
|
20765
|
+
"name": "context",
|
|
20766
|
+
"type": {
|
|
20767
|
+
"text": "ElementDefinitionContext"
|
|
20768
|
+
}
|
|
20769
|
+
},
|
|
20770
|
+
{
|
|
20771
|
+
"name": "definition",
|
|
20772
|
+
"type": {
|
|
20773
|
+
"text": "FoundationElementDefinition"
|
|
20774
|
+
}
|
|
20775
|
+
}
|
|
20776
|
+
]
|
|
20715
20777
|
}
|
|
20716
20778
|
],
|
|
20717
20779
|
"exports": [
|
|
20718
20780
|
{
|
|
20719
20781
|
"kind": "js",
|
|
20720
|
-
"name": "
|
|
20782
|
+
"name": "foundationListboxTemplate",
|
|
20721
20783
|
"declaration": {
|
|
20722
|
-
"name": "
|
|
20723
|
-
"module": "src/
|
|
20784
|
+
"name": "foundationListboxTemplate",
|
|
20785
|
+
"module": "src/listbox/listbox.template.ts"
|
|
20724
20786
|
}
|
|
20725
20787
|
}
|
|
20726
20788
|
]
|
|
20727
20789
|
},
|
|
20728
20790
|
{
|
|
20729
20791
|
"kind": "javascript-module",
|
|
20730
|
-
"path": "src/
|
|
20792
|
+
"path": "src/listbox/listbox.ts",
|
|
20731
20793
|
"declarations": [
|
|
20732
|
-
{
|
|
20733
|
-
"kind": "variable",
|
|
20734
|
-
"name": "foundationIconShadowOptions",
|
|
20735
|
-
"type": {
|
|
20736
|
-
"text": "ShadowRootInit"
|
|
20737
|
-
},
|
|
20738
|
-
"default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
|
|
20739
|
-
},
|
|
20740
|
-
{
|
|
20741
|
-
"kind": "variable",
|
|
20742
|
-
"name": "defaultIconConfig",
|
|
20743
|
-
"type": {
|
|
20744
|
-
"text": "object"
|
|
20745
|
-
},
|
|
20746
|
-
"default": "{}"
|
|
20747
|
-
},
|
|
20748
|
-
{
|
|
20749
|
-
"kind": "variable",
|
|
20750
|
-
"name": "faSizeValueDefault",
|
|
20751
|
-
"type": {
|
|
20752
|
-
"text": "'1x'"
|
|
20753
|
-
},
|
|
20754
|
-
"default": "'1x'"
|
|
20755
|
-
},
|
|
20756
|
-
{
|
|
20757
|
-
"kind": "variable",
|
|
20758
|
-
"name": "faSizeValues",
|
|
20759
|
-
"type": {
|
|
20760
|
-
"text": "[\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n faSizeValueDefault,\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n 'stack-1x',\n 'stack-2x',\n]"
|
|
20761
|
-
},
|
|
20762
|
-
"default": "[\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n faSizeValueDefault,\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n 'stack-1x',\n 'stack-2x',\n]"
|
|
20763
|
-
},
|
|
20764
20794
|
{
|
|
20765
20795
|
"kind": "class",
|
|
20766
20796
|
"description": "",
|
|
20767
|
-
"name": "
|
|
20797
|
+
"name": "Listbox",
|
|
20798
|
+
"superclass": {
|
|
20799
|
+
"name": "FASTListbox",
|
|
20800
|
+
"package": "@microsoft/fast-components"
|
|
20801
|
+
},
|
|
20802
|
+
"tagName": "%%prefix%%-listbox",
|
|
20803
|
+
"customElement": true,
|
|
20804
|
+
"attributes": [
|
|
20805
|
+
{
|
|
20806
|
+
"type": {
|
|
20807
|
+
"text": "boolean"
|
|
20808
|
+
},
|
|
20809
|
+
"description": "The disabled state of the listbox.",
|
|
20810
|
+
"fieldName": "disabled",
|
|
20811
|
+
"inheritedFrom": {
|
|
20812
|
+
"name": "Listbox",
|
|
20813
|
+
"module": "src/listbox/listbox.ts"
|
|
20814
|
+
}
|
|
20815
|
+
}
|
|
20816
|
+
],
|
|
20768
20817
|
"members": [
|
|
20769
20818
|
{
|
|
20770
20819
|
"kind": "field",
|
|
20771
|
-
"name": "
|
|
20820
|
+
"name": "length",
|
|
20772
20821
|
"type": {
|
|
20773
|
-
"text": "
|
|
20822
|
+
"text": "number"
|
|
20823
|
+
},
|
|
20824
|
+
"privacy": "public",
|
|
20825
|
+
"description": "The number of options.",
|
|
20826
|
+
"inheritedFrom": {
|
|
20827
|
+
"name": "Listbox",
|
|
20828
|
+
"module": "src/listbox/listbox.ts"
|
|
20774
20829
|
}
|
|
20775
20830
|
},
|
|
20776
20831
|
{
|
|
20777
20832
|
"kind": "field",
|
|
20778
|
-
"name": "
|
|
20833
|
+
"name": "options",
|
|
20779
20834
|
"type": {
|
|
20780
|
-
"text": "
|
|
20835
|
+
"text": "ListboxOption[]"
|
|
20836
|
+
},
|
|
20837
|
+
"privacy": "public",
|
|
20838
|
+
"description": "The list of options.",
|
|
20839
|
+
"inheritedFrom": {
|
|
20840
|
+
"name": "Listbox",
|
|
20841
|
+
"module": "src/listbox/listbox.ts"
|
|
20781
20842
|
}
|
|
20782
20843
|
},
|
|
20783
20844
|
{
|
|
20784
|
-
"kind": "
|
|
20785
|
-
"name": "
|
|
20786
|
-
"
|
|
20787
|
-
|
|
20788
|
-
|
|
20789
|
-
|
|
20790
|
-
|
|
20791
|
-
}
|
|
20792
|
-
},
|
|
20793
|
-
{
|
|
20794
|
-
"name": "newValue",
|
|
20795
|
-
"type": {
|
|
20796
|
-
"text": "string"
|
|
20797
|
-
}
|
|
20798
|
-
}
|
|
20799
|
-
]
|
|
20845
|
+
"kind": "field",
|
|
20846
|
+
"name": "typeAheadExpired",
|
|
20847
|
+
"privacy": "protected",
|
|
20848
|
+
"inheritedFrom": {
|
|
20849
|
+
"name": "Listbox",
|
|
20850
|
+
"module": "src/listbox/listbox.ts"
|
|
20851
|
+
}
|
|
20800
20852
|
},
|
|
20801
20853
|
{
|
|
20802
20854
|
"kind": "field",
|
|
20803
|
-
"name": "
|
|
20855
|
+
"name": "disabled",
|
|
20804
20856
|
"type": {
|
|
20805
|
-
"text": "
|
|
20857
|
+
"text": "boolean"
|
|
20806
20858
|
},
|
|
20807
|
-
"
|
|
20859
|
+
"privacy": "public",
|
|
20860
|
+
"description": "The disabled state of the listbox.",
|
|
20861
|
+
"inheritedFrom": {
|
|
20862
|
+
"name": "Listbox",
|
|
20863
|
+
"module": "src/listbox/listbox.ts"
|
|
20864
|
+
}
|
|
20808
20865
|
},
|
|
20809
20866
|
{
|
|
20810
|
-
"kind": "
|
|
20811
|
-
"name": "
|
|
20812
|
-
"
|
|
20813
|
-
|
|
20814
|
-
|
|
20815
|
-
|
|
20816
|
-
|
|
20817
|
-
|
|
20818
|
-
|
|
20819
|
-
|
|
20820
|
-
|
|
20821
|
-
|
|
20822
|
-
"text": "string"
|
|
20823
|
-
}
|
|
20824
|
-
}
|
|
20825
|
-
]
|
|
20867
|
+
"kind": "field",
|
|
20868
|
+
"name": "selectedIndex",
|
|
20869
|
+
"type": {
|
|
20870
|
+
"text": "number"
|
|
20871
|
+
},
|
|
20872
|
+
"privacy": "public",
|
|
20873
|
+
"default": "-1",
|
|
20874
|
+
"description": "The index of the selected option.",
|
|
20875
|
+
"inheritedFrom": {
|
|
20876
|
+
"name": "Listbox",
|
|
20877
|
+
"module": "src/listbox/listbox.ts"
|
|
20878
|
+
}
|
|
20826
20879
|
},
|
|
20827
20880
|
{
|
|
20828
20881
|
"kind": "field",
|
|
20829
|
-
"name": "
|
|
20882
|
+
"name": "selectedOptions",
|
|
20830
20883
|
"type": {
|
|
20831
|
-
"text": "
|
|
20884
|
+
"text": "ListboxOption[]"
|
|
20832
20885
|
},
|
|
20833
|
-
"
|
|
20886
|
+
"privacy": "public",
|
|
20887
|
+
"default": "[]",
|
|
20888
|
+
"description": "A collection of the selected options.",
|
|
20889
|
+
"inheritedFrom": {
|
|
20890
|
+
"name": "Listbox",
|
|
20891
|
+
"module": "src/listbox/listbox.ts"
|
|
20892
|
+
}
|
|
20834
20893
|
},
|
|
20835
20894
|
{
|
|
20836
|
-
"kind": "
|
|
20837
|
-
"name": "
|
|
20895
|
+
"kind": "field",
|
|
20896
|
+
"name": "slottedOptionFilter",
|
|
20897
|
+
"privacy": "public",
|
|
20898
|
+
"static": true,
|
|
20899
|
+
"description": "A static filter to include only selectable options.",
|
|
20838
20900
|
"parameters": [
|
|
20839
20901
|
{
|
|
20840
|
-
"
|
|
20841
|
-
"
|
|
20842
|
-
"text": "string"
|
|
20843
|
-
}
|
|
20844
|
-
},
|
|
20845
|
-
{
|
|
20846
|
-
"name": "newValue",
|
|
20847
|
-
"type": {
|
|
20848
|
-
"text": "string"
|
|
20849
|
-
}
|
|
20902
|
+
"description": "element to filter",
|
|
20903
|
+
"name": "n"
|
|
20850
20904
|
}
|
|
20851
|
-
]
|
|
20905
|
+
],
|
|
20906
|
+
"inheritedFrom": {
|
|
20907
|
+
"name": "Listbox",
|
|
20908
|
+
"module": "src/listbox/listbox.ts"
|
|
20909
|
+
}
|
|
20852
20910
|
},
|
|
20853
20911
|
{
|
|
20854
20912
|
"kind": "method",
|
|
20855
|
-
"name": "
|
|
20856
|
-
"privacy": "public"
|
|
20857
|
-
|
|
20858
|
-
|
|
20859
|
-
|
|
20860
|
-
|
|
20861
|
-
|
|
20862
|
-
|
|
20863
|
-
|
|
20864
|
-
|
|
20865
|
-
|
|
20866
|
-
|
|
20867
|
-
|
|
20868
|
-
|
|
20869
|
-
|
|
20870
|
-
|
|
20871
|
-
|
|
20872
|
-
"
|
|
20873
|
-
"
|
|
20874
|
-
|
|
20875
|
-
"
|
|
20876
|
-
}
|
|
20877
|
-
"privacy": "public",
|
|
20878
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
20879
|
-
"inheritedFrom": {
|
|
20880
|
-
"name": "FoundationElement",
|
|
20881
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20882
|
-
}
|
|
20883
|
-
},
|
|
20884
|
-
{
|
|
20885
|
-
"kind": "field",
|
|
20886
|
-
"name": "template",
|
|
20887
|
-
"type": {
|
|
20888
|
-
"text": "ElementViewTemplate | void | null"
|
|
20889
|
-
},
|
|
20890
|
-
"privacy": "public",
|
|
20891
|
-
"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.",
|
|
20892
|
-
"inheritedFrom": {
|
|
20893
|
-
"name": "FoundationElement",
|
|
20894
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20895
|
-
}
|
|
20896
|
-
},
|
|
20897
|
-
{
|
|
20898
|
-
"kind": "method",
|
|
20899
|
-
"name": "templateChanged",
|
|
20900
|
-
"privacy": "protected",
|
|
20901
|
-
"return": {
|
|
20902
|
-
"type": {
|
|
20903
|
-
"text": "void"
|
|
20904
|
-
}
|
|
20905
|
-
},
|
|
20906
|
-
"inheritedFrom": {
|
|
20907
|
-
"name": "FoundationElement",
|
|
20908
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20909
|
-
}
|
|
20910
|
-
},
|
|
20911
|
-
{
|
|
20912
|
-
"kind": "field",
|
|
20913
|
-
"name": "styles",
|
|
20914
|
-
"type": {
|
|
20915
|
-
"text": "ElementStyles | void | null"
|
|
20916
|
-
},
|
|
20917
|
-
"privacy": "public",
|
|
20918
|
-
"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.",
|
|
20919
|
-
"inheritedFrom": {
|
|
20920
|
-
"name": "FoundationElement",
|
|
20921
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20922
|
-
}
|
|
20923
|
-
},
|
|
20924
|
-
{
|
|
20925
|
-
"kind": "method",
|
|
20926
|
-
"name": "stylesChanged",
|
|
20927
|
-
"privacy": "protected",
|
|
20928
|
-
"return": {
|
|
20929
|
-
"type": {
|
|
20930
|
-
"text": "void"
|
|
20931
|
-
}
|
|
20932
|
-
},
|
|
20933
|
-
"inheritedFrom": {
|
|
20934
|
-
"name": "FoundationElement",
|
|
20935
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20936
|
-
}
|
|
20937
|
-
},
|
|
20938
|
-
{
|
|
20939
|
-
"kind": "method",
|
|
20940
|
-
"name": "compose",
|
|
20941
|
-
"privacy": "public",
|
|
20942
|
-
"static": true,
|
|
20943
|
-
"return": {
|
|
20944
|
-
"type": {
|
|
20945
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
20946
|
-
}
|
|
20947
|
-
},
|
|
20948
|
-
"parameters": [
|
|
20949
|
-
{
|
|
20950
|
-
"name": "this",
|
|
20951
|
-
"type": {
|
|
20952
|
-
"text": "K"
|
|
20953
|
-
}
|
|
20954
|
-
},
|
|
20955
|
-
{
|
|
20956
|
-
"name": "elementDefinition",
|
|
20957
|
-
"type": {
|
|
20958
|
-
"text": "T"
|
|
20959
|
-
},
|
|
20960
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
20961
|
-
}
|
|
20962
|
-
],
|
|
20963
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
20964
|
-
"inheritedFrom": {
|
|
20965
|
-
"name": "FoundationElement",
|
|
20966
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20967
|
-
}
|
|
20968
|
-
}
|
|
20969
|
-
],
|
|
20970
|
-
"attributes": [
|
|
20971
|
-
{
|
|
20972
|
-
"name": "name",
|
|
20973
|
-
"type": {
|
|
20974
|
-
"text": "IconName"
|
|
20975
|
-
},
|
|
20976
|
-
"fieldName": "name"
|
|
20977
|
-
},
|
|
20978
|
-
{
|
|
20979
|
-
"name": "size",
|
|
20980
|
-
"type": {
|
|
20981
|
-
"text": "FaSize"
|
|
20982
|
-
},
|
|
20983
|
-
"default": "'sm'",
|
|
20984
|
-
"fieldName": "size"
|
|
20985
|
-
},
|
|
20986
|
-
{
|
|
20987
|
-
"name": "variant",
|
|
20988
|
-
"type": {
|
|
20989
|
-
"text": "IconStyle"
|
|
20990
|
-
},
|
|
20991
|
-
"default": "'solid'",
|
|
20992
|
-
"fieldName": "variant"
|
|
20993
|
-
}
|
|
20994
|
-
],
|
|
20995
|
-
"superclass": {
|
|
20996
|
-
"name": "FoundationElement",
|
|
20997
|
-
"package": "@microsoft/fast-foundation"
|
|
20998
|
-
},
|
|
20999
|
-
"tagName": "%%prefix%%-icon",
|
|
21000
|
-
"customElement": true
|
|
21001
|
-
},
|
|
21002
|
-
{
|
|
21003
|
-
"kind": "variable",
|
|
21004
|
-
"name": "foundationIcon",
|
|
21005
|
-
"description": "The Foundation Icon",
|
|
21006
|
-
"privacy": "public"
|
|
21007
|
-
}
|
|
21008
|
-
],
|
|
21009
|
-
"exports": [
|
|
21010
|
-
{
|
|
21011
|
-
"kind": "js",
|
|
21012
|
-
"name": "IconName",
|
|
21013
|
-
"declaration": {
|
|
21014
|
-
"name": "IconName",
|
|
21015
|
-
"module": "src/icon/icon.ts"
|
|
21016
|
-
}
|
|
21017
|
-
},
|
|
21018
|
-
{
|
|
21019
|
-
"kind": "js",
|
|
21020
|
-
"name": "IconStyle",
|
|
21021
|
-
"declaration": {
|
|
21022
|
-
"name": "IconStyle",
|
|
21023
|
-
"module": "src/icon/icon.ts"
|
|
21024
|
-
}
|
|
21025
|
-
},
|
|
21026
|
-
{
|
|
21027
|
-
"kind": "js",
|
|
21028
|
-
"name": "foundationIconShadowOptions",
|
|
21029
|
-
"declaration": {
|
|
21030
|
-
"name": "foundationIconShadowOptions",
|
|
21031
|
-
"module": "src/icon/icon.ts"
|
|
21032
|
-
}
|
|
21033
|
-
},
|
|
21034
|
-
{
|
|
21035
|
-
"kind": "js",
|
|
21036
|
-
"name": "defaultIconConfig",
|
|
21037
|
-
"declaration": {
|
|
21038
|
-
"name": "defaultIconConfig",
|
|
21039
|
-
"module": "src/icon/icon.ts"
|
|
21040
|
-
}
|
|
21041
|
-
},
|
|
21042
|
-
{
|
|
21043
|
-
"kind": "js",
|
|
21044
|
-
"name": "faSizeValueDefault",
|
|
21045
|
-
"declaration": {
|
|
21046
|
-
"name": "faSizeValueDefault",
|
|
21047
|
-
"module": "src/icon/icon.ts"
|
|
21048
|
-
}
|
|
21049
|
-
},
|
|
21050
|
-
{
|
|
21051
|
-
"kind": "js",
|
|
21052
|
-
"name": "faSizeValues",
|
|
21053
|
-
"declaration": {
|
|
21054
|
-
"name": "faSizeValues",
|
|
21055
|
-
"module": "src/icon/icon.ts"
|
|
21056
|
-
}
|
|
21057
|
-
},
|
|
21058
|
-
{
|
|
21059
|
-
"kind": "js",
|
|
21060
|
-
"name": "Icon",
|
|
21061
|
-
"declaration": {
|
|
21062
|
-
"name": "Icon",
|
|
21063
|
-
"module": "src/icon/icon.ts"
|
|
21064
|
-
}
|
|
21065
|
-
},
|
|
21066
|
-
{
|
|
21067
|
-
"kind": "js",
|
|
21068
|
-
"name": "foundationIcon",
|
|
21069
|
-
"declaration": {
|
|
21070
|
-
"name": "foundationIcon",
|
|
21071
|
-
"module": "src/icon/icon.ts"
|
|
21072
|
-
}
|
|
21073
|
-
}
|
|
21074
|
-
]
|
|
21075
|
-
},
|
|
21076
|
-
{
|
|
21077
|
-
"kind": "javascript-module",
|
|
21078
|
-
"path": "src/icon/index.ts",
|
|
21079
|
-
"declarations": [],
|
|
21080
|
-
"exports": [
|
|
21081
|
-
{
|
|
21082
|
-
"kind": "js",
|
|
21083
|
-
"name": "*",
|
|
21084
|
-
"declaration": {
|
|
21085
|
-
"name": "*",
|
|
21086
|
-
"package": "./icon.styles"
|
|
21087
|
-
}
|
|
21088
|
-
},
|
|
21089
|
-
{
|
|
21090
|
-
"kind": "js",
|
|
21091
|
-
"name": "*",
|
|
21092
|
-
"declaration": {
|
|
21093
|
-
"name": "*",
|
|
21094
|
-
"package": "./icon.template"
|
|
21095
|
-
}
|
|
21096
|
-
},
|
|
21097
|
-
{
|
|
21098
|
-
"kind": "js",
|
|
21099
|
-
"name": "*",
|
|
21100
|
-
"declaration": {
|
|
21101
|
-
"name": "*",
|
|
21102
|
-
"package": "./icon"
|
|
21103
|
-
}
|
|
21104
|
-
}
|
|
21105
|
-
]
|
|
21106
|
-
},
|
|
21107
|
-
{
|
|
21108
|
-
"kind": "javascript-module",
|
|
21109
|
-
"path": "src/listbox/index.ts",
|
|
21110
|
-
"declarations": [],
|
|
21111
|
-
"exports": [
|
|
21112
|
-
{
|
|
21113
|
-
"kind": "js",
|
|
21114
|
-
"name": "*",
|
|
21115
|
-
"declaration": {
|
|
21116
|
-
"name": "*",
|
|
21117
|
-
"package": "./listbox.template"
|
|
21118
|
-
}
|
|
21119
|
-
},
|
|
21120
|
-
{
|
|
21121
|
-
"kind": "js",
|
|
21122
|
-
"name": "*",
|
|
21123
|
-
"declaration": {
|
|
21124
|
-
"name": "*",
|
|
21125
|
-
"package": "./listbox.styles"
|
|
21126
|
-
}
|
|
21127
|
-
},
|
|
21128
|
-
{
|
|
21129
|
-
"kind": "js",
|
|
21130
|
-
"name": "*",
|
|
21131
|
-
"declaration": {
|
|
21132
|
-
"name": "*",
|
|
21133
|
-
"package": "./listbox"
|
|
21134
|
-
}
|
|
21135
|
-
}
|
|
21136
|
-
]
|
|
21137
|
-
},
|
|
21138
|
-
{
|
|
21139
|
-
"kind": "javascript-module",
|
|
21140
|
-
"path": "src/listbox/listbox.styles.ts",
|
|
21141
|
-
"declarations": [
|
|
21142
|
-
{
|
|
21143
|
-
"kind": "function",
|
|
21144
|
-
"name": "foundationListboxStyles",
|
|
21145
|
-
"return": {
|
|
21146
|
-
"type": {
|
|
21147
|
-
"text": "ElementStyles"
|
|
21148
|
-
}
|
|
21149
|
-
},
|
|
21150
|
-
"parameters": [
|
|
21151
|
-
{
|
|
21152
|
-
"name": "context",
|
|
21153
|
-
"type": {
|
|
21154
|
-
"text": "ElementDefinitionContext"
|
|
21155
|
-
}
|
|
21156
|
-
},
|
|
21157
|
-
{
|
|
21158
|
-
"name": "definition",
|
|
21159
|
-
"type": {
|
|
21160
|
-
"text": "FoundationElementDefinition"
|
|
21161
|
-
}
|
|
21162
|
-
}
|
|
21163
|
-
]
|
|
21164
|
-
}
|
|
21165
|
-
],
|
|
21166
|
-
"exports": [
|
|
21167
|
-
{
|
|
21168
|
-
"kind": "js",
|
|
21169
|
-
"name": "foundationListboxStyles",
|
|
21170
|
-
"declaration": {
|
|
21171
|
-
"name": "foundationListboxStyles",
|
|
21172
|
-
"module": "src/listbox/listbox.styles.ts"
|
|
21173
|
-
}
|
|
21174
|
-
}
|
|
21175
|
-
]
|
|
21176
|
-
},
|
|
21177
|
-
{
|
|
21178
|
-
"kind": "javascript-module",
|
|
21179
|
-
"path": "src/listbox/listbox.template.ts",
|
|
21180
|
-
"declarations": [
|
|
21181
|
-
{
|
|
21182
|
-
"kind": "function",
|
|
21183
|
-
"name": "foundationListboxTemplate",
|
|
21184
|
-
"return": {
|
|
21185
|
-
"type": {
|
|
21186
|
-
"text": "ViewTemplate<Listbox>"
|
|
21187
|
-
}
|
|
21188
|
-
},
|
|
21189
|
-
"parameters": [
|
|
21190
|
-
{
|
|
21191
|
-
"name": "context",
|
|
21192
|
-
"type": {
|
|
21193
|
-
"text": "ElementDefinitionContext"
|
|
21194
|
-
}
|
|
21195
|
-
},
|
|
21196
|
-
{
|
|
21197
|
-
"name": "definition",
|
|
21198
|
-
"type": {
|
|
21199
|
-
"text": "FoundationElementDefinition"
|
|
21200
|
-
}
|
|
21201
|
-
}
|
|
21202
|
-
]
|
|
21203
|
-
}
|
|
21204
|
-
],
|
|
21205
|
-
"exports": [
|
|
21206
|
-
{
|
|
21207
|
-
"kind": "js",
|
|
21208
|
-
"name": "foundationListboxTemplate",
|
|
21209
|
-
"declaration": {
|
|
21210
|
-
"name": "foundationListboxTemplate",
|
|
21211
|
-
"module": "src/listbox/listbox.template.ts"
|
|
21212
|
-
}
|
|
21213
|
-
}
|
|
21214
|
-
]
|
|
21215
|
-
},
|
|
21216
|
-
{
|
|
21217
|
-
"kind": "javascript-module",
|
|
21218
|
-
"path": "src/listbox/listbox.ts",
|
|
21219
|
-
"declarations": [
|
|
21220
|
-
{
|
|
21221
|
-
"kind": "class",
|
|
21222
|
-
"description": "",
|
|
21223
|
-
"name": "Listbox",
|
|
21224
|
-
"superclass": {
|
|
21225
|
-
"name": "FASTListbox",
|
|
21226
|
-
"package": "@microsoft/fast-components"
|
|
21227
|
-
},
|
|
21228
|
-
"tagName": "%%prefix%%-listbox",
|
|
21229
|
-
"customElement": true,
|
|
21230
|
-
"attributes": [
|
|
21231
|
-
{
|
|
21232
|
-
"type": {
|
|
21233
|
-
"text": "boolean"
|
|
21234
|
-
},
|
|
21235
|
-
"description": "The disabled state of the listbox.",
|
|
21236
|
-
"fieldName": "disabled",
|
|
21237
|
-
"inheritedFrom": {
|
|
21238
|
-
"name": "Listbox",
|
|
21239
|
-
"module": "src/listbox/listbox.ts"
|
|
21240
|
-
}
|
|
21241
|
-
}
|
|
21242
|
-
],
|
|
21243
|
-
"members": [
|
|
21244
|
-
{
|
|
21245
|
-
"kind": "field",
|
|
21246
|
-
"name": "length",
|
|
21247
|
-
"type": {
|
|
21248
|
-
"text": "number"
|
|
21249
|
-
},
|
|
21250
|
-
"privacy": "public",
|
|
21251
|
-
"description": "The number of options.",
|
|
21252
|
-
"inheritedFrom": {
|
|
21253
|
-
"name": "Listbox",
|
|
21254
|
-
"module": "src/listbox/listbox.ts"
|
|
21255
|
-
}
|
|
21256
|
-
},
|
|
21257
|
-
{
|
|
21258
|
-
"kind": "field",
|
|
21259
|
-
"name": "options",
|
|
21260
|
-
"type": {
|
|
21261
|
-
"text": "ListboxOption[]"
|
|
21262
|
-
},
|
|
21263
|
-
"privacy": "public",
|
|
21264
|
-
"description": "The list of options.",
|
|
21265
|
-
"inheritedFrom": {
|
|
21266
|
-
"name": "Listbox",
|
|
21267
|
-
"module": "src/listbox/listbox.ts"
|
|
21268
|
-
}
|
|
21269
|
-
},
|
|
21270
|
-
{
|
|
21271
|
-
"kind": "field",
|
|
21272
|
-
"name": "typeAheadExpired",
|
|
21273
|
-
"privacy": "protected",
|
|
21274
|
-
"inheritedFrom": {
|
|
21275
|
-
"name": "Listbox",
|
|
21276
|
-
"module": "src/listbox/listbox.ts"
|
|
21277
|
-
}
|
|
21278
|
-
},
|
|
21279
|
-
{
|
|
21280
|
-
"kind": "field",
|
|
21281
|
-
"name": "disabled",
|
|
21282
|
-
"type": {
|
|
21283
|
-
"text": "boolean"
|
|
21284
|
-
},
|
|
21285
|
-
"privacy": "public",
|
|
21286
|
-
"description": "The disabled state of the listbox.",
|
|
21287
|
-
"inheritedFrom": {
|
|
21288
|
-
"name": "Listbox",
|
|
21289
|
-
"module": "src/listbox/listbox.ts"
|
|
21290
|
-
}
|
|
21291
|
-
},
|
|
21292
|
-
{
|
|
21293
|
-
"kind": "field",
|
|
21294
|
-
"name": "selectedIndex",
|
|
21295
|
-
"type": {
|
|
21296
|
-
"text": "number"
|
|
21297
|
-
},
|
|
21298
|
-
"privacy": "public",
|
|
21299
|
-
"default": "-1",
|
|
21300
|
-
"description": "The index of the selected option.",
|
|
21301
|
-
"inheritedFrom": {
|
|
21302
|
-
"name": "Listbox",
|
|
21303
|
-
"module": "src/listbox/listbox.ts"
|
|
21304
|
-
}
|
|
21305
|
-
},
|
|
21306
|
-
{
|
|
21307
|
-
"kind": "field",
|
|
21308
|
-
"name": "selectedOptions",
|
|
21309
|
-
"type": {
|
|
21310
|
-
"text": "ListboxOption[]"
|
|
21311
|
-
},
|
|
21312
|
-
"privacy": "public",
|
|
21313
|
-
"default": "[]",
|
|
21314
|
-
"description": "A collection of the selected options.",
|
|
21315
|
-
"inheritedFrom": {
|
|
21316
|
-
"name": "Listbox",
|
|
21317
|
-
"module": "src/listbox/listbox.ts"
|
|
21318
|
-
}
|
|
21319
|
-
},
|
|
21320
|
-
{
|
|
21321
|
-
"kind": "field",
|
|
21322
|
-
"name": "slottedOptionFilter",
|
|
21323
|
-
"privacy": "public",
|
|
21324
|
-
"static": true,
|
|
21325
|
-
"description": "A static filter to include only selectable options.",
|
|
21326
|
-
"parameters": [
|
|
21327
|
-
{
|
|
21328
|
-
"description": "element to filter",
|
|
21329
|
-
"name": "n"
|
|
21330
|
-
}
|
|
21331
|
-
],
|
|
21332
|
-
"inheritedFrom": {
|
|
21333
|
-
"name": "Listbox",
|
|
21334
|
-
"module": "src/listbox/listbox.ts"
|
|
21335
|
-
}
|
|
21336
|
-
},
|
|
21337
|
-
{
|
|
21338
|
-
"kind": "method",
|
|
21339
|
-
"name": "selectFirstOption",
|
|
21340
|
-
"privacy": "public",
|
|
21341
|
-
"return": {
|
|
21342
|
-
"type": {
|
|
21343
|
-
"text": "void"
|
|
21344
|
-
}
|
|
21345
|
-
},
|
|
21346
|
-
"description": "Moves focus to the first selectable option.",
|
|
21347
|
-
"inheritedFrom": {
|
|
21348
|
-
"name": "Listbox",
|
|
21349
|
-
"module": "src/listbox/listbox.ts"
|
|
21350
|
-
}
|
|
21351
|
-
},
|
|
21352
|
-
{
|
|
21353
|
-
"kind": "method",
|
|
21354
|
-
"name": "setSelectedOptions",
|
|
21355
|
-
"privacy": "public",
|
|
21356
|
-
"description": "Sets an option as selected and gives it focus.",
|
|
21357
|
-
"inheritedFrom": {
|
|
21358
|
-
"name": "Listbox",
|
|
21359
|
-
"module": "src/listbox/listbox.ts"
|
|
21360
|
-
}
|
|
20913
|
+
"name": "selectFirstOption",
|
|
20914
|
+
"privacy": "public",
|
|
20915
|
+
"return": {
|
|
20916
|
+
"type": {
|
|
20917
|
+
"text": "void"
|
|
20918
|
+
}
|
|
20919
|
+
},
|
|
20920
|
+
"description": "Moves focus to the first selectable option.",
|
|
20921
|
+
"inheritedFrom": {
|
|
20922
|
+
"name": "Listbox",
|
|
20923
|
+
"module": "src/listbox/listbox.ts"
|
|
20924
|
+
}
|
|
20925
|
+
},
|
|
20926
|
+
{
|
|
20927
|
+
"kind": "method",
|
|
20928
|
+
"name": "setSelectedOptions",
|
|
20929
|
+
"privacy": "public",
|
|
20930
|
+
"description": "Sets an option as selected and gives it focus.",
|
|
20931
|
+
"inheritedFrom": {
|
|
20932
|
+
"name": "Listbox",
|
|
20933
|
+
"module": "src/listbox/listbox.ts"
|
|
20934
|
+
}
|
|
21361
20935
|
},
|
|
21362
20936
|
{
|
|
21363
20937
|
"kind": "field",
|
|
@@ -23143,6 +22717,448 @@
|
|
|
23143
22717
|
}
|
|
23144
22718
|
]
|
|
23145
22719
|
},
|
|
22720
|
+
{
|
|
22721
|
+
"kind": "javascript-module",
|
|
22722
|
+
"path": "src/icon/icon.styles.ts",
|
|
22723
|
+
"declarations": [
|
|
22724
|
+
{
|
|
22725
|
+
"kind": "function",
|
|
22726
|
+
"name": "foundationIconStyles",
|
|
22727
|
+
"return": {
|
|
22728
|
+
"type": {
|
|
22729
|
+
"text": "ElementStyles"
|
|
22730
|
+
}
|
|
22731
|
+
},
|
|
22732
|
+
"parameters": [
|
|
22733
|
+
{
|
|
22734
|
+
"name": "context",
|
|
22735
|
+
"type": {
|
|
22736
|
+
"text": "ElementDefinitionContext"
|
|
22737
|
+
}
|
|
22738
|
+
},
|
|
22739
|
+
{
|
|
22740
|
+
"name": "definition",
|
|
22741
|
+
"type": {
|
|
22742
|
+
"text": "FoundationElementDefinition"
|
|
22743
|
+
}
|
|
22744
|
+
}
|
|
22745
|
+
]
|
|
22746
|
+
}
|
|
22747
|
+
],
|
|
22748
|
+
"exports": [
|
|
22749
|
+
{
|
|
22750
|
+
"kind": "js",
|
|
22751
|
+
"name": "foundationIconStyles",
|
|
22752
|
+
"declaration": {
|
|
22753
|
+
"name": "foundationIconStyles",
|
|
22754
|
+
"module": "src/icon/icon.styles.ts"
|
|
22755
|
+
}
|
|
22756
|
+
}
|
|
22757
|
+
]
|
|
22758
|
+
},
|
|
22759
|
+
{
|
|
22760
|
+
"kind": "javascript-module",
|
|
22761
|
+
"path": "src/icon/icon.template.ts",
|
|
22762
|
+
"declarations": [
|
|
22763
|
+
{
|
|
22764
|
+
"kind": "variable",
|
|
22765
|
+
"name": "foundationIconTemplate",
|
|
22766
|
+
"type": {
|
|
22767
|
+
"text": "ViewTemplate"
|
|
22768
|
+
},
|
|
22769
|
+
"default": "html<Icon>`\n <template>\n <i\n ${ref('iElement')}\n class=${(x) => `fa-${x.name} fa-${x.size} fa-${x.variant}`}\n part=${(x) => `icon-${x.name}-${x.size}-${x.variant}`}\n >\n <slot></slot>\n </i>\n </template>\n`"
|
|
22770
|
+
}
|
|
22771
|
+
],
|
|
22772
|
+
"exports": [
|
|
22773
|
+
{
|
|
22774
|
+
"kind": "js",
|
|
22775
|
+
"name": "foundationIconTemplate",
|
|
22776
|
+
"declaration": {
|
|
22777
|
+
"name": "foundationIconTemplate",
|
|
22778
|
+
"module": "src/icon/icon.template.ts"
|
|
22779
|
+
}
|
|
22780
|
+
}
|
|
22781
|
+
]
|
|
22782
|
+
},
|
|
22783
|
+
{
|
|
22784
|
+
"kind": "javascript-module",
|
|
22785
|
+
"path": "src/icon/icon.ts",
|
|
22786
|
+
"declarations": [
|
|
22787
|
+
{
|
|
22788
|
+
"kind": "variable",
|
|
22789
|
+
"name": "foundationIconShadowOptions",
|
|
22790
|
+
"type": {
|
|
22791
|
+
"text": "ShadowRootInit"
|
|
22792
|
+
},
|
|
22793
|
+
"default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
|
|
22794
|
+
},
|
|
22795
|
+
{
|
|
22796
|
+
"kind": "variable",
|
|
22797
|
+
"name": "defaultIconConfig",
|
|
22798
|
+
"type": {
|
|
22799
|
+
"text": "object"
|
|
22800
|
+
},
|
|
22801
|
+
"default": "{}"
|
|
22802
|
+
},
|
|
22803
|
+
{
|
|
22804
|
+
"kind": "variable",
|
|
22805
|
+
"name": "faSizeValueDefault",
|
|
22806
|
+
"type": {
|
|
22807
|
+
"text": "'1x'"
|
|
22808
|
+
},
|
|
22809
|
+
"default": "'1x'"
|
|
22810
|
+
},
|
|
22811
|
+
{
|
|
22812
|
+
"kind": "variable",
|
|
22813
|
+
"name": "faSizeValues",
|
|
22814
|
+
"type": {
|
|
22815
|
+
"text": "[\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n faSizeValueDefault,\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n 'stack-1x',\n 'stack-2x',\n]"
|
|
22816
|
+
},
|
|
22817
|
+
"default": "[\n '2xs',\n 'xs',\n 'sm',\n 'lg',\n 'xl',\n '2xl',\n faSizeValueDefault,\n '2x',\n '3x',\n '4x',\n '5x',\n '6x',\n '7x',\n '8x',\n '9x',\n '10x',\n 'stack-1x',\n 'stack-2x',\n]"
|
|
22818
|
+
},
|
|
22819
|
+
{
|
|
22820
|
+
"kind": "class",
|
|
22821
|
+
"description": "",
|
|
22822
|
+
"name": "Icon",
|
|
22823
|
+
"members": [
|
|
22824
|
+
{
|
|
22825
|
+
"kind": "field",
|
|
22826
|
+
"name": "iElement",
|
|
22827
|
+
"type": {
|
|
22828
|
+
"text": "HTMLElement"
|
|
22829
|
+
}
|
|
22830
|
+
},
|
|
22831
|
+
{
|
|
22832
|
+
"kind": "field",
|
|
22833
|
+
"name": "name",
|
|
22834
|
+
"type": {
|
|
22835
|
+
"text": "IconName"
|
|
22836
|
+
}
|
|
22837
|
+
},
|
|
22838
|
+
{
|
|
22839
|
+
"kind": "method",
|
|
22840
|
+
"name": "nameChanged",
|
|
22841
|
+
"parameters": [
|
|
22842
|
+
{
|
|
22843
|
+
"name": "oldValue",
|
|
22844
|
+
"type": {
|
|
22845
|
+
"text": "string"
|
|
22846
|
+
}
|
|
22847
|
+
},
|
|
22848
|
+
{
|
|
22849
|
+
"name": "newValue",
|
|
22850
|
+
"type": {
|
|
22851
|
+
"text": "string"
|
|
22852
|
+
}
|
|
22853
|
+
}
|
|
22854
|
+
]
|
|
22855
|
+
},
|
|
22856
|
+
{
|
|
22857
|
+
"kind": "field",
|
|
22858
|
+
"name": "size",
|
|
22859
|
+
"type": {
|
|
22860
|
+
"text": "FaSize"
|
|
22861
|
+
},
|
|
22862
|
+
"default": "'sm'"
|
|
22863
|
+
},
|
|
22864
|
+
{
|
|
22865
|
+
"kind": "method",
|
|
22866
|
+
"name": "sizeChanged",
|
|
22867
|
+
"parameters": [
|
|
22868
|
+
{
|
|
22869
|
+
"name": "oldValue",
|
|
22870
|
+
"type": {
|
|
22871
|
+
"text": "string"
|
|
22872
|
+
}
|
|
22873
|
+
},
|
|
22874
|
+
{
|
|
22875
|
+
"name": "newValue",
|
|
22876
|
+
"type": {
|
|
22877
|
+
"text": "string"
|
|
22878
|
+
}
|
|
22879
|
+
}
|
|
22880
|
+
]
|
|
22881
|
+
},
|
|
22882
|
+
{
|
|
22883
|
+
"kind": "field",
|
|
22884
|
+
"name": "variant",
|
|
22885
|
+
"type": {
|
|
22886
|
+
"text": "IconStyle"
|
|
22887
|
+
},
|
|
22888
|
+
"default": "'solid'"
|
|
22889
|
+
},
|
|
22890
|
+
{
|
|
22891
|
+
"kind": "method",
|
|
22892
|
+
"name": "variantChanged",
|
|
22893
|
+
"parameters": [
|
|
22894
|
+
{
|
|
22895
|
+
"name": "oldValue",
|
|
22896
|
+
"type": {
|
|
22897
|
+
"text": "string"
|
|
22898
|
+
}
|
|
22899
|
+
},
|
|
22900
|
+
{
|
|
22901
|
+
"name": "newValue",
|
|
22902
|
+
"type": {
|
|
22903
|
+
"text": "string"
|
|
22904
|
+
}
|
|
22905
|
+
}
|
|
22906
|
+
]
|
|
22907
|
+
},
|
|
22908
|
+
{
|
|
22909
|
+
"kind": "method",
|
|
22910
|
+
"name": "loadIcon",
|
|
22911
|
+
"privacy": "public"
|
|
22912
|
+
},
|
|
22913
|
+
{
|
|
22914
|
+
"kind": "field",
|
|
22915
|
+
"name": "_presentation",
|
|
22916
|
+
"type": {
|
|
22917
|
+
"text": "ComponentPresentation | null | undefined"
|
|
22918
|
+
},
|
|
22919
|
+
"privacy": "private",
|
|
22920
|
+
"default": "void 0",
|
|
22921
|
+
"inheritedFrom": {
|
|
22922
|
+
"name": "FoundationElement",
|
|
22923
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22924
|
+
}
|
|
22925
|
+
},
|
|
22926
|
+
{
|
|
22927
|
+
"kind": "field",
|
|
22928
|
+
"name": "$presentation",
|
|
22929
|
+
"type": {
|
|
22930
|
+
"text": "ComponentPresentation | null"
|
|
22931
|
+
},
|
|
22932
|
+
"privacy": "public",
|
|
22933
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22934
|
+
"inheritedFrom": {
|
|
22935
|
+
"name": "FoundationElement",
|
|
22936
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22937
|
+
}
|
|
22938
|
+
},
|
|
22939
|
+
{
|
|
22940
|
+
"kind": "field",
|
|
22941
|
+
"name": "template",
|
|
22942
|
+
"type": {
|
|
22943
|
+
"text": "ElementViewTemplate | void | null"
|
|
22944
|
+
},
|
|
22945
|
+
"privacy": "public",
|
|
22946
|
+
"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.",
|
|
22947
|
+
"inheritedFrom": {
|
|
22948
|
+
"name": "FoundationElement",
|
|
22949
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22950
|
+
}
|
|
22951
|
+
},
|
|
22952
|
+
{
|
|
22953
|
+
"kind": "method",
|
|
22954
|
+
"name": "templateChanged",
|
|
22955
|
+
"privacy": "protected",
|
|
22956
|
+
"return": {
|
|
22957
|
+
"type": {
|
|
22958
|
+
"text": "void"
|
|
22959
|
+
}
|
|
22960
|
+
},
|
|
22961
|
+
"inheritedFrom": {
|
|
22962
|
+
"name": "FoundationElement",
|
|
22963
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22964
|
+
}
|
|
22965
|
+
},
|
|
22966
|
+
{
|
|
22967
|
+
"kind": "field",
|
|
22968
|
+
"name": "styles",
|
|
22969
|
+
"type": {
|
|
22970
|
+
"text": "ElementStyles | void | null"
|
|
22971
|
+
},
|
|
22972
|
+
"privacy": "public",
|
|
22973
|
+
"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.",
|
|
22974
|
+
"inheritedFrom": {
|
|
22975
|
+
"name": "FoundationElement",
|
|
22976
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22977
|
+
}
|
|
22978
|
+
},
|
|
22979
|
+
{
|
|
22980
|
+
"kind": "method",
|
|
22981
|
+
"name": "stylesChanged",
|
|
22982
|
+
"privacy": "protected",
|
|
22983
|
+
"return": {
|
|
22984
|
+
"type": {
|
|
22985
|
+
"text": "void"
|
|
22986
|
+
}
|
|
22987
|
+
},
|
|
22988
|
+
"inheritedFrom": {
|
|
22989
|
+
"name": "FoundationElement",
|
|
22990
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22991
|
+
}
|
|
22992
|
+
},
|
|
22993
|
+
{
|
|
22994
|
+
"kind": "method",
|
|
22995
|
+
"name": "compose",
|
|
22996
|
+
"privacy": "public",
|
|
22997
|
+
"static": true,
|
|
22998
|
+
"return": {
|
|
22999
|
+
"type": {
|
|
23000
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
23001
|
+
}
|
|
23002
|
+
},
|
|
23003
|
+
"parameters": [
|
|
23004
|
+
{
|
|
23005
|
+
"name": "this",
|
|
23006
|
+
"type": {
|
|
23007
|
+
"text": "K"
|
|
23008
|
+
}
|
|
23009
|
+
},
|
|
23010
|
+
{
|
|
23011
|
+
"name": "elementDefinition",
|
|
23012
|
+
"type": {
|
|
23013
|
+
"text": "T"
|
|
23014
|
+
},
|
|
23015
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
23016
|
+
}
|
|
23017
|
+
],
|
|
23018
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
23019
|
+
"inheritedFrom": {
|
|
23020
|
+
"name": "FoundationElement",
|
|
23021
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
23022
|
+
}
|
|
23023
|
+
}
|
|
23024
|
+
],
|
|
23025
|
+
"attributes": [
|
|
23026
|
+
{
|
|
23027
|
+
"name": "name",
|
|
23028
|
+
"type": {
|
|
23029
|
+
"text": "IconName"
|
|
23030
|
+
},
|
|
23031
|
+
"fieldName": "name"
|
|
23032
|
+
},
|
|
23033
|
+
{
|
|
23034
|
+
"name": "size",
|
|
23035
|
+
"type": {
|
|
23036
|
+
"text": "FaSize"
|
|
23037
|
+
},
|
|
23038
|
+
"default": "'sm'",
|
|
23039
|
+
"fieldName": "size"
|
|
23040
|
+
},
|
|
23041
|
+
{
|
|
23042
|
+
"name": "variant",
|
|
23043
|
+
"type": {
|
|
23044
|
+
"text": "IconStyle"
|
|
23045
|
+
},
|
|
23046
|
+
"default": "'solid'",
|
|
23047
|
+
"fieldName": "variant"
|
|
23048
|
+
}
|
|
23049
|
+
],
|
|
23050
|
+
"superclass": {
|
|
23051
|
+
"name": "FoundationElement",
|
|
23052
|
+
"package": "@microsoft/fast-foundation"
|
|
23053
|
+
},
|
|
23054
|
+
"tagName": "%%prefix%%-icon",
|
|
23055
|
+
"customElement": true
|
|
23056
|
+
},
|
|
23057
|
+
{
|
|
23058
|
+
"kind": "variable",
|
|
23059
|
+
"name": "foundationIcon",
|
|
23060
|
+
"description": "The Foundation Icon",
|
|
23061
|
+
"privacy": "public"
|
|
23062
|
+
}
|
|
23063
|
+
],
|
|
23064
|
+
"exports": [
|
|
23065
|
+
{
|
|
23066
|
+
"kind": "js",
|
|
23067
|
+
"name": "IconName",
|
|
23068
|
+
"declaration": {
|
|
23069
|
+
"name": "IconName",
|
|
23070
|
+
"module": "src/icon/icon.ts"
|
|
23071
|
+
}
|
|
23072
|
+
},
|
|
23073
|
+
{
|
|
23074
|
+
"kind": "js",
|
|
23075
|
+
"name": "IconStyle",
|
|
23076
|
+
"declaration": {
|
|
23077
|
+
"name": "IconStyle",
|
|
23078
|
+
"module": "src/icon/icon.ts"
|
|
23079
|
+
}
|
|
23080
|
+
},
|
|
23081
|
+
{
|
|
23082
|
+
"kind": "js",
|
|
23083
|
+
"name": "foundationIconShadowOptions",
|
|
23084
|
+
"declaration": {
|
|
23085
|
+
"name": "foundationIconShadowOptions",
|
|
23086
|
+
"module": "src/icon/icon.ts"
|
|
23087
|
+
}
|
|
23088
|
+
},
|
|
23089
|
+
{
|
|
23090
|
+
"kind": "js",
|
|
23091
|
+
"name": "defaultIconConfig",
|
|
23092
|
+
"declaration": {
|
|
23093
|
+
"name": "defaultIconConfig",
|
|
23094
|
+
"module": "src/icon/icon.ts"
|
|
23095
|
+
}
|
|
23096
|
+
},
|
|
23097
|
+
{
|
|
23098
|
+
"kind": "js",
|
|
23099
|
+
"name": "faSizeValueDefault",
|
|
23100
|
+
"declaration": {
|
|
23101
|
+
"name": "faSizeValueDefault",
|
|
23102
|
+
"module": "src/icon/icon.ts"
|
|
23103
|
+
}
|
|
23104
|
+
},
|
|
23105
|
+
{
|
|
23106
|
+
"kind": "js",
|
|
23107
|
+
"name": "faSizeValues",
|
|
23108
|
+
"declaration": {
|
|
23109
|
+
"name": "faSizeValues",
|
|
23110
|
+
"module": "src/icon/icon.ts"
|
|
23111
|
+
}
|
|
23112
|
+
},
|
|
23113
|
+
{
|
|
23114
|
+
"kind": "js",
|
|
23115
|
+
"name": "Icon",
|
|
23116
|
+
"declaration": {
|
|
23117
|
+
"name": "Icon",
|
|
23118
|
+
"module": "src/icon/icon.ts"
|
|
23119
|
+
}
|
|
23120
|
+
},
|
|
23121
|
+
{
|
|
23122
|
+
"kind": "js",
|
|
23123
|
+
"name": "foundationIcon",
|
|
23124
|
+
"declaration": {
|
|
23125
|
+
"name": "foundationIcon",
|
|
23126
|
+
"module": "src/icon/icon.ts"
|
|
23127
|
+
}
|
|
23128
|
+
}
|
|
23129
|
+
]
|
|
23130
|
+
},
|
|
23131
|
+
{
|
|
23132
|
+
"kind": "javascript-module",
|
|
23133
|
+
"path": "src/icon/index.ts",
|
|
23134
|
+
"declarations": [],
|
|
23135
|
+
"exports": [
|
|
23136
|
+
{
|
|
23137
|
+
"kind": "js",
|
|
23138
|
+
"name": "*",
|
|
23139
|
+
"declaration": {
|
|
23140
|
+
"name": "*",
|
|
23141
|
+
"package": "./icon.styles"
|
|
23142
|
+
}
|
|
23143
|
+
},
|
|
23144
|
+
{
|
|
23145
|
+
"kind": "js",
|
|
23146
|
+
"name": "*",
|
|
23147
|
+
"declaration": {
|
|
23148
|
+
"name": "*",
|
|
23149
|
+
"package": "./icon.template"
|
|
23150
|
+
}
|
|
23151
|
+
},
|
|
23152
|
+
{
|
|
23153
|
+
"kind": "js",
|
|
23154
|
+
"name": "*",
|
|
23155
|
+
"declaration": {
|
|
23156
|
+
"name": "*",
|
|
23157
|
+
"package": "./icon"
|
|
23158
|
+
}
|
|
23159
|
+
}
|
|
23160
|
+
]
|
|
23161
|
+
},
|
|
23146
23162
|
{
|
|
23147
23163
|
"kind": "javascript-module",
|
|
23148
23164
|
"path": "src/modal/index.ts",
|
|
@@ -24410,6 +24426,14 @@
|
|
|
24410
24426
|
"description": "Array of buttons for notification toasts",
|
|
24411
24427
|
"privacy": "public"
|
|
24412
24428
|
},
|
|
24429
|
+
{
|
|
24430
|
+
"kind": "field",
|
|
24431
|
+
"name": "dataSub",
|
|
24432
|
+
"type": {
|
|
24433
|
+
"text": "Subscription"
|
|
24434
|
+
},
|
|
24435
|
+
"privacy": "protected"
|
|
24436
|
+
},
|
|
24413
24437
|
{
|
|
24414
24438
|
"kind": "field",
|
|
24415
24439
|
"name": "datasource",
|
|
@@ -25406,6 +25430,21 @@
|
|
|
25406
25430
|
}
|
|
25407
25431
|
]
|
|
25408
25432
|
},
|
|
25433
|
+
{
|
|
25434
|
+
"kind": "javascript-module",
|
|
25435
|
+
"path": "src/overlays/index.ts",
|
|
25436
|
+
"declarations": [],
|
|
25437
|
+
"exports": [
|
|
25438
|
+
{
|
|
25439
|
+
"kind": "js",
|
|
25440
|
+
"name": "*",
|
|
25441
|
+
"declaration": {
|
|
25442
|
+
"name": "*",
|
|
25443
|
+
"package": "./system-health"
|
|
25444
|
+
}
|
|
25445
|
+
}
|
|
25446
|
+
]
|
|
25447
|
+
},
|
|
25409
25448
|
{
|
|
25410
25449
|
"kind": "javascript-module",
|
|
25411
25450
|
"path": "src/options-datasource/index.ts",
|
|
@@ -31317,6 +31356,404 @@
|
|
|
31317
31356
|
}
|
|
31318
31357
|
]
|
|
31319
31358
|
},
|
|
31359
|
+
{
|
|
31360
|
+
"kind": "javascript-module",
|
|
31361
|
+
"path": "src/skeleton/index.ts",
|
|
31362
|
+
"declarations": [],
|
|
31363
|
+
"exports": [
|
|
31364
|
+
{
|
|
31365
|
+
"kind": "js",
|
|
31366
|
+
"name": "*",
|
|
31367
|
+
"declaration": {
|
|
31368
|
+
"name": "*",
|
|
31369
|
+
"package": "./skeleton.template"
|
|
31370
|
+
}
|
|
31371
|
+
},
|
|
31372
|
+
{
|
|
31373
|
+
"kind": "js",
|
|
31374
|
+
"name": "*",
|
|
31375
|
+
"declaration": {
|
|
31376
|
+
"name": "*",
|
|
31377
|
+
"package": "./skeleton.styles"
|
|
31378
|
+
}
|
|
31379
|
+
},
|
|
31380
|
+
{
|
|
31381
|
+
"kind": "js",
|
|
31382
|
+
"name": "*",
|
|
31383
|
+
"declaration": {
|
|
31384
|
+
"name": "*",
|
|
31385
|
+
"package": "./skeleton"
|
|
31386
|
+
}
|
|
31387
|
+
}
|
|
31388
|
+
]
|
|
31389
|
+
},
|
|
31390
|
+
{
|
|
31391
|
+
"kind": "javascript-module",
|
|
31392
|
+
"path": "src/skeleton/skeleton.styles.ts",
|
|
31393
|
+
"declarations": [
|
|
31394
|
+
{
|
|
31395
|
+
"kind": "function",
|
|
31396
|
+
"name": "foundationSkeletonStyles",
|
|
31397
|
+
"return": {
|
|
31398
|
+
"type": {
|
|
31399
|
+
"text": "ElementStyles"
|
|
31400
|
+
}
|
|
31401
|
+
},
|
|
31402
|
+
"parameters": [
|
|
31403
|
+
{
|
|
31404
|
+
"name": "context",
|
|
31405
|
+
"type": {
|
|
31406
|
+
"text": "ElementDefinitionContext"
|
|
31407
|
+
}
|
|
31408
|
+
},
|
|
31409
|
+
{
|
|
31410
|
+
"name": "definition",
|
|
31411
|
+
"type": {
|
|
31412
|
+
"text": "FoundationElementDefinition"
|
|
31413
|
+
}
|
|
31414
|
+
}
|
|
31415
|
+
]
|
|
31416
|
+
}
|
|
31417
|
+
],
|
|
31418
|
+
"exports": [
|
|
31419
|
+
{
|
|
31420
|
+
"kind": "js",
|
|
31421
|
+
"name": "foundationSkeletonStyles",
|
|
31422
|
+
"declaration": {
|
|
31423
|
+
"name": "foundationSkeletonStyles",
|
|
31424
|
+
"module": "src/skeleton/skeleton.styles.ts"
|
|
31425
|
+
}
|
|
31426
|
+
}
|
|
31427
|
+
]
|
|
31428
|
+
},
|
|
31429
|
+
{
|
|
31430
|
+
"kind": "javascript-module",
|
|
31431
|
+
"path": "src/skeleton/skeleton.template.ts",
|
|
31432
|
+
"declarations": [
|
|
31433
|
+
{
|
|
31434
|
+
"kind": "function",
|
|
31435
|
+
"name": "foundationSkeletonTemplate",
|
|
31436
|
+
"return": {
|
|
31437
|
+
"type": {
|
|
31438
|
+
"text": "ViewTemplate<Skeleton>"
|
|
31439
|
+
}
|
|
31440
|
+
},
|
|
31441
|
+
"parameters": [
|
|
31442
|
+
{
|
|
31443
|
+
"name": "context",
|
|
31444
|
+
"type": {
|
|
31445
|
+
"text": "ElementDefinitionContext"
|
|
31446
|
+
}
|
|
31447
|
+
},
|
|
31448
|
+
{
|
|
31449
|
+
"name": "definition",
|
|
31450
|
+
"type": {
|
|
31451
|
+
"text": "FoundationElementDefinition"
|
|
31452
|
+
}
|
|
31453
|
+
}
|
|
31454
|
+
]
|
|
31455
|
+
}
|
|
31456
|
+
],
|
|
31457
|
+
"exports": [
|
|
31458
|
+
{
|
|
31459
|
+
"kind": "js",
|
|
31460
|
+
"name": "foundationSkeletonTemplate",
|
|
31461
|
+
"declaration": {
|
|
31462
|
+
"name": "foundationSkeletonTemplate",
|
|
31463
|
+
"module": "src/skeleton/skeleton.template.ts"
|
|
31464
|
+
}
|
|
31465
|
+
}
|
|
31466
|
+
]
|
|
31467
|
+
},
|
|
31468
|
+
{
|
|
31469
|
+
"kind": "javascript-module",
|
|
31470
|
+
"path": "src/skeleton/skeleton.ts",
|
|
31471
|
+
"declarations": [
|
|
31472
|
+
{
|
|
31473
|
+
"kind": "class",
|
|
31474
|
+
"description": "",
|
|
31475
|
+
"name": "Skeleton",
|
|
31476
|
+
"superclass": {
|
|
31477
|
+
"name": "FASTSkeleton",
|
|
31478
|
+
"package": "@microsoft/fast-components"
|
|
31479
|
+
},
|
|
31480
|
+
"tagName": "%%prefix%%-skeleton",
|
|
31481
|
+
"customElement": true,
|
|
31482
|
+
"attributes": [
|
|
31483
|
+
{
|
|
31484
|
+
"name": "fill",
|
|
31485
|
+
"type": {
|
|
31486
|
+
"text": "string"
|
|
31487
|
+
},
|
|
31488
|
+
"description": "Indicates the Skeleton should have a filled style.",
|
|
31489
|
+
"fieldName": "fill",
|
|
31490
|
+
"inheritedFrom": {
|
|
31491
|
+
"name": "Skeleton",
|
|
31492
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31493
|
+
}
|
|
31494
|
+
},
|
|
31495
|
+
{
|
|
31496
|
+
"name": "shape",
|
|
31497
|
+
"type": {
|
|
31498
|
+
"text": "SkeletonShape"
|
|
31499
|
+
},
|
|
31500
|
+
"default": "\"rect\"",
|
|
31501
|
+
"description": "Indicates what the shape of the Skeleton should be.",
|
|
31502
|
+
"fieldName": "shape",
|
|
31503
|
+
"inheritedFrom": {
|
|
31504
|
+
"name": "Skeleton",
|
|
31505
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31506
|
+
}
|
|
31507
|
+
},
|
|
31508
|
+
{
|
|
31509
|
+
"name": "pattern",
|
|
31510
|
+
"type": {
|
|
31511
|
+
"text": "string"
|
|
31512
|
+
},
|
|
31513
|
+
"description": "Indicates that the component can accept a pattern URL.",
|
|
31514
|
+
"fieldName": "pattern",
|
|
31515
|
+
"inheritedFrom": {
|
|
31516
|
+
"name": "Skeleton",
|
|
31517
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31518
|
+
}
|
|
31519
|
+
},
|
|
31520
|
+
{
|
|
31521
|
+
"type": {
|
|
31522
|
+
"text": "boolean"
|
|
31523
|
+
},
|
|
31524
|
+
"description": "Indicates that the component has an activated shimmer effect",
|
|
31525
|
+
"fieldName": "shimmer",
|
|
31526
|
+
"inheritedFrom": {
|
|
31527
|
+
"name": "Skeleton",
|
|
31528
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31529
|
+
}
|
|
31530
|
+
}
|
|
31531
|
+
],
|
|
31532
|
+
"members": [
|
|
31533
|
+
{
|
|
31534
|
+
"kind": "field",
|
|
31535
|
+
"name": "fill",
|
|
31536
|
+
"type": {
|
|
31537
|
+
"text": "string"
|
|
31538
|
+
},
|
|
31539
|
+
"privacy": "public",
|
|
31540
|
+
"description": "Indicates the Skeleton should have a filled style.",
|
|
31541
|
+
"inheritedFrom": {
|
|
31542
|
+
"name": "Skeleton",
|
|
31543
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31544
|
+
}
|
|
31545
|
+
},
|
|
31546
|
+
{
|
|
31547
|
+
"kind": "field",
|
|
31548
|
+
"name": "shape",
|
|
31549
|
+
"type": {
|
|
31550
|
+
"text": "SkeletonShape"
|
|
31551
|
+
},
|
|
31552
|
+
"privacy": "public",
|
|
31553
|
+
"default": "\"rect\"",
|
|
31554
|
+
"description": "Indicates what the shape of the Skeleton should be.",
|
|
31555
|
+
"inheritedFrom": {
|
|
31556
|
+
"name": "Skeleton",
|
|
31557
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31558
|
+
}
|
|
31559
|
+
},
|
|
31560
|
+
{
|
|
31561
|
+
"kind": "field",
|
|
31562
|
+
"name": "pattern",
|
|
31563
|
+
"type": {
|
|
31564
|
+
"text": "string"
|
|
31565
|
+
},
|
|
31566
|
+
"privacy": "public",
|
|
31567
|
+
"description": "Indicates that the component can accept a pattern URL.",
|
|
31568
|
+
"inheritedFrom": {
|
|
31569
|
+
"name": "Skeleton",
|
|
31570
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31571
|
+
}
|
|
31572
|
+
},
|
|
31573
|
+
{
|
|
31574
|
+
"kind": "field",
|
|
31575
|
+
"name": "shimmer",
|
|
31576
|
+
"type": {
|
|
31577
|
+
"text": "boolean"
|
|
31578
|
+
},
|
|
31579
|
+
"privacy": "public",
|
|
31580
|
+
"description": "Indicates that the component has an activated shimmer effect",
|
|
31581
|
+
"inheritedFrom": {
|
|
31582
|
+
"name": "Skeleton",
|
|
31583
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31584
|
+
}
|
|
31585
|
+
},
|
|
31586
|
+
{
|
|
31587
|
+
"kind": "field",
|
|
31588
|
+
"name": "_presentation",
|
|
31589
|
+
"type": {
|
|
31590
|
+
"text": "ComponentPresentation | null | undefined"
|
|
31591
|
+
},
|
|
31592
|
+
"privacy": "private",
|
|
31593
|
+
"default": "void 0",
|
|
31594
|
+
"inheritedFrom": {
|
|
31595
|
+
"name": "FoundationElement",
|
|
31596
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31597
|
+
}
|
|
31598
|
+
},
|
|
31599
|
+
{
|
|
31600
|
+
"kind": "field",
|
|
31601
|
+
"name": "$presentation",
|
|
31602
|
+
"type": {
|
|
31603
|
+
"text": "ComponentPresentation | null"
|
|
31604
|
+
},
|
|
31605
|
+
"privacy": "public",
|
|
31606
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
31607
|
+
"inheritedFrom": {
|
|
31608
|
+
"name": "FoundationElement",
|
|
31609
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31610
|
+
}
|
|
31611
|
+
},
|
|
31612
|
+
{
|
|
31613
|
+
"kind": "field",
|
|
31614
|
+
"name": "template",
|
|
31615
|
+
"type": {
|
|
31616
|
+
"text": "ElementViewTemplate | void | null"
|
|
31617
|
+
},
|
|
31618
|
+
"privacy": "public",
|
|
31619
|
+
"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.",
|
|
31620
|
+
"inheritedFrom": {
|
|
31621
|
+
"name": "FoundationElement",
|
|
31622
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31623
|
+
}
|
|
31624
|
+
},
|
|
31625
|
+
{
|
|
31626
|
+
"kind": "method",
|
|
31627
|
+
"name": "templateChanged",
|
|
31628
|
+
"privacy": "protected",
|
|
31629
|
+
"return": {
|
|
31630
|
+
"type": {
|
|
31631
|
+
"text": "void"
|
|
31632
|
+
}
|
|
31633
|
+
},
|
|
31634
|
+
"inheritedFrom": {
|
|
31635
|
+
"name": "FoundationElement",
|
|
31636
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31637
|
+
}
|
|
31638
|
+
},
|
|
31639
|
+
{
|
|
31640
|
+
"kind": "field",
|
|
31641
|
+
"name": "styles",
|
|
31642
|
+
"type": {
|
|
31643
|
+
"text": "ElementStyles | void | null"
|
|
31644
|
+
},
|
|
31645
|
+
"privacy": "public",
|
|
31646
|
+
"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.",
|
|
31647
|
+
"inheritedFrom": {
|
|
31648
|
+
"name": "FoundationElement",
|
|
31649
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31650
|
+
}
|
|
31651
|
+
},
|
|
31652
|
+
{
|
|
31653
|
+
"kind": "method",
|
|
31654
|
+
"name": "stylesChanged",
|
|
31655
|
+
"privacy": "protected",
|
|
31656
|
+
"return": {
|
|
31657
|
+
"type": {
|
|
31658
|
+
"text": "void"
|
|
31659
|
+
}
|
|
31660
|
+
},
|
|
31661
|
+
"inheritedFrom": {
|
|
31662
|
+
"name": "FoundationElement",
|
|
31663
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31664
|
+
}
|
|
31665
|
+
},
|
|
31666
|
+
{
|
|
31667
|
+
"kind": "method",
|
|
31668
|
+
"name": "compose",
|
|
31669
|
+
"privacy": "public",
|
|
31670
|
+
"static": true,
|
|
31671
|
+
"return": {
|
|
31672
|
+
"type": {
|
|
31673
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
31674
|
+
}
|
|
31675
|
+
},
|
|
31676
|
+
"parameters": [
|
|
31677
|
+
{
|
|
31678
|
+
"name": "this",
|
|
31679
|
+
"type": {
|
|
31680
|
+
"text": "K"
|
|
31681
|
+
}
|
|
31682
|
+
},
|
|
31683
|
+
{
|
|
31684
|
+
"name": "elementDefinition",
|
|
31685
|
+
"type": {
|
|
31686
|
+
"text": "T"
|
|
31687
|
+
},
|
|
31688
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
31689
|
+
}
|
|
31690
|
+
],
|
|
31691
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
31692
|
+
"inheritedFrom": {
|
|
31693
|
+
"name": "FoundationElement",
|
|
31694
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
31695
|
+
}
|
|
31696
|
+
}
|
|
31697
|
+
]
|
|
31698
|
+
},
|
|
31699
|
+
{
|
|
31700
|
+
"kind": "variable",
|
|
31701
|
+
"name": "foundationSkeletonShadowOptions",
|
|
31702
|
+
"type": {
|
|
31703
|
+
"text": "ShadowRootInit"
|
|
31704
|
+
},
|
|
31705
|
+
"default": "undefined"
|
|
31706
|
+
},
|
|
31707
|
+
{
|
|
31708
|
+
"kind": "variable",
|
|
31709
|
+
"name": "defaultSkeletonConfig",
|
|
31710
|
+
"type": {
|
|
31711
|
+
"text": "object"
|
|
31712
|
+
},
|
|
31713
|
+
"default": "{}"
|
|
31714
|
+
},
|
|
31715
|
+
{
|
|
31716
|
+
"kind": "variable",
|
|
31717
|
+
"name": "foundationSkeleton",
|
|
31718
|
+
"description": "The Foundation Skeleton",
|
|
31719
|
+
"privacy": "public"
|
|
31720
|
+
}
|
|
31721
|
+
],
|
|
31722
|
+
"exports": [
|
|
31723
|
+
{
|
|
31724
|
+
"kind": "js",
|
|
31725
|
+
"name": "Skeleton",
|
|
31726
|
+
"declaration": {
|
|
31727
|
+
"name": "Skeleton",
|
|
31728
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31729
|
+
}
|
|
31730
|
+
},
|
|
31731
|
+
{
|
|
31732
|
+
"kind": "js",
|
|
31733
|
+
"name": "foundationSkeletonShadowOptions",
|
|
31734
|
+
"declaration": {
|
|
31735
|
+
"name": "foundationSkeletonShadowOptions",
|
|
31736
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31737
|
+
}
|
|
31738
|
+
},
|
|
31739
|
+
{
|
|
31740
|
+
"kind": "js",
|
|
31741
|
+
"name": "defaultSkeletonConfig",
|
|
31742
|
+
"declaration": {
|
|
31743
|
+
"name": "defaultSkeletonConfig",
|
|
31744
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31745
|
+
}
|
|
31746
|
+
},
|
|
31747
|
+
{
|
|
31748
|
+
"kind": "js",
|
|
31749
|
+
"name": "foundationSkeleton",
|
|
31750
|
+
"declaration": {
|
|
31751
|
+
"name": "foundationSkeleton",
|
|
31752
|
+
"module": "src/skeleton/skeleton.ts"
|
|
31753
|
+
}
|
|
31754
|
+
}
|
|
31755
|
+
]
|
|
31756
|
+
},
|
|
31320
31757
|
{
|
|
31321
31758
|
"kind": "javascript-module",
|
|
31322
31759
|
"path": "src/select/index.ts",
|
|
@@ -31952,404 +32389,6 @@
|
|
|
31952
32389
|
}
|
|
31953
32390
|
]
|
|
31954
32391
|
},
|
|
31955
|
-
{
|
|
31956
|
-
"kind": "javascript-module",
|
|
31957
|
-
"path": "src/skeleton/index.ts",
|
|
31958
|
-
"declarations": [],
|
|
31959
|
-
"exports": [
|
|
31960
|
-
{
|
|
31961
|
-
"kind": "js",
|
|
31962
|
-
"name": "*",
|
|
31963
|
-
"declaration": {
|
|
31964
|
-
"name": "*",
|
|
31965
|
-
"package": "./skeleton.template"
|
|
31966
|
-
}
|
|
31967
|
-
},
|
|
31968
|
-
{
|
|
31969
|
-
"kind": "js",
|
|
31970
|
-
"name": "*",
|
|
31971
|
-
"declaration": {
|
|
31972
|
-
"name": "*",
|
|
31973
|
-
"package": "./skeleton.styles"
|
|
31974
|
-
}
|
|
31975
|
-
},
|
|
31976
|
-
{
|
|
31977
|
-
"kind": "js",
|
|
31978
|
-
"name": "*",
|
|
31979
|
-
"declaration": {
|
|
31980
|
-
"name": "*",
|
|
31981
|
-
"package": "./skeleton"
|
|
31982
|
-
}
|
|
31983
|
-
}
|
|
31984
|
-
]
|
|
31985
|
-
},
|
|
31986
|
-
{
|
|
31987
|
-
"kind": "javascript-module",
|
|
31988
|
-
"path": "src/skeleton/skeleton.styles.ts",
|
|
31989
|
-
"declarations": [
|
|
31990
|
-
{
|
|
31991
|
-
"kind": "function",
|
|
31992
|
-
"name": "foundationSkeletonStyles",
|
|
31993
|
-
"return": {
|
|
31994
|
-
"type": {
|
|
31995
|
-
"text": "ElementStyles"
|
|
31996
|
-
}
|
|
31997
|
-
},
|
|
31998
|
-
"parameters": [
|
|
31999
|
-
{
|
|
32000
|
-
"name": "context",
|
|
32001
|
-
"type": {
|
|
32002
|
-
"text": "ElementDefinitionContext"
|
|
32003
|
-
}
|
|
32004
|
-
},
|
|
32005
|
-
{
|
|
32006
|
-
"name": "definition",
|
|
32007
|
-
"type": {
|
|
32008
|
-
"text": "FoundationElementDefinition"
|
|
32009
|
-
}
|
|
32010
|
-
}
|
|
32011
|
-
]
|
|
32012
|
-
}
|
|
32013
|
-
],
|
|
32014
|
-
"exports": [
|
|
32015
|
-
{
|
|
32016
|
-
"kind": "js",
|
|
32017
|
-
"name": "foundationSkeletonStyles",
|
|
32018
|
-
"declaration": {
|
|
32019
|
-
"name": "foundationSkeletonStyles",
|
|
32020
|
-
"module": "src/skeleton/skeleton.styles.ts"
|
|
32021
|
-
}
|
|
32022
|
-
}
|
|
32023
|
-
]
|
|
32024
|
-
},
|
|
32025
|
-
{
|
|
32026
|
-
"kind": "javascript-module",
|
|
32027
|
-
"path": "src/skeleton/skeleton.template.ts",
|
|
32028
|
-
"declarations": [
|
|
32029
|
-
{
|
|
32030
|
-
"kind": "function",
|
|
32031
|
-
"name": "foundationSkeletonTemplate",
|
|
32032
|
-
"return": {
|
|
32033
|
-
"type": {
|
|
32034
|
-
"text": "ViewTemplate<Skeleton>"
|
|
32035
|
-
}
|
|
32036
|
-
},
|
|
32037
|
-
"parameters": [
|
|
32038
|
-
{
|
|
32039
|
-
"name": "context",
|
|
32040
|
-
"type": {
|
|
32041
|
-
"text": "ElementDefinitionContext"
|
|
32042
|
-
}
|
|
32043
|
-
},
|
|
32044
|
-
{
|
|
32045
|
-
"name": "definition",
|
|
32046
|
-
"type": {
|
|
32047
|
-
"text": "FoundationElementDefinition"
|
|
32048
|
-
}
|
|
32049
|
-
}
|
|
32050
|
-
]
|
|
32051
|
-
}
|
|
32052
|
-
],
|
|
32053
|
-
"exports": [
|
|
32054
|
-
{
|
|
32055
|
-
"kind": "js",
|
|
32056
|
-
"name": "foundationSkeletonTemplate",
|
|
32057
|
-
"declaration": {
|
|
32058
|
-
"name": "foundationSkeletonTemplate",
|
|
32059
|
-
"module": "src/skeleton/skeleton.template.ts"
|
|
32060
|
-
}
|
|
32061
|
-
}
|
|
32062
|
-
]
|
|
32063
|
-
},
|
|
32064
|
-
{
|
|
32065
|
-
"kind": "javascript-module",
|
|
32066
|
-
"path": "src/skeleton/skeleton.ts",
|
|
32067
|
-
"declarations": [
|
|
32068
|
-
{
|
|
32069
|
-
"kind": "class",
|
|
32070
|
-
"description": "",
|
|
32071
|
-
"name": "Skeleton",
|
|
32072
|
-
"superclass": {
|
|
32073
|
-
"name": "FASTSkeleton",
|
|
32074
|
-
"package": "@microsoft/fast-components"
|
|
32075
|
-
},
|
|
32076
|
-
"tagName": "%%prefix%%-skeleton",
|
|
32077
|
-
"customElement": true,
|
|
32078
|
-
"attributes": [
|
|
32079
|
-
{
|
|
32080
|
-
"name": "fill",
|
|
32081
|
-
"type": {
|
|
32082
|
-
"text": "string"
|
|
32083
|
-
},
|
|
32084
|
-
"description": "Indicates the Skeleton should have a filled style.",
|
|
32085
|
-
"fieldName": "fill",
|
|
32086
|
-
"inheritedFrom": {
|
|
32087
|
-
"name": "Skeleton",
|
|
32088
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32089
|
-
}
|
|
32090
|
-
},
|
|
32091
|
-
{
|
|
32092
|
-
"name": "shape",
|
|
32093
|
-
"type": {
|
|
32094
|
-
"text": "SkeletonShape"
|
|
32095
|
-
},
|
|
32096
|
-
"default": "\"rect\"",
|
|
32097
|
-
"description": "Indicates what the shape of the Skeleton should be.",
|
|
32098
|
-
"fieldName": "shape",
|
|
32099
|
-
"inheritedFrom": {
|
|
32100
|
-
"name": "Skeleton",
|
|
32101
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32102
|
-
}
|
|
32103
|
-
},
|
|
32104
|
-
{
|
|
32105
|
-
"name": "pattern",
|
|
32106
|
-
"type": {
|
|
32107
|
-
"text": "string"
|
|
32108
|
-
},
|
|
32109
|
-
"description": "Indicates that the component can accept a pattern URL.",
|
|
32110
|
-
"fieldName": "pattern",
|
|
32111
|
-
"inheritedFrom": {
|
|
32112
|
-
"name": "Skeleton",
|
|
32113
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32114
|
-
}
|
|
32115
|
-
},
|
|
32116
|
-
{
|
|
32117
|
-
"type": {
|
|
32118
|
-
"text": "boolean"
|
|
32119
|
-
},
|
|
32120
|
-
"description": "Indicates that the component has an activated shimmer effect",
|
|
32121
|
-
"fieldName": "shimmer",
|
|
32122
|
-
"inheritedFrom": {
|
|
32123
|
-
"name": "Skeleton",
|
|
32124
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32125
|
-
}
|
|
32126
|
-
}
|
|
32127
|
-
],
|
|
32128
|
-
"members": [
|
|
32129
|
-
{
|
|
32130
|
-
"kind": "field",
|
|
32131
|
-
"name": "fill",
|
|
32132
|
-
"type": {
|
|
32133
|
-
"text": "string"
|
|
32134
|
-
},
|
|
32135
|
-
"privacy": "public",
|
|
32136
|
-
"description": "Indicates the Skeleton should have a filled style.",
|
|
32137
|
-
"inheritedFrom": {
|
|
32138
|
-
"name": "Skeleton",
|
|
32139
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32140
|
-
}
|
|
32141
|
-
},
|
|
32142
|
-
{
|
|
32143
|
-
"kind": "field",
|
|
32144
|
-
"name": "shape",
|
|
32145
|
-
"type": {
|
|
32146
|
-
"text": "SkeletonShape"
|
|
32147
|
-
},
|
|
32148
|
-
"privacy": "public",
|
|
32149
|
-
"default": "\"rect\"",
|
|
32150
|
-
"description": "Indicates what the shape of the Skeleton should be.",
|
|
32151
|
-
"inheritedFrom": {
|
|
32152
|
-
"name": "Skeleton",
|
|
32153
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32154
|
-
}
|
|
32155
|
-
},
|
|
32156
|
-
{
|
|
32157
|
-
"kind": "field",
|
|
32158
|
-
"name": "pattern",
|
|
32159
|
-
"type": {
|
|
32160
|
-
"text": "string"
|
|
32161
|
-
},
|
|
32162
|
-
"privacy": "public",
|
|
32163
|
-
"description": "Indicates that the component can accept a pattern URL.",
|
|
32164
|
-
"inheritedFrom": {
|
|
32165
|
-
"name": "Skeleton",
|
|
32166
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32167
|
-
}
|
|
32168
|
-
},
|
|
32169
|
-
{
|
|
32170
|
-
"kind": "field",
|
|
32171
|
-
"name": "shimmer",
|
|
32172
|
-
"type": {
|
|
32173
|
-
"text": "boolean"
|
|
32174
|
-
},
|
|
32175
|
-
"privacy": "public",
|
|
32176
|
-
"description": "Indicates that the component has an activated shimmer effect",
|
|
32177
|
-
"inheritedFrom": {
|
|
32178
|
-
"name": "Skeleton",
|
|
32179
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32180
|
-
}
|
|
32181
|
-
},
|
|
32182
|
-
{
|
|
32183
|
-
"kind": "field",
|
|
32184
|
-
"name": "_presentation",
|
|
32185
|
-
"type": {
|
|
32186
|
-
"text": "ComponentPresentation | null | undefined"
|
|
32187
|
-
},
|
|
32188
|
-
"privacy": "private",
|
|
32189
|
-
"default": "void 0",
|
|
32190
|
-
"inheritedFrom": {
|
|
32191
|
-
"name": "FoundationElement",
|
|
32192
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32193
|
-
}
|
|
32194
|
-
},
|
|
32195
|
-
{
|
|
32196
|
-
"kind": "field",
|
|
32197
|
-
"name": "$presentation",
|
|
32198
|
-
"type": {
|
|
32199
|
-
"text": "ComponentPresentation | null"
|
|
32200
|
-
},
|
|
32201
|
-
"privacy": "public",
|
|
32202
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
32203
|
-
"inheritedFrom": {
|
|
32204
|
-
"name": "FoundationElement",
|
|
32205
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32206
|
-
}
|
|
32207
|
-
},
|
|
32208
|
-
{
|
|
32209
|
-
"kind": "field",
|
|
32210
|
-
"name": "template",
|
|
32211
|
-
"type": {
|
|
32212
|
-
"text": "ElementViewTemplate | void | null"
|
|
32213
|
-
},
|
|
32214
|
-
"privacy": "public",
|
|
32215
|
-
"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.",
|
|
32216
|
-
"inheritedFrom": {
|
|
32217
|
-
"name": "FoundationElement",
|
|
32218
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32219
|
-
}
|
|
32220
|
-
},
|
|
32221
|
-
{
|
|
32222
|
-
"kind": "method",
|
|
32223
|
-
"name": "templateChanged",
|
|
32224
|
-
"privacy": "protected",
|
|
32225
|
-
"return": {
|
|
32226
|
-
"type": {
|
|
32227
|
-
"text": "void"
|
|
32228
|
-
}
|
|
32229
|
-
},
|
|
32230
|
-
"inheritedFrom": {
|
|
32231
|
-
"name": "FoundationElement",
|
|
32232
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32233
|
-
}
|
|
32234
|
-
},
|
|
32235
|
-
{
|
|
32236
|
-
"kind": "field",
|
|
32237
|
-
"name": "styles",
|
|
32238
|
-
"type": {
|
|
32239
|
-
"text": "ElementStyles | void | null"
|
|
32240
|
-
},
|
|
32241
|
-
"privacy": "public",
|
|
32242
|
-
"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.",
|
|
32243
|
-
"inheritedFrom": {
|
|
32244
|
-
"name": "FoundationElement",
|
|
32245
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32246
|
-
}
|
|
32247
|
-
},
|
|
32248
|
-
{
|
|
32249
|
-
"kind": "method",
|
|
32250
|
-
"name": "stylesChanged",
|
|
32251
|
-
"privacy": "protected",
|
|
32252
|
-
"return": {
|
|
32253
|
-
"type": {
|
|
32254
|
-
"text": "void"
|
|
32255
|
-
}
|
|
32256
|
-
},
|
|
32257
|
-
"inheritedFrom": {
|
|
32258
|
-
"name": "FoundationElement",
|
|
32259
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32260
|
-
}
|
|
32261
|
-
},
|
|
32262
|
-
{
|
|
32263
|
-
"kind": "method",
|
|
32264
|
-
"name": "compose",
|
|
32265
|
-
"privacy": "public",
|
|
32266
|
-
"static": true,
|
|
32267
|
-
"return": {
|
|
32268
|
-
"type": {
|
|
32269
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
32270
|
-
}
|
|
32271
|
-
},
|
|
32272
|
-
"parameters": [
|
|
32273
|
-
{
|
|
32274
|
-
"name": "this",
|
|
32275
|
-
"type": {
|
|
32276
|
-
"text": "K"
|
|
32277
|
-
}
|
|
32278
|
-
},
|
|
32279
|
-
{
|
|
32280
|
-
"name": "elementDefinition",
|
|
32281
|
-
"type": {
|
|
32282
|
-
"text": "T"
|
|
32283
|
-
},
|
|
32284
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
32285
|
-
}
|
|
32286
|
-
],
|
|
32287
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
32288
|
-
"inheritedFrom": {
|
|
32289
|
-
"name": "FoundationElement",
|
|
32290
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
32291
|
-
}
|
|
32292
|
-
}
|
|
32293
|
-
]
|
|
32294
|
-
},
|
|
32295
|
-
{
|
|
32296
|
-
"kind": "variable",
|
|
32297
|
-
"name": "foundationSkeletonShadowOptions",
|
|
32298
|
-
"type": {
|
|
32299
|
-
"text": "ShadowRootInit"
|
|
32300
|
-
},
|
|
32301
|
-
"default": "undefined"
|
|
32302
|
-
},
|
|
32303
|
-
{
|
|
32304
|
-
"kind": "variable",
|
|
32305
|
-
"name": "defaultSkeletonConfig",
|
|
32306
|
-
"type": {
|
|
32307
|
-
"text": "object"
|
|
32308
|
-
},
|
|
32309
|
-
"default": "{}"
|
|
32310
|
-
},
|
|
32311
|
-
{
|
|
32312
|
-
"kind": "variable",
|
|
32313
|
-
"name": "foundationSkeleton",
|
|
32314
|
-
"description": "The Foundation Skeleton",
|
|
32315
|
-
"privacy": "public"
|
|
32316
|
-
}
|
|
32317
|
-
],
|
|
32318
|
-
"exports": [
|
|
32319
|
-
{
|
|
32320
|
-
"kind": "js",
|
|
32321
|
-
"name": "Skeleton",
|
|
32322
|
-
"declaration": {
|
|
32323
|
-
"name": "Skeleton",
|
|
32324
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32325
|
-
}
|
|
32326
|
-
},
|
|
32327
|
-
{
|
|
32328
|
-
"kind": "js",
|
|
32329
|
-
"name": "foundationSkeletonShadowOptions",
|
|
32330
|
-
"declaration": {
|
|
32331
|
-
"name": "foundationSkeletonShadowOptions",
|
|
32332
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32333
|
-
}
|
|
32334
|
-
},
|
|
32335
|
-
{
|
|
32336
|
-
"kind": "js",
|
|
32337
|
-
"name": "defaultSkeletonConfig",
|
|
32338
|
-
"declaration": {
|
|
32339
|
-
"name": "defaultSkeletonConfig",
|
|
32340
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32341
|
-
}
|
|
32342
|
-
},
|
|
32343
|
-
{
|
|
32344
|
-
"kind": "js",
|
|
32345
|
-
"name": "foundationSkeleton",
|
|
32346
|
-
"declaration": {
|
|
32347
|
-
"name": "foundationSkeleton",
|
|
32348
|
-
"module": "src/skeleton/skeleton.ts"
|
|
32349
|
-
}
|
|
32350
|
-
}
|
|
32351
|
-
]
|
|
32352
|
-
},
|
|
32353
32392
|
{
|
|
32354
32393
|
"kind": "javascript-module",
|
|
32355
32394
|
"path": "src/slider/index.ts",
|
|
@@ -42098,6 +42137,14 @@
|
|
|
42098
42137
|
}
|
|
42099
42138
|
],
|
|
42100
42139
|
"exports": [
|
|
42140
|
+
{
|
|
42141
|
+
"kind": "js",
|
|
42142
|
+
"name": "LogLevel",
|
|
42143
|
+
"declaration": {
|
|
42144
|
+
"name": "LogLevel",
|
|
42145
|
+
"module": "src/utils/logger.ts"
|
|
42146
|
+
}
|
|
42147
|
+
},
|
|
42101
42148
|
{
|
|
42102
42149
|
"kind": "js",
|
|
42103
42150
|
"name": "logger",
|
|
@@ -43721,6 +43768,532 @@
|
|
|
43721
43768
|
}
|
|
43722
43769
|
]
|
|
43723
43770
|
},
|
|
43771
|
+
{
|
|
43772
|
+
"kind": "javascript-module",
|
|
43773
|
+
"path": "src/overlays/system-health/index.ts",
|
|
43774
|
+
"declarations": [],
|
|
43775
|
+
"exports": [
|
|
43776
|
+
{
|
|
43777
|
+
"kind": "js",
|
|
43778
|
+
"name": "*",
|
|
43779
|
+
"declaration": {
|
|
43780
|
+
"name": "*",
|
|
43781
|
+
"package": "./system-health-overlay"
|
|
43782
|
+
}
|
|
43783
|
+
}
|
|
43784
|
+
]
|
|
43785
|
+
},
|
|
43786
|
+
{
|
|
43787
|
+
"kind": "javascript-module",
|
|
43788
|
+
"path": "src/overlays/system-health/system-health-overlay.ts",
|
|
43789
|
+
"declarations": [
|
|
43790
|
+
{
|
|
43791
|
+
"kind": "class",
|
|
43792
|
+
"description": "SystemHealthOverlay",
|
|
43793
|
+
"name": "SystemHealthOverlay",
|
|
43794
|
+
"members": [
|
|
43795
|
+
{
|
|
43796
|
+
"kind": "field",
|
|
43797
|
+
"name": "resourceList",
|
|
43798
|
+
"type": {
|
|
43799
|
+
"text": "ResourceHealth[]"
|
|
43800
|
+
}
|
|
43801
|
+
},
|
|
43802
|
+
{
|
|
43803
|
+
"kind": "field",
|
|
43804
|
+
"name": "isOpen",
|
|
43805
|
+
"type": {
|
|
43806
|
+
"text": "boolean"
|
|
43807
|
+
}
|
|
43808
|
+
},
|
|
43809
|
+
{
|
|
43810
|
+
"kind": "method",
|
|
43811
|
+
"name": "isOpenChanged"
|
|
43812
|
+
},
|
|
43813
|
+
{
|
|
43814
|
+
"kind": "field",
|
|
43815
|
+
"name": "isDismissed",
|
|
43816
|
+
"type": {
|
|
43817
|
+
"text": "boolean"
|
|
43818
|
+
}
|
|
43819
|
+
},
|
|
43820
|
+
{
|
|
43821
|
+
"kind": "method",
|
|
43822
|
+
"name": "isDismissedChanged"
|
|
43823
|
+
},
|
|
43824
|
+
{
|
|
43825
|
+
"kind": "field",
|
|
43826
|
+
"name": "templateClassNames",
|
|
43827
|
+
"type": {
|
|
43828
|
+
"text": "string"
|
|
43829
|
+
}
|
|
43830
|
+
},
|
|
43831
|
+
{
|
|
43832
|
+
"kind": "field",
|
|
43833
|
+
"name": "containerClassNames",
|
|
43834
|
+
"type": {
|
|
43835
|
+
"text": "string"
|
|
43836
|
+
}
|
|
43837
|
+
},
|
|
43838
|
+
{
|
|
43839
|
+
"kind": "field",
|
|
43840
|
+
"name": "isOnlineClassNames",
|
|
43841
|
+
"type": {
|
|
43842
|
+
"text": "string"
|
|
43843
|
+
}
|
|
43844
|
+
},
|
|
43845
|
+
{
|
|
43846
|
+
"kind": "field",
|
|
43847
|
+
"name": "isHealthyClassNames",
|
|
43848
|
+
"type": {
|
|
43849
|
+
"text": "string"
|
|
43850
|
+
}
|
|
43851
|
+
},
|
|
43852
|
+
{
|
|
43853
|
+
"kind": "field",
|
|
43854
|
+
"name": "isSocketHealthyClassNames",
|
|
43855
|
+
"type": {
|
|
43856
|
+
"text": "string"
|
|
43857
|
+
}
|
|
43858
|
+
},
|
|
43859
|
+
{
|
|
43860
|
+
"kind": "field",
|
|
43861
|
+
"name": "resourcesAllConnectedClassNames",
|
|
43862
|
+
"type": {
|
|
43863
|
+
"text": "string"
|
|
43864
|
+
}
|
|
43865
|
+
},
|
|
43866
|
+
{
|
|
43867
|
+
"kind": "field",
|
|
43868
|
+
"name": "timeTillNextUpdate",
|
|
43869
|
+
"type": {
|
|
43870
|
+
"text": "TimeTillNextUpdate"
|
|
43871
|
+
},
|
|
43872
|
+
"default": "{\n totalMs: 10_000,\n remainMs: 10_000,\n remainPercent: 100,\n }"
|
|
43873
|
+
},
|
|
43874
|
+
{
|
|
43875
|
+
"kind": "field",
|
|
43876
|
+
"name": "timeTillNextUpdateInterval",
|
|
43877
|
+
"type": {
|
|
43878
|
+
"text": "ReturnType<typeof setInterval>"
|
|
43879
|
+
},
|
|
43880
|
+
"privacy": "protected"
|
|
43881
|
+
},
|
|
43882
|
+
{
|
|
43883
|
+
"kind": "field",
|
|
43884
|
+
"name": "saveDataCallback",
|
|
43885
|
+
"type": {
|
|
43886
|
+
"text": "() => void"
|
|
43887
|
+
}
|
|
43888
|
+
},
|
|
43889
|
+
{
|
|
43890
|
+
"kind": "field",
|
|
43891
|
+
"name": "mode",
|
|
43892
|
+
"type": {
|
|
43893
|
+
"text": "SystemHealthOverlayMode"
|
|
43894
|
+
},
|
|
43895
|
+
"description": "Controls the overlay mode, either app or component level."
|
|
43896
|
+
},
|
|
43897
|
+
{
|
|
43898
|
+
"kind": "method",
|
|
43899
|
+
"name": "modeChanged",
|
|
43900
|
+
"privacy": "protected"
|
|
43901
|
+
},
|
|
43902
|
+
{
|
|
43903
|
+
"kind": "field",
|
|
43904
|
+
"name": "logLevel",
|
|
43905
|
+
"type": {
|
|
43906
|
+
"text": "number"
|
|
43907
|
+
},
|
|
43908
|
+
"description": "Allows users to control the logging level of the network monitor via the component."
|
|
43909
|
+
},
|
|
43910
|
+
{
|
|
43911
|
+
"kind": "method",
|
|
43912
|
+
"name": "logLevelChanged",
|
|
43913
|
+
"privacy": "protected"
|
|
43914
|
+
},
|
|
43915
|
+
{
|
|
43916
|
+
"kind": "field",
|
|
43917
|
+
"name": "status",
|
|
43918
|
+
"type": {
|
|
43919
|
+
"text": "SystemHealthStatus"
|
|
43920
|
+
},
|
|
43921
|
+
"default": "{\n isOnline: true,\n isHealthy: true,\n socket: {},\n resources: {},\n }",
|
|
43922
|
+
"description": "Last known system health status."
|
|
43923
|
+
},
|
|
43924
|
+
{
|
|
43925
|
+
"kind": "method",
|
|
43926
|
+
"name": "statusChanged",
|
|
43927
|
+
"privacy": "protected",
|
|
43928
|
+
"parameters": [
|
|
43929
|
+
{
|
|
43930
|
+
"name": "prev",
|
|
43931
|
+
"type": {
|
|
43932
|
+
"text": "SystemHealthStatus"
|
|
43933
|
+
}
|
|
43934
|
+
},
|
|
43935
|
+
{
|
|
43936
|
+
"name": "next",
|
|
43937
|
+
"type": {
|
|
43938
|
+
"text": "SystemHealthStatus"
|
|
43939
|
+
}
|
|
43940
|
+
}
|
|
43941
|
+
]
|
|
43942
|
+
},
|
|
43943
|
+
{
|
|
43944
|
+
"kind": "method",
|
|
43945
|
+
"name": "updateClassNames",
|
|
43946
|
+
"privacy": "protected"
|
|
43947
|
+
},
|
|
43948
|
+
{
|
|
43949
|
+
"kind": "method",
|
|
43950
|
+
"name": "updateTemplateClassNames",
|
|
43951
|
+
"privacy": "protected"
|
|
43952
|
+
},
|
|
43953
|
+
{
|
|
43954
|
+
"kind": "method",
|
|
43955
|
+
"name": "startTimeTillNextUpdateCountdown",
|
|
43956
|
+
"privacy": "protected"
|
|
43957
|
+
},
|
|
43958
|
+
{
|
|
43959
|
+
"kind": "field",
|
|
43960
|
+
"name": "onSystemHealthChanged"
|
|
43961
|
+
},
|
|
43962
|
+
{
|
|
43963
|
+
"kind": "field",
|
|
43964
|
+
"name": "onOpen"
|
|
43965
|
+
},
|
|
43966
|
+
{
|
|
43967
|
+
"kind": "field",
|
|
43968
|
+
"name": "onClose"
|
|
43969
|
+
},
|
|
43970
|
+
{
|
|
43971
|
+
"kind": "field",
|
|
43972
|
+
"name": "onDismiss"
|
|
43973
|
+
},
|
|
43974
|
+
{
|
|
43975
|
+
"kind": "field",
|
|
43976
|
+
"name": "onUpdateStatus"
|
|
43977
|
+
},
|
|
43978
|
+
{
|
|
43979
|
+
"kind": "field",
|
|
43980
|
+
"name": "onReportStatus"
|
|
43981
|
+
},
|
|
43982
|
+
{
|
|
43983
|
+
"kind": "field",
|
|
43984
|
+
"name": "onReloadWindow"
|
|
43985
|
+
},
|
|
43986
|
+
{
|
|
43987
|
+
"kind": "field",
|
|
43988
|
+
"name": "onDocumentKeydown"
|
|
43989
|
+
},
|
|
43990
|
+
{
|
|
43991
|
+
"kind": "field",
|
|
43992
|
+
"name": "isSocketHealthy",
|
|
43993
|
+
"readonly": true
|
|
43994
|
+
},
|
|
43995
|
+
{
|
|
43996
|
+
"kind": "field",
|
|
43997
|
+
"name": "validResourceList",
|
|
43998
|
+
"readonly": true
|
|
43999
|
+
},
|
|
44000
|
+
{
|
|
44001
|
+
"kind": "method",
|
|
44002
|
+
"name": "getCheckmarkTemplate",
|
|
44003
|
+
"static": true,
|
|
44004
|
+
"parameters": [
|
|
44005
|
+
{
|
|
44006
|
+
"name": "isGood",
|
|
44007
|
+
"type": {
|
|
44008
|
+
"text": "boolean"
|
|
44009
|
+
}
|
|
44010
|
+
}
|
|
44011
|
+
]
|
|
44012
|
+
},
|
|
44013
|
+
{
|
|
44014
|
+
"kind": "field",
|
|
44015
|
+
"name": "_presentation",
|
|
44016
|
+
"type": {
|
|
44017
|
+
"text": "ComponentPresentation | null | undefined"
|
|
44018
|
+
},
|
|
44019
|
+
"privacy": "private",
|
|
44020
|
+
"default": "void 0",
|
|
44021
|
+
"inheritedFrom": {
|
|
44022
|
+
"name": "FoundationElement",
|
|
44023
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44024
|
+
}
|
|
44025
|
+
},
|
|
44026
|
+
{
|
|
44027
|
+
"kind": "field",
|
|
44028
|
+
"name": "$presentation",
|
|
44029
|
+
"type": {
|
|
44030
|
+
"text": "ComponentPresentation | null"
|
|
44031
|
+
},
|
|
44032
|
+
"privacy": "public",
|
|
44033
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
44034
|
+
"inheritedFrom": {
|
|
44035
|
+
"name": "FoundationElement",
|
|
44036
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44037
|
+
}
|
|
44038
|
+
},
|
|
44039
|
+
{
|
|
44040
|
+
"kind": "field",
|
|
44041
|
+
"name": "template",
|
|
44042
|
+
"type": {
|
|
44043
|
+
"text": "ElementViewTemplate | void | null"
|
|
44044
|
+
},
|
|
44045
|
+
"privacy": "public",
|
|
44046
|
+
"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.",
|
|
44047
|
+
"inheritedFrom": {
|
|
44048
|
+
"name": "FoundationElement",
|
|
44049
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44050
|
+
}
|
|
44051
|
+
},
|
|
44052
|
+
{
|
|
44053
|
+
"kind": "method",
|
|
44054
|
+
"name": "templateChanged",
|
|
44055
|
+
"privacy": "protected",
|
|
44056
|
+
"return": {
|
|
44057
|
+
"type": {
|
|
44058
|
+
"text": "void"
|
|
44059
|
+
}
|
|
44060
|
+
},
|
|
44061
|
+
"inheritedFrom": {
|
|
44062
|
+
"name": "FoundationElement",
|
|
44063
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44064
|
+
}
|
|
44065
|
+
},
|
|
44066
|
+
{
|
|
44067
|
+
"kind": "field",
|
|
44068
|
+
"name": "styles",
|
|
44069
|
+
"type": {
|
|
44070
|
+
"text": "ElementStyles | void | null"
|
|
44071
|
+
},
|
|
44072
|
+
"privacy": "public",
|
|
44073
|
+
"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.",
|
|
44074
|
+
"inheritedFrom": {
|
|
44075
|
+
"name": "FoundationElement",
|
|
44076
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44077
|
+
}
|
|
44078
|
+
},
|
|
44079
|
+
{
|
|
44080
|
+
"kind": "method",
|
|
44081
|
+
"name": "stylesChanged",
|
|
44082
|
+
"privacy": "protected",
|
|
44083
|
+
"return": {
|
|
44084
|
+
"type": {
|
|
44085
|
+
"text": "void"
|
|
44086
|
+
}
|
|
44087
|
+
},
|
|
44088
|
+
"inheritedFrom": {
|
|
44089
|
+
"name": "FoundationElement",
|
|
44090
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44091
|
+
}
|
|
44092
|
+
},
|
|
44093
|
+
{
|
|
44094
|
+
"kind": "method",
|
|
44095
|
+
"name": "compose",
|
|
44096
|
+
"privacy": "public",
|
|
44097
|
+
"static": true,
|
|
44098
|
+
"return": {
|
|
44099
|
+
"type": {
|
|
44100
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
44101
|
+
}
|
|
44102
|
+
},
|
|
44103
|
+
"parameters": [
|
|
44104
|
+
{
|
|
44105
|
+
"name": "this",
|
|
44106
|
+
"type": {
|
|
44107
|
+
"text": "K"
|
|
44108
|
+
}
|
|
44109
|
+
},
|
|
44110
|
+
{
|
|
44111
|
+
"name": "elementDefinition",
|
|
44112
|
+
"type": {
|
|
44113
|
+
"text": "T"
|
|
44114
|
+
},
|
|
44115
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
44116
|
+
}
|
|
44117
|
+
],
|
|
44118
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
44119
|
+
"inheritedFrom": {
|
|
44120
|
+
"name": "FoundationElement",
|
|
44121
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
44122
|
+
}
|
|
44123
|
+
}
|
|
44124
|
+
],
|
|
44125
|
+
"attributes": [
|
|
44126
|
+
{
|
|
44127
|
+
"name": "mode",
|
|
44128
|
+
"type": {
|
|
44129
|
+
"text": "SystemHealthOverlayMode"
|
|
44130
|
+
},
|
|
44131
|
+
"description": "Controls the overlay mode, either app or component level.",
|
|
44132
|
+
"fieldName": "mode"
|
|
44133
|
+
},
|
|
44134
|
+
{
|
|
44135
|
+
"name": "log-level",
|
|
44136
|
+
"type": {
|
|
44137
|
+
"text": "number"
|
|
44138
|
+
},
|
|
44139
|
+
"description": "Allows users to control the logging level of the network monitor via the component.",
|
|
44140
|
+
"fieldName": "logLevel"
|
|
44141
|
+
}
|
|
44142
|
+
],
|
|
44143
|
+
"superclass": {
|
|
44144
|
+
"name": "FoundationElement",
|
|
44145
|
+
"package": "@microsoft/fast-foundation"
|
|
44146
|
+
}
|
|
44147
|
+
},
|
|
44148
|
+
{
|
|
44149
|
+
"kind": "function",
|
|
44150
|
+
"name": "foundationSystemHealthOverlayTemplate",
|
|
44151
|
+
"parameters": [
|
|
44152
|
+
{
|
|
44153
|
+
"name": "context",
|
|
44154
|
+
"type": {
|
|
44155
|
+
"text": "ElementDefinitionContext"
|
|
44156
|
+
}
|
|
44157
|
+
},
|
|
44158
|
+
{
|
|
44159
|
+
"name": "definition",
|
|
44160
|
+
"type": {
|
|
44161
|
+
"text": "FoundationElementDefinition"
|
|
44162
|
+
}
|
|
44163
|
+
}
|
|
44164
|
+
],
|
|
44165
|
+
"description": "Foundation system health overlay template",
|
|
44166
|
+
"privacy": "public"
|
|
44167
|
+
},
|
|
44168
|
+
{
|
|
44169
|
+
"kind": "function",
|
|
44170
|
+
"name": "foundationSystemHealthOverlayStyles",
|
|
44171
|
+
"return": {
|
|
44172
|
+
"type": {
|
|
44173
|
+
"text": "ElementStyles"
|
|
44174
|
+
}
|
|
44175
|
+
},
|
|
44176
|
+
"parameters": [
|
|
44177
|
+
{
|
|
44178
|
+
"name": "context",
|
|
44179
|
+
"type": {
|
|
44180
|
+
"text": "ElementDefinitionContext"
|
|
44181
|
+
}
|
|
44182
|
+
},
|
|
44183
|
+
{
|
|
44184
|
+
"name": "definition",
|
|
44185
|
+
"type": {
|
|
44186
|
+
"text": "FoundationElementDefinition"
|
|
44187
|
+
}
|
|
44188
|
+
}
|
|
44189
|
+
],
|
|
44190
|
+
"description": "Foundation system health overlay styles",
|
|
44191
|
+
"privacy": "public"
|
|
44192
|
+
},
|
|
44193
|
+
{
|
|
44194
|
+
"kind": "variable",
|
|
44195
|
+
"name": "foundationSystemHealthOverlayShadowOptions",
|
|
44196
|
+
"type": {
|
|
44197
|
+
"text": "ShadowRootInit"
|
|
44198
|
+
},
|
|
44199
|
+
"default": "undefined",
|
|
44200
|
+
"description": "Foundation system health overlay styles",
|
|
44201
|
+
"privacy": "public"
|
|
44202
|
+
},
|
|
44203
|
+
{
|
|
44204
|
+
"kind": "variable",
|
|
44205
|
+
"name": "defaultSystemHealthOverlayConfig",
|
|
44206
|
+
"type": {
|
|
44207
|
+
"text": "object"
|
|
44208
|
+
},
|
|
44209
|
+
"default": "{}",
|
|
44210
|
+
"description": "Foundation system health overlay styles",
|
|
44211
|
+
"privacy": "public"
|
|
44212
|
+
},
|
|
44213
|
+
{
|
|
44214
|
+
"kind": "variable",
|
|
44215
|
+
"name": "foundationSystemHealthOverlay",
|
|
44216
|
+
"description": "Foundation system health overlay",
|
|
44217
|
+
"privacy": "public"
|
|
44218
|
+
}
|
|
44219
|
+
],
|
|
44220
|
+
"exports": [
|
|
44221
|
+
{
|
|
44222
|
+
"kind": "js",
|
|
44223
|
+
"name": "SystemHealthOverlay",
|
|
44224
|
+
"declaration": {
|
|
44225
|
+
"name": "SystemHealthOverlay",
|
|
44226
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44227
|
+
}
|
|
44228
|
+
},
|
|
44229
|
+
{
|
|
44230
|
+
"kind": "js",
|
|
44231
|
+
"name": "foundationSystemHealthOverlayTemplate",
|
|
44232
|
+
"declaration": {
|
|
44233
|
+
"name": "foundationSystemHealthOverlayTemplate",
|
|
44234
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44235
|
+
}
|
|
44236
|
+
},
|
|
44237
|
+
{
|
|
44238
|
+
"kind": "js",
|
|
44239
|
+
"name": "foundationSystemHealthOverlayStyles",
|
|
44240
|
+
"declaration": {
|
|
44241
|
+
"name": "foundationSystemHealthOverlayStyles",
|
|
44242
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44243
|
+
}
|
|
44244
|
+
},
|
|
44245
|
+
{
|
|
44246
|
+
"kind": "js",
|
|
44247
|
+
"name": "foundationSystemHealthOverlayShadowOptions",
|
|
44248
|
+
"declaration": {
|
|
44249
|
+
"name": "foundationSystemHealthOverlayShadowOptions",
|
|
44250
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44251
|
+
}
|
|
44252
|
+
},
|
|
44253
|
+
{
|
|
44254
|
+
"kind": "js",
|
|
44255
|
+
"name": "defaultSystemHealthOverlayConfig",
|
|
44256
|
+
"declaration": {
|
|
44257
|
+
"name": "defaultSystemHealthOverlayConfig",
|
|
44258
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44259
|
+
}
|
|
44260
|
+
},
|
|
44261
|
+
{
|
|
44262
|
+
"kind": "js",
|
|
44263
|
+
"name": "foundationSystemHealthOverlay",
|
|
44264
|
+
"declaration": {
|
|
44265
|
+
"name": "foundationSystemHealthOverlay",
|
|
44266
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
44267
|
+
}
|
|
44268
|
+
}
|
|
44269
|
+
]
|
|
44270
|
+
},
|
|
44271
|
+
{
|
|
44272
|
+
"kind": "javascript-module",
|
|
44273
|
+
"path": "src/overlays/system-health/types.ts",
|
|
44274
|
+
"declarations": [
|
|
44275
|
+
{
|
|
44276
|
+
"kind": "variable",
|
|
44277
|
+
"name": "SystemHealthOverlayMode",
|
|
44278
|
+
"type": {
|
|
44279
|
+
"text": "{\n app: 'app',\n component: 'component',\n}"
|
|
44280
|
+
},
|
|
44281
|
+
"default": "{\n app: 'app',\n component: 'component',\n}",
|
|
44282
|
+
"description": "Mode for SystemHealthOverlay",
|
|
44283
|
+
"privacy": "public"
|
|
44284
|
+
}
|
|
44285
|
+
],
|
|
44286
|
+
"exports": [
|
|
44287
|
+
{
|
|
44288
|
+
"kind": "js",
|
|
44289
|
+
"name": "SystemHealthOverlayMode",
|
|
44290
|
+
"declaration": {
|
|
44291
|
+
"name": "SystemHealthOverlayMode",
|
|
44292
|
+
"module": "src/overlays/system-health/types.ts"
|
|
44293
|
+
}
|
|
44294
|
+
}
|
|
44295
|
+
]
|
|
44296
|
+
},
|
|
43724
44297
|
{
|
|
43725
44298
|
"kind": "javascript-module",
|
|
43726
44299
|
"path": "src/_config/styles/external/index.ts",
|