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

Text Field

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

Guides building a text field for freeform single- or multi-line input with placeholders, counters, and validation messages.

About

Covers designing the fundamental text input used across forms, search, auth, and messaging. A developer uses it whenever users must enter freeform text.

  • Use for login, search, forms, messaging, and data entry
  • Supports single or multi-line input with validation and counters

Text Field 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 text-field

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 building a text field for freeform single- or multi-line input with placeholders, counters, and validation messages.

Files

SKILL.mdMarkdownGitHub ↗

Text Field

Enter and edit text content

What it solves

A Text Field is a fundamental form input component that allows users to enter and edit text-based data. It is commonly used in forms, search fields, authentication fields, and messaging interfaces. Text fields can accept single-line or multi-line input and may include additional features like placeholders, character counters, validation messages, and formatting assistance.

When to use

Use a text field when you need users to input freeform text, such as:

  • Login and authentication fields – Username, password, email.
  • Search fields – Query inputs in search bars.
  • Forms and surveys – Collecting names, addresses, or custom responses.
  • Messaging interfaces – Chat applications and comment sections.
  • Data entry fields – User-generated content like tags, descriptions, or reviews.

When to avoid

  • For pre-defined options – Use dropdowns, radio, or checkboxes instead.
  • For structured data inputs – Use specialized inputs like date pickers or currency fields.
  • For short selections – Use auto-complete inputs instead of requiring full text input.
  • When voice input or selections are better – Consider alternatives for accessibility.

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 Pattern

Text fields should support standard keyboard navigation and interactions to ensure accessibility and usability.

KeyAction
TabMoves focus to the next interactive element.
Shift + TabMoves focus to the previous interactive element.
Enter _(inside a form)_Submits the form (unless prevented).
Arrow Left / RightMoves the text cursor within the input.
Arrow Up / DownMoves the cursor within multi-line text fields (textarea).
EscIf inside a search field, clears input _(optional behavior)._

Performance guardrails

Target performance metrics for text field components:

  • Initial render: < 100ms for text field appearance
  • Focus response: < 50ms from click to focus state
  • Validation feedback: < 150ms after input validation
  • Character counter updates: < 50ms for smooth counting
  • Memory usage: < 5KB per text field instance

Common mistakes

Using Placeholder as Primary Label

The Problem: Relying on placeholder text as the only label makes the field inaccessible when users start typing, and screen readers may not announce it properly.

<!-- Bad: Placeholder as label -->
<input type="text" placeholder="First Name">

How to Fix It? Always provide a visible label and use placeholder for hints or examples only.

<!-- Good: Label + helpful placeholder -->
<label for="firstName">First Name</label>
<input type="text" id="firstName" placeholder="e.g., John">

Poor Validation Timing

The Problem: Showing error messages too early (on first keystroke) or too late (only on form submission) frustrates users.

How to Fix It? Use progressive validation:

  • Show errors after field loses focus (onBlur) for first-time entry
  • Show real-time validation for corrections after initial error
  • Validate required fields on blur, format validation on input
// Good: Progressive validation
function validateField(input, hasBeenBlurred) {
  if (hasBeenBlurred && input.value.length > 0) {
    // Show real-time validation after first blur
    showValidationFeedback(input);
  }
}

Missing Error Recovery

The Problem: Not providing clear guidance on how to fix validation errors leaves users stuck.

How to Fix It? Include specific, actionable error messages with examples.

<!-- Bad: Vague error -->
<output class="error">Invalid input</output>

<!-- Good: Specific guidance -->
<output class="error">
  Password must contain at least 8 characters, including 1 number and 1 special character.
  Example: MyPass123!
</output>

Related patterns

  • https://uxpatterns.dev/patterns/forms/autocomplete
  • https://uxpatterns.dev/patterns/forms/checkbox
  • https://uxpatterns.dev/patterns/forms/currency-input
  • https://uxpatterns.dev/patterns/forms/date-picker
  • https://uxpatterns.dev/patterns/forms/multi-select-input
  • https://uxpatterns.dev/patterns/forms/radio
  • https://uxpatterns.dev/patterns/forms/selection-input

---

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

Pattern page: https://uxpatterns.dev/patterns/forms/text-field

Related skills

This week in AI coding

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

unsubscribe anytime.