@windstream/react-shared-components 0.1.7 → 0.1.9

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.
@@ -1,4 +1,4 @@
1
- import React$1, { ReactNode } from 'react';
1
+ import React$1, { ReactNode, FC } from 'react';
2
2
  import { CheckPlansProps, Asset, Button as Button$1, ButtonGroup } from '@shared/types/micro-components';
3
3
  import { ButtonProps as ButtonProps$1 } from '@shared/contentful/blocks/button/types';
4
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -520,5 +520,41 @@ type SearchBlockProps = {
520
520
 
521
521
  declare const SearchBlock: React$1.FC<SearchBlockProps>;
522
522
 
523
- export { Accordion, BlogCard, BlogGrid, BreadcrumbNavigation, Button, Callout, Cards, Carousel, ComparisonTable, CtaCallout, FindKinetic, FloatingBanner, Footer, ImagePromoBar, Modal, Navigation, PrimaryHero, ProductCard, SearchBlock, ShapeBackgroundWrapper, SimpleCard, TestimonialCard, Text };
524
- export type { AccordionProps, BlogCardProps$1 as BlogCardProps, BlogGridProps, BreadcrumbNavigationProps, ButtonProps, CalloutProps, CardsProps, CarouselProps, ComparisonTableProps, CtaCalloutProps, FindKineticProps, FloatingBannerProps, FooterProps, ImagePromoBarProps, ModalProps, NavigationProps, PrimaryHeroProps, ProductCardProps, SearchBlockProps, ShapeBackgroundWrapperProps, SimpleCardProps, TestimonialCardProps, TextProps };
523
+ interface AddressInputBannerProps {
524
+ entryName?: string;
525
+ title: string;
526
+ variant?: string;
527
+ cta?: ButtonProps$1;
528
+ navHeight?: number;
529
+ isVisible?: boolean;
530
+ renderCheckPlans?: (overrides?: CheckPlansProps) => React$1.ReactNode;
531
+ }
532
+
533
+ declare const AddressInputBanner: FC<AddressInputBannerProps>;
534
+
535
+ interface DynamicTabsT {
536
+ tabs?: {
537
+ items: {
538
+ tabName: string;
539
+ anchorId: string;
540
+ tabContent: {
541
+ items: any[];
542
+ };
543
+ }[];
544
+ };
545
+ tabsContent?: React$1.ReactNode[];
546
+ entryTitle?: string;
547
+ anchorId?: string;
548
+ title?: string;
549
+ subTitle?: string;
550
+ description?: string;
551
+ backgroundColor?: "white";
552
+ textColor?: "navy";
553
+ navigationType?: boolean;
554
+ mobileSidebarTabType?: boolean;
555
+ }
556
+
557
+ declare function DynamicTabs(props: DynamicTabsT): react_jsx_runtime.JSX.Element;
558
+
559
+ export { Accordion, AddressInputBanner, BlogCard, BlogGrid, BreadcrumbNavigation, Button, Callout, Cards, Carousel, ComparisonTable, CtaCallout, DynamicTabs, FindKinetic, FloatingBanner, Footer, ImagePromoBar, Modal, Navigation, PrimaryHero, ProductCard, SearchBlock, ShapeBackgroundWrapper, SimpleCard, TestimonialCard, Text };
560
+ export type { AccordionProps, AddressInputBannerProps, BlogCardProps$1 as BlogCardProps, BlogGridProps, BreadcrumbNavigationProps, ButtonProps, CalloutProps, CardsProps, CarouselProps, ComparisonTableProps, CtaCalloutProps, DynamicTabsT, FindKineticProps, FloatingBannerProps, FooterProps, ImagePromoBarProps, ModalProps, NavigationProps, PrimaryHeroProps, ProductCardProps, SearchBlockProps, ShapeBackgroundWrapperProps, SimpleCardProps, TestimonialCardProps, TextProps };