@cosmicdrift/kumiko-renderer 0.197.0 → 0.197.1

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": "@cosmicdrift/kumiko-renderer",
3
- "version": "0.197.0",
3
+ "version": "0.197.1",
4
4
  "description": "Platform-agnostic React renderer for Kumiko screens. Contains the shared logic — primitives-contract, hooks, KumikoScreen, navigation & SSE abstractions — that any platform-specific renderer (web, native) composes. No DOM, no EventSource, no react-dom.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -15,8 +15,8 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "@cosmicdrift/kumiko-framework": "0.197.0",
19
- "@cosmicdrift/kumiko-headless": "0.197.0",
18
+ "@cosmicdrift/kumiko-framework": "0.197.1",
19
+ "@cosmicdrift/kumiko-headless": "0.197.1",
20
20
  "react": "^19.2.6",
21
21
  "temporal-polyfill": "^0.3.2",
22
22
  "zod": "^4.4.3"
@@ -1313,6 +1313,9 @@ function GridCellForField({
1313
1313
  fieldAppendix,
1314
1314
  allIssues,
1315
1315
  }: GridCellForFieldProps): ReactNode {
1316
+ // RenderField renders nothing for a hidden field, but the GridCell around it still claims the row.
1317
+ if (!field.visible) return null;
1318
+
1316
1319
  const effectiveSpan = field.span !== undefined ? Math.min(field.span, columns) : 1;
1317
1320
  return (
1318
1321
  <GridCell span={effectiveSpan}>