@windstream/react-shared-components 0.0.99 → 0.0.100

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.
@@ -206,7 +206,7 @@ type FloatingBannerProps = {
206
206
  description?: React$1.ReactNode;
207
207
  cta?: any | null;
208
208
  disclaimer?: React$1.ReactNode;
209
- background?: "green" | "navy" | "white";
209
+ background?: "green" | "navy" | "white" | "purple" | "blue" | "yellow";
210
210
  color?: "dark" | "light";
211
211
  maxWidth?: boolean;
212
212
  };
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.0.99",
3
+ "version": "0.0.100",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -8,7 +8,7 @@ export type FloatingBannerProps = {
8
8
  description?: React.ReactNode;
9
9
  cta?: any | null;
10
10
  disclaimer?: React.ReactNode;
11
- background?: "green" | "navy" | "white";
11
+ background?: "green" | "navy" | "white" | "purple" | "blue" | "yellow";
12
12
  color?: "dark" | "light";
13
13
  maxWidth?: boolean;
14
14
  };