Skip to content

Commit

Permalink
Upgrade react to 16.2.0. (#264)
Browse files Browse the repository at this point in the history
* Upgrade react to 16.2.0.
  • Loading branch information
cjcenizal authored Jan 19, 2018
1 parent c29a274 commit 8eba425
Show file tree
Hide file tree
Showing 3 changed files with 351 additions and 454 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

- `EuiCodeBlock` now only shows fullscreen icons if `overflowHeight` prop is set. Also forces large fonts and padding while expanded. [(#325)](https://github.com/elastic/eui/pull/325)

**Breaking changes**

- React ^16.2 is now a peer dependency ([#264](https://github.com/elastic/eui/pull/264))

# [`0.0.14`](https://github.com/elastic/eui/tree/v0.0.14)

- Added `isColorDark` color util [(#311)](https://github.com/elastic/eui/pull/311)
Expand Down Expand Up @@ -146,7 +150,7 @@
- Fixed a bug where `<progress>` wasn't being rendered under `block` display [(#166)](https://github.com/elastic/eui/pull/166)
- Fixed a bug that caused `<EuiPageSideBar>` width to change when the width of its content changed [(#181)](https://github.com/elastic/eui/pull/181)

**Breaking**
**Breaking changes**

- Fixed a bug where table cell classes were being applied twice [(#167)](https://github.com/elastic/eui/pull/167)
- React ^16.0 is now a peer dependency ([#198](https://github.com/elastic/eui/pull/198))
Expand All @@ -157,7 +161,7 @@
- `<EuiFlexItem>` and `<EuiFlexGrow>` now accept a `component` prop which you can set to `span` or `div` (default). [(#141)](https://github.com/elastic/eui/pull/141)
- Add `isLoading` prop to form inputs to allow for a loading state [(#150)](https://github.com/elastic/eui/pull/150)

**Breaking**
**Breaking changes**

- `<EuiSideNav>` now accepts a tree data structure via the `items` prop [(#141)](https://github.com/elastic/eui/pull/141)
- `<EuiSideNavGroup>`, `<EuiSideNavItem>`, and `<EuiSideNavTitle>` have been removed from the public API [(#141)](https://github.com/elastic/eui/pull/141)
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@elastic/eui",
"description": "Elastic UI Component Library",
"version": "0.0.14",
"version": "0.0.13",
"main": "lib",
"module": "src",
"types": "src/index.d.ts",
Expand Down Expand Up @@ -77,12 +77,12 @@
"postcss-loader": "^2.0.8",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^3.2.0",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^16.0.0",
"react-test-renderer": "^16.2.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
Expand All @@ -94,6 +94,6 @@
"yo": "^2.0.0"
},
"peerDependencies": {
"react": "^16.0.0-rc || ^16.0"
"react": "^16.2.0 || ^16.2"
}
}
Loading

0 comments on commit 8eba425

Please sign in to comment.