@windstream/react-shared-components 0.2.16 → 0.2.18
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 +7 -2
- package/dist/contentful/index.esm.js +2 -2
- 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 +2 -2
- package/dist/index.d.ts +3 -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/checklist/index.tsx +22 -1
- package/src/contentful/blocks/email-input-block/index.tsx +35 -15
- package/src/contentful/blocks/email-input-block/types.ts +6 -1
- package/src/contentful/blocks/primary-hero/index.test.tsx +1 -1
- package/src/contentful/blocks/primary-hero/index.tsx +47 -20
- package/src/contentful/blocks/primary-hero/types.ts +1 -1
|
@@ -462,7 +462,7 @@ type PrimaryHeroProps = {
|
|
|
462
462
|
carouselImages?: string[];
|
|
463
463
|
squareImage?: boolean;
|
|
464
464
|
badgeImage?: string;
|
|
465
|
-
textColor?:
|
|
465
|
+
textColor?: "light" | "dark";
|
|
466
466
|
maxWidth?: boolean;
|
|
467
467
|
renderCheckPlans?: (overrides?: CheckPlansProps) => React__default.ReactNode;
|
|
468
468
|
onModalButtonClick?: (id?: string) => void;
|
|
@@ -796,7 +796,12 @@ interface EmailInputBlockProps {
|
|
|
796
796
|
successFeedback?: string;
|
|
797
797
|
ctaText?: string;
|
|
798
798
|
caption?: React__default.ReactNode;
|
|
799
|
-
backgroundColor?: "green" | "white" | "yellow" | "blue" | "navy";
|
|
799
|
+
backgroundColor?: "green" | "white" | "yellow" | "blue" | "navy" | "gray90";
|
|
800
|
+
themeColor?: "blue" | "green" | "orange" | "purple";
|
|
801
|
+
showPinWheel?: boolean;
|
|
802
|
+
padding?: "none" | "large";
|
|
803
|
+
validationErrorMessage?: string;
|
|
804
|
+
requiredErrorMessage?: string;
|
|
800
805
|
onSubmit: (values: EmailInputFormValues) => void;
|
|
801
806
|
}
|
|
802
807
|
interface EmailInputFormValues {
|