@react-typed-forms/schemas-rn 2.2.2 → 2.2.3
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/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +2 -4
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.cjs
CHANGED
|
@@ -2394,18 +2394,18 @@ function createDefaultGroupRenderer(options, adornmentOptions) {
|
|
|
2394
2394
|
},
|
|
2395
2395
|
style = _ref2.style,
|
|
2396
2396
|
gcn = _ref2.className;
|
|
2397
|
-
var Div = renderer.html.Div;
|
|
2398
2397
|
var inline = renderOptions.type == schemas.GroupRenderType.Inline;
|
|
2399
2398
|
var children = formNode.children.map(function (c, i) {
|
|
2400
2399
|
return renderChild(c, {
|
|
2401
2400
|
inline: inline
|
|
2402
2401
|
});
|
|
2403
2402
|
});
|
|
2404
|
-
return jsxRuntime.jsx(
|
|
2403
|
+
return jsxRuntime.jsx(RNDiv, {
|
|
2405
2404
|
className: schemas.rendererClass(props.className, clsx__default["default"](className, gcn)),
|
|
2406
2405
|
textClass: props.textClass,
|
|
2407
2406
|
style: style,
|
|
2408
2407
|
inline: inline,
|
|
2408
|
+
selectable: inline && !props.definition.noSelection,
|
|
2409
2409
|
children: children
|
|
2410
2410
|
});
|
|
2411
2411
|
}
|