@windstream/react-shared-components 0.0.77 → 0.0.78

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
@@ -61,7 +61,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
61
61
  size?: "slim" | "medium" | "large" | undefined;
62
62
  label?: string | undefined;
63
63
  errorText?: string | undefined;
64
- prefixIconName?: "location_on" | "search" | undefined;
64
+ prefixIconName?: "search" | "location_on" | undefined;
65
65
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
66
66
  prefixIconFill?: boolean | undefined;
67
67
  suffixIconFill?: boolean | undefined;
@@ -339,7 +339,7 @@ type ButtonAsAnchor = ButtonCustomProps & Omit<AnchorHTMLAttributes<HTMLAnchorEl
339
339
  };
340
340
  type ButtonProps = ButtonAsButton | ButtonAsAnchor;
341
341
 
342
- declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
342
+ declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
343
343
 
344
344
  declare const Checklist: React__default.FC<ChecklistProps>;
345
345
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -4,6 +4,7 @@ import { ImagePromoBarProps } from "./types";
4
4
 
5
5
  import { Checklist } from "@shared/components/checklist";
6
6
  import { Image } from "@shared/components/image";
7
+ import { Link } from "@shared/components/link";
7
8
  import { NextImage } from "@shared/components/next-image";
8
9
  import { Text } from "@shared/components/text";
9
10
 
@@ -77,7 +78,14 @@ export const ImagePromoBar: React.FC<ImagePromoBarProps> = ({
77
78
  {/* Image Links Collection */}
78
79
  {imageLinks?.map((link, index) => (
79
80
  <div key={index} className="image-link">
80
- <Image src={link.url} alt="icon-link" />
81
+ <Link
82
+ variant="unstyled"
83
+ href={link.url}
84
+ target="_blank"
85
+ rel="noopener noreferrer"
86
+ >
87
+ <Image src={link.image} alt="icon-link" />
88
+ </Link>
81
89
  </div>
82
90
  ))}
83
91
  {/* CTAs and Disclaimers */}