From aecb3f4a2e80c5764b8b9c5bd34d4fc2cb991c97 Mon Sep 17 00:00:00 2001 From: Kartik Visweswaran Date: Thu, 20 Sep 2018 19:44:11 +0530 Subject: [PATCH] Updates to release v3.2.2 --- CHANGE.md | 8 ++++++++ README.md | 2 +- src/ActionColumn.php | 2 +- src/ActionColumnAsset.php | 2 +- src/BooleanColumn.php | 2 +- src/CheckboxColumn.php | 2 +- src/CheckboxColumnAsset.php | 2 +- src/ColumnTrait.php | 2 +- src/DataColumn.php | 2 +- src/Demo.php | 2 +- src/EditableColumn.php | 2 +- src/EditableColumnAction.php | 2 +- src/EditableColumnAsset.php | 2 +- src/ExpandRowColumn.php | 7 +++++-- src/ExpandRowColumnAsset.php | 2 +- src/FormulaColumn.php | 2 +- src/GridExportAsset.php | 2 +- src/GridFloatHeadAsset.php | 2 +- src/GridGroupAsset.php | 2 +- src/GridPerfectScrollbarAsset.php | 2 +- src/GridResizeColumnsAsset.php | 2 +- src/GridResizeStoreAsset.php | 2 +- src/GridToggleDataAsset.php | 2 +- src/GridView.php | 12 ++++++------ src/GridViewAsset.php | 2 +- src/Module.php | 2 +- src/RadioColumn.php | 2 +- src/RadioColumnAsset.php | 2 +- src/SerialColumn.php | 2 +- src/assets/css/kv-grid-expand.css | 2 +- src/assets/css/kv-grid-expand.min.css | 2 +- src/assets/css/kv-grid.css | 6 +++++- src/assets/css/kv-grid.min.css | 4 ++-- src/assets/js/kv-grid-checkbox.js | 2 +- src/assets/js/kv-grid-checkbox.min.js | 2 +- src/assets/js/kv-grid-editable.js | 2 +- src/assets/js/kv-grid-editable.min.js | 2 +- src/assets/js/kv-grid-expand.js | 2 +- src/assets/js/kv-grid-expand.min.js | 2 +- src/assets/js/kv-grid-export.js | 2 +- src/assets/js/kv-grid-export.min.js | 2 +- src/assets/js/kv-grid-group.js | 2 +- src/assets/js/kv-grid-group.min.js | 2 +- src/assets/js/kv-grid-radio.js | 2 +- src/assets/js/kv-grid-radio.min.js | 2 +- src/assets/js/kv-grid-toggle.js | 2 +- src/assets/js/kv-grid-toggle.min.js | 2 +- src/controllers/ExportController.php | 2 +- 48 files changed, 69 insertions(+), 54 deletions(-) diff --git a/CHANGE.md b/CHANGE.md index e7761edc..2ef62f9e 100755 --- a/CHANGE.md +++ b/CHANGE.md @@ -1,6 +1,14 @@ Change Log: `yii2-grid` ======================= +## Version 3.2.2 + +**Date:** 20-Sep-2018 + +- Enhance ExpandRowColumn default row css for Bootstrap 4.x. +- Enhance styling and behavior for Bootstrap 4.x. +- (bug #826): Update Ukrainian Translations. + ## Version 3.2.1 **Date:** 12-Sep-2018 diff --git a/README.md b/README.md index 855897ff..6031335e 100755 --- a/README.md +++ b/README.md @@ -301,4 +301,4 @@ echo GridView::widget([ ## License -**yii2-grid** is released under the BSD 3-Clause License. See the bundled `LICENSE.md` for details. \ No newline at end of file +**yii2-grid** is released under the BSD-3-Clause License. See the bundled `LICENSE.md` for details. \ No newline at end of file diff --git a/src/ActionColumn.php b/src/ActionColumn.php index 52ea67b1..e6c3e847 100644 --- a/src/ActionColumn.php +++ b/src/ActionColumn.php @@ -3,7 +3,7 @@ /** * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 * @package yii2-grid - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/ActionColumnAsset.php b/src/ActionColumnAsset.php index 32f7e3f9..0cd1d929 100644 --- a/src/ActionColumnAsset.php +++ b/src/ActionColumnAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/BooleanColumn.php b/src/BooleanColumn.php index 9234e905..c882e502 100644 --- a/src/BooleanColumn.php +++ b/src/BooleanColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/CheckboxColumn.php b/src/CheckboxColumn.php index 8b2f41e6..341061b1 100644 --- a/src/CheckboxColumn.php +++ b/src/CheckboxColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/CheckboxColumnAsset.php b/src/CheckboxColumnAsset.php index 9ab65e86..c422c43f 100644 --- a/src/CheckboxColumnAsset.php +++ b/src/CheckboxColumnAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/ColumnTrait.php b/src/ColumnTrait.php index b26c535f..7b4ad706 100644 --- a/src/ColumnTrait.php +++ b/src/ColumnTrait.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/DataColumn.php b/src/DataColumn.php index 2dcc8c63..15cb34ae 100644 --- a/src/DataColumn.php +++ b/src/DataColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/Demo.php b/src/Demo.php index 71f4a63a..5de634f2 100644 --- a/src/Demo.php +++ b/src/Demo.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/EditableColumn.php b/src/EditableColumn.php index b4deb5c0..7c16f56e 100644 --- a/src/EditableColumn.php +++ b/src/EditableColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/EditableColumnAction.php b/src/EditableColumnAction.php index 9bf93122..2667f5e4 100644 --- a/src/EditableColumnAction.php +++ b/src/EditableColumnAction.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/EditableColumnAsset.php b/src/EditableColumnAsset.php index 22db5445..1d71834e 100644 --- a/src/EditableColumnAsset.php +++ b/src/EditableColumnAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/ExpandRowColumn.php b/src/ExpandRowColumn.php index 066b1073..97049d85 100644 --- a/src/ExpandRowColumn.php +++ b/src/ExpandRowColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; @@ -192,7 +192,7 @@ class ExpandRowColumn extends DataColumn /** * @var string the CSS class for the detail content table row. */ - public $detailRowCssClass = GridView::TYPE_INFO; + public $detailRowCssClass; /** * @var string|integer the animation duration to slide up/down the detail row. @@ -231,6 +231,9 @@ protected static function parseData($data, $model, $key, $index, $column) */ public function init() { + if (!isset($this->detailRowCssClass)) { + $this->detailRowCssClass = $this->grid->isBs4() ? 'table-' . GridView::TYPE_INFO : GridView::TYPE_INFO; + } $this->initColumnSettings([ 'hiddenFromExport' => true, 'mergeHeader' => true, diff --git a/src/ExpandRowColumnAsset.php b/src/ExpandRowColumnAsset.php index 656a875e..f3576748 100644 --- a/src/ExpandRowColumnAsset.php +++ b/src/ExpandRowColumnAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/FormulaColumn.php b/src/FormulaColumn.php index 4ab72d58..1bee2913 100644 --- a/src/FormulaColumn.php +++ b/src/FormulaColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridExportAsset.php b/src/GridExportAsset.php index 7ccccf48..e668982f 100644 --- a/src/GridExportAsset.php +++ b/src/GridExportAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridFloatHeadAsset.php b/src/GridFloatHeadAsset.php index eaf6eeb6..740d3f81 100644 --- a/src/GridFloatHeadAsset.php +++ b/src/GridFloatHeadAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridGroupAsset.php b/src/GridGroupAsset.php index b610399d..380ee435 100644 --- a/src/GridGroupAsset.php +++ b/src/GridGroupAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridPerfectScrollbarAsset.php b/src/GridPerfectScrollbarAsset.php index fc7905b0..d8fad2a6 100644 --- a/src/GridPerfectScrollbarAsset.php +++ b/src/GridPerfectScrollbarAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridResizeColumnsAsset.php b/src/GridResizeColumnsAsset.php index 5f16bc1e..a03816a0 100644 --- a/src/GridResizeColumnsAsset.php +++ b/src/GridResizeColumnsAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridResizeStoreAsset.php b/src/GridResizeStoreAsset.php index dc5167b7..bfd9dd11 100644 --- a/src/GridResizeStoreAsset.php +++ b/src/GridResizeStoreAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridToggleDataAsset.php b/src/GridToggleDataAsset.php index f6de1c28..f560daf3 100644 --- a/src/GridToggleDataAsset.php +++ b/src/GridToggleDataAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/GridView.php b/src/GridView.php index a9429fb3..0a54a580 100644 --- a/src/GridView.php +++ b/src/GridView.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; @@ -1075,18 +1075,18 @@ public function init() if (!isset($this->panelPrefix)) { $this->panelPrefix = $this->isBs4() ? 'card' : 'panel panel-'; } - if (!$this->toggleData) { - parent::init(); - return; - } $isBs4 = $this->isBs4(); - $this->_toggleDataKey = '_tog' . hash('crc32', $this->options['id']); if ($isBs4) { Html::addCssClass($this->options, 'kv-grid-bs4'); $this->setPagerOptionClass('linkContainerOptions', 'page-item'); $this->setPagerOptionClass('linkOptions', 'page-link'); $this->setPagerOptionClass('disabledListItemSubTagOptions', 'page-link'); } + if (!$this->toggleData) { + parent::init(); + return; + } + $this->_toggleDataKey = '_tog' . hash('crc32', $this->options['id']); /** * @var Request $request */ diff --git a/src/GridViewAsset.php b/src/GridViewAsset.php index 3714cd8c..741fdf5a 100644 --- a/src/GridViewAsset.php +++ b/src/GridViewAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/Module.php b/src/Module.php index b56d4598..72765779 100644 --- a/src/Module.php +++ b/src/Module.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/RadioColumn.php b/src/RadioColumn.php index 12bbc74d..cd779380 100644 --- a/src/RadioColumn.php +++ b/src/RadioColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/RadioColumnAsset.php b/src/RadioColumnAsset.php index 094ee50a..bed357f8 100644 --- a/src/RadioColumnAsset.php +++ b/src/RadioColumnAsset.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/SerialColumn.php b/src/SerialColumn.php index ac2c578f..098cd7a4 100644 --- a/src/SerialColumn.php +++ b/src/SerialColumn.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid; diff --git a/src/assets/css/kv-grid-expand.css b/src/assets/css/kv-grid-expand.css index 68ef3fed..ddcaa17a 100644 --- a/src/assets/css/kv-grid-expand.css +++ b/src/assets/css/kv-grid-expand.css @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Gridview ExpandRowColumn styling and enhancements * diff --git a/src/assets/css/kv-grid-expand.min.css b/src/assets/css/kv-grid-expand.min.css index afd4260b..9ba87464 100644 --- a/src/assets/css/kv-grid-expand.min.css +++ b/src/assets/css/kv-grid-expand.min.css @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Gridview ExpandRowColumn styling and enhancements * diff --git a/src/assets/css/kv-grid.css b/src/assets/css/kv-grid.css index a2409ca4..abaa882f 100644 --- a/src/assets/css/kv-grid.css +++ b/src/assets/css/kv-grid.css @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Yii2 Gridview widget styling and enhancements for Bootstrap. * @@ -14,6 +14,10 @@ /** * Table column heading sort styles for BS4 */ +.kv-grid-bs4 .card .kv-grid-table { + margin: 0 +} + .kv-grid-bs4 a.asc:after, .kv-grid-bs4 a.desc:after { /*noinspection CssNoGenericFontName*/ diff --git a/src/assets/css/kv-grid.min.css b/src/assets/css/kv-grid.min.css index 219f4113..15b16508 100644 --- a/src/assets/css/kv-grid.min.css +++ b/src/assets/css/kv-grid.min.css @@ -2,8 +2,8 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Yii2 Gridview widget styling and enhancements for Bootstrap. * - */.kv-grid-container,.kv-grid-loading{position:relative}.kv-grid-bs4 a.asc:after,.kv-grid-bs4 a.desc:after{font-family:"Font Awesome 5 Free";font-weight:900}.kv-grid-bs4 a.asc:after{content:"\f15e"}.kv-grid-bs4 a.desc:after{content:"\f15d"}.kv-grid-bs4 .sort-numerical a.asc:after{content:"\f163"}.kv-grid-bs4 .sort-numerical a.desc:after{content:"\f162"}.kv-panel-pager{min-height:34px}.kv-panel-pager .pagination{margin:0 0 -5px;padding:0}.kv-panel-before{padding:10px;border-bottom:1px solid #ddd}.kv-panel-after{padding:10px;border-top:1px solid #ddd}.kv-table-float{border-top:none;border-bottom:none;background-color:#fff}.kv-grid-loading .card,.kv-grid-loading .table,.kv-loader-overlay{background:0 0;opacity:.6}.kv-align-center{text-align:center}.kv-align-left{text-align:left}.kv-align-right{text-align:right}.kv-align-top{vertical-align:top!important}.kv-align-bottom{vertical-align:bottom!important}.kv-align-middle{vertical-align:middle!important}.kv-nowrap{white-space:nowrap}.kv-merged-header{border-bottom-width:2px}.kv-page-summary,.kv-table-footer{border-top:4px double #ddd;font-weight:700}.kv-table-caption{font-size:1.5em;padding:8px;border:1px solid #ddd;border-bottom:none;text-align:center}.panel .kv-table-caption{border:none;border-bottom:1px solid #ddd}.kv-grid-loading{overflow:hidden;max-height:100%}.kv-grid-loading .kv-loader-overlay{display:block}.kv-loader-overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.kv-loader{position:absolute;background:url(../img/loading.gif) center center no-repeat #fff!important;width:100px;height:100px;top:50%;left:50%}.kv-grid-hide{display:none!important}.kv-grid-toolbar .dropdown-menu{z-index:1025}.panel .table-responsive>.floatThead-wrapper>.table,.panel>.floatThead-wrapper>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel .table-responsive>.floatThead-wrapper>.table caption,.panel>.floatThead-wrapper>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.floatThead-wrapper>.table:first-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.floatThead-wrapper>.table:last-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.floatThead-wrapper>.table+.panel-body,.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table-responsive>.floatThead-wrapper+.panel-body{border-top:1px solid #ddd}.panel>.floatThead-wrapper>.table>tbody:first-child>tr:first-child td,.panel>.floatThead-wrapper>.table>tbody:first-child>tr:first-child th{border-top:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered,.panel>.floatThead-wrapper>.table-bordered{border:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>th:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>th:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>th:first-child{border-left:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>th:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>th:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>th:last-child{border-right:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>th,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr:first-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr:first-child>th,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>td,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>th,.panel>.floatThead-wrapper>.table-bordered>thead>tr:first-child>td,.panel>.floatThead-wrapper>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>th,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>th,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>td,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>th,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>td,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>th{border-bottom:0;border-radius:3px}@media screen and (max-width:480px){.kv-table-wrap td,.kv-table-wrap th{display:block;width:100%!important;text-align:center;font-size:1.2em}.kv-table-wrap tr>td:first-child{border-top:3px double #ccc;margin-top:10px;font-size:2em}}.kv-clear-radio{float:none}td.kv-group-even{background-color:#f0f1ff!important}.table-hover td.kv-group-even:hover{background-color:#d7d9ff!important}td.kv-group-odd{background-color:#f9fcff!important}.table-hover td.kv-group-odd:hover{background-color:#d7ecff!important}.kv-grouped-row{background-color:#FFF0F5!important;font-size:1.3em;padding-top:10px!important;padding-bottom:10px!important}.table-hover .kv-grouped-row:hover{background-color:#FFE4E1!important}.kv-grid-wrapper{position:relative;overflow:auto;height:300px}@media (max-width:768px){.hide-resize .rc-handle-container{overflow:hidden}} \ No newline at end of file + */.kv-grid-container,.kv-grid-loading{position:relative}.kv-grid-bs4 .card .kv-grid-table{margin:0}.kv-grid-bs4 a.asc:after,.kv-grid-bs4 a.desc:after{font-family:"Font Awesome 5 Free";font-weight:900}.kv-grid-bs4 a.asc:after{content:"\f15e"}.kv-grid-bs4 a.desc:after{content:"\f15d"}.kv-grid-bs4 .sort-numerical a.asc:after{content:"\f163"}.kv-grid-bs4 .sort-numerical a.desc:after{content:"\f162"}.kv-panel-pager{min-height:34px}.kv-panel-pager .pagination{margin:0 0 -5px;padding:0}.kv-panel-before{padding:10px;border-bottom:1px solid #ddd}.kv-panel-after{padding:10px;border-top:1px solid #ddd}.kv-table-float{border-top:none;border-bottom:none;background-color:#fff}.kv-grid-loading .card,.kv-grid-loading .table,.kv-loader-overlay{background:0 0;opacity:.6}.kv-align-center{text-align:center}.kv-align-left{text-align:left}.kv-align-right{text-align:right}.kv-align-top{vertical-align:top!important}.kv-align-bottom{vertical-align:bottom!important}.kv-align-middle{vertical-align:middle!important}.kv-nowrap{white-space:nowrap}.kv-merged-header{border-bottom-width:2px}.kv-page-summary,.kv-table-footer{border-top:4px double #ddd;font-weight:700}.kv-table-caption{font-size:1.5em;padding:8px;border:1px solid #ddd;border-bottom:none;text-align:center}.panel .kv-table-caption{border:none;border-bottom:1px solid #ddd}.kv-grid-loading{overflow:hidden;max-height:100%}.kv-grid-loading .kv-loader-overlay{display:block}.kv-loader-overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.kv-loader{position:absolute;background:url(../img/loading.gif) center center no-repeat #fff!important;width:100px;height:100px;top:50%;left:50%}.kv-grid-hide{display:none!important}.kv-grid-toolbar .dropdown-menu{z-index:1025}.panel .table-responsive>.floatThead-wrapper>.table,.panel>.floatThead-wrapper>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel .table-responsive>.floatThead-wrapper>.table caption,.panel>.floatThead-wrapper>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.floatThead-wrapper>.table:first-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.floatThead-wrapper>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.floatThead-wrapper>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.floatThead-wrapper>.table:last-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.floatThead-wrapper>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.floatThead-wrapper>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive>.floatThead-wrapper:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.floatThead-wrapper>.table+.panel-body,.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table-responsive>.floatThead-wrapper+.panel-body{border-top:1px solid #ddd}.panel>.floatThead-wrapper>.table>tbody:first-child>tr:first-child td,.panel>.floatThead-wrapper>.table>tbody:first-child>tr:first-child th{border-top:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered,.panel>.floatThead-wrapper>.table-bordered{border:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>th:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>th:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>td:first-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>th:first-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>td:first-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>th:first-child{border-left:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr>th:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr>th:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>td:last-child,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>tbody>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr>th:last-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>td:last-child,.panel>.floatThead-wrapper>.table-bordered>thead>tr>th:last-child{border-right:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>th,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr:first-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>thead>tr:first-child>th,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>td,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:first-child>th,.panel>.floatThead-wrapper>.table-bordered>thead>tr:first-child>td,.panel>.floatThead-wrapper>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>th,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>td,.panel .table-responsive>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>th,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>td,.panel>.floatThead-wrapper>.table-bordered>tbody>tr:last-child>th,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>td,.panel>.floatThead-wrapper>.table-bordered>tfoot>tr:last-child>th{border-bottom:0;border-radius:3px}@media screen and (max-width:480px){.kv-table-wrap td,.kv-table-wrap th{display:block;width:100%!important;text-align:center;font-size:1.2em}.kv-table-wrap tr>td:first-child{border-top:3px double #ccc;margin-top:10px;font-size:2em}}.kv-clear-radio{float:none}td.kv-group-even{background-color:#f0f1ff!important}.table-hover td.kv-group-even:hover{background-color:#d7d9ff!important}td.kv-group-odd{background-color:#f9fcff!important}.table-hover td.kv-group-odd:hover{background-color:#d7ecff!important}.kv-grouped-row{background-color:#FFF0F5!important;font-size:1.3em;padding-top:10px!important;padding-bottom:10px!important}.table-hover .kv-grouped-row:hover{background-color:#FFE4E1!important}.kv-grid-wrapper{position:relative;overflow:auto;height:300px}@media (max-width:768px){.hide-resize .rc-handle-container{overflow:hidden}} \ No newline at end of file diff --git a/src/assets/js/kv-grid-checkbox.js b/src/assets/js/kv-grid-checkbox.js index 34d37364..22363dfd 100644 --- a/src/assets/js/kv-grid-checkbox.js +++ b/src/assets/js/kv-grid-checkbox.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for kartik\grid\CheckboxColumn * diff --git a/src/assets/js/kv-grid-checkbox.min.js b/src/assets/js/kv-grid-checkbox.min.js index eddef3e6..1f19a790 100644 --- a/src/assets/js/kv-grid-checkbox.min.js +++ b/src/assets/js/kv-grid-checkbox.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for yii2-grid CheckboxColumn * diff --git a/src/assets/js/kv-grid-editable.js b/src/assets/js/kv-grid-editable.js index 5fa72aac..4e8e64fc 100644 --- a/src/assets/js/kv-grid-editable.js +++ b/src/assets/js/kv-grid-editable.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for yii2-grid EditableColumn * diff --git a/src/assets/js/kv-grid-editable.min.js b/src/assets/js/kv-grid-editable.min.js index f93441a3..36b716e2 100644 --- a/src/assets/js/kv-grid-editable.min.js +++ b/src/assets/js/kv-grid-editable.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for yii2-grid EditableColumn * diff --git a/src/assets/js/kv-grid-expand.js b/src/assets/js/kv-grid-expand.js index 7049bd22..a476fddd 100644 --- a/src/assets/js/kv-grid-expand.js +++ b/src/assets/js/kv-grid-expand.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * jQuery methods library for yii2-grid expand row column * diff --git a/src/assets/js/kv-grid-expand.min.js b/src/assets/js/kv-grid-expand.min.js index bfb7d357..948f422e 100644 --- a/src/assets/js/kv-grid-expand.min.js +++ b/src/assets/js/kv-grid-expand.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * jQuery methods library for yii2-grid expand row column * diff --git a/src/assets/js/kv-grid-export.js b/src/assets/js/kv-grid-export.js index 7665d289..cfaba510 100644 --- a/src/assets/js/kv-grid-export.js +++ b/src/assets/js/kv-grid-export.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Grid Export Validation Module for Yii's Gridview. Supports export of * grid data as CSV, HTML, or Excel. diff --git a/src/assets/js/kv-grid-export.min.js b/src/assets/js/kv-grid-export.min.js index 4b6f4d43..8833bfe4 100644 --- a/src/assets/js/kv-grid-export.min.js +++ b/src/assets/js/kv-grid-export.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Grid Export Validation Module for Yii's Gridview. Supports export of * grid data as CSV, HTML, or Excel. diff --git a/src/assets/js/kv-grid-group.js b/src/assets/js/kv-grid-group.js index b515e7c8..fb745346 100644 --- a/src/assets/js/kv-grid-group.js +++ b/src/assets/js/kv-grid-group.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Grid grouping jquery library created for yii2-grid. * diff --git a/src/assets/js/kv-grid-group.min.js b/src/assets/js/kv-grid-group.min.js index 533cb668..05887f96 100644 --- a/src/assets/js/kv-grid-group.min.js +++ b/src/assets/js/kv-grid-group.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Grid grouping jquery library created for yii2-grid. * diff --git a/src/assets/js/kv-grid-radio.js b/src/assets/js/kv-grid-radio.js index 529d6ec1..832c3b92 100644 --- a/src/assets/js/kv-grid-radio.js +++ b/src/assets/js/kv-grid-radio.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for yii2-grid RadioColumn * diff --git a/src/assets/js/kv-grid-radio.min.js b/src/assets/js/kv-grid-radio.min.js index 379bc741..c0161433 100644 --- a/src/assets/js/kv-grid-radio.min.js +++ b/src/assets/js/kv-grid-radio.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * Client actions for yii2-grid RadioColumn * diff --git a/src/assets/js/kv-grid-toggle.js b/src/assets/js/kv-grid-toggle.js index 89b97736..7b697bba 100644 --- a/src/assets/js/kv-grid-toggle.js +++ b/src/assets/js/kv-grid-toggle.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * jQuery methods library for yii2-grid toggle data * diff --git a/src/assets/js/kv-grid-toggle.min.js b/src/assets/js/kv-grid-toggle.min.js index d31a9cda..ea99af0b 100644 --- a/src/assets/js/kv-grid-toggle.min.js +++ b/src/assets/js/kv-grid-toggle.min.js @@ -2,7 +2,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 * * jQuery methods library for yii2-grid toggle data * diff --git a/src/controllers/ExportController.php b/src/controllers/ExportController.php index bfe2363f..7dda6b46 100644 --- a/src/controllers/ExportController.php +++ b/src/controllers/ExportController.php @@ -4,7 +4,7 @@ * @package yii2-grid * @author Kartik Visweswaran * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018 - * @version 3.2.1 + * @version 3.2.2 */ namespace kartik\grid\controllers;