Browse Source

Update to 1.15.5

zhixin 6 years ago
parent
commit
015c689918
8 changed files with 40 additions and 6 deletions
  1. 16 0
      CHANGELOG.md
  2. 1 1
      _config.yml
  3. 1 1
      bootstrap-table.jquery.json
  4. 1 1
      package.json
  5. 18 0
      site/news.md
  6. 1 1
      src/bootstrap-table.js
  7. 1 1
      src/bootstrap-table.scss
  8. 1 1
      src/constants/index.js

+ 16 - 0
CHANGELOG.md

@@ -1,6 +1,22 @@
 ChangeLog
 ---------
 
+### 1.15.5
+
+- **New:** Added `jqXHR` for `responseHandler` option and `onLoadSuccess` event.
+- **New:** Added `stickyHeaderOffsetLeft` and `stickyHeaderOffsetRight` for sticky-header.
+- **New:** Added Serbian RS cyrillic and latin locales.
+- **Update:** Improved `export` button when there is only one type.
+- **Update:** Fixed column events click error with `detailView`.
+- **Update:** Fixed bug for `searchOnEnterKey` and `showSearchButton` are true.
+- **Update:** Fixed `onScrollBody` event and added parameter.
+- **Update:** Fixed search input size bug with `iconSize` option.
+- **Update:** Fixed filter control select cannot work more than one table.
+- **Update:** Fixed virtual scroll to top error when using `append` method.
+- **Update:** Fixed `events` cannot work on virtual scroll.
+- **Update:** Fixed bottom border bug with `height` option.
+- **Update:** Fixed min version throw cannot convert object to primitive value error.
+
 ### 1.15.4
 
 - **New:** Added `query` to `queryParams` option.

+ 1 - 1
_config.yml

@@ -27,7 +27,7 @@ algolia:
   index_name:     bootstrap-table
 
 # Custom variables
-current_version:  1.15.4
+current_version:  1.15.5
 title:            "Bootstrap Table"
 description:      "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
 authors:          "Zhixin Wen, and Bootstrap Table contributors"

+ 1 - 1
bootstrap-table.jquery.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-table",
-  "version": "1.15.4",
+  "version": "1.15.5",
   "title": "Bootstrap Table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "author": {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "bootstrap-table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
-  "version": "1.15.4",
+  "version": "1.15.5",
   "main": "./dist/bootstrap-table.min.js",
   "directories": {
     "doc": "site"

+ 18 - 0
site/news.md

@@ -4,6 +4,24 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
+## Bootstrap Table 1.15.5
+
+<span class="post-date">12 Oct 2019</span>
+
+- **New:** Added `jqXHR` for `responseHandler` option and `onLoadSuccess` event.
+- **New:** Added `stickyHeaderOffsetLeft` and `stickyHeaderOffsetRight` for sticky-header.
+- **New:** Added Serbian RS cyrillic and latin locales.
+- **Update:** Improved `export` button when there is only one type.
+- **Update:** Fixed column events click error with `detailView`.
+- **Update:** Fixed bug for `searchOnEnterKey` and `showSearchButton` are true.
+- **Update:** Fixed `onScrollBody` event and added parameter.
+- **Update:** Fixed search input size bug with `iconSize` option.
+- **Update:** Fixed filter control select cannot work more than one table.
+- **Update:** Fixed virtual scroll to top error when using `append` method.
+- **Update:** Fixed `events` cannot work on virtual scroll.
+- **Update:** Fixed bottom border bug with `height` option.
+- **Update:** Fixed min version throw cannot convert object to primitive value error.
+
 ## Bootstrap Table 1.15.4
 
 <span class="post-date">13 Aug 2019</span>

+ 1 - 1
src/bootstrap-table.js

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.15.4
+ * version: 1.15.5
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/bootstrap-table.scss

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.15.4
+ * version: 1.15.5
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/constants/index.js

@@ -1,4 +1,4 @@
-const VERSION = '1.15.4'
+const VERSION = '1.15.5'
 
 let bootstrapVersion = 4
 try {