@genesislcap/foundation-zero 14.167.1 → 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 +1285 -691
- package/dist/dts/base-components.d.ts +1 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/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 +16 -0
- package/dist/dts/overlays/system-health/system-health-overlay.d.ts.map +1 -0
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- 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 +15 -0
- package/package.json +12 -12
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n zeroAccordion,\n zeroAccordionItem,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumbItem,\n zeroBreadcrumb,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDatePicker,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroErrorBoundary,\n zeroNotificationListener,\n zeroErrorBanner,\n zeroErrorDialog,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNumberField,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\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 zeroAccordion,\n zeroAccordionItem,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumbItem,\n zeroBreadcrumb,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDatePicker,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroErrorBoundary,\n zeroNotificationListener,\n zeroErrorBanner,\n zeroErrorDialog,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNumberField,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroSystemHealthOverlay,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\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": [
|
|
@@ -426,6 +426,14 @@
|
|
|
426
426
|
"package": "./number-field"
|
|
427
427
|
}
|
|
428
428
|
},
|
|
429
|
+
{
|
|
430
|
+
"kind": "js",
|
|
431
|
+
"name": "*",
|
|
432
|
+
"declaration": {
|
|
433
|
+
"name": "*",
|
|
434
|
+
"package": "./overlays"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
429
437
|
{
|
|
430
438
|
"kind": "js",
|
|
431
439
|
"name": "*",
|
|
@@ -13528,11 +13536,11 @@
|
|
|
13528
13536
|
},
|
|
13529
13537
|
{
|
|
13530
13538
|
"kind": "field",
|
|
13531
|
-
"name": "
|
|
13539
|
+
"name": "dataSub",
|
|
13532
13540
|
"type": {
|
|
13533
|
-
"text": "
|
|
13541
|
+
"text": "Subscription"
|
|
13534
13542
|
},
|
|
13535
|
-
"privacy": "
|
|
13543
|
+
"privacy": "protected",
|
|
13536
13544
|
"inheritedFrom": {
|
|
13537
13545
|
"name": "ErrorBoundary",
|
|
13538
13546
|
"module": "src/error-boundary/error-boundary.ts"
|
|
@@ -13540,291 +13548,303 @@
|
|
|
13540
13548
|
},
|
|
13541
13549
|
{
|
|
13542
13550
|
"kind": "field",
|
|
13543
|
-
"name": "
|
|
13551
|
+
"name": "datasource",
|
|
13544
13552
|
"type": {
|
|
13545
|
-
"text": "
|
|
13553
|
+
"text": "Datasource"
|
|
13546
13554
|
},
|
|
13547
13555
|
"privacy": "private",
|
|
13548
|
-
"default": "void 0",
|
|
13549
|
-
"inheritedFrom": {
|
|
13550
|
-
"name": "FoundationElement",
|
|
13551
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
13552
|
-
}
|
|
13553
|
-
},
|
|
13554
|
-
{
|
|
13555
|
-
"kind": "field",
|
|
13556
|
-
"name": "$presentation",
|
|
13557
|
-
"type": {
|
|
13558
|
-
"text": "ComponentPresentation | null"
|
|
13559
|
-
},
|
|
13560
|
-
"privacy": "public",
|
|
13561
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
13562
13556
|
"inheritedFrom": {
|
|
13563
|
-
"name": "
|
|
13564
|
-
"module": "src/
|
|
13565
|
-
}
|
|
13566
|
-
},
|
|
13567
|
-
{
|
|
13568
|
-
"kind": "field",
|
|
13569
|
-
"name": "
|
|
13570
|
-
"type": {
|
|
13571
|
-
"text": "
|
|
13572
|
-
},
|
|
13573
|
-
"privacy": "
|
|
13574
|
-
"
|
|
13575
|
-
"inheritedFrom": {
|
|
13576
|
-
"name": "FoundationElement",
|
|
13577
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
13578
|
-
}
|
|
13579
|
-
},
|
|
13580
|
-
{
|
|
13581
|
-
"kind": "
|
|
13582
|
-
"name": "
|
|
13583
|
-
"
|
|
13584
|
-
|
|
13585
|
-
|
|
13586
|
-
|
|
13587
|
-
|
|
13588
|
-
|
|
13589
|
-
|
|
13590
|
-
"
|
|
13591
|
-
|
|
13592
|
-
|
|
13593
|
-
|
|
13594
|
-
|
|
13595
|
-
"
|
|
13596
|
-
"
|
|
13597
|
-
|
|
13598
|
-
|
|
13599
|
-
|
|
13600
|
-
"
|
|
13601
|
-
"
|
|
13602
|
-
|
|
13603
|
-
"
|
|
13604
|
-
|
|
13605
|
-
|
|
13606
|
-
|
|
13607
|
-
|
|
13608
|
-
"
|
|
13609
|
-
"
|
|
13610
|
-
"
|
|
13611
|
-
|
|
13612
|
-
|
|
13613
|
-
|
|
13614
|
-
|
|
13615
|
-
|
|
13616
|
-
|
|
13617
|
-
"
|
|
13618
|
-
|
|
13619
|
-
|
|
13620
|
-
|
|
13621
|
-
|
|
13622
|
-
"
|
|
13623
|
-
"
|
|
13624
|
-
|
|
13625
|
-
|
|
13626
|
-
"
|
|
13627
|
-
|
|
13628
|
-
|
|
13629
|
-
|
|
13630
|
-
|
|
13631
|
-
|
|
13632
|
-
|
|
13633
|
-
|
|
13634
|
-
|
|
13635
|
-
|
|
13636
|
-
|
|
13637
|
-
|
|
13638
|
-
{
|
|
13639
|
-
"
|
|
13640
|
-
|
|
13641
|
-
|
|
13642
|
-
|
|
13643
|
-
|
|
13644
|
-
|
|
13645
|
-
|
|
13646
|
-
|
|
13647
|
-
|
|
13648
|
-
|
|
13649
|
-
|
|
13650
|
-
|
|
13651
|
-
|
|
13652
|
-
|
|
13653
|
-
|
|
13654
|
-
|
|
13655
|
-
|
|
13656
|
-
|
|
13657
|
-
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
13661
|
-
|
|
13662
|
-
|
|
13663
|
-
|
|
13664
|
-
|
|
13665
|
-
|
|
13666
|
-
|
|
13667
|
-
|
|
13668
|
-
|
|
13669
|
-
|
|
13670
|
-
|
|
13671
|
-
|
|
13672
|
-
|
|
13673
|
-
|
|
13674
|
-
|
|
13675
|
-
|
|
13676
|
-
|
|
13677
|
-
|
|
13678
|
-
|
|
13679
|
-
|
|
13680
|
-
|
|
13681
|
-
|
|
13682
|
-
|
|
13683
|
-
}
|
|
13684
|
-
]
|
|
13685
|
-
|
|
13686
|
-
|
|
13687
|
-
|
|
13688
|
-
|
|
13689
|
-
|
|
13690
|
-
|
|
13691
|
-
|
|
13692
|
-
|
|
13693
|
-
|
|
13694
|
-
|
|
13695
|
-
|
|
13696
|
-
|
|
13697
|
-
|
|
13698
|
-
|
|
13699
|
-
|
|
13700
|
-
|
|
13701
|
-
|
|
13702
|
-
|
|
13703
|
-
|
|
13704
|
-
|
|
13705
|
-
|
|
13706
|
-
|
|
13707
|
-
|
|
13708
|
-
|
|
13709
|
-
|
|
13710
|
-
|
|
13711
|
-
|
|
13712
|
-
|
|
13713
|
-
|
|
13714
|
-
|
|
13715
|
-
|
|
13716
|
-
|
|
13717
|
-
|
|
13718
|
-
|
|
13719
|
-
"
|
|
13720
|
-
|
|
13721
|
-
|
|
13722
|
-
|
|
13723
|
-
|
|
13724
|
-
|
|
13725
|
-
|
|
13726
|
-
|
|
13727
|
-
|
|
13728
|
-
|
|
13729
|
-
|
|
13730
|
-
|
|
13731
|
-
{
|
|
13732
|
-
"kind": "
|
|
13733
|
-
"name": "
|
|
13734
|
-
"
|
|
13735
|
-
"
|
|
13736
|
-
|
|
13737
|
-
}
|
|
13738
|
-
}
|
|
13739
|
-
|
|
13740
|
-
|
|
13741
|
-
|
|
13742
|
-
|
|
13743
|
-
|
|
13744
|
-
|
|
13745
|
-
|
|
13746
|
-
|
|
13747
|
-
|
|
13748
|
-
|
|
13749
|
-
|
|
13750
|
-
|
|
13751
|
-
|
|
13752
|
-
|
|
13753
|
-
|
|
13754
|
-
|
|
13755
|
-
|
|
13756
|
-
|
|
13757
|
-
|
|
13758
|
-
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
|
|
13762
|
-
|
|
13763
|
-
|
|
13764
|
-
|
|
13765
|
-
|
|
13766
|
-
|
|
13767
|
-
|
|
13768
|
-
|
|
13769
|
-
|
|
13770
|
-
|
|
13771
|
-
|
|
13772
|
-
|
|
13773
|
-
|
|
13774
|
-
|
|
13775
|
-
|
|
13776
|
-
|
|
13777
|
-
|
|
13778
|
-
|
|
13779
|
-
|
|
13780
|
-
|
|
13781
|
-
|
|
13782
|
-
|
|
13783
|
-
|
|
13784
|
-
|
|
13785
|
-
"
|
|
13786
|
-
"
|
|
13787
|
-
|
|
13788
|
-
|
|
13789
|
-
|
|
13790
|
-
|
|
13791
|
-
|
|
13792
|
-
|
|
13793
|
-
|
|
13794
|
-
|
|
13795
|
-
|
|
13796
|
-
|
|
13797
|
-
|
|
13798
|
-
|
|
13799
|
-
|
|
13800
|
-
"inheritedFrom": {
|
|
13801
|
-
"name": "ErrorDialog",
|
|
13802
|
-
"module": "src/error-dialog/error-dialog.ts"
|
|
13803
|
-
}
|
|
13804
|
-
},
|
|
13805
|
-
{
|
|
13806
|
-
"kind": "
|
|
13807
|
-
"name": "
|
|
13808
|
-
"
|
|
13809
|
-
|
|
13810
|
-
|
|
13811
|
-
|
|
13812
|
-
"
|
|
13813
|
-
|
|
13814
|
-
|
|
13815
|
-
|
|
13816
|
-
|
|
13817
|
-
"
|
|
13818
|
-
"
|
|
13819
|
-
"
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
|
|
13825
|
-
"
|
|
13826
|
-
|
|
13827
|
-
"
|
|
13557
|
+
"name": "ErrorBoundary",
|
|
13558
|
+
"module": "src/error-boundary/error-boundary.ts"
|
|
13559
|
+
}
|
|
13560
|
+
},
|
|
13561
|
+
{
|
|
13562
|
+
"kind": "field",
|
|
13563
|
+
"name": "_presentation",
|
|
13564
|
+
"type": {
|
|
13565
|
+
"text": "ComponentPresentation | null | undefined"
|
|
13566
|
+
},
|
|
13567
|
+
"privacy": "private",
|
|
13568
|
+
"default": "void 0",
|
|
13569
|
+
"inheritedFrom": {
|
|
13570
|
+
"name": "FoundationElement",
|
|
13571
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13572
|
+
}
|
|
13573
|
+
},
|
|
13574
|
+
{
|
|
13575
|
+
"kind": "field",
|
|
13576
|
+
"name": "$presentation",
|
|
13577
|
+
"type": {
|
|
13578
|
+
"text": "ComponentPresentation | null"
|
|
13579
|
+
},
|
|
13580
|
+
"privacy": "public",
|
|
13581
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
13582
|
+
"inheritedFrom": {
|
|
13583
|
+
"name": "FoundationElement",
|
|
13584
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13585
|
+
}
|
|
13586
|
+
},
|
|
13587
|
+
{
|
|
13588
|
+
"kind": "field",
|
|
13589
|
+
"name": "template",
|
|
13590
|
+
"type": {
|
|
13591
|
+
"text": "ElementViewTemplate | void | null"
|
|
13592
|
+
},
|
|
13593
|
+
"privacy": "public",
|
|
13594
|
+
"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.",
|
|
13595
|
+
"inheritedFrom": {
|
|
13596
|
+
"name": "FoundationElement",
|
|
13597
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13598
|
+
}
|
|
13599
|
+
},
|
|
13600
|
+
{
|
|
13601
|
+
"kind": "method",
|
|
13602
|
+
"name": "templateChanged",
|
|
13603
|
+
"privacy": "protected",
|
|
13604
|
+
"return": {
|
|
13605
|
+
"type": {
|
|
13606
|
+
"text": "void"
|
|
13607
|
+
}
|
|
13608
|
+
},
|
|
13609
|
+
"inheritedFrom": {
|
|
13610
|
+
"name": "FoundationElement",
|
|
13611
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13612
|
+
}
|
|
13613
|
+
},
|
|
13614
|
+
{
|
|
13615
|
+
"kind": "field",
|
|
13616
|
+
"name": "styles",
|
|
13617
|
+
"type": {
|
|
13618
|
+
"text": "ElementStyles | void | null"
|
|
13619
|
+
},
|
|
13620
|
+
"privacy": "public",
|
|
13621
|
+
"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.",
|
|
13622
|
+
"inheritedFrom": {
|
|
13623
|
+
"name": "FoundationElement",
|
|
13624
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13625
|
+
}
|
|
13626
|
+
},
|
|
13627
|
+
{
|
|
13628
|
+
"kind": "method",
|
|
13629
|
+
"name": "stylesChanged",
|
|
13630
|
+
"privacy": "protected",
|
|
13631
|
+
"return": {
|
|
13632
|
+
"type": {
|
|
13633
|
+
"text": "void"
|
|
13634
|
+
}
|
|
13635
|
+
},
|
|
13636
|
+
"inheritedFrom": {
|
|
13637
|
+
"name": "FoundationElement",
|
|
13638
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13639
|
+
}
|
|
13640
|
+
},
|
|
13641
|
+
{
|
|
13642
|
+
"kind": "method",
|
|
13643
|
+
"name": "compose",
|
|
13644
|
+
"privacy": "public",
|
|
13645
|
+
"static": true,
|
|
13646
|
+
"return": {
|
|
13647
|
+
"type": {
|
|
13648
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
13649
|
+
}
|
|
13650
|
+
},
|
|
13651
|
+
"parameters": [
|
|
13652
|
+
{
|
|
13653
|
+
"name": "this",
|
|
13654
|
+
"type": {
|
|
13655
|
+
"text": "K"
|
|
13656
|
+
}
|
|
13657
|
+
},
|
|
13658
|
+
{
|
|
13659
|
+
"name": "elementDefinition",
|
|
13660
|
+
"type": {
|
|
13661
|
+
"text": "T"
|
|
13662
|
+
},
|
|
13663
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
13664
|
+
}
|
|
13665
|
+
],
|
|
13666
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
13667
|
+
"inheritedFrom": {
|
|
13668
|
+
"name": "FoundationElement",
|
|
13669
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
13670
|
+
}
|
|
13671
|
+
}
|
|
13672
|
+
]
|
|
13673
|
+
},
|
|
13674
|
+
{
|
|
13675
|
+
"kind": "variable",
|
|
13676
|
+
"name": "zeroErrorBoundary"
|
|
13677
|
+
}
|
|
13678
|
+
],
|
|
13679
|
+
"exports": [
|
|
13680
|
+
{
|
|
13681
|
+
"kind": "js",
|
|
13682
|
+
"name": "zeroErrorBoundaryShadowOptions",
|
|
13683
|
+
"declaration": {
|
|
13684
|
+
"name": "zeroErrorBoundaryShadowOptions",
|
|
13685
|
+
"module": "src/error-boundary/error-boundary.ts"
|
|
13686
|
+
}
|
|
13687
|
+
},
|
|
13688
|
+
{
|
|
13689
|
+
"kind": "js",
|
|
13690
|
+
"name": "ErrorBoundary",
|
|
13691
|
+
"declaration": {
|
|
13692
|
+
"name": "ErrorBoundary",
|
|
13693
|
+
"module": "src/error-boundary/error-boundary.ts"
|
|
13694
|
+
}
|
|
13695
|
+
},
|
|
13696
|
+
{
|
|
13697
|
+
"kind": "js",
|
|
13698
|
+
"name": "zeroErrorBoundary",
|
|
13699
|
+
"declaration": {
|
|
13700
|
+
"name": "zeroErrorBoundary",
|
|
13701
|
+
"module": "src/error-boundary/error-boundary.ts"
|
|
13702
|
+
}
|
|
13703
|
+
}
|
|
13704
|
+
]
|
|
13705
|
+
},
|
|
13706
|
+
{
|
|
13707
|
+
"kind": "javascript-module",
|
|
13708
|
+
"path": "src/error-boundary/index.ts",
|
|
13709
|
+
"declarations": [],
|
|
13710
|
+
"exports": [
|
|
13711
|
+
{
|
|
13712
|
+
"kind": "js",
|
|
13713
|
+
"name": "*",
|
|
13714
|
+
"declaration": {
|
|
13715
|
+
"name": "*",
|
|
13716
|
+
"package": "./error-boundary"
|
|
13717
|
+
}
|
|
13718
|
+
}
|
|
13719
|
+
]
|
|
13720
|
+
},
|
|
13721
|
+
{
|
|
13722
|
+
"kind": "javascript-module",
|
|
13723
|
+
"path": "src/error-dialog/error-dialog.stories.ts",
|
|
13724
|
+
"declarations": [
|
|
13725
|
+
{
|
|
13726
|
+
"kind": "variable",
|
|
13727
|
+
"name": "meta",
|
|
13728
|
+
"type": {
|
|
13729
|
+
"text": "Meta"
|
|
13730
|
+
},
|
|
13731
|
+
"default": "{\n title: 'Error Dialog',\n component: 'zero-error-dialog',\n}"
|
|
13732
|
+
},
|
|
13733
|
+
{
|
|
13734
|
+
"kind": "variable",
|
|
13735
|
+
"name": "Primary",
|
|
13736
|
+
"type": {
|
|
13737
|
+
"text": "StoryObj"
|
|
13738
|
+
},
|
|
13739
|
+
"default": "{\n args: {\n errorText:\n 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet',\n notifyText:\n 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet',\n },\n render: ({ errorText, notifyText }) => html`\n <zero-button @click=\"${() => showDialog(errorText)}\">Show Zero Dialog</zero-button>\n <zero-button @click=\"${() => showDialogNotify(notifyText)}\">\n Show Zero Dialog - Notification\n </zero-button>\n <div id=\"error-dialog-container\"></div>\n `,\n}"
|
|
13740
|
+
}
|
|
13741
|
+
],
|
|
13742
|
+
"exports": [
|
|
13743
|
+
{
|
|
13744
|
+
"kind": "js",
|
|
13745
|
+
"name": "default",
|
|
13746
|
+
"declaration": {
|
|
13747
|
+
"name": "meta",
|
|
13748
|
+
"module": "src/error-dialog/error-dialog.stories.ts"
|
|
13749
|
+
}
|
|
13750
|
+
},
|
|
13751
|
+
{
|
|
13752
|
+
"kind": "js",
|
|
13753
|
+
"name": "Primary",
|
|
13754
|
+
"declaration": {
|
|
13755
|
+
"name": "Primary",
|
|
13756
|
+
"module": "src/error-dialog/error-dialog.stories.ts"
|
|
13757
|
+
}
|
|
13758
|
+
}
|
|
13759
|
+
]
|
|
13760
|
+
},
|
|
13761
|
+
{
|
|
13762
|
+
"kind": "javascript-module",
|
|
13763
|
+
"path": "src/error-dialog/error-dialog.ts",
|
|
13764
|
+
"declarations": [
|
|
13765
|
+
{
|
|
13766
|
+
"kind": "class",
|
|
13767
|
+
"description": "",
|
|
13768
|
+
"name": "ErrorDialog",
|
|
13769
|
+
"superclass": {
|
|
13770
|
+
"name": "FoundationErrorDialog",
|
|
13771
|
+
"package": "@genesislcap/foundation-ui"
|
|
13772
|
+
},
|
|
13773
|
+
"tagName": "%%prefix%%-error-dialog",
|
|
13774
|
+
"customElement": true,
|
|
13775
|
+
"members": [
|
|
13776
|
+
{
|
|
13777
|
+
"kind": "field",
|
|
13778
|
+
"name": "dialog",
|
|
13779
|
+
"type": {
|
|
13780
|
+
"text": "HTMLElement & { close: () => void; show: () => void }"
|
|
13781
|
+
},
|
|
13782
|
+
"privacy": "public",
|
|
13783
|
+
"inheritedFrom": {
|
|
13784
|
+
"name": "ErrorDialog",
|
|
13785
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13786
|
+
}
|
|
13787
|
+
},
|
|
13788
|
+
{
|
|
13789
|
+
"kind": "field",
|
|
13790
|
+
"name": "error",
|
|
13791
|
+
"type": {
|
|
13792
|
+
"text": "ErrorStructure"
|
|
13793
|
+
},
|
|
13794
|
+
"inheritedFrom": {
|
|
13795
|
+
"name": "ErrorDialog",
|
|
13796
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13797
|
+
}
|
|
13798
|
+
},
|
|
13799
|
+
{
|
|
13800
|
+
"kind": "field",
|
|
13801
|
+
"name": "notification",
|
|
13802
|
+
"type": {
|
|
13803
|
+
"text": "NotificationStructure"
|
|
13804
|
+
},
|
|
13805
|
+
"inheritedFrom": {
|
|
13806
|
+
"name": "ErrorDialog",
|
|
13807
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13808
|
+
}
|
|
13809
|
+
},
|
|
13810
|
+
{
|
|
13811
|
+
"kind": "method",
|
|
13812
|
+
"name": "show",
|
|
13813
|
+
"privacy": "public",
|
|
13814
|
+
"return": {
|
|
13815
|
+
"type": {
|
|
13816
|
+
"text": "void"
|
|
13817
|
+
}
|
|
13818
|
+
},
|
|
13819
|
+
"description": "Show the Error Dialog.",
|
|
13820
|
+
"inheritedFrom": {
|
|
13821
|
+
"name": "ErrorDialog",
|
|
13822
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13823
|
+
}
|
|
13824
|
+
},
|
|
13825
|
+
{
|
|
13826
|
+
"kind": "method",
|
|
13827
|
+
"name": "dismiss",
|
|
13828
|
+
"privacy": "public",
|
|
13829
|
+
"description": "Dismiss the Error Dialog from display and calls the dismissing action.",
|
|
13830
|
+
"inheritedFrom": {
|
|
13831
|
+
"name": "ErrorDialog",
|
|
13832
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13833
|
+
}
|
|
13834
|
+
},
|
|
13835
|
+
{
|
|
13836
|
+
"kind": "method",
|
|
13837
|
+
"name": "closeDialog",
|
|
13838
|
+
"privacy": "public",
|
|
13839
|
+
"return": {
|
|
13840
|
+
"type": {
|
|
13841
|
+
"text": "void"
|
|
13842
|
+
}
|
|
13843
|
+
},
|
|
13844
|
+
"description": "Dismiss the Error Dialog from display.",
|
|
13845
|
+
"inheritedFrom": {
|
|
13846
|
+
"name": "ErrorDialog",
|
|
13847
|
+
"module": "src/error-dialog/error-dialog.ts"
|
|
13828
13848
|
}
|
|
13829
13849
|
},
|
|
13830
13850
|
{
|
|
@@ -22750,6 +22770,18 @@
|
|
|
22750
22770
|
"module": "src/notification-listener/notification-listener.ts"
|
|
22751
22771
|
}
|
|
22752
22772
|
},
|
|
22773
|
+
{
|
|
22774
|
+
"kind": "field",
|
|
22775
|
+
"name": "dataSub",
|
|
22776
|
+
"type": {
|
|
22777
|
+
"text": "Subscription"
|
|
22778
|
+
},
|
|
22779
|
+
"privacy": "protected",
|
|
22780
|
+
"inheritedFrom": {
|
|
22781
|
+
"name": "NotificationListener",
|
|
22782
|
+
"module": "src/notification-listener/notification-listener.ts"
|
|
22783
|
+
}
|
|
22784
|
+
},
|
|
22753
22785
|
{
|
|
22754
22786
|
"kind": "field",
|
|
22755
22787
|
"name": "datasource",
|
|
@@ -23789,6 +23821,21 @@
|
|
|
23789
23821
|
}
|
|
23790
23822
|
]
|
|
23791
23823
|
},
|
|
23824
|
+
{
|
|
23825
|
+
"kind": "javascript-module",
|
|
23826
|
+
"path": "src/overlays/index.ts",
|
|
23827
|
+
"declarations": [],
|
|
23828
|
+
"exports": [
|
|
23829
|
+
{
|
|
23830
|
+
"kind": "js",
|
|
23831
|
+
"name": "*",
|
|
23832
|
+
"declaration": {
|
|
23833
|
+
"name": "*",
|
|
23834
|
+
"package": "./system-health"
|
|
23835
|
+
}
|
|
23836
|
+
}
|
|
23837
|
+
]
|
|
23838
|
+
},
|
|
23792
23839
|
{
|
|
23793
23840
|
"kind": "javascript-module",
|
|
23794
23841
|
"path": "src/progress/index.ts",
|
|
@@ -28394,6 +28441,412 @@
|
|
|
28394
28441
|
}
|
|
28395
28442
|
]
|
|
28396
28443
|
},
|
|
28444
|
+
{
|
|
28445
|
+
"kind": "javascript-module",
|
|
28446
|
+
"path": "src/slider-label/index.ts",
|
|
28447
|
+
"declarations": [],
|
|
28448
|
+
"exports": [
|
|
28449
|
+
{
|
|
28450
|
+
"kind": "js",
|
|
28451
|
+
"name": "*",
|
|
28452
|
+
"declaration": {
|
|
28453
|
+
"name": "*",
|
|
28454
|
+
"package": "./slider-label"
|
|
28455
|
+
}
|
|
28456
|
+
},
|
|
28457
|
+
{
|
|
28458
|
+
"kind": "js",
|
|
28459
|
+
"name": "*",
|
|
28460
|
+
"declaration": {
|
|
28461
|
+
"name": "*",
|
|
28462
|
+
"package": "./slider-label.styles"
|
|
28463
|
+
}
|
|
28464
|
+
},
|
|
28465
|
+
{
|
|
28466
|
+
"kind": "js",
|
|
28467
|
+
"name": "*",
|
|
28468
|
+
"declaration": {
|
|
28469
|
+
"name": "*",
|
|
28470
|
+
"package": "./slider-label.template"
|
|
28471
|
+
}
|
|
28472
|
+
}
|
|
28473
|
+
]
|
|
28474
|
+
},
|
|
28475
|
+
{
|
|
28476
|
+
"kind": "javascript-module",
|
|
28477
|
+
"path": "src/slider-label/slider-label.styles.ts",
|
|
28478
|
+
"declarations": [
|
|
28479
|
+
{
|
|
28480
|
+
"kind": "function",
|
|
28481
|
+
"name": "zeroSliderLabelStyles",
|
|
28482
|
+
"return": {
|
|
28483
|
+
"type": {
|
|
28484
|
+
"text": "ElementStyles"
|
|
28485
|
+
}
|
|
28486
|
+
},
|
|
28487
|
+
"parameters": [
|
|
28488
|
+
{
|
|
28489
|
+
"name": "context",
|
|
28490
|
+
"type": {
|
|
28491
|
+
"text": "ElementDefinitionContext"
|
|
28492
|
+
}
|
|
28493
|
+
},
|
|
28494
|
+
{
|
|
28495
|
+
"name": "definition",
|
|
28496
|
+
"type": {
|
|
28497
|
+
"text": "FoundationElementDefinition"
|
|
28498
|
+
}
|
|
28499
|
+
}
|
|
28500
|
+
]
|
|
28501
|
+
}
|
|
28502
|
+
],
|
|
28503
|
+
"exports": [
|
|
28504
|
+
{
|
|
28505
|
+
"kind": "js",
|
|
28506
|
+
"name": "zeroSliderLabelStyles",
|
|
28507
|
+
"declaration": {
|
|
28508
|
+
"name": "zeroSliderLabelStyles",
|
|
28509
|
+
"module": "src/slider-label/slider-label.styles.ts"
|
|
28510
|
+
}
|
|
28511
|
+
}
|
|
28512
|
+
]
|
|
28513
|
+
},
|
|
28514
|
+
{
|
|
28515
|
+
"kind": "javascript-module",
|
|
28516
|
+
"path": "src/slider-label/slider-label.template.ts",
|
|
28517
|
+
"declarations": [
|
|
28518
|
+
{
|
|
28519
|
+
"kind": "function",
|
|
28520
|
+
"name": "zeroSliderLabelTemplate",
|
|
28521
|
+
"return": {
|
|
28522
|
+
"type": {
|
|
28523
|
+
"text": "ViewTemplate<SliderLabel>"
|
|
28524
|
+
}
|
|
28525
|
+
},
|
|
28526
|
+
"parameters": [
|
|
28527
|
+
{
|
|
28528
|
+
"name": "context",
|
|
28529
|
+
"type": {
|
|
28530
|
+
"text": "ElementDefinitionContext"
|
|
28531
|
+
}
|
|
28532
|
+
},
|
|
28533
|
+
{
|
|
28534
|
+
"name": "definition",
|
|
28535
|
+
"type": {
|
|
28536
|
+
"text": "FoundationElementDefinition"
|
|
28537
|
+
}
|
|
28538
|
+
}
|
|
28539
|
+
]
|
|
28540
|
+
}
|
|
28541
|
+
],
|
|
28542
|
+
"exports": [
|
|
28543
|
+
{
|
|
28544
|
+
"kind": "js",
|
|
28545
|
+
"name": "zeroSliderLabelTemplate",
|
|
28546
|
+
"declaration": {
|
|
28547
|
+
"name": "zeroSliderLabelTemplate",
|
|
28548
|
+
"module": "src/slider-label/slider-label.template.ts"
|
|
28549
|
+
}
|
|
28550
|
+
}
|
|
28551
|
+
]
|
|
28552
|
+
},
|
|
28553
|
+
{
|
|
28554
|
+
"kind": "javascript-module",
|
|
28555
|
+
"path": "src/slider-label/slider-label.ts",
|
|
28556
|
+
"declarations": [
|
|
28557
|
+
{
|
|
28558
|
+
"kind": "class",
|
|
28559
|
+
"description": "",
|
|
28560
|
+
"name": "SliderLabel",
|
|
28561
|
+
"superclass": {
|
|
28562
|
+
"name": "FoundationSliderLabel",
|
|
28563
|
+
"package": "@genesislcap/foundation-ui"
|
|
28564
|
+
},
|
|
28565
|
+
"tagName": "%%prefix%%-slider-label",
|
|
28566
|
+
"customElement": true,
|
|
28567
|
+
"attributes": [
|
|
28568
|
+
{
|
|
28569
|
+
"name": "position",
|
|
28570
|
+
"type": {
|
|
28571
|
+
"text": "string"
|
|
28572
|
+
},
|
|
28573
|
+
"description": "The position of the label relative to the min and max value of the parent @microsoft/fast-foundation#(Slider:class).",
|
|
28574
|
+
"fieldName": "position",
|
|
28575
|
+
"inheritedFrom": {
|
|
28576
|
+
"name": "SliderLabel",
|
|
28577
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28578
|
+
}
|
|
28579
|
+
},
|
|
28580
|
+
{
|
|
28581
|
+
"name": "hide-mark",
|
|
28582
|
+
"type": {
|
|
28583
|
+
"text": "boolean"
|
|
28584
|
+
},
|
|
28585
|
+
"default": "false",
|
|
28586
|
+
"description": "Hides the tick mark.",
|
|
28587
|
+
"fieldName": "hideMark",
|
|
28588
|
+
"inheritedFrom": {
|
|
28589
|
+
"name": "SliderLabel",
|
|
28590
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28591
|
+
}
|
|
28592
|
+
},
|
|
28593
|
+
{
|
|
28594
|
+
"name": "disabled",
|
|
28595
|
+
"type": {
|
|
28596
|
+
"text": "boolean"
|
|
28597
|
+
},
|
|
28598
|
+
"description": "The disabled state of the label. This is generally controlled by the parent @microsoft/fast-foundation#(Slider:class).",
|
|
28599
|
+
"fieldName": "disabled",
|
|
28600
|
+
"inheritedFrom": {
|
|
28601
|
+
"name": "SliderLabel",
|
|
28602
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28603
|
+
}
|
|
28604
|
+
}
|
|
28605
|
+
],
|
|
28606
|
+
"members": [
|
|
28607
|
+
{
|
|
28608
|
+
"kind": "field",
|
|
28609
|
+
"name": "position",
|
|
28610
|
+
"type": {
|
|
28611
|
+
"text": "string"
|
|
28612
|
+
},
|
|
28613
|
+
"privacy": "public",
|
|
28614
|
+
"description": "The position of the label relative to the min and max value of the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
28615
|
+
"inheritedFrom": {
|
|
28616
|
+
"name": "SliderLabel",
|
|
28617
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28618
|
+
}
|
|
28619
|
+
},
|
|
28620
|
+
{
|
|
28621
|
+
"kind": "method",
|
|
28622
|
+
"name": "positionChanged",
|
|
28623
|
+
"privacy": "private",
|
|
28624
|
+
"return": {
|
|
28625
|
+
"type": {
|
|
28626
|
+
"text": "void"
|
|
28627
|
+
}
|
|
28628
|
+
},
|
|
28629
|
+
"inheritedFrom": {
|
|
28630
|
+
"name": "SliderLabel",
|
|
28631
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28632
|
+
}
|
|
28633
|
+
},
|
|
28634
|
+
{
|
|
28635
|
+
"kind": "field",
|
|
28636
|
+
"name": "hideMark",
|
|
28637
|
+
"type": {
|
|
28638
|
+
"text": "boolean"
|
|
28639
|
+
},
|
|
28640
|
+
"privacy": "public",
|
|
28641
|
+
"default": "false",
|
|
28642
|
+
"description": "Hides the tick mark.",
|
|
28643
|
+
"inheritedFrom": {
|
|
28644
|
+
"name": "SliderLabel",
|
|
28645
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28646
|
+
}
|
|
28647
|
+
},
|
|
28648
|
+
{
|
|
28649
|
+
"kind": "field",
|
|
28650
|
+
"name": "disabled",
|
|
28651
|
+
"type": {
|
|
28652
|
+
"text": "boolean"
|
|
28653
|
+
},
|
|
28654
|
+
"privacy": "public",
|
|
28655
|
+
"description": "The disabled state of the label. This is generally controlled by the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
28656
|
+
"inheritedFrom": {
|
|
28657
|
+
"name": "SliderLabel",
|
|
28658
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28659
|
+
}
|
|
28660
|
+
},
|
|
28661
|
+
{
|
|
28662
|
+
"kind": "field",
|
|
28663
|
+
"name": "notifier",
|
|
28664
|
+
"type": {
|
|
28665
|
+
"text": "Notifier"
|
|
28666
|
+
},
|
|
28667
|
+
"privacy": "private",
|
|
28668
|
+
"inheritedFrom": {
|
|
28669
|
+
"name": "SliderLabel",
|
|
28670
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28671
|
+
}
|
|
28672
|
+
},
|
|
28673
|
+
{
|
|
28674
|
+
"kind": "method",
|
|
28675
|
+
"name": "isSliderConfig",
|
|
28676
|
+
"privacy": "private",
|
|
28677
|
+
"return": {
|
|
28678
|
+
"type": {
|
|
28679
|
+
"text": "node is SliderConfiguration"
|
|
28680
|
+
}
|
|
28681
|
+
},
|
|
28682
|
+
"parameters": [
|
|
28683
|
+
{
|
|
28684
|
+
"name": "node",
|
|
28685
|
+
"type": {
|
|
28686
|
+
"text": "any"
|
|
28687
|
+
}
|
|
28688
|
+
}
|
|
28689
|
+
],
|
|
28690
|
+
"inheritedFrom": {
|
|
28691
|
+
"name": "SliderLabel",
|
|
28692
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28693
|
+
}
|
|
28694
|
+
},
|
|
28695
|
+
{
|
|
28696
|
+
"kind": "field",
|
|
28697
|
+
"name": "getSliderConfiguration",
|
|
28698
|
+
"privacy": "private",
|
|
28699
|
+
"inheritedFrom": {
|
|
28700
|
+
"name": "SliderLabel",
|
|
28701
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28702
|
+
}
|
|
28703
|
+
},
|
|
28704
|
+
{
|
|
28705
|
+
"kind": "field",
|
|
28706
|
+
"name": "positionAsStyle",
|
|
28707
|
+
"privacy": "private",
|
|
28708
|
+
"inheritedFrom": {
|
|
28709
|
+
"name": "SliderLabel",
|
|
28710
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28711
|
+
}
|
|
28712
|
+
},
|
|
28713
|
+
{
|
|
28714
|
+
"kind": "field",
|
|
28715
|
+
"name": "_presentation",
|
|
28716
|
+
"type": {
|
|
28717
|
+
"text": "ComponentPresentation | null | undefined"
|
|
28718
|
+
},
|
|
28719
|
+
"privacy": "private",
|
|
28720
|
+
"default": "void 0",
|
|
28721
|
+
"inheritedFrom": {
|
|
28722
|
+
"name": "SliderLabel",
|
|
28723
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28724
|
+
}
|
|
28725
|
+
},
|
|
28726
|
+
{
|
|
28727
|
+
"kind": "field",
|
|
28728
|
+
"name": "$presentation",
|
|
28729
|
+
"type": {
|
|
28730
|
+
"text": "ComponentPresentation | null"
|
|
28731
|
+
},
|
|
28732
|
+
"privacy": "public",
|
|
28733
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
28734
|
+
"inheritedFrom": {
|
|
28735
|
+
"name": "SliderLabel",
|
|
28736
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28737
|
+
}
|
|
28738
|
+
},
|
|
28739
|
+
{
|
|
28740
|
+
"kind": "field",
|
|
28741
|
+
"name": "template",
|
|
28742
|
+
"type": {
|
|
28743
|
+
"text": "ElementViewTemplate | void | null"
|
|
28744
|
+
},
|
|
28745
|
+
"privacy": "public",
|
|
28746
|
+
"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.",
|
|
28747
|
+
"inheritedFrom": {
|
|
28748
|
+
"name": "SliderLabel",
|
|
28749
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28750
|
+
}
|
|
28751
|
+
},
|
|
28752
|
+
{
|
|
28753
|
+
"kind": "method",
|
|
28754
|
+
"name": "templateChanged",
|
|
28755
|
+
"privacy": "protected",
|
|
28756
|
+
"return": {
|
|
28757
|
+
"type": {
|
|
28758
|
+
"text": "void"
|
|
28759
|
+
}
|
|
28760
|
+
},
|
|
28761
|
+
"inheritedFrom": {
|
|
28762
|
+
"name": "SliderLabel",
|
|
28763
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28764
|
+
}
|
|
28765
|
+
},
|
|
28766
|
+
{
|
|
28767
|
+
"kind": "field",
|
|
28768
|
+
"name": "styles",
|
|
28769
|
+
"type": {
|
|
28770
|
+
"text": "ElementStyles | void | null"
|
|
28771
|
+
},
|
|
28772
|
+
"privacy": "public",
|
|
28773
|
+
"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.",
|
|
28774
|
+
"inheritedFrom": {
|
|
28775
|
+
"name": "SliderLabel",
|
|
28776
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28777
|
+
}
|
|
28778
|
+
},
|
|
28779
|
+
{
|
|
28780
|
+
"kind": "method",
|
|
28781
|
+
"name": "stylesChanged",
|
|
28782
|
+
"privacy": "protected",
|
|
28783
|
+
"return": {
|
|
28784
|
+
"type": {
|
|
28785
|
+
"text": "void"
|
|
28786
|
+
}
|
|
28787
|
+
},
|
|
28788
|
+
"inheritedFrom": {
|
|
28789
|
+
"name": "SliderLabel",
|
|
28790
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28791
|
+
}
|
|
28792
|
+
},
|
|
28793
|
+
{
|
|
28794
|
+
"kind": "method",
|
|
28795
|
+
"name": "compose",
|
|
28796
|
+
"privacy": "public",
|
|
28797
|
+
"static": true,
|
|
28798
|
+
"return": {
|
|
28799
|
+
"type": {
|
|
28800
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
28801
|
+
}
|
|
28802
|
+
},
|
|
28803
|
+
"parameters": [
|
|
28804
|
+
{
|
|
28805
|
+
"name": "this",
|
|
28806
|
+
"type": {
|
|
28807
|
+
"text": "K"
|
|
28808
|
+
}
|
|
28809
|
+
},
|
|
28810
|
+
{
|
|
28811
|
+
"name": "elementDefinition",
|
|
28812
|
+
"type": {
|
|
28813
|
+
"text": "T"
|
|
28814
|
+
},
|
|
28815
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
28816
|
+
}
|
|
28817
|
+
],
|
|
28818
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
28819
|
+
"inheritedFrom": {
|
|
28820
|
+
"name": "SliderLabel",
|
|
28821
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28822
|
+
}
|
|
28823
|
+
}
|
|
28824
|
+
]
|
|
28825
|
+
},
|
|
28826
|
+
{
|
|
28827
|
+
"kind": "variable",
|
|
28828
|
+
"name": "zeroSliderLabel"
|
|
28829
|
+
}
|
|
28830
|
+
],
|
|
28831
|
+
"exports": [
|
|
28832
|
+
{
|
|
28833
|
+
"kind": "js",
|
|
28834
|
+
"name": "SliderLabel",
|
|
28835
|
+
"declaration": {
|
|
28836
|
+
"name": "SliderLabel",
|
|
28837
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28838
|
+
}
|
|
28839
|
+
},
|
|
28840
|
+
{
|
|
28841
|
+
"kind": "js",
|
|
28842
|
+
"name": "zeroSliderLabel",
|
|
28843
|
+
"declaration": {
|
|
28844
|
+
"name": "zeroSliderLabel",
|
|
28845
|
+
"module": "src/slider-label/slider-label.ts"
|
|
28846
|
+
}
|
|
28847
|
+
}
|
|
28848
|
+
]
|
|
28849
|
+
},
|
|
28397
28850
|
{
|
|
28398
28851
|
"kind": "javascript-module",
|
|
28399
28852
|
"path": "src/slider/index.ts",
|
|
@@ -29150,412 +29603,6 @@
|
|
|
29150
29603
|
}
|
|
29151
29604
|
]
|
|
29152
29605
|
},
|
|
29153
|
-
{
|
|
29154
|
-
"kind": "javascript-module",
|
|
29155
|
-
"path": "src/slider-label/index.ts",
|
|
29156
|
-
"declarations": [],
|
|
29157
|
-
"exports": [
|
|
29158
|
-
{
|
|
29159
|
-
"kind": "js",
|
|
29160
|
-
"name": "*",
|
|
29161
|
-
"declaration": {
|
|
29162
|
-
"name": "*",
|
|
29163
|
-
"package": "./slider-label"
|
|
29164
|
-
}
|
|
29165
|
-
},
|
|
29166
|
-
{
|
|
29167
|
-
"kind": "js",
|
|
29168
|
-
"name": "*",
|
|
29169
|
-
"declaration": {
|
|
29170
|
-
"name": "*",
|
|
29171
|
-
"package": "./slider-label.styles"
|
|
29172
|
-
}
|
|
29173
|
-
},
|
|
29174
|
-
{
|
|
29175
|
-
"kind": "js",
|
|
29176
|
-
"name": "*",
|
|
29177
|
-
"declaration": {
|
|
29178
|
-
"name": "*",
|
|
29179
|
-
"package": "./slider-label.template"
|
|
29180
|
-
}
|
|
29181
|
-
}
|
|
29182
|
-
]
|
|
29183
|
-
},
|
|
29184
|
-
{
|
|
29185
|
-
"kind": "javascript-module",
|
|
29186
|
-
"path": "src/slider-label/slider-label.styles.ts",
|
|
29187
|
-
"declarations": [
|
|
29188
|
-
{
|
|
29189
|
-
"kind": "function",
|
|
29190
|
-
"name": "zeroSliderLabelStyles",
|
|
29191
|
-
"return": {
|
|
29192
|
-
"type": {
|
|
29193
|
-
"text": "ElementStyles"
|
|
29194
|
-
}
|
|
29195
|
-
},
|
|
29196
|
-
"parameters": [
|
|
29197
|
-
{
|
|
29198
|
-
"name": "context",
|
|
29199
|
-
"type": {
|
|
29200
|
-
"text": "ElementDefinitionContext"
|
|
29201
|
-
}
|
|
29202
|
-
},
|
|
29203
|
-
{
|
|
29204
|
-
"name": "definition",
|
|
29205
|
-
"type": {
|
|
29206
|
-
"text": "FoundationElementDefinition"
|
|
29207
|
-
}
|
|
29208
|
-
}
|
|
29209
|
-
]
|
|
29210
|
-
}
|
|
29211
|
-
],
|
|
29212
|
-
"exports": [
|
|
29213
|
-
{
|
|
29214
|
-
"kind": "js",
|
|
29215
|
-
"name": "zeroSliderLabelStyles",
|
|
29216
|
-
"declaration": {
|
|
29217
|
-
"name": "zeroSliderLabelStyles",
|
|
29218
|
-
"module": "src/slider-label/slider-label.styles.ts"
|
|
29219
|
-
}
|
|
29220
|
-
}
|
|
29221
|
-
]
|
|
29222
|
-
},
|
|
29223
|
-
{
|
|
29224
|
-
"kind": "javascript-module",
|
|
29225
|
-
"path": "src/slider-label/slider-label.template.ts",
|
|
29226
|
-
"declarations": [
|
|
29227
|
-
{
|
|
29228
|
-
"kind": "function",
|
|
29229
|
-
"name": "zeroSliderLabelTemplate",
|
|
29230
|
-
"return": {
|
|
29231
|
-
"type": {
|
|
29232
|
-
"text": "ViewTemplate<SliderLabel>"
|
|
29233
|
-
}
|
|
29234
|
-
},
|
|
29235
|
-
"parameters": [
|
|
29236
|
-
{
|
|
29237
|
-
"name": "context",
|
|
29238
|
-
"type": {
|
|
29239
|
-
"text": "ElementDefinitionContext"
|
|
29240
|
-
}
|
|
29241
|
-
},
|
|
29242
|
-
{
|
|
29243
|
-
"name": "definition",
|
|
29244
|
-
"type": {
|
|
29245
|
-
"text": "FoundationElementDefinition"
|
|
29246
|
-
}
|
|
29247
|
-
}
|
|
29248
|
-
]
|
|
29249
|
-
}
|
|
29250
|
-
],
|
|
29251
|
-
"exports": [
|
|
29252
|
-
{
|
|
29253
|
-
"kind": "js",
|
|
29254
|
-
"name": "zeroSliderLabelTemplate",
|
|
29255
|
-
"declaration": {
|
|
29256
|
-
"name": "zeroSliderLabelTemplate",
|
|
29257
|
-
"module": "src/slider-label/slider-label.template.ts"
|
|
29258
|
-
}
|
|
29259
|
-
}
|
|
29260
|
-
]
|
|
29261
|
-
},
|
|
29262
|
-
{
|
|
29263
|
-
"kind": "javascript-module",
|
|
29264
|
-
"path": "src/slider-label/slider-label.ts",
|
|
29265
|
-
"declarations": [
|
|
29266
|
-
{
|
|
29267
|
-
"kind": "class",
|
|
29268
|
-
"description": "",
|
|
29269
|
-
"name": "SliderLabel",
|
|
29270
|
-
"superclass": {
|
|
29271
|
-
"name": "FoundationSliderLabel",
|
|
29272
|
-
"package": "@genesislcap/foundation-ui"
|
|
29273
|
-
},
|
|
29274
|
-
"tagName": "%%prefix%%-slider-label",
|
|
29275
|
-
"customElement": true,
|
|
29276
|
-
"attributes": [
|
|
29277
|
-
{
|
|
29278
|
-
"name": "position",
|
|
29279
|
-
"type": {
|
|
29280
|
-
"text": "string"
|
|
29281
|
-
},
|
|
29282
|
-
"description": "The position of the label relative to the min and max value of the parent @microsoft/fast-foundation#(Slider:class).",
|
|
29283
|
-
"fieldName": "position",
|
|
29284
|
-
"inheritedFrom": {
|
|
29285
|
-
"name": "SliderLabel",
|
|
29286
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29287
|
-
}
|
|
29288
|
-
},
|
|
29289
|
-
{
|
|
29290
|
-
"name": "hide-mark",
|
|
29291
|
-
"type": {
|
|
29292
|
-
"text": "boolean"
|
|
29293
|
-
},
|
|
29294
|
-
"default": "false",
|
|
29295
|
-
"description": "Hides the tick mark.",
|
|
29296
|
-
"fieldName": "hideMark",
|
|
29297
|
-
"inheritedFrom": {
|
|
29298
|
-
"name": "SliderLabel",
|
|
29299
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29300
|
-
}
|
|
29301
|
-
},
|
|
29302
|
-
{
|
|
29303
|
-
"name": "disabled",
|
|
29304
|
-
"type": {
|
|
29305
|
-
"text": "boolean"
|
|
29306
|
-
},
|
|
29307
|
-
"description": "The disabled state of the label. This is generally controlled by the parent @microsoft/fast-foundation#(Slider:class).",
|
|
29308
|
-
"fieldName": "disabled",
|
|
29309
|
-
"inheritedFrom": {
|
|
29310
|
-
"name": "SliderLabel",
|
|
29311
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29312
|
-
}
|
|
29313
|
-
}
|
|
29314
|
-
],
|
|
29315
|
-
"members": [
|
|
29316
|
-
{
|
|
29317
|
-
"kind": "field",
|
|
29318
|
-
"name": "position",
|
|
29319
|
-
"type": {
|
|
29320
|
-
"text": "string"
|
|
29321
|
-
},
|
|
29322
|
-
"privacy": "public",
|
|
29323
|
-
"description": "The position of the label relative to the min and max value of the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
29324
|
-
"inheritedFrom": {
|
|
29325
|
-
"name": "SliderLabel",
|
|
29326
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29327
|
-
}
|
|
29328
|
-
},
|
|
29329
|
-
{
|
|
29330
|
-
"kind": "method",
|
|
29331
|
-
"name": "positionChanged",
|
|
29332
|
-
"privacy": "private",
|
|
29333
|
-
"return": {
|
|
29334
|
-
"type": {
|
|
29335
|
-
"text": "void"
|
|
29336
|
-
}
|
|
29337
|
-
},
|
|
29338
|
-
"inheritedFrom": {
|
|
29339
|
-
"name": "SliderLabel",
|
|
29340
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29341
|
-
}
|
|
29342
|
-
},
|
|
29343
|
-
{
|
|
29344
|
-
"kind": "field",
|
|
29345
|
-
"name": "hideMark",
|
|
29346
|
-
"type": {
|
|
29347
|
-
"text": "boolean"
|
|
29348
|
-
},
|
|
29349
|
-
"privacy": "public",
|
|
29350
|
-
"default": "false",
|
|
29351
|
-
"description": "Hides the tick mark.",
|
|
29352
|
-
"inheritedFrom": {
|
|
29353
|
-
"name": "SliderLabel",
|
|
29354
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29355
|
-
}
|
|
29356
|
-
},
|
|
29357
|
-
{
|
|
29358
|
-
"kind": "field",
|
|
29359
|
-
"name": "disabled",
|
|
29360
|
-
"type": {
|
|
29361
|
-
"text": "boolean"
|
|
29362
|
-
},
|
|
29363
|
-
"privacy": "public",
|
|
29364
|
-
"description": "The disabled state of the label. This is generally controlled by the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
29365
|
-
"inheritedFrom": {
|
|
29366
|
-
"name": "SliderLabel",
|
|
29367
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29368
|
-
}
|
|
29369
|
-
},
|
|
29370
|
-
{
|
|
29371
|
-
"kind": "field",
|
|
29372
|
-
"name": "notifier",
|
|
29373
|
-
"type": {
|
|
29374
|
-
"text": "Notifier"
|
|
29375
|
-
},
|
|
29376
|
-
"privacy": "private",
|
|
29377
|
-
"inheritedFrom": {
|
|
29378
|
-
"name": "SliderLabel",
|
|
29379
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29380
|
-
}
|
|
29381
|
-
},
|
|
29382
|
-
{
|
|
29383
|
-
"kind": "method",
|
|
29384
|
-
"name": "isSliderConfig",
|
|
29385
|
-
"privacy": "private",
|
|
29386
|
-
"return": {
|
|
29387
|
-
"type": {
|
|
29388
|
-
"text": "node is SliderConfiguration"
|
|
29389
|
-
}
|
|
29390
|
-
},
|
|
29391
|
-
"parameters": [
|
|
29392
|
-
{
|
|
29393
|
-
"name": "node",
|
|
29394
|
-
"type": {
|
|
29395
|
-
"text": "any"
|
|
29396
|
-
}
|
|
29397
|
-
}
|
|
29398
|
-
],
|
|
29399
|
-
"inheritedFrom": {
|
|
29400
|
-
"name": "SliderLabel",
|
|
29401
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29402
|
-
}
|
|
29403
|
-
},
|
|
29404
|
-
{
|
|
29405
|
-
"kind": "field",
|
|
29406
|
-
"name": "getSliderConfiguration",
|
|
29407
|
-
"privacy": "private",
|
|
29408
|
-
"inheritedFrom": {
|
|
29409
|
-
"name": "SliderLabel",
|
|
29410
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29411
|
-
}
|
|
29412
|
-
},
|
|
29413
|
-
{
|
|
29414
|
-
"kind": "field",
|
|
29415
|
-
"name": "positionAsStyle",
|
|
29416
|
-
"privacy": "private",
|
|
29417
|
-
"inheritedFrom": {
|
|
29418
|
-
"name": "SliderLabel",
|
|
29419
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29420
|
-
}
|
|
29421
|
-
},
|
|
29422
|
-
{
|
|
29423
|
-
"kind": "field",
|
|
29424
|
-
"name": "_presentation",
|
|
29425
|
-
"type": {
|
|
29426
|
-
"text": "ComponentPresentation | null | undefined"
|
|
29427
|
-
},
|
|
29428
|
-
"privacy": "private",
|
|
29429
|
-
"default": "void 0",
|
|
29430
|
-
"inheritedFrom": {
|
|
29431
|
-
"name": "SliderLabel",
|
|
29432
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29433
|
-
}
|
|
29434
|
-
},
|
|
29435
|
-
{
|
|
29436
|
-
"kind": "field",
|
|
29437
|
-
"name": "$presentation",
|
|
29438
|
-
"type": {
|
|
29439
|
-
"text": "ComponentPresentation | null"
|
|
29440
|
-
},
|
|
29441
|
-
"privacy": "public",
|
|
29442
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
29443
|
-
"inheritedFrom": {
|
|
29444
|
-
"name": "SliderLabel",
|
|
29445
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29446
|
-
}
|
|
29447
|
-
},
|
|
29448
|
-
{
|
|
29449
|
-
"kind": "field",
|
|
29450
|
-
"name": "template",
|
|
29451
|
-
"type": {
|
|
29452
|
-
"text": "ElementViewTemplate | void | null"
|
|
29453
|
-
},
|
|
29454
|
-
"privacy": "public",
|
|
29455
|
-
"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.",
|
|
29456
|
-
"inheritedFrom": {
|
|
29457
|
-
"name": "SliderLabel",
|
|
29458
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29459
|
-
}
|
|
29460
|
-
},
|
|
29461
|
-
{
|
|
29462
|
-
"kind": "method",
|
|
29463
|
-
"name": "templateChanged",
|
|
29464
|
-
"privacy": "protected",
|
|
29465
|
-
"return": {
|
|
29466
|
-
"type": {
|
|
29467
|
-
"text": "void"
|
|
29468
|
-
}
|
|
29469
|
-
},
|
|
29470
|
-
"inheritedFrom": {
|
|
29471
|
-
"name": "SliderLabel",
|
|
29472
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29473
|
-
}
|
|
29474
|
-
},
|
|
29475
|
-
{
|
|
29476
|
-
"kind": "field",
|
|
29477
|
-
"name": "styles",
|
|
29478
|
-
"type": {
|
|
29479
|
-
"text": "ElementStyles | void | null"
|
|
29480
|
-
},
|
|
29481
|
-
"privacy": "public",
|
|
29482
|
-
"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.",
|
|
29483
|
-
"inheritedFrom": {
|
|
29484
|
-
"name": "SliderLabel",
|
|
29485
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29486
|
-
}
|
|
29487
|
-
},
|
|
29488
|
-
{
|
|
29489
|
-
"kind": "method",
|
|
29490
|
-
"name": "stylesChanged",
|
|
29491
|
-
"privacy": "protected",
|
|
29492
|
-
"return": {
|
|
29493
|
-
"type": {
|
|
29494
|
-
"text": "void"
|
|
29495
|
-
}
|
|
29496
|
-
},
|
|
29497
|
-
"inheritedFrom": {
|
|
29498
|
-
"name": "SliderLabel",
|
|
29499
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29500
|
-
}
|
|
29501
|
-
},
|
|
29502
|
-
{
|
|
29503
|
-
"kind": "method",
|
|
29504
|
-
"name": "compose",
|
|
29505
|
-
"privacy": "public",
|
|
29506
|
-
"static": true,
|
|
29507
|
-
"return": {
|
|
29508
|
-
"type": {
|
|
29509
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
29510
|
-
}
|
|
29511
|
-
},
|
|
29512
|
-
"parameters": [
|
|
29513
|
-
{
|
|
29514
|
-
"name": "this",
|
|
29515
|
-
"type": {
|
|
29516
|
-
"text": "K"
|
|
29517
|
-
}
|
|
29518
|
-
},
|
|
29519
|
-
{
|
|
29520
|
-
"name": "elementDefinition",
|
|
29521
|
-
"type": {
|
|
29522
|
-
"text": "T"
|
|
29523
|
-
},
|
|
29524
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
29525
|
-
}
|
|
29526
|
-
],
|
|
29527
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
29528
|
-
"inheritedFrom": {
|
|
29529
|
-
"name": "SliderLabel",
|
|
29530
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29531
|
-
}
|
|
29532
|
-
}
|
|
29533
|
-
]
|
|
29534
|
-
},
|
|
29535
|
-
{
|
|
29536
|
-
"kind": "variable",
|
|
29537
|
-
"name": "zeroSliderLabel"
|
|
29538
|
-
}
|
|
29539
|
-
],
|
|
29540
|
-
"exports": [
|
|
29541
|
-
{
|
|
29542
|
-
"kind": "js",
|
|
29543
|
-
"name": "SliderLabel",
|
|
29544
|
-
"declaration": {
|
|
29545
|
-
"name": "SliderLabel",
|
|
29546
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29547
|
-
}
|
|
29548
|
-
},
|
|
29549
|
-
{
|
|
29550
|
-
"kind": "js",
|
|
29551
|
-
"name": "zeroSliderLabel",
|
|
29552
|
-
"declaration": {
|
|
29553
|
-
"name": "zeroSliderLabel",
|
|
29554
|
-
"module": "src/slider-label/slider-label.ts"
|
|
29555
|
-
}
|
|
29556
|
-
}
|
|
29557
|
-
]
|
|
29558
|
-
},
|
|
29559
29606
|
{
|
|
29560
29607
|
"kind": "javascript-module",
|
|
29561
29608
|
"path": "src/snackbar/index.ts",
|
|
@@ -39235,6 +39282,553 @@
|
|
|
39235
39282
|
}
|
|
39236
39283
|
]
|
|
39237
39284
|
},
|
|
39285
|
+
{
|
|
39286
|
+
"kind": "javascript-module",
|
|
39287
|
+
"path": "src/overlays/system-health/index.ts",
|
|
39288
|
+
"declarations": [],
|
|
39289
|
+
"exports": [
|
|
39290
|
+
{
|
|
39291
|
+
"kind": "js",
|
|
39292
|
+
"name": "*",
|
|
39293
|
+
"declaration": {
|
|
39294
|
+
"name": "*",
|
|
39295
|
+
"package": "./system-health-overlay"
|
|
39296
|
+
}
|
|
39297
|
+
}
|
|
39298
|
+
]
|
|
39299
|
+
},
|
|
39300
|
+
{
|
|
39301
|
+
"kind": "javascript-module",
|
|
39302
|
+
"path": "src/overlays/system-health/system-health-overlay.ts",
|
|
39303
|
+
"declarations": [
|
|
39304
|
+
{
|
|
39305
|
+
"kind": "class",
|
|
39306
|
+
"description": "SystemHealthOverlay",
|
|
39307
|
+
"name": "SystemHealthOverlay",
|
|
39308
|
+
"superclass": {
|
|
39309
|
+
"name": "FoundationSystemHealthOverlay",
|
|
39310
|
+
"package": "@genesislcap/foundation-ui"
|
|
39311
|
+
},
|
|
39312
|
+
"attributes": [
|
|
39313
|
+
{
|
|
39314
|
+
"name": "mode",
|
|
39315
|
+
"type": {
|
|
39316
|
+
"text": "SystemHealthOverlayMode"
|
|
39317
|
+
},
|
|
39318
|
+
"description": "Controls the overlay mode, either app or component level.",
|
|
39319
|
+
"fieldName": "mode",
|
|
39320
|
+
"inheritedFrom": {
|
|
39321
|
+
"name": "SystemHealthOverlay",
|
|
39322
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39323
|
+
}
|
|
39324
|
+
},
|
|
39325
|
+
{
|
|
39326
|
+
"name": "log-level",
|
|
39327
|
+
"type": {
|
|
39328
|
+
"text": "number"
|
|
39329
|
+
},
|
|
39330
|
+
"description": "Allows users to control the logging level of the network monitor via the component.",
|
|
39331
|
+
"fieldName": "logLevel",
|
|
39332
|
+
"inheritedFrom": {
|
|
39333
|
+
"name": "SystemHealthOverlay",
|
|
39334
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39335
|
+
}
|
|
39336
|
+
}
|
|
39337
|
+
],
|
|
39338
|
+
"members": [
|
|
39339
|
+
{
|
|
39340
|
+
"kind": "field",
|
|
39341
|
+
"name": "resourceList",
|
|
39342
|
+
"type": {
|
|
39343
|
+
"text": "ResourceHealth[]"
|
|
39344
|
+
},
|
|
39345
|
+
"inheritedFrom": {
|
|
39346
|
+
"name": "SystemHealthOverlay",
|
|
39347
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39348
|
+
}
|
|
39349
|
+
},
|
|
39350
|
+
{
|
|
39351
|
+
"kind": "field",
|
|
39352
|
+
"name": "isOpen",
|
|
39353
|
+
"type": {
|
|
39354
|
+
"text": "boolean"
|
|
39355
|
+
},
|
|
39356
|
+
"inheritedFrom": {
|
|
39357
|
+
"name": "SystemHealthOverlay",
|
|
39358
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39359
|
+
}
|
|
39360
|
+
},
|
|
39361
|
+
{
|
|
39362
|
+
"kind": "method",
|
|
39363
|
+
"name": "isOpenChanged",
|
|
39364
|
+
"inheritedFrom": {
|
|
39365
|
+
"name": "SystemHealthOverlay",
|
|
39366
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39367
|
+
}
|
|
39368
|
+
},
|
|
39369
|
+
{
|
|
39370
|
+
"kind": "field",
|
|
39371
|
+
"name": "isDismissed",
|
|
39372
|
+
"type": {
|
|
39373
|
+
"text": "boolean"
|
|
39374
|
+
},
|
|
39375
|
+
"inheritedFrom": {
|
|
39376
|
+
"name": "SystemHealthOverlay",
|
|
39377
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39378
|
+
}
|
|
39379
|
+
},
|
|
39380
|
+
{
|
|
39381
|
+
"kind": "method",
|
|
39382
|
+
"name": "isDismissedChanged",
|
|
39383
|
+
"inheritedFrom": {
|
|
39384
|
+
"name": "SystemHealthOverlay",
|
|
39385
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39386
|
+
}
|
|
39387
|
+
},
|
|
39388
|
+
{
|
|
39389
|
+
"kind": "field",
|
|
39390
|
+
"name": "templateClassNames",
|
|
39391
|
+
"type": {
|
|
39392
|
+
"text": "string"
|
|
39393
|
+
},
|
|
39394
|
+
"inheritedFrom": {
|
|
39395
|
+
"name": "SystemHealthOverlay",
|
|
39396
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39397
|
+
}
|
|
39398
|
+
},
|
|
39399
|
+
{
|
|
39400
|
+
"kind": "field",
|
|
39401
|
+
"name": "containerClassNames",
|
|
39402
|
+
"type": {
|
|
39403
|
+
"text": "string"
|
|
39404
|
+
},
|
|
39405
|
+
"inheritedFrom": {
|
|
39406
|
+
"name": "SystemHealthOverlay",
|
|
39407
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39408
|
+
}
|
|
39409
|
+
},
|
|
39410
|
+
{
|
|
39411
|
+
"kind": "field",
|
|
39412
|
+
"name": "isOnlineClassNames",
|
|
39413
|
+
"type": {
|
|
39414
|
+
"text": "string"
|
|
39415
|
+
},
|
|
39416
|
+
"inheritedFrom": {
|
|
39417
|
+
"name": "SystemHealthOverlay",
|
|
39418
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39419
|
+
}
|
|
39420
|
+
},
|
|
39421
|
+
{
|
|
39422
|
+
"kind": "field",
|
|
39423
|
+
"name": "isHealthyClassNames",
|
|
39424
|
+
"type": {
|
|
39425
|
+
"text": "string"
|
|
39426
|
+
},
|
|
39427
|
+
"inheritedFrom": {
|
|
39428
|
+
"name": "SystemHealthOverlay",
|
|
39429
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39430
|
+
}
|
|
39431
|
+
},
|
|
39432
|
+
{
|
|
39433
|
+
"kind": "field",
|
|
39434
|
+
"name": "isSocketHealthyClassNames",
|
|
39435
|
+
"type": {
|
|
39436
|
+
"text": "string"
|
|
39437
|
+
},
|
|
39438
|
+
"inheritedFrom": {
|
|
39439
|
+
"name": "SystemHealthOverlay",
|
|
39440
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39441
|
+
}
|
|
39442
|
+
},
|
|
39443
|
+
{
|
|
39444
|
+
"kind": "field",
|
|
39445
|
+
"name": "resourcesAllConnectedClassNames",
|
|
39446
|
+
"type": {
|
|
39447
|
+
"text": "string"
|
|
39448
|
+
},
|
|
39449
|
+
"inheritedFrom": {
|
|
39450
|
+
"name": "SystemHealthOverlay",
|
|
39451
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39452
|
+
}
|
|
39453
|
+
},
|
|
39454
|
+
{
|
|
39455
|
+
"kind": "field",
|
|
39456
|
+
"name": "timeTillNextUpdate",
|
|
39457
|
+
"type": {
|
|
39458
|
+
"text": "TimeTillNextUpdate"
|
|
39459
|
+
},
|
|
39460
|
+
"default": "{\n totalMs: 10_000,\n remainMs: 10_000,\n remainPercent: 100,\n }",
|
|
39461
|
+
"inheritedFrom": {
|
|
39462
|
+
"name": "SystemHealthOverlay",
|
|
39463
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39464
|
+
}
|
|
39465
|
+
},
|
|
39466
|
+
{
|
|
39467
|
+
"kind": "field",
|
|
39468
|
+
"name": "timeTillNextUpdateInterval",
|
|
39469
|
+
"type": {
|
|
39470
|
+
"text": "ReturnType<typeof setInterval>"
|
|
39471
|
+
},
|
|
39472
|
+
"privacy": "protected",
|
|
39473
|
+
"inheritedFrom": {
|
|
39474
|
+
"name": "SystemHealthOverlay",
|
|
39475
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39476
|
+
}
|
|
39477
|
+
},
|
|
39478
|
+
{
|
|
39479
|
+
"kind": "field",
|
|
39480
|
+
"name": "saveDataCallback",
|
|
39481
|
+
"type": {
|
|
39482
|
+
"text": "() => void"
|
|
39483
|
+
},
|
|
39484
|
+
"inheritedFrom": {
|
|
39485
|
+
"name": "SystemHealthOverlay",
|
|
39486
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39487
|
+
}
|
|
39488
|
+
},
|
|
39489
|
+
{
|
|
39490
|
+
"kind": "field",
|
|
39491
|
+
"name": "mode",
|
|
39492
|
+
"type": {
|
|
39493
|
+
"text": "SystemHealthOverlayMode"
|
|
39494
|
+
},
|
|
39495
|
+
"description": "Controls the overlay mode, either app or component level.",
|
|
39496
|
+
"inheritedFrom": {
|
|
39497
|
+
"name": "SystemHealthOverlay",
|
|
39498
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39499
|
+
}
|
|
39500
|
+
},
|
|
39501
|
+
{
|
|
39502
|
+
"kind": "method",
|
|
39503
|
+
"name": "modeChanged",
|
|
39504
|
+
"privacy": "protected",
|
|
39505
|
+
"inheritedFrom": {
|
|
39506
|
+
"name": "SystemHealthOverlay",
|
|
39507
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39508
|
+
}
|
|
39509
|
+
},
|
|
39510
|
+
{
|
|
39511
|
+
"kind": "field",
|
|
39512
|
+
"name": "logLevel",
|
|
39513
|
+
"type": {
|
|
39514
|
+
"text": "number"
|
|
39515
|
+
},
|
|
39516
|
+
"description": "Allows users to control the logging level of the network monitor via the component.",
|
|
39517
|
+
"inheritedFrom": {
|
|
39518
|
+
"name": "SystemHealthOverlay",
|
|
39519
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39520
|
+
}
|
|
39521
|
+
},
|
|
39522
|
+
{
|
|
39523
|
+
"kind": "method",
|
|
39524
|
+
"name": "logLevelChanged",
|
|
39525
|
+
"privacy": "protected",
|
|
39526
|
+
"inheritedFrom": {
|
|
39527
|
+
"name": "SystemHealthOverlay",
|
|
39528
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39529
|
+
}
|
|
39530
|
+
},
|
|
39531
|
+
{
|
|
39532
|
+
"kind": "field",
|
|
39533
|
+
"name": "status",
|
|
39534
|
+
"type": {
|
|
39535
|
+
"text": "SystemHealthStatus"
|
|
39536
|
+
},
|
|
39537
|
+
"default": "{\n isOnline: true,\n isHealthy: true,\n socket: {},\n resources: {},\n }",
|
|
39538
|
+
"description": "Last known system health status.",
|
|
39539
|
+
"inheritedFrom": {
|
|
39540
|
+
"name": "SystemHealthOverlay",
|
|
39541
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39542
|
+
}
|
|
39543
|
+
},
|
|
39544
|
+
{
|
|
39545
|
+
"kind": "method",
|
|
39546
|
+
"name": "statusChanged",
|
|
39547
|
+
"privacy": "protected",
|
|
39548
|
+
"parameters": [
|
|
39549
|
+
{
|
|
39550
|
+
"name": "prev",
|
|
39551
|
+
"type": {
|
|
39552
|
+
"text": "SystemHealthStatus"
|
|
39553
|
+
}
|
|
39554
|
+
},
|
|
39555
|
+
{
|
|
39556
|
+
"name": "next",
|
|
39557
|
+
"type": {
|
|
39558
|
+
"text": "SystemHealthStatus"
|
|
39559
|
+
}
|
|
39560
|
+
}
|
|
39561
|
+
],
|
|
39562
|
+
"inheritedFrom": {
|
|
39563
|
+
"name": "SystemHealthOverlay",
|
|
39564
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39565
|
+
}
|
|
39566
|
+
},
|
|
39567
|
+
{
|
|
39568
|
+
"kind": "method",
|
|
39569
|
+
"name": "updateClassNames",
|
|
39570
|
+
"privacy": "protected",
|
|
39571
|
+
"inheritedFrom": {
|
|
39572
|
+
"name": "SystemHealthOverlay",
|
|
39573
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39574
|
+
}
|
|
39575
|
+
},
|
|
39576
|
+
{
|
|
39577
|
+
"kind": "method",
|
|
39578
|
+
"name": "updateTemplateClassNames",
|
|
39579
|
+
"privacy": "protected",
|
|
39580
|
+
"inheritedFrom": {
|
|
39581
|
+
"name": "SystemHealthOverlay",
|
|
39582
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39583
|
+
}
|
|
39584
|
+
},
|
|
39585
|
+
{
|
|
39586
|
+
"kind": "method",
|
|
39587
|
+
"name": "startTimeTillNextUpdateCountdown",
|
|
39588
|
+
"privacy": "protected",
|
|
39589
|
+
"inheritedFrom": {
|
|
39590
|
+
"name": "SystemHealthOverlay",
|
|
39591
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39592
|
+
}
|
|
39593
|
+
},
|
|
39594
|
+
{
|
|
39595
|
+
"kind": "field",
|
|
39596
|
+
"name": "onSystemHealthChanged",
|
|
39597
|
+
"inheritedFrom": {
|
|
39598
|
+
"name": "SystemHealthOverlay",
|
|
39599
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39600
|
+
}
|
|
39601
|
+
},
|
|
39602
|
+
{
|
|
39603
|
+
"kind": "field",
|
|
39604
|
+
"name": "onOpen",
|
|
39605
|
+
"inheritedFrom": {
|
|
39606
|
+
"name": "SystemHealthOverlay",
|
|
39607
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39608
|
+
}
|
|
39609
|
+
},
|
|
39610
|
+
{
|
|
39611
|
+
"kind": "field",
|
|
39612
|
+
"name": "onClose",
|
|
39613
|
+
"inheritedFrom": {
|
|
39614
|
+
"name": "SystemHealthOverlay",
|
|
39615
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39616
|
+
}
|
|
39617
|
+
},
|
|
39618
|
+
{
|
|
39619
|
+
"kind": "field",
|
|
39620
|
+
"name": "onDismiss",
|
|
39621
|
+
"inheritedFrom": {
|
|
39622
|
+
"name": "SystemHealthOverlay",
|
|
39623
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39624
|
+
}
|
|
39625
|
+
},
|
|
39626
|
+
{
|
|
39627
|
+
"kind": "field",
|
|
39628
|
+
"name": "onUpdateStatus",
|
|
39629
|
+
"inheritedFrom": {
|
|
39630
|
+
"name": "SystemHealthOverlay",
|
|
39631
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39632
|
+
}
|
|
39633
|
+
},
|
|
39634
|
+
{
|
|
39635
|
+
"kind": "field",
|
|
39636
|
+
"name": "onReportStatus",
|
|
39637
|
+
"inheritedFrom": {
|
|
39638
|
+
"name": "SystemHealthOverlay",
|
|
39639
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39640
|
+
}
|
|
39641
|
+
},
|
|
39642
|
+
{
|
|
39643
|
+
"kind": "field",
|
|
39644
|
+
"name": "onReloadWindow",
|
|
39645
|
+
"inheritedFrom": {
|
|
39646
|
+
"name": "SystemHealthOverlay",
|
|
39647
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39648
|
+
}
|
|
39649
|
+
},
|
|
39650
|
+
{
|
|
39651
|
+
"kind": "field",
|
|
39652
|
+
"name": "onDocumentKeydown",
|
|
39653
|
+
"inheritedFrom": {
|
|
39654
|
+
"name": "SystemHealthOverlay",
|
|
39655
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39656
|
+
}
|
|
39657
|
+
},
|
|
39658
|
+
{
|
|
39659
|
+
"kind": "field",
|
|
39660
|
+
"name": "isSocketHealthy",
|
|
39661
|
+
"readonly": true,
|
|
39662
|
+
"inheritedFrom": {
|
|
39663
|
+
"name": "SystemHealthOverlay",
|
|
39664
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39665
|
+
}
|
|
39666
|
+
},
|
|
39667
|
+
{
|
|
39668
|
+
"kind": "field",
|
|
39669
|
+
"name": "validResourceList",
|
|
39670
|
+
"readonly": true,
|
|
39671
|
+
"inheritedFrom": {
|
|
39672
|
+
"name": "SystemHealthOverlay",
|
|
39673
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39674
|
+
}
|
|
39675
|
+
},
|
|
39676
|
+
{
|
|
39677
|
+
"kind": "method",
|
|
39678
|
+
"name": "getCheckmarkTemplate",
|
|
39679
|
+
"static": true,
|
|
39680
|
+
"parameters": [
|
|
39681
|
+
{
|
|
39682
|
+
"name": "isGood",
|
|
39683
|
+
"type": {
|
|
39684
|
+
"text": "boolean"
|
|
39685
|
+
}
|
|
39686
|
+
}
|
|
39687
|
+
],
|
|
39688
|
+
"inheritedFrom": {
|
|
39689
|
+
"name": "SystemHealthOverlay",
|
|
39690
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39691
|
+
}
|
|
39692
|
+
},
|
|
39693
|
+
{
|
|
39694
|
+
"kind": "field",
|
|
39695
|
+
"name": "_presentation",
|
|
39696
|
+
"type": {
|
|
39697
|
+
"text": "ComponentPresentation | null | undefined"
|
|
39698
|
+
},
|
|
39699
|
+
"privacy": "private",
|
|
39700
|
+
"default": "void 0",
|
|
39701
|
+
"inheritedFrom": {
|
|
39702
|
+
"name": "FoundationElement",
|
|
39703
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39704
|
+
}
|
|
39705
|
+
},
|
|
39706
|
+
{
|
|
39707
|
+
"kind": "field",
|
|
39708
|
+
"name": "$presentation",
|
|
39709
|
+
"type": {
|
|
39710
|
+
"text": "ComponentPresentation | null"
|
|
39711
|
+
},
|
|
39712
|
+
"privacy": "public",
|
|
39713
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
39714
|
+
"inheritedFrom": {
|
|
39715
|
+
"name": "FoundationElement",
|
|
39716
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39717
|
+
}
|
|
39718
|
+
},
|
|
39719
|
+
{
|
|
39720
|
+
"kind": "field",
|
|
39721
|
+
"name": "template",
|
|
39722
|
+
"type": {
|
|
39723
|
+
"text": "ElementViewTemplate | void | null"
|
|
39724
|
+
},
|
|
39725
|
+
"privacy": "public",
|
|
39726
|
+
"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.",
|
|
39727
|
+
"inheritedFrom": {
|
|
39728
|
+
"name": "FoundationElement",
|
|
39729
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39730
|
+
}
|
|
39731
|
+
},
|
|
39732
|
+
{
|
|
39733
|
+
"kind": "method",
|
|
39734
|
+
"name": "templateChanged",
|
|
39735
|
+
"privacy": "protected",
|
|
39736
|
+
"return": {
|
|
39737
|
+
"type": {
|
|
39738
|
+
"text": "void"
|
|
39739
|
+
}
|
|
39740
|
+
},
|
|
39741
|
+
"inheritedFrom": {
|
|
39742
|
+
"name": "FoundationElement",
|
|
39743
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39744
|
+
}
|
|
39745
|
+
},
|
|
39746
|
+
{
|
|
39747
|
+
"kind": "field",
|
|
39748
|
+
"name": "styles",
|
|
39749
|
+
"type": {
|
|
39750
|
+
"text": "ElementStyles | void | null"
|
|
39751
|
+
},
|
|
39752
|
+
"privacy": "public",
|
|
39753
|
+
"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.",
|
|
39754
|
+
"inheritedFrom": {
|
|
39755
|
+
"name": "FoundationElement",
|
|
39756
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39757
|
+
}
|
|
39758
|
+
},
|
|
39759
|
+
{
|
|
39760
|
+
"kind": "method",
|
|
39761
|
+
"name": "stylesChanged",
|
|
39762
|
+
"privacy": "protected",
|
|
39763
|
+
"return": {
|
|
39764
|
+
"type": {
|
|
39765
|
+
"text": "void"
|
|
39766
|
+
}
|
|
39767
|
+
},
|
|
39768
|
+
"inheritedFrom": {
|
|
39769
|
+
"name": "FoundationElement",
|
|
39770
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39771
|
+
}
|
|
39772
|
+
},
|
|
39773
|
+
{
|
|
39774
|
+
"kind": "method",
|
|
39775
|
+
"name": "compose",
|
|
39776
|
+
"privacy": "public",
|
|
39777
|
+
"static": true,
|
|
39778
|
+
"return": {
|
|
39779
|
+
"type": {
|
|
39780
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
39781
|
+
}
|
|
39782
|
+
},
|
|
39783
|
+
"parameters": [
|
|
39784
|
+
{
|
|
39785
|
+
"name": "this",
|
|
39786
|
+
"type": {
|
|
39787
|
+
"text": "K"
|
|
39788
|
+
}
|
|
39789
|
+
},
|
|
39790
|
+
{
|
|
39791
|
+
"name": "elementDefinition",
|
|
39792
|
+
"type": {
|
|
39793
|
+
"text": "T"
|
|
39794
|
+
},
|
|
39795
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
39796
|
+
}
|
|
39797
|
+
],
|
|
39798
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
39799
|
+
"inheritedFrom": {
|
|
39800
|
+
"name": "FoundationElement",
|
|
39801
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
39802
|
+
}
|
|
39803
|
+
}
|
|
39804
|
+
]
|
|
39805
|
+
},
|
|
39806
|
+
{
|
|
39807
|
+
"kind": "variable",
|
|
39808
|
+
"name": "zeroSystemHealthOverlay",
|
|
39809
|
+
"description": "Zero system health overlay",
|
|
39810
|
+
"privacy": "public"
|
|
39811
|
+
}
|
|
39812
|
+
],
|
|
39813
|
+
"exports": [
|
|
39814
|
+
{
|
|
39815
|
+
"kind": "js",
|
|
39816
|
+
"name": "SystemHealthOverlay",
|
|
39817
|
+
"declaration": {
|
|
39818
|
+
"name": "SystemHealthOverlay",
|
|
39819
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39820
|
+
}
|
|
39821
|
+
},
|
|
39822
|
+
{
|
|
39823
|
+
"kind": "js",
|
|
39824
|
+
"name": "zeroSystemHealthOverlay",
|
|
39825
|
+
"declaration": {
|
|
39826
|
+
"name": "zeroSystemHealthOverlay",
|
|
39827
|
+
"module": "src/overlays/system-health/system-health-overlay.ts"
|
|
39828
|
+
}
|
|
39829
|
+
}
|
|
39830
|
+
]
|
|
39831
|
+
},
|
|
39238
39832
|
{
|
|
39239
39833
|
"kind": "javascript-module",
|
|
39240
39834
|
"path": "src/_config/styles/external/roboto-font/index.ts",
|