Skip to content

Commit 53d41f3

Browse files
author
Dmitry Kuzin (DevExpress)
committed
Merge branch 'master' of https://github.com/surveyjs/widgets
2 parents 35d36d3 + 0aa8391 commit 53d41f3

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="1.1.16"></a>
6+
## [1.1.16](https://github.com/surveyjs/widgets/compare/v1.1.15...v1.1.16) (2019-10-16)
7+
8+
9+
510
<a name="1.1.15"></a>
611
## [1.1.15](https://github.com/surveyjs/widgets/compare/v1.1.14...v1.1.15) (2019-10-08)
712

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "surveyjs-widgets",
3-
"version": "1.1.15",
3+
"version": "1.1.16",
44
"scripts": {
55
"start": "npm run build && live-server",
66
"watch": "webpack --env.buildType dev --watch",

src/select2-tagbox.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ function init(Survey, $) {
1818
Survey.JsonObject.metaData.addClass(
1919
"tagbox",
2020
[
21-
{
22-
name: "hasOther",
23-
visible: false
24-
}
21+
{ name: "hasOther:boolean", visible: false },
22+
{ name: "hasSelectAll:boolean", visible: false },
23+
{ name: "hasNone:boolean", visible: false },
24+
{ name: "otherText", visible: false },
25+
{ name: "selectAllText", visible: false },
26+
{ name: "noneText", visible: false }
2527
],
2628
null,
2729
"checkbox"

0 commit comments

Comments
 (0)