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.cjs
CHANGED
@@ -11381,6 +11381,8 @@ var DynamicFormField = function DynamicFormField(props) {
|
|
11381
11381
|
function renderByFormat() {
|
11382
11382
|
var label = required ? field.label + " *" : field.label;
|
11383
11383
|
var readOnly = field.readOnly || field.editable === false;
|
11384
|
+
var _field$position = field.position,
|
11385
|
+
position = _field$position === void 0 ? "bottom" : _field$position;
|
11384
11386
|
switch (format) {
|
11385
11387
|
case FORMATS.TEXT:
|
11386
11388
|
return /*#__PURE__*/React__default["default"].createElement(TextArea, {
|
@@ -11440,7 +11442,8 @@ var DynamicFormField = function DynamicFormField(props) {
|
|
11440
11442
|
onChange: change,
|
11441
11443
|
options: buildOptions(),
|
11442
11444
|
outlined: true,
|
11443
|
-
readOnly: readOnly
|
11445
|
+
readOnly: readOnly,
|
11446
|
+
position: position
|
11444
11447
|
}) : /*#__PURE__*/React__default["default"].createElement(TextField, {
|
11445
11448
|
id: id,
|
11446
11449
|
label: label,
|