@windstream/react-shared-components 0.2.17 → 0.2.19
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.d.ts +1 -1
- package/dist/contentful/index.esm.js +2 -2
- 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 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/checkbox/index.test.tsx +26 -0
- package/src/components/checkbox/index.tsx +2 -2
- package/src/components/checkbox/types.ts +1 -0
- package/src/components/select/index.test.tsx +69 -1
- package/src/components/select/index.tsx +21 -13
- package/src/components/select/types.ts +2 -1
- package/src/contentful/blocks/primary-hero/PrimaryHero.stories.tsx +268 -4
- package/src/contentful/blocks/primary-hero/index.test.tsx +1 -1
- package/src/contentful/blocks/primary-hero/index.tsx +47 -20
- package/src/contentful/blocks/primary-hero/types.ts +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ declare const Accordion: React.FC<AccordionProps>;
|
|
|
255
255
|
type InfoIconProps = {
|
|
256
256
|
onClick?: () => void;
|
|
257
257
|
dataTestId?: string;
|
|
258
|
+
iconSize?: number;
|
|
258
259
|
};
|
|
259
260
|
type CheckboxProps = {
|
|
260
261
|
checked?: boolean;
|
|
@@ -300,7 +301,8 @@ type OwnProps$1 = {
|
|
|
300
301
|
helperText?: string;
|
|
301
302
|
label?: string;
|
|
302
303
|
labelClassName?: string;
|
|
303
|
-
|
|
304
|
+
singleValueClassName?: string;
|
|
305
|
+
size?: "sm" | "md" | "lg";
|
|
304
306
|
variant?: "default" | "unstyled";
|
|
305
307
|
"data-cy"?: string;
|
|
306
308
|
"data-testid"?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
|
|
|
65
65
|
size?: "slim" | "medium" | "large" | undefined;
|
|
66
66
|
label?: string | undefined;
|
|
67
67
|
errorText?: string | undefined;
|
|
68
|
-
prefixIconName?: "
|
|
68
|
+
prefixIconName?: "search" | "location_on" | undefined;
|
|
69
69
|
prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
70
70
|
prefixIconFill?: boolean | undefined;
|
|
71
71
|
suffixIconFill?: boolean | undefined;
|
|
@@ -255,6 +255,7 @@ declare const Accordion: React.FC<AccordionProps>;
|
|
|
255
255
|
type InfoIconProps = {
|
|
256
256
|
onClick?: () => void;
|
|
257
257
|
dataTestId?: string;
|
|
258
|
+
iconSize?: number;
|
|
258
259
|
};
|
|
259
260
|
type CheckboxProps = {
|
|
260
261
|
checked?: boolean;
|
|
@@ -300,7 +301,8 @@ type OwnProps$1 = {
|
|
|
300
301
|
helperText?: string;
|
|
301
302
|
label?: string;
|
|
302
303
|
labelClassName?: string;
|
|
303
|
-
|
|
304
|
+
singleValueClassName?: string;
|
|
305
|
+
size?: "sm" | "md" | "lg";
|
|
304
306
|
variant?: "default" | "unstyled";
|
|
305
307
|
"data-cy"?: string;
|
|
306
308
|
"data-testid"?: string;
|