@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/.gitlab-ci.yml +0 -31
- package/README.md +172 -8
- package/library/index.js +1 -1
- package/library/index.js.map +1 -1
- package/library/umd.js +1 -1
- package/library/umd.js.map +1 -1
- package/package.json +3 -2
- package/src/Form/Components/FieldCreator.tsx +1 -1
- package/src/Form/SchemaToForm.tsx +3 -3
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] =
|
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' },
|