ExklusivBeta

Invisibles <mv-invisibles>

Macht unsichtbare und verwechselbare Zeichen in Textfeldern sichtbar, wo sie echte Bugs verursachen: Nullbreiten-Leerzeichen und -Verbinder, eingefügt in IBANs, E-Mails, API-Schlüssel und Codes, geschützte und exotische Leerzeichen, Leerraum am Anfang/Ende, Tabs, weiche Trennstriche, Steuerzeichen, Bidi-Steuerzeichen (Trojan Source), versteckter Tag-Text, Homoglyphen (ein kyrillisches „а“ in einem lateinischen Wort, „O“ zwischen Ziffern), vollbreite Buchstaben sowie typografische Anführungszeichen oder Gedankenstriche in Befehlen. Umschließe ein input oder textarea: Ein exakter, scroll-synchroner Spiegel (gleiche Schriftmetrik, gleiches Padding, gleicher Umbruch) legt eine Kontur um jedes unsichtbare Zeichen, eine schmale Kapsel für Nullbreiten-Zeichen, eine Klammer für ungewöhnliche Leerzeichen, eine Schraffur für Leerraum am Anfang/Ende, eine gepunktete Unterstreichung für Doppelgänger, und einzeilige Felder erhalten ihre Kurzcodes (ZWSP, NBSP, ⇥, RLO, CYR…) direkt unter dem Text. Hover über einer Markierung oder der Textcursor direkt daneben benennt das Zeichen mit seinem Codepoint und erklärt, warum es wichtig ist. Eine Zusammenfassung („3 hidden characters · 1 look-alike“) bietet Korrekturen per Klick (Remove invisible characters, Normalize spaces, Replace look-alikes), die über die Bearbeitungspipeline des Browsers laufen, sodass Ctrl/Cmd+Z sie rückgängig macht, dazu einen Undo-Button, und eine Detailliste markiert jeden Fund im Feld. Die Regeln richten sich nach dem Feld (Profil iban, email, code, username, text oder prose: Emoji-Verbinder, verbundene Schriften und französische geschützte Leerzeichen bleiben dort erlaubt, wo sie hingehören), validate setzt eine eigene Validity-Meldung, mv-invisibles meldet die Funde, und mv-fix kann eine Korrektur verhindern. Ein <pre>- oder <code>-Ziel wird an Ort und Stelle offengelegt, jedes Bidi-Steuerzeichen isoliert, sodass der Text in seiner tatsächlich gespeicherten Reihenfolge erscheint, und bietet Copy clean text an. Der Detektor wird als findInvisibles() / cleanInvisibles() exportiert, um dieselben Regeln auf dem Server anzuwenden.

KategorieFormulare
TypWeb Component (<mv-invisibles>)
StatusBeta
KitFormulare, die niemanden verlieren
Installiert auchbutton
Keywordsexclusive, culture, form, validation, input, textarea, unicode, zero-width, whitespace, nbsp, homoglyph, confusable, trojan-source, bidi, sanitize, paste, iban, security, undo, code

When to use

  • Users paste IBANs, emails, API keys or codes copied from PDFs, chats or web pages, and silent mismatches reach support
  • A username or email field must catch homoglyph impersonation (Cyrillic or Greek letters inside Latin names)
  • Commands or config snippets are pasted from docs that turned quotes and dashes into typographic characters
  • A code review or snippet view must expose bidi controls and hidden text before anyone trusts what they read

Avoid when

  • The value only needs a format check (length, pattern, checksum) and invisible characters can simply be stripped on submit
  • The field is a password: the mirror cannot follow masked text, sanitize on the server instead
  • The text is a rich-text document (contenteditable, WYSIWYG editor); the mirror only follows native inputs and textareas

Installation

node scripts/add.mjs invisibles --out ./src/marvelous

KI-Agent mit dem MCP-Server von Marvelous UI: install_components({ slugs: ["invisibles"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).

Kopierte Dateien (inklusive Abhängigkeiten): tokens/tokens.css, core/base.css, core/dom.js, core/element.js, core/observe.js, components/invisibles/invisibles.js, components/invisibles/invisibles.css, components/button/button.css.

Verwendung

Schnellstart mit dem kleinsten funktionierenden Markup:

<mv-invisibles profile="iban">
  <label for="iban">IBAN</label>
  <input id="iban" value="FR76 3000 6000 0112&#8203;3456 7890 189">
</mv-invisibles>

Referenz-Markup zum Starten und Anpassen mit Attributen, data-* und CSS-Variablen:

<div id="iv-demo" style="width:min(100%,66rem);margin-inline:auto">
  <style>
    #iv-demo .iv-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:1.25rem; align-items:start }
    #iv-demo .iv-col { display:grid; gap:1.25rem; min-width:0 }
    #iv-demo .iv-card { display:grid; gap:1.125rem; min-width:0; margin:0; padding:1.25rem; border:1px solid var(--mv-border); border-radius:var(--mv-radius-xl); background:var(--mv-surface); box-shadow:var(--mv-shadow-sm) }
    #iv-demo .iv-card > * { min-width:0 }
    #iv-demo .iv-head { display:flex; align-items:flex-start; justify-content:space-between; gap:.75rem }
    #iv-demo .iv-head h3 { margin:0; font-size:1rem; letter-spacing:-.01em }
    #iv-demo .iv-head p { margin:.1875rem 0 0; color:var(--mv-fg-muted); font-size:.8125rem; line-height:1.45 }
    #iv-demo .iv-mono { font-family:var(--mv-font-mono); font-size:.8125rem }
    #iv-demo textarea.iv-mono { font-size:.75rem; line-height:1.6 }
    #iv-demo .iv-foot { display:flex; align-items:center; justify-content:flex-end; gap:.5rem; flex-wrap:wrap; padding-top:1rem; border-top:1px solid var(--mv-border) }
    #iv-demo .iv-saved { margin-inline-end:auto; color:var(--mv-fg-muted); font-size:.75rem }
    #iv-demo .iv-code { margin:0; padding:.75rem .875rem; border:1px solid var(--mv-border); border-radius:var(--mv-radius-lg); background:var(--mv-bg-subtle); font:.75rem/1.7 var(--mv-font-mono); font-variant-ligatures:none; overflow-x:auto; white-space:pre }
    #iv-demo .iv-k { display:block; margin:0 0 .375rem; color:var(--mv-fg-muted); font-size:.6875rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase }
    #iv-demo .iv-seen { margin:0; padding:.5rem .875rem; border:1px dashed var(--mv-border-strong); border-radius:var(--mv-radius-lg); color:var(--mv-fg-muted); font:.75rem/1.7 var(--mv-font-mono); font-variant-ligatures:none; white-space:pre; overflow-x:auto }
    #iv-demo .mv-choice { font-size:.8125rem }
    @media (max-width:56rem) { #iv-demo .iv-grid { grid-template-columns:minmax(0,1fr) } }
  </style>

  <div class="iv-grid">
    <!-- Single-line fields: codes pinned under each field, validity blocks the submit -->
    <form class="iv-card" id="iv-form" aria-labelledby="iv-form-title">
      <div class="iv-head">
        <div>
          <h3 id="iv-form-title">Payout details</h3>
          <p>Pasted from a vendor’s onboarding email</p>
        </div>
        <span class="mv-badge" data-variant="warning" id="iv-count">Checking…</span>
      </div>

      <mv-invisibles profile="iban" validate>
        <div class="mv-field">
          <label class="mv-label" for="iv-iban">IBAN</label>
          <input class="mv-input iv-mono" id="iv-iban" name="iban" value="DE89&#x200B; 3704&#xA0;0O44 0532 0130 00" autocomplete="off" spellcheck="false">
        </div>
      </mv-invisibles>

      <mv-invisibles profile="email" validate>
        <div class="mv-field">
          <label class="mv-label" for="iv-email">Remittance email</label>
          <input class="mv-input" id="iv-email" name="email" type="email" value="sofia.m&#x430;rtinez@n&#x43E;rthwind.io" autocomplete="off" spellcheck="false">
        </div>
      </mv-invisibles>

      <mv-invisibles profile="code" validate="warning">
        <div class="mv-field">
          <label class="mv-label" for="iv-coupon">Partner code</label>
          <input class="mv-input iv-mono" id="iv-coupon" name="coupon" value="SPRING2O26&#x20;" autocomplete="off" spellcheck="false">
        </div>
      </mv-invisibles>

      <div class="iv-foot">
        <span class="iv-saved" id="iv-saved" role="status"></span>
        <button class="mv-button" data-variant="outline" type="reset">Restore examples</button>
        <button class="mv-button" type="submit">Save payout details</button>
      </div>
    </form>

    <div class="iv-col">
      <!-- Multi-line field: tokens in place, the code shows on hover or when the caret touches it -->
      <section class="iv-card" aria-labelledby="iv-cmd-title">
        <div class="iv-head">
          <div>
            <h3 id="iv-cmd-title">Deploy command</h3>
            <p>Copied from the team wiki. Hover a marker, or move the caret next to it</p>
          </div>
        </div>
        <mv-invisibles profile="code" id="iv-cmd">
          <label class="mv-sr-only" for="iv-cmd-field">Deploy command</label>
          <textarea class="mv-textarea iv-mono" id="iv-cmd-field" rows="3" spellcheck="false">curl &#x2013;X POST https://api.northwind.io/v1/deploys \&#x20;
  -H &#x201C;Authorization: Bearer $DEPLOY_TOKEN&#x201D; \
  -d&#xA0;'{"service": "checkout", "region": "us-east-1"}'</textarea>
        </mv-invisibles>
        <label class="mv-choice" data-control="end">
          <input type="checkbox" role="switch" class="mv-switch" id="iv-ws">
          <span class="mv-choice-text"><span class="mv-choice-title">Show all whitespace</span></span>
        </label>
      </section>

      <!-- Read-only target: revealed in place, with the true character order -->
      <section class="iv-card" aria-labelledby="iv-pr-title">
        <div class="iv-head">
          <div>
            <h3 id="iv-pr-title">Code review</h3>
            <p>auth/guard.js · pull request #482</p>
          </div>
        </div>
        <div>
          <span class="iv-k" id="iv-seen-k">What the reviewer saw</span>
          <pre class="iv-seen" aria-labelledby="iv-seen-k">if (role !== "user&#x202E; &#x2066;// Check if admin&#x2069; &#x2066;") {</pre>
        </div>
        <div>
          <span class="iv-k">What is stored</span>
          <mv-invisibles>
            <pre class="iv-code"><code>const role = session.user.role;
if (role !== "user&#x202E; &#x2066;// Check if admin&#x2069; &#x2066;") {
  grantAccess(adminPanel);
}</code></pre>
          </mv-invisibles>
        </div>
      </section>
    </div>
  </div>

  <script type="module">
    const form = document.getElementById("iv-form");
    await customElements.whenDefined("mv-invisibles");
    const badge = document.getElementById("iv-count");
    const saved = document.getElementById("iv-saved");
    const fields = [...form.querySelectorAll("mv-invisibles")];

    const refresh = () => {
      const total = fields.reduce((sum, el) => sum + el.counts.total, 0);
      badge.textContent = total ? `${total} to review` : "Ready to save";
      badge.dataset.variant = total ? "warning" : "success";
    };
    form.addEventListener("mv-invisibles", () => { saved.textContent = ""; refresh(); });
    form.addEventListener("reset", () => setTimeout(refresh));
    form.addEventListener("submit", (e) => {
      e.preventDefault();
      saved.textContent = "Payout details saved";
    });
    refresh();

    document.getElementById("iv-ws").addEventListener("change", (e) => {
      document.getElementById("iv-cmd").showWhitespace = e.target.checked;
    });
  </script>
</div>

Kulturelle Referenz

Der Unsichtbare, H. G. Wells (1897, Buch). Der unsichtbare Wissenschaftler wird erst sichtbar, wenn er seinen Körper in Bandagen, Kleidung und Schutzbrille hüllt: Was man nicht sehen kann, wird durch die Umrisse sichtbar, die es umhüllen. Die Komponente umhüllt jedes unsichtbare oder verwechselbare Zeichen mit einer sichtbaren Kontur und einem Kurznamen, genau dort, wo es im Feld steht, sodass man das Zeichen sehen, verstehen und entfernen kann.

API

Attributes

NameTypDefaultDescription
profileiban | email | code | username | text | proseemail for type=email, prose for textarea, code for pre/code, text otherwiseRule set for the kind of value. iban, email, code and username are strict: every non-ASCII look-alike letter, bidi mark and odd space is flagged; code also flags smart quotes, typographic dashes and look-alike punctuation; iban and code flag an O/I/l among digits (or a 0/1 among letters) on single-line fields. text flags hidden characters, odd spaces, edges and mixed-script words only. prose is lenient: no-break spaces, soft hyphens and bidi marks are fine, joiners inside emoji and joining scripts are ignored, only words mixing Latin with Cyrillic, Greek or Armenian look-alikes are flagged.
ruleslist of rule idsReplaces the profile's rules. Ids: zero-width, joiner, soft-hyphen, bidi, bidi-mark, control, tags, nbsp, spaces, tab, edge, line-separator, homoglyph, fullwidth, ambiguous, punctuation.
allowlistExceptions, comma or space separated: rule ids ("nbsp, edge"), short codes ("ZWJ"), code points ("U+00A0") or single characters.
validate"" | "warning"Present: the field gets a custom validity message (setCustomValidity) while danger or error findings remain, so native form validation blocks the submit. "warning" also blocks warnings (look-alike punctuation, ambiguous O/0, spaces in multi-line fields). The message is removed as soon as the field is clean, and never touches a validity message the app set itself.
validity-messagestringCustom validity message used instead of the default (“This field contains 2 hidden characters. Fix them before continuing.”).
show-whitespacebooleanfalseAlso draws regular spaces (·) and line ends (¶) faintly in the mirror, like an editor's render-whitespace mode. They are never counted.
show-cleanbooleanfalseKeeps the summary line visible when nothing is found (“No hidden characters”), for fields where the check itself should be visible.
data-invisibles-targetattribute on a descendantMarks the element to watch when the wrapper contains several candidates. Otherwise the first input or textarea is used, then the first pre, then the first code.
data-invisibles-reportattribute on a descendantContainer that receives the report (summary, fixes, details). By default the report is inserted right after the wrapper's child that contains the field.

Properties

NameTypDescription
foundFinding[]Current findings (read-only copies), sorted by position; identical adjacent characters are merged. Finding: { index, end, length, count, text, codePoint, hex, code, name, hint, rule, category: "invisible" | "space" | "lookalike", severity: "danger" | "error" | "warning", replacement, fix, hidden? } (hidden = decoded tag text).
counts{ hidden, invisible, space, lookalike, danger, total }Totals in characters (hidden = invisible + space).
cleanstringThe current text with every fix applied, without touching the field.
fieldHTMLElement | nullThe watched element.
profile / rules / allow / validate / validityMessage / showWhitespace / showCleanreflectedMirror the attributes; changing one rescans immediately.

Methods

NameDescription
scan()Rescans now and returns the findings. Call it after setting the field's value from script (programmatic value changes fire no event); input, change, focus and form reset rescan automatically.
fix(kind = "all")kind: "invisible" | "spaces" | "lookalikes" | "all". Replaces only the changed span with document.execCommand("insertText"), so native undo, input events and framework bindings all see a normal edit (falls back to setting the value and dispatching input). The caret is mapped through the edit. Returns the number of characters fixed (0 if nothing to fix, read-only field or vetoed).
copyClean()Copies the text with every fix applied to the clipboard (the action offered for pre/code targets). Resolves to the number of characters fixed.
findInvisibles(text, { profile, rules, allow, multiline }) (module export)The detector alone, DOM-free: returns the same findings, for server-side or Node validation.
cleanInvisibles(text, options, kind) (module export)Returns { text, count, ops } with the chosen fixes applied.

Events

NameDescription
mv-invisiblesFindings changed (and once on start if any). detail: { found, counts, value, source: "initial" | "input" | "paste" | "drop" | "change" | "fix" | "reset" | "api" | "config" | "mutation" }.
mv-fixBefore a fix or a clean copy. detail: { kind, count, before, after, found, mode: "edit" | "copy" }. Cancelable: preventDefault() leaves the value untouched (e.g. log it, or apply your own normalization).

Content structure

NameDescription
(content)Your label and one input (text, search, email, url, tel), textarea, pre or code, in any markup (a field wrapper, an input group…). The component adds a mirror and a tooltip (both aria-hidden) plus a report after the field; the field itself is only given aria-describedby and, with validate, a custom validity message.

CSS classes

NameDescription
mv-invisibles-mirrorThe transparent copy of the text laid over the field (aria-hidden, pointer-events: none).
mv-invisibles-tokenA wrapped character. data-shape: zero | space | edge | break | glyph, data-rule, data-category, data-severity, data-code.
mv-invisibles-rail / -chipCodes pinned under single-line fields, with a tick pointing at the exact position (‹ › when scrolled out of view, +N when they do not fit).
mv-invisibles-tipTooltip naming the hovered or caret-adjacent character.
mv-invisibles-report / -summary / -fixes / -result / -list / -itemThe report: data-state (found | fixed | clean) and data-severity on the report.

CSS variables

NameDefaultDescription
--mv-invisibles-colorvar(--mv-warning)Tone of hidden characters and odd spaces.
--mv-invisibles-dangervar(--mv-danger)Tone of bidi controls and hidden tag text.
--mv-invisibles-lookalikevar(--mv-accent)Tone of look-alike characters.

Accessibility

The mirror, rail and tooltip are purely visual (aria-hidden, pointer-events: none): the field keeps its native role, label, caret, selection, spellcheck and IME behavior, and nothing is inserted into its value. Findings are described in text: the summary element is linked to the field with aria-describedby while there is something to report (removed when the field is clean), and includes a screen-reader sentence naming the first four findings and where they are (“zero width space after DE89”). New findings are announced politely, once the input settles (“Pasted text contains 2 hidden characters: zero width space, no-break space.”). Fixes are real buttons; a fix moves focus into the field (where typing continues), announces its result (“Removed 1 invisible character. Press Ctrl+Z or use Undo to restore.”) and stays undoable natively. The Details toggle uses aria-expanded / aria-controls, and each finding in the list is a button that selects that character in the field, so keyboard and screen-reader users can reach every finding without hovering; moving the caret next to a marker shows the same tooltip as hovering. Meaning never relies on color: every marker has a distinct shape (capsule, bracket, hatching, dotted underline, solid capsule with a notch for dangerous controls) and a text code, and the summary icon changes shape with severity. With validate, the native validity message explains the problem in plain words. The overlay follows the field's own font metrics, so it stays aligned at any zoom level and text size. Reduced motion removes the tooltip fade, the rail slide and the locate flash; forced colors switch markers and chips to system colors while keeping their shapes.

Diese Seite wurde mit KI übersetzt. Übersetzungsfehler melden