Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit f33d77a

Browse files
committed
v2.0.0-alpha.8
1 parent 5cf5d6b commit f33d77a

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# React-Select
22

3+
## v2.0.0-alpha.8 / 2018-02-20
4+
5+
Ongoing rewrite. Major changes since last alpha:
6+
7+
* Made `focus` and `blur` methods work consistently when composing HOCs
8+
* Added `menuPortalTarget` prop which portals the menu, with a `MenuPortal` component and `menuPortal` style key
9+
* Allow the `MultiValueRemove` component children to be changed
10+
* Lots of new tests, updates to documentation and examples
11+
312
## v2.0.0-alpha.7 / 2018-02-14
413

514
Ongoing rewrite. Major changes since last alpha:

package.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-select",
3-
"version": "2.0.0-alpha.7",
3+
"version": "2.0.0-alpha.8",
44
"description": "A Select control built with and for ReactJS",
55
"main": "lib/index.js",
66
"jsnext:main": "dist/react-select.es.js",
@@ -91,8 +91,10 @@
9191
"scripts": {
9292
"build": "nps build",
9393
"watch": "nps build.watch",
94-
"cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
95-
"coveralls": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha && cat coverage/lcov.info | coveralls",
94+
"cover":
95+
"cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
96+
"coveralls":
97+
"cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha && cat coverage/lcov.info | coveralls",
9698
"lint": "eslint .",
9799
"deploy": "cross-env NODE_ENV=production nps publish",
98100
"start": "webpack-dev-server --progress",
@@ -103,11 +105,7 @@
103105
"test:cypress-watch": "node ./node_modules/.bin/cypress open",
104106
"precommit": "flow check && lint-staged"
105107
},
106-
"files": [
107-
"dist",
108-
"lib",
109-
"src"
110-
],
108+
"files": ["dist", "lib", "src"],
111109
"keywords": [
112110
"combobox",
113111
"form",
@@ -119,13 +117,12 @@
119117
"ui"
120118
],
121119
"jest": {
122-
"modulePathIgnorePatterns": [
123-
"./node_modules"
124-
],
120+
"modulePathIgnorePatterns": ["./node_modules"],
125121
"transform": {
126122
"^.+\\.js$": "babel-jest"
127123
},
128-
"testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$",
124+
"testRegex":
125+
"src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$",
129126
"setupFiles": ["./enzymeAdapter.setup.js"]
130127
},
131128
"lint-staged": {

0 commit comments

Comments
 (0)