textarea — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited textarea (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Auto-resizing multi-line text input built on react-textarea-autosize. Supports sizes, error state, and imperative ref API.
import { Textarea } from 'reablocks';| Prop | Type | Default | Description | ||
|---|---|---|---|---|---|
size | `'small' \ | 'medium' \ | 'large'` | 'medium' | Textarea size |
fullWidth | boolean | — | Take full container width | ||
error | boolean | — | Error state (red border) | ||
containerClassName | string | — | CSS classes for the container div | ||
className | string | — | CSS classes for the textarea element | ||
theme | TextareaTheme | — | Per-instance theme override |
Also accepts all TextareaAutosizeProps from react-textarea-autosize (e.g. minRows, maxRows, placeholder, disabled, value, onChange).
<Textarea placeholder="Enter description..." /><Textarea size="small" placeholder="Small" />
<Textarea size="medium" placeholder="Medium" />
<Textarea size="large" placeholder="Large" /><Textarea fullWidth error placeholder="Required field" />const ref = useRef<TextAreaRef>(null);
<Textarea ref={ref} />
// Imperative methods:
ref.current.focus();
ref.current.blur();
ref.current.textareaRef; // HTMLTextAreaElement ref
ref.current.containerRef; // Container div refinterface TextareaTheme {
base: string; // Container (flex, border, rounded, bg, transition)
input: string; // Textarea element (resize-none, bg-transparent)
fullWidth: string; // Full width override
error: string; // Error border
disabled: string; // Disabled state
sizes: { small, medium, large };
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.