@wg-npm/survey-core 0.3.22615 → 0.3.22657

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/models.ts +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wg-npm/survey-core",
3
- "version": "0.3.22615",
3
+ "version": "0.3.22657",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "scripts": {
package/src/models.ts CHANGED
@@ -46,7 +46,7 @@ export class ChoiceOptionModel {
46
46
  score?: any = null;
47
47
  star?: Boolean = false;
48
48
  starCount?: any = null;
49
- exclusiveEnabled?: Boolean = false
49
+ exclusiveEnabled?: Boolean = false;
50
50
  }
51
51
 
52
52
  export class ChoiceModel {
@@ -69,6 +69,7 @@ export class ExclusiveChoiceModel extends ChoiceModel {
69
69
  constructor(locale: string) {
70
70
  super(locale);
71
71
  if (!_.isEmpty(this.options)) {
72
+ // @ts-ignore
72
73
  _.set(this.options, "exclusiveEnabled", true);
73
74
  }
74
75
  }
@@ -401,7 +402,7 @@ export class PlanModel {
401
402
  }
402
403
 
403
404
  //todo remove
404
- export class PlanStatisticsModel { }
405
+ export class PlanStatisticsModel {}
405
406
 
406
407
  //todo remove
407
- export class ResponseStatisticsModel { }
408
+ export class ResponseStatisticsModel {}