Skip to content

Commit

Permalink
Merge branch 'release/1.7.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Oct 19, 2018
2 parents c7a5e5f + 2668610 commit d46ae78
Show file tree
Hide file tree
Showing 43 changed files with 2,456 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ Please see the list of [examples](examples/) for how you can get a project start
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected].1/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected].2/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons|Roboto:400,500,700">
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/react/dist/react-with-addons.min.js"></script>
<script src="https://unpkg.com/react-dom/dist/react-dom.min.js"></script>
<script src="https://unpkg.com/[email protected].1/dist/react-md.min.js"></script>
<script src="https://unpkg.com/[email protected].2/dist/react-md.min.js"></script>
<script>
var MyAwesomeComponent = React.createClass({
render: function() {
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md-documentation",
"version": "1.7.1",
"version": "1.7.2",
"description": "The documentaiton website for react-md",
"homepage": "https://react-md.mlaursen.com",
"private": true,
Expand Down
4 changes: 4 additions & 0 deletions docs/src/components/DiscoverMore/WhatsNew/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## October 2018
### v1.7.2 Released
- Updated all `component` prop-types to not trigger a warning when the component was created with `React.forwardRef`. ([@luisrudge] - [pull-809])

## September 2018
### v1.7.1 Released
- Reverted the `InkContainer` workaround for Preact since there were additional unwanted side-effects. [issues-801]
Expand Down
1 change: 1 addition & 0 deletions docs/src/components/InlineSVG.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ InlineSVG.propTypes = {
component: PropTypes.oneOfType([
PropTypes.func,
PropTypes.string,
PropTypes.object,
]).isRequired,
src: PropTypes.string.isRequired,
};
Expand Down
1 change: 1 addition & 0 deletions docs/src/components/Markdown/Markdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class PureMarkdown extends PureComponent {
component: PropTypes.oneOfType([
PropTypes.string,
PropTypes.func,
PropTypes.object,
]).isRequired,
history: PropTypes.object.isRequired,
location: PropTypes.object.isRequired,
Expand Down
1 change: 1 addition & 0 deletions docs/src/components/PhoneEmulator/PhoneEmulator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ PhoneEmulator.propTypes = {
contentComponent: PropTypes.oneOfType([
PropTypes.func,
PropTypes.string,
PropTypes.object,
]).isRequired,
transitionContent: PropTypes.bool,
contentId: PropTypes.string,
Expand Down
Loading

0 comments on commit d46ae78

Please sign in to comment.