Skip to content

Commit

Permalink
Updates to release v1.8.6 fix #187 fix #182 fix #180 fix #178
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Jan 11, 2022
1 parent cdeb72a commit cc165ba
Show file tree
Hide file tree
Showing 9 changed files with 101 additions and 86 deletions.
7 changes: 6 additions & 1 deletion CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ Change Log: `yii2-detail-view`

## Version 1.8.6

**Date:** _under development_
**Date:** 11-Jan-2022

- Enhance & standardize php docs for new website https://docs.krajee.com.
- (bug #187): Fix BootstrapTrait usage.
- (enh #186): Correct alignments of BS3 controls in edit mode.
- (enh #185): New property `arrayValueToString` to control array values being printed via `print_r`.
- (enh #184): Add Slovak Translations and enhance model validation.
- (enh #182): Document `showErrorSummary` in docs.
- (enh #180): Accept array messages in flashes.
- (enh #178): Correct table condensed styles for child columns.

## Version 1.8.5

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014 - 2021, Kartik Visweswaran
Copyright (c) 2014 - 2022, Kartik Visweswaran
Krajee.com
All rights reserved.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-detail-view/blob/master/

> NOTE: Bootstrap 5.x support is added since v1.8.4. The extension includes a BC Breaking change with v1.7.0. With this release, the `template` property of the yii core DetailView is not anymore supported. One can use `rowOptions`, `labelColOptions`, `valueColOptions` at the widget level or widget `attributes` level to configure advanced layout functionality.
### Demo
You can see detailed [documentation](http://demos.krajee.com/detail-view) and [demonstration](http://demos.krajee.com/detail-view-demo) on usage of the extension.
### Docs & Demo
You can see detailed [documentation](http://demos.krajee.com/detail-view), [demonstration](http://demos.krajee.com/detail-view-demo) and API [code documentation](https://docs.krajee.com/kartik-detail-detailview) on usage of the extension.

## Installation

Expand Down
150 changes: 80 additions & 70 deletions src/DetailView.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/DetailViewAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* @package yii2-detail-view
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2022
* @version 1.8.6
*/

Expand Down
8 changes: 4 additions & 4 deletions src/assets/css/kv-detail-view.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* @package yii2-detail-view
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2022
* @version 1.8.6
*
* Styles for yii2-detail-view extension
*
* Author: Kartik Visweswaran
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
* For more JQuery plugins visit http://plugins.krajee.com
* For more Yii related demos visit http://demos.krajee.com
*/
Expand Down Expand Up @@ -105,11 +105,11 @@

}

.table .kv-child-table > tbody > tr > td, .table .kv-child-table > tbody > tr > th {
.kv-container-bs3 .table .kv-child-table > tbody > tr > td, .kv-container-bs3 .table .kv-child-table > tbody > tr > th {
padding: 8px;
}

.table-condensed .kv-child-table > tbody > tr > td, .table-condensed .kv-child-table > tbody > tr > th {
.kv-container-bs3 .table-condensed .kv-child-table > tbody > tr > td, .kv-container-bs3 .table-condensed .kv-child-table > tbody > tr > th {
padding: 5px;
}

Expand Down
6 changes: 3 additions & 3 deletions src/assets/css/kv-detail-view.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/assets/js/kv-detail-view.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* @package yii2-detail-view
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2022
* @version 1.8.6
*
* Client extension for the yii2-detail-view extension
*
* Author: Kartik Visweswaran
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
* For more JQuery plugins visit http://plugins.krajee.com
* For more Yii related demos visit http://demos.krajee.com
*/
Expand Down
4 changes: 2 additions & 2 deletions src/assets/js/kv-detail-view.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cc165ba

Please sign in to comment.