@axdspub/axiom-ui-forms 0.1.3 → 0.1.4

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/library/umd.js CHANGED
@@ -16127,7 +16127,7 @@
16127
16127
  return (React.createElement("div", { className: 'flex flex-col gap-2' },
16128
16128
  React.createElement(InputComponent, { formValueState: formValueState, form: form, field: __assign$1(__assign$1({}, field), { required: false, label: index > 0 ? null : field.label, id: "".concat(field.id, "-").concat(index) }), value: value, onChange: function (v) {
16129
16129
  var newValues = __spreadArray$1([], values, true);
16130
- newValues[index] = String(v);
16130
+ newValues[index] = v;
16131
16131
  onChange(newValues);
16132
16132
  } }),
16133
16133
  React.createElement("div", { className: 'flex flex-row justify-between w-full p-2' },