File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Yii2 widget for handle multiple inputs for an attribute of model and tabular inp
88[ ![ License] ( https://poser.pugx.org/unclead/yii2-multiple-input/license )] ( https://packagist.org/packages/unclead/yii2-multiple-input )
99
1010## Latest release
11- The latest stable version of the extension is v2.11.0 Follow the [ instruction] ( ./UPGRADE.md ) for upgrading from previous versions
11+ The latest stable version of the extension is v2.11.1 Follow the [ instruction] ( ./UPGRADE.md ) for upgrading from previous versions
1212
1313## Installation
1414The preferred way to install this extension is through [ composer] ( http://getcomposer.org/download/ ) .
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ if you want to upgrade from version A to version C and there is
88version B between A and C, you need to following the instructions
99for both A and B.
1010
11- Upgrade 2.11.0
12- ---------------------------
11+ Upgrade 2.12.0 (when yii2 2.0.13 will be released)
12+ --------------------------------------------------
1313- Ensure you use yii2 2.0.13 and higher, otherwise you have to use previous version of the widget
1414
1515Upgrade from 2.2.0 tp 2.3.0
Original file line number Diff line number Diff line change 99 " yii2 tabular input"
1010 ],
1111 "type" : " yii2-extension" ,
12- "version" : " 2.11.0 " ,
12+ "version" : " 2.11.1 " ,
1313 "license" : " BSD-3-Clause" ,
1414 "support" : {
1515 "issues" : " https://github.com/unclead/yii2-multiple-input/issues?state=open" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " jquery.multipleInput" ,
3- "version" : " 2.11.0 " ,
3+ "version" : " 2.11.1 " ,
44 "description" : " jQuery multipleInput" ,
55 "scripts" : {
66 "build" : " npm install && (gulp || node node_modules/gulp/bin/gulp.js)"
Original file line number Diff line number Diff line change 1111use Closure ;
1212use yii \base \InvalidConfigException ;
1313use yii \base \Model ;
14- use yii \base \BaseObject ;
14+ use yii \base \Object ;
1515use yii \db \ActiveRecordInterface ;
1616use yii \helpers \ArrayHelper ;
1717use yii \helpers \Html ;
2323 *
2424 * @package unclead\multipleinput\components
2525 */
26- abstract class BaseColumn extends BaseObject
26+ abstract class BaseColumn extends Object
2727{
2828 const TYPE_TEXT_INPUT = 'textInput ' ;
2929 const TYPE_HIDDEN_INPUT = 'hiddenInput ' ;
Original file line number Diff line number Diff line change 1515use yii \base \InvalidConfigException ;
1616use yii \base \Model ;
1717use yii \base \NotSupportedException ;
18- use yii \base \BaseObject ;
18+ use yii \base \Object ;
1919use yii \db \ActiveRecordInterface ;
2020use yii \web \View ;
2121use yii \widgets \ActiveForm ;
2929 * Class BaseRenderer
3030 * @package unclead\multipleinput\renderers
3131 */
32- abstract class BaseRenderer extends BaseObject implements RendererInterface
32+ abstract class BaseRenderer extends Object implements RendererInterface
3333{
3434 /**
3535 * @var string the ID of the widget
You can’t perform that action at this time.
0 commit comments