feat(core): support nested repeats with item paths - #319
Merged
Conversation
Resolve nested repeat state paths consistently across every renderer, validator, schema, prompt, and documentation surface. Fixes #252 Co-authored-by: Trevin Chow <trevin@trevinchow.com>
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
ctate
approved these changes
Aug 13, 2026
This was referenced Aug 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds nested repeat support by allowing
{ "$item": "field" }inrepeat.statePath. This replaces and completes #256 on currentmain.Trevin Chow (@tmchow) authored the original implementation in #256 and is credited as a co-author on the commit. This PR keeps that design while addressing current-main compatibility, validation, renderer parity, and documentation gaps.
Changes
statePathbehaviorrepeatin all renderer schemas with a parity regression testExample
{ "type": "Table", "repeat": { "statePath": { "$item": "employees" }, "key": "id" }, "children": ["employee-row"], "props": {} }Inside an outer repeat over
/companies, this resolves to/companies/0/employees,/companies/1/employees, and so on.Verification
Closes #252
Supersedes #256