@windstream/react-shared-components 0.1.47 → 0.1.49

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/core.d.ts CHANGED
@@ -63,7 +63,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
63
63
  size?: "slim" | "medium" | "large" | undefined;
64
64
  label?: string | undefined;
65
65
  errorText?: string | undefined;
66
- prefixIconName?: "search" | "location_on" | undefined;
66
+ prefixIconName?: "location_on" | "search" | undefined;
67
67
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
68
68
  prefixIconFill?: boolean | undefined;
69
69
  suffixIconFill?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.1.47",
3
+ "version": "0.1.49",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -2,8 +2,8 @@
2
2
  import { Text } from "@shared/components/text";
3
3
  import type { TypeCartRetentionBannerFields } from "./types";
4
4
  import { useEffect, useState } from "react";
5
- import { Button } from "@shared/components/button";
6
- import { Modal } from "@shared/components/modal";
5
+ import { Button } from "@shared/contentful/blocks/button";
6
+ import { Modal } from "@shared/contentful/blocks/modal";
7
7
  import { toDocument } from "@shared/utils/contentful/to-document";
8
8
  import { renderContentfulRichText } from "@shared/hooks/contentful/use-contentful-rich-text";
9
9
 
@@ -83,6 +83,10 @@ export type { TypeComponentRichTextFields as CookieBannerProps } from "./blocks/
83
83
  export { EmailInputBlock } from "./blocks/email-input-block";
84
84
  export type { EmailInputBlockProps } from "./blocks/email-input-block/types";
85
85
 
86
+ export { default as CartRetentionBanner } from "./blocks/cart-retention-banner";
87
+ export type {TypeCartRetentionBannerFields as CartRetentionBannerProps } from "./blocks/cart-retention-banner/types";
88
+
89
+
86
90
  // Contentful Rich Text Hooks & Utils
87
91
  export { toDocument } from "../utils/contentful/to-document";
88
92