@wg-npm/survey-creator 0.5.185 → 0.5.186

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.
@@ -728,7 +728,7 @@ var script$N = Vue.extend({
728
728
  created() {
729
729
  if (!this.surveyExtendOptions.enabledSpeciallyQuestions) {
730
730
  _.remove(questionTypes, (index) => {
731
- return (index == "MATRIX" || index == "EVALUATION");
731
+ return index == "EVALUATION";
732
732
  });
733
733
  }
734
734
  if (this.surveyExtendOptions.enabledScoringQuestion) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wg-npm/survey-creator",
3
- "version": "0.5.185",
3
+ "version": "0.5.186",
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.5.185",
16
- "@wg-npm/survey-service-api": "0.5.185",
15
+ "@wg-npm/survey-core": "0.5.186",
16
+ "@wg-npm/survey-service-api": "0.5.186",
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.5.185",
42
- "@wg-npm/survey-service-api": "0.5.185",
41
+ "@wg-npm/survey-core": "0.5.186",
42
+ "@wg-npm/survey-service-api": "0.5.186",
43
43
  "acorn": "^7.3.1",
44
44
  "axios": "^0.19.2",
45
45
  "babelrc-rollup": "^3.0.0",
@@ -52,7 +52,7 @@ export default Vue.extend({
52
52
  if (!this.surveyExtendOptions.enabledSpeciallyQuestions) {
53
53
  // @ts-ignore
54
54
  _.remove(questionTypes, (index) => {
55
- return (index == QuestionType.MATRIX || index == QuestionType.EVALUATION);
55
+ return index == QuestionType.EVALUATION;
56
56
  });
57
57
  }
58
58
  if (this.surveyExtendOptions.enabledScoringQuestion) {