@wg-npm/survey-core 0.3.22704 → 0.3.22728

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.
@@ -118,7 +118,7 @@ class ExprConditionModel {
118
118
  }
119
119
  class QuestionOptionsModel {
120
120
  constructor(required) {
121
- this.inputtedDefaultValue = 20;
121
+ this.inputMinLength = 10;
122
122
  this.required = required;
123
123
  this.visible = true;
124
124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wg-npm/survey-core",
3
- "version": "0.3.22704",
3
+ "version": "0.3.22728",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "scripts": {
package/src/models.ts CHANGED
@@ -135,7 +135,7 @@ export class QuestionOptionsModel {
135
135
  starMinCount?: Number;
136
136
  exclusiveEnabled?: Boolean;
137
137
  inputtedEnabled?: Boolean;
138
- inputtedDefaultValue?: Number = 20;
138
+ inputMinLength?: Number = 10;
139
139
  readonly?: Boolean;
140
140
 
141
141
  constructor(required: Boolean) {