@windstream/react-shared-components 0.1.29 → 0.1.31

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
@@ -59,7 +59,7 @@ type InputFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
59
59
 
60
60
  declare const InputField: ForwardRefRenderFunction<HTMLInputElement, InputFieldProps>;
61
61
  declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> & {
62
- state?: "default" | "focus" | "active" | "hover" | "filled" | "error" | undefined;
62
+ state?: "default" | "error" | "focus" | "active" | "hover" | "filled" | undefined;
63
63
  size?: "slim" | "medium" | "large" | undefined;
64
64
  label?: string | undefined;
65
65
  errorText?: string | undefined;
@@ -67,7 +67,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
67
67
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
68
68
  prefixIconFill?: boolean | undefined;
69
69
  suffixIconFill?: boolean | undefined;
70
- suffixIconName?: "visibility" | "visibility_off" | "lock" | undefined;
70
+ suffixIconName?: "visibility" | "lock" | "visibility_off" | undefined;
71
71
  suffixIconSize?: 20 | 24 | 40 | 48 | undefined;
72
72
  containerClassName?: string | undefined;
73
73
  prefixIconClassName?: string | undefined;
@@ -390,7 +390,9 @@ type SelectPlanButtonProps = {
390
390
  speed: string;
391
391
  techType?: string;
392
392
  isMax?: boolean;
393
+ iconSize?: Size$1;
393
394
  isSelected?: boolean;
395
+ iconClassName?: string;
394
396
  renderCheckPlans?: (overrides?: CheckPlansProps) => React__default.ReactNode;
395
397
  cta?: ButtonProps$3;
396
398
  };
package/dist/index.d.ts CHANGED
@@ -59,15 +59,15 @@ type InputFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
59
59
 
60
60
  declare const InputField: ForwardRefRenderFunction<HTMLInputElement, InputFieldProps>;
61
61
  declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> & {
62
- state?: "default" | "focus" | "active" | "hover" | "filled" | "error" | undefined;
63
- size?: "slim" | "medium" | "large" | undefined;
62
+ state?: "default" | "error" | "focus" | "active" | "hover" | "filled" | undefined;
63
+ size?: "medium" | "large" | "slim" | undefined;
64
64
  label?: string | undefined;
65
65
  errorText?: string | undefined;
66
66
  prefixIconName?: "search" | "location_on" | undefined;
67
67
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
68
68
  prefixIconFill?: boolean | undefined;
69
69
  suffixIconFill?: boolean | undefined;
70
- suffixIconName?: "visibility" | "visibility_off" | "lock" | undefined;
70
+ suffixIconName?: "visibility" | "lock" | "visibility_off" | undefined;
71
71
  suffixIconSize?: 20 | 24 | 40 | 48 | undefined;
72
72
  containerClassName?: string | undefined;
73
73
  prefixIconClassName?: string | undefined;
@@ -390,7 +390,9 @@ type SelectPlanButtonProps = {
390
390
  speed: string;
391
391
  techType?: string;
392
392
  isMax?: boolean;
393
+ iconSize?: Size$1;
393
394
  isSelected?: boolean;
395
+ iconClassName?: string;
394
396
  renderCheckPlans?: (overrides?: CheckPlansProps) => React__default.ReactNode;
395
397
  cta?: ButtonProps$3;
396
398
  };