Skip to content

Commit 427505f

Browse files
committed
2 parents 96dc620 + b5bca73 commit 427505f

12 files changed

+55
-18
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
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+
### [1.9.67](https://github.com/surveyjs/custom-widgets/compare/v1.9.66...v1.9.67) (2023-01-05)
6+
7+
### [1.9.66](https://github.com/surveyjs/custom-widgets/compare/v1.9.65...v1.9.66) (2022-12-30)
8+
9+
### [1.9.65](https://github.com/surveyjs/custom-widgets/compare/v1.9.64...v1.9.65) (2022-12-20)
10+
11+
### [1.9.64](https://github.com/surveyjs/custom-widgets/compare/v1.9.63...v1.9.64) (2022-12-13)
12+
13+
### [1.9.63](https://github.com/surveyjs/custom-widgets/compare/v1.9.62...v1.9.63) (2022-12-08)
14+
15+
### [1.9.62](https://github.com/surveyjs/custom-widgets/compare/v1.9.61...v1.9.62) (2022-12-06)
16+
17+
### [1.9.61](https://github.com/surveyjs/custom-widgets/compare/v1.9.60...v1.9.61) (2022-11-30)
18+
19+
### [1.9.60](https://github.com/surveyjs/custom-widgets/compare/v1.9.59...v1.9.60) (2022-11-24)
20+
21+
### [1.9.59](https://github.com/surveyjs/custom-widgets/compare/v1.9.58...v1.9.59) (2022-11-22)
22+
23+
### [1.9.58](https://github.com/surveyjs/custom-widgets/compare/v1.9.57...v1.9.58) (2022-11-16)
24+
25+
### [1.9.57](https://github.com/surveyjs/custom-widgets/compare/v1.9.56...v1.9.57) (2022-11-08)
26+
27+
### [1.9.56](https://github.com/surveyjs/custom-widgets/compare/v1.9.55...v1.9.56) (2022-11-01)
28+
29+
### [1.9.55](https://github.com/surveyjs/custom-widgets/compare/v1.9.54...v1.9.55) (2022-10-25)
30+
31+
### [1.9.54](https://github.com/surveyjs/custom-widgets/compare/v1.9.53...v1.9.54) (2022-10-18)
32+
533
### [1.9.53](https://github.com/surveyjs/custom-widgets/compare/v1.9.52...v1.9.53) (2022-10-11)
634

735
### [1.9.52](https://github.com/surveyjs/custom-widgets/compare/v1.9.51...v1.9.52) (2022-10-04)

devops-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trigger:
1010
- v*.*.*
1111

1212
pool:
13-
vmImage: "Ubuntu-18.04"
13+
vmImage: "Ubuntu-20.04"
1414

1515
steps:
1616
- task: NodeTool@0

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "surveyjs-widgets",
3-
"version": "1.9.53",
3+
"version": "1.9.67",
44
"scripts": {
55
"start": "npm run build && live-server",
66
"watch": "webpack --env buildType=dev --watch",
77
"prebuild": "webpack --env buildType=dev",
88
"build": "webpack --env buildType=prod",
9-
"release": "standard-version --message \"Release: %s [skip ci]\"",
9+
"release": "standard-version --message \"Release: %s [azurepipelines skip]\"",
1010
"testcafe": "testcafe -c 4 chrome --app \"http-server\" testcafe/ --selector-timeout 1500",
1111
"testcafe:ci": "testcafe chrome:headless --app \"http-server\" testcafe/ --selector-timeout 1500 ",
1212
"testcafe_file": "testcafe chrome --app \"http-server\" testCafe/tagbox.ts --selector-timeout 1500 --reporter minimal"

src/bootstrapdatepicker.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ function init(Survey, $) {
107107
weekStart: question.weekStart,
108108
clearBtn: question.clearBtn,
109109
autoclose: question.autoClose,
110+
zIndexOffset: 20,
110111
daysOfWeekDisabled: question.daysOfWeekDisabled,
111112
daysOfWeekHighlighted: question.daysOfWeekHighlighted,
112113
disableTouchKeyboard: question.disableTouchKeyboard,
@@ -129,7 +130,7 @@ function init(Survey, $) {
129130
if (question.value != newValue) {
130131
question.value = newValue;
131132
}
132-
});
133+
})
133134

134135
question.valueChangedCallback = function () {
135136
pickerWidget.bootstrapDP(

src/easy-autocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function init(Survey, $) {
122122
}
123123

124124
if (typeof Survey !== "undefined") {
125-
init(Survey, window.$);
125+
init(Survey, window.jQuery);
126126
}
127127

128128
export default init;

src/emotionsratings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function init(Survey, $) {
121121
}
122122

123123
if (typeof Survey !== "undefined") {
124-
init(Survey, window.$);
124+
init(Survey, window.jQuery);
125125
}
126126

127127
export default init;

src/icheck.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ function init(Survey, $) {
167167
}
168168

169169
if (typeof Survey !== "undefined") {
170-
init(Survey, window.$);
170+
init(Survey, window.jQuery);
171171
}
172172

173173
export default init;

src/inputmask.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ function init(Survey) {
1111
numericPlaceholder: "0",
1212
autoUnmask: true,
1313
clearIncomplete: true,
14+
showMaskOnHover: true,
1415
widgetIsLoaded: function () {
1516
return typeof Inputmask != "undefined";
1617
},
@@ -35,6 +36,11 @@ function init(Survey) {
3536
category: "general",
3637
default: true,
3738
},
39+
{
40+
name: "showMaskOnHover:boolean",
41+
category: "general",
42+
default: true,
43+
},
3844
{ name: "inputFormat", category: "general" },
3945
{
4046
name: "inputMask",
@@ -96,6 +102,9 @@ function init(Survey) {
96102
options.clearIncomplete = typeof surveyElement.clearIncomplete !== "undefined"
97103
? surveyElement.clearIncomplete
98104
: rootWidget.clearIncomplete;
105+
options.showMaskOnHover = typeof surveyElement.showMaskOnHover !== "undefined"
106+
? surveyElement.showMaskOnHover
107+
: rootWidget.showMaskOnHover;
99108
if (surveyElement.inputMask !== "none") {
100109
options.inputFormat = surveyElement.inputFormat;
101110
}
@@ -112,15 +121,14 @@ function init(Survey) {
112121
options.digitsOptional = rootWidget.numericDigitsOptional;
113122
options.prefix = surveyElement.prefix || "";
114123
options.suffix = surveyElement.suffix || "";
115-
options.placeholder = rootWidget.numericPlaceholder;
124+
options.placeholder = rootWidget.numericPlaceholder;
116125
}
117126
// if (surveyElement.inputMask == "datetime") {
118127
// mask = surveyElement.inputFormat;
119128
// }
120129
if (surveyElement.inputMask === "phone" && !!surveyElement.inputFormat) {
121130
mask = surveyElement.inputFormat;
122131
}
123-
124132
Inputmask(mask, options).mask(el);
125133

126134
el.onblur = function () {
@@ -138,7 +146,7 @@ function init(Survey) {
138146
customWidgetData.isNeedRender = true;
139147
};
140148

141-
var pushValueHandler = function () {
149+
var pushValueHandler = function () {
142150
if (!el.inputmask) return;
143151
if (el.inputmask.isComplete()) {
144152
surveyElement.value = options.autoUnmask
@@ -159,7 +167,7 @@ function init(Survey) {
159167
surveyElement.valueChangedCallback = updateHandler;
160168
updateHandler();
161169
},
162-
afterRender: function (question, el) {
170+
afterRender: function (question, el) {
163171
if (question.getType() != "multipletext") {
164172
var input = el.querySelector("input") || el;
165173
this.applyInputMask(question, input);

src/jquery-ui-datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function init(Survey, $) {
179179
}
180180

181181
if (typeof Survey !== "undefined") {
182-
init(Survey, window.$);
182+
init(Survey, window.jQuery);
183183
}
184184

185185
export default init;

0 commit comments

Comments
 (0)