0513 releas

This commit is contained in:
AllenFang
2018-05-14 22:54:44 +08:00
parent 5edfdeea0d
commit 7a65f1d2d2
2 changed files with 29 additions and 0 deletions
+5
View File
@@ -19,6 +19,7 @@ title: BootstrapTable Props
* [condensed](#condensed-bool)
* [id](#id-string)
* [classes](#classes-string)
* [wrapperClasses](#wrapperClasses-string)
* [cellEdit](#celledit-object)
* [selectRow](#selectrow-object)
* [rowStyle](#rowstyle-object-function)
@@ -114,6 +115,10 @@ Same as bootstrap `.table-condensed` class for making a table more compact by cu
Customize id on `table` element.
## classes - [String]
Customize class on `table` element.
## wrapperClasses - [String]
Customize class on the outer element which wrap up the `table` element.
## cellEdit - [Object]
Makes table cells editable, please see [cellEdit definition](./cell-edit-props.html) for more detail.
+24
View File
@@ -0,0 +1,24 @@
---
title: New Release (2018-05-13)
author: Allen Fang
authorURL: https://twitter.com/allenfang_tw
---
## Changed Packages
This release bump following packages:
* `react-bootstrap-table-next@0.1.11`
* `react-bootstrap-table2-filter@0.1.7`
## Changelog
### Bug fixes
* Fixed filtered table doesn't rerender on prop change([#303](https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/303))
* Fix programmatically filter broken when filter multiple column at the same time([#334](https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/334))
### Features
N/A
### Enhancements
* Implement `wrapperClasses` to allow to custom the class on outer element which wrap up the `table` element([#325](https://github.com/react-bootstrap-table/react-bootstrap-table2/pull/325))