Skip to content

Commit 3866ea6

Browse files
committed
fix conflicts
2 parents 7737406 + 7104c6b commit 3866ea6

27 files changed

+2590
-418
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
<a name="v3.3.2"></a>
2+
# [v3.3.2](https://github.com/AllenFang/react-bootstrap-table/compare/v3.3.1...v3.3.2) (2017-05-07)
3+
## Bug fixes
4+
* Fixed bug about `options.keepSizePerPageState`([e226764](https://github.com/AllenFang/react-bootstrap-table/commit/e22676426cff916a492177c507787298364841f3))
5+
* Fixed a delete row bug when `options.pageStartIndex` is 0([161eb0c](https://github.com/AllenFang/react-bootstrap-table/commit/161eb0c46ff93f6845884978ad21021cf69375f4))
6+
7+
<a name="v3.3.1"></a>
8+
# [v3.3.1](https://github.com/AllenFang/react-bootstrap-table/compare/v3.3.0...v3.3.1) (2017-05-06)
9+
## Features
10+
* Allow to unselect all only for visible rows(filter, search)[b15475a](https://github.com/AllenFang/react-bootstrap-table/commit/b15475a97bb5bc6c717a026c64d8c67145aca6b5)
11+
* [#1276](https://github.com/AllenFang/react-bootstrap-table/issues/1276)
12+
* Enable `selectRow.onlyUnselectVisible` to have this feature
13+
14+
## Enhancement
15+
* `cellEdit.beforeSaveCell` pass fourth argument `done`, call it and return a bool value for performing validation in async[f620b19](https://github.com/AllenFang/react-bootstrap-table/commit/f620b19e297ea4f5ec23c6fc41b98f2ed9173076)
16+
* check [description](https://github.com/AllenFang/react-bootstrap-table/blob/master/examples/js/cell-edit/cell-edit-hook-table.js#L42)
17+
* If your validation is async or there's a delay for user operation, use this feature.
18+
* Suppoer `options.keepSizePerPageState`, enable it will make size per page dropdown keep open if table rerender automatically without any user action[5234375](https://github.com/AllenFang/react-bootstrap-table/commit/52343759d2525e1d73257977e0402d5c04dff060)
19+
20+
<a name="v3.3.0"></a>
21+
# [v3.3.0](https://github.com/AllenFang/react-bootstrap-table/compare/v3.2.2...v3.3.0) (2017-05-01)
22+
## Bug fixes
23+
* Fix default sort does not work for `remote` mode([a15c492](https://github.com/AllenFang/react-bootstrap-table/commit/a15c492dd1e4ceae05aabc1c2632f89b10258941))
24+
* Fix `false` is transfer to be empty string on cell editing([e840849](https://github.com/AllenFang/react-bootstrap-table/commit/e840849e04a5f0598dd18a9c1d9d2db7c981a698))
25+
26+
## Enhancement
27+
* Avoid to rerender select filter everytime([5b14252](https://github.com/AllenFang/react-bootstrap-table/commit/5b1425234ebd79db8cf8df3c949b8d019e5c308e))
28+
* restrict border & border-radius to bordered tables([8e446f3](https://github.com/AllenFang/react-bootstrap-table/commit/8e446f36006678e37446d6028802aa45e45813cd))
29+
* Better `margin` for table, pagination, toolbar([a5be737](https://github.com/AllenFang/react-bootstrap-table/commit/a5be73792cd5b29ebae0f218f635bd2f697bda8f))
30+
31+
<a name="v3.2.2"></a>
32+
# [v3.2.2](https://github.com/AllenFang/react-bootstrap-table/compare/v3.2.1...v3.2.2) (2017-04-27)
33+
## Bug fixes
34+
* Fix validation is ignored when tab out of a cell to the next cell([1a6ca0a](https://github.com/AllenFang/react-bootstrap-table/commit/1a6ca0af7559f4cbbbf5e54715c2e25ebce5b852))
35+
36+
## Enhancement
37+
* Able to remove the empty option on select and number filter([61a2d8c](https://github.com/AllenFang/react-bootstrap-table/commit/61a2d8cc6811fe470a68313a80a5c31ec1fce05c))
38+
* Use `filter.withoutEmptyOption` on `TableHeaderColumn` for select filter.
39+
* Use `filter.withoutEmptyNumberOption` on `TableHeaderColumn` for number filter.
40+
* Use `filter.withoutEmptyComparatorOption` on `TableHeaderColumn` for number filter.
41+
42+
## Features
43+
* Support `defaultASC` on `TableHeaderColumn` for specifing ASC order when sorting on column first time([fec241d](https://github.com/AllenFang/react-bootstrap-table/commit/fec241d11e7a2351d7070a4cc6afaed1ba3d4ec2))
44+
145
<a name="v3.2.1"></a>
246
# [v3.2.1](https://github.com/AllenFang/react-bootstrap-table/compare/v3.2.0...v3.2.1) (2017-04-20)
347
## Bug fixes

css/react-bootstrap-table.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
margin-bottom: 0;
66
}
77

8-
.react-bs-table {
8+
.react-bs-table-bordered {
99
border: 1px solid #ddd;
1010
border-radius: 5px;
1111
}
@@ -22,16 +22,12 @@
2222
text-overflow: ellipsis;
2323
}
2424

25-
.react-bs-table {
26-
margin: 5px 10px 5px 10px;
27-
}
28-
2925
.react-bs-table-pagination {
30-
margin: 10px;
26+
margin-top: 10px;
3127
}
3228

3329
.react-bs-table-tool-bar {
34-
margin: 10px 10px 0 10px;
30+
margin-bottom: 5px;
3531
}
3632

3733
.react-bs-container-header {

dist/react-bootstrap-table-all.min.css

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)