@wg-npm/survey-response 0.3.4780 → 0.3.4876

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.
@@ -254,7 +254,7 @@ var OptionLayoutMixin = Vue.extend({
254
254
  computed: {
255
255
  optionLayout() {
256
256
  const globalLayout = _.lowerCase(_.get(this.options, "layout", undefined));
257
- if (this.isMobile || "vertical" == globalLayout) {
257
+ if (this.isMobile() || "vertical" == globalLayout) {
258
258
  return "";
259
259
  }
260
260
  const questionLayout = _.lowerCase(_.get(this.question.options, "layout", "horizontal"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wg-npm/survey-response",
3
- "version": "0.3.4780",
3
+ "version": "0.3.4876",
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.4780",
16
- "@wg-npm/survey-service-api": "0.3.4780",
15
+ "@wg-npm/survey-core": "0.3.4876",
16
+ "@wg-npm/survey-service-api": "0.3.4876",
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.4780",
38
- "@wg-npm/survey-service-api": "0.3.4780",
37
+ "@wg-npm/survey-core": "0.3.4876",
38
+ "@wg-npm/survey-service-api": "0.3.4876",
39
39
  "acorn": "^7.3.1",
40
40
  "axios": "^0.19.2",
41
41
  "babelrc-rollup": "^3.0.0",
@@ -16,7 +16,7 @@ export default Vue.extend({
16
16
  _.get(this.options, "layout", undefined)
17
17
  );
18
18
 
19
- if (this.isMobile || "vertical" == globalLayout) {
19
+ if (this.isMobile() || "vertical" == globalLayout) {
20
20
  return "";
21
21
  }
22
22
  const questionLayout = _.lowerCase(