@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-typed-forms/schemas",
3
- "version": "16.2.0",
3
+ "version": "16.2.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",
@@ -34,7 +34,7 @@
34
34
  "clsx": "^1 || ^2",
35
35
  "uuid": "^10.0.0",
36
36
  "jsonata": "^2.0.4",
37
- "@astroapps/forms-core": "^1.2.0"
37
+ "@astroapps/forms-core": "^1.2.2"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "react": "^18.2.0 || ^19",
@@ -115,6 +115,7 @@ export function RenderForm({
115
115
  disabled,
116
116
  variables,
117
117
  formState,
118
+ hidden,
118
119
  };
119
120
 
120
121
  const labelAndChildren = renderControlLayout({
@@ -637,6 +637,7 @@ export function renderControlLayout(
637
637
  iconPlacement: c.iconPlacement,
638
638
  icon: c.icon,
639
639
  inline,
640
+ disabled: state.disabled,
640
641
  onClick:
641
642
  props.actionOnClick?.(c.actionId, actionData, dataContext) ??
642
643
  (() => {}),