Skip to content

Commit

Permalink
Bumped version to 1.0.3 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
fragsalat committed Jul 4, 2017
1 parent 9b6520c commit eb571b6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/amd/ws-dropdown/dropdown-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ define(['exports', '../imports', './dropdown-menu-item'], function (exports, _im
}

if (_this2.props.filterable || _this2.context.multiple) {
return !item.stored && !item.selected;
return !item.stored;
}
return true;
});
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/ws-dropdown/dropdown-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ var DropdownMenu = exports.DropdownMenu = function (_Component) {
}

if (_this2.props.filterable || _this2.context.multiple) {
return !item.stored && !item.selected;
return !item.stored;
}
return true;
});
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/ws-dropdown/dropdown-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export var DropdownMenu = function (_Component) {
}

if (_this2.props.filterable || _this2.context.multiple) {
return !item.stored && !item.selected;
return !item.stored;
}
return true;
});
Expand Down
2 changes: 1 addition & 1 deletion dist/system/ws-dropdown/dropdown-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ System.register(['../imports', './dropdown-menu-item'], function (_export, _cont
}

if (_this2.props.filterable || _this2.context.multiple) {
return !item.stored && !item.selected;
return !item.stored;
}
return true;
});
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="1.0.3"></a>
## [1.0.3](https://github.com/wholesale-design-system/components/compare/1.0.2...v1.0.3) (2017-07-04)



<a name="1.0.2"></a>
## [1.0.2](https://github.com/wholesale-design-system/components/compare/0.3.7...v1.0.2) (2017-07-04)

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": "styleguide-web-components",
"version": "1.0.2",
"version": "1.0.3",
"description": "",
"scripts": {
"start": "webpack-dev-server --progress --colors --content-base build webpack.config.js",
Expand Down

0 comments on commit eb571b6

Please sign in to comment.