Skip to content

Commit d5895df

Browse files
committed
Bump version release v1.8.0
1 parent 65b32b0 commit d5895df

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

CHANGE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log: `yii2-detail-view`
22
==============================
33

4+
## Version 1.8.0
5+
6+
**Date:** 27-Sep-2018
7+
8+
- Bump up version.
9+
410
## Version 1.7.9
511

612
**Date:** 26-Sep-2018

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@
2121
}
2222
],
2323
"require": {
24-
"kartik-v/yii2-krajee-base": ">=1.9",
2524
"kartik-v/yii2-dialog": "~1.0",
26-
"kartik-v/yii2-widget-activeform": "~1.4"
25+
"kartik-v/yii2-widget-activeform": ">=1.5.6"
2726
},
2827
"autoload": {
2928
"psr-4": {
@@ -32,7 +31,7 @@
3231
},
3332
"extra": {
3433
"branch-alias": {
35-
"dev-master": "1.7.x-dev"
34+
"dev-master": "1.8.x-dev"
3635
}
3736
}
3837
}

src/DetailView.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @package yii2-detail-view
55
* @author Kartik Visweswaran <[email protected]>
66
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
7-
* @version 1.7.9
7+
* @version 1.8.0
88
*/
99

1010
namespace kartik\detail;
@@ -531,7 +531,7 @@ class DetailView extends YiiDetailView implements BootstrapInterface
531531
* - inputType: string|Closure, the HTML 5 input type if `type` is set to [[DetailView::::INPUT_HTML 5]].
532532
* - inputContainer: array|Closure, HTML attributes for the input container
533533
* - inputWidth: string|Closure, the width of the container holding the input, should be appended along with the
534-
* width unit (`px` or `%`) - this property is deprecated since v1.7.9
534+
* width unit (`px` or `%`) - this property is deprecated since v1.8.0
535535
* - fieldConfig: array|Closure, optional, the Active field configuration.
536536
* - options: array|Closure, optional, the HTML attributes for the input.
537537
* - updateAttr: string|Closure, optional, the name of the attribute to be updated, when in edit mode. This will
@@ -1134,7 +1134,7 @@ protected function renderFormAttribute($config)
11341134
$inputWidth = ArrayHelper::getValue($config, 'inputWidth', '');
11351135
$container = ArrayHelper::getValue($config, 'inputContainer', []);
11361136
if ($inputWidth != '') {
1137-
Html::addCssStyle($container, "width: {$inputWidth}"); // deprecated since v1.7.9
1137+
Html::addCssStyle($container, "width: {$inputWidth}"); // deprecated since v1.8.0
11381138
}
11391139
$template = ArrayHelper::getValue($fieldConfig, 'template', "{input}\n{error}\n{hint}");
11401140
$row = Html::tag('div', $template, $container);

src/DetailViewAsset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @package yii2-detail-view
55
* @author Kartik Visweswaran <[email protected]>
66
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
7-
* @version 1.7.9
7+
* @version 1.8.0
88
*/
99

1010
namespace kartik\detail;

src/assets/css/kv-detail-view.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @package yii2-detail-view
33
* @author Kartik Visweswaran <[email protected]>
44
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
5-
* @version 1.7.9
5+
* @version 1.8.0
66
*
77
* Styles for yii2-detail-view extension
88
*

src/assets/css/kv-detail-view.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/js/kv-detail-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @package yii2-detail-view
33
* @author Kartik Visweswaran <[email protected]>
44
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
5-
* @version 1.7.9
5+
* @version 1.8.0
66
*
77
* Client extension for the yii2-detail-view extension
88
*

src/assets/js/kv-detail-view.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)