@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.
- package/dist/contentful/index.d.ts +2 -2
- package/dist/contentful/index.esm.js +3 -3
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +3 -3
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +5 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/animation-wrapper/index.tsx +5 -0
- package/src/components/animation-wrapper/types.ts +7 -1
- package/src/components/brand-button/index.tsx +12 -0
- package/src/components/brand-button/types.ts +9 -0
- package/src/contentful/blocks/button/index.tsx +77 -1
- package/src/contentful/blocks/button/types.ts +6 -1
- package/src/contentful/blocks/email-input-block/index.tsx +3 -4
- package/src/contentful/blocks/email-input-block/types.ts +3 -1
- package/src/contentful/blocks/image-promo-bar/index.tsx +248 -248
- package/src/types/micro-components.ts +13 -2
|
@@ -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?:
|
|
792
|
+
caption?: React__default.ReactNode;
|
|
793
793
|
backgroundColor?: "green" | "white" | "yellow" | "blue" | "navy";
|
|
794
794
|
onSubmit: (values: EmailInputFormValues) => void;
|
|
795
795
|
}
|