feat(prototype): add tax filings and agent payments design prototypes - #2595
Merged
Conversation
Bring two prototypes up to date on top of current main in the sdk-app design sandbox: - Tax Filings: list + detail view (filter, sort, drill in) with mock data - Agent Payments: agency tax payments list + detail with tax-liability breakdown, converted from an SDK component into a design-only prototype (local events instead of shared constants; sandbox index wrapper) so it does not ship in the main SDK Both are registered under the Companies category and routed at /design/tax-filings and /design/agent-payments. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
serikjensen
approved these changes
Aug 19, 2026
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Brings two design-sandbox prototypes up to date on top of current
main(they originated on a ~3-month-old branch). Both live entirely in thesdk-appdesign sandbox — no changes to the shipped SDK surface./design/tax-filings) — company tax filing status: list view with search, Status/Form/Jurisdiction filters, sortable columns, and a responsive mobile filter modal; detail view with a status-history timeline and failure-reason alerts. Mock data./design/agent-payments) — agency tax payments: list view with search, status/type filters, and sortable columns; detail view with a tax-liability breakdown table. Mock data.Both are registered under the Companies category in the design registry.
Agent Payments: converted to a prototype
Agent Payments previously existed as a real SDK component under
src/components/Company/AgentPaymentsFlow/. It has been moved into the design sandbox and decoupled from the shipped SDK:sdk-app/src/design/prototypes/agent-payments/.events.ts(cast withas EventType) instead ofsrc/shared/constants.ts, mirroring the Tax Filings prototype.index.tsxwrapper (useOutletContextentities + missing-company-ID warning).null(the detail view has its own back button).It is intentionally not exported from
src/components/Company/index.tsxand carries nogenerated-registry-data.tsentry, so it does not ship in the SDK.Verification
tsc -p sdk-app/tsconfig.json: no type errors in any new/edited file.eslint: clean on all new/edited files.Manual click-through of both prototypes in the running dev app is still recommended.