collapse-54b1b4 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited collapse-54b1b4 (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.
Expandable/collapsible content panel with animated height transition. Uses Framer Motion AnimatePresence for smooth open/close.
import { Collapse } from 'reablocks';| Prop | Type | Default | Description | |
|---|---|---|---|---|
expanded | boolean | — | Whether the content is visible | |
animated | boolean | true | (deprecated) Enable animation | |
animation | MotionNodeAnimationOptions | — | Custom animation config | |
className | string | — | Additional CSS classes | |
theme | CollapseTheme | — | Per-instance theme override | |
children | `ReactNode \ | (() => ReactNode)` | — | Content (supports render function) |
const [expanded, setExpanded] = useState(false);
<Button onClick={() => setExpanded(!expanded)}>Toggle</Button>
<Collapse expanded={expanded}>
<p>Collapsible content here</p>
</Collapse><Collapse expanded={expanded}>
{() => <ExpensiveComponent />}
</Collapse>Content is only rendered when expanded (unmounted when collapsed via AnimatePresence).
Default animation: opacity 0→1 + height 0→auto with 0.5s ease transition.
interface CollapseTheme {
base: string; // Container (will-change-[height,opacity], overflow-hidden)
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.