@wg-npm/survey-creator 0.3.4107 → 0.3.4108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3249,7 +3249,7 @@ var script$d = Vue.extend({
|
|
|
3249
3249
|
if (leftScore != null && type == "left" && value >= rightScore) {
|
|
3250
3250
|
return true;
|
|
3251
3251
|
}
|
|
3252
|
-
if (type == "right" && value <= leftScore) {
|
|
3252
|
+
if (rightScore != null && type == "right" && value <= leftScore) {
|
|
3253
3253
|
return true;
|
|
3254
3254
|
}
|
|
3255
3255
|
},
|
|
@@ -3300,11 +3300,11 @@ var __vue_staticRenderFns__$d = [];
|
|
|
3300
3300
|
/* style */
|
|
3301
3301
|
const __vue_inject_styles__$d = function (inject) {
|
|
3302
3302
|
if (!inject) return
|
|
3303
|
-
inject("data-v-
|
|
3303
|
+
inject("data-v-20053a8c_0", { source: ".label[data-v-20053a8c]{text-align:right;margin-bottom:24px}", map: undefined, media: undefined });
|
|
3304
3304
|
|
|
3305
3305
|
};
|
|
3306
3306
|
/* scoped */
|
|
3307
|
-
const __vue_scope_id__$d = "data-v-
|
|
3307
|
+
const __vue_scope_id__$d = "data-v-20053a8c";
|
|
3308
3308
|
/* module identifier */
|
|
3309
3309
|
const __vue_module_identifier__$d = undefined;
|
|
3310
3310
|
/* functional template */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wg-npm/survey-creator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4108",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"lint-fix": "eslint \"**/*.ts\" \"**/*.vue\" --fix --no-error-on-unmatched-pattern"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@wg-npm/survey-core": "0.3.
|
|
16
|
-
"@wg-npm/survey-service-api": "0.3.
|
|
15
|
+
"@wg-npm/survey-core": "0.3.4108",
|
|
16
|
+
"@wg-npm/survey-service-api": "0.3.4108",
|
|
17
17
|
"axios": "^0.19.2",
|
|
18
18
|
"camelcase": "^6.0.0",
|
|
19
19
|
"deepmerge": "^4.2.2",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@typescript-eslint/eslint-plugin": "^3.6.0",
|
|
39
39
|
"@typescript-eslint/parser": "^3.6.0",
|
|
40
40
|
"@vue/eslint-config-prettier": "^6.0.0",
|
|
41
|
-
"@wg-npm/survey-core": "0.3.
|
|
42
|
-
"@wg-npm/survey-service-api": "0.3.
|
|
41
|
+
"@wg-npm/survey-core": "0.3.4108",
|
|
42
|
+
"@wg-npm/survey-service-api": "0.3.4108",
|
|
43
43
|
"acorn": "^7.3.1",
|
|
44
44
|
"axios": "^0.19.2",
|
|
45
45
|
"babelrc-rollup": "^3.0.0",
|
|
@@ -242,7 +242,7 @@ export default Vue.extend({
|
|
|
242
242
|
if (leftScore != null && type == "left" && value >= rightScore) {
|
|
243
243
|
return true;
|
|
244
244
|
}
|
|
245
|
-
if (type == "right" && value <= leftScore) {
|
|
245
|
+
if (rightScore != null && type == "right" && value <= leftScore) {
|
|
246
246
|
return true;
|
|
247
247
|
}
|
|
248
248
|
},
|