publish 1.4.13
This commit is contained in:
parent
9174e42461
commit
7f0957c829
|
@ -1,3 +1,8 @@
|
|||
<a name="1.4.13"></a>
|
||||
## [1.4.13](https://github.com/tinper-bee/bee-table/compare/v1.4.12...v1.4.13) (2018-10-11)
|
||||
|
||||
|
||||
|
||||
<a name="1.4.12"></a>
|
||||
## [1.4.12](https://github.com/tinper-bee/bee-table/compare/v1.4.11...v1.4.12) (2018-10-11)
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ var FilterDropDown = function (_Component) {
|
|||
|
||||
if (onSelectDropdown) {
|
||||
_this.setState({
|
||||
selectValue: s.key
|
||||
selectValue: [s.key]
|
||||
}, function () {
|
||||
onSelectDropdown(s);
|
||||
});
|
||||
|
|
|
@ -2553,9 +2553,9 @@ a, .mdl-accordion, .mdl-button, .mdl-card, .mdl-checkbox, .mdl-dropdown-menu,
|
|||
|
||||
@font-face {
|
||||
font-family: "uf";
|
||||
src: url("../style/utils/iconfont.eot");
|
||||
src: url("../node_modules/tinper-bee-core/scss/iconfont.eot?t=1483429573920");
|
||||
/* IE9*/
|
||||
src: url("../style/utils/iconfont.eot") format("embedded-opentype"), url("../style/utils/iconfont.woff") format("woff"), url("../style/utils/iconfont.ttf") format("truetype"), url("../style/utils/iconfont.svg") format("svg");
|
||||
src: url("../node_modules/tinper-bee-core/scss/iconfont.eot?t=1483429573920#iefix") format("embedded-opentype"), url("../node_modules/tinper-bee-core/scss/iconfont.woff?t=1483429573920") format("woff"), url("../node_modules/tinper-bee-core/scss/iconfont.ttf?t=1483429573920") format("truetype"), url("../node_modules/tinper-bee-core/scss/iconfont.svg?t=1483429573920#uf") format("svg");
|
||||
/* iOS 4.1- */ }
|
||||
|
||||
.uf {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bee-table",
|
||||
"version": "1.4.12",
|
||||
"version": "1.4.13",
|
||||
"description": "Table ui component for react",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
|
|
@ -16,7 +16,7 @@ class FilterDropDown extends Component {
|
|||
let { onSelectDropdown } = this.props;
|
||||
if (onSelectDropdown) {
|
||||
this.setState({
|
||||
selectValue: s.key
|
||||
selectValue: [s.key]
|
||||
}, () => {
|
||||
onSelectDropdown(s);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue