@windstream/react-shared-components 0.1.95 → 0.1.97

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.
@@ -37,7 +37,7 @@ type ThemeKey$1 = "blue" | "green" | "yellow" | "purple" | "white" | "navy" | "c
37
37
  declare const Accordion: React__default.FC<AccordionProps>;
38
38
 
39
39
  type ButtonProps = {
40
- showButtonAs?: "solid" | "text" | "unstyled";
40
+ showButtonAs?: "solid" | "text" | "unstyled" | "button-with-icon" | "text-with-icon";
41
41
  buttonVariant?: "primary_brand" | "secondary" | "primary_inverse";
42
42
  buttonLabel?: string;
43
43
  buttonPrefix?: string;
@@ -789,7 +789,7 @@ interface EmailInputBlockProps {
789
789
  inputPlaceholder?: string;
790
790
  successFeedback?: string;
791
791
  ctaText?: string;
792
- caption?: string;
792
+ caption?: React__default.ReactNode;
793
793
  backgroundColor?: "green" | "white" | "yellow" | "blue" | "navy";
794
794
  onSubmit: (values: EmailInputFormValues) => void;
795
795
  }