Upgrade to emotion v10

Summary: React 16 is not compatible with react-emotion 9 (it prints warnings, see also https://github.com/emotion-js/emotion/issues/644). So we should upgrade to 10.

Reviewed By: mweststrate

Differential Revision: D18905889

fbshipit-source-id: c00d2dbbadb1c08544632cb9bfcd63f2b1818a25
This commit is contained in:
Anton Nikolaev
2019-12-11 09:41:32 -08:00
committed by Facebook Github Bot
parent c3dfcbe601
commit c0f902f81a
119 changed files with 977 additions and 1004 deletions

View File

@@ -319,7 +319,7 @@ type NotificationBoxProps = {
severity: keyof typeof SEVERITY_COLOR_MAP;
};
const NotificationBox = styled(FlexRow)((props: NotificationBoxProps) => ({
const NotificationBox = styled(FlexRow)<NotificationBoxProps>(props => ({
backgroundColor: props.inactive ? 'transparent' : colors.white,
opacity: props.inactive ? 0.5 : 1,
alignItems: 'flex-start',
@@ -348,7 +348,7 @@ const NotificationBox = styled(FlexRow)((props: NotificationBoxProps) => ({
},
}));
const Title = styled('div')({
const Title = styled.div({
minWidth: 150,
color: colors.light80,
flexShrink: 0,
@@ -358,8 +358,8 @@ const Title = styled('div')({
fontSize: '1.1em',
});
const NotificationContent = styled(FlexColumn)(
(props: {isSelected?: boolean}) => ({
const NotificationContent = styled(FlexColumn)<{isSelected?: boolean}>(
props => ({
marginLeft: 6,
marginRight: 10,
flexGrow: 1,
@@ -379,7 +379,7 @@ const Actions = styled(FlexRow)({
paddingTop: 8,
});
const NotificationButton = styled('div')({
const NotificationButton = styled.div({
border: `1px solid ${colors.light20}`,
color: colors.light50,
borderRadius: 4,