Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Move PropTypes from React package to prop-types #36

Merged
merged 18 commits into from
Feb 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.9.0] - 2018-02-11
### Changed
- Moved `PropTypes` import from using `react` to using `prop-types` package to support using React 16+ in `dash-renderer`

## [0.8.0] - 2017-09-29
### Added
- A `key` property has been added to every component. See https://reactjs.org/docs/lists-and-keys.html for more about this attribute.
Expand Down
20 changes: 20 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
machine:
node:
version: 6.9.2
post:
- pyenv global 2.7.10
environment:
TOX_PYTHON_27: python2.7

dependencies:
pre:
- npm install -g eslint
- pip install tox
- npm install
- node_modules/.bin/builder run build-dist
- node_modules/.bin/builder run copy-lib

test:
override:
- tox
- npm run test
2 changes: 1 addition & 1 deletion dash_html_components/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.0'
__version__ = '0.9.0'
7 changes: 7 additions & 0 deletions lib/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1327,6 +1327,13 @@
"required": false,
"description": "Indicates whether the media should start playing from the start when it's finished."
},
"muted": {
"type": {
"name": "string"
},
"required": false,
"description": "Indicates whether the audio will be initially silenced on page load."
},
"preload": {
"type": {
"name": "string"
Expand Down
Loading