Skip to content

Commit e80b28e

Browse files
authored
Merge pull request #5169 from wenzhixin/develop
1.17.1
2 parents 5a11acb + 8dd84e1 commit e80b28e

File tree

128 files changed

+402
-3072
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+402
-3072
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
node_js:
1010
- 12
1111
name: "Lint src and check docs"
12+
before_install:
13+
- cd tools
14+
- git clone --depth=1 https://github.com/wenzhixin/bootstrap-table-examples
1215
script: npm run pre-commit
13-
if: type = pull_request
16+
if: branch != master AND type = pull_request
1417

1518
- stage: deploy
1619
name: "Deploy docs"

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ChangeLog
22
---------
33

4-
### 1.17.0
4+
### 1.17.1
55

66
#### Core
77

@@ -20,6 +20,7 @@ ChangeLog
2020
- **New:** Added `formatted` parameter for `getData` method to get formatted data.
2121
- **New:** Added `paginationParts` option instead of `onlyInfoPagination`.
2222
- **New:** Added `sortReset` option to reset sort on third click.
23+
- **New:** Added support for auto merge the table body cells.
2324
- **Update:** Fixed `updateByUniqueId` method cannot update multiple rows bug.
2425
- **Update:** Fixed `insertRow` not write to source data array bug.
2526
- **Update:** Fixed events bug with `detailViewIcon` option.
@@ -30,7 +31,9 @@ ChangeLog
3031
- **Update:** Fixed `font-size` of the loading text.
3132
- **Update:** Fixed table `border` bug when table is hidden.
3233
- **Update:** Fixed `showRow` method show all hidden rows bug.
34+
- **Update:** Fixed columnsSearch non-unique id warning.
3335
- **Remove:** Removed the `onlyInfoPagination` option.
36+
- **Remove:** Removed accent neutralise extension and moved it to core.
3437

3538
#### Extensions
3639

@@ -49,6 +52,7 @@ ChangeLog
4952
- **Update(accent-neutralise):** Fixed comparison with arrays.
5053
- **Update(cookie):** Updated cookie columns to always visible when `switchable` is `false`.
5154
- **Update(cookie):** Fixed cookie value from existing options bug.
55+
- **Update(copy-rows):** Fixed copy rows bug with fixed-column.
5256
- **Update(editable):** Fixed not handle quotation marks bug.
5357
- **Update(editable):** Updated `noeditFormatter` to `noEditFormatter`.
5458
- **Update(export):** Fixed export error with `maintainMetaData` and `clientSidePagination`.

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ algolia:
2727
index_name: bootstrap-table
2828

2929
# Custom variables
30-
current_version: 1.17.0
30+
current_version: 1.17.1
3131
title: "Bootstrap Table"
3232
description: "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
3333
authors: "Zhixin Wen, and Bootstrap Table contributors"

bootstrap-table.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-table",
3-
"version": "1.17.0",
3+
"version": "1.17.1",
44
"title": "Bootstrap Table",
55
"description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
66
"author": {

dist/bootstrap-table-locale-all.min.js

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

dist/bootstrap-table-vue.esm.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2046,6 +2046,10 @@ function _nonIterableSpread() {
20462046
var $ = window.jQuery;
20472047

20482048
var deepCopy = function deepCopy(arg) {
2049+
if (arg === undefined) {
2050+
return arg;
2051+
}
2052+
20492053
return $.extend(true, Array.isArray(arg) ? [] : {}, arg);
20502054
};
20512055

dist/bootstrap-table-vue.esm.min.js

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

dist/bootstrap-table-vue.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2052,6 +2052,10 @@
20522052
var $ = window.jQuery;
20532053

20542054
var deepCopy = function deepCopy(arg) {
2055+
if (arg === undefined) {
2056+
return arg;
2057+
}
2058+
20552059
return $.extend(true, Array.isArray(arg) ? [] : {}, arg);
20562060
};
20572061

dist/bootstrap-table-vue.min.js

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

dist/bootstrap-table.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @author zhixin wen <[email protected]>
3-
* version: 1.17.0
3+
* version: 1.17.1
44
* https://github.com/wenzhixin/bootstrap-table/
55
*/
66
.bootstrap-table .fixed-table-toolbar::after {

0 commit comments

Comments
 (0)