@windstream/react-shared-components 0.0.34 → 0.0.35

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/index.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?: "search" | "location_on" | undefined;
64
+ prefixIconName?: "location_on" | "search" | undefined;
65
65
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
66
66
  prefixIconFill?: boolean | undefined;
67
67
  suffixIconFill?: boolean | undefined;
@@ -331,7 +331,7 @@ type ButtonCustomProps = {
331
331
  };
332
332
  type ButtonProps = ButtonCustomProps & Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className">;
333
333
 
334
- declare const BrandButton: React$1.ForwardRefExoticComponent<_shared_components_brand_button_types.ButtonCustomProps & Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className"> & React$1.RefAttributes<HTMLButtonElement>>;
334
+ declare const BrandButton: React$1.ForwardRefExoticComponent<_shared_components_brand_button_types.ButtonCustomProps & Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "className" | "children"> & React$1.RefAttributes<HTMLButtonElement>>;
335
335
 
336
336
  declare const Checklist: React__default.FC<ChecklistProps>;
337
337
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -77,15 +77,15 @@ export const ImagePromoBar: React.FC<ImagePromoBarProps> = ({
77
77
  </div>
78
78
  ))}
79
79
  {/* CTAs and Disclaimers */}
80
- <div className="flex flex-col gap-8 xl:flex-row xl:gap-3">
80
+ <div className="flex w-full flex-col gap-8 xl:flex-row xl:gap-3">
81
81
  {cta && (
82
82
  <div className="primary-cta w-full xl:w-auto">
83
- <Button {...cta} />
83
+ <Button {...cta} fullWidth={true} />
84
84
  </div>
85
85
  )}
86
86
  {secondaryCta && (
87
87
  <div className="secondary-cta">
88
- <Button {...secondaryCta} />
88
+ <Button {...secondaryCta} fullWidth={true} />
89
89
  </div>
90
90
  )}
91
91
  </div>