Browse Source

Updated version to 1.17.0

zhixin 5 years ago
parent
commit
de39d082c1
7 changed files with 71 additions and 6 deletions
  1. 1 1
      _config.yml
  2. 1 1
      bootstrap-table.jquery.json
  3. 1 1
      package.json
  4. 65 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.16.0
+current_version:  1.17.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.16.0",
+  "version": "1.17.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.16.0",
+  "version": "1.17.0",
   "main": "./dist/bootstrap-table.min.js",
   "directories": {
     "doc": "site"

+ 65 - 0
site/news.md

@@ -4,6 +4,71 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
+## Bootstrap Table 1.17.0
+
+<span class="post-date">8 Jul 2020</span>
+
+#### Core
+
+- **New:** Added `bootstrap-table` theme without any framework.
+- **New:** Added support for Bootstrap v5.
+- **New:** Added `$index` field for `remove` method.
+- **New:** Added `on-all` event for vue component.
+- **New:** Added `bg-BG` locale.
+- **New:** Added `loadingFontSize` option.
+- **New:** Added `loadingTemplate` option.
+- **New:** Added `detailView` support for `cardView`.
+- **New:** Added the `searchable` columns to the query params for server side.
+- **New:** Added `collapseRowByUniqueId` and `expandRowByUniqueId` methods.
+- **New:** Added `detailViewAlign` option for the detail view icon.
+- **New:** Added tr `class` support for `thead`.
+- **New:** Added `formatted` parameter for `getData` method to get formatted data.
+- **New:** Added `paginationParts` option instead of `onlyInfoPagination`.
+- **Update:** Fixed `updateByUniqueId` method cannot update multiple rows bug.
+- **Update:** Fixed `insertRow` not write to source data array bug.
+- **Update:** Fixed events bug with `detailViewIcon` option.
+- **Update:** Fixed server side pagination sort bug.
+- **Update:** Fixed the `page-change` event before init server.
+- **Update:** Fixed no records found `colspan` error.
+- **Update:** Fixed the `page-change` event before init server.
+- **Update:** Fixed `font-size` of the loading text.
+- **Update:** Fixed table `border` bug when table is hidden.
+- **Update:** Fixed `showRow` method show all hidden rows bug.
+- **Remove:** Removed the `onlyInfoPagination` option.
+
+#### Extensions
+
+- **New(cookie)**: Added support for toggle all columns options.
+- **New(custom-view):** Added `custom-view` extension.
+- **New(editable):** Added `alwaysUseFormatter` option.
+- **New(export):** Added `forceHide` column option.
+- **New(filter-control):** Added `filterOrderBy` column option support order by `server`.
+- **New(filter-control):** Added radio support for `filterControlContainer`.
+- **New(filter-control):** Added `filterControlVisible` option and `toggleFilterControl` method.
+- **New(filter-control):** Added `showFilterControlSwitch` option.
+- **New(fixed-columns):** Added support for sticky-header.
+- **New(pipeline):** Added `pipeline` extension.
+- **New(print):** Added support for print footer and merge cells.
+- **Update(accent-neutralise):** Fixed comparison with arrays.
+- **Update(cookie):** Updated cookie columns to always visible when `switchable` is `false`.
+- **Update(cookie):** Fixed cookie value from existing options bug.
+- **Update(editable):** Fixed not handle quotation marks bug.
+- **Update(editable):** Updated `noeditFormatter` to `noEditFormatter`.
+- **Update(export):** Fixed export error with `maintainMetaData` and `clientSidePagination`.
+- **Update(filter-control):** Fixed not work with `height` option.
+- **Update(filter-control):** Fixed not work in multiple tables.
+- **Update(filter-control):** Fixed ignore default search text bug.
+- **Update(filter-control):** Fixed not work with html formatter.
+- **Update(filter-control):** Fixed reset `filterBy` method bug.
+- **Update(filter-control):** Fixed issue with a custom filter control container.
+- **Update(filter-control):** Fixed filter control disappear after column switched.
+- **Update(fixed-columns):** Fixed loading message not hide bug.
+- **Update(group-by):** Fixed params error of `checkAll`/`uncheckAll`.
+- **Update(multiple-sort):** Fixed not working with multiple level field bug.
+- **Update(reorder-columns):** Fixed cannot work bug.
+- **Update(reorder-rows):** Fixed `this` context of `onPostBody` error.
+- **Update(treegrid):** Fixed treegrid `destroy` bug.
+
 ## Bootstrap Table 1.16.0
 
 <span class="post-date">11 Feb 2020</span>

+ 1 - 1
src/bootstrap-table.js

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

+ 1 - 1
src/constants/index.js

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