Render managed auth field input modes - #29
Open
masnwilliams wants to merge 5 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
masnwilliams
changed the base branch from
hypeship/render-identifiers-as-text
to
main
August 31, 2026 22:16
masnwilliams
changed the base branch from
main
to
hypeship/render-identifiers-as-text
August 31, 2026 22:16
masnwilliams
changed the base branch from
hypeship/render-identifiers-as-text
to
main
August 31, 2026 22:39
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 0770c2a. Configure here.
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
input_modevalues in the existing UI modelinputModeprop while keeping identifier inputs astype="text"dependencies
testing
bun testbun run buildbun run typecheckbun run format:checkNote
Low Risk
Auth form input typing and autofill hints only; behavior is more permissive for identifiers and remains backward compatible when
input_modeis omitted.Overview
Adds optional canonical
input_modeon managed auth fields and threads it through session normalization intoDiscoveredField, exporting the newInputModetype from the package.Identifier fields are no longer mapped to
type="email"ortype="tel"fromref; they render astype="text"so combined login fields (e.g. “mobile, username, or email”) are not subject to browser-native format validation. Hints come from React’sinputModeprop instead, withautoCompletedriven byinput_modefor dedicated email/phone fields while mixed identifiers withinput_mode: "text"skip inferred email autofill. One-time-code fields still takeone-time-codeover keyboard hints.Tests cover autocomplete precedence, mixed-identifier behavior, and that email hints use
inputMode="email"withtype="text".Reviewed by Cursor Bugbot for commit bf2f95e. Bugbot is set up for automated code reviews on this repo. Configure here.