Skip to content

Commit 65f2c4b

Browse files
committed
Updates to release v1.0.5
1 parent f3530ae commit 65f2c4b

File tree

8 files changed

+14
-10
lines changed

8 files changed

+14
-10
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-widget-colorinput`
22
====================================
33

4+
## Version 1.0.5
5+
6+
**Date:** 12-Sep-2018
7+
8+
- Refactor code to consolidate Trait use.
9+
410
## Version 1.0.4
511

612
**Date:** 06-Sep-2018

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ yii2-widget-colorinput
1010

1111
The ColorInput widget is an advanced ColorPicker input styled for Bootstrap. It uses a combination of the HTML5 color input and/or the [JQuery Spectrum Plugin](http://bgrins.github.io/spectrum) for rendering the color picker. You can use the Native HTML5 color input by setting the `useNative` option to `true`. Else, the Spectrum plugin polyfills for unsupported browser versions.
1212

13-
* Specially styled for Bootstrap 3.0 with customizable caption showing the output of the control.
13+
* Specially styled for Bootstrap 3.x and 4.x with customizable caption showing the output of the control.
1414
* Ability to prepend and append addons.
1515
* Allow the input to be changed both via the control or the text box.
1616
* The Spectrum plugin automatically polyfills the `HTML5 color input` for unsupported browser versions.
@@ -63,4 +63,4 @@ echo ColorInput::widget([
6363

6464
## License
6565

66-
**yii2-widget-colorinput** is released under the BSD 3-Clause License. See the bundled `LICENSE.md` for details.
66+
**yii2-widget-colorinput** is released under the BSD-3-Clause License. See the bundled `LICENSE.md` for details.

src/ColorInput.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018
55
* @package yii2-widgets
66
* @subpackage yii2-widget-colorinput
7-
* @version 1.0.4
7+
* @version 1.0.5
88
*/
99

1010
namespace kartik\color;
@@ -27,8 +27,6 @@
2727
*/
2828
class ColorInput extends Html5Input
2929
{
30-
use TranslationTrait;
31-
3230
/**
3331
* @var boolean whether to use the native HTML5 color input
3432
*/

src/ColorInputAsset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018
55
* @package yii2-widgets
66
* @subpackage yii2-widget-colorinput
7-
* @version 1.0.4
7+
* @version 1.0.5
88
*/
99

1010
namespace kartik\color;

src/assets/css/spectrum-kv.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.0.4
3+
* @version 1.0.5
44
*
55
* Krajee CSS Theme for Spectrum plugin used in `kartik-v/yii2-widget-colorinput`
66
*

src/assets/css/spectrum-kv.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/spectrum-kv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.0.4
3+
* @version 1.0.5
44
*
55
* Additional jQuery plugin enhancements for ColorInput Spectrum plugin by Krajee.
66
*

src/assets/js/spectrum-kv.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.0.4
3+
* @version 1.0.5
44
*
55
* Additional jQuery plugin enhancements for ColorInput Spectrum plugin by Krajee.
66
*

0 commit comments

Comments
 (0)