Chore: Revert React 16.9.0 bump (#18634)

Since React and other dependencies bump caused some troubles with building packages that @kaydelaney and me tried to debug without any success, we decided to revert React 16.9.0 bump.
This commit is contained in:
Dominik Prokop
2019-08-20 11:14:53 +02:00
committed by GitHub
parent f22aaa5518
commit faabb839e6
13 changed files with 2559 additions and 4687 deletions

View File

@@ -3,7 +3,8 @@ import React, { PureComponent } from 'react';
import { hot } from 'react-hot-loader';
import ReactGridLayout, { ItemCallback } from 'react-grid-layout';
import classNames from 'classnames';
import { withSize } from 'react-sizeme';
// @ts-ignore
import sizeMe from 'react-sizeme';
// Types
import { GRID_CELL_HEIGHT, GRID_CELL_VMARGIN, GRID_COLUMN_COUNT } from 'app/core/constants';
@@ -77,7 +78,7 @@ function GridWrapper({
);
}
const SizedReactLayoutGrid = withSize({ monitorWidth: true })(GridWrapper);
const SizedReactLayoutGrid = sizeMe({ monitorWidth: true })(GridWrapper);
export interface Props {
dashboard: DashboardModel;