@windstream/react-shared-components 0.0.58 → 0.0.60

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
@@ -57,15 +57,15 @@ type InputFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
57
57
 
58
58
  declare const InputField: ForwardRefRenderFunction<HTMLInputElement, InputFieldProps>;
59
59
  declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> & {
60
- state?: "default" | "focus" | "active" | "hover" | "filled" | "error" | undefined;
61
- size?: "slim" | "medium" | "large" | undefined;
60
+ state?: "default" | "error" | "filled" | "active" | "focus" | "hover" | undefined;
61
+ size?: "medium" | "large" | "slim" | 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;
68
- suffixIconName?: "visibility" | "visibility_off" | "lock" | undefined;
68
+ suffixIconName?: "visibility" | "lock" | "visibility_off" | undefined;
69
69
  suffixIconSize?: 20 | 24 | 40 | 48 | undefined;
70
70
  containerClassName?: string | undefined;
71
71
  prefixIconClassName?: string | undefined;
@@ -374,6 +374,7 @@ declare const SeeMore: React.FC<SeeMoreProps>;
374
374
  type SelectPlanButtonProps = {
375
375
  onSelect: () => void;
376
376
  speed: string;
377
+ isSelected?: boolean;
377
378
  };
378
379
 
379
380
  declare const SelectPlanButton: React.FC<SelectPlanButtonProps>;
package/dist/index.d.ts CHANGED
@@ -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
 
@@ -374,6 +374,7 @@ declare const SeeMore: React.FC<SeeMoreProps>;
374
374
  type SelectPlanButtonProps = {
375
375
  onSelect: () => void;
376
376
  speed: string;
377
+ isSelected?: boolean;
377
378
  };
378
379
 
379
380
  declare const SelectPlanButton: React.FC<SelectPlanButtonProps>;