Skip to content

Commit

Permalink
Version bump to 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Dec 13, 2019
1 parent 4cc260f commit 0d0e181
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Please see the list of [examples](examples/) for how you can get a project start
<head>
<link
rel="stylesheet"
href="https://unpkg.com/react-md@1.12.4/dist/react-md.deep_purple-pink.min.css"
href="https://unpkg.com/react-md@1.13.0/dist/react-md.deep_purple-pink.min.css"
/>
<link
rel="stylesheet"
Expand All @@ -98,7 +98,7 @@ Please see the list of [examples](examples/) for how you can get a project start
<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>
<script src="https://unpkg.com/react-md@1.12.4/dist/react-md.min.js"></script>
<script src="https://unpkg.com/react-md@1.13.0/dist/react-md.min.js"></script>
var MyAwesomeComponent = React.createClass({
render: function() {
return React.createElement(ReactMD.Button, {
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.12.4",
"version": "1.13.0",
"description": "The documentaiton website for react-md",
"homepage": "https://react-md.mlaursen.com",
"private": true,
Expand Down
10 changes: 9 additions & 1 deletion docs/src/components/Components/SelectFields/Simple.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ const Simple = ({ simplifiedMenu }) => (
menuItems={OBJECT_ITEMS}
simplifiedMenu={simplifiedMenu}
/>
<SelectField
id="select-field-3-1"
label="Custom Active Label"
placeholder="Placeholder"
className="md-cell"
menuItems={OBJECT_ITEMS}
getActiveLabel={getActiveLabel}
simplifiedMenu={simplifiedMenu}
/>
<h4 className="md-cell md-cell--12">SelectField Buttons</h4>
<SelectField
id="select-field-4"
Expand Down Expand Up @@ -105,7 +114,6 @@ const Simple = ({ simplifiedMenu }) => (
placeholder="Strings disabled"
className="md-cell md-cell--bottom"
menuItems={STRING_ITEMS}
getActiveLabel={getActiveLabel}
disabled
dropdownIcon={icon}
simplifiedMenu={simplifiedMenu}
Expand Down
7 changes: 7 additions & 0 deletions docs/src/components/DiscoverMore/WhatsNew/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## December 2019

### v1.13.0 Release

#### Changelog

- Added a `getActiveLabel` prop to the `SelectField` for additional styling and updated the type
definitions for the `SelectField`. ([@gamtiq] - [pull-855])

### v1.12.4 Release

#### Changelog
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md",
"version": "1.12.4",
"version": "1.13.0",
"description": "React material design components",
"main": "./lib",
"module": "./es",
Expand Down
2 changes: 1 addition & 1 deletion src/js/Version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.12.4';
export default '1.13.0';

0 comments on commit 0d0e181

Please sign in to comment.