@genesislcap/foundation-zero 14.138.1 → 14.139.1

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.
Files changed (32) hide show
  1. package/dist/custom-elements.json +2081 -435
  2. package/dist/dts/base-components.d.ts +12 -0
  3. package/dist/dts/base-components.d.ts.map +1 -1
  4. package/dist/dts/index.d.ts +1 -0
  5. package/dist/dts/index.d.ts.map +1 -1
  6. package/dist/dts/search-bar/index.d.ts +7 -0
  7. package/dist/dts/search-bar/index.d.ts.map +1 -0
  8. package/dist/dts/search-bar/search-bar-combobox.d.ts +15 -0
  9. package/dist/dts/search-bar/search-bar-combobox.d.ts.map +1 -0
  10. package/dist/dts/search-bar/search-bar-combobox.styles.d.ts +4 -0
  11. package/dist/dts/search-bar/search-bar-combobox.styles.d.ts.map +1 -0
  12. package/dist/dts/search-bar/search-bar-combobox.template.d.ts +5 -0
  13. package/dist/dts/search-bar/search-bar-combobox.template.d.ts.map +1 -0
  14. package/dist/dts/search-bar/search-bar.d.ts +26 -0
  15. package/dist/dts/search-bar/search-bar.d.ts.map +1 -0
  16. package/dist/dts/search-bar/search-bar.stories.d.ts +5 -0
  17. package/dist/dts/search-bar/search-bar.stories.d.ts.map +1 -0
  18. package/dist/dts/search-bar/search-bar.styles.d.ts +2 -0
  19. package/dist/dts/search-bar/search-bar.styles.d.ts.map +1 -0
  20. package/dist/dts/search-bar/search-bar.template.d.ts +3 -0
  21. package/dist/dts/search-bar/search-bar.template.d.ts.map +1 -0
  22. package/dist/esm/base-components.js +4 -0
  23. package/dist/esm/index.js +1 -0
  24. package/dist/esm/search-bar/index.js +6 -0
  25. package/dist/esm/search-bar/search-bar-combobox.js +17 -0
  26. package/dist/esm/search-bar/search-bar-combobox.styles.js +46 -0
  27. package/dist/esm/search-bar/search-bar-combobox.template.js +2 -0
  28. package/dist/esm/search-bar/search-bar.js +21 -0
  29. package/dist/esm/search-bar/search-bar.stories.js +45 -0
  30. package/dist/esm/search-bar/search-bar.styles.js +5 -0
  31. package/dist/esm/search-bar/search-bar.template.js +5 -0
  32. package/package.json +7 -7
@@ -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 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 zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\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 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 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}"
16
16
  }
17
17
  ],
18
18
  "exports": [
@@ -450,6 +450,14 @@
450
450
  "package": "./radio-group"
451
451
  }
452
452
  },
453
+ {
454
+ "kind": "js",
455
+ "name": "*",
456
+ "declaration": {
457
+ "name": "*",
458
+ "package": "./search-bar"
459
+ }
460
+ },
453
461
  {
454
462
  "kind": "js",
455
463
  "name": "*",
@@ -669,37 +677,6 @@
669
677
  }
670
678
  ]
671
679
  },
672
- {
673
- "kind": "javascript-module",
674
- "path": "src/_config/index.ts",
675
- "declarations": [],
676
- "exports": [
677
- {
678
- "kind": "js",
679
- "name": "*",
680
- "declaration": {
681
- "name": "*",
682
- "package": "./styles"
683
- }
684
- },
685
- {
686
- "kind": "js",
687
- "name": "*",
688
- "declaration": {
689
- "name": "*",
690
- "package": "./tokens"
691
- }
692
- },
693
- {
694
- "kind": "js",
695
- "name": "*",
696
- "declaration": {
697
- "name": "*",
698
- "package": "./values"
699
- }
700
- }
701
- ]
702
- },
703
680
  {
704
681
  "kind": "javascript-module",
705
682
  "path": "src/_common/colors.hex.ts",
@@ -839,6 +816,37 @@
839
816
  }
840
817
  ]
841
818
  },
819
+ {
820
+ "kind": "javascript-module",
821
+ "path": "src/_config/index.ts",
822
+ "declarations": [],
823
+ "exports": [
824
+ {
825
+ "kind": "js",
826
+ "name": "*",
827
+ "declaration": {
828
+ "name": "*",
829
+ "package": "./styles"
830
+ }
831
+ },
832
+ {
833
+ "kind": "js",
834
+ "name": "*",
835
+ "declaration": {
836
+ "name": "*",
837
+ "package": "./tokens"
838
+ }
839
+ },
840
+ {
841
+ "kind": "js",
842
+ "name": "*",
843
+ "declaration": {
844
+ "name": "*",
845
+ "package": "./values"
846
+ }
847
+ }
848
+ ]
849
+ },
842
850
  {
843
851
  "kind": "javascript-module",
844
852
  "path": "src/accordion/accordion.stories.ts",
@@ -4542,7 +4550,7 @@
4542
4550
  },
4543
4551
  {
4544
4552
  "kind": "javascript-module",
4545
- "path": "src/banner/banner.stories.ts",
4553
+ "path": "src/badge/badge.stories.ts",
4546
4554
  "declarations": [
4547
4555
  {
4548
4556
  "kind": "variable",
@@ -4550,15 +4558,15 @@
4550
4558
  "type": {
4551
4559
  "text": "Meta"
4552
4560
  },
4553
- "default": "{\n title: 'Banner',\n component: 'zero-banner',\n}"
4561
+ "default": "{\n title: 'Badge',\n component: 'zero-badge',\n}"
4554
4562
  },
4555
4563
  {
4556
4564
  "kind": "variable",
4557
- "name": "Primary",
4565
+ "name": "All",
4558
4566
  "type": {
4559
4567
  "text": "StoryObj"
4560
4568
  },
4561
- "default": "{\n args: {\n notifyText: 'Lorem ipsum dolor sit amet consectetur adipisicing elit.',\n bannerText: ` Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet.\n Lorem, ipsum dolor.`,\n actionIgnoreActionText: 'Ignore',\n actionDemoText: 'Diagnose',\n actionButtonAppearance: 'lightweight',\n },\n argTypes: {\n actionButtonAppearance: {\n control: 'select',\n options: [...FastAppearanceValues, ...ZeroAppearanceValues],\n },\n },\n render: ({\n bannerText,\n notifyText,\n actionButtonAppearance,\n actionIgnoreActionText,\n actionDemoText,\n }) => html`\n <div style=\"display: flex; flex-direction: column;\">\n <h5>Banner with slots</h5>\n <zero-banner id=\"banner\">\n <div slot=\"content\">${bannerText}</div>\n <zero-button slot=\"action\" @click=\"${ignoreClick}\" appearance=\"${actionButtonAppearance}\">\n ${actionIgnoreActionText}\n </zero-button>\n <zero-button slot=\"action\" appearance=\"${actionButtonAppearance}\">\n ${actionDemoText}\n </zero-button>\n </zero-banner>\n <h5>Empty Banner</h5>\n <zero-banner></zero-banner>\n <div id=\"zero-banner\" style=\"width: 100%;\">\n <zero-button @click=\"${() => showNotify(notifyText)}\">\n Show Zero Banner - Notification Structure\n </zero-button>\n </div>\n </div>\n `,\n}"
4569
+ "default": "{\n args: {\n fillColors,\n fontColors,\n badgeText: 'Rapid Badge',\n },\n ...StylesMapperTemplate,\n}"
4562
4570
  }
4563
4571
  ],
4564
4572
  "exports": [
@@ -4567,157 +4575,234 @@
4567
4575
  "name": "default",
4568
4576
  "declaration": {
4569
4577
  "name": "meta",
4570
- "module": "src/banner/banner.stories.ts"
4578
+ "module": "src/badge/badge.stories.ts"
4571
4579
  }
4572
4580
  },
4573
4581
  {
4574
4582
  "kind": "js",
4575
- "name": "Primary",
4583
+ "name": "All",
4576
4584
  "declaration": {
4577
- "name": "Primary",
4578
- "module": "src/banner/banner.stories.ts"
4585
+ "name": "All",
4586
+ "module": "src/badge/badge.stories.ts"
4579
4587
  }
4580
4588
  }
4581
4589
  ]
4582
4590
  },
4583
4591
  {
4584
4592
  "kind": "javascript-module",
4585
- "path": "src/banner/banner.styles.ts",
4593
+ "path": "src/badge/badge.styles.ts",
4586
4594
  "declarations": [
4587
4595
  {
4588
- "kind": "variable",
4589
- "name": "zeroBannerStyles",
4590
- "default": "css`\n ${foundationBannerStyles}\n .banner {\n background-color: ${neutralLayer1};\n }\n`"
4596
+ "kind": "function",
4597
+ "name": "zeroBadgeStyles",
4598
+ "return": {
4599
+ "type": {
4600
+ "text": "ElementStyles"
4601
+ }
4602
+ },
4603
+ "parameters": [
4604
+ {
4605
+ "name": "context",
4606
+ "type": {
4607
+ "text": "ElementDefinitionContext"
4608
+ }
4609
+ },
4610
+ {
4611
+ "name": "definition",
4612
+ "type": {
4613
+ "text": "FoundationElementDefinition"
4614
+ }
4615
+ }
4616
+ ]
4591
4617
  }
4592
4618
  ],
4593
4619
  "exports": [
4594
4620
  {
4595
4621
  "kind": "js",
4596
- "name": "zeroBannerStyles",
4622
+ "name": "zeroBadgeStyles",
4597
4623
  "declaration": {
4598
- "name": "zeroBannerStyles",
4599
- "module": "src/banner/banner.styles.ts"
4624
+ "name": "zeroBadgeStyles",
4625
+ "module": "src/badge/badge.styles.ts"
4600
4626
  }
4601
4627
  }
4602
4628
  ]
4603
4629
  },
4604
4630
  {
4605
4631
  "kind": "javascript-module",
4606
- "path": "src/banner/banner.ts",
4632
+ "path": "src/badge/badge.template.ts",
4607
4633
  "declarations": [
4608
4634
  {
4609
- "kind": "variable",
4610
- "name": "zeroBannerShadowOptions",
4611
- "default": "foundationBannerShadowOptions"
4612
- },
4635
+ "kind": "function",
4636
+ "name": "zeroBadgeTemplate",
4637
+ "return": {
4638
+ "type": {
4639
+ "text": "ViewTemplate<Badge>"
4640
+ }
4641
+ },
4642
+ "parameters": [
4643
+ {
4644
+ "name": "context",
4645
+ "type": {
4646
+ "text": "ElementDefinitionContext"
4647
+ }
4648
+ },
4649
+ {
4650
+ "name": "definition",
4651
+ "type": {
4652
+ "text": "FoundationElementDefinition"
4653
+ }
4654
+ }
4655
+ ]
4656
+ }
4657
+ ],
4658
+ "exports": [
4659
+ {
4660
+ "kind": "js",
4661
+ "name": "zeroBadgeTemplate",
4662
+ "declaration": {
4663
+ "name": "zeroBadgeTemplate",
4664
+ "module": "src/badge/badge.template.ts"
4665
+ }
4666
+ }
4667
+ ]
4668
+ },
4669
+ {
4670
+ "kind": "javascript-module",
4671
+ "path": "src/badge/badge.ts",
4672
+ "declarations": [
4613
4673
  {
4614
4674
  "kind": "class",
4615
4675
  "description": "",
4616
- "name": "Banner",
4676
+ "name": "Badge",
4617
4677
  "superclass": {
4618
- "name": "FoundationBanner",
4678
+ "name": "FoundationBadge",
4619
4679
  "package": "@genesislcap/foundation-ui"
4620
4680
  },
4621
- "tagName": "%%prefix%%-banner",
4681
+ "tagName": "%%prefix%%-badge",
4622
4682
  "customElement": true,
4623
- "members": [
4683
+ "attributes": [
4624
4684
  {
4625
- "kind": "field",
4626
- "name": "banner",
4685
+ "name": "fill",
4627
4686
  "type": {
4628
- "text": "HTMLElement"
4687
+ "text": "string"
4629
4688
  },
4630
- "privacy": "public",
4689
+ "description": "Indicates the badge should have a filled style.",
4690
+ "fieldName": "fill",
4631
4691
  "inheritedFrom": {
4632
- "name": "Banner",
4633
- "module": "src/banner/banner.ts"
4692
+ "name": "Badge",
4693
+ "module": "src/badge/badge.ts"
4634
4694
  }
4635
4695
  },
4636
4696
  {
4637
- "kind": "field",
4638
- "name": "dismissAnimation",
4697
+ "name": "color",
4639
4698
  "type": {
4640
- "text": "'banner-delete' | ''"
4699
+ "text": "string"
4641
4700
  },
4642
- "default": "''",
4701
+ "description": "Indicates the badge should have a filled style.",
4702
+ "fieldName": "color",
4643
4703
  "inheritedFrom": {
4644
- "name": "Banner",
4645
- "module": "src/banner/banner.ts"
4704
+ "name": "Badge",
4705
+ "module": "src/badge/badge.ts"
4646
4706
  }
4647
4707
  },
4648
4708
  {
4649
- "kind": "field",
4650
- "name": "notification",
4651
4709
  "type": {
4652
- "text": "NotificationStructure"
4710
+ "text": "boolean"
4653
4711
  },
4712
+ "description": "Indicates the element should be circular",
4713
+ "fieldName": "circular",
4654
4714
  "inheritedFrom": {
4655
- "name": "Banner",
4656
- "module": "src/banner/banner.ts"
4715
+ "name": "Badge",
4716
+ "module": "src/badge/badge.ts"
4657
4717
  }
4658
- },
4718
+ }
4719
+ ],
4720
+ "members": [
4659
4721
  {
4660
- "kind": "method",
4661
- "name": "dismiss",
4662
- "privacy": "public",
4663
- "return": {
4664
- "type": {
4665
- "text": "Promise<void>"
4666
- }
4722
+ "kind": "field",
4723
+ "name": "fill",
4724
+ "type": {
4725
+ "text": "string"
4667
4726
  },
4668
- "description": "Dismiss the Banner from display.",
4669
- "inheritedFrom": {
4670
- "name": "Banner",
4671
- "module": "src/banner/banner.ts"
4672
- }
4673
- },
4674
- {
4675
- "kind": "method",
4676
- "name": "dismissNotification",
4677
4727
  "privacy": "public",
4678
- "description": "Dismiss the Banner (NotificationStructure) from display.",
4728
+ "description": "Indicates the badge should have a filled style.",
4679
4729
  "inheritedFrom": {
4680
- "name": "Banner",
4681
- "module": "src/banner/banner.ts"
4730
+ "name": "Badge",
4731
+ "module": "src/badge/badge.ts"
4682
4732
  }
4683
4733
  },
4684
4734
  {
4685
4735
  "kind": "field",
4686
- "name": "_presentation",
4736
+ "name": "color",
4687
4737
  "type": {
4688
- "text": "ComponentPresentation | null | undefined"
4738
+ "text": "string"
4689
4739
  },
4690
- "privacy": "private",
4691
- "default": "void 0",
4740
+ "privacy": "public",
4741
+ "description": "Indicates the badge should have a filled style.",
4692
4742
  "inheritedFrom": {
4693
- "name": "FoundationElement",
4694
- "module": "src/foundation-element/foundation-element.ts"
4743
+ "name": "Badge",
4744
+ "module": "src/badge/badge.ts"
4695
4745
  }
4696
4746
  },
4697
4747
  {
4698
4748
  "kind": "field",
4699
- "name": "$presentation",
4749
+ "name": "circular",
4700
4750
  "type": {
4701
- "text": "ComponentPresentation | null"
4751
+ "text": "boolean"
4702
4752
  },
4703
4753
  "privacy": "public",
4704
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
4754
+ "description": "Indicates the element should be circular",
4705
4755
  "inheritedFrom": {
4706
- "name": "FoundationElement",
4707
- "module": "src/foundation-element/foundation-element.ts"
4756
+ "name": "Badge",
4757
+ "module": "src/badge/badge.ts"
4708
4758
  }
4709
4759
  },
4710
4760
  {
4711
4761
  "kind": "field",
4712
- "name": "template",
4762
+ "name": "generateBadgeStyle",
4763
+ "privacy": "public",
4764
+ "inheritedFrom": {
4765
+ "name": "Badge",
4766
+ "module": "src/badge/badge.ts"
4767
+ }
4768
+ },
4769
+ {
4770
+ "kind": "field",
4771
+ "name": "_presentation",
4772
+ "type": {
4773
+ "text": "ComponentPresentation | null | undefined"
4774
+ },
4775
+ "privacy": "private",
4776
+ "default": "void 0",
4777
+ "inheritedFrom": {
4778
+ "name": "Badge",
4779
+ "module": "src/badge/badge.ts"
4780
+ }
4781
+ },
4782
+ {
4783
+ "kind": "field",
4784
+ "name": "$presentation",
4785
+ "type": {
4786
+ "text": "ComponentPresentation | null"
4787
+ },
4788
+ "privacy": "public",
4789
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
4790
+ "inheritedFrom": {
4791
+ "name": "Badge",
4792
+ "module": "src/badge/badge.ts"
4793
+ }
4794
+ },
4795
+ {
4796
+ "kind": "field",
4797
+ "name": "template",
4713
4798
  "type": {
4714
4799
  "text": "ElementViewTemplate | void | null"
4715
4800
  },
4716
4801
  "privacy": "public",
4717
4802
  "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.",
4718
4803
  "inheritedFrom": {
4719
- "name": "FoundationElement",
4720
- "module": "src/foundation-element/foundation-element.ts"
4804
+ "name": "Badge",
4805
+ "module": "src/badge/badge.ts"
4721
4806
  }
4722
4807
  },
4723
4808
  {
@@ -4730,8 +4815,8 @@
4730
4815
  }
4731
4816
  },
4732
4817
  "inheritedFrom": {
4733
- "name": "FoundationElement",
4734
- "module": "src/foundation-element/foundation-element.ts"
4818
+ "name": "Badge",
4819
+ "module": "src/badge/badge.ts"
4735
4820
  }
4736
4821
  },
4737
4822
  {
@@ -4743,8 +4828,8 @@
4743
4828
  "privacy": "public",
4744
4829
  "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.",
4745
4830
  "inheritedFrom": {
4746
- "name": "FoundationElement",
4747
- "module": "src/foundation-element/foundation-element.ts"
4831
+ "name": "Badge",
4832
+ "module": "src/badge/badge.ts"
4748
4833
  }
4749
4834
  },
4750
4835
  {
@@ -4757,8 +4842,8 @@
4757
4842
  }
4758
4843
  },
4759
4844
  "inheritedFrom": {
4760
- "name": "FoundationElement",
4761
- "module": "src/foundation-element/foundation-element.ts"
4845
+ "name": "Badge",
4846
+ "module": "src/badge/badge.ts"
4762
4847
  }
4763
4848
  },
4764
4849
  {
@@ -4788,57 +4873,47 @@
4788
4873
  ],
4789
4874
  "description": "Defines an element registry function with a set of element definition defaults.",
4790
4875
  "inheritedFrom": {
4791
- "name": "FoundationElement",
4792
- "module": "src/foundation-element/foundation-element.ts"
4876
+ "name": "Badge",
4877
+ "module": "src/badge/badge.ts"
4793
4878
  }
4794
4879
  }
4795
4880
  ]
4796
4881
  },
4797
4882
  {
4798
4883
  "kind": "variable",
4799
- "name": "zeroBanner",
4800
- "description": "The Zero Banner",
4801
- "privacy": "public"
4884
+ "name": "zeroBadge"
4802
4885
  }
4803
4886
  ],
4804
4887
  "exports": [
4805
4888
  {
4806
4889
  "kind": "js",
4807
- "name": "zeroBannerShadowOptions",
4808
- "declaration": {
4809
- "name": "zeroBannerShadowOptions",
4810
- "module": "src/banner/banner.ts"
4811
- }
4812
- },
4813
- {
4814
- "kind": "js",
4815
- "name": "Banner",
4890
+ "name": "Badge",
4816
4891
  "declaration": {
4817
- "name": "Banner",
4818
- "module": "src/banner/banner.ts"
4892
+ "name": "Badge",
4893
+ "module": "src/badge/badge.ts"
4819
4894
  }
4820
4895
  },
4821
4896
  {
4822
4897
  "kind": "js",
4823
- "name": "zeroBanner",
4898
+ "name": "zeroBadge",
4824
4899
  "declaration": {
4825
- "name": "zeroBanner",
4826
- "module": "src/banner/banner.ts"
4900
+ "name": "zeroBadge",
4901
+ "module": "src/badge/badge.ts"
4827
4902
  }
4828
4903
  }
4829
4904
  ]
4830
4905
  },
4831
4906
  {
4832
4907
  "kind": "javascript-module",
4833
- "path": "src/banner/index.ts",
4908
+ "path": "src/badge/index.ts",
4834
4909
  "declarations": [],
4835
4910
  "exports": [
4836
4911
  {
4837
4912
  "kind": "js",
4838
- "name": "zeroBannerTemplate",
4913
+ "name": "*",
4839
4914
  "declaration": {
4840
- "name": "foundationBannerTemplate",
4841
- "package": "@genesislcap/foundation-ui"
4915
+ "name": "*",
4916
+ "package": "./badge"
4842
4917
  }
4843
4918
  },
4844
4919
  {
@@ -4846,7 +4921,7 @@
4846
4921
  "name": "*",
4847
4922
  "declaration": {
4848
4923
  "name": "*",
4849
- "package": "./banner"
4924
+ "package": "./badge.styles"
4850
4925
  }
4851
4926
  },
4852
4927
  {
@@ -4854,14 +4929,14 @@
4854
4929
  "name": "*",
4855
4930
  "declaration": {
4856
4931
  "name": "*",
4857
- "package": "./banner.styles"
4932
+ "package": "./badge.template"
4858
4933
  }
4859
4934
  }
4860
4935
  ]
4861
4936
  },
4862
4937
  {
4863
4938
  "kind": "javascript-module",
4864
- "path": "src/badge/badge.stories.ts",
4939
+ "path": "src/banner/banner.stories.ts",
4865
4940
  "declarations": [
4866
4941
  {
4867
4942
  "kind": "variable",
@@ -4869,15 +4944,15 @@
4869
4944
  "type": {
4870
4945
  "text": "Meta"
4871
4946
  },
4872
- "default": "{\n title: 'Badge',\n component: 'zero-badge',\n}"
4947
+ "default": "{\n title: 'Banner',\n component: 'zero-banner',\n}"
4873
4948
  },
4874
4949
  {
4875
4950
  "kind": "variable",
4876
- "name": "All",
4951
+ "name": "Primary",
4877
4952
  "type": {
4878
4953
  "text": "StoryObj"
4879
4954
  },
4880
- "default": "{\n args: {\n fillColors,\n fontColors,\n badgeText: 'Rapid Badge',\n },\n ...StylesMapperTemplate,\n}"
4955
+ "default": "{\n args: {\n notifyText: 'Lorem ipsum dolor sit amet consectetur adipisicing elit.',\n bannerText: ` Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet.\n Lorem, ipsum dolor.`,\n actionIgnoreActionText: 'Ignore',\n actionDemoText: 'Diagnose',\n actionButtonAppearance: 'lightweight',\n },\n argTypes: {\n actionButtonAppearance: {\n control: 'select',\n options: [...FastAppearanceValues, ...ZeroAppearanceValues],\n },\n },\n render: ({\n bannerText,\n notifyText,\n actionButtonAppearance,\n actionIgnoreActionText,\n actionDemoText,\n }) => html`\n <div style=\"display: flex; flex-direction: column;\">\n <h5>Banner with slots</h5>\n <zero-banner id=\"banner\">\n <div slot=\"content\">${bannerText}</div>\n <zero-button slot=\"action\" @click=\"${ignoreClick}\" appearance=\"${actionButtonAppearance}\">\n ${actionIgnoreActionText}\n </zero-button>\n <zero-button slot=\"action\" appearance=\"${actionButtonAppearance}\">\n ${actionDemoText}\n </zero-button>\n </zero-banner>\n <h5>Empty Banner</h5>\n <zero-banner></zero-banner>\n <div id=\"zero-banner\" style=\"width: 100%;\">\n <zero-button @click=\"${() => showNotify(notifyText)}\">\n Show Zero Banner - Notification Structure\n </zero-button>\n </div>\n </div>\n `,\n}"
4881
4956
  }
4882
4957
  ],
4883
4958
  "exports": [
@@ -4886,195 +4961,118 @@
4886
4961
  "name": "default",
4887
4962
  "declaration": {
4888
4963
  "name": "meta",
4889
- "module": "src/badge/badge.stories.ts"
4964
+ "module": "src/banner/banner.stories.ts"
4890
4965
  }
4891
4966
  },
4892
4967
  {
4893
4968
  "kind": "js",
4894
- "name": "All",
4969
+ "name": "Primary",
4895
4970
  "declaration": {
4896
- "name": "All",
4897
- "module": "src/badge/badge.stories.ts"
4971
+ "name": "Primary",
4972
+ "module": "src/banner/banner.stories.ts"
4898
4973
  }
4899
4974
  }
4900
4975
  ]
4901
4976
  },
4902
4977
  {
4903
4978
  "kind": "javascript-module",
4904
- "path": "src/badge/badge.styles.ts",
4979
+ "path": "src/banner/banner.styles.ts",
4905
4980
  "declarations": [
4906
4981
  {
4907
- "kind": "function",
4908
- "name": "zeroBadgeStyles",
4909
- "return": {
4910
- "type": {
4911
- "text": "ElementStyles"
4912
- }
4913
- },
4914
- "parameters": [
4915
- {
4916
- "name": "context",
4917
- "type": {
4918
- "text": "ElementDefinitionContext"
4919
- }
4920
- },
4921
- {
4922
- "name": "definition",
4923
- "type": {
4924
- "text": "FoundationElementDefinition"
4925
- }
4926
- }
4927
- ]
4982
+ "kind": "variable",
4983
+ "name": "zeroBannerStyles",
4984
+ "default": "css`\n ${foundationBannerStyles}\n .banner {\n background-color: ${neutralLayer1};\n }\n`"
4928
4985
  }
4929
4986
  ],
4930
4987
  "exports": [
4931
4988
  {
4932
4989
  "kind": "js",
4933
- "name": "zeroBadgeStyles",
4990
+ "name": "zeroBannerStyles",
4934
4991
  "declaration": {
4935
- "name": "zeroBadgeStyles",
4936
- "module": "src/badge/badge.styles.ts"
4992
+ "name": "zeroBannerStyles",
4993
+ "module": "src/banner/banner.styles.ts"
4937
4994
  }
4938
4995
  }
4939
4996
  ]
4940
4997
  },
4941
4998
  {
4942
4999
  "kind": "javascript-module",
4943
- "path": "src/badge/badge.template.ts",
5000
+ "path": "src/banner/banner.ts",
4944
5001
  "declarations": [
4945
5002
  {
4946
- "kind": "function",
4947
- "name": "zeroBadgeTemplate",
4948
- "return": {
4949
- "type": {
4950
- "text": "ViewTemplate<Badge>"
4951
- }
4952
- },
4953
- "parameters": [
4954
- {
4955
- "name": "context",
4956
- "type": {
4957
- "text": "ElementDefinitionContext"
4958
- }
4959
- },
4960
- {
4961
- "name": "definition",
4962
- "type": {
4963
- "text": "FoundationElementDefinition"
4964
- }
4965
- }
4966
- ]
4967
- }
4968
- ],
4969
- "exports": [
4970
- {
4971
- "kind": "js",
4972
- "name": "zeroBadgeTemplate",
4973
- "declaration": {
4974
- "name": "zeroBadgeTemplate",
4975
- "module": "src/badge/badge.template.ts"
4976
- }
4977
- }
4978
- ]
4979
- },
4980
- {
4981
- "kind": "javascript-module",
4982
- "path": "src/badge/badge.ts",
4983
- "declarations": [
5003
+ "kind": "variable",
5004
+ "name": "zeroBannerShadowOptions",
5005
+ "default": "foundationBannerShadowOptions"
5006
+ },
4984
5007
  {
4985
5008
  "kind": "class",
4986
5009
  "description": "",
4987
- "name": "Badge",
5010
+ "name": "Banner",
4988
5011
  "superclass": {
4989
- "name": "FoundationBadge",
5012
+ "name": "FoundationBanner",
4990
5013
  "package": "@genesislcap/foundation-ui"
4991
5014
  },
4992
- "tagName": "%%prefix%%-badge",
5015
+ "tagName": "%%prefix%%-banner",
4993
5016
  "customElement": true,
4994
- "attributes": [
5017
+ "members": [
4995
5018
  {
4996
- "name": "fill",
5019
+ "kind": "field",
5020
+ "name": "banner",
4997
5021
  "type": {
4998
- "text": "string"
5022
+ "text": "HTMLElement"
4999
5023
  },
5000
- "description": "Indicates the badge should have a filled style.",
5001
- "fieldName": "fill",
5024
+ "privacy": "public",
5002
5025
  "inheritedFrom": {
5003
- "name": "Badge",
5004
- "module": "src/badge/badge.ts"
5026
+ "name": "Banner",
5027
+ "module": "src/banner/banner.ts"
5005
5028
  }
5006
5029
  },
5007
5030
  {
5008
- "name": "color",
5031
+ "kind": "field",
5032
+ "name": "dismissAnimation",
5009
5033
  "type": {
5010
- "text": "string"
5034
+ "text": "'banner-delete' | ''"
5011
5035
  },
5012
- "description": "Indicates the badge should have a filled style.",
5013
- "fieldName": "color",
5036
+ "default": "''",
5014
5037
  "inheritedFrom": {
5015
- "name": "Badge",
5016
- "module": "src/badge/badge.ts"
5038
+ "name": "Banner",
5039
+ "module": "src/banner/banner.ts"
5017
5040
  }
5018
5041
  },
5019
5042
  {
5043
+ "kind": "field",
5044
+ "name": "notification",
5020
5045
  "type": {
5021
- "text": "boolean"
5046
+ "text": "NotificationStructure"
5022
5047
  },
5023
- "description": "Indicates the element should be circular",
5024
- "fieldName": "circular",
5025
5048
  "inheritedFrom": {
5026
- "name": "Badge",
5027
- "module": "src/badge/badge.ts"
5049
+ "name": "Banner",
5050
+ "module": "src/banner/banner.ts"
5028
5051
  }
5029
- }
5030
- ],
5031
- "members": [
5052
+ },
5032
5053
  {
5033
- "kind": "field",
5034
- "name": "fill",
5035
- "type": {
5036
- "text": "string"
5054
+ "kind": "method",
5055
+ "name": "dismiss",
5056
+ "privacy": "public",
5057
+ "return": {
5058
+ "type": {
5059
+ "text": "Promise<void>"
5060
+ }
5037
5061
  },
5062
+ "description": "Dismiss the Banner from display.",
5063
+ "inheritedFrom": {
5064
+ "name": "Banner",
5065
+ "module": "src/banner/banner.ts"
5066
+ }
5067
+ },
5068
+ {
5069
+ "kind": "method",
5070
+ "name": "dismissNotification",
5038
5071
  "privacy": "public",
5039
- "description": "Indicates the badge should have a filled style.",
5072
+ "description": "Dismiss the Banner (NotificationStructure) from display.",
5040
5073
  "inheritedFrom": {
5041
- "name": "Badge",
5042
- "module": "src/badge/badge.ts"
5043
- }
5044
- },
5045
- {
5046
- "kind": "field",
5047
- "name": "color",
5048
- "type": {
5049
- "text": "string"
5050
- },
5051
- "privacy": "public",
5052
- "description": "Indicates the badge should have a filled style.",
5053
- "inheritedFrom": {
5054
- "name": "Badge",
5055
- "module": "src/badge/badge.ts"
5056
- }
5057
- },
5058
- {
5059
- "kind": "field",
5060
- "name": "circular",
5061
- "type": {
5062
- "text": "boolean"
5063
- },
5064
- "privacy": "public",
5065
- "description": "Indicates the element should be circular",
5066
- "inheritedFrom": {
5067
- "name": "Badge",
5068
- "module": "src/badge/badge.ts"
5069
- }
5070
- },
5071
- {
5072
- "kind": "field",
5073
- "name": "generateBadgeStyle",
5074
- "privacy": "public",
5075
- "inheritedFrom": {
5076
- "name": "Badge",
5077
- "module": "src/badge/badge.ts"
5074
+ "name": "Banner",
5075
+ "module": "src/banner/banner.ts"
5078
5076
  }
5079
5077
  },
5080
5078
  {
@@ -5086,8 +5084,8 @@
5086
5084
  "privacy": "private",
5087
5085
  "default": "void 0",
5088
5086
  "inheritedFrom": {
5089
- "name": "Badge",
5090
- "module": "src/badge/badge.ts"
5087
+ "name": "FoundationElement",
5088
+ "module": "src/foundation-element/foundation-element.ts"
5091
5089
  }
5092
5090
  },
5093
5091
  {
@@ -5099,8 +5097,8 @@
5099
5097
  "privacy": "public",
5100
5098
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
5101
5099
  "inheritedFrom": {
5102
- "name": "Badge",
5103
- "module": "src/badge/badge.ts"
5100
+ "name": "FoundationElement",
5101
+ "module": "src/foundation-element/foundation-element.ts"
5104
5102
  }
5105
5103
  },
5106
5104
  {
@@ -5112,8 +5110,8 @@
5112
5110
  "privacy": "public",
5113
5111
  "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.",
5114
5112
  "inheritedFrom": {
5115
- "name": "Badge",
5116
- "module": "src/badge/badge.ts"
5113
+ "name": "FoundationElement",
5114
+ "module": "src/foundation-element/foundation-element.ts"
5117
5115
  }
5118
5116
  },
5119
5117
  {
@@ -5126,8 +5124,8 @@
5126
5124
  }
5127
5125
  },
5128
5126
  "inheritedFrom": {
5129
- "name": "Badge",
5130
- "module": "src/badge/badge.ts"
5127
+ "name": "FoundationElement",
5128
+ "module": "src/foundation-element/foundation-element.ts"
5131
5129
  }
5132
5130
  },
5133
5131
  {
@@ -5139,8 +5137,8 @@
5139
5137
  "privacy": "public",
5140
5138
  "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.",
5141
5139
  "inheritedFrom": {
5142
- "name": "Badge",
5143
- "module": "src/badge/badge.ts"
5140
+ "name": "FoundationElement",
5141
+ "module": "src/foundation-element/foundation-element.ts"
5144
5142
  }
5145
5143
  },
5146
5144
  {
@@ -5153,8 +5151,8 @@
5153
5151
  }
5154
5152
  },
5155
5153
  "inheritedFrom": {
5156
- "name": "Badge",
5157
- "module": "src/badge/badge.ts"
5154
+ "name": "FoundationElement",
5155
+ "module": "src/foundation-element/foundation-element.ts"
5158
5156
  }
5159
5157
  },
5160
5158
  {
@@ -5184,47 +5182,57 @@
5184
5182
  ],
5185
5183
  "description": "Defines an element registry function with a set of element definition defaults.",
5186
5184
  "inheritedFrom": {
5187
- "name": "Badge",
5188
- "module": "src/badge/badge.ts"
5185
+ "name": "FoundationElement",
5186
+ "module": "src/foundation-element/foundation-element.ts"
5189
5187
  }
5190
5188
  }
5191
5189
  ]
5192
5190
  },
5193
5191
  {
5194
5192
  "kind": "variable",
5195
- "name": "zeroBadge"
5193
+ "name": "zeroBanner",
5194
+ "description": "The Zero Banner",
5195
+ "privacy": "public"
5196
5196
  }
5197
5197
  ],
5198
5198
  "exports": [
5199
5199
  {
5200
5200
  "kind": "js",
5201
- "name": "Badge",
5201
+ "name": "zeroBannerShadowOptions",
5202
5202
  "declaration": {
5203
- "name": "Badge",
5204
- "module": "src/badge/badge.ts"
5203
+ "name": "zeroBannerShadowOptions",
5204
+ "module": "src/banner/banner.ts"
5205
5205
  }
5206
5206
  },
5207
5207
  {
5208
5208
  "kind": "js",
5209
- "name": "zeroBadge",
5209
+ "name": "Banner",
5210
5210
  "declaration": {
5211
- "name": "zeroBadge",
5212
- "module": "src/badge/badge.ts"
5211
+ "name": "Banner",
5212
+ "module": "src/banner/banner.ts"
5213
+ }
5214
+ },
5215
+ {
5216
+ "kind": "js",
5217
+ "name": "zeroBanner",
5218
+ "declaration": {
5219
+ "name": "zeroBanner",
5220
+ "module": "src/banner/banner.ts"
5213
5221
  }
5214
5222
  }
5215
5223
  ]
5216
5224
  },
5217
5225
  {
5218
5226
  "kind": "javascript-module",
5219
- "path": "src/badge/index.ts",
5227
+ "path": "src/banner/index.ts",
5220
5228
  "declarations": [],
5221
5229
  "exports": [
5222
5230
  {
5223
5231
  "kind": "js",
5224
- "name": "*",
5232
+ "name": "zeroBannerTemplate",
5225
5233
  "declaration": {
5226
- "name": "*",
5227
- "package": "./badge"
5234
+ "name": "foundationBannerTemplate",
5235
+ "package": "@genesislcap/foundation-ui"
5228
5236
  }
5229
5237
  },
5230
5238
  {
@@ -5232,7 +5240,7 @@
5232
5240
  "name": "*",
5233
5241
  "declaration": {
5234
5242
  "name": "*",
5235
- "package": "./badge.styles"
5243
+ "package": "./banner"
5236
5244
  }
5237
5245
  },
5238
5246
  {
@@ -5240,7 +5248,7 @@
5240
5248
  "name": "*",
5241
5249
  "declaration": {
5242
5250
  "name": "*",
5243
- "package": "./badge.template"
5251
+ "package": "./banner.styles"
5244
5252
  }
5245
5253
  }
5246
5254
  ]
@@ -24199,218 +24207,1806 @@
24199
24207
  "type": {
24200
24208
  "text": "Orientation | \"horizontal\" | \"vertical\""
24201
24209
  },
24202
- "privacy": "public",
24203
- "description": "The orientation of the group",
24210
+ "privacy": "public",
24211
+ "description": "The orientation of the group",
24212
+ "inheritedFrom": {
24213
+ "name": "RadioGroup",
24214
+ "module": "src/radio-group/radio-group.ts"
24215
+ }
24216
+ },
24217
+ {
24218
+ "kind": "field",
24219
+ "name": "childItems",
24220
+ "type": {
24221
+ "text": "HTMLElement[]"
24222
+ },
24223
+ "privacy": "public",
24224
+ "inheritedFrom": {
24225
+ "name": "RadioGroup",
24226
+ "module": "src/radio-group/radio-group.ts"
24227
+ }
24228
+ },
24229
+ {
24230
+ "kind": "method",
24231
+ "name": "slottedRadioButtonsChanged",
24232
+ "privacy": "private",
24233
+ "return": {
24234
+ "type": {
24235
+ "text": "void"
24236
+ }
24237
+ },
24238
+ "parameters": [
24239
+ {
24240
+ "name": "oldValue",
24241
+ "type": {
24242
+ "text": "unknown"
24243
+ }
24244
+ },
24245
+ {
24246
+ "name": "newValue",
24247
+ "type": {
24248
+ "text": "HTMLElement[]"
24249
+ }
24250
+ }
24251
+ ],
24252
+ "inheritedFrom": {
24253
+ "name": "RadioGroup",
24254
+ "module": "src/radio-group/radio-group.ts"
24255
+ }
24256
+ },
24257
+ {
24258
+ "kind": "field",
24259
+ "name": "selectedRadio",
24260
+ "type": {
24261
+ "text": "HTMLInputElement | null"
24262
+ },
24263
+ "privacy": "private",
24264
+ "inheritedFrom": {
24265
+ "name": "RadioGroup",
24266
+ "module": "src/radio-group/radio-group.ts"
24267
+ }
24268
+ },
24269
+ {
24270
+ "kind": "field",
24271
+ "name": "focusedRadio",
24272
+ "type": {
24273
+ "text": "HTMLInputElement | null"
24274
+ },
24275
+ "privacy": "private",
24276
+ "inheritedFrom": {
24277
+ "name": "RadioGroup",
24278
+ "module": "src/radio-group/radio-group.ts"
24279
+ }
24280
+ },
24281
+ {
24282
+ "kind": "field",
24283
+ "name": "direction",
24284
+ "type": {
24285
+ "text": "Direction"
24286
+ },
24287
+ "privacy": "private",
24288
+ "inheritedFrom": {
24289
+ "name": "RadioGroup",
24290
+ "module": "src/radio-group/radio-group.ts"
24291
+ }
24292
+ },
24293
+ {
24294
+ "kind": "field",
24295
+ "name": "parentToolbar",
24296
+ "type": {
24297
+ "text": "HTMLElement | null"
24298
+ },
24299
+ "privacy": "private",
24300
+ "inheritedFrom": {
24301
+ "name": "RadioGroup",
24302
+ "module": "src/radio-group/radio-group.ts"
24303
+ }
24304
+ },
24305
+ {
24306
+ "kind": "field",
24307
+ "name": "isInsideToolbar",
24308
+ "type": {
24309
+ "text": "boolean"
24310
+ },
24311
+ "privacy": "private",
24312
+ "inheritedFrom": {
24313
+ "name": "RadioGroup",
24314
+ "module": "src/radio-group/radio-group.ts"
24315
+ }
24316
+ },
24317
+ {
24318
+ "kind": "field",
24319
+ "name": "isInsideFoundationToolbar",
24320
+ "type": {
24321
+ "text": "boolean"
24322
+ },
24323
+ "privacy": "private",
24324
+ "inheritedFrom": {
24325
+ "name": "RadioGroup",
24326
+ "module": "src/radio-group/radio-group.ts"
24327
+ }
24328
+ },
24329
+ {
24330
+ "kind": "method",
24331
+ "name": "setupRadioButtons",
24332
+ "privacy": "private",
24333
+ "return": {
24334
+ "type": {
24335
+ "text": "void"
24336
+ }
24337
+ },
24338
+ "inheritedFrom": {
24339
+ "name": "RadioGroup",
24340
+ "module": "src/radio-group/radio-group.ts"
24341
+ }
24342
+ },
24343
+ {
24344
+ "kind": "field",
24345
+ "name": "radioChangeHandler",
24346
+ "privacy": "private",
24347
+ "inheritedFrom": {
24348
+ "name": "RadioGroup",
24349
+ "module": "src/radio-group/radio-group.ts"
24350
+ }
24351
+ },
24352
+ {
24353
+ "kind": "field",
24354
+ "name": "moveToRadioByIndex",
24355
+ "privacy": "private",
24356
+ "inheritedFrom": {
24357
+ "name": "RadioGroup",
24358
+ "module": "src/radio-group/radio-group.ts"
24359
+ }
24360
+ },
24361
+ {
24362
+ "kind": "field",
24363
+ "name": "moveRightOffGroup",
24364
+ "privacy": "private",
24365
+ "inheritedFrom": {
24366
+ "name": "RadioGroup",
24367
+ "module": "src/radio-group/radio-group.ts"
24368
+ }
24369
+ },
24370
+ {
24371
+ "kind": "field",
24372
+ "name": "moveLeftOffGroup",
24373
+ "privacy": "private",
24374
+ "inheritedFrom": {
24375
+ "name": "RadioGroup",
24376
+ "module": "src/radio-group/radio-group.ts"
24377
+ }
24378
+ },
24379
+ {
24380
+ "kind": "field",
24381
+ "name": "shouldMoveOffGroupToTheRight",
24382
+ "privacy": "private",
24383
+ "inheritedFrom": {
24384
+ "name": "RadioGroup",
24385
+ "module": "src/radio-group/radio-group.ts"
24386
+ }
24387
+ },
24388
+ {
24389
+ "kind": "field",
24390
+ "name": "shouldMoveOffGroupToTheLeft",
24391
+ "privacy": "private",
24392
+ "inheritedFrom": {
24393
+ "name": "RadioGroup",
24394
+ "module": "src/radio-group/radio-group.ts"
24395
+ }
24396
+ },
24397
+ {
24398
+ "kind": "field",
24399
+ "name": "checkFocusedRadio",
24400
+ "privacy": "private",
24401
+ "inheritedFrom": {
24402
+ "name": "RadioGroup",
24403
+ "module": "src/radio-group/radio-group.ts"
24404
+ }
24405
+ },
24406
+ {
24407
+ "kind": "field",
24408
+ "name": "moveRight",
24409
+ "privacy": "private",
24410
+ "inheritedFrom": {
24411
+ "name": "RadioGroup",
24412
+ "module": "src/radio-group/radio-group.ts"
24413
+ }
24414
+ },
24415
+ {
24416
+ "kind": "field",
24417
+ "name": "moveLeft",
24418
+ "privacy": "private",
24419
+ "inheritedFrom": {
24420
+ "name": "RadioGroup",
24421
+ "module": "src/radio-group/radio-group.ts"
24422
+ }
24423
+ },
24424
+ {
24425
+ "kind": "field",
24426
+ "name": "_presentation",
24427
+ "type": {
24428
+ "text": "ComponentPresentation | null | undefined"
24429
+ },
24430
+ "privacy": "private",
24431
+ "default": "void 0",
24432
+ "inheritedFrom": {
24433
+ "name": "RadioGroup",
24434
+ "module": "src/radio-group/radio-group.ts"
24435
+ }
24436
+ },
24437
+ {
24438
+ "kind": "field",
24439
+ "name": "$presentation",
24440
+ "type": {
24441
+ "text": "ComponentPresentation | null"
24442
+ },
24443
+ "privacy": "public",
24444
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
24445
+ "inheritedFrom": {
24446
+ "name": "RadioGroup",
24447
+ "module": "src/radio-group/radio-group.ts"
24448
+ }
24449
+ },
24450
+ {
24451
+ "kind": "field",
24452
+ "name": "template",
24453
+ "type": {
24454
+ "text": "ElementViewTemplate | void | null"
24455
+ },
24456
+ "privacy": "public",
24457
+ "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.",
24458
+ "inheritedFrom": {
24459
+ "name": "RadioGroup",
24460
+ "module": "src/radio-group/radio-group.ts"
24461
+ }
24462
+ },
24463
+ {
24464
+ "kind": "method",
24465
+ "name": "templateChanged",
24466
+ "privacy": "protected",
24467
+ "return": {
24468
+ "type": {
24469
+ "text": "void"
24470
+ }
24471
+ },
24472
+ "inheritedFrom": {
24473
+ "name": "RadioGroup",
24474
+ "module": "src/radio-group/radio-group.ts"
24475
+ }
24476
+ },
24477
+ {
24478
+ "kind": "field",
24479
+ "name": "styles",
24480
+ "type": {
24481
+ "text": "ElementStyles | void | null"
24482
+ },
24483
+ "privacy": "public",
24484
+ "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.",
24485
+ "inheritedFrom": {
24486
+ "name": "RadioGroup",
24487
+ "module": "src/radio-group/radio-group.ts"
24488
+ }
24489
+ },
24490
+ {
24491
+ "kind": "method",
24492
+ "name": "stylesChanged",
24493
+ "privacy": "protected",
24494
+ "return": {
24495
+ "type": {
24496
+ "text": "void"
24497
+ }
24498
+ },
24499
+ "inheritedFrom": {
24500
+ "name": "RadioGroup",
24501
+ "module": "src/radio-group/radio-group.ts"
24502
+ }
24503
+ },
24504
+ {
24505
+ "kind": "method",
24506
+ "name": "compose",
24507
+ "privacy": "public",
24508
+ "static": true,
24509
+ "return": {
24510
+ "type": {
24511
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
24512
+ }
24513
+ },
24514
+ "parameters": [
24515
+ {
24516
+ "name": "this",
24517
+ "type": {
24518
+ "text": "K"
24519
+ }
24520
+ },
24521
+ {
24522
+ "name": "elementDefinition",
24523
+ "type": {
24524
+ "text": "T"
24525
+ },
24526
+ "description": "The definition of the element to create the registry\nfunction for."
24527
+ }
24528
+ ],
24529
+ "description": "Defines an element registry function with a set of element definition defaults.",
24530
+ "inheritedFrom": {
24531
+ "name": "RadioGroup",
24532
+ "module": "src/radio-group/radio-group.ts"
24533
+ }
24534
+ }
24535
+ ],
24536
+ "events": [
24537
+ {
24538
+ "description": "Fires a custom 'change' event when the value changes",
24539
+ "name": "change",
24540
+ "inheritedFrom": {
24541
+ "name": "RadioGroup",
24542
+ "module": "src/radio-group/radio-group.ts"
24543
+ }
24544
+ }
24545
+ ]
24546
+ },
24547
+ {
24548
+ "kind": "variable",
24549
+ "name": "zeroRadioGroup"
24550
+ }
24551
+ ],
24552
+ "exports": [
24553
+ {
24554
+ "kind": "js",
24555
+ "name": "RadioGroup",
24556
+ "declaration": {
24557
+ "name": "RadioGroup",
24558
+ "module": "src/radio-group/radio-group.ts"
24559
+ }
24560
+ },
24561
+ {
24562
+ "kind": "js",
24563
+ "name": "zeroRadioGroup",
24564
+ "declaration": {
24565
+ "name": "zeroRadioGroup",
24566
+ "module": "src/radio-group/radio-group.ts"
24567
+ }
24568
+ }
24569
+ ]
24570
+ },
24571
+ {
24572
+ "kind": "javascript-module",
24573
+ "path": "src/search-bar/index.ts",
24574
+ "declarations": [],
24575
+ "exports": [
24576
+ {
24577
+ "kind": "js",
24578
+ "name": "*",
24579
+ "declaration": {
24580
+ "name": "*",
24581
+ "package": "./search-bar"
24582
+ }
24583
+ },
24584
+ {
24585
+ "kind": "js",
24586
+ "name": "*",
24587
+ "declaration": {
24588
+ "name": "*",
24589
+ "package": "./search-bar.styles"
24590
+ }
24591
+ },
24592
+ {
24593
+ "kind": "js",
24594
+ "name": "*",
24595
+ "declaration": {
24596
+ "name": "*",
24597
+ "package": "./search-bar.template"
24598
+ }
24599
+ },
24600
+ {
24601
+ "kind": "js",
24602
+ "name": "*",
24603
+ "declaration": {
24604
+ "name": "*",
24605
+ "package": "./search-bar-combobox"
24606
+ }
24607
+ },
24608
+ {
24609
+ "kind": "js",
24610
+ "name": "*",
24611
+ "declaration": {
24612
+ "name": "*",
24613
+ "package": "./search-bar-combobox.styles"
24614
+ }
24615
+ },
24616
+ {
24617
+ "kind": "js",
24618
+ "name": "*",
24619
+ "declaration": {
24620
+ "name": "*",
24621
+ "package": "./search-bar-combobox.template"
24622
+ }
24623
+ }
24624
+ ]
24625
+ },
24626
+ {
24627
+ "kind": "javascript-module",
24628
+ "path": "src/search-bar/search-bar-combobox.styles.ts",
24629
+ "declarations": [
24630
+ {
24631
+ "kind": "function",
24632
+ "name": "zeroSearchBarComboboxStyles",
24633
+ "return": {
24634
+ "type": {
24635
+ "text": "ElementStyles"
24636
+ }
24637
+ },
24638
+ "parameters": [
24639
+ {
24640
+ "name": "context",
24641
+ "type": {
24642
+ "text": "ElementDefinitionContext"
24643
+ }
24644
+ },
24645
+ {
24646
+ "name": "definition",
24647
+ "type": {
24648
+ "text": "FoundationElementDefinition"
24649
+ }
24650
+ }
24651
+ ]
24652
+ }
24653
+ ],
24654
+ "exports": [
24655
+ {
24656
+ "kind": "js",
24657
+ "name": "zeroSearchBarComboboxStyles",
24658
+ "declaration": {
24659
+ "name": "zeroSearchBarComboboxStyles",
24660
+ "module": "src/search-bar/search-bar-combobox.styles.ts"
24661
+ }
24662
+ }
24663
+ ]
24664
+ },
24665
+ {
24666
+ "kind": "javascript-module",
24667
+ "path": "src/search-bar/search-bar-combobox.template.ts",
24668
+ "declarations": [
24669
+ {
24670
+ "kind": "function",
24671
+ "name": "zeroSearchBarComboboxTemplate",
24672
+ "return": {
24673
+ "type": {
24674
+ "text": "ViewTemplate<SearchBarCombobox>"
24675
+ }
24676
+ },
24677
+ "parameters": [
24678
+ {
24679
+ "name": "context",
24680
+ "type": {
24681
+ "text": "ElementDefinitionContext"
24682
+ }
24683
+ },
24684
+ {
24685
+ "name": "definition",
24686
+ "type": {
24687
+ "text": "ComboboxOptions"
24688
+ }
24689
+ }
24690
+ ]
24691
+ }
24692
+ ],
24693
+ "exports": [
24694
+ {
24695
+ "kind": "js",
24696
+ "name": "zeroSearchBarComboboxTemplate",
24697
+ "declaration": {
24698
+ "name": "zeroSearchBarComboboxTemplate",
24699
+ "module": "src/search-bar/search-bar-combobox.template.ts"
24700
+ }
24701
+ }
24702
+ ]
24703
+ },
24704
+ {
24705
+ "kind": "javascript-module",
24706
+ "path": "src/search-bar/search-bar-combobox.ts",
24707
+ "declarations": [
24708
+ {
24709
+ "kind": "class",
24710
+ "description": "",
24711
+ "name": "SearchBarCombobox",
24712
+ "superclass": {
24713
+ "name": "FoundationSearchBarCombobox",
24714
+ "package": "@genesislcap/foundation-ui"
24715
+ },
24716
+ "tagName": "%%prefix%%-search-bar-combobox",
24717
+ "customElement": true,
24718
+ "attributes": [
24719
+ {
24720
+ "name": "minlength",
24721
+ "type": {
24722
+ "text": "number"
24723
+ },
24724
+ "default": "COMBO_INPUT_MIN_LENGTH",
24725
+ "resolveInitializer": {
24726
+ "module": "/src/search-bar/search-bar.types"
24727
+ },
24728
+ "fieldName": "minlength",
24729
+ "inheritedFrom": {
24730
+ "name": "SearchBarCombobox",
24731
+ "module": "src/search-bar/search-bar-combobox.ts"
24732
+ }
24733
+ },
24734
+ {
24735
+ "name": "autocomplete",
24736
+ "type": {
24737
+ "text": "ComboboxAutocomplete | undefined"
24738
+ },
24739
+ "description": "The autocomplete attribute.",
24740
+ "fieldName": "autocomplete",
24741
+ "inheritedFrom": {
24742
+ "name": "SearchBarCombobox",
24743
+ "module": "src/search-bar/search-bar-combobox.ts"
24744
+ }
24745
+ },
24746
+ {
24747
+ "name": "open",
24748
+ "type": {
24749
+ "text": "boolean"
24750
+ },
24751
+ "default": "false",
24752
+ "description": "The open attribute.",
24753
+ "fieldName": "open",
24754
+ "inheritedFrom": {
24755
+ "name": "SearchBarCombobox",
24756
+ "module": "src/search-bar/search-bar-combobox.ts"
24757
+ }
24758
+ },
24759
+ {
24760
+ "name": "placeholder",
24761
+ "type": {
24762
+ "text": "string"
24763
+ },
24764
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
24765
+ "fieldName": "placeholder",
24766
+ "inheritedFrom": {
24767
+ "name": "SearchBarCombobox",
24768
+ "module": "src/search-bar/search-bar-combobox.ts"
24769
+ }
24770
+ },
24771
+ {
24772
+ "name": "position",
24773
+ "type": {
24774
+ "text": "SelectPosition | undefined"
24775
+ },
24776
+ "description": "The placement for the listbox when the combobox is open.",
24777
+ "fieldName": "positionAttribute",
24778
+ "inheritedFrom": {
24779
+ "name": "SearchBarCombobox",
24780
+ "module": "src/search-bar/search-bar-combobox.ts"
24781
+ }
24782
+ },
24783
+ {
24784
+ "type": {
24785
+ "text": "boolean"
24786
+ },
24787
+ "default": "false",
24788
+ "fieldName": "disabled",
24789
+ "description": "The disabled state of the listbox.",
24790
+ "inheritedFrom": {
24791
+ "name": "Combobox",
24792
+ "module": "src/combobox/combobox.ts"
24793
+ }
24794
+ },
24795
+ {
24796
+ "name": "debounce",
24797
+ "type": {
24798
+ "text": "number"
24799
+ },
24800
+ "default": "DEBOUNCE_TIME",
24801
+ "resolveInitializer": {
24802
+ "module": "src/combobox/combobox.ts"
24803
+ },
24804
+ "fieldName": "debounce",
24805
+ "inheritedFrom": {
24806
+ "name": "Combobox",
24807
+ "module": "src/combobox/combobox.ts"
24808
+ }
24809
+ },
24810
+ {
24811
+ "name": "case-sensitive",
24812
+ "type": {
24813
+ "text": "boolean"
24814
+ },
24815
+ "default": "false",
24816
+ "description": "Controls whether to perform a case-sensitive search in the list of options",
24817
+ "fieldName": "caseSensitive",
24818
+ "inheritedFrom": {
24819
+ "name": "Combobox",
24820
+ "module": "src/combobox/combobox.ts"
24821
+ }
24822
+ },
24823
+ {
24824
+ "name": "ignore-input-click",
24825
+ "type": {
24826
+ "text": "boolean"
24827
+ },
24828
+ "default": "false",
24829
+ "description": "Controls whether to suppress opening the dropdown when the input field is clicked",
24830
+ "fieldName": "ignoreInputClick",
24831
+ "inheritedFrom": {
24832
+ "name": "Combobox",
24833
+ "module": "src/combobox/combobox.ts"
24834
+ }
24835
+ }
24836
+ ],
24837
+ "members": [
24838
+ {
24839
+ "kind": "field",
24840
+ "name": "minlength",
24841
+ "type": {
24842
+ "text": "number"
24843
+ },
24844
+ "default": "COMBO_INPUT_MIN_LENGTH",
24845
+ "inheritedFrom": {
24846
+ "name": "SearchBarCombobox",
24847
+ "module": "src/search-bar/search-bar-combobox.ts"
24848
+ }
24849
+ },
24850
+ {
24851
+ "kind": "field",
24852
+ "name": "previousLength",
24853
+ "type": {
24854
+ "text": "number"
24855
+ },
24856
+ "privacy": "private",
24857
+ "default": "-1",
24858
+ "inheritedFrom": {
24859
+ "name": "SearchBarCombobox",
24860
+ "module": "src/search-bar/search-bar-combobox.ts"
24861
+ }
24862
+ },
24863
+ {
24864
+ "kind": "field",
24865
+ "name": "changeListener",
24866
+ "privacy": "private",
24867
+ "inheritedFrom": {
24868
+ "name": "SearchBarCombobox",
24869
+ "module": "src/search-bar/search-bar-combobox.ts"
24870
+ }
24871
+ },
24872
+ {
24873
+ "kind": "method",
24874
+ "name": "clickHandler",
24875
+ "privacy": "public",
24876
+ "return": {
24877
+ "type": {
24878
+ "text": "boolean | void"
24879
+ }
24880
+ },
24881
+ "parameters": [
24882
+ {
24883
+ "name": "e",
24884
+ "type": {
24885
+ "text": "any"
24886
+ }
24887
+ }
24888
+ ],
24889
+ "inheritedFrom": {
24890
+ "name": "Combobox",
24891
+ "module": "src/combobox/combobox.ts"
24892
+ }
24893
+ },
24894
+ {
24895
+ "kind": "method",
24896
+ "name": "keyupHandler",
24897
+ "privacy": "public",
24898
+ "return": {
24899
+ "type": {
24900
+ "text": "boolean | void"
24901
+ }
24902
+ },
24903
+ "parameters": [
24904
+ {
24905
+ "name": "e",
24906
+ "type": {
24907
+ "text": "KeyboardEvent"
24908
+ }
24909
+ }
24910
+ ],
24911
+ "inheritedFrom": {
24912
+ "name": "Combobox",
24913
+ "module": "src/combobox/combobox.ts"
24914
+ }
24915
+ },
24916
+ {
24917
+ "kind": "method",
24918
+ "name": "keydownHandler",
24919
+ "privacy": "public",
24920
+ "return": {
24921
+ "type": {
24922
+ "text": "boolean | void"
24923
+ }
24924
+ },
24925
+ "parameters": [
24926
+ {
24927
+ "name": "e",
24928
+ "type": {
24929
+ "text": "Event & KeyboardEvent"
24930
+ }
24931
+ }
24932
+ ],
24933
+ "inheritedFrom": {
24934
+ "name": "Combobox",
24935
+ "module": "src/combobox/combobox.ts"
24936
+ }
24937
+ },
24938
+ {
24939
+ "kind": "method",
24940
+ "name": "inputHandler",
24941
+ "return": {
24942
+ "type": {
24943
+ "text": "boolean | void"
24944
+ }
24945
+ },
24946
+ "parameters": [
24947
+ {
24948
+ "name": "e",
24949
+ "type": {
24950
+ "text": "InputEvent"
24951
+ }
24952
+ }
24953
+ ],
24954
+ "inheritedFrom": {
24955
+ "name": "Combobox",
24956
+ "module": "src/combobox/combobox.ts"
24957
+ }
24958
+ },
24959
+ {
24960
+ "kind": "method",
24961
+ "name": "openChanged",
24962
+ "inheritedFrom": {
24963
+ "name": "SearchBarCombobox",
24964
+ "module": "src/search-bar/search-bar-combobox.ts"
24965
+ }
24966
+ },
24967
+ {
24968
+ "kind": "field",
24969
+ "name": "autocomplete",
24970
+ "type": {
24971
+ "text": "ComboboxAutocomplete | undefined"
24972
+ },
24973
+ "description": "The autocomplete attribute.",
24974
+ "privacy": "public",
24975
+ "inheritedFrom": {
24976
+ "name": "SearchBarCombobox",
24977
+ "module": "src/search-bar/search-bar-combobox.ts"
24978
+ }
24979
+ },
24980
+ {
24981
+ "kind": "field",
24982
+ "name": "filteredOptions",
24983
+ "type": {
24984
+ "text": "ListboxOption[]"
24985
+ },
24986
+ "privacy": "public",
24987
+ "default": "[]",
24988
+ "description": "The collection of currently filtered options.",
24989
+ "inheritedFrom": {
24990
+ "name": "SearchBarCombobox",
24991
+ "module": "src/search-bar/search-bar-combobox.ts"
24992
+ }
24993
+ },
24994
+ {
24995
+ "kind": "method",
24996
+ "name": "validate",
24997
+ "privacy": "public",
24998
+ "return": {
24999
+ "type": {
25000
+ "text": "void"
25001
+ }
25002
+ },
25003
+ "description": "{@inheritDoc (FormAssociated:interface).validate}",
25004
+ "inheritedFrom": {
25005
+ "name": "SearchBarCombobox",
25006
+ "module": "src/search-bar/search-bar-combobox.ts"
25007
+ }
25008
+ },
25009
+ {
25010
+ "kind": "field",
25011
+ "name": "isAutocompleteInline",
25012
+ "type": {
25013
+ "text": "boolean"
25014
+ },
25015
+ "privacy": "private",
25016
+ "inheritedFrom": {
25017
+ "name": "SearchBarCombobox",
25018
+ "module": "src/search-bar/search-bar-combobox.ts"
25019
+ }
25020
+ },
25021
+ {
25022
+ "kind": "field",
25023
+ "name": "isAutocompleteList",
25024
+ "type": {
25025
+ "text": "boolean"
25026
+ },
25027
+ "privacy": "private",
25028
+ "inheritedFrom": {
25029
+ "name": "SearchBarCombobox",
25030
+ "module": "src/search-bar/search-bar-combobox.ts"
25031
+ }
25032
+ },
25033
+ {
25034
+ "kind": "field",
25035
+ "name": "isAutocompleteBoth",
25036
+ "type": {
25037
+ "text": "boolean"
25038
+ },
25039
+ "privacy": "private",
25040
+ "inheritedFrom": {
25041
+ "name": "SearchBarCombobox",
25042
+ "module": "src/search-bar/search-bar-combobox.ts"
25043
+ }
25044
+ },
25045
+ {
25046
+ "kind": "field",
25047
+ "name": "open",
25048
+ "type": {
25049
+ "text": "boolean"
25050
+ },
25051
+ "privacy": "public",
25052
+ "default": "false",
25053
+ "description": "The open attribute.",
25054
+ "inheritedFrom": {
25055
+ "name": "SearchBarCombobox",
25056
+ "module": "src/search-bar/search-bar-combobox.ts"
25057
+ }
25058
+ },
25059
+ {
25060
+ "kind": "field",
25061
+ "name": "options",
25062
+ "type": {
25063
+ "text": "ListboxOption[]"
25064
+ },
25065
+ "privacy": "public",
25066
+ "description": "The list of options.",
25067
+ "inheritedFrom": {
25068
+ "name": "SearchBarCombobox",
25069
+ "module": "src/search-bar/search-bar-combobox.ts"
25070
+ }
25071
+ },
25072
+ {
25073
+ "kind": "field",
25074
+ "name": "placeholder",
25075
+ "type": {
25076
+ "text": "string"
25077
+ },
25078
+ "privacy": "public",
25079
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
25080
+ "inheritedFrom": {
25081
+ "name": "SearchBarCombobox",
25082
+ "module": "src/search-bar/search-bar-combobox.ts"
25083
+ }
25084
+ },
25085
+ {
25086
+ "kind": "field",
25087
+ "name": "positionAttribute",
25088
+ "type": {
25089
+ "text": "SelectPosition | undefined"
25090
+ },
25091
+ "privacy": "public",
25092
+ "description": "The placement for the listbox when the combobox is open.",
25093
+ "inheritedFrom": {
25094
+ "name": "SearchBarCombobox",
25095
+ "module": "src/search-bar/search-bar-combobox.ts"
25096
+ }
25097
+ },
25098
+ {
25099
+ "kind": "field",
25100
+ "name": "position",
25101
+ "type": {
25102
+ "text": "SelectPosition | undefined"
25103
+ },
25104
+ "privacy": "public",
25105
+ "description": "The current state of the calculated position of the listbox.",
25106
+ "inheritedFrom": {
25107
+ "name": "SearchBarCombobox",
25108
+ "module": "src/search-bar/search-bar-combobox.ts"
25109
+ }
25110
+ },
25111
+ {
25112
+ "kind": "method",
25113
+ "name": "positionChanged",
25114
+ "privacy": "protected",
25115
+ "return": {
25116
+ "type": {
25117
+ "text": "void"
25118
+ }
25119
+ },
25120
+ "parameters": [
25121
+ {
25122
+ "name": "prev",
25123
+ "type": {
25124
+ "text": "SelectPosition | undefined"
25125
+ }
25126
+ },
25127
+ {
25128
+ "name": "next",
25129
+ "type": {
25130
+ "text": "SelectPosition | undefined"
25131
+ }
25132
+ }
25133
+ ],
25134
+ "inheritedFrom": {
25135
+ "name": "SearchBarCombobox",
25136
+ "module": "src/search-bar/search-bar-combobox.ts"
25137
+ }
25138
+ },
25139
+ {
25140
+ "kind": "field",
25141
+ "name": "value",
25142
+ "privacy": "public",
25143
+ "description": "The value property.",
25144
+ "inheritedFrom": {
25145
+ "name": "Combobox",
25146
+ "module": "src/combobox/combobox.ts"
25147
+ }
25148
+ },
25149
+ {
25150
+ "kind": "method",
25151
+ "name": "filterOptions",
25152
+ "privacy": "public",
25153
+ "return": {
25154
+ "type": {
25155
+ "text": "void"
25156
+ }
25157
+ },
25158
+ "description": "Filter available options by text value.",
25159
+ "inheritedFrom": {
25160
+ "name": "Combobox",
25161
+ "module": "src/combobox/combobox.ts"
25162
+ }
25163
+ },
25164
+ {
25165
+ "kind": "method",
25166
+ "name": "setPositioning",
25167
+ "privacy": "public",
25168
+ "return": {
25169
+ "type": {
25170
+ "text": "void"
25171
+ }
25172
+ },
25173
+ "description": "Calculate and apply listbox positioning based on available viewport space.",
25174
+ "parameters": [
25175
+ {
25176
+ "description": "direction to force the listbox to display",
25177
+ "name": "force"
25178
+ }
25179
+ ],
25180
+ "inheritedFrom": {
25181
+ "name": "SearchBarCombobox",
25182
+ "module": "src/search-bar/search-bar-combobox.ts"
25183
+ }
25184
+ },
25185
+ {
25186
+ "kind": "field",
25187
+ "name": "proxy",
25188
+ "inheritedFrom": {
25189
+ "name": "SearchBarCombobox",
25190
+ "module": "src/search-bar/search-bar-combobox.ts"
25191
+ }
25192
+ },
25193
+ {
25194
+ "kind": "field",
25195
+ "name": "length",
25196
+ "type": {
25197
+ "text": "number"
25198
+ },
25199
+ "privacy": "public",
25200
+ "description": "The number of options.",
25201
+ "inheritedFrom": {
25202
+ "name": "SearchBarCombobox",
25203
+ "module": "src/search-bar/search-bar-combobox.ts"
25204
+ }
25205
+ },
25206
+ {
25207
+ "kind": "field",
25208
+ "name": "typeAheadExpired",
25209
+ "privacy": "protected",
25210
+ "inheritedFrom": {
25211
+ "name": "SearchBarCombobox",
25212
+ "module": "src/search-bar/search-bar-combobox.ts"
25213
+ }
25214
+ },
25215
+ {
25216
+ "kind": "field",
25217
+ "name": "disabled",
25218
+ "type": {
25219
+ "text": "boolean"
25220
+ },
25221
+ "privacy": "public",
25222
+ "description": "The disabled state of the listbox.",
25223
+ "inheritedFrom": {
25224
+ "name": "SearchBarCombobox",
25225
+ "module": "src/search-bar/search-bar-combobox.ts"
25226
+ }
25227
+ },
25228
+ {
25229
+ "kind": "field",
25230
+ "name": "selectedIndex",
25231
+ "type": {
25232
+ "text": "number"
25233
+ },
25234
+ "privacy": "public",
25235
+ "default": "-1",
25236
+ "description": "The index of the selected option.",
25237
+ "inheritedFrom": {
25238
+ "name": "SearchBarCombobox",
25239
+ "module": "src/search-bar/search-bar-combobox.ts"
25240
+ }
25241
+ },
25242
+ {
25243
+ "kind": "field",
25244
+ "name": "selectedOptions",
25245
+ "type": {
25246
+ "text": "ListboxOption[]"
25247
+ },
25248
+ "privacy": "public",
25249
+ "default": "[]",
25250
+ "description": "A collection of the selected options.",
25251
+ "inheritedFrom": {
25252
+ "name": "SearchBarCombobox",
25253
+ "module": "src/search-bar/search-bar-combobox.ts"
25254
+ }
25255
+ },
25256
+ {
25257
+ "kind": "field",
25258
+ "name": "slottedOptionFilter",
25259
+ "privacy": "public",
25260
+ "static": true,
25261
+ "description": "A static filter to include only selectable options.",
25262
+ "parameters": [
25263
+ {
25264
+ "description": "element to filter",
25265
+ "name": "n"
25266
+ }
25267
+ ],
25268
+ "inheritedFrom": {
25269
+ "name": "SearchBarCombobox",
25270
+ "module": "src/search-bar/search-bar-combobox.ts"
25271
+ }
25272
+ },
25273
+ {
25274
+ "kind": "method",
25275
+ "name": "selectFirstOption",
25276
+ "privacy": "public",
25277
+ "return": {
25278
+ "type": {
25279
+ "text": "void"
25280
+ }
25281
+ },
25282
+ "description": "Moves focus to the first selectable option.",
25283
+ "inheritedFrom": {
25284
+ "name": "SearchBarCombobox",
25285
+ "module": "src/search-bar/search-bar-combobox.ts"
25286
+ }
25287
+ },
25288
+ {
25289
+ "kind": "method",
25290
+ "name": "setSelectedOptions",
25291
+ "privacy": "public",
25292
+ "description": "Sets an option as selected and gives it focus.",
25293
+ "inheritedFrom": {
25294
+ "name": "SearchBarCombobox",
25295
+ "module": "src/search-bar/search-bar-combobox.ts"
25296
+ }
25297
+ },
25298
+ {
25299
+ "kind": "field",
25300
+ "name": "_presentation",
25301
+ "type": {
25302
+ "text": "ComponentPresentation | null | undefined"
25303
+ },
25304
+ "privacy": "private",
25305
+ "default": "void 0",
25306
+ "inheritedFrom": {
25307
+ "name": "SearchBarCombobox",
25308
+ "module": "src/search-bar/search-bar-combobox.ts"
25309
+ }
25310
+ },
25311
+ {
25312
+ "kind": "field",
25313
+ "name": "$presentation",
25314
+ "type": {
25315
+ "text": "ComponentPresentation | null"
25316
+ },
25317
+ "privacy": "public",
25318
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
25319
+ "inheritedFrom": {
25320
+ "name": "SearchBarCombobox",
25321
+ "module": "src/search-bar/search-bar-combobox.ts"
25322
+ }
25323
+ },
25324
+ {
25325
+ "kind": "field",
25326
+ "name": "template",
25327
+ "type": {
25328
+ "text": "ElementViewTemplate | void | null"
25329
+ },
25330
+ "privacy": "public",
25331
+ "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.",
25332
+ "inheritedFrom": {
25333
+ "name": "SearchBarCombobox",
25334
+ "module": "src/search-bar/search-bar-combobox.ts"
25335
+ }
25336
+ },
25337
+ {
25338
+ "kind": "method",
25339
+ "name": "templateChanged",
25340
+ "privacy": "protected",
25341
+ "return": {
25342
+ "type": {
25343
+ "text": "void"
25344
+ }
25345
+ },
25346
+ "inheritedFrom": {
25347
+ "name": "SearchBarCombobox",
25348
+ "module": "src/search-bar/search-bar-combobox.ts"
25349
+ }
25350
+ },
25351
+ {
25352
+ "kind": "field",
25353
+ "name": "styles",
25354
+ "type": {
25355
+ "text": "ElementStyles | void | null"
25356
+ },
25357
+ "privacy": "public",
25358
+ "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.",
25359
+ "inheritedFrom": {
25360
+ "name": "SearchBarCombobox",
25361
+ "module": "src/search-bar/search-bar-combobox.ts"
25362
+ }
25363
+ },
25364
+ {
25365
+ "kind": "method",
25366
+ "name": "stylesChanged",
25367
+ "privacy": "protected",
25368
+ "return": {
25369
+ "type": {
25370
+ "text": "void"
25371
+ }
25372
+ },
25373
+ "inheritedFrom": {
25374
+ "name": "SearchBarCombobox",
25375
+ "module": "src/search-bar/search-bar-combobox.ts"
25376
+ }
25377
+ },
25378
+ {
25379
+ "kind": "method",
25380
+ "name": "compose",
25381
+ "privacy": "public",
25382
+ "static": true,
25383
+ "return": {
25384
+ "type": {
25385
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
25386
+ }
25387
+ },
25388
+ "parameters": [
25389
+ {
25390
+ "name": "this",
25391
+ "type": {
25392
+ "text": "K"
25393
+ }
25394
+ },
25395
+ {
25396
+ "name": "elementDefinition",
25397
+ "type": {
25398
+ "text": "T"
25399
+ },
25400
+ "description": "The definition of the element to create the registry\nfunction for."
25401
+ }
25402
+ ],
25403
+ "description": "Defines an element registry function with a set of element definition defaults.",
25404
+ "inheritedFrom": {
25405
+ "name": "SearchBarCombobox",
25406
+ "module": "src/search-bar/search-bar-combobox.ts"
25407
+ }
25408
+ },
25409
+ {
25410
+ "kind": "field",
25411
+ "name": "_ourValue",
25412
+ "type": {
25413
+ "text": "string"
25414
+ },
25415
+ "privacy": "private",
25416
+ "inheritedFrom": {
25417
+ "name": "Combobox",
25418
+ "module": "src/combobox/combobox.ts"
25419
+ }
25420
+ },
25421
+ {
25422
+ "kind": "field",
25423
+ "name": "#indicator",
25424
+ "privacy": "private",
25425
+ "type": {
25426
+ "text": "Element"
25427
+ },
25428
+ "inheritedFrom": {
25429
+ "name": "Combobox",
25430
+ "module": "src/combobox/combobox.ts"
25431
+ }
25432
+ },
25433
+ {
25434
+ "kind": "field",
25435
+ "name": "#wasOpenOnEnterDown",
25436
+ "privacy": "private",
25437
+ "type": {
25438
+ "text": "boolean"
25439
+ },
25440
+ "default": "false",
25441
+ "inheritedFrom": {
25442
+ "name": "Combobox",
25443
+ "module": "src/combobox/combobox.ts"
25444
+ }
25445
+ },
25446
+ {
25447
+ "kind": "field",
25448
+ "name": "slottedDatasource",
25449
+ "type": {
25450
+ "text": "HTMLSlotElement"
25451
+ },
25452
+ "inheritedFrom": {
25453
+ "name": "Combobox",
25454
+ "module": "src/combobox/combobox.ts"
25455
+ }
25456
+ },
25457
+ {
25458
+ "kind": "field",
25459
+ "name": "async",
25460
+ "type": {
25461
+ "text": "boolean"
25462
+ },
25463
+ "default": "false",
25464
+ "inheritedFrom": {
25465
+ "name": "Combobox",
25466
+ "module": "src/combobox/combobox.ts"
25467
+ }
25468
+ },
25469
+ {
25470
+ "kind": "field",
25471
+ "name": "debounce",
25472
+ "type": {
25473
+ "text": "number"
25474
+ },
25475
+ "default": "500",
25476
+ "inheritedFrom": {
25477
+ "name": "Combobox",
25478
+ "module": "src/combobox/combobox.ts"
25479
+ }
25480
+ },
25481
+ {
25482
+ "kind": "method",
25483
+ "name": "debounceChanged",
25484
+ "parameters": [
25485
+ {
25486
+ "name": "oldValue"
25487
+ },
25488
+ {
25489
+ "name": "newValue",
25490
+ "type": {
25491
+ "text": "number"
25492
+ }
25493
+ }
25494
+ ],
25495
+ "inheritedFrom": {
25496
+ "name": "Combobox",
25497
+ "module": "src/combobox/combobox.ts"
25498
+ }
25499
+ },
25500
+ {
25501
+ "kind": "field",
25502
+ "name": "debouncedInputHandler",
25503
+ "inheritedFrom": {
25504
+ "name": "Combobox",
25505
+ "module": "src/combobox/combobox.ts"
25506
+ }
25507
+ },
25508
+ {
25509
+ "kind": "field",
25510
+ "name": "caseSensitive",
25511
+ "type": {
25512
+ "text": "boolean"
25513
+ },
25514
+ "privacy": "public",
25515
+ "default": "false",
25516
+ "description": "Controls whether to perform a case-sensitive search in the list of options",
25517
+ "inheritedFrom": {
25518
+ "name": "Combobox",
25519
+ "module": "src/combobox/combobox.ts"
25520
+ }
25521
+ },
25522
+ {
25523
+ "kind": "field",
25524
+ "name": "ignoreInputClick",
25525
+ "type": {
25526
+ "text": "boolean"
25527
+ },
25528
+ "privacy": "public",
25529
+ "default": "false",
25530
+ "description": "Controls whether to suppress opening the dropdown when the input field is clicked",
25531
+ "inheritedFrom": {
25532
+ "name": "Combobox",
25533
+ "module": "src/combobox/combobox.ts"
25534
+ }
25535
+ },
25536
+ {
25537
+ "kind": "method",
25538
+ "name": "slottedOptionsChanged",
25539
+ "privacy": "public",
25540
+ "return": {
25541
+ "type": {
25542
+ "text": "void"
25543
+ }
25544
+ },
25545
+ "parameters": [
25546
+ {
25547
+ "name": "prev",
25548
+ "type": {
25549
+ "text": "Element[] | undefined"
25550
+ }
25551
+ },
25552
+ {
25553
+ "name": "next",
25554
+ "type": {
25555
+ "text": "Element[]"
25556
+ }
25557
+ }
25558
+ ],
25559
+ "inheritedFrom": {
25560
+ "name": "Combobox",
25561
+ "module": "src/combobox/combobox.ts"
25562
+ }
25563
+ },
25564
+ {
25565
+ "kind": "field",
25566
+ "name": "indicator",
25567
+ "type": {
25568
+ "text": "Element"
25569
+ },
25570
+ "privacy": "protected",
25571
+ "description": "Gets the HTML element for the indicator button",
25572
+ "readonly": true,
25573
+ "inheritedFrom": {
25574
+ "name": "Combobox",
25575
+ "module": "src/combobox/combobox.ts"
25576
+ }
25577
+ },
25578
+ {
25579
+ "kind": "method",
25580
+ "name": "selectItemByValue",
25581
+ "privacy": "protected",
25582
+ "parameters": [
25583
+ {
25584
+ "name": "value",
25585
+ "type": {
25586
+ "text": "string"
25587
+ },
25588
+ "description": "The text value of the item to be selected"
25589
+ }
25590
+ ],
25591
+ "description": "Selects an item in the dropdown based on its text value",
25592
+ "inheritedFrom": {
25593
+ "name": "Combobox",
25594
+ "module": "src/combobox/combobox.ts"
25595
+ }
25596
+ },
25597
+ {
25598
+ "kind": "method",
25599
+ "name": "asyncSetFilter",
25600
+ "inheritedFrom": {
25601
+ "name": "Combobox",
25602
+ "module": "src/combobox/combobox.ts"
25603
+ }
25604
+ }
25605
+ ],
25606
+ "events": [
25607
+ {
25608
+ "description": "Fires a custom 'change' event when the value updates",
25609
+ "name": "change",
25610
+ "inheritedFrom": {
25611
+ "name": "SearchBarCombobox",
25612
+ "module": "src/search-bar/search-bar-combobox.ts"
25613
+ }
25614
+ }
25615
+ ]
25616
+ },
25617
+ {
25618
+ "kind": "variable",
25619
+ "name": "zeroSearchBarCombobox",
25620
+ "description": "The Zero Search Bar Combobox",
25621
+ "privacy": "public"
25622
+ }
25623
+ ],
25624
+ "exports": [
25625
+ {
25626
+ "kind": "js",
25627
+ "name": "SearchBarCombobox",
25628
+ "declaration": {
25629
+ "name": "SearchBarCombobox",
25630
+ "module": "src/search-bar/search-bar-combobox.ts"
25631
+ }
25632
+ },
25633
+ {
25634
+ "kind": "js",
25635
+ "name": "zeroSearchBarCombobox",
25636
+ "declaration": {
25637
+ "name": "zeroSearchBarCombobox",
25638
+ "module": "src/search-bar/search-bar-combobox.ts"
25639
+ }
25640
+ }
25641
+ ]
25642
+ },
25643
+ {
25644
+ "kind": "javascript-module",
25645
+ "path": "src/search-bar/search-bar.stories.ts",
25646
+ "declarations": [
25647
+ {
25648
+ "kind": "variable",
25649
+ "name": "meta",
25650
+ "type": {
25651
+ "text": "Meta"
25652
+ },
25653
+ "default": "{\n title: 'Search Bar',\n component: 'zero-search-bar',\n}"
25654
+ },
25655
+ {
25656
+ "kind": "variable",
25657
+ "name": "Primary",
25658
+ "type": {
25659
+ "text": "StoryObj"
25660
+ },
25661
+ "default": "{\n render: ({ searchConfig }) => html`\n <div style=\"height: 400px; width: 500px;\">\n <zero-search-bar .options=\"${searchConfig}\"></zero-search-bar>\n </div>\n `,\n args: {\n searchConfig: [\n {\n field: 'TRADE_NAME',\n label: (searchTerm) => `${searchTerm} as Trade Name`,\n createCriteria: getCriteriaBuilder,\n isEnabled: (searchTerm, selectedOption) => {\n return (\n searchTerm.length >= INPUT_MIN_LENGTH &&\n !selectedOption.some((e) => e.field === 'TRADE_NAME')\n );\n },\n },\n {\n field: 'INSTRUMENT_NAME',\n label: (searchTerm) => `${searchTerm} as Instrument Name`,\n createCriteria: getCriteriaBuilder,\n isEnabled: (searchTerm, selectedOption) => {\n return (\n searchTerm.length >= INPUT_MIN_LENGTH &&\n !selectedOption.some((e) => e.field === 'INSTRUMENT_NAME')\n );\n },\n },\n {\n field: 'USER_ID',\n label: (searchTerm) => `${searchTerm} as User ID`,\n createCriteria: getCriteriaBuilder,\n isEnabled: (searchTerm, selectedOption) => {\n return (\n searchTerm.length >= INPUT_MIN_LENGTH &&\n !selectedOption.some((e) => e.field === 'USER_ID')\n );\n },\n },\n ],\n },\n}"
25662
+ }
25663
+ ],
25664
+ "exports": [
25665
+ {
25666
+ "kind": "js",
25667
+ "name": "default",
25668
+ "declaration": {
25669
+ "name": "meta",
25670
+ "module": "src/search-bar/search-bar.stories.ts"
25671
+ }
25672
+ },
25673
+ {
25674
+ "kind": "js",
25675
+ "name": "Primary",
25676
+ "declaration": {
25677
+ "name": "Primary",
25678
+ "module": "src/search-bar/search-bar.stories.ts"
25679
+ }
25680
+ }
25681
+ ]
25682
+ },
25683
+ {
25684
+ "kind": "javascript-module",
25685
+ "path": "src/search-bar/search-bar.styles.ts",
25686
+ "declarations": [
25687
+ {
25688
+ "kind": "variable",
25689
+ "name": "zeroSearchBarStyles",
25690
+ "default": "css`\n ${foundationSearchBarStyles}\n`"
25691
+ }
25692
+ ],
25693
+ "exports": [
25694
+ {
25695
+ "kind": "js",
25696
+ "name": "zeroSearchBarStyles",
25697
+ "declaration": {
25698
+ "name": "zeroSearchBarStyles",
25699
+ "module": "src/search-bar/search-bar.styles.ts"
25700
+ }
25701
+ }
25702
+ ]
25703
+ },
25704
+ {
25705
+ "kind": "javascript-module",
25706
+ "path": "src/search-bar/search-bar.template.ts",
25707
+ "declarations": [
25708
+ {
25709
+ "kind": "variable",
25710
+ "name": "zeroSearchBarTemplate",
25711
+ "default": "html<SearchBar>`\n ${getPrefixedSearchBar('zero')}\n`"
25712
+ }
25713
+ ],
25714
+ "exports": [
25715
+ {
25716
+ "kind": "js",
25717
+ "name": "zeroSearchBarTemplate",
25718
+ "declaration": {
25719
+ "name": "zeroSearchBarTemplate",
25720
+ "module": "src/search-bar/search-bar.template.ts"
25721
+ }
25722
+ }
25723
+ ]
25724
+ },
25725
+ {
25726
+ "kind": "javascript-module",
25727
+ "path": "src/search-bar/search-bar.ts",
25728
+ "declarations": [
25729
+ {
25730
+ "kind": "class",
25731
+ "description": "",
25732
+ "name": "SearchBar",
25733
+ "members": [
25734
+ {
25735
+ "kind": "field",
25736
+ "name": "appearance",
25737
+ "type": {
25738
+ "text": "string"
25739
+ },
25740
+ "default": "'neutral-grey'",
25741
+ "inheritedFrom": {
25742
+ "name": "SearchBar",
25743
+ "module": "src/search-bar/search-bar.ts"
25744
+ }
25745
+ },
25746
+ {
25747
+ "kind": "field",
25748
+ "name": "combobox",
25749
+ "type": {
25750
+ "text": "SearchBarCombobox"
25751
+ },
25752
+ "privacy": "public",
25753
+ "inheritedFrom": {
25754
+ "name": "SearchBar",
25755
+ "module": "src/search-bar/search-bar.ts"
25756
+ }
25757
+ },
25758
+ {
25759
+ "kind": "field",
25760
+ "name": "defaultSlottedNodes",
25761
+ "inheritedFrom": {
25762
+ "name": "SearchBar",
25763
+ "module": "src/search-bar/search-bar.ts"
25764
+ }
25765
+ },
25766
+ {
25767
+ "kind": "field",
25768
+ "name": "options",
25769
+ "type": {
25770
+ "text": "AvailableOption[]"
25771
+ },
24204
25772
  "inheritedFrom": {
24205
- "name": "RadioGroup",
24206
- "module": "src/radio-group/radio-group.ts"
25773
+ "name": "SearchBar",
25774
+ "module": "src/search-bar/search-bar.ts"
24207
25775
  }
24208
25776
  },
24209
25777
  {
24210
25778
  "kind": "field",
24211
- "name": "childItems",
25779
+ "name": "searchTerm",
24212
25780
  "type": {
24213
- "text": "HTMLElement[]"
25781
+ "text": "string"
24214
25782
  },
24215
- "privacy": "public",
25783
+ "default": "''",
24216
25784
  "inheritedFrom": {
24217
- "name": "RadioGroup",
24218
- "module": "src/radio-group/radio-group.ts"
25785
+ "name": "SearchBar",
25786
+ "module": "src/search-bar/search-bar.ts"
24219
25787
  }
24220
25788
  },
24221
25789
  {
24222
- "kind": "method",
24223
- "name": "slottedRadioButtonsChanged",
24224
- "privacy": "private",
24225
- "return": {
24226
- "type": {
24227
- "text": "void"
24228
- }
25790
+ "kind": "field",
25791
+ "name": "minlength",
25792
+ "type": {
25793
+ "text": "number"
24229
25794
  },
24230
- "parameters": [
24231
- {
24232
- "name": "oldValue",
24233
- "type": {
24234
- "text": "unknown"
24235
- }
24236
- },
24237
- {
24238
- "name": "newValue",
24239
- "type": {
24240
- "text": "HTMLElement[]"
24241
- }
24242
- }
24243
- ],
25795
+ "default": "INPUT_MIN_LENGTH",
24244
25796
  "inheritedFrom": {
24245
- "name": "RadioGroup",
24246
- "module": "src/radio-group/radio-group.ts"
25797
+ "name": "SearchBar",
25798
+ "module": "src/search-bar/search-bar.ts"
24247
25799
  }
24248
25800
  },
24249
25801
  {
24250
25802
  "kind": "field",
24251
- "name": "selectedRadio",
25803
+ "name": "placeholder",
24252
25804
  "type": {
24253
- "text": "HTMLInputElement | null"
25805
+ "text": "string"
24254
25806
  },
24255
- "privacy": "private",
25807
+ "default": "'Start typing to search'",
24256
25808
  "inheritedFrom": {
24257
- "name": "RadioGroup",
24258
- "module": "src/radio-group/radio-group.ts"
25809
+ "name": "SearchBar",
25810
+ "module": "src/search-bar/search-bar.ts"
24259
25811
  }
24260
25812
  },
24261
25813
  {
24262
25814
  "kind": "field",
24263
- "name": "focusedRadio",
25815
+ "name": "disabled",
24264
25816
  "type": {
24265
- "text": "HTMLInputElement | null"
25817
+ "text": "boolean"
24266
25818
  },
24267
- "privacy": "private",
24268
25819
  "inheritedFrom": {
24269
- "name": "RadioGroup",
24270
- "module": "src/radio-group/radio-group.ts"
25820
+ "name": "SearchBar",
25821
+ "module": "src/search-bar/search-bar.ts"
24271
25822
  }
24272
25823
  },
24273
25824
  {
24274
25825
  "kind": "field",
24275
- "name": "direction",
25826
+ "name": "loading",
24276
25827
  "type": {
24277
- "text": "Direction"
25828
+ "text": "boolean"
24278
25829
  },
24279
- "privacy": "private",
24280
25830
  "inheritedFrom": {
24281
- "name": "RadioGroup",
24282
- "module": "src/radio-group/radio-group.ts"
25831
+ "name": "SearchBar",
25832
+ "module": "src/search-bar/search-bar.ts"
24283
25833
  }
24284
25834
  },
24285
25835
  {
24286
25836
  "kind": "field",
24287
- "name": "parentToolbar",
25837
+ "name": "selectedOptions",
24288
25838
  "type": {
24289
- "text": "HTMLElement | null"
25839
+ "text": "SelectedOption[]"
24290
25840
  },
24291
- "privacy": "private",
25841
+ "default": "[]",
24292
25842
  "inheritedFrom": {
24293
- "name": "RadioGroup",
24294
- "module": "src/radio-group/radio-group.ts"
25843
+ "name": "SearchBar",
25844
+ "module": "src/search-bar/search-bar.ts"
24295
25845
  }
24296
25846
  },
24297
25847
  {
24298
25848
  "kind": "field",
24299
- "name": "isInsideToolbar",
25849
+ "name": "filteredOptions",
24300
25850
  "type": {
24301
- "text": "boolean"
25851
+ "text": "AvailableOption[]"
24302
25852
  },
24303
- "privacy": "private",
24304
25853
  "inheritedFrom": {
24305
- "name": "RadioGroup",
24306
- "module": "src/radio-group/radio-group.ts"
25854
+ "name": "SearchBar",
25855
+ "module": "src/search-bar/search-bar.ts"
24307
25856
  }
24308
25857
  },
24309
25858
  {
24310
25859
  "kind": "field",
24311
- "name": "isInsideFoundationToolbar",
25860
+ "name": "selectedOptionsDiv",
24312
25861
  "type": {
24313
- "text": "boolean"
25862
+ "text": "HTMLDivElement"
24314
25863
  },
24315
- "privacy": "private",
25864
+ "privacy": "public",
24316
25865
  "inheritedFrom": {
24317
- "name": "RadioGroup",
24318
- "module": "src/radio-group/radio-group.ts"
25866
+ "name": "SearchBar",
25867
+ "module": "src/search-bar/search-bar.ts"
24319
25868
  }
24320
25869
  },
24321
25870
  {
24322
25871
  "kind": "method",
24323
- "name": "setupRadioButtons",
24324
- "privacy": "private",
25872
+ "name": "clear",
25873
+ "privacy": "public",
25874
+ "inheritedFrom": {
25875
+ "name": "SearchBar",
25876
+ "module": "src/search-bar/search-bar.ts"
25877
+ }
25878
+ },
25879
+ {
25880
+ "kind": "method",
25881
+ "name": "clearSearch",
25882
+ "privacy": "public",
24325
25883
  "return": {
24326
25884
  "type": {
24327
25885
  "text": "void"
24328
25886
  }
24329
25887
  },
24330
25888
  "inheritedFrom": {
24331
- "name": "RadioGroup",
24332
- "module": "src/radio-group/radio-group.ts"
25889
+ "name": "SearchBar",
25890
+ "module": "src/search-bar/search-bar.ts"
24333
25891
  }
24334
25892
  },
24335
25893
  {
24336
- "kind": "field",
24337
- "name": "radioChangeHandler",
24338
- "privacy": "private",
25894
+ "kind": "method",
25895
+ "name": "inputdeleted",
25896
+ "privacy": "public",
24339
25897
  "inheritedFrom": {
24340
- "name": "RadioGroup",
24341
- "module": "src/radio-group/radio-group.ts"
25898
+ "name": "SearchBar",
25899
+ "module": "src/search-bar/search-bar.ts"
24342
25900
  }
24343
25901
  },
24344
25902
  {
24345
- "kind": "field",
24346
- "name": "moveToRadioByIndex",
24347
- "privacy": "private",
25903
+ "kind": "method",
25904
+ "name": "changeHandler",
25905
+ "privacy": "public",
24348
25906
  "inheritedFrom": {
24349
- "name": "RadioGroup",
24350
- "module": "src/radio-group/radio-group.ts"
25907
+ "name": "SearchBar",
25908
+ "module": "src/search-bar/search-bar.ts"
24351
25909
  }
24352
25910
  },
24353
25911
  {
24354
- "kind": "field",
24355
- "name": "moveRightOffGroup",
24356
- "privacy": "private",
25912
+ "kind": "method",
25913
+ "name": "pasteHandler",
25914
+ "privacy": "public",
25915
+ "parameters": [
25916
+ {
25917
+ "name": "event",
25918
+ "type": {
25919
+ "text": "ClipboardEvent"
25920
+ }
25921
+ }
25922
+ ],
24357
25923
  "inheritedFrom": {
24358
- "name": "RadioGroup",
24359
- "module": "src/radio-group/radio-group.ts"
25924
+ "name": "SearchBar",
25925
+ "module": "src/search-bar/search-bar.ts"
24360
25926
  }
24361
25927
  },
24362
25928
  {
24363
- "kind": "field",
24364
- "name": "moveLeftOffGroup",
24365
- "privacy": "private",
25929
+ "kind": "method",
25930
+ "name": "hasSelectedOption",
25931
+ "privacy": "public",
25932
+ "parameters": [
25933
+ {
25934
+ "name": "term",
25935
+ "type": {
25936
+ "text": "string"
25937
+ }
25938
+ },
25939
+ {
25940
+ "name": "field",
25941
+ "type": {
25942
+ "text": "string"
25943
+ }
25944
+ }
25945
+ ],
24366
25946
  "inheritedFrom": {
24367
- "name": "RadioGroup",
24368
- "module": "src/radio-group/radio-group.ts"
25947
+ "name": "SearchBar",
25948
+ "module": "src/search-bar/search-bar.ts"
24369
25949
  }
24370
25950
  },
24371
25951
  {
24372
- "kind": "field",
24373
- "name": "shouldMoveOffGroupToTheRight",
24374
- "privacy": "private",
25952
+ "kind": "method",
25953
+ "name": "unselectOption",
25954
+ "privacy": "public",
25955
+ "parameters": [
25956
+ {
25957
+ "name": "option",
25958
+ "type": {
25959
+ "text": "any"
25960
+ }
25961
+ }
25962
+ ],
24375
25963
  "inheritedFrom": {
24376
- "name": "RadioGroup",
24377
- "module": "src/radio-group/radio-group.ts"
25964
+ "name": "SearchBar",
25965
+ "module": "src/search-bar/search-bar.ts"
24378
25966
  }
24379
25967
  },
24380
25968
  {
24381
- "kind": "field",
24382
- "name": "shouldMoveOffGroupToTheLeft",
24383
- "privacy": "private",
25969
+ "kind": "method",
25970
+ "name": "inputHandler",
25971
+ "privacy": "public",
24384
25972
  "inheritedFrom": {
24385
- "name": "RadioGroup",
24386
- "module": "src/radio-group/radio-group.ts"
25973
+ "name": "SearchBar",
25974
+ "module": "src/search-bar/search-bar.ts"
24387
25975
  }
24388
25976
  },
24389
25977
  {
24390
- "kind": "field",
24391
- "name": "checkFocusedRadio",
25978
+ "kind": "method",
25979
+ "name": "filterSelectedOptions",
24392
25980
  "privacy": "private",
25981
+ "parameters": [
25982
+ {
25983
+ "name": "term",
25984
+ "type": {
25985
+ "text": "string"
25986
+ }
25987
+ }
25988
+ ],
24393
25989
  "inheritedFrom": {
24394
- "name": "RadioGroup",
24395
- "module": "src/radio-group/radio-group.ts"
25990
+ "name": "SearchBar",
25991
+ "module": "src/search-bar/search-bar.ts"
24396
25992
  }
24397
25993
  },
24398
25994
  {
24399
25995
  "kind": "field",
24400
- "name": "moveRight",
25996
+ "name": "normalizeDelimiter",
24401
25997
  "privacy": "private",
24402
25998
  "inheritedFrom": {
24403
- "name": "RadioGroup",
24404
- "module": "src/radio-group/radio-group.ts"
25999
+ "name": "SearchBar",
26000
+ "module": "src/search-bar/search-bar.ts"
24405
26001
  }
24406
26002
  },
24407
26003
  {
24408
26004
  "kind": "field",
24409
- "name": "moveLeft",
26005
+ "name": "addOrReplaceSelectedText",
24410
26006
  "privacy": "private",
24411
26007
  "inheritedFrom": {
24412
- "name": "RadioGroup",
24413
- "module": "src/radio-group/radio-group.ts"
26008
+ "name": "SearchBar",
26009
+ "module": "src/search-bar/search-bar.ts"
24414
26010
  }
24415
26011
  },
24416
26012
  {
@@ -24422,8 +26018,8 @@
24422
26018
  "privacy": "private",
24423
26019
  "default": "void 0",
24424
26020
  "inheritedFrom": {
24425
- "name": "RadioGroup",
24426
- "module": "src/radio-group/radio-group.ts"
26021
+ "name": "FoundationElement",
26022
+ "module": "src/foundation-element/foundation-element.ts"
24427
26023
  }
24428
26024
  },
24429
26025
  {
@@ -24435,8 +26031,8 @@
24435
26031
  "privacy": "public",
24436
26032
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
24437
26033
  "inheritedFrom": {
24438
- "name": "RadioGroup",
24439
- "module": "src/radio-group/radio-group.ts"
26034
+ "name": "FoundationElement",
26035
+ "module": "src/foundation-element/foundation-element.ts"
24440
26036
  }
24441
26037
  },
24442
26038
  {
@@ -24448,8 +26044,8 @@
24448
26044
  "privacy": "public",
24449
26045
  "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.",
24450
26046
  "inheritedFrom": {
24451
- "name": "RadioGroup",
24452
- "module": "src/radio-group/radio-group.ts"
26047
+ "name": "FoundationElement",
26048
+ "module": "src/foundation-element/foundation-element.ts"
24453
26049
  }
24454
26050
  },
24455
26051
  {
@@ -24462,8 +26058,8 @@
24462
26058
  }
24463
26059
  },
24464
26060
  "inheritedFrom": {
24465
- "name": "RadioGroup",
24466
- "module": "src/radio-group/radio-group.ts"
26061
+ "name": "FoundationElement",
26062
+ "module": "src/foundation-element/foundation-element.ts"
24467
26063
  }
24468
26064
  },
24469
26065
  {
@@ -24475,8 +26071,8 @@
24475
26071
  "privacy": "public",
24476
26072
  "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.",
24477
26073
  "inheritedFrom": {
24478
- "name": "RadioGroup",
24479
- "module": "src/radio-group/radio-group.ts"
26074
+ "name": "FoundationElement",
26075
+ "module": "src/foundation-element/foundation-element.ts"
24480
26076
  }
24481
26077
  },
24482
26078
  {
@@ -24489,8 +26085,8 @@
24489
26085
  }
24490
26086
  },
24491
26087
  "inheritedFrom": {
24492
- "name": "RadioGroup",
24493
- "module": "src/radio-group/radio-group.ts"
26088
+ "name": "FoundationElement",
26089
+ "module": "src/foundation-element/foundation-element.ts"
24494
26090
  }
24495
26091
  },
24496
26092
  {
@@ -24520,42 +26116,92 @@
24520
26116
  ],
24521
26117
  "description": "Defines an element registry function with a set of element definition defaults.",
24522
26118
  "inheritedFrom": {
24523
- "name": "RadioGroup",
24524
- "module": "src/radio-group/radio-group.ts"
26119
+ "name": "FoundationElement",
26120
+ "module": "src/foundation-element/foundation-element.ts"
24525
26121
  }
24526
26122
  }
24527
26123
  ],
24528
- "events": [
26124
+ "superclass": {
26125
+ "name": "FoundationSearchBar",
26126
+ "package": "@genesislcap/foundation-ui"
26127
+ },
26128
+ "tagName": "%%prefix%%-search-bar",
26129
+ "customElement": true,
26130
+ "attributes": [
24529
26131
  {
24530
- "description": "Fires a custom 'change' event when the value changes",
24531
- "name": "change",
26132
+ "name": "appearance",
26133
+ "type": {
26134
+ "text": "string"
26135
+ },
26136
+ "default": "'neutral'",
26137
+ "fieldName": "appearance",
24532
26138
  "inheritedFrom": {
24533
- "name": "RadioGroup",
24534
- "module": "src/radio-group/radio-group.ts"
26139
+ "name": "SearchBar",
26140
+ "module": "src/search-bar/search-bar.ts"
26141
+ }
26142
+ },
26143
+ {
26144
+ "name": "minlength",
26145
+ "type": {
26146
+ "text": "number"
26147
+ },
26148
+ "default": "INPUT_MIN_LENGTH",
26149
+ "resolveInitializer": {
26150
+ "module": "/src/search-bar/search-bar.types"
26151
+ },
26152
+ "fieldName": "minlength",
26153
+ "inheritedFrom": {
26154
+ "name": "SearchBar",
26155
+ "module": "src/search-bar/search-bar.ts"
26156
+ }
26157
+ },
26158
+ {
26159
+ "name": "placeholder",
26160
+ "type": {
26161
+ "text": "string"
26162
+ },
26163
+ "default": "'Start typing to search'",
26164
+ "fieldName": "placeholder",
26165
+ "inheritedFrom": {
26166
+ "name": "SearchBar",
26167
+ "module": "src/search-bar/search-bar.ts"
26168
+ }
26169
+ },
26170
+ {
26171
+ "name": "disabled",
26172
+ "type": {
26173
+ "text": "boolean"
26174
+ },
26175
+ "fieldName": "disabled",
26176
+ "inheritedFrom": {
26177
+ "name": "SearchBar",
26178
+ "module": "src/search-bar/search-bar.ts"
24535
26179
  }
24536
26180
  }
24537
26181
  ]
24538
26182
  },
24539
26183
  {
24540
26184
  "kind": "variable",
24541
- "name": "zeroRadioGroup"
26185
+ "name": "zeroSearchBar",
26186
+ "description": "The Zero Search Bar",
26187
+ "privacy": "public"
24542
26188
  }
24543
26189
  ],
24544
26190
  "exports": [
24545
26191
  {
24546
26192
  "kind": "js",
24547
- "name": "RadioGroup",
26193
+ "name": "SearchBar",
24548
26194
  "declaration": {
24549
- "name": "RadioGroup",
24550
- "module": "src/radio-group/radio-group.ts"
26195
+ "name": "SearchBar",
26196
+ "module": "src/search-bar/search-bar.ts"
24551
26197
  }
24552
26198
  },
24553
26199
  {
24554
26200
  "kind": "js",
24555
- "name": "zeroRadioGroup",
26201
+ "name": "zeroSearchBar",
24556
26202
  "declaration": {
24557
- "name": "zeroRadioGroup",
24558
- "module": "src/radio-group/radio-group.ts"
26203
+ "name": "zeroSearchBar",
26204
+ "module": "src/search-bar/search-bar.ts"
24559
26205
  }
24560
26206
  }
24561
26207
  ]