@bigbinary/neeto-form-frontend 4.4.12 → 4.4.13

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.
package/dist/.ready CHANGED
@@ -1 +1 @@
1
- Built at 2026-03-30T07:36:12.466Z
1
+ Built at 2026-03-30T18:36:53.559Z
package/dist/BuildForm.js CHANGED
@@ -2697,6 +2697,10 @@ var transformValues = function transformValues(_ref4) {
2697
2697
  values = _objectWithoutProperties(_ref4, _excluded$1);
2698
2698
  var rest = omit(["isMinWordsEnabled"], values);
2699
2699
  switch (rest.kind) {
2700
+ case QUESTION_TYPES.TEXTAREA:
2701
+ return _objectSpread$2(_objectSpread$2({}, rest), {}, {
2702
+ minWords: minWords !== null && minWords !== void 0 ? minWords : ""
2703
+ });
2700
2704
  case QUESTION_TYPES.ADDRESS:
2701
2705
  {
2702
2706
  var _rest$fields = rest.fields,
@@ -2707,9 +2711,7 @@ var transformValues = function transformValues(_ref4) {
2707
2711
  });
2708
2712
  }
2709
2713
  default:
2710
- return _objectSpread$2(_objectSpread$2({}, rest), {}, {
2711
- minWords: minWords !== null && minWords !== void 0 ? minWords : ""
2712
- });
2714
+ return rest;
2713
2715
  }
2714
2716
  };
2715
2717