ywana-core8 0.0.926 → 0.0.927
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/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain2/DynamicForm.js +2 -1
- package/src/domain2/DynamicForm.test.js +1 -1
package/dist/index.umd.js
CHANGED
@@ -11374,6 +11374,8 @@
|
|
11374
11374
|
function renderByFormat() {
|
11375
11375
|
var label = required ? field.label + " *" : field.label;
|
11376
11376
|
var readOnly = field.readOnly || field.editable === false;
|
11377
|
+
var _field$position = field.position,
|
11378
|
+
position = _field$position === void 0 ? "bottom" : _field$position;
|
11377
11379
|
switch (format) {
|
11378
11380
|
case FORMATS.TEXT:
|
11379
11381
|
return /*#__PURE__*/React__default["default"].createElement(TextArea, {
|
@@ -11433,7 +11435,8 @@
|
|
11433
11435
|
onChange: change,
|
11434
11436
|
options: buildOptions(),
|
11435
11437
|
outlined: true,
|
11436
|
-
readOnly: readOnly
|
11438
|
+
readOnly: readOnly,
|
11439
|
+
position: position
|
11437
11440
|
}) : /*#__PURE__*/React__default["default"].createElement(TextField, {
|
11438
11441
|
id: id,
|
11439
11442
|
label: label,
|