@react-typed-forms/schemas 16.2.0 → 16.2.2
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 +3 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +3 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/RenderForm.tsx +1 -0
- package/src/controlRender.tsx +1 -0
package/lib/index.cjs
CHANGED
|
@@ -1116,6 +1116,7 @@ function renderControlLayout(props) {
|
|
|
1116
1116
|
iconPlacement: c.iconPlacement,
|
|
1117
1117
|
icon: c.icon,
|
|
1118
1118
|
inline: inline,
|
|
1119
|
+
disabled: state.disabled,
|
|
1119
1120
|
onClick: (_props$actionOnClick = props.actionOnClick == null ? void 0 : props.actionOnClick(c.actionId, actionData, dataContext)) != null ? _props$actionOnClick : function () {},
|
|
1120
1121
|
className: rendererClass(styleClass, c.styleClass),
|
|
1121
1122
|
style: style
|
|
@@ -1669,7 +1670,8 @@ function RenderForm(_ref) {
|
|
|
1669
1670
|
readonly: readonly,
|
|
1670
1671
|
disabled: disabled,
|
|
1671
1672
|
variables: variables,
|
|
1672
|
-
formState: formState
|
|
1673
|
+
formState: formState,
|
|
1674
|
+
hidden: hidden
|
|
1673
1675
|
});
|
|
1674
1676
|
var labelAndChildren = renderControlLayout({
|
|
1675
1677
|
formNode: form,
|