Browse Source

Update to 1.16.0

zhixin 5 years ago
parent
commit
69b197d1b1
7 changed files with 91 additions and 6 deletions
  1. 1 1
      _config.yml
  2. 1 1
      bootstrap-table.jquery.json
  3. 1 1
      package.json
  4. 85 0
      site/news.md
  5. 1 1
      src/bootstrap-table.js
  6. 1 1
      src/bootstrap-table.scss
  7. 1 1
      src/constants/index.js

+ 1 - 1
_config.yml

@@ -27,7 +27,7 @@ algolia:
   index_name:     bootstrap-table
 
 # Custom variables
-current_version:  1.15.5
+current_version:  1.16.0
 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.5",
+  "version": "1.16.0",
   "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.5",
+  "version": "1.16.0",
   "main": "./dist/bootstrap-table.min.js",
   "directories": {
     "doc": "site"

+ 85 - 0
site/news.md

@@ -4,6 +4,91 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
+## Bootstrap Table 1.16.0
+
+<span class="post-date">11 Feb 2020</span>
+
+#### Core
+
+- **New:** Added `buttonsOrder` option.
+- **New:** Added `headerStyle` option.
+- **New:** Added `showColumnsSearch` option.
+- **New:** Added `serverSort` option.
+- **New:** Added `unfiltered` parameter for `getData` method.
+- **Update:** Updated `event` name to lowercase hyphen format for vue component.
+- **Update:** Updated `es-AR` locale.
+- **Update:** Updated the default classes of semantic theme.
+- **Update:** Improved the `resize` problem with multiple tables.
+- **Update:** Fixed `checkAll` event bug with sortable checkbox field.
+- **Update:** Fixed `checkbox` and not-found td style errors.
+- **Update:** Fixed `customSearch` return empty array bug.
+- **Update:** Fixed column checkboxes not being disabled when using `toggleAll`.
+- **Update:** Fixed `flat` not polyfilled error in vue cli3.
+- **Update:** Fixed `height` and `border` not aligned bug.
+- **Update:** Fixed `jqXHR` `undefined` error using custom ajax.
+- **Update:** Fixed `pageSize` set to all bug with filter.
+- **Update:** Fixed `refreshOptions` bug with radio and checkbox.
+- **Update:** Fixed `removeAll` bug in the last page when sidePagination is server.
+- **Update:** Fixed `search` not always trigger in IE11 bug.
+- **Update:** Fixed `search` width `escape` bug.
+- **Update:** Fixed `showColumns` cannot work of foundation theme.
+- **Update:** Fixed `showFullscreen` bug when setting height.
+- **Update:** Fixed `sort` cannot work after searching.
+- **Update:** Fixed `sortable` style error when using `table-sm`.
+- **Update:** Fixed `sortStable` not work bug.
+- **Update:** Fixed `triggerSearch` not work bug.
+- **Update:** Supported build cross all platforms.
+- **Remove:** Removed `resetWidth` method and use `resetView` instead.
+
+#### Extensions
+
+- **New(cookie):** Added new options to get/set/delete the values by a custom function.
+- **New(cookie):** Added save re-order and resize support.
+- **New(filter-control):** Added `filterControlContainer` option.
+- **New(filter-control):** Added `filterCustomSearch` option.
+- **New(filter-control):** Added object and function support in `filterData` column option.
+- **New(filter-control):** Added support for using sticky-header extension.
+- **New(filter-control):** Added support comparisons search(<, >, <=, =<, >=, =>).
+- **New(fixed-columns):** Added all themes support.
+- **New(fixed-columns):** Added `fixedRightNumber` option.
+- **New(fixed-columns):** Added support for using filter-control extension.
+- **New(group-by):** Add `Array` support for `groupByField` option.
+- **New(group-by):** Added `customSort` option support.
+- **New(multiple-sort):** Added custom `sorter` support.
+- **New(multiple-sort):** Added `multiSortStrictSort` option.
+- **New(multiple-sort):** Added `multiSort` method.
+- **New(print):** Added `printFormatter` data-attribute support.
+- **New(reorder-columns):** Added `orderColumns` method.
+- **New(reorder-rows):** Added `search` and `cardView` supported.
+- **New(sticky-header):** Added support for all themes.
+- **New(toolbar):** Added support for all themes.
+- **New(reorder-rows):** Added `search` and `cardView` support.
+- **Update(cookie):** Fixed cookie localeStorage not work bug with filter-control.
+- **Update(cookie):** Fixed `minimumCountColumns` not working bug.
+- **Update(cookie):** Improved `cookiesEnabled` to support ' in `data-attribute`.
+- **Update(editable):** Fixed `formatter` bug if the column was edited.
+- **Update(filter-control):** Fixed `hideUnusedSelectOptions` not work bug.
+- **Update(filter-control):** Fixed filter not work bug with `undefined`.
+- **Update(filter-control):** Fixed missing parameter of `resetSearch` and `filterDataType`.
+- **Update(filter-control):** Fixed `search` with filter-control `search` bug.
+- **Update(filter-control):** Fixed the `value` of select display error using editable.
+- **Update(fixed-columns):** Fixed checkbox bug with fixed columns.
+- **Update(fixed-columns):** Updated default value to `0` of `fixedNumber` option.
+- **Update(group-by):** Improved `number` type support.
+- **Update(group-by):** Fixed new table using modal bug.
+- **Update(group-by):** Fixed `scrollTo` method using group-by.
+- **Update(mobile):** Fixed input keyboard bug.
+- **Update(multiple-sort):** Fixed not destroy bug.
+- **Update(multiple-sort):** Fixed sort not work with `boolean` bug.
+- **Update(print):** Improved to use `undefinedText` option.
+- **Update(print):** Fixed IE11 not work bug.
+- **Update(reorder-columns):** Fixed detail view column reorder bug.
+- **Update(resizable):** Fixed columns resizing not work bug.
+- **Update(resizable):** Fixed not work via JavaScript.
+- **Update(sticky-header):** Fixed not work bug with fullscreen.
+- **Update(treegrid):** Fixed `virtualScroll` option bug.
+- **Remove:** Removed natural-sorting extension.
+
 ## Bootstrap Table 1.15.5
 
 <span class="post-date">12 Oct 2019</span>

+ 1 - 1
src/bootstrap-table.js

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.15.5
+ * version: 1.16.0
  * 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.5
+ * version: 1.16.0
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/constants/index.js

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