@mvf/external-components 3.11.2-dev.1 → 3.11.3
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/Components/Atoms/AnimationWrapper/makeAnimationWrapperStyling.d.ts +1 -1
- package/Components/Atoms/Button/makeButtonStyling.d.ts +1 -1
- package/Components/Atoms/CardButton/makeCardButtonStyling.d.ts +2 -2
- package/Components/Atoms/CircularProgress/makeCircularProgressStyling.d.ts +1 -1
- package/Components/Atoms/ErrorMessage/makeErrorMessageStyles.d.ts +1 -1
- package/Components/Atoms/FormControl/makeFormControlStyles.d.ts +1 -1
- package/Components/Atoms/IconButton/makeIconButtonStyling.d.ts +1 -1
- package/Components/Atoms/InfoPanel/makeInfoPanelStyling.d.ts +5 -5
- package/Components/Atoms/Input/makeInputStyles.d.ts +4 -4
- package/Components/Atoms/InputLabel/makeInputLabelStyles.d.ts +1 -1
- package/Components/Atoms/Link/makeLinkStyling.d.ts +1 -1
- package/Components/Atoms/LoadingIndicator/makeLinearProgressStyling.d.ts +1 -1
- package/Components/Atoms/Modal/makeModalStylings.d.ts +3 -3
- package/Components/Atoms/ProgressBar/makeProgressBarStyling.d.ts +3 -3
- package/Components/Atoms/Text/makeTextStyling.d.ts +1 -1
- package/Components/Molecules/CheckBox/makeCheckBoxStyling.d.ts +10 -10
- package/Components/Molecules/DatePicker/makeDatePickerStyling.d.ts +3 -3
- package/Components/Molecules/DropDownSelect/makeDropDownSelectStyling.d.ts +3 -3
- package/Components/Molecules/IconTileCheckBox/makeIconTileCheckBoxStyling.d.ts +5 -5
- package/Components/Molecules/IconTileRadioButton/makeIconTileRadioButtonStyling.d.ts +4 -4
- package/Components/Molecules/NavBar/makeNavBarStyles.d.ts +4 -4
- package/Components/Molecules/PhoneNumberTextField/makeFormControlPhoneNumberStyling.d.ts +1 -1
- package/Components/Molecules/RadioButton/makeRadioButtonStyling.d.ts +7 -7
- package/Components/Molecules/ScrollContainer/makeScrollContainerStyling.d.ts +3 -3
- package/Components/Molecules/SupplierCard/makeSupplierCardStyling.d.ts +12 -12
- package/Components/Molecules/ThankYouBanner/makeThankYouBannerStyling.d.ts +2 -2
- package/Components/Organisms/ListLayout/makeListLayoutStyling.d.ts +2 -2
- package/Components/Organisms/TileLayout/makeTileLayoutStyling.d.ts +3 -3
- package/package.json +1 -1
@@ -2,5 +2,5 @@ declare const makeAnimationWrapperStyling: ({ effect, delay, animationTime, }: {
|
|
2
2
|
effect?: string | undefined;
|
3
3
|
delay?: number | undefined;
|
4
4
|
animationTime?: number | undefined;
|
5
|
-
}) => import("@emotion/
|
5
|
+
}) => import("@emotion/react").SerializedStyles;
|
6
6
|
export default makeAnimationWrapperStyling;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { Theme } from '@emotion/react';
|
2
|
-
declare const makeButtonStyling: (disabled: boolean, theme: Theme, textOverflowHandling: string, invertColors: boolean) => import("@emotion/
|
2
|
+
declare const makeButtonStyling: (disabled: boolean, theme: Theme, textOverflowHandling: string, invertColors: boolean) => import("@emotion/react").SerializedStyles;
|
3
3
|
export default makeButtonStyling;
|
@@ -3,9 +3,9 @@ interface ICardStylingProps {
|
|
3
3
|
selected: boolean;
|
4
4
|
outlined?: boolean;
|
5
5
|
}
|
6
|
-
declare const makeCardButtonStyling: ({ isError, selected, outlined, }: ICardStylingProps) => import("@emotion/
|
6
|
+
declare const makeCardButtonStyling: ({ isError, selected, outlined, }: ICardStylingProps) => import("@emotion/react").SerializedStyles;
|
7
7
|
interface ICardStylingOverlayProps {
|
8
8
|
selected: boolean;
|
9
9
|
}
|
10
|
-
export declare const makeCardButtonSelectedOverlayStyling: ({ selected, }: ICardStylingOverlayProps) => import("@emotion/
|
10
|
+
export declare const makeCardButtonSelectedOverlayStyling: ({ selected, }: ICardStylingOverlayProps) => import("@emotion/react").SerializedStyles;
|
11
11
|
export default makeCardButtonStyling;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ITheme } from '../../../Themes/themes';
|
2
|
-
declare const makeCircularProgressStyling: (theme: ITheme) => import("@emotion/
|
2
|
+
declare const makeCircularProgressStyling: (theme: ITheme) => import("@emotion/react").SerializedStyles;
|
3
3
|
export default makeCircularProgressStyling;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ITheme } from '../../../Themes/themes';
|
2
|
-
declare const makeErrorMessageStyles: (theme: ITheme) => import("@emotion/
|
2
|
+
declare const makeErrorMessageStyles: (theme: ITheme) => import("@emotion/react").SerializedStyles;
|
3
3
|
export default makeErrorMessageStyles;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const makeFormControlStyles: () => import("@emotion/
|
1
|
+
declare const makeFormControlStyles: () => import("@emotion/react").SerializedStyles;
|
2
2
|
export default makeFormControlStyles;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const makeIconButtonStyling: () => import("@emotion/
|
1
|
+
export declare const makeIconButtonStyling: () => import("@emotion/react").SerializedStyles;
|
2
2
|
export default makeIconButtonStyling;
|
@@ -1,8 +1,8 @@
|
|
1
1
|
declare const makeInfoPanelStyling: () => {
|
2
|
-
panel: import("@emotion/
|
3
|
-
iconBox: import("@emotion/
|
4
|
-
textBox: import("@emotion/
|
5
|
-
title: import("@emotion/
|
6
|
-
children: import("@emotion/
|
2
|
+
panel: import("@emotion/react").SerializedStyles;
|
3
|
+
iconBox: import("@emotion/react").SerializedStyles;
|
4
|
+
textBox: import("@emotion/react").SerializedStyles;
|
5
|
+
title: import("@emotion/react").SerializedStyles;
|
6
|
+
children: import("@emotion/react").SerializedStyles;
|
7
7
|
};
|
8
8
|
export default makeInfoPanelStyling;
|
@@ -6,9 +6,9 @@ interface IInputStyleProps {
|
|
6
6
|
error: boolean;
|
7
7
|
}
|
8
8
|
declare const makeInputStyles: ({ isAnswered, isOtherOption, isSafari, isAutoFilledActive, error, }: IInputStyleProps) => {
|
9
|
-
input: import("@emotion/
|
10
|
-
validationIcon: import("@emotion/
|
11
|
-
adornmentEnd: import("@emotion/
|
12
|
-
adornmentStart: import("@emotion/
|
9
|
+
input: import("@emotion/react").SerializedStyles;
|
10
|
+
validationIcon: import("@emotion/react").SerializedStyles;
|
11
|
+
adornmentEnd: import("@emotion/react").SerializedStyles;
|
12
|
+
adornmentStart: import("@emotion/react").SerializedStyles;
|
13
13
|
};
|
14
14
|
export default makeInputStyles;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
interface IInputStyleProps {
|
2
2
|
isAnswered?: boolean;
|
3
3
|
}
|
4
|
-
declare const makeInputLabelStyles: ({ isAnswered }: IInputStyleProps) => import("@emotion/
|
4
|
+
declare const makeInputLabelStyles: ({ isAnswered }: IInputStyleProps) => import("@emotion/react").SerializedStyles;
|
5
5
|
export default makeInputLabelStyles;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
interface ILinkStylingProps {
|
2
2
|
variant?: 'button' | 'footer' | 'text';
|
3
3
|
}
|
4
|
-
declare const makeLinkStyling: ({ variant }: ILinkStylingProps) => import("@emotion/
|
4
|
+
declare const makeLinkStyling: ({ variant }: ILinkStylingProps) => import("@emotion/react").SerializedStyles;
|
5
5
|
export default makeLinkStyling;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const makeLinearProgressStyling: () => import("@emotion/
|
1
|
+
declare const makeLinearProgressStyling: () => import("@emotion/react").SerializedStyles;
|
2
2
|
export default makeLinearProgressStyling;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const makeModalStylings: () => {
|
2
|
-
box: import("@emotion/
|
3
|
-
close: import("@emotion/
|
4
|
-
text: import("@emotion/
|
2
|
+
box: import("@emotion/react").SerializedStyles;
|
3
|
+
close: import("@emotion/react").SerializedStyles;
|
4
|
+
text: import("@emotion/react").SerializedStyles;
|
5
5
|
};
|
6
6
|
export default makeModalStylings;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ITheme } from '../../../Themes/themes';
|
2
2
|
declare const makeProgressBarStyling: (theme: ITheme, useLightText: boolean) => {
|
3
|
-
container: import("@emotion/
|
4
|
-
progressBar: import("@emotion/
|
5
|
-
text: import("@emotion/
|
3
|
+
container: import("@emotion/react").SerializedStyles;
|
4
|
+
progressBar: import("@emotion/react").SerializedStyles;
|
5
|
+
text: import("@emotion/react").SerializedStyles;
|
6
6
|
};
|
7
7
|
export default makeProgressBarStyling;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
interface IStyleProps {
|
2
2
|
variant: 'header' | 'summary' | 'note' | 'question' | 'text' | 'footer' | 'listItem' | 'tileItem' | 'contentWithList' | 'tickedList';
|
3
3
|
}
|
4
|
-
declare const makeTextStyling: ({ variant }: IStyleProps) => import("@emotion/
|
4
|
+
declare const makeTextStyling: ({ variant }: IStyleProps) => import("@emotion/react").SerializedStyles;
|
5
5
|
export default makeTextStyling;
|
@@ -1,13 +1,13 @@
|
|
1
|
-
export declare const getPlaceholderStyles: (isTextCentered: boolean, isIconPresent: boolean) => import("@emotion/
|
1
|
+
export declare const getPlaceholderStyles: (isTextCentered: boolean, isIconPresent: boolean) => import("@emotion/react").SerializedStyles;
|
2
2
|
declare const makeCheckBoxStyling: () => {
|
3
|
-
checkbox: import("@emotion/
|
4
|
-
checkboxContainerRight: import("@emotion/
|
5
|
-
grid: import("@emotion/
|
6
|
-
centerIcon: import("@emotion/
|
7
|
-
leftIcon: import("@emotion/
|
8
|
-
imgDiv: import("@emotion/
|
9
|
-
innerGrid: import("@emotion/
|
10
|
-
textGrid: import("@emotion/
|
11
|
-
otherInput: import("@emotion/
|
3
|
+
checkbox: import("@emotion/react").SerializedStyles;
|
4
|
+
checkboxContainerRight: import("@emotion/react").SerializedStyles;
|
5
|
+
grid: import("@emotion/react").SerializedStyles;
|
6
|
+
centerIcon: import("@emotion/react").SerializedStyles;
|
7
|
+
leftIcon: import("@emotion/react").SerializedStyles;
|
8
|
+
imgDiv: import("@emotion/react").SerializedStyles;
|
9
|
+
innerGrid: import("@emotion/react").SerializedStyles;
|
10
|
+
textGrid: import("@emotion/react").SerializedStyles;
|
11
|
+
otherInput: import("@emotion/react").SerializedStyles;
|
12
12
|
};
|
13
13
|
export default makeCheckBoxStyling;
|
@@ -3,8 +3,8 @@ interface ITextFieldStyleProps {
|
|
3
3
|
isError: boolean;
|
4
4
|
}
|
5
5
|
declare const makeDatePickerStyling: ({ isValid, isError }: ITextFieldStyleProps) => {
|
6
|
-
datePickerContainer: import("@emotion/
|
7
|
-
inputAdornmentEnd: import("@emotion/
|
8
|
-
globalStyles: import("@emotion/
|
6
|
+
datePickerContainer: import("@emotion/react").SerializedStyles;
|
7
|
+
inputAdornmentEnd: import("@emotion/react").SerializedStyles;
|
8
|
+
globalStyles: import("@emotion/react").SerializedStyles;
|
9
9
|
};
|
10
10
|
export default makeDatePickerStyling;
|
@@ -4,8 +4,8 @@ interface IDropDownSelectStyleProps {
|
|
4
4
|
isError: boolean;
|
5
5
|
}
|
6
6
|
declare const useDropDownSelectStyles: ({ isIconPresent, isDisabled, isError, }: IDropDownSelectStyleProps) => {
|
7
|
-
listItems: import("@emotion/
|
8
|
-
formControl: import("@emotion/
|
9
|
-
label: import("@emotion/
|
7
|
+
listItems: import("@emotion/react").SerializedStyles;
|
8
|
+
formControl: import("@emotion/react").SerializedStyles;
|
9
|
+
label: import("@emotion/react").SerializedStyles;
|
10
10
|
};
|
11
11
|
export default useDropDownSelectStyles;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
declare const makeIconTileCheckBoxStyling: ({ showText }: {
|
2
2
|
showText: boolean;
|
3
3
|
}) => {
|
4
|
-
container: import("@emotion/
|
5
|
-
icon: import("@emotion/
|
6
|
-
checkbox: import("@emotion/
|
7
|
-
otherInput: import("@emotion/
|
8
|
-
imgDiv: import("@emotion/
|
4
|
+
container: import("@emotion/react").SerializedStyles;
|
5
|
+
icon: import("@emotion/react").SerializedStyles;
|
6
|
+
checkbox: import("@emotion/react").SerializedStyles;
|
7
|
+
otherInput: import("@emotion/react").SerializedStyles;
|
8
|
+
imgDiv: import("@emotion/react").SerializedStyles;
|
9
9
|
};
|
10
10
|
export default makeIconTileCheckBoxStyling;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
declare const makeIconTileRadioButtonStyling: () => {
|
2
|
-
container: import("@emotion/
|
3
|
-
icon: import("@emotion/
|
4
|
-
otherInput: import("@emotion/
|
5
|
-
imgDiv: import("@emotion/
|
2
|
+
container: import("@emotion/react").SerializedStyles;
|
3
|
+
icon: import("@emotion/react").SerializedStyles;
|
4
|
+
otherInput: import("@emotion/react").SerializedStyles;
|
5
|
+
imgDiv: import("@emotion/react").SerializedStyles;
|
6
6
|
};
|
7
7
|
export default makeIconTileRadioButtonStyling;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
declare const makeNavBarStyles: () => {
|
2
|
-
container: import("@emotion/
|
3
|
-
space: import("@emotion/
|
4
|
-
continueButton: import("@emotion/
|
5
|
-
backButton: import("@emotion/
|
2
|
+
container: import("@emotion/react").SerializedStyles;
|
3
|
+
space: import("@emotion/react").SerializedStyles;
|
4
|
+
continueButton: import("@emotion/react").SerializedStyles;
|
5
|
+
backButton: import("@emotion/react").SerializedStyles;
|
6
6
|
};
|
7
7
|
export default makeNavBarStyles;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
interface IMakeFormControlPhoneNumberStylingProps {
|
2
2
|
isAnswered: boolean;
|
3
3
|
}
|
4
|
-
declare const makeFormControlPhoneNumberStyling: ({ isAnswered, }: IMakeFormControlPhoneNumberStylingProps) => import("@emotion/
|
4
|
+
declare const makeFormControlPhoneNumberStyling: ({ isAnswered, }: IMakeFormControlPhoneNumberStylingProps) => import("@emotion/react").SerializedStyles;
|
5
5
|
export default makeFormControlPhoneNumberStyling;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
declare const makeRadioButtonStyling: () => {
|
2
|
-
radio: import("@emotion/
|
3
|
-
grid: import("@emotion/
|
4
|
-
icon: import("@emotion/
|
5
|
-
imgDiv: import("@emotion/
|
6
|
-
innerGrid: import("@emotion/
|
7
|
-
textGrid: import("@emotion/
|
8
|
-
otherInput: import("@emotion/
|
2
|
+
radio: import("@emotion/react").SerializedStyles;
|
3
|
+
grid: import("@emotion/react").SerializedStyles;
|
4
|
+
icon: import("@emotion/react").SerializedStyles;
|
5
|
+
imgDiv: import("@emotion/react").SerializedStyles;
|
6
|
+
innerGrid: import("@emotion/react").SerializedStyles;
|
7
|
+
textGrid: import("@emotion/react").SerializedStyles;
|
8
|
+
otherInput: import("@emotion/react").SerializedStyles;
|
9
9
|
};
|
10
10
|
export default makeRadioButtonStyling;
|
@@ -5,8 +5,8 @@ interface IScrollContainerStyleProps {
|
|
5
5
|
export declare const SCROLL_BUFFER_HEIGHT = 17;
|
6
6
|
export declare const SCROLL_PADDING_HEIGHT: number;
|
7
7
|
declare const makeScrollContainerStyling: ({ scrollBufferOffset, scrollBufferOpacity, }: IScrollContainerStyleProps) => {
|
8
|
-
scrollBox: import("@emotion/
|
9
|
-
scrollPadding: import("@emotion/
|
10
|
-
scrollBuffer: import("@emotion/
|
8
|
+
scrollBox: import("@emotion/react").SerializedStyles;
|
9
|
+
scrollPadding: import("@emotion/react").SerializedStyles;
|
10
|
+
scrollBuffer: import("@emotion/react").SerializedStyles;
|
11
11
|
};
|
12
12
|
export default makeScrollContainerStyling;
|
@@ -1,15 +1,15 @@
|
|
1
1
|
declare const makeSupplierCardStyling: () => {
|
2
|
-
badge: import("@emotion/
|
3
|
-
badgeText: import("@emotion/
|
4
|
-
supplierName: import("@emotion/
|
5
|
-
supplierNameText: import("@emotion/
|
6
|
-
buttonContainer: import("@emotion/
|
7
|
-
cardContainer: import("@emotion/
|
8
|
-
logoGridContainer: import("@emotion/
|
9
|
-
logoGridItem: import("@emotion/
|
10
|
-
rightCheckbox: import("@emotion/
|
11
|
-
rightText: import("@emotion/
|
12
|
-
textGridItem: import("@emotion/
|
13
|
-
topRightCheckbox: import("@emotion/
|
2
|
+
badge: import("@emotion/react").SerializedStyles;
|
3
|
+
badgeText: import("@emotion/react").SerializedStyles;
|
4
|
+
supplierName: import("@emotion/react").SerializedStyles;
|
5
|
+
supplierNameText: import("@emotion/react").SerializedStyles;
|
6
|
+
buttonContainer: import("@emotion/react").SerializedStyles;
|
7
|
+
cardContainer: import("@emotion/react").SerializedStyles;
|
8
|
+
logoGridContainer: import("@emotion/react").SerializedStyles;
|
9
|
+
logoGridItem: import("@emotion/react").SerializedStyles;
|
10
|
+
rightCheckbox: import("@emotion/react").SerializedStyles;
|
11
|
+
rightText: import("@emotion/react").SerializedStyles;
|
12
|
+
textGridItem: import("@emotion/react").SerializedStyles;
|
13
|
+
topRightCheckbox: import("@emotion/react").SerializedStyles;
|
14
14
|
};
|
15
15
|
export default makeSupplierCardStyling;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
declare const makeThankYouBannerStyling: () => {
|
2
|
-
brandLogo: import("@emotion/
|
3
|
-
thankYouBanner: import("@emotion/
|
2
|
+
brandLogo: import("@emotion/react").SerializedStyles;
|
3
|
+
thankYouBanner: import("@emotion/react").SerializedStyles;
|
4
4
|
};
|
5
5
|
export default makeThankYouBannerStyling;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
declare const makeListLayoutStyling: () => {
|
2
|
-
container: import("@emotion/
|
3
|
-
item: import("@emotion/
|
2
|
+
container: import("@emotion/react").SerializedStyles;
|
3
|
+
item: import("@emotion/react").SerializedStyles;
|
4
4
|
};
|
5
5
|
export default makeListLayoutStyling;
|
@@ -2,8 +2,8 @@ interface ITileLayoutStyleProps {
|
|
2
2
|
tileCount: number;
|
3
3
|
}
|
4
4
|
declare const makeTileLayoutStyling: ({ tileCount }: ITileLayoutStyleProps) => {
|
5
|
-
root: import("@emotion/
|
6
|
-
tileContainer: import("@emotion/
|
7
|
-
imgDiv: import("@emotion/
|
5
|
+
root: import("@emotion/react").SerializedStyles;
|
6
|
+
tileContainer: import("@emotion/react").SerializedStyles;
|
7
|
+
imgDiv: import("@emotion/react").SerializedStyles;
|
8
8
|
};
|
9
9
|
export default makeTileLayoutStyling;
|