Skip to content

Commit 151edfa

Browse files
authored
Merge pull request #6148 from wenzhixin/develop
v1.20.1
2 parents 67eba84 + 5f7af6f commit 151edfa

File tree

224 files changed

+15237
-7333
lines changed

Some content is hidden

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

224 files changed

+15237
-7333
lines changed

.github/ISSUE_TEMPLATE/1_Bug_report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
id: affected-versions
88
attributes:
99
label: Bootstraptable version(s) affected
10-
placeholder: 1.18.0
10+
placeholder: 1.20.1
1111
validations:
1212
required: true
1313
- type: textarea
@@ -38,4 +38,4 @@ body:
3838
attributes:
3939
value: |
4040
Love bootstrap-table? Please consider supporting our collective:
41-
👉 https://opencollective.com/bootstrap-table/donate
41+
👉 https://opencollective.com/bootstrap-table/donate

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Build theme with node
2121
run: |
2222
cd ${{ github.workspace }}/site/_themes
23-
yarn
23+
yarn install --frozen-lockfile
2424
yarn build
2525
mv dist/js ../assets/js/themes
2626
cd ../assets/js/themes

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 16
15+
cache: 'yarn'
16+
17+
- uses: actions/checkout@v3
18+
with:
19+
repository: 'wenzhixin/bootstrap-table-examples'
20+
path: './tools/bootstrap-table-examples'
21+
22+
- name: Lint src and check docs
23+
run: |
24+
yarn install --frozen-lockfile
25+
yarn pre-commit
26+
27+
- name: Cypress Test
28+
run: |
29+
mv ./tools/bootstrap-table-examples cypress/html
30+
yarn css:build:src
31+
yarn test

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ check.js
2121
# Common IDE files
2222
nbproject
2323
.~lock.*
24+
Gemfile.lock
2425
package-lock.json
25-
*.lock
2626
.buildpath
2727
.idea
2828
.project

.travis.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
ChangeLog
22
---------
33

4+
### 1.20.1
5+
6+
### Core
7+
8+
- **Update:** Fixed toggle column bug with complex headers.
9+
- **Update:** Fixed icons option cannot work bug when it's a string.
10+
- **Update:** Updated TypeScript definitions.
11+
12+
##### Extensions
13+
14+
- **Update(cookie):** Fixed cookie extension error with multiple-sort.
15+
- **Update(export):** Fixed the `exportOptions` option cannot support the data attribute.
16+
- **Update(reorder-rows):** Fixed reorder-rows cannot work because of missing default functions.
17+
18+
419
### 1.20.0
520

621
#### Core

_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.20.0
30+
current_version: 1.20.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.20.0",
3+
"version": "1.20.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": {
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
require('../../../../extensions/filter-control/options')('bootstrap5')
1+
require('../../../../extensions/filter-control/options')('bootstrap4')
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
require('../../../../extensions/filter-control/options')()
1+
require('../../../../extensions/filter-control/options')()

0 commit comments

Comments
 (0)