You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(plugin-detail): declare designer inputs for record:* blocks (spec conformance) (#2113)
The record:details/related_list/highlights/path blocks registered ZERO inputs —
the designer couldn't configure them and the spec↔frontend conformance check
flagged 17 spec-only divergences. Add inputs mirroring @objectstack/spec
RecordDetailsProps / RecordRelatedListProps / RecordHighlightsProps /
RecordPathProps. Verified via a live manifest dump: record:* now 17 matched / 0
spec-only.
Co-authored-by: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
{name: 'relationshipField',type: 'string',label: 'Relationship Field',required: true,description: 'Field on the related object pointing back to this record'},
239
+
{name: 'columns',type: 'array',label: 'Columns',required: true,description: 'Fields to display in the related list'},
240
+
{name: 'sort',type: 'array',label: 'Sort'},
241
+
{name: 'limit',type: 'number',label: 'Limit',defaultValue: 5,description: 'Records to display initially'},
0 commit comments