@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.js
CHANGED
|
@@ -2288,18 +2288,16 @@ function createDefaultGroupRenderer(options, adornmentOptions) {
|
|
|
2288
2288
|
} : {
|
|
2289
2289
|
className: standardClassName
|
|
2290
2290
|
};
|
|
2291
|
-
const {
|
|
2292
|
-
Div
|
|
2293
|
-
} = renderer.html;
|
|
2294
2291
|
const inline = renderOptions.type == GroupRenderType.Inline;
|
|
2295
2292
|
const children = formNode.children.map((c, i) => renderChild(c, {
|
|
2296
2293
|
inline
|
|
2297
2294
|
}));
|
|
2298
|
-
return jsx(
|
|
2295
|
+
return jsx(RNDiv, {
|
|
2299
2296
|
className: rendererClass(props.className, clsx$1(className, gcn)),
|
|
2300
2297
|
textClass: props.textClass,
|
|
2301
2298
|
style: style,
|
|
2302
2299
|
inline: inline,
|
|
2300
|
+
selectable: inline && !props.definition.noSelection,
|
|
2303
2301
|
children: children
|
|
2304
2302
|
});
|
|
2305
2303
|
}
|