@windstream/react-shared-components 0.0.95 → 0.0.96
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/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/primary-hero/index.tsx +1 -0
package/dist/core.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" | "
|
|
63
|
-
size?: "
|
|
62
|
+
state?: "default" | "focus" | "active" | "hover" | "filled" | "error" | undefined;
|
|
63
|
+
size?: "slim" | "medium" | "large" | 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" | "
|
|
70
|
+
suffixIconName?: "visibility" | "visibility_off" | "lock" | undefined;
|
|
71
71
|
suffixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
72
72
|
containerClassName?: string | undefined;
|
|
73
73
|
prefixIconClassName?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -343,7 +343,7 @@ type ButtonAsAnchor = ButtonCustomProps & Omit<AnchorHTMLAttributes<HTMLAnchorEl
|
|
|
343
343
|
};
|
|
344
344
|
type ButtonProps = ButtonAsButton | ButtonAsAnchor;
|
|
345
345
|
|
|
346
|
-
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<
|
|
346
|
+
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
347
347
|
|
|
348
348
|
declare const Checklist: React__default.FC<ChecklistProps>;
|
|
349
349
|
|
package/package.json
CHANGED