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.modern.js
CHANGED
@@ -11372,6 +11372,8 @@ var DynamicFormField = function DynamicFormField(props) {
|
|
11372
11372
|
function renderByFormat() {
|
11373
11373
|
var label = required ? field.label + " *" : field.label;
|
11374
11374
|
var readOnly = field.readOnly || field.editable === false;
|
11375
|
+
var _field$position = field.position,
|
11376
|
+
position = _field$position === void 0 ? "bottom" : _field$position;
|
11375
11377
|
switch (format) {
|
11376
11378
|
case FORMATS.TEXT:
|
11377
11379
|
return /*#__PURE__*/React.createElement(TextArea, {
|
@@ -11431,7 +11433,8 @@ var DynamicFormField = function DynamicFormField(props) {
|
|
11431
11433
|
onChange: change,
|
11432
11434
|
options: buildOptions(),
|
11433
11435
|
outlined: true,
|
11434
|
-
readOnly: readOnly
|
11436
|
+
readOnly: readOnly,
|
11437
|
+
position: position
|
11435
11438
|
}) : /*#__PURE__*/React.createElement(TextField, {
|
11436
11439
|
id: id,
|
11437
11440
|
label: label,
|