@bigbinary/neeto-form-frontend 4.4.12 → 4.4.14

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-04-10T18:57:04.744Z
package/dist/BuildForm.js CHANGED
@@ -304,7 +304,7 @@ var Card = function Card(_ref) {
304
304
  size: 16
305
305
  }), /*#__PURE__*/jsxs("div", {
306
306
  "data-testid": "neeto-form-engine-".concat(slugify(questionLabel)),
307
- className: classnames("neeto-ui-rounded neeto-ui-border-gray-300 neeto-ui-bg-white neeto-form-nano-form__card flex h-10 grow items-center justify-between gap-1 border p-2", {
307
+ className: classnames("neeto-ui-rounded neeto-ui-border-gray-300 neeto-ui-bg-white neeto-form-nano-form__card flex h-10 grow items-center justify-between gap-1 border p-2 overflow-hidden", {
308
308
  "neeto-ui-border-primary-500 neeto-form-nano-form__card--active": isActive
309
309
  }),
310
310
  onClick: function onClick() {
@@ -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