Skip to content

Commit

Permalink
Upgrade react deps (#16025)
Browse files Browse the repository at this point in the history
* [yarn] upgrade react deps

* [yarn] reinstall pivotal-ui so that react dep is deduped

* [yarn] remove unused deps

* [react-ace] update snapshots to include new aria props

* [react-input-range] update snapshot with new allowSameValues prop, default is still false

* [react-select] update snapshots with new default from features added since 1.0.0-rc5
  • Loading branch information
spalger authored and kimjoar committed Jan 17, 2018
1 parent 1712ba4 commit 215d9a0
Show file tree
Hide file tree
Showing 5 changed files with 102 additions and 125 deletions.
38 changes: 17 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.20.0",
"babel-preset-env": "1.4.0",
"babel-preset-react": "6.22.0",
"babel-preset-react": "^6.24.1",
"babel-register": "6.18.0",
"bluebird": "2.9.34",
"body-parser": "1.12.0",
Expand All @@ -126,7 +126,7 @@
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.4",
"focus-trap-react": "3.0.5",
"focus-trap-react": "^3.1.1",
"font-awesome": "4.4.0",
"glob": "5.0.13",
"glob-all": "3.0.1",
Expand Down Expand Up @@ -170,23 +170,20 @@
"proxy-from-env": "1.0.0",
"querystring-browser": "1.0.4",
"raw-loader": "0.5.1",
"react": "16.0.0",
"react-ace": "5.5.0",
"react-anything-sortable": "1.7.3",
"react-color": "2.11.7",
"react-dom": "16.0.0",
"react-grid-layout": "0.16.0",
"react-input-autosize": "1.1.0",
"react-input-range": "1.2.1",
"react-markdown": "3.1.0",
"react-redux": "5.0.5",
"react-router": "3.2.0",
"react": "^16.2.0",
"react-ace": "^5.9.0",
"react-anything-sortable": "^1.7.3",
"react-color": "^2.13.8",
"react-dom": "^16.2.0",
"react-grid-layout": "^0.16.2",
"react-input-range": "^1.3.0",
"react-markdown": "^3.1.4",
"react-redux": "^5.0.6",
"react-router": "^3.2.0",
"react-router-dom": "4.2.2",
"react-router-redux": "4.0.4",
"react-select": "1.0.0-rc.5",
"react-sizeme": "2.3.4",
"react-sortable": "1.1.0",
"react-test-renderer": "16.0.0",
"react-router-redux": "^4.0.8",
"react-select": "^1.2.0",
"react-sizeme": "^2.3.6",
"react-toggle": "4.0.2",
"reactcss": "1.2.3",
"redux": "3.7.2",
Expand Down Expand Up @@ -236,7 +233,7 @@
"chromedriver": "2.34.0",
"classnames": "2.2.5",
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "1.1.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "3.1.4",
"eslint": "4.14.0",
"eslint-plugin-babel": "4.1.2",
Expand Down Expand Up @@ -310,8 +307,7 @@
},
"resolutions": {
"angular": "1.6.5",
"moment": "2.13.0",
"react": "16.0.0"
"moment": "2.13.0"
},
"engines": {
"node": "6.12.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ exports[`renders ListControl 1`] = `
label="list control"
>
<Select
addLabelText="Add \\"{label}\\"?"
arrowRenderer={[Function]}
autosize={true}
backspaceRemoves={true}
Expand All @@ -41,6 +40,7 @@ exports[`renders ListControl 1`] = `
clearRenderer={[Function]}
clearValueText="Clear value"
clearable={true}
closeOnSelect={true}
deleteRemoves={true}
delimiter=","
disabled={false}
Expand All @@ -65,6 +65,8 @@ exports[`renders ListControl 1`] = `
onBlurResetsInput={true}
onChange={[Function]}
onCloseResetsInput={true}
onSelectResetsInput={true}
openOnClick={true}
optionComponent={[Function]}
options={
Array [
Expand All @@ -80,11 +82,14 @@ exports[`renders ListControl 1`] = `
}
pageSize={5}
placeholder="Select..."
removeSelected={true}
required={false}
rtl={false}
scrollMenuIntoView={true}
searchable={true}
simpleValue={true}
tabSelectsValue={true}
trimFilter={true}
value=""
valueComponent={[Function]}
valueKey="value"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ exports[`renders RangeControl 1`] = `
className="inputRangeContainer"
>
<InputRange
allowSameValues={false}
ariaLabelledby="mock-range-control"
classNames={
Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ exports[`KuiCodeEditor is rendered 1`] = `
wrap="off"
/>
<div
aria-hidden="true"
class="ace_gutter"
>
<div
Expand Down Expand Up @@ -225,6 +226,7 @@ exports[`KuiCodeEditor props isReadOnly renders alternate hint text 1`] = `
wrap="off"
/>
<div
aria-hidden="true"
class="ace_gutter"
>
<div
Expand Down
Loading

0 comments on commit 215d9a0

Please sign in to comment.