@genesislcap/foundation-zero 14.489.0-canary.FUI-2574-1 → 14.489.1-alpha-519bcd2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +1112 -708
- package/dist/dts/base-components.d.ts +11 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/pill/index.d.ts +4 -0
- package/dist/dts/pill/index.d.ts.map +1 -0
- package/dist/dts/pill/pill.d.ts +18 -0
- package/dist/dts/pill/pill.d.ts.map +1 -0
- package/dist/dts/pill/pill.styles.d.ts +3 -0
- package/dist/dts/pill/pill.styles.d.ts.map +1 -0
- package/dist/dts/pill/pill.template.d.ts +2 -0
- package/dist/dts/pill/pill.template.d.ts.map +1 -0
- package/dist/dts/react.d.ts +21 -9
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/pill/index.js +3 -0
- package/dist/esm/pill/pill.js +10 -0
- package/dist/esm/pill/pill.styles.js +11 -0
- package/dist/esm/pill/pill.template.js +2 -0
- package/dist/react.cjs +30 -6
- package/dist/react.mjs +28 -5
- 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 zeroAiCriteriaSearch,\n zeroAiIndicator,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroEnvironmentIndicator,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileReader,\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 zeroNotificationListener,\n zeroNumberField,\n zeroOptgroup,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSchedulerCronBuilder,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroScheduler,\n zeroSchedulerTimezone,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStatusPill,\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 zeroSectionNavigator,\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 zeroAiCriteriaSearch,\n zeroAiIndicator,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroEnvironmentIndicator,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileReader,\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 zeroNotificationListener,\n zeroNumberField,\n zeroOptgroup,\n zeroPill,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSchedulerCronBuilder,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroScheduler,\n zeroSchedulerTimezone,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStatusPill,\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 zeroSectionNavigator,\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": [
|
|
@@ -460,6 +460,14 @@
|
|
|
460
460
|
"package": "./overlays"
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
|
+
{
|
|
464
|
+
"kind": "js",
|
|
465
|
+
"name": "*",
|
|
466
|
+
"declaration": {
|
|
467
|
+
"name": "*",
|
|
468
|
+
"package": "./pill"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
463
471
|
{
|
|
464
472
|
"kind": "js",
|
|
465
473
|
"name": "*",
|
|
@@ -21593,11 +21601,11 @@
|
|
|
21593
21601
|
},
|
|
21594
21602
|
{
|
|
21595
21603
|
"kind": "javascript-module",
|
|
21596
|
-
"path": "src/
|
|
21604
|
+
"path": "src/icon/icon.styles.ts",
|
|
21597
21605
|
"declarations": [
|
|
21598
21606
|
{
|
|
21599
21607
|
"kind": "function",
|
|
21600
|
-
"name": "
|
|
21608
|
+
"name": "zeroIconStyles",
|
|
21601
21609
|
"return": {
|
|
21602
21610
|
"type": {
|
|
21603
21611
|
"text": "ElementStyles"
|
|
@@ -21622,457 +21630,293 @@
|
|
|
21622
21630
|
"exports": [
|
|
21623
21631
|
{
|
|
21624
21632
|
"kind": "js",
|
|
21625
|
-
"name": "
|
|
21633
|
+
"name": "zeroIconStyles",
|
|
21626
21634
|
"declaration": {
|
|
21627
|
-
"name": "
|
|
21628
|
-
"module": "src/
|
|
21635
|
+
"name": "zeroIconStyles",
|
|
21636
|
+
"module": "src/icon/icon.styles.ts"
|
|
21629
21637
|
}
|
|
21630
21638
|
}
|
|
21631
21639
|
]
|
|
21632
21640
|
},
|
|
21633
21641
|
{
|
|
21634
21642
|
"kind": "javascript-module",
|
|
21635
|
-
"path": "src/
|
|
21643
|
+
"path": "src/icon/icon.template.ts",
|
|
21636
21644
|
"declarations": [
|
|
21637
21645
|
{
|
|
21638
|
-
"kind": "
|
|
21639
|
-
"name": "
|
|
21640
|
-
"
|
|
21641
|
-
"type": {
|
|
21642
|
-
"text": "ViewTemplate<HorizontalScroll>"
|
|
21643
|
-
}
|
|
21644
|
-
},
|
|
21645
|
-
"parameters": [
|
|
21646
|
-
{
|
|
21647
|
-
"name": "context",
|
|
21648
|
-
"type": {
|
|
21649
|
-
"text": "ElementDefinitionContext"
|
|
21650
|
-
}
|
|
21651
|
-
},
|
|
21652
|
-
{
|
|
21653
|
-
"name": "definition",
|
|
21654
|
-
"type": {
|
|
21655
|
-
"text": "FoundationElementDefinition"
|
|
21656
|
-
}
|
|
21657
|
-
}
|
|
21658
|
-
]
|
|
21646
|
+
"kind": "variable",
|
|
21647
|
+
"name": "zeroIconTemplate",
|
|
21648
|
+
"default": "html<Icon>`\n ${getPrefixedIcon('zero')}\n`"
|
|
21659
21649
|
}
|
|
21660
21650
|
],
|
|
21661
21651
|
"exports": [
|
|
21662
21652
|
{
|
|
21663
21653
|
"kind": "js",
|
|
21664
|
-
"name": "
|
|
21654
|
+
"name": "zeroIconTemplate",
|
|
21665
21655
|
"declaration": {
|
|
21666
|
-
"name": "
|
|
21667
|
-
"module": "src/
|
|
21656
|
+
"name": "zeroIconTemplate",
|
|
21657
|
+
"module": "src/icon/icon.template.ts"
|
|
21668
21658
|
}
|
|
21669
21659
|
}
|
|
21670
21660
|
]
|
|
21671
21661
|
},
|
|
21672
21662
|
{
|
|
21673
21663
|
"kind": "javascript-module",
|
|
21674
|
-
"path": "src/
|
|
21664
|
+
"path": "src/icon/icon.ts",
|
|
21675
21665
|
"declarations": [
|
|
21676
21666
|
{
|
|
21677
21667
|
"kind": "class",
|
|
21678
21668
|
"description": "",
|
|
21679
|
-
"name": "
|
|
21669
|
+
"name": "Icon",
|
|
21680
21670
|
"superclass": {
|
|
21681
|
-
"name": "
|
|
21671
|
+
"name": "FoundationIcon",
|
|
21682
21672
|
"package": "@genesislcap/foundation-ui"
|
|
21683
21673
|
},
|
|
21684
|
-
"tagName": "%%prefix%%-
|
|
21674
|
+
"tagName": "%%prefix%%-icon",
|
|
21685
21675
|
"customElement": true,
|
|
21686
21676
|
"attributes": [
|
|
21687
21677
|
{
|
|
21688
|
-
"
|
|
21689
|
-
"text": "number"
|
|
21690
|
-
},
|
|
21691
|
-
"default": "600",
|
|
21692
|
-
"description": "Speed of scroll in pixels per second",
|
|
21693
|
-
"fieldName": "speed",
|
|
21694
|
-
"inheritedFrom": {
|
|
21695
|
-
"name": "HorizontalScroll",
|
|
21696
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
21697
|
-
}
|
|
21698
|
-
},
|
|
21699
|
-
{
|
|
21700
|
-
"name": "duration",
|
|
21678
|
+
"name": "tooltip-id",
|
|
21701
21679
|
"type": {
|
|
21702
21680
|
"text": "string"
|
|
21703
21681
|
},
|
|
21704
|
-
"
|
|
21705
|
-
"fieldName": "duration",
|
|
21682
|
+
"fieldName": "tooltipId",
|
|
21706
21683
|
"inheritedFrom": {
|
|
21707
|
-
"name": "
|
|
21708
|
-
"module": "src/
|
|
21684
|
+
"name": "Icon",
|
|
21685
|
+
"module": "src/icon/icon.ts"
|
|
21709
21686
|
}
|
|
21710
21687
|
},
|
|
21711
21688
|
{
|
|
21712
|
-
"name": "
|
|
21689
|
+
"name": "tooltip",
|
|
21713
21690
|
"type": {
|
|
21714
|
-
"text": "
|
|
21691
|
+
"text": "string"
|
|
21715
21692
|
},
|
|
21716
|
-
"
|
|
21717
|
-
"description": "Attribute used for easing, defaults to ease-in-out",
|
|
21718
|
-
"fieldName": "easing",
|
|
21693
|
+
"fieldName": "tooltip",
|
|
21719
21694
|
"inheritedFrom": {
|
|
21720
|
-
"name": "
|
|
21721
|
-
"module": "src/
|
|
21695
|
+
"name": "Icon",
|
|
21696
|
+
"module": "src/icon/icon.ts"
|
|
21722
21697
|
}
|
|
21723
21698
|
},
|
|
21724
21699
|
{
|
|
21725
|
-
"name": "
|
|
21700
|
+
"name": "error",
|
|
21726
21701
|
"type": {
|
|
21727
21702
|
"text": "boolean"
|
|
21728
21703
|
},
|
|
21729
21704
|
"default": "false",
|
|
21730
|
-
"
|
|
21731
|
-
"fieldName": "flippersHiddenFromAT",
|
|
21705
|
+
"fieldName": "isError",
|
|
21732
21706
|
"inheritedFrom": {
|
|
21733
|
-
"name": "
|
|
21734
|
-
"module": "src/
|
|
21707
|
+
"name": "Icon",
|
|
21708
|
+
"module": "src/icon/icon.ts"
|
|
21735
21709
|
}
|
|
21736
21710
|
},
|
|
21737
21711
|
{
|
|
21738
|
-
"name": "
|
|
21712
|
+
"name": "name",
|
|
21739
21713
|
"type": {
|
|
21740
|
-
"text": "
|
|
21714
|
+
"text": "IconName"
|
|
21741
21715
|
},
|
|
21742
|
-
"
|
|
21743
|
-
"fieldName": "view",
|
|
21716
|
+
"fieldName": "name",
|
|
21744
21717
|
"inheritedFrom": {
|
|
21745
|
-
"name": "
|
|
21746
|
-
"module": "src/
|
|
21718
|
+
"name": "Icon",
|
|
21719
|
+
"module": "src/icon/icon.ts"
|
|
21747
21720
|
}
|
|
21748
|
-
}
|
|
21749
|
-
],
|
|
21750
|
-
"members": [
|
|
21721
|
+
},
|
|
21751
21722
|
{
|
|
21752
|
-
"
|
|
21753
|
-
"name": "scrollContainer",
|
|
21723
|
+
"name": "size",
|
|
21754
21724
|
"type": {
|
|
21755
|
-
"text": "
|
|
21725
|
+
"text": "FaSize"
|
|
21756
21726
|
},
|
|
21757
|
-
"
|
|
21758
|
-
"
|
|
21727
|
+
"default": "'sm'",
|
|
21728
|
+
"fieldName": "size",
|
|
21759
21729
|
"inheritedFrom": {
|
|
21760
|
-
"name": "
|
|
21761
|
-
"module": "src/
|
|
21730
|
+
"name": "Icon",
|
|
21731
|
+
"module": "src/icon/icon.ts"
|
|
21762
21732
|
}
|
|
21763
21733
|
},
|
|
21764
21734
|
{
|
|
21765
|
-
"
|
|
21766
|
-
"name": "content",
|
|
21735
|
+
"name": "variant",
|
|
21767
21736
|
"type": {
|
|
21768
|
-
"text": "
|
|
21737
|
+
"text": "IconStyle"
|
|
21769
21738
|
},
|
|
21770
|
-
"
|
|
21771
|
-
"
|
|
21739
|
+
"default": "'solid'",
|
|
21740
|
+
"fieldName": "variant",
|
|
21772
21741
|
"inheritedFrom": {
|
|
21773
|
-
"name": "
|
|
21774
|
-
"module": "src/
|
|
21742
|
+
"name": "Icon",
|
|
21743
|
+
"module": "src/icon/icon.ts"
|
|
21775
21744
|
}
|
|
21776
|
-
}
|
|
21745
|
+
}
|
|
21746
|
+
],
|
|
21747
|
+
"members": [
|
|
21777
21748
|
{
|
|
21778
21749
|
"kind": "field",
|
|
21779
|
-
"name": "
|
|
21750
|
+
"name": "iElement",
|
|
21780
21751
|
"type": {
|
|
21781
|
-
"text": "
|
|
21752
|
+
"text": "HTMLElement"
|
|
21782
21753
|
},
|
|
21783
|
-
"privacy": "public",
|
|
21784
|
-
"description": "Reference to flipper to scroll to previous content",
|
|
21785
21754
|
"inheritedFrom": {
|
|
21786
|
-
"name": "
|
|
21787
|
-
"module": "src/
|
|
21755
|
+
"name": "Icon",
|
|
21756
|
+
"module": "src/icon/icon.ts"
|
|
21788
21757
|
}
|
|
21789
21758
|
},
|
|
21790
21759
|
{
|
|
21791
21760
|
"kind": "field",
|
|
21792
|
-
"name": "
|
|
21761
|
+
"name": "uuid",
|
|
21793
21762
|
"type": {
|
|
21794
|
-
"text": "
|
|
21763
|
+
"text": "UUID"
|
|
21795
21764
|
},
|
|
21796
|
-
"privacy": "public",
|
|
21797
|
-
"description": "Reference to flipper to scroll to the next content",
|
|
21798
21765
|
"inheritedFrom": {
|
|
21799
|
-
"name": "
|
|
21800
|
-
"module": "src/
|
|
21766
|
+
"name": "Icon",
|
|
21767
|
+
"module": "src/icon/icon.ts"
|
|
21801
21768
|
}
|
|
21802
21769
|
},
|
|
21803
21770
|
{
|
|
21804
21771
|
"kind": "field",
|
|
21805
|
-
"name": "
|
|
21772
|
+
"name": "tooltipId",
|
|
21806
21773
|
"type": {
|
|
21807
|
-
"text": "
|
|
21774
|
+
"text": "string"
|
|
21808
21775
|
},
|
|
21809
|
-
"privacy": "public",
|
|
21810
|
-
"default": "600",
|
|
21811
|
-
"description": "Speed of scroll in pixels per second",
|
|
21812
21776
|
"inheritedFrom": {
|
|
21813
|
-
"name": "
|
|
21814
|
-
"module": "src/
|
|
21777
|
+
"name": "Icon",
|
|
21778
|
+
"module": "src/icon/icon.ts"
|
|
21815
21779
|
}
|
|
21816
21780
|
},
|
|
21817
21781
|
{
|
|
21818
21782
|
"kind": "field",
|
|
21819
|
-
"name": "
|
|
21783
|
+
"name": "tooltip",
|
|
21820
21784
|
"type": {
|
|
21821
21785
|
"text": "string"
|
|
21822
21786
|
},
|
|
21823
|
-
"privacy": "public",
|
|
21824
|
-
"description": "The CSS time value for the scroll transition duration. Overrides the `speed` attribute.",
|
|
21825
21787
|
"inheritedFrom": {
|
|
21826
|
-
"name": "
|
|
21827
|
-
"module": "src/
|
|
21788
|
+
"name": "Icon",
|
|
21789
|
+
"module": "src/icon/icon.ts"
|
|
21828
21790
|
}
|
|
21829
21791
|
},
|
|
21830
21792
|
{
|
|
21831
21793
|
"kind": "field",
|
|
21832
|
-
"name": "
|
|
21794
|
+
"name": "isError",
|
|
21833
21795
|
"type": {
|
|
21834
|
-
"text": "
|
|
21796
|
+
"text": "boolean"
|
|
21835
21797
|
},
|
|
21836
|
-
"
|
|
21837
|
-
"default": "\"ease-in-out\"",
|
|
21838
|
-
"description": "Attribute used for easing, defaults to ease-in-out",
|
|
21798
|
+
"default": "false",
|
|
21839
21799
|
"inheritedFrom": {
|
|
21840
|
-
"name": "
|
|
21841
|
-
"module": "src/
|
|
21800
|
+
"name": "Icon",
|
|
21801
|
+
"module": "src/icon/icon.ts"
|
|
21842
21802
|
}
|
|
21843
21803
|
},
|
|
21844
21804
|
{
|
|
21845
21805
|
"kind": "field",
|
|
21846
|
-
"name": "
|
|
21806
|
+
"name": "name",
|
|
21847
21807
|
"type": {
|
|
21848
|
-
"text": "
|
|
21808
|
+
"text": "IconName"
|
|
21849
21809
|
},
|
|
21850
|
-
"privacy": "public",
|
|
21851
|
-
"default": "false",
|
|
21852
|
-
"description": "Attribute to hide flippers from assistive technology",
|
|
21853
21810
|
"inheritedFrom": {
|
|
21854
|
-
"name": "
|
|
21855
|
-
"module": "src/
|
|
21811
|
+
"name": "Icon",
|
|
21812
|
+
"module": "src/icon/icon.ts"
|
|
21856
21813
|
}
|
|
21857
21814
|
},
|
|
21858
21815
|
{
|
|
21859
|
-
"kind": "
|
|
21860
|
-
"name": "
|
|
21861
|
-
"
|
|
21862
|
-
|
|
21863
|
-
|
|
21864
|
-
|
|
21865
|
-
|
|
21816
|
+
"kind": "method",
|
|
21817
|
+
"name": "nameChanged",
|
|
21818
|
+
"parameters": [
|
|
21819
|
+
{
|
|
21820
|
+
"name": "oldValue",
|
|
21821
|
+
"type": {
|
|
21822
|
+
"text": "string"
|
|
21823
|
+
}
|
|
21824
|
+
},
|
|
21825
|
+
{
|
|
21826
|
+
"name": "newValue",
|
|
21827
|
+
"type": {
|
|
21828
|
+
"text": "string"
|
|
21829
|
+
}
|
|
21830
|
+
}
|
|
21831
|
+
],
|
|
21866
21832
|
"inheritedFrom": {
|
|
21867
|
-
"name": "
|
|
21868
|
-
"module": "src/
|
|
21833
|
+
"name": "Icon",
|
|
21834
|
+
"module": "src/icon/icon.ts"
|
|
21869
21835
|
}
|
|
21870
21836
|
},
|
|
21871
21837
|
{
|
|
21872
21838
|
"kind": "field",
|
|
21873
|
-
"name": "
|
|
21839
|
+
"name": "size",
|
|
21874
21840
|
"type": {
|
|
21875
|
-
"text": "
|
|
21841
|
+
"text": "FaSize"
|
|
21876
21842
|
},
|
|
21877
|
-
"
|
|
21878
|
-
"description": "View: default | mobile",
|
|
21843
|
+
"default": "'sm'",
|
|
21879
21844
|
"inheritedFrom": {
|
|
21880
|
-
"name": "
|
|
21881
|
-
"module": "src/
|
|
21845
|
+
"name": "Icon",
|
|
21846
|
+
"module": "src/icon/icon.ts"
|
|
21882
21847
|
}
|
|
21883
21848
|
},
|
|
21884
21849
|
{
|
|
21885
21850
|
"kind": "method",
|
|
21886
|
-
"name": "
|
|
21887
|
-
"privacy": "public",
|
|
21851
|
+
"name": "sizeChanged",
|
|
21888
21852
|
"parameters": [
|
|
21889
21853
|
{
|
|
21890
|
-
"name": "
|
|
21854
|
+
"name": "oldValue",
|
|
21891
21855
|
"type": {
|
|
21892
|
-
"text": "
|
|
21893
|
-
}
|
|
21894
|
-
"description": "current scroll items"
|
|
21856
|
+
"text": "string"
|
|
21857
|
+
}
|
|
21895
21858
|
},
|
|
21896
21859
|
{
|
|
21897
|
-
"name": "
|
|
21860
|
+
"name": "newValue",
|
|
21898
21861
|
"type": {
|
|
21899
|
-
"text": "
|
|
21900
|
-
},
|
|
21901
|
-
"description": "new updated scroll items"
|
|
21902
|
-
}
|
|
21903
|
-
],
|
|
21904
|
-
"description": "Updates scroll stops and flippers when scroll items change",
|
|
21905
|
-
"inheritedFrom": {
|
|
21906
|
-
"name": "HorizontalScroll",
|
|
21907
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
21908
|
-
}
|
|
21909
|
-
},
|
|
21910
|
-
{
|
|
21911
|
-
"kind": "method",
|
|
21912
|
-
"name": "fixScrollMisalign",
|
|
21913
|
-
"privacy": "private",
|
|
21914
|
-
"parameters": [
|
|
21915
|
-
{
|
|
21916
|
-
"name": "stops",
|
|
21917
|
-
"type": {
|
|
21918
|
-
"text": "number[]"
|
|
21862
|
+
"text": "string"
|
|
21919
21863
|
}
|
|
21920
21864
|
}
|
|
21921
21865
|
],
|
|
21922
21866
|
"inheritedFrom": {
|
|
21923
|
-
"name": "
|
|
21924
|
-
"module": "src/
|
|
21925
|
-
}
|
|
21926
|
-
},
|
|
21927
|
-
{
|
|
21928
|
-
"kind": "method",
|
|
21929
|
-
"name": "scrollInView",
|
|
21930
|
-
"privacy": "public",
|
|
21931
|
-
"return": {
|
|
21932
|
-
"type": {
|
|
21933
|
-
"text": "void"
|
|
21934
|
-
}
|
|
21935
|
-
},
|
|
21936
|
-
"parameters": [
|
|
21937
|
-
{
|
|
21938
|
-
"name": "item",
|
|
21939
|
-
"type": {
|
|
21940
|
-
"text": "HTMLElement | number"
|
|
21941
|
-
},
|
|
21942
|
-
"description": "An item index, a scroll item or a child of one of the scroll items"
|
|
21943
|
-
},
|
|
21944
|
-
{
|
|
21945
|
-
"name": "padding",
|
|
21946
|
-
"default": "0",
|
|
21947
|
-
"type": {
|
|
21948
|
-
"text": "number"
|
|
21949
|
-
},
|
|
21950
|
-
"description": "Padding of the viewport where the active item shouldn't be"
|
|
21951
|
-
},
|
|
21952
|
-
{
|
|
21953
|
-
"name": "rightPadding",
|
|
21954
|
-
"optional": true,
|
|
21955
|
-
"type": {
|
|
21956
|
-
"text": "number"
|
|
21957
|
-
},
|
|
21958
|
-
"description": "Optional right padding. Uses the padding if not defined"
|
|
21959
|
-
}
|
|
21960
|
-
],
|
|
21961
|
-
"description": "Function that can scroll an item into view.",
|
|
21962
|
-
"inheritedFrom": {
|
|
21963
|
-
"name": "HorizontalScroll",
|
|
21964
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
21965
|
-
}
|
|
21966
|
-
},
|
|
21967
|
-
{
|
|
21968
|
-
"kind": "method",
|
|
21969
|
-
"name": "keyupHandler",
|
|
21970
|
-
"privacy": "public",
|
|
21971
|
-
"parameters": [
|
|
21972
|
-
{
|
|
21973
|
-
"name": "e",
|
|
21974
|
-
"type": {
|
|
21975
|
-
"text": "Event & KeyboardEvent"
|
|
21976
|
-
},
|
|
21977
|
-
"description": "Keyboard event"
|
|
21978
|
-
}
|
|
21979
|
-
],
|
|
21980
|
-
"description": "Lets the user arrow left and right through the horizontal scroll",
|
|
21981
|
-
"inheritedFrom": {
|
|
21982
|
-
"name": "HorizontalScroll",
|
|
21983
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
21984
|
-
}
|
|
21985
|
-
},
|
|
21986
|
-
{
|
|
21987
|
-
"kind": "method",
|
|
21988
|
-
"name": "scrollToPrevious",
|
|
21989
|
-
"privacy": "public",
|
|
21990
|
-
"return": {
|
|
21991
|
-
"type": {
|
|
21992
|
-
"text": "void"
|
|
21993
|
-
}
|
|
21994
|
-
},
|
|
21995
|
-
"description": "Scrolls items to the left",
|
|
21996
|
-
"inheritedFrom": {
|
|
21997
|
-
"name": "HorizontalScroll",
|
|
21998
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
21867
|
+
"name": "Icon",
|
|
21868
|
+
"module": "src/icon/icon.ts"
|
|
21999
21869
|
}
|
|
22000
21870
|
},
|
|
22001
21871
|
{
|
|
22002
|
-
"kind": "
|
|
22003
|
-
"name": "
|
|
22004
|
-
"
|
|
22005
|
-
|
|
22006
|
-
"type": {
|
|
22007
|
-
"text": "void"
|
|
22008
|
-
}
|
|
21872
|
+
"kind": "field",
|
|
21873
|
+
"name": "variant",
|
|
21874
|
+
"type": {
|
|
21875
|
+
"text": "IconStyle"
|
|
22009
21876
|
},
|
|
22010
|
-
"
|
|
21877
|
+
"default": "'solid'",
|
|
22011
21878
|
"inheritedFrom": {
|
|
22012
|
-
"name": "
|
|
22013
|
-
"module": "src/
|
|
21879
|
+
"name": "Icon",
|
|
21880
|
+
"module": "src/icon/icon.ts"
|
|
22014
21881
|
}
|
|
22015
21882
|
},
|
|
22016
21883
|
{
|
|
22017
21884
|
"kind": "method",
|
|
22018
|
-
"name": "
|
|
22019
|
-
"privacy": "public",
|
|
22020
|
-
"return": {
|
|
22021
|
-
"type": {
|
|
22022
|
-
"text": "void"
|
|
22023
|
-
}
|
|
22024
|
-
},
|
|
21885
|
+
"name": "variantChanged",
|
|
22025
21886
|
"parameters": [
|
|
22026
21887
|
{
|
|
22027
|
-
"name": "
|
|
21888
|
+
"name": "oldValue",
|
|
22028
21889
|
"type": {
|
|
22029
|
-
"text": "
|
|
22030
|
-
}
|
|
22031
|
-
"description": "position to scroll to"
|
|
21890
|
+
"text": "string"
|
|
21891
|
+
}
|
|
22032
21892
|
},
|
|
22033
21893
|
{
|
|
22034
|
-
"name": "
|
|
22035
|
-
"default": "this.scrollContainer.scrollLeft",
|
|
21894
|
+
"name": "newValue",
|
|
22036
21895
|
"type": {
|
|
22037
|
-
"text": "
|
|
22038
|
-
}
|
|
22039
|
-
"description": "starting position"
|
|
21896
|
+
"text": "string"
|
|
21897
|
+
}
|
|
22040
21898
|
}
|
|
22041
21899
|
],
|
|
22042
|
-
"description": "Handles scrolling with easing",
|
|
22043
21900
|
"inheritedFrom": {
|
|
22044
|
-
"name": "
|
|
22045
|
-
"module": "src/
|
|
21901
|
+
"name": "Icon",
|
|
21902
|
+
"module": "src/icon/icon.ts"
|
|
22046
21903
|
}
|
|
22047
21904
|
},
|
|
22048
21905
|
{
|
|
22049
21906
|
"kind": "method",
|
|
22050
|
-
"name": "
|
|
22051
|
-
"privacy": "public",
|
|
22052
|
-
"return": {
|
|
22053
|
-
"type": {
|
|
22054
|
-
"text": "void"
|
|
22055
|
-
}
|
|
22056
|
-
},
|
|
22057
|
-
"description": "Monitors resize event on the horizontal-scroll element",
|
|
21907
|
+
"name": "getDefaultTooltipConfig",
|
|
22058
21908
|
"inheritedFrom": {
|
|
22059
|
-
"name": "
|
|
22060
|
-
"module": "src/
|
|
21909
|
+
"name": "Icon",
|
|
21910
|
+
"module": "src/icon/icon.ts"
|
|
22061
21911
|
}
|
|
22062
21912
|
},
|
|
22063
21913
|
{
|
|
22064
21914
|
"kind": "method",
|
|
22065
|
-
"name": "
|
|
21915
|
+
"name": "loadIcon",
|
|
22066
21916
|
"privacy": "public",
|
|
22067
|
-
"return": {
|
|
22068
|
-
"type": {
|
|
22069
|
-
"text": "void"
|
|
22070
|
-
}
|
|
22071
|
-
},
|
|
22072
|
-
"description": "Monitors scrolled event on the content container",
|
|
22073
21917
|
"inheritedFrom": {
|
|
22074
|
-
"name": "
|
|
22075
|
-
"module": "src/
|
|
21918
|
+
"name": "Icon",
|
|
21919
|
+
"module": "src/icon/icon.ts"
|
|
22076
21920
|
}
|
|
22077
21921
|
},
|
|
22078
21922
|
{
|
|
@@ -22084,8 +21928,8 @@
|
|
|
22084
21928
|
"privacy": "private",
|
|
22085
21929
|
"default": "void 0",
|
|
22086
21930
|
"inheritedFrom": {
|
|
22087
|
-
"name": "
|
|
22088
|
-
"module": "src/
|
|
21931
|
+
"name": "FoundationElement",
|
|
21932
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22089
21933
|
}
|
|
22090
21934
|
},
|
|
22091
21935
|
{
|
|
@@ -22097,8 +21941,8 @@
|
|
|
22097
21941
|
"privacy": "public",
|
|
22098
21942
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22099
21943
|
"inheritedFrom": {
|
|
22100
|
-
"name": "
|
|
22101
|
-
"module": "src/
|
|
21944
|
+
"name": "FoundationElement",
|
|
21945
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22102
21946
|
}
|
|
22103
21947
|
},
|
|
22104
21948
|
{
|
|
@@ -22110,8 +21954,8 @@
|
|
|
22110
21954
|
"privacy": "public",
|
|
22111
21955
|
"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.",
|
|
22112
21956
|
"inheritedFrom": {
|
|
22113
|
-
"name": "
|
|
22114
|
-
"module": "src/
|
|
21957
|
+
"name": "FoundationElement",
|
|
21958
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22115
21959
|
}
|
|
22116
21960
|
},
|
|
22117
21961
|
{
|
|
@@ -22124,8 +21968,8 @@
|
|
|
22124
21968
|
}
|
|
22125
21969
|
},
|
|
22126
21970
|
"inheritedFrom": {
|
|
22127
|
-
"name": "
|
|
22128
|
-
"module": "src/
|
|
21971
|
+
"name": "FoundationElement",
|
|
21972
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22129
21973
|
}
|
|
22130
21974
|
},
|
|
22131
21975
|
{
|
|
@@ -22137,8 +21981,8 @@
|
|
|
22137
21981
|
"privacy": "public",
|
|
22138
21982
|
"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.",
|
|
22139
21983
|
"inheritedFrom": {
|
|
22140
|
-
"name": "
|
|
22141
|
-
"module": "src/
|
|
21984
|
+
"name": "FoundationElement",
|
|
21985
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22142
21986
|
}
|
|
22143
21987
|
},
|
|
22144
21988
|
{
|
|
@@ -22151,8 +21995,8 @@
|
|
|
22151
21995
|
}
|
|
22152
21996
|
},
|
|
22153
21997
|
"inheritedFrom": {
|
|
22154
|
-
"name": "
|
|
22155
|
-
"module": "src/
|
|
21998
|
+
"name": "FoundationElement",
|
|
21999
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22156
22000
|
}
|
|
22157
22001
|
},
|
|
22158
22002
|
{
|
|
@@ -22182,73 +22026,65 @@
|
|
|
22182
22026
|
],
|
|
22183
22027
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
22184
22028
|
"inheritedFrom": {
|
|
22185
|
-
"name": "
|
|
22186
|
-
"module": "src/
|
|
22187
|
-
}
|
|
22188
|
-
}
|
|
22189
|
-
],
|
|
22190
|
-
"events": [
|
|
22191
|
-
{
|
|
22192
|
-
"description": "Fires a custom 'scrollstart' event when scrolling",
|
|
22193
|
-
"name": "scrollstart",
|
|
22194
|
-
"inheritedFrom": {
|
|
22195
|
-
"name": "HorizontalScroll",
|
|
22196
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22197
|
-
}
|
|
22198
|
-
},
|
|
22199
|
-
{
|
|
22200
|
-
"description": "Fires a custom 'scrollend' event when scrolling stops",
|
|
22201
|
-
"name": "scrollend",
|
|
22202
|
-
"inheritedFrom": {
|
|
22203
|
-
"name": "HorizontalScroll",
|
|
22204
|
-
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22029
|
+
"name": "FoundationElement",
|
|
22030
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
22205
22031
|
}
|
|
22206
22032
|
}
|
|
22207
22033
|
]
|
|
22208
22034
|
},
|
|
22209
22035
|
{
|
|
22210
22036
|
"kind": "variable",
|
|
22211
|
-
"name": "
|
|
22212
|
-
"
|
|
22213
|
-
"text": "object"
|
|
22214
|
-
},
|
|
22215
|
-
"default": "{\n nextFlipper: html`\n <zero-flipper\n @click=\"${(x) => x.scrollToNext()}\"\n aria-hidden=\"${(x) => x.flippersHiddenFromAT}\"\n ></zero-flipper>\n `,\n previousFlipper: html`\n <zero-flipper\n @click=\"${(x) => x.scrollToPrevious()}\"\n direction=\"previous\"\n aria-hidden=\"${(x) => x.flippersHiddenFromAT}\"\n ></zero-flipper>\n `,\n}"
|
|
22037
|
+
"name": "defaultIconConfig",
|
|
22038
|
+
"default": "foundationIconConfig"
|
|
22216
22039
|
},
|
|
22217
22040
|
{
|
|
22218
22041
|
"kind": "variable",
|
|
22219
|
-
"name": "
|
|
22042
|
+
"name": "zeroIconShadowOptions",
|
|
22043
|
+
"default": "foundationIconShadowOptions"
|
|
22044
|
+
},
|
|
22045
|
+
{
|
|
22046
|
+
"kind": "variable",
|
|
22047
|
+
"name": "zeroIcon"
|
|
22220
22048
|
}
|
|
22221
22049
|
],
|
|
22222
22050
|
"exports": [
|
|
22223
22051
|
{
|
|
22224
22052
|
"kind": "js",
|
|
22225
|
-
"name": "
|
|
22053
|
+
"name": "Icon",
|
|
22226
22054
|
"declaration": {
|
|
22227
|
-
"name": "
|
|
22228
|
-
"module": "src/
|
|
22055
|
+
"name": "Icon",
|
|
22056
|
+
"module": "src/icon/icon.ts"
|
|
22229
22057
|
}
|
|
22230
22058
|
},
|
|
22231
22059
|
{
|
|
22232
22060
|
"kind": "js",
|
|
22233
|
-
"name": "
|
|
22061
|
+
"name": "defaultIconConfig",
|
|
22234
22062
|
"declaration": {
|
|
22235
|
-
"name": "
|
|
22236
|
-
"module": "src/
|
|
22063
|
+
"name": "defaultIconConfig",
|
|
22064
|
+
"module": "src/icon/icon.ts"
|
|
22237
22065
|
}
|
|
22238
22066
|
},
|
|
22239
22067
|
{
|
|
22240
22068
|
"kind": "js",
|
|
22241
|
-
"name": "
|
|
22069
|
+
"name": "zeroIconShadowOptions",
|
|
22242
22070
|
"declaration": {
|
|
22243
|
-
"name": "
|
|
22244
|
-
"module": "src/
|
|
22071
|
+
"name": "zeroIconShadowOptions",
|
|
22072
|
+
"module": "src/icon/icon.ts"
|
|
22073
|
+
}
|
|
22074
|
+
},
|
|
22075
|
+
{
|
|
22076
|
+
"kind": "js",
|
|
22077
|
+
"name": "zeroIcon",
|
|
22078
|
+
"declaration": {
|
|
22079
|
+
"name": "zeroIcon",
|
|
22080
|
+
"module": "src/icon/icon.ts"
|
|
22245
22081
|
}
|
|
22246
22082
|
}
|
|
22247
22083
|
]
|
|
22248
22084
|
},
|
|
22249
22085
|
{
|
|
22250
22086
|
"kind": "javascript-module",
|
|
22251
|
-
"path": "src/
|
|
22087
|
+
"path": "src/icon/index.ts",
|
|
22252
22088
|
"declarations": [],
|
|
22253
22089
|
"exports": [
|
|
22254
22090
|
{
|
|
@@ -22256,15 +22092,7 @@
|
|
|
22256
22092
|
"name": "*",
|
|
22257
22093
|
"declaration": {
|
|
22258
22094
|
"name": "*",
|
|
22259
|
-
"package": "./
|
|
22260
|
-
}
|
|
22261
|
-
},
|
|
22262
|
-
{
|
|
22263
|
-
"kind": "js",
|
|
22264
|
-
"name": "*",
|
|
22265
|
-
"declaration": {
|
|
22266
|
-
"name": "*",
|
|
22267
|
-
"package": "./horizontal-scroll.styles"
|
|
22095
|
+
"package": "./icon"
|
|
22268
22096
|
}
|
|
22269
22097
|
},
|
|
22270
22098
|
{
|
|
@@ -22272,18 +22100,18 @@
|
|
|
22272
22100
|
"name": "*",
|
|
22273
22101
|
"declaration": {
|
|
22274
22102
|
"name": "*",
|
|
22275
|
-
"package": "./
|
|
22103
|
+
"package": "./icon.styles"
|
|
22276
22104
|
}
|
|
22277
22105
|
}
|
|
22278
22106
|
]
|
|
22279
22107
|
},
|
|
22280
22108
|
{
|
|
22281
22109
|
"kind": "javascript-module",
|
|
22282
|
-
"path": "src/
|
|
22110
|
+
"path": "src/horizontal-scroll/horizontal-scroll.styles.ts",
|
|
22283
22111
|
"declarations": [
|
|
22284
22112
|
{
|
|
22285
22113
|
"kind": "function",
|
|
22286
|
-
"name": "
|
|
22114
|
+
"name": "zeroHorizontalScrollStyles",
|
|
22287
22115
|
"return": {
|
|
22288
22116
|
"type": {
|
|
22289
22117
|
"text": "ElementStyles"
|
|
@@ -22308,293 +22136,457 @@
|
|
|
22308
22136
|
"exports": [
|
|
22309
22137
|
{
|
|
22310
22138
|
"kind": "js",
|
|
22311
|
-
"name": "
|
|
22139
|
+
"name": "zeroHorizontalScrollStyles",
|
|
22312
22140
|
"declaration": {
|
|
22313
|
-
"name": "
|
|
22314
|
-
"module": "src/
|
|
22141
|
+
"name": "zeroHorizontalScrollStyles",
|
|
22142
|
+
"module": "src/horizontal-scroll/horizontal-scroll.styles.ts"
|
|
22315
22143
|
}
|
|
22316
22144
|
}
|
|
22317
22145
|
]
|
|
22318
22146
|
},
|
|
22319
22147
|
{
|
|
22320
22148
|
"kind": "javascript-module",
|
|
22321
|
-
"path": "src/
|
|
22149
|
+
"path": "src/horizontal-scroll/horizontal-scroll.template.ts",
|
|
22322
22150
|
"declarations": [
|
|
22323
22151
|
{
|
|
22324
|
-
"kind": "
|
|
22325
|
-
"name": "
|
|
22326
|
-
"
|
|
22152
|
+
"kind": "function",
|
|
22153
|
+
"name": "zeroHorizontalScrollTemplate",
|
|
22154
|
+
"return": {
|
|
22155
|
+
"type": {
|
|
22156
|
+
"text": "ViewTemplate<HorizontalScroll>"
|
|
22157
|
+
}
|
|
22158
|
+
},
|
|
22159
|
+
"parameters": [
|
|
22160
|
+
{
|
|
22161
|
+
"name": "context",
|
|
22162
|
+
"type": {
|
|
22163
|
+
"text": "ElementDefinitionContext"
|
|
22164
|
+
}
|
|
22165
|
+
},
|
|
22166
|
+
{
|
|
22167
|
+
"name": "definition",
|
|
22168
|
+
"type": {
|
|
22169
|
+
"text": "FoundationElementDefinition"
|
|
22170
|
+
}
|
|
22171
|
+
}
|
|
22172
|
+
]
|
|
22327
22173
|
}
|
|
22328
22174
|
],
|
|
22329
22175
|
"exports": [
|
|
22330
22176
|
{
|
|
22331
22177
|
"kind": "js",
|
|
22332
|
-
"name": "
|
|
22178
|
+
"name": "zeroHorizontalScrollTemplate",
|
|
22333
22179
|
"declaration": {
|
|
22334
|
-
"name": "
|
|
22335
|
-
"module": "src/
|
|
22180
|
+
"name": "zeroHorizontalScrollTemplate",
|
|
22181
|
+
"module": "src/horizontal-scroll/horizontal-scroll.template.ts"
|
|
22336
22182
|
}
|
|
22337
22183
|
}
|
|
22338
22184
|
]
|
|
22339
22185
|
},
|
|
22340
22186
|
{
|
|
22341
22187
|
"kind": "javascript-module",
|
|
22342
|
-
"path": "src/
|
|
22188
|
+
"path": "src/horizontal-scroll/horizontal-scroll.ts",
|
|
22343
22189
|
"declarations": [
|
|
22344
22190
|
{
|
|
22345
22191
|
"kind": "class",
|
|
22346
22192
|
"description": "",
|
|
22347
|
-
"name": "
|
|
22193
|
+
"name": "HorizontalScroll",
|
|
22348
22194
|
"superclass": {
|
|
22349
|
-
"name": "
|
|
22195
|
+
"name": "FoundationHorizontalScroll",
|
|
22350
22196
|
"package": "@genesislcap/foundation-ui"
|
|
22351
22197
|
},
|
|
22352
|
-
"tagName": "%%prefix%%-
|
|
22198
|
+
"tagName": "%%prefix%%-horizontal-scroll",
|
|
22353
22199
|
"customElement": true,
|
|
22354
22200
|
"attributes": [
|
|
22355
22201
|
{
|
|
22356
|
-
"name": "tooltip-id",
|
|
22357
22202
|
"type": {
|
|
22358
|
-
"text": "
|
|
22203
|
+
"text": "number"
|
|
22359
22204
|
},
|
|
22360
|
-
"
|
|
22205
|
+
"default": "600",
|
|
22206
|
+
"description": "Speed of scroll in pixels per second",
|
|
22207
|
+
"fieldName": "speed",
|
|
22361
22208
|
"inheritedFrom": {
|
|
22362
|
-
"name": "
|
|
22363
|
-
"module": "src/
|
|
22209
|
+
"name": "HorizontalScroll",
|
|
22210
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22364
22211
|
}
|
|
22365
22212
|
},
|
|
22366
22213
|
{
|
|
22367
|
-
"name": "
|
|
22214
|
+
"name": "duration",
|
|
22368
22215
|
"type": {
|
|
22369
22216
|
"text": "string"
|
|
22370
22217
|
},
|
|
22371
|
-
"
|
|
22218
|
+
"description": "The CSS time value for the scroll transition duration. Overrides the `speed` attribute.",
|
|
22219
|
+
"fieldName": "duration",
|
|
22372
22220
|
"inheritedFrom": {
|
|
22373
|
-
"name": "
|
|
22374
|
-
"module": "src/
|
|
22221
|
+
"name": "HorizontalScroll",
|
|
22222
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22375
22223
|
}
|
|
22376
22224
|
},
|
|
22377
22225
|
{
|
|
22378
|
-
"name": "
|
|
22226
|
+
"name": "easing",
|
|
22227
|
+
"type": {
|
|
22228
|
+
"text": "ScrollEasing"
|
|
22229
|
+
},
|
|
22230
|
+
"default": "\"ease-in-out\"",
|
|
22231
|
+
"description": "Attribute used for easing, defaults to ease-in-out",
|
|
22232
|
+
"fieldName": "easing",
|
|
22233
|
+
"inheritedFrom": {
|
|
22234
|
+
"name": "HorizontalScroll",
|
|
22235
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22236
|
+
}
|
|
22237
|
+
},
|
|
22238
|
+
{
|
|
22239
|
+
"name": "flippers-hidden-from-at",
|
|
22379
22240
|
"type": {
|
|
22380
22241
|
"text": "boolean"
|
|
22381
22242
|
},
|
|
22382
22243
|
"default": "false",
|
|
22383
|
-
"
|
|
22244
|
+
"description": "Attribute to hide flippers from assistive technology",
|
|
22245
|
+
"fieldName": "flippersHiddenFromAT",
|
|
22384
22246
|
"inheritedFrom": {
|
|
22385
|
-
"name": "
|
|
22386
|
-
"module": "src/
|
|
22247
|
+
"name": "HorizontalScroll",
|
|
22248
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22387
22249
|
}
|
|
22388
22250
|
},
|
|
22389
22251
|
{
|
|
22390
|
-
"name": "
|
|
22252
|
+
"name": "view",
|
|
22391
22253
|
"type": {
|
|
22392
|
-
"text": "
|
|
22254
|
+
"text": "HorizontalScrollView"
|
|
22393
22255
|
},
|
|
22394
|
-
"
|
|
22256
|
+
"description": "View: default | mobile",
|
|
22257
|
+
"fieldName": "view",
|
|
22395
22258
|
"inheritedFrom": {
|
|
22396
|
-
"name": "
|
|
22397
|
-
"module": "src/
|
|
22259
|
+
"name": "HorizontalScroll",
|
|
22260
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22261
|
+
}
|
|
22262
|
+
}
|
|
22263
|
+
],
|
|
22264
|
+
"members": [
|
|
22265
|
+
{
|
|
22266
|
+
"kind": "field",
|
|
22267
|
+
"name": "scrollContainer",
|
|
22268
|
+
"type": {
|
|
22269
|
+
"text": "HTMLDivElement"
|
|
22270
|
+
},
|
|
22271
|
+
"privacy": "public",
|
|
22272
|
+
"description": "Reference to DOM element that scrolls the content",
|
|
22273
|
+
"inheritedFrom": {
|
|
22274
|
+
"name": "HorizontalScroll",
|
|
22275
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22398
22276
|
}
|
|
22399
22277
|
},
|
|
22400
22278
|
{
|
|
22401
|
-
"
|
|
22279
|
+
"kind": "field",
|
|
22280
|
+
"name": "content",
|
|
22402
22281
|
"type": {
|
|
22403
|
-
"text": "
|
|
22282
|
+
"text": "HTMLDivElement"
|
|
22404
22283
|
},
|
|
22405
|
-
"
|
|
22406
|
-
"
|
|
22284
|
+
"privacy": "public",
|
|
22285
|
+
"description": "Reference to DOM element that holds the slotted content",
|
|
22407
22286
|
"inheritedFrom": {
|
|
22408
|
-
"name": "
|
|
22409
|
-
"module": "src/
|
|
22287
|
+
"name": "HorizontalScroll",
|
|
22288
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22410
22289
|
}
|
|
22411
22290
|
},
|
|
22412
22291
|
{
|
|
22413
|
-
"
|
|
22292
|
+
"kind": "field",
|
|
22293
|
+
"name": "previousFlipperContainer",
|
|
22414
22294
|
"type": {
|
|
22415
|
-
"text": "
|
|
22295
|
+
"text": "HTMLDivElement"
|
|
22416
22296
|
},
|
|
22417
|
-
"
|
|
22418
|
-
"
|
|
22297
|
+
"privacy": "public",
|
|
22298
|
+
"description": "Reference to flipper to scroll to previous content",
|
|
22419
22299
|
"inheritedFrom": {
|
|
22420
|
-
"name": "
|
|
22421
|
-
"module": "src/
|
|
22300
|
+
"name": "HorizontalScroll",
|
|
22301
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22422
22302
|
}
|
|
22423
|
-
}
|
|
22424
|
-
],
|
|
22425
|
-
"members": [
|
|
22303
|
+
},
|
|
22426
22304
|
{
|
|
22427
22305
|
"kind": "field",
|
|
22428
|
-
"name": "
|
|
22306
|
+
"name": "nextFlipperContainer",
|
|
22429
22307
|
"type": {
|
|
22430
|
-
"text": "
|
|
22308
|
+
"text": "HTMLDivElement"
|
|
22431
22309
|
},
|
|
22310
|
+
"privacy": "public",
|
|
22311
|
+
"description": "Reference to flipper to scroll to the next content",
|
|
22432
22312
|
"inheritedFrom": {
|
|
22433
|
-
"name": "
|
|
22434
|
-
"module": "src/
|
|
22313
|
+
"name": "HorizontalScroll",
|
|
22314
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22435
22315
|
}
|
|
22436
22316
|
},
|
|
22437
22317
|
{
|
|
22438
22318
|
"kind": "field",
|
|
22439
|
-
"name": "
|
|
22319
|
+
"name": "speed",
|
|
22440
22320
|
"type": {
|
|
22441
|
-
"text": "
|
|
22321
|
+
"text": "number"
|
|
22442
22322
|
},
|
|
22323
|
+
"privacy": "public",
|
|
22324
|
+
"default": "600",
|
|
22325
|
+
"description": "Speed of scroll in pixels per second",
|
|
22443
22326
|
"inheritedFrom": {
|
|
22444
|
-
"name": "
|
|
22445
|
-
"module": "src/
|
|
22327
|
+
"name": "HorizontalScroll",
|
|
22328
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22446
22329
|
}
|
|
22447
22330
|
},
|
|
22448
22331
|
{
|
|
22449
22332
|
"kind": "field",
|
|
22450
|
-
"name": "
|
|
22333
|
+
"name": "duration",
|
|
22451
22334
|
"type": {
|
|
22452
22335
|
"text": "string"
|
|
22453
22336
|
},
|
|
22337
|
+
"privacy": "public",
|
|
22338
|
+
"description": "The CSS time value for the scroll transition duration. Overrides the `speed` attribute.",
|
|
22454
22339
|
"inheritedFrom": {
|
|
22455
|
-
"name": "
|
|
22456
|
-
"module": "src/
|
|
22340
|
+
"name": "HorizontalScroll",
|
|
22341
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22457
22342
|
}
|
|
22458
22343
|
},
|
|
22459
22344
|
{
|
|
22460
22345
|
"kind": "field",
|
|
22461
|
-
"name": "
|
|
22346
|
+
"name": "easing",
|
|
22462
22347
|
"type": {
|
|
22463
|
-
"text": "
|
|
22348
|
+
"text": "ScrollEasing"
|
|
22464
22349
|
},
|
|
22350
|
+
"privacy": "public",
|
|
22351
|
+
"default": "\"ease-in-out\"",
|
|
22352
|
+
"description": "Attribute used for easing, defaults to ease-in-out",
|
|
22465
22353
|
"inheritedFrom": {
|
|
22466
|
-
"name": "
|
|
22467
|
-
"module": "src/
|
|
22354
|
+
"name": "HorizontalScroll",
|
|
22355
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22468
22356
|
}
|
|
22469
22357
|
},
|
|
22470
22358
|
{
|
|
22471
22359
|
"kind": "field",
|
|
22472
|
-
"name": "
|
|
22360
|
+
"name": "flippersHiddenFromAT",
|
|
22473
22361
|
"type": {
|
|
22474
22362
|
"text": "boolean"
|
|
22475
22363
|
},
|
|
22364
|
+
"privacy": "public",
|
|
22476
22365
|
"default": "false",
|
|
22366
|
+
"description": "Attribute to hide flippers from assistive technology",
|
|
22477
22367
|
"inheritedFrom": {
|
|
22478
|
-
"name": "
|
|
22479
|
-
"module": "src/
|
|
22368
|
+
"name": "HorizontalScroll",
|
|
22369
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22480
22370
|
}
|
|
22481
22371
|
},
|
|
22482
22372
|
{
|
|
22483
22373
|
"kind": "field",
|
|
22484
|
-
"name": "
|
|
22374
|
+
"name": "scrollItems",
|
|
22485
22375
|
"type": {
|
|
22486
|
-
"text": "
|
|
22376
|
+
"text": "HTMLElement[]"
|
|
22487
22377
|
},
|
|
22378
|
+
"privacy": "public",
|
|
22379
|
+
"description": "The default slotted items placed in the scrolling container.",
|
|
22488
22380
|
"inheritedFrom": {
|
|
22489
|
-
"name": "
|
|
22490
|
-
"module": "src/
|
|
22381
|
+
"name": "HorizontalScroll",
|
|
22382
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22383
|
+
}
|
|
22384
|
+
},
|
|
22385
|
+
{
|
|
22386
|
+
"kind": "field",
|
|
22387
|
+
"name": "view",
|
|
22388
|
+
"type": {
|
|
22389
|
+
"text": "HorizontalScrollView"
|
|
22390
|
+
},
|
|
22391
|
+
"privacy": "public",
|
|
22392
|
+
"description": "View: default | mobile",
|
|
22393
|
+
"inheritedFrom": {
|
|
22394
|
+
"name": "HorizontalScroll",
|
|
22395
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22491
22396
|
}
|
|
22492
22397
|
},
|
|
22493
22398
|
{
|
|
22494
22399
|
"kind": "method",
|
|
22495
|
-
"name": "
|
|
22400
|
+
"name": "scrollItemsChanged",
|
|
22401
|
+
"privacy": "public",
|
|
22496
22402
|
"parameters": [
|
|
22497
22403
|
{
|
|
22498
|
-
"name": "
|
|
22404
|
+
"name": "previous",
|
|
22499
22405
|
"type": {
|
|
22500
|
-
"text": "
|
|
22501
|
-
}
|
|
22406
|
+
"text": "HTMLElement[]"
|
|
22407
|
+
},
|
|
22408
|
+
"description": "current scroll items"
|
|
22502
22409
|
},
|
|
22503
22410
|
{
|
|
22504
|
-
"name": "
|
|
22411
|
+
"name": "next",
|
|
22505
22412
|
"type": {
|
|
22506
|
-
"text": "
|
|
22507
|
-
}
|
|
22413
|
+
"text": "HTMLElement[]"
|
|
22414
|
+
},
|
|
22415
|
+
"description": "new updated scroll items"
|
|
22508
22416
|
}
|
|
22509
22417
|
],
|
|
22418
|
+
"description": "Updates scroll stops and flippers when scroll items change",
|
|
22510
22419
|
"inheritedFrom": {
|
|
22511
|
-
"name": "
|
|
22512
|
-
"module": "src/
|
|
22420
|
+
"name": "HorizontalScroll",
|
|
22421
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22513
22422
|
}
|
|
22514
22423
|
},
|
|
22515
22424
|
{
|
|
22516
|
-
"kind": "
|
|
22517
|
-
"name": "
|
|
22518
|
-
"
|
|
22519
|
-
|
|
22520
|
-
|
|
22521
|
-
|
|
22425
|
+
"kind": "method",
|
|
22426
|
+
"name": "fixScrollMisalign",
|
|
22427
|
+
"privacy": "private",
|
|
22428
|
+
"parameters": [
|
|
22429
|
+
{
|
|
22430
|
+
"name": "stops",
|
|
22431
|
+
"type": {
|
|
22432
|
+
"text": "number[]"
|
|
22433
|
+
}
|
|
22434
|
+
}
|
|
22435
|
+
],
|
|
22522
22436
|
"inheritedFrom": {
|
|
22523
|
-
"name": "
|
|
22524
|
-
"module": "src/
|
|
22437
|
+
"name": "HorizontalScroll",
|
|
22438
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22525
22439
|
}
|
|
22526
22440
|
},
|
|
22527
22441
|
{
|
|
22528
22442
|
"kind": "method",
|
|
22529
|
-
"name": "
|
|
22443
|
+
"name": "scrollInView",
|
|
22444
|
+
"privacy": "public",
|
|
22445
|
+
"return": {
|
|
22446
|
+
"type": {
|
|
22447
|
+
"text": "void"
|
|
22448
|
+
}
|
|
22449
|
+
},
|
|
22530
22450
|
"parameters": [
|
|
22531
22451
|
{
|
|
22532
|
-
"name": "
|
|
22452
|
+
"name": "item",
|
|
22533
22453
|
"type": {
|
|
22534
|
-
"text": "
|
|
22535
|
-
}
|
|
22454
|
+
"text": "HTMLElement | number"
|
|
22455
|
+
},
|
|
22456
|
+
"description": "An item index, a scroll item or a child of one of the scroll items"
|
|
22536
22457
|
},
|
|
22537
22458
|
{
|
|
22538
|
-
"name": "
|
|
22459
|
+
"name": "padding",
|
|
22460
|
+
"default": "0",
|
|
22539
22461
|
"type": {
|
|
22540
|
-
"text": "
|
|
22541
|
-
}
|
|
22462
|
+
"text": "number"
|
|
22463
|
+
},
|
|
22464
|
+
"description": "Padding of the viewport where the active item shouldn't be"
|
|
22465
|
+
},
|
|
22466
|
+
{
|
|
22467
|
+
"name": "rightPadding",
|
|
22468
|
+
"optional": true,
|
|
22469
|
+
"type": {
|
|
22470
|
+
"text": "number"
|
|
22471
|
+
},
|
|
22472
|
+
"description": "Optional right padding. Uses the padding if not defined"
|
|
22542
22473
|
}
|
|
22543
22474
|
],
|
|
22475
|
+
"description": "Function that can scroll an item into view.",
|
|
22544
22476
|
"inheritedFrom": {
|
|
22545
|
-
"name": "
|
|
22546
|
-
"module": "src/
|
|
22477
|
+
"name": "HorizontalScroll",
|
|
22478
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22547
22479
|
}
|
|
22548
22480
|
},
|
|
22549
22481
|
{
|
|
22550
|
-
"kind": "
|
|
22551
|
-
"name": "
|
|
22552
|
-
"
|
|
22553
|
-
|
|
22482
|
+
"kind": "method",
|
|
22483
|
+
"name": "keyupHandler",
|
|
22484
|
+
"privacy": "public",
|
|
22485
|
+
"parameters": [
|
|
22486
|
+
{
|
|
22487
|
+
"name": "e",
|
|
22488
|
+
"type": {
|
|
22489
|
+
"text": "Event & KeyboardEvent"
|
|
22490
|
+
},
|
|
22491
|
+
"description": "Keyboard event"
|
|
22492
|
+
}
|
|
22493
|
+
],
|
|
22494
|
+
"description": "Lets the user arrow left and right through the horizontal scroll",
|
|
22495
|
+
"inheritedFrom": {
|
|
22496
|
+
"name": "HorizontalScroll",
|
|
22497
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22498
|
+
}
|
|
22499
|
+
},
|
|
22500
|
+
{
|
|
22501
|
+
"kind": "method",
|
|
22502
|
+
"name": "scrollToPrevious",
|
|
22503
|
+
"privacy": "public",
|
|
22504
|
+
"return": {
|
|
22505
|
+
"type": {
|
|
22506
|
+
"text": "void"
|
|
22507
|
+
}
|
|
22554
22508
|
},
|
|
22555
|
-
"
|
|
22509
|
+
"description": "Scrolls items to the left",
|
|
22556
22510
|
"inheritedFrom": {
|
|
22557
|
-
"name": "
|
|
22558
|
-
"module": "src/
|
|
22511
|
+
"name": "HorizontalScroll",
|
|
22512
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22559
22513
|
}
|
|
22560
22514
|
},
|
|
22561
22515
|
{
|
|
22562
22516
|
"kind": "method",
|
|
22563
|
-
"name": "
|
|
22517
|
+
"name": "scrollToNext",
|
|
22518
|
+
"privacy": "public",
|
|
22519
|
+
"return": {
|
|
22520
|
+
"type": {
|
|
22521
|
+
"text": "void"
|
|
22522
|
+
}
|
|
22523
|
+
},
|
|
22524
|
+
"description": "Scrolls items to the right",
|
|
22525
|
+
"inheritedFrom": {
|
|
22526
|
+
"name": "HorizontalScroll",
|
|
22527
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22528
|
+
}
|
|
22529
|
+
},
|
|
22530
|
+
{
|
|
22531
|
+
"kind": "method",
|
|
22532
|
+
"name": "scrollToPosition",
|
|
22533
|
+
"privacy": "public",
|
|
22534
|
+
"return": {
|
|
22535
|
+
"type": {
|
|
22536
|
+
"text": "void"
|
|
22537
|
+
}
|
|
22538
|
+
},
|
|
22564
22539
|
"parameters": [
|
|
22565
22540
|
{
|
|
22566
|
-
"name": "
|
|
22541
|
+
"name": "newPosition",
|
|
22567
22542
|
"type": {
|
|
22568
|
-
"text": "
|
|
22569
|
-
}
|
|
22543
|
+
"text": "number"
|
|
22544
|
+
},
|
|
22545
|
+
"description": "position to scroll to"
|
|
22570
22546
|
},
|
|
22571
22547
|
{
|
|
22572
|
-
"name": "
|
|
22548
|
+
"name": "position",
|
|
22549
|
+
"default": "this.scrollContainer.scrollLeft",
|
|
22573
22550
|
"type": {
|
|
22574
|
-
"text": "
|
|
22575
|
-
}
|
|
22551
|
+
"text": "number"
|
|
22552
|
+
},
|
|
22553
|
+
"description": "starting position"
|
|
22576
22554
|
}
|
|
22577
22555
|
],
|
|
22556
|
+
"description": "Handles scrolling with easing",
|
|
22578
22557
|
"inheritedFrom": {
|
|
22579
|
-
"name": "
|
|
22580
|
-
"module": "src/
|
|
22558
|
+
"name": "HorizontalScroll",
|
|
22559
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22581
22560
|
}
|
|
22582
22561
|
},
|
|
22583
22562
|
{
|
|
22584
22563
|
"kind": "method",
|
|
22585
|
-
"name": "
|
|
22564
|
+
"name": "resized",
|
|
22565
|
+
"privacy": "public",
|
|
22566
|
+
"return": {
|
|
22567
|
+
"type": {
|
|
22568
|
+
"text": "void"
|
|
22569
|
+
}
|
|
22570
|
+
},
|
|
22571
|
+
"description": "Monitors resize event on the horizontal-scroll element",
|
|
22586
22572
|
"inheritedFrom": {
|
|
22587
|
-
"name": "
|
|
22588
|
-
"module": "src/
|
|
22573
|
+
"name": "HorizontalScroll",
|
|
22574
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22589
22575
|
}
|
|
22590
22576
|
},
|
|
22591
22577
|
{
|
|
22592
22578
|
"kind": "method",
|
|
22593
|
-
"name": "
|
|
22579
|
+
"name": "scrolled",
|
|
22594
22580
|
"privacy": "public",
|
|
22581
|
+
"return": {
|
|
22582
|
+
"type": {
|
|
22583
|
+
"text": "void"
|
|
22584
|
+
}
|
|
22585
|
+
},
|
|
22586
|
+
"description": "Monitors scrolled event on the content container",
|
|
22595
22587
|
"inheritedFrom": {
|
|
22596
|
-
"name": "
|
|
22597
|
-
"module": "src/
|
|
22588
|
+
"name": "HorizontalScroll",
|
|
22589
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22598
22590
|
}
|
|
22599
22591
|
},
|
|
22600
22592
|
{
|
|
@@ -22606,8 +22598,8 @@
|
|
|
22606
22598
|
"privacy": "private",
|
|
22607
22599
|
"default": "void 0",
|
|
22608
22600
|
"inheritedFrom": {
|
|
22609
|
-
"name": "
|
|
22610
|
-
"module": "src/
|
|
22601
|
+
"name": "HorizontalScroll",
|
|
22602
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22611
22603
|
}
|
|
22612
22604
|
},
|
|
22613
22605
|
{
|
|
@@ -22619,8 +22611,8 @@
|
|
|
22619
22611
|
"privacy": "public",
|
|
22620
22612
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
22621
22613
|
"inheritedFrom": {
|
|
22622
|
-
"name": "
|
|
22623
|
-
"module": "src/
|
|
22614
|
+
"name": "HorizontalScroll",
|
|
22615
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22624
22616
|
}
|
|
22625
22617
|
},
|
|
22626
22618
|
{
|
|
@@ -22632,8 +22624,8 @@
|
|
|
22632
22624
|
"privacy": "public",
|
|
22633
22625
|
"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.",
|
|
22634
22626
|
"inheritedFrom": {
|
|
22635
|
-
"name": "
|
|
22636
|
-
"module": "src/
|
|
22627
|
+
"name": "HorizontalScroll",
|
|
22628
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22637
22629
|
}
|
|
22638
22630
|
},
|
|
22639
22631
|
{
|
|
@@ -22646,8 +22638,8 @@
|
|
|
22646
22638
|
}
|
|
22647
22639
|
},
|
|
22648
22640
|
"inheritedFrom": {
|
|
22649
|
-
"name": "
|
|
22650
|
-
"module": "src/
|
|
22641
|
+
"name": "HorizontalScroll",
|
|
22642
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22651
22643
|
}
|
|
22652
22644
|
},
|
|
22653
22645
|
{
|
|
@@ -22659,8 +22651,8 @@
|
|
|
22659
22651
|
"privacy": "public",
|
|
22660
22652
|
"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.",
|
|
22661
22653
|
"inheritedFrom": {
|
|
22662
|
-
"name": "
|
|
22663
|
-
"module": "src/
|
|
22654
|
+
"name": "HorizontalScroll",
|
|
22655
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22664
22656
|
}
|
|
22665
22657
|
},
|
|
22666
22658
|
{
|
|
@@ -22673,8 +22665,8 @@
|
|
|
22673
22665
|
}
|
|
22674
22666
|
},
|
|
22675
22667
|
"inheritedFrom": {
|
|
22676
|
-
"name": "
|
|
22677
|
-
"module": "src/
|
|
22668
|
+
"name": "HorizontalScroll",
|
|
22669
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22678
22670
|
}
|
|
22679
22671
|
},
|
|
22680
22672
|
{
|
|
@@ -22704,65 +22696,73 @@
|
|
|
22704
22696
|
],
|
|
22705
22697
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
22706
22698
|
"inheritedFrom": {
|
|
22707
|
-
"name": "
|
|
22708
|
-
"module": "src/
|
|
22699
|
+
"name": "HorizontalScroll",
|
|
22700
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22701
|
+
}
|
|
22702
|
+
}
|
|
22703
|
+
],
|
|
22704
|
+
"events": [
|
|
22705
|
+
{
|
|
22706
|
+
"description": "Fires a custom 'scrollstart' event when scrolling",
|
|
22707
|
+
"name": "scrollstart",
|
|
22708
|
+
"inheritedFrom": {
|
|
22709
|
+
"name": "HorizontalScroll",
|
|
22710
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22711
|
+
}
|
|
22712
|
+
},
|
|
22713
|
+
{
|
|
22714
|
+
"description": "Fires a custom 'scrollend' event when scrolling stops",
|
|
22715
|
+
"name": "scrollend",
|
|
22716
|
+
"inheritedFrom": {
|
|
22717
|
+
"name": "HorizontalScroll",
|
|
22718
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22709
22719
|
}
|
|
22710
22720
|
}
|
|
22711
22721
|
]
|
|
22712
22722
|
},
|
|
22713
22723
|
{
|
|
22714
22724
|
"kind": "variable",
|
|
22715
|
-
"name": "
|
|
22716
|
-
"
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
"
|
|
22720
|
-
"name": "zeroIconShadowOptions",
|
|
22721
|
-
"default": "foundationIconShadowOptions"
|
|
22725
|
+
"name": "defaultHorizontalScrollZeroConfig",
|
|
22726
|
+
"type": {
|
|
22727
|
+
"text": "object"
|
|
22728
|
+
},
|
|
22729
|
+
"default": "{\n nextFlipper: html`\n <zero-flipper\n @click=\"${(x) => x.scrollToNext()}\"\n aria-hidden=\"${(x) => x.flippersHiddenFromAT}\"\n ></zero-flipper>\n `,\n previousFlipper: html`\n <zero-flipper\n @click=\"${(x) => x.scrollToPrevious()}\"\n direction=\"previous\"\n aria-hidden=\"${(x) => x.flippersHiddenFromAT}\"\n ></zero-flipper>\n `,\n}"
|
|
22722
22730
|
},
|
|
22723
22731
|
{
|
|
22724
22732
|
"kind": "variable",
|
|
22725
|
-
"name": "
|
|
22733
|
+
"name": "zeroHorizontalScroll"
|
|
22726
22734
|
}
|
|
22727
22735
|
],
|
|
22728
22736
|
"exports": [
|
|
22729
22737
|
{
|
|
22730
22738
|
"kind": "js",
|
|
22731
|
-
"name": "
|
|
22732
|
-
"declaration": {
|
|
22733
|
-
"name": "Icon",
|
|
22734
|
-
"module": "src/icon/icon.ts"
|
|
22735
|
-
}
|
|
22736
|
-
},
|
|
22737
|
-
{
|
|
22738
|
-
"kind": "js",
|
|
22739
|
-
"name": "defaultIconConfig",
|
|
22739
|
+
"name": "HorizontalScroll",
|
|
22740
22740
|
"declaration": {
|
|
22741
|
-
"name": "
|
|
22742
|
-
"module": "src/
|
|
22741
|
+
"name": "HorizontalScroll",
|
|
22742
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22743
22743
|
}
|
|
22744
22744
|
},
|
|
22745
22745
|
{
|
|
22746
22746
|
"kind": "js",
|
|
22747
|
-
"name": "
|
|
22747
|
+
"name": "defaultHorizontalScrollZeroConfig",
|
|
22748
22748
|
"declaration": {
|
|
22749
|
-
"name": "
|
|
22750
|
-
"module": "src/
|
|
22749
|
+
"name": "defaultHorizontalScrollZeroConfig",
|
|
22750
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22751
22751
|
}
|
|
22752
22752
|
},
|
|
22753
22753
|
{
|
|
22754
22754
|
"kind": "js",
|
|
22755
|
-
"name": "
|
|
22755
|
+
"name": "zeroHorizontalScroll",
|
|
22756
22756
|
"declaration": {
|
|
22757
|
-
"name": "
|
|
22758
|
-
"module": "src/
|
|
22757
|
+
"name": "zeroHorizontalScroll",
|
|
22758
|
+
"module": "src/horizontal-scroll/horizontal-scroll.ts"
|
|
22759
22759
|
}
|
|
22760
22760
|
}
|
|
22761
22761
|
]
|
|
22762
22762
|
},
|
|
22763
22763
|
{
|
|
22764
22764
|
"kind": "javascript-module",
|
|
22765
|
-
"path": "src/
|
|
22765
|
+
"path": "src/horizontal-scroll/index.ts",
|
|
22766
22766
|
"declarations": [],
|
|
22767
22767
|
"exports": [
|
|
22768
22768
|
{
|
|
@@ -22770,7 +22770,7 @@
|
|
|
22770
22770
|
"name": "*",
|
|
22771
22771
|
"declaration": {
|
|
22772
22772
|
"name": "*",
|
|
22773
|
-
"package": "./
|
|
22773
|
+
"package": "./horizontal-scroll"
|
|
22774
22774
|
}
|
|
22775
22775
|
},
|
|
22776
22776
|
{
|
|
@@ -22778,13 +22778,21 @@
|
|
|
22778
22778
|
"name": "*",
|
|
22779
22779
|
"declaration": {
|
|
22780
22780
|
"name": "*",
|
|
22781
|
-
"package": "./
|
|
22781
|
+
"package": "./horizontal-scroll.styles"
|
|
22782
22782
|
}
|
|
22783
|
-
}
|
|
22784
|
-
|
|
22785
|
-
|
|
22786
|
-
|
|
22787
|
-
|
|
22783
|
+
},
|
|
22784
|
+
{
|
|
22785
|
+
"kind": "js",
|
|
22786
|
+
"name": "*",
|
|
22787
|
+
"declaration": {
|
|
22788
|
+
"name": "*",
|
|
22789
|
+
"package": "./horizontal-scroll.template"
|
|
22790
|
+
}
|
|
22791
|
+
}
|
|
22792
|
+
]
|
|
22793
|
+
},
|
|
22794
|
+
{
|
|
22795
|
+
"kind": "javascript-module",
|
|
22788
22796
|
"path": "src/listbox/index.ts",
|
|
22789
22797
|
"declarations": [],
|
|
22790
22798
|
"exports": [
|
|
@@ -28550,159 +28558,612 @@
|
|
|
28550
28558
|
}
|
|
28551
28559
|
},
|
|
28552
28560
|
{
|
|
28553
|
-
"kind": "field",
|
|
28554
|
-
"name": "defaultSelected",
|
|
28561
|
+
"kind": "field",
|
|
28562
|
+
"name": "defaultSelected",
|
|
28563
|
+
"type": {
|
|
28564
|
+
"text": "boolean"
|
|
28565
|
+
},
|
|
28566
|
+
"privacy": "public",
|
|
28567
|
+
"default": "false",
|
|
28568
|
+
"description": "The defaultSelected state of the option.",
|
|
28569
|
+
"inheritedFrom": {
|
|
28570
|
+
"name": "ListboxOption",
|
|
28571
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28572
|
+
}
|
|
28573
|
+
},
|
|
28574
|
+
{
|
|
28575
|
+
"kind": "method",
|
|
28576
|
+
"name": "defaultSelectedChanged",
|
|
28577
|
+
"privacy": "protected",
|
|
28578
|
+
"return": {
|
|
28579
|
+
"type": {
|
|
28580
|
+
"text": "void"
|
|
28581
|
+
}
|
|
28582
|
+
},
|
|
28583
|
+
"inheritedFrom": {
|
|
28584
|
+
"name": "ListboxOption",
|
|
28585
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28586
|
+
}
|
|
28587
|
+
},
|
|
28588
|
+
{
|
|
28589
|
+
"kind": "field",
|
|
28590
|
+
"name": "disabled",
|
|
28591
|
+
"type": {
|
|
28592
|
+
"text": "boolean"
|
|
28593
|
+
},
|
|
28594
|
+
"privacy": "public",
|
|
28595
|
+
"description": "The disabled state of the option.",
|
|
28596
|
+
"inheritedFrom": {
|
|
28597
|
+
"name": "ListboxOption",
|
|
28598
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28599
|
+
}
|
|
28600
|
+
},
|
|
28601
|
+
{
|
|
28602
|
+
"kind": "method",
|
|
28603
|
+
"name": "disabledChanged",
|
|
28604
|
+
"privacy": "protected",
|
|
28605
|
+
"return": {
|
|
28606
|
+
"type": {
|
|
28607
|
+
"text": "void"
|
|
28608
|
+
}
|
|
28609
|
+
},
|
|
28610
|
+
"parameters": [
|
|
28611
|
+
{
|
|
28612
|
+
"name": "prev",
|
|
28613
|
+
"type": {
|
|
28614
|
+
"text": "boolean"
|
|
28615
|
+
}
|
|
28616
|
+
},
|
|
28617
|
+
{
|
|
28618
|
+
"name": "next",
|
|
28619
|
+
"type": {
|
|
28620
|
+
"text": "boolean"
|
|
28621
|
+
}
|
|
28622
|
+
}
|
|
28623
|
+
],
|
|
28624
|
+
"inheritedFrom": {
|
|
28625
|
+
"name": "ListboxOption",
|
|
28626
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28627
|
+
}
|
|
28628
|
+
},
|
|
28629
|
+
{
|
|
28630
|
+
"kind": "field",
|
|
28631
|
+
"name": "selectedAttribute",
|
|
28632
|
+
"type": {
|
|
28633
|
+
"text": "boolean"
|
|
28634
|
+
},
|
|
28635
|
+
"privacy": "public",
|
|
28636
|
+
"description": "The selected attribute value. This sets the initial selected value.",
|
|
28637
|
+
"inheritedFrom": {
|
|
28638
|
+
"name": "ListboxOption",
|
|
28639
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28640
|
+
}
|
|
28641
|
+
},
|
|
28642
|
+
{
|
|
28643
|
+
"kind": "method",
|
|
28644
|
+
"name": "selectedAttributeChanged",
|
|
28645
|
+
"privacy": "protected",
|
|
28646
|
+
"return": {
|
|
28647
|
+
"type": {
|
|
28648
|
+
"text": "void"
|
|
28649
|
+
}
|
|
28650
|
+
},
|
|
28651
|
+
"inheritedFrom": {
|
|
28652
|
+
"name": "ListboxOption",
|
|
28653
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28654
|
+
}
|
|
28655
|
+
},
|
|
28656
|
+
{
|
|
28657
|
+
"kind": "field",
|
|
28658
|
+
"name": "selected",
|
|
28659
|
+
"type": {
|
|
28660
|
+
"text": "boolean"
|
|
28661
|
+
},
|
|
28662
|
+
"privacy": "public",
|
|
28663
|
+
"description": "The checked state of the control.",
|
|
28664
|
+
"inheritedFrom": {
|
|
28665
|
+
"name": "ListboxOption",
|
|
28666
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28667
|
+
}
|
|
28668
|
+
},
|
|
28669
|
+
{
|
|
28670
|
+
"kind": "method",
|
|
28671
|
+
"name": "selectedChanged",
|
|
28672
|
+
"privacy": "protected",
|
|
28673
|
+
"return": {
|
|
28674
|
+
"type": {
|
|
28675
|
+
"text": "void"
|
|
28676
|
+
}
|
|
28677
|
+
},
|
|
28678
|
+
"inheritedFrom": {
|
|
28679
|
+
"name": "ListboxOption",
|
|
28680
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28681
|
+
}
|
|
28682
|
+
},
|
|
28683
|
+
{
|
|
28684
|
+
"kind": "field",
|
|
28685
|
+
"name": "dirtyValue",
|
|
28686
|
+
"type": {
|
|
28687
|
+
"text": "boolean"
|
|
28688
|
+
},
|
|
28689
|
+
"privacy": "public",
|
|
28690
|
+
"default": "false",
|
|
28691
|
+
"description": "Track whether the value has been changed from the initial value",
|
|
28692
|
+
"inheritedFrom": {
|
|
28693
|
+
"name": "ListboxOption",
|
|
28694
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28695
|
+
}
|
|
28696
|
+
},
|
|
28697
|
+
{
|
|
28698
|
+
"kind": "field",
|
|
28699
|
+
"name": "initialValue",
|
|
28700
|
+
"type": {
|
|
28701
|
+
"text": "string"
|
|
28702
|
+
},
|
|
28703
|
+
"privacy": "protected",
|
|
28704
|
+
"description": "The initial value of the option. This value sets the `value` property\nonly when the `value` property has not been explicitly set.",
|
|
28705
|
+
"inheritedFrom": {
|
|
28706
|
+
"name": "ListboxOption",
|
|
28707
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28708
|
+
}
|
|
28709
|
+
},
|
|
28710
|
+
{
|
|
28711
|
+
"kind": "method",
|
|
28712
|
+
"name": "initialValueChanged",
|
|
28713
|
+
"privacy": "public",
|
|
28714
|
+
"return": {
|
|
28715
|
+
"type": {
|
|
28716
|
+
"text": "void"
|
|
28717
|
+
}
|
|
28718
|
+
},
|
|
28719
|
+
"parameters": [
|
|
28720
|
+
{
|
|
28721
|
+
"name": "previous",
|
|
28722
|
+
"type": {
|
|
28723
|
+
"text": "string"
|
|
28724
|
+
}
|
|
28725
|
+
},
|
|
28726
|
+
{
|
|
28727
|
+
"name": "next",
|
|
28728
|
+
"type": {
|
|
28729
|
+
"text": "string"
|
|
28730
|
+
}
|
|
28731
|
+
}
|
|
28732
|
+
],
|
|
28733
|
+
"inheritedFrom": {
|
|
28734
|
+
"name": "ListboxOption",
|
|
28735
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28736
|
+
}
|
|
28737
|
+
},
|
|
28738
|
+
{
|
|
28739
|
+
"kind": "field",
|
|
28740
|
+
"name": "label",
|
|
28741
|
+
"privacy": "public",
|
|
28742
|
+
"inheritedFrom": {
|
|
28743
|
+
"name": "ListboxOption",
|
|
28744
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28745
|
+
}
|
|
28746
|
+
},
|
|
28747
|
+
{
|
|
28748
|
+
"kind": "field",
|
|
28749
|
+
"name": "text",
|
|
28750
|
+
"type": {
|
|
28751
|
+
"text": "string"
|
|
28752
|
+
},
|
|
28753
|
+
"privacy": "public",
|
|
28754
|
+
"inheritedFrom": {
|
|
28755
|
+
"name": "ListboxOption",
|
|
28756
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28757
|
+
}
|
|
28758
|
+
},
|
|
28759
|
+
{
|
|
28760
|
+
"kind": "field",
|
|
28761
|
+
"name": "value",
|
|
28762
|
+
"privacy": "public",
|
|
28763
|
+
"type": {
|
|
28764
|
+
"text": "string"
|
|
28765
|
+
},
|
|
28766
|
+
"inheritedFrom": {
|
|
28767
|
+
"name": "ListboxOption",
|
|
28768
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28769
|
+
}
|
|
28770
|
+
},
|
|
28771
|
+
{
|
|
28772
|
+
"kind": "field",
|
|
28773
|
+
"name": "form",
|
|
28774
|
+
"type": {
|
|
28775
|
+
"text": "HTMLFormElement | null"
|
|
28776
|
+
},
|
|
28777
|
+
"privacy": "public",
|
|
28778
|
+
"inheritedFrom": {
|
|
28779
|
+
"name": "ListboxOption",
|
|
28780
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28781
|
+
}
|
|
28782
|
+
},
|
|
28783
|
+
{
|
|
28784
|
+
"kind": "field",
|
|
28785
|
+
"name": "proxy",
|
|
28786
|
+
"default": "new Option(\n `${this.textContent}`,\n this.initialValue,\n this.defaultSelected,\n this.selected\n )",
|
|
28787
|
+
"inheritedFrom": {
|
|
28788
|
+
"name": "ListboxOption",
|
|
28789
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28790
|
+
}
|
|
28791
|
+
},
|
|
28792
|
+
{
|
|
28793
|
+
"kind": "field",
|
|
28794
|
+
"name": "_presentation",
|
|
28795
|
+
"type": {
|
|
28796
|
+
"text": "ComponentPresentation | null | undefined"
|
|
28797
|
+
},
|
|
28798
|
+
"privacy": "private",
|
|
28799
|
+
"default": "void 0",
|
|
28800
|
+
"inheritedFrom": {
|
|
28801
|
+
"name": "ListboxOption",
|
|
28802
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28803
|
+
}
|
|
28804
|
+
},
|
|
28805
|
+
{
|
|
28806
|
+
"kind": "field",
|
|
28807
|
+
"name": "$presentation",
|
|
28808
|
+
"type": {
|
|
28809
|
+
"text": "ComponentPresentation | null"
|
|
28810
|
+
},
|
|
28811
|
+
"privacy": "public",
|
|
28812
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
28813
|
+
"inheritedFrom": {
|
|
28814
|
+
"name": "ListboxOption",
|
|
28815
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28816
|
+
}
|
|
28817
|
+
},
|
|
28818
|
+
{
|
|
28819
|
+
"kind": "field",
|
|
28820
|
+
"name": "template",
|
|
28821
|
+
"type": {
|
|
28822
|
+
"text": "ElementViewTemplate | void | null"
|
|
28823
|
+
},
|
|
28824
|
+
"privacy": "public",
|
|
28825
|
+
"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.",
|
|
28826
|
+
"inheritedFrom": {
|
|
28827
|
+
"name": "ListboxOption",
|
|
28828
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28829
|
+
}
|
|
28830
|
+
},
|
|
28831
|
+
{
|
|
28832
|
+
"kind": "method",
|
|
28833
|
+
"name": "templateChanged",
|
|
28834
|
+
"privacy": "protected",
|
|
28835
|
+
"return": {
|
|
28836
|
+
"type": {
|
|
28837
|
+
"text": "void"
|
|
28838
|
+
}
|
|
28839
|
+
},
|
|
28840
|
+
"inheritedFrom": {
|
|
28841
|
+
"name": "ListboxOption",
|
|
28842
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28843
|
+
}
|
|
28844
|
+
},
|
|
28845
|
+
{
|
|
28846
|
+
"kind": "field",
|
|
28847
|
+
"name": "styles",
|
|
28848
|
+
"type": {
|
|
28849
|
+
"text": "ElementStyles | void | null"
|
|
28850
|
+
},
|
|
28851
|
+
"privacy": "public",
|
|
28852
|
+
"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.",
|
|
28853
|
+
"inheritedFrom": {
|
|
28854
|
+
"name": "ListboxOption",
|
|
28855
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28856
|
+
}
|
|
28857
|
+
},
|
|
28858
|
+
{
|
|
28859
|
+
"kind": "method",
|
|
28860
|
+
"name": "stylesChanged",
|
|
28861
|
+
"privacy": "protected",
|
|
28862
|
+
"return": {
|
|
28863
|
+
"type": {
|
|
28864
|
+
"text": "void"
|
|
28865
|
+
}
|
|
28866
|
+
},
|
|
28867
|
+
"inheritedFrom": {
|
|
28868
|
+
"name": "ListboxOption",
|
|
28869
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28870
|
+
}
|
|
28871
|
+
},
|
|
28872
|
+
{
|
|
28873
|
+
"kind": "method",
|
|
28874
|
+
"name": "compose",
|
|
28875
|
+
"privacy": "public",
|
|
28876
|
+
"static": true,
|
|
28877
|
+
"return": {
|
|
28878
|
+
"type": {
|
|
28879
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
28880
|
+
}
|
|
28881
|
+
},
|
|
28882
|
+
"parameters": [
|
|
28883
|
+
{
|
|
28884
|
+
"name": "this",
|
|
28885
|
+
"type": {
|
|
28886
|
+
"text": "K"
|
|
28887
|
+
}
|
|
28888
|
+
},
|
|
28889
|
+
{
|
|
28890
|
+
"name": "elementDefinition",
|
|
28891
|
+
"type": {
|
|
28892
|
+
"text": "T"
|
|
28893
|
+
},
|
|
28894
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
28895
|
+
}
|
|
28896
|
+
],
|
|
28897
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
28898
|
+
"inheritedFrom": {
|
|
28899
|
+
"name": "ListboxOption",
|
|
28900
|
+
"module": "src/listbox-option/listbox-option.ts"
|
|
28901
|
+
}
|
|
28902
|
+
}
|
|
28903
|
+
]
|
|
28904
|
+
},
|
|
28905
|
+
{
|
|
28906
|
+
"kind": "variable",
|
|
28907
|
+
"name": "zeroOptgroup"
|
|
28908
|
+
}
|
|
28909
|
+
],
|
|
28910
|
+
"exports": [
|
|
28911
|
+
{
|
|
28912
|
+
"kind": "js",
|
|
28913
|
+
"name": "Optgroup",
|
|
28914
|
+
"declaration": {
|
|
28915
|
+
"name": "Optgroup",
|
|
28916
|
+
"module": "src/optgroup/optgroup.ts"
|
|
28917
|
+
}
|
|
28918
|
+
},
|
|
28919
|
+
{
|
|
28920
|
+
"kind": "js",
|
|
28921
|
+
"name": "zeroOptgroup",
|
|
28922
|
+
"declaration": {
|
|
28923
|
+
"name": "zeroOptgroup",
|
|
28924
|
+
"module": "src/optgroup/optgroup.ts"
|
|
28925
|
+
}
|
|
28926
|
+
}
|
|
28927
|
+
]
|
|
28928
|
+
},
|
|
28929
|
+
{
|
|
28930
|
+
"kind": "javascript-module",
|
|
28931
|
+
"path": "src/overlays/index.ts",
|
|
28932
|
+
"declarations": [],
|
|
28933
|
+
"exports": [
|
|
28934
|
+
{
|
|
28935
|
+
"kind": "js",
|
|
28936
|
+
"name": "*",
|
|
28937
|
+
"declaration": {
|
|
28938
|
+
"name": "*",
|
|
28939
|
+
"package": "./system-health"
|
|
28940
|
+
}
|
|
28941
|
+
}
|
|
28942
|
+
]
|
|
28943
|
+
},
|
|
28944
|
+
{
|
|
28945
|
+
"kind": "javascript-module",
|
|
28946
|
+
"path": "src/pill/index.ts",
|
|
28947
|
+
"declarations": [],
|
|
28948
|
+
"exports": [
|
|
28949
|
+
{
|
|
28950
|
+
"kind": "js",
|
|
28951
|
+
"name": "*",
|
|
28952
|
+
"declaration": {
|
|
28953
|
+
"name": "*",
|
|
28954
|
+
"package": "./pill"
|
|
28955
|
+
}
|
|
28956
|
+
},
|
|
28957
|
+
{
|
|
28958
|
+
"kind": "js",
|
|
28959
|
+
"name": "*",
|
|
28960
|
+
"declaration": {
|
|
28961
|
+
"name": "*",
|
|
28962
|
+
"package": "./pill.styles"
|
|
28963
|
+
}
|
|
28964
|
+
},
|
|
28965
|
+
{
|
|
28966
|
+
"kind": "js",
|
|
28967
|
+
"name": "*",
|
|
28968
|
+
"declaration": {
|
|
28969
|
+
"name": "*",
|
|
28970
|
+
"package": "./pill.template"
|
|
28971
|
+
}
|
|
28972
|
+
}
|
|
28973
|
+
]
|
|
28974
|
+
},
|
|
28975
|
+
{
|
|
28976
|
+
"kind": "javascript-module",
|
|
28977
|
+
"path": "src/pill/pill.styles.ts",
|
|
28978
|
+
"declarations": [
|
|
28979
|
+
{
|
|
28980
|
+
"kind": "variable",
|
|
28981
|
+
"name": "zeroPillStyles",
|
|
28982
|
+
"type": {
|
|
28983
|
+
"text": "ElementStyles"
|
|
28984
|
+
},
|
|
28985
|
+
"default": "css`\n ${foundationPillStyles}\n :host {\n --pill-fill: ${neutralFillRest};\n --pill-fill-hover: ${neutralFillHover};\n --pill-foreground: ${neutralForegroundRest};\n }\n`"
|
|
28986
|
+
}
|
|
28987
|
+
],
|
|
28988
|
+
"exports": [
|
|
28989
|
+
{
|
|
28990
|
+
"kind": "js",
|
|
28991
|
+
"name": "zeroPillStyles",
|
|
28992
|
+
"declaration": {
|
|
28993
|
+
"name": "zeroPillStyles",
|
|
28994
|
+
"module": "src/pill/pill.styles.ts"
|
|
28995
|
+
}
|
|
28996
|
+
}
|
|
28997
|
+
]
|
|
28998
|
+
},
|
|
28999
|
+
{
|
|
29000
|
+
"kind": "javascript-module",
|
|
29001
|
+
"path": "src/pill/pill.template.ts",
|
|
29002
|
+
"declarations": [
|
|
29003
|
+
{
|
|
29004
|
+
"kind": "variable",
|
|
29005
|
+
"name": "zeroPillTemplate",
|
|
29006
|
+
"default": "foundationPillTemplate"
|
|
29007
|
+
}
|
|
29008
|
+
],
|
|
29009
|
+
"exports": [
|
|
29010
|
+
{
|
|
29011
|
+
"kind": "js",
|
|
29012
|
+
"name": "zeroPillTemplate",
|
|
29013
|
+
"declaration": {
|
|
29014
|
+
"name": "zeroPillTemplate",
|
|
29015
|
+
"module": "src/pill/pill.template.ts"
|
|
29016
|
+
}
|
|
29017
|
+
}
|
|
29018
|
+
]
|
|
29019
|
+
},
|
|
29020
|
+
{
|
|
29021
|
+
"kind": "javascript-module",
|
|
29022
|
+
"path": "src/pill/pill.ts",
|
|
29023
|
+
"declarations": [
|
|
29024
|
+
{
|
|
29025
|
+
"kind": "class",
|
|
29026
|
+
"description": "",
|
|
29027
|
+
"name": "Pill",
|
|
29028
|
+
"superclass": {
|
|
29029
|
+
"name": "FoundationPill",
|
|
29030
|
+
"package": "@genesislcap/foundation-ui"
|
|
29031
|
+
},
|
|
29032
|
+
"tagName": "%%prefix%%-pill",
|
|
29033
|
+
"customElement": true,
|
|
29034
|
+
"attributes": [
|
|
29035
|
+
{
|
|
29036
|
+
"name": "label",
|
|
28555
29037
|
"type": {
|
|
28556
|
-
"text": "
|
|
29038
|
+
"text": "string"
|
|
28557
29039
|
},
|
|
28558
|
-
"
|
|
28559
|
-
"
|
|
28560
|
-
"description": "
|
|
29040
|
+
"attribute": "label",
|
|
29041
|
+
"fieldName": "label",
|
|
29042
|
+
"description": "the name of the thing this pill represents, e.g. a filter field name",
|
|
28561
29043
|
"inheritedFrom": {
|
|
28562
|
-
"name": "
|
|
28563
|
-
"module": "src/
|
|
29044
|
+
"name": "Pill",
|
|
29045
|
+
"module": "src/pill/pill.ts"
|
|
28564
29046
|
}
|
|
28565
29047
|
},
|
|
28566
29048
|
{
|
|
28567
|
-
"
|
|
28568
|
-
"
|
|
28569
|
-
|
|
28570
|
-
"return": {
|
|
28571
|
-
"type": {
|
|
28572
|
-
"text": "void"
|
|
28573
|
-
}
|
|
29049
|
+
"name": "value",
|
|
29050
|
+
"type": {
|
|
29051
|
+
"text": "string"
|
|
28574
29052
|
},
|
|
29053
|
+
"attribute": "value",
|
|
29054
|
+
"fieldName": "value",
|
|
29055
|
+
"description": "the current value shown alongside the label, e.g. \"Cpty Desk: EQUITIES\"",
|
|
28575
29056
|
"inheritedFrom": {
|
|
28576
|
-
"name": "
|
|
28577
|
-
"module": "src/
|
|
29057
|
+
"name": "Pill",
|
|
29058
|
+
"module": "src/pill/pill.ts"
|
|
28578
29059
|
}
|
|
28579
29060
|
},
|
|
28580
29061
|
{
|
|
28581
|
-
"
|
|
28582
|
-
"name": "disabled",
|
|
29062
|
+
"name": "removable",
|
|
28583
29063
|
"type": {
|
|
28584
29064
|
"text": "boolean"
|
|
28585
29065
|
},
|
|
28586
|
-
"
|
|
28587
|
-
"
|
|
29066
|
+
"default": "true",
|
|
29067
|
+
"fieldName": "removable",
|
|
29068
|
+
"description": "whether the \"x\" remove control is shown",
|
|
28588
29069
|
"inheritedFrom": {
|
|
28589
|
-
"name": "
|
|
28590
|
-
"module": "src/
|
|
29070
|
+
"name": "Pill",
|
|
29071
|
+
"module": "src/pill/pill.ts"
|
|
28591
29072
|
}
|
|
28592
29073
|
},
|
|
28593
29074
|
{
|
|
28594
|
-
"
|
|
28595
|
-
"
|
|
28596
|
-
|
|
28597
|
-
"return": {
|
|
28598
|
-
"type": {
|
|
28599
|
-
"text": "void"
|
|
28600
|
-
}
|
|
29075
|
+
"name": "disabled",
|
|
29076
|
+
"type": {
|
|
29077
|
+
"text": "boolean"
|
|
28601
29078
|
},
|
|
28602
|
-
"
|
|
28603
|
-
|
|
28604
|
-
|
|
28605
|
-
"type": {
|
|
28606
|
-
"text": "boolean"
|
|
28607
|
-
}
|
|
28608
|
-
},
|
|
28609
|
-
{
|
|
28610
|
-
"name": "next",
|
|
28611
|
-
"type": {
|
|
28612
|
-
"text": "boolean"
|
|
28613
|
-
}
|
|
28614
|
-
}
|
|
28615
|
-
],
|
|
29079
|
+
"default": "false",
|
|
29080
|
+
"fieldName": "disabled",
|
|
29081
|
+
"description": "disables both the pill body and the remove control",
|
|
28616
29082
|
"inheritedFrom": {
|
|
28617
|
-
"name": "
|
|
28618
|
-
"module": "src/
|
|
29083
|
+
"name": "Pill",
|
|
29084
|
+
"module": "src/pill/pill.ts"
|
|
28619
29085
|
}
|
|
28620
29086
|
},
|
|
28621
29087
|
{
|
|
28622
|
-
"kind": "field",
|
|
28623
|
-
"name": "selectedAttribute",
|
|
28624
29088
|
"type": {
|
|
28625
29089
|
"text": "boolean"
|
|
28626
29090
|
},
|
|
28627
|
-
"
|
|
28628
|
-
"
|
|
29091
|
+
"default": "true",
|
|
29092
|
+
"attribute": "removable",
|
|
29093
|
+
"fieldName": "removable",
|
|
28629
29094
|
"inheritedFrom": {
|
|
28630
|
-
"name": "
|
|
28631
|
-
"module": "src/
|
|
29095
|
+
"name": "Pill",
|
|
29096
|
+
"module": "src/pill/pill.ts"
|
|
28632
29097
|
}
|
|
28633
|
-
}
|
|
29098
|
+
}
|
|
29099
|
+
],
|
|
29100
|
+
"members": [
|
|
28634
29101
|
{
|
|
28635
|
-
"kind": "
|
|
28636
|
-
"name": "
|
|
28637
|
-
"
|
|
28638
|
-
|
|
28639
|
-
"type": {
|
|
28640
|
-
"text": "void"
|
|
28641
|
-
}
|
|
29102
|
+
"kind": "field",
|
|
29103
|
+
"name": "label",
|
|
29104
|
+
"type": {
|
|
29105
|
+
"text": "string"
|
|
28642
29106
|
},
|
|
29107
|
+
"attribute": "label",
|
|
28643
29108
|
"inheritedFrom": {
|
|
28644
|
-
"name": "
|
|
28645
|
-
"module": "src/
|
|
29109
|
+
"name": "Pill",
|
|
29110
|
+
"module": "src/pill/pill.ts"
|
|
28646
29111
|
}
|
|
28647
29112
|
},
|
|
28648
29113
|
{
|
|
28649
29114
|
"kind": "field",
|
|
28650
|
-
"name": "
|
|
29115
|
+
"name": "value",
|
|
28651
29116
|
"type": {
|
|
28652
|
-
"text": "
|
|
29117
|
+
"text": "string"
|
|
28653
29118
|
},
|
|
28654
|
-
"
|
|
28655
|
-
"description": "The checked state of the control.",
|
|
29119
|
+
"attribute": "value",
|
|
28656
29120
|
"inheritedFrom": {
|
|
28657
|
-
"name": "
|
|
28658
|
-
"module": "src/
|
|
29121
|
+
"name": "Pill",
|
|
29122
|
+
"module": "src/pill/pill.ts"
|
|
28659
29123
|
}
|
|
28660
29124
|
},
|
|
28661
29125
|
{
|
|
28662
|
-
"kind": "
|
|
28663
|
-
"name": "
|
|
28664
|
-
"
|
|
28665
|
-
|
|
28666
|
-
"type": {
|
|
28667
|
-
"text": "void"
|
|
28668
|
-
}
|
|
29126
|
+
"kind": "field",
|
|
29127
|
+
"name": "removable",
|
|
29128
|
+
"type": {
|
|
29129
|
+
"text": "boolean"
|
|
28669
29130
|
},
|
|
29131
|
+
"default": "true",
|
|
29132
|
+
"attribute": "removable",
|
|
28670
29133
|
"inheritedFrom": {
|
|
28671
|
-
"name": "
|
|
28672
|
-
"module": "src/
|
|
29134
|
+
"name": "Pill",
|
|
29135
|
+
"module": "src/pill/pill.ts"
|
|
28673
29136
|
}
|
|
28674
29137
|
},
|
|
28675
29138
|
{
|
|
28676
29139
|
"kind": "field",
|
|
28677
|
-
"name": "
|
|
29140
|
+
"name": "disabled",
|
|
28678
29141
|
"type": {
|
|
28679
29142
|
"text": "boolean"
|
|
28680
29143
|
},
|
|
28681
|
-
"privacy": "public",
|
|
28682
29144
|
"default": "false",
|
|
28683
|
-
"
|
|
29145
|
+
"attribute": "disabled",
|
|
28684
29146
|
"inheritedFrom": {
|
|
28685
|
-
"name": "
|
|
28686
|
-
"module": "src/
|
|
29147
|
+
"name": "Pill",
|
|
29148
|
+
"module": "src/pill/pill.ts"
|
|
28687
29149
|
}
|
|
28688
29150
|
},
|
|
28689
29151
|
{
|
|
28690
|
-
"kind": "
|
|
28691
|
-
"name": "
|
|
28692
|
-
"
|
|
28693
|
-
"
|
|
29152
|
+
"kind": "method",
|
|
29153
|
+
"name": "handleBodyClick",
|
|
29154
|
+
"return": {
|
|
29155
|
+
"type": {
|
|
29156
|
+
"text": "void"
|
|
29157
|
+
}
|
|
28694
29158
|
},
|
|
28695
|
-
"privacy": "protected",
|
|
28696
|
-
"description": "The initial value of the option. This value sets the `value` property\nonly when the `value` property has not been explicitly set.",
|
|
28697
29159
|
"inheritedFrom": {
|
|
28698
|
-
"name": "
|
|
28699
|
-
"module": "src/
|
|
29160
|
+
"name": "Pill",
|
|
29161
|
+
"module": "src/pill/pill.ts"
|
|
28700
29162
|
}
|
|
28701
29163
|
},
|
|
28702
29164
|
{
|
|
28703
29165
|
"kind": "method",
|
|
28704
|
-
"name": "
|
|
28705
|
-
"privacy": "public",
|
|
29166
|
+
"name": "handleRemoveClick",
|
|
28706
29167
|
"return": {
|
|
28707
29168
|
"type": {
|
|
28708
29169
|
"text": "void"
|
|
@@ -28710,75 +29171,15 @@
|
|
|
28710
29171
|
},
|
|
28711
29172
|
"parameters": [
|
|
28712
29173
|
{
|
|
28713
|
-
"name": "
|
|
28714
|
-
"type": {
|
|
28715
|
-
"text": "string"
|
|
28716
|
-
}
|
|
28717
|
-
},
|
|
28718
|
-
{
|
|
28719
|
-
"name": "next",
|
|
29174
|
+
"name": "event",
|
|
28720
29175
|
"type": {
|
|
28721
|
-
"text": "
|
|
29176
|
+
"text": "Event"
|
|
28722
29177
|
}
|
|
28723
29178
|
}
|
|
28724
29179
|
],
|
|
28725
29180
|
"inheritedFrom": {
|
|
28726
|
-
"name": "
|
|
28727
|
-
"module": "src/
|
|
28728
|
-
}
|
|
28729
|
-
},
|
|
28730
|
-
{
|
|
28731
|
-
"kind": "field",
|
|
28732
|
-
"name": "label",
|
|
28733
|
-
"privacy": "public",
|
|
28734
|
-
"inheritedFrom": {
|
|
28735
|
-
"name": "ListboxOption",
|
|
28736
|
-
"module": "src/listbox-option/listbox-option.ts"
|
|
28737
|
-
}
|
|
28738
|
-
},
|
|
28739
|
-
{
|
|
28740
|
-
"kind": "field",
|
|
28741
|
-
"name": "text",
|
|
28742
|
-
"type": {
|
|
28743
|
-
"text": "string"
|
|
28744
|
-
},
|
|
28745
|
-
"privacy": "public",
|
|
28746
|
-
"inheritedFrom": {
|
|
28747
|
-
"name": "ListboxOption",
|
|
28748
|
-
"module": "src/listbox-option/listbox-option.ts"
|
|
28749
|
-
}
|
|
28750
|
-
},
|
|
28751
|
-
{
|
|
28752
|
-
"kind": "field",
|
|
28753
|
-
"name": "value",
|
|
28754
|
-
"privacy": "public",
|
|
28755
|
-
"type": {
|
|
28756
|
-
"text": "string"
|
|
28757
|
-
},
|
|
28758
|
-
"inheritedFrom": {
|
|
28759
|
-
"name": "ListboxOption",
|
|
28760
|
-
"module": "src/listbox-option/listbox-option.ts"
|
|
28761
|
-
}
|
|
28762
|
-
},
|
|
28763
|
-
{
|
|
28764
|
-
"kind": "field",
|
|
28765
|
-
"name": "form",
|
|
28766
|
-
"type": {
|
|
28767
|
-
"text": "HTMLFormElement | null"
|
|
28768
|
-
},
|
|
28769
|
-
"privacy": "public",
|
|
28770
|
-
"inheritedFrom": {
|
|
28771
|
-
"name": "ListboxOption",
|
|
28772
|
-
"module": "src/listbox-option/listbox-option.ts"
|
|
28773
|
-
}
|
|
28774
|
-
},
|
|
28775
|
-
{
|
|
28776
|
-
"kind": "field",
|
|
28777
|
-
"name": "proxy",
|
|
28778
|
-
"default": "new Option(\n `${this.textContent}`,\n this.initialValue,\n this.defaultSelected,\n this.selected\n )",
|
|
28779
|
-
"inheritedFrom": {
|
|
28780
|
-
"name": "ListboxOption",
|
|
28781
|
-
"module": "src/listbox-option/listbox-option.ts"
|
|
29181
|
+
"name": "Pill",
|
|
29182
|
+
"module": "src/pill/pill.ts"
|
|
28782
29183
|
}
|
|
28783
29184
|
},
|
|
28784
29185
|
{
|
|
@@ -28790,8 +29191,8 @@
|
|
|
28790
29191
|
"privacy": "private",
|
|
28791
29192
|
"default": "void 0",
|
|
28792
29193
|
"inheritedFrom": {
|
|
28793
|
-
"name": "
|
|
28794
|
-
"module": "src/
|
|
29194
|
+
"name": "FoundationElement",
|
|
29195
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28795
29196
|
}
|
|
28796
29197
|
},
|
|
28797
29198
|
{
|
|
@@ -28803,8 +29204,8 @@
|
|
|
28803
29204
|
"privacy": "public",
|
|
28804
29205
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
28805
29206
|
"inheritedFrom": {
|
|
28806
|
-
"name": "
|
|
28807
|
-
"module": "src/
|
|
29207
|
+
"name": "FoundationElement",
|
|
29208
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28808
29209
|
}
|
|
28809
29210
|
},
|
|
28810
29211
|
{
|
|
@@ -28816,8 +29217,8 @@
|
|
|
28816
29217
|
"privacy": "public",
|
|
28817
29218
|
"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.",
|
|
28818
29219
|
"inheritedFrom": {
|
|
28819
|
-
"name": "
|
|
28820
|
-
"module": "src/
|
|
29220
|
+
"name": "FoundationElement",
|
|
29221
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28821
29222
|
}
|
|
28822
29223
|
},
|
|
28823
29224
|
{
|
|
@@ -28830,8 +29231,8 @@
|
|
|
28830
29231
|
}
|
|
28831
29232
|
},
|
|
28832
29233
|
"inheritedFrom": {
|
|
28833
|
-
"name": "
|
|
28834
|
-
"module": "src/
|
|
29234
|
+
"name": "FoundationElement",
|
|
29235
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28835
29236
|
}
|
|
28836
29237
|
},
|
|
28837
29238
|
{
|
|
@@ -28843,8 +29244,8 @@
|
|
|
28843
29244
|
"privacy": "public",
|
|
28844
29245
|
"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.",
|
|
28845
29246
|
"inheritedFrom": {
|
|
28846
|
-
"name": "
|
|
28847
|
-
"module": "src/
|
|
29247
|
+
"name": "FoundationElement",
|
|
29248
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28848
29249
|
}
|
|
28849
29250
|
},
|
|
28850
29251
|
{
|
|
@@ -28857,8 +29258,8 @@
|
|
|
28857
29258
|
}
|
|
28858
29259
|
},
|
|
28859
29260
|
"inheritedFrom": {
|
|
28860
|
-
"name": "
|
|
28861
|
-
"module": "src/
|
|
29261
|
+
"name": "FoundationElement",
|
|
29262
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
28862
29263
|
}
|
|
28863
29264
|
},
|
|
28864
29265
|
{
|
|
@@ -28888,47 +29289,50 @@
|
|
|
28888
29289
|
],
|
|
28889
29290
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
28890
29291
|
"inheritedFrom": {
|
|
28891
|
-
"name": "
|
|
28892
|
-
"module": "src/
|
|
29292
|
+
"name": "FoundationElement",
|
|
29293
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
29294
|
+
}
|
|
29295
|
+
}
|
|
29296
|
+
],
|
|
29297
|
+
"events": [
|
|
29298
|
+
{
|
|
29299
|
+
"description": "Fired when the remove control is activated.",
|
|
29300
|
+
"name": "remove",
|
|
29301
|
+
"inheritedFrom": {
|
|
29302
|
+
"name": "Pill",
|
|
29303
|
+
"module": "src/pill/pill.ts"
|
|
29304
|
+
}
|
|
29305
|
+
},
|
|
29306
|
+
{
|
|
29307
|
+
"description": "Fired when the pill body (excluding the remove control) is activated.",
|
|
29308
|
+
"name": "pill-click",
|
|
29309
|
+
"inheritedFrom": {
|
|
29310
|
+
"name": "Pill",
|
|
29311
|
+
"module": "src/pill/pill.ts"
|
|
28893
29312
|
}
|
|
28894
29313
|
}
|
|
28895
29314
|
]
|
|
28896
29315
|
},
|
|
28897
29316
|
{
|
|
28898
29317
|
"kind": "variable",
|
|
28899
|
-
"name": "
|
|
29318
|
+
"name": "zeroPill"
|
|
28900
29319
|
}
|
|
28901
29320
|
],
|
|
28902
29321
|
"exports": [
|
|
28903
29322
|
{
|
|
28904
29323
|
"kind": "js",
|
|
28905
|
-
"name": "
|
|
29324
|
+
"name": "Pill",
|
|
28906
29325
|
"declaration": {
|
|
28907
|
-
"name": "
|
|
28908
|
-
"module": "src/
|
|
29326
|
+
"name": "Pill",
|
|
29327
|
+
"module": "src/pill/pill.ts"
|
|
28909
29328
|
}
|
|
28910
29329
|
},
|
|
28911
29330
|
{
|
|
28912
29331
|
"kind": "js",
|
|
28913
|
-
"name": "
|
|
28914
|
-
"declaration": {
|
|
28915
|
-
"name": "zeroOptgroup",
|
|
28916
|
-
"module": "src/optgroup/optgroup.ts"
|
|
28917
|
-
}
|
|
28918
|
-
}
|
|
28919
|
-
]
|
|
28920
|
-
},
|
|
28921
|
-
{
|
|
28922
|
-
"kind": "javascript-module",
|
|
28923
|
-
"path": "src/overlays/index.ts",
|
|
28924
|
-
"declarations": [],
|
|
28925
|
-
"exports": [
|
|
28926
|
-
{
|
|
28927
|
-
"kind": "js",
|
|
28928
|
-
"name": "*",
|
|
29332
|
+
"name": "zeroPill",
|
|
28929
29333
|
"declaration": {
|
|
28930
|
-
"name": "
|
|
28931
|
-
"
|
|
29334
|
+
"name": "zeroPill",
|
|
29335
|
+
"module": "src/pill/pill.ts"
|
|
28932
29336
|
}
|
|
28933
29337
|
}
|
|
28934
29338
|
]
|