Skip to content

Commit a24e9bd

Browse files
committed
feat(view): add link and action properties to ListColumnSchema for enhanced interaction
1 parent 42c669d commit a24e9bd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

packages/spec/src/ui/view.zod.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ export const ListColumnSchema = z.object({
5454
resizable: z.boolean().optional().describe('Allow resizing this column'),
5555
wrap: z.boolean().optional().describe('Allow text wrapping'),
5656
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'),
5761
});
5862

5963
/**

0 commit comments

Comments
 (0)