@windstream/react-shared-components 0.0.24 → 0.0.25

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
@@ -60,7 +60,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
60
60
  size?: "slim" | "medium" | "large" | undefined;
61
61
  label?: string | undefined;
62
62
  errorText?: string | undefined;
63
- prefixIconName?: "search" | "location_on" | undefined;
63
+ prefixIconName?: "location_on" | "search" | undefined;
64
64
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
65
65
  prefixIconFill?: boolean | undefined;
66
66
  suffixIconFill?: boolean | undefined;
@@ -325,7 +325,7 @@ type ButtonCustomProps = {
325
325
  };
326
326
  type ButtonProps = ButtonCustomProps & Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className">;
327
327
 
328
- declare const BrandButton: React$1.ForwardRefExoticComponent<_shared_components_brand_button_types.ButtonCustomProps & Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className"> & React$1.RefAttributes<HTMLButtonElement>>;
328
+ declare const BrandButton: React$1.ForwardRefExoticComponent<_shared_components_brand_button_types.ButtonCustomProps & Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "className" | "children"> & React$1.RefAttributes<HTMLButtonElement>>;
329
329
 
330
330
  declare const Checklist: React__default.FC<ChecklistProps>;
331
331
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -38,7 +38,7 @@ export const FloatingBanner: React.FC<FloatingBannerProps> = ({
38
38
  return (
39
39
  <div className="component-container">
40
40
  <div
41
- className={`mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto ${maxWidth ? "mx-auto max-w-120" : ""}`}
41
+ className={`mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto ${maxWidth ? " max-w-120" : ""}`}
42
42
  >
43
43
  <div
44
44
  className={`flex flex-col rounded-[28px] px-5 py-7 lg:flex-row lg:rounded-[40px] lg:px-16 lg:py-9 ${bgColorClasses[background]} ${textColorClasses[color]} `}