feat(sdk-app): replace entity ID inputs with searchable selects#1676
Merged
aaronlee777 merged 3 commits intomainfrom May 6, 2026
Merged
feat(sdk-app): replace entity ID inputs with searchable selects#1676aaronlee777 merged 3 commits intomainfrom
aaronlee777 merged 3 commits intomainfrom
Conversation
Convert employee, contractor, and payroll ID fields in the demo settings panel to two-line dropdowns populated from the API. Make company ID read-only with a copy button. Request and form IDs remain text inputs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Clicking the input now toggles the menu, clicking outside reliably closes it, and the entity helper line stays in the DOM so opening the menu does not shift content below. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
df5d158 to
319fa19
Compare
Arrow keys move through the menu, Enter selects the highlighted item, Home/End jump to the first/last option, and the active option scrolls into view and is announced via aria-activedescendant. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
serikjensen
approved these changes
May 6, 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
Updates the SDK dev app's demo settings panel so users no longer need to know UUIDs to switch the active employee, contractor, or payroll. The entity ID text inputs are replaced with searchable two-line comboboxes populated from the API, and every entity row gains a Copy ID button.
Changes
/api/v1/companies/{companyId}/{employees,contractors,payrolls}when the proxy is inflow-tokenmode. When the proxy is unavailable, each combobox gracefully falls back to a plain text input.DemoSettingsPanel.module.scss.entityFormatters.ts(label formatting) anduseEntityCatalog.ts(fetching/caching the entity lists).Open/close behavior
visibilitywhile the menu is open) so opening the menu does not shift content below.Demo
Testing
npm run sdk-app🤖 Generated with Claude Code