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
8
8
[ ![ License] ( https://poser.pugx.org/unclead/yii2-multiple-input/license )] ( https://packagist.org/packages/unclead/yii2-multiple-input )
9
9
10
10
## 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
12
12
13
13
## Installation
14
14
The 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
8
8
version B between A and C, you need to following the instructions
9
9
for both A and B.
10
10
11
- Upgrade 2.11.0
12
- ---------------------------
11
+ Upgrade 2.12.0 (when yii2 2.0.13 will be released)
12
+ --------------------------------------------------
13
13
- Ensure you use yii2 2.0.13 and higher, otherwise you have to use previous version of the widget
14
14
15
15
Upgrade from 2.2.0 tp 2.3.0
Original file line number Diff line number Diff line change 9
9
" yii2 tabular input"
10
10
],
11
11
"type" : " yii2-extension" ,
12
- "version" : " 2.11.0 " ,
12
+ "version" : " 2.11.1 " ,
13
13
"license" : " BSD-3-Clause" ,
14
14
"support" : {
15
15
"issues" : " https://github.com/unclead/yii2-multiple-input/issues?state=open" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jquery.multipleInput" ,
3
- "version" : " 2.11.0 " ,
3
+ "version" : " 2.11.1 " ,
4
4
"description" : " jQuery multipleInput" ,
5
5
"scripts" : {
6
6
"build" : " npm install && (gulp || node node_modules/gulp/bin/gulp.js)"
Original file line number Diff line number Diff line change 11
11
use Closure ;
12
12
use yii \base \InvalidConfigException ;
13
13
use yii \base \Model ;
14
- use yii \base \BaseObject ;
14
+ use yii \base \Object ;
15
15
use yii \db \ActiveRecordInterface ;
16
16
use yii \helpers \ArrayHelper ;
17
17
use yii \helpers \Html ;
23
23
*
24
24
* @package unclead\multipleinput\components
25
25
*/
26
- abstract class BaseColumn extends BaseObject
26
+ abstract class BaseColumn extends Object
27
27
{
28
28
const TYPE_TEXT_INPUT = 'textInput ' ;
29
29
const TYPE_HIDDEN_INPUT = 'hiddenInput ' ;
Original file line number Diff line number Diff line change 15
15
use yii \base \InvalidConfigException ;
16
16
use yii \base \Model ;
17
17
use yii \base \NotSupportedException ;
18
- use yii \base \BaseObject ;
18
+ use yii \base \Object ;
19
19
use yii \db \ActiveRecordInterface ;
20
20
use yii \web \View ;
21
21
use yii \widgets \ActiveForm ;
29
29
* Class BaseRenderer
30
30
* @package unclead\multipleinput\renderers
31
31
*/
32
- abstract class BaseRenderer extends BaseObject implements RendererInterface
32
+ abstract class BaseRenderer extends Object implements RendererInterface
33
33
{
34
34
/**
35
35
* @var string the ID of the widget
You can’t perform that action at this time.
0 commit comments