20190317 release

This commit is contained in:
AllenFang 2019-03-17 16:42:59 +08:00
parent 3c925c124b
commit 449583ac28
2 changed files with 32 additions and 1 deletions

View File

@ -15,6 +15,7 @@ Export CSV in one of features supported by `react-bootstrap-table2-toolkit`. By
* [noAutoBOM](#exportCSVnoautobom-bool)
* [exportAll](#exportCSVexportall-bool)
* [onlyExportSelection](#exportCSVonlyexportselection-bool)
* [onlyExportFiltered](#exportCSVonlyexportfiltered-bool)
## Example
@ -52,4 +53,9 @@ Default is `true`.
Default is `true`. `false` will only export current display data on table.
## exportCSV.onlyExportSelection - [bool]
Default is `false`. `true` will only export the data which is selected
Default is `false`. `true` will only export the data which is selected
## exportCSV.onlyExportFiltered - [bool]
Default is `false`. `true` will only export the data which is filtered/searched.
>> Note: When you configure this prop as true, you must turn off `exportAll`.

View File

@ -0,0 +1,25 @@
---
title: New Release (2019-03-17)
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.2`
* `react-bootstrap-table2-filter@1.1.7`
* `react-bootstrap-table2-toolkit@1.4.0`
## Changelog
### Bug fixes
* Fixed remote filter borken([7642bfa](https://github.com/react-bootstrap-table/react-bootstrap-table2/commit/7642bfa1a343705238238155f460dab5e0137886))
* Fixed custom editor didn't cancel when switch to anther cell([c5d9e04](https://github.com/react-bootstrap-table/react-bootstrap-table2/commit/c5d9e04c2c925c71aa7c3e11c97a96537f474008))
### Features
* Support to export only searched/filtered data cross pages[d0e70f7](https://github.com/react-bootstrap-table/react-bootstrap-table2/commit/d0e70f72460c807b900d5462c23a8dc8f468c3c8)
### Enhancements
N/A