We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c669d commit a24e9bdCopy full SHA for a24e9bd
1 file changed
packages/spec/src/ui/view.zod.ts
@@ -54,6 +54,10 @@ export const ListColumnSchema = z.object({
54
resizable: z.boolean().optional().describe('Allow resizing this column'),
55
wrap: z.boolean().optional().describe('Allow text wrapping'),
56
type: z.string().optional().describe('Renderer type override (e.g., "currency", "date")'),
57
+
58
+ /** Interaction */
59
+ link: z.boolean().optional().describe('Functions as the primary navigation link (triggers View navigation)'),
60
+ action: z.string().optional().describe('Registered Action ID to execute when clicked'),
61
});
62
63
/**
0 commit comments