Skip to content

Commit

Permalink
Updtaed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbull committed Oct 18, 2017
1 parent 6559140 commit 87a3d41
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 31 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ env:
es6: true
mocha: true

ecmaFeatures:
jsx: true

rules:
# Strict mode
strict: [2, never]
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 0.3.2 (October 17th, 2017)

- Updated dependencies
- Fixed unit tests
- Fixed unit playground
- Add public `focus` and `blur` methods to TextInput
- Prop title of TitleBar now supports element node

## 0.3.1 (June 21th, 2017)

- Updated dependencies
Expand Down
8 changes: 0 additions & 8 deletions docs/mac-os/box.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@ paddingTop | string, number | Sets the padding top inside a component.
verticalAlignment | string | Sets the vertical alignment of the component's content.<br/>__Property value__ _"top"_, _"center"_, _"bottom"_
width | number | Sets the width of a component.

### Methods

Method | Type | Description
:------------------ | :-------------:| :----------
focus | function | Focus text input programmatically
blur | function | Remove focus from text input programmatically


### Examples

```jsx
Expand Down
7 changes: 7 additions & 0 deletions docs/mac-os/text-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ value | string | Sets the value of the input.
width | number | Sets the width of a component.
password | bool | Sets the input type to password.

### Methods

Method | Type | Description
:------------------ | :-------------:| :----------
focus | function | Focus text input programmatically
blur | function | Remove focus from text input programmatically

### Examples

```jsx
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,36 +34,36 @@
"build-publish": "npm run build && npm publish ./build"
},
"dependencies": {
"radium": "^0.19.1"
"radium": "^0.19.5"
},
"peerDependencies": {
"prop-types": "^15.0 || ^16.0",
"react": "^15.0 || ^16.0",
"react-dom": "^15.0 || ^16.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"prop-types": "^15.5.10",
"react": "^15.6.0",
"react-addons-test-utils": "^15.6.0",
"react-color": "^2.12.1",
"react-dom": "^15.6.0",
"react-hot-loader": "^1.3.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-color": "^2.13.8",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.1.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.2"
}
}

0 comments on commit 87a3d41

Please sign in to comment.