@k3-universe/react-kit 0.0.35 → 0.0.36

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": "@k3-universe/react-kit",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -275,6 +275,9 @@ export function useFormBuilder<TFieldValues extends FieldValues = FieldValues>(
275
275
  case 'custom_field':
276
276
  fieldSchema = z.any();
277
277
  break;
278
+ case 'hidden':
279
+ fieldSchema = z.any();
280
+ break;
278
281
  default:
279
282
  // Default to string for text, textarea, password, etc.
280
283
  fieldSchema = z.string();