@wg-npm/survey-response 0.3.22843 → 0.3.22845

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.
@@ -1527,9 +1527,6 @@ var script$2 = Vue.extend({
1527
1527
  _.forEach(this.value.answer, (a) => (a.score = 0));
1528
1528
  }
1529
1529
  },
1530
- "value.score": function () {
1531
- console.log();
1532
- },
1533
1530
  },
1534
1531
  });
1535
1532
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wg-npm/survey-response",
3
- "version": "0.3.22843",
3
+ "version": "0.3.22845",
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.22843",
16
- "@wg-npm/survey-service-api": "0.3.22843",
15
+ "@wg-npm/survey-core": "0.3.22845",
16
+ "@wg-npm/survey-service-api": "0.3.22845",
17
17
  "axios": "^0.19.2",
18
18
  "deepmerge": "^4.2.2",
19
19
  "lodash": "^4.17.15",
@@ -34,8 +34,8 @@
34
34
  "@typescript-eslint/parser": "^3.6.0",
35
35
  "@vue/eslint-config-prettier": "^6.0.0",
36
36
  "@vue/eslint-config-typescript": "^5.0.2",
37
- "@wg-npm/survey-core": "0.3.22843",
38
- "@wg-npm/survey-service-api": "0.3.22843",
37
+ "@wg-npm/survey-core": "0.3.22845",
38
+ "@wg-npm/survey-service-api": "0.3.22845",
39
39
  "acorn": "^7.3.1",
40
40
  "axios": "^0.19.2",
41
41
  "babelrc-rollup": "^3.0.0",
@@ -72,7 +72,7 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "gitHead": "5067ecd19674caff8177815ef24e97397d72c46c",
75
+ "gitHead": "1c4867b3db8d5c50091fc0e0df4845b4ffb3c66f",
76
76
  "rollup": {
77
77
  "external": [
78
78
  "vue",
@@ -169,20 +169,8 @@ export default Vue.extend({
169
169
  // @ts-ignore
170
170
  this.value.answer.push(_answer);
171
171
  });
172
- //
173
- // _.each(this.value.answer, (a) => {
174
- // _.set(this.answers, a.questionId, a.score);
175
- // });
176
- },
177
- methods: {
178
- // getScore(subQuestion) {
179
- // return _.get(
180
- // this.answers,
181
- // subQuestion.id,
182
- // this.question.options.minRange
183
- // );
184
- // },
185
172
  },
173
+ methods: {},
186
174
  computed: {
187
175
  showQuestionScoreSlider() {
188
176
  return !(
@@ -203,9 +191,6 @@ export default Vue.extend({
203
191
  _.forEach(this.value.answer, (a) => (a.score = 0));
204
192
  }
205
193
  },
206
- "value.score": function () {
207
- console.log();
208
- },
209
194
  },
210
195
  });
211
196
  </script>