@windstream/react-shared-components 0.1.5 → 0.1.7
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 +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 +4 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/alert-card/index.tsx +2 -1
- package/src/components/alert-card/types.ts +2 -1
- package/src/components/material-icon/index.tsx +1 -1
- package/src/components/select/index.tsx +7 -2
- package/src/components/select/types.ts +1 -0
- package/src/contentful/blocks/image-promo-bar/index.tsx +45 -41
package/dist/core.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
|
|
|
63
63
|
size?: "slim" | "medium" | "large" | undefined;
|
|
64
64
|
label?: string | undefined;
|
|
65
65
|
errorText?: string | undefined;
|
|
66
|
-
prefixIconName?: "
|
|
66
|
+
prefixIconName?: "location_on" | "search" | undefined;
|
|
67
67
|
prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
68
68
|
prefixIconFill?: boolean | undefined;
|
|
69
69
|
suffixIconFill?: boolean | undefined;
|
|
@@ -291,6 +291,7 @@ type OwnProps$1 = {
|
|
|
291
291
|
className?: string;
|
|
292
292
|
isCustomStyle?: boolean;
|
|
293
293
|
controlClassName?: string;
|
|
294
|
+
menuClassName?: string;
|
|
294
295
|
filterOptions?: FilterOptions;
|
|
295
296
|
hasError?: boolean;
|
|
296
297
|
error?: string;
|
|
@@ -312,6 +313,7 @@ type AlertCardProps = {
|
|
|
312
313
|
iconName?: IconName;
|
|
313
314
|
iconClassName?: string;
|
|
314
315
|
textVariant?: TextVariant$1;
|
|
316
|
+
iconSize?: Size$1;
|
|
315
317
|
};
|
|
316
318
|
|
|
317
319
|
declare const AlertCard: React__default.FC<AlertCardProps>;
|
|
@@ -343,7 +345,7 @@ type ButtonAsAnchor = ButtonCustomProps & Omit<AnchorHTMLAttributes<HTMLAnchorEl
|
|
|
343
345
|
};
|
|
344
346
|
type ButtonProps = ButtonAsButton | ButtonAsAnchor;
|
|
345
347
|
|
|
346
|
-
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<
|
|
348
|
+
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
347
349
|
|
|
348
350
|
declare const Checklist: React__default.FC<ChecklistProps>;
|
|
349
351
|
|
package/dist/index.d.ts
CHANGED
|
@@ -291,6 +291,7 @@ type OwnProps$1 = {
|
|
|
291
291
|
className?: string;
|
|
292
292
|
isCustomStyle?: boolean;
|
|
293
293
|
controlClassName?: string;
|
|
294
|
+
menuClassName?: string;
|
|
294
295
|
filterOptions?: FilterOptions;
|
|
295
296
|
hasError?: boolean;
|
|
296
297
|
error?: string;
|
|
@@ -312,6 +313,7 @@ type AlertCardProps = {
|
|
|
312
313
|
iconName?: IconName;
|
|
313
314
|
iconClassName?: string;
|
|
314
315
|
textVariant?: TextVariant$1;
|
|
316
|
+
iconSize?: Size$1;
|
|
315
317
|
};
|
|
316
318
|
|
|
317
319
|
declare const AlertCard: React__default.FC<AlertCardProps>;
|