Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thedaviddias avatar

Phone Number

  • 1 installs
  • 228 repo stars
  • Updated June 30, 2026
  • thedaviddias/ux-patterns-for-developers

Guides collecting and validating telephone numbers in an input that handles international formats, autofill, and touch keyboards.

About

Covers building a phone-number form field with accessible labels, sensible validation timing, and international/autofill handling. A developer uses it on contact, MFA setup, or profile forms that collect phone numbers.

  • Validate on blur, pause, or submit rather than on partial input
  • Test autofill, paste, zoom, and on-screen keyboard behavior

Phone Number by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,609 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thedaviddias/ux-patterns-for-developers --skill phone-number

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars228
Last updatedJune 30, 2026
Repositorythedaviddias/ux-patterns-for-developers

What it does

Guides collecting and validating telephone numbers in an input that handles international formats, autofill, and touch keyboards.

Files

SKILL.mdMarkdownGitHub ↗

Phone Number

Format and validate phone numbers

What it solves

A Phone Number pattern helps teams create a reliable way to collect telephone numbers in a format that is easy to enter, easy to review, and realistic for international use. It is most useful when teams need contact and delivery forms. Compared with adjacent patterns, this pattern should reduce friction without hiding the state, rules, or recovery paths people need to keep moving.

When to use

  • Contact and delivery forms
  • Verification and MFA setup
  • Support or profile forms with international audiences

When to avoid

  • Use a simpler native control when the value is binary, tiny, or fully constrained.
  • Avoid custom behavior when a native browser input already solves the main job well.
  • Do not add extra formatting or validation if the product does not benefit from it.

Implementation workflow

1. Confirm the pattern matches the problem and constraints before copying the example. 2. Start from the anatomy and examples in references/pattern.md, then choose the smallest viable variation. 3. Apply accessibility, performance, and interaction guardrails before layering visual polish. 4. Use the testing guidance to verify behavior across keyboard, screen reader, responsive, and failure scenarios.

Accessibility guardrails

Keyboard Interaction

  • [ ] Verify that phone number can be completed using keyboard alone.
  • [ ] Keep focus order logical when the pattern opens, updates, or reveals additional UI.
  • [ ] Preserve a visible focus state that is still readable at high zoom.

Screen Reader Support

  • [ ] Use semantic elements first, then add ARIA only where semantics alone are not enough.
  • [ ] Announce state changes such as errors, loading, or completion in the right place and with the right politeness.
  • [ ] Connect labels, hints, and status text with aria-describedby or structural headings when useful.

Visual Accessibility

  • [ ] Do not rely on color alone to convey severity, completion, or selection state.

Common mistakes

Using the wrong validation moment

The Problem: Immediate validation on partial input makes the pattern feel punitive and noisy.

How to Fix It? Wait until the user has enough information in the field, then validate on blur, pause, or submit depending on the risk of the rule.

Separating labels, hints, and errors

The Problem: People cannot tell which message belongs to which control when the copy is visually detached.

How to Fix It? Keep labels, helper text, and validation messages tightly grouped and connected with aria-describedby where appropriate.

Forgetting touch and autofill behavior

The Problem: Desktop-only styling hides the fact that mobile keyboards, autofill, and paste flows behave differently.

How to Fix It? Test the control with autofill, paste, zoom, and on-screen keyboards before calling the pattern complete.

Related patterns

  • https://uxpatterns.dev/patterns/forms/form-validation
  • https://uxpatterns.dev/patterns/forms/selection-input
  • https://uxpatterns.dev/patterns/forms/text-field

---

For full implementation detail, examples, and testing notes, see references/pattern.md.

Pattern page: https://uxpatterns.dev/patterns/forms/phone-number

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.