20190224 release

This commit is contained in:
AllenFang
2019-02-24 16:56:59 +08:00
parent e5bfaca33d
commit 3a3d51e8c9
3 changed files with 37 additions and 3 deletions
+4 -1
View File
@@ -162,4 +162,7 @@ const { SearchBar, ClearSearchButton } = Search;
)
}
</ToolkitProvider>
```
```
### Props
* `className`: Add custom class name on clear search button.
+6 -2
View File
@@ -24,7 +24,7 @@ In addition, we also allow you use `React` `Refs` to directly access the compone
## Get Current Selected Rows
`this.node.selectionContext.state.selected`
`this.node.selectionContext.selected`
## Get Current Expanded Rows
@@ -48,4 +48,8 @@ In addition, we also allow you use `React` `Refs` to directly access the compone
## Get Current Filters
`this.node.filterContext.currFilters`
`this.node.filterContext.currFilters`
## Trigger Cell Editing:
`this.node.cellEditContext.startEditing(0, 1); // rowindex, columnindex`
+27
View File
@@ -0,0 +1,27 @@
---
title: New Release (2019-02-24)
author: Allen Fang
authorURL: https://twitter.com/allenfang_tw
---
## Changed Packages
We got following package version bump in this release:
* `react-bootstrap-table-next@3.0.0`
* `react-bootstrap-table2-filter@1.1.5`
* `react-bootstrap-table2-toolkit@1.3.1`
## Changelog
### Bug fixes
* Fixed cell didn't rerender correctly when `column.formatter` defined and use `row` inside the `column.formatter` function.([bf0c5c4](https://github.com/react-bootstrap-table/react-bootstrap-table2/pull/818/commits/bf0c5c43a2e88ea1fa38c8d5f3e8fcedae53f528))
* Fixed selection broken when call `setState` in `selectRow.onSelect`([c01f45a](https://github.com/react-bootstrap-table/react-bootstrap-table2/pull/818/commits/c01f45a719702ad44a3b22c70291927962e7eee0))
* Fixed search and filter perform a abnormal behavor([#811](https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/811))
### Features
N/A
### Enhancements
* Allow to add custom className on Export CSV and Clear Search button([09f21e8](https://github.com/react-bootstrap-table/react-bootstrap-table2/pull/818/commits/09f21e81303e37ae1f1a12aeacaae237ee3fac2c))
* Allow to operate on cell editing context via reacr `refs`([#815](https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/815))