Collapsible
octane/collapsibleFreeComponent
octane publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by octane on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://raw.githubusercontent.com/octanejs/octane/main/packages/shadcn/registry/collapsible.jsonSource
1// Base UI base collapsible — runs on @octanejs/base-ui's Collapsible.2//3// PART MAPPING: shadcn names the content part `CollapsibleContent` while the Base UI part4// underneath is `Collapsible.Panel` — the same rename this base already makes for `accordion`.5// The exported names and all three `data-slot` values stay as shadcn defines them, so consumers6// see no difference between bases.7//8// No class strings: upstream ships this family unstyled in every base, leaving layout to the9// consumer. There is correspondingly no styling risk here, and nothing to verify against a10// class-string source.11import { Collapsible as CollapsiblePrimitive } from '@octanejs/base-ui/collapsible';1213type Props = Record<string, unknown>;1415export function Collapsible(props: Props) @{16 <CollapsiblePrimitive.Root data-slot="collapsible" {...props} />17}1819export function CollapsibleTrigger(props: Props) @{20 <CollapsiblePrimitive.Trigger data-slot="collapsible-trigger" {...props} />21}2223export function CollapsibleContent(props: Props) @{24 <CollapsiblePrimitive.Panel data-slot="collapsible-content" {...props} />25}
What it pulls in
npm packages
Files it writes
More from octane
All 44 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | octane | Components | Free | 2 deps | |
| Alertalert | octane | Components | Free | 1 dep | |
| Alert Dialogalert-dialog | octane | Components | Free | 1 dep | |
| Aspect Ratioaspect-ratio | octane | Components | Free | no deps | |
| Avataravatar | octane | Components | Free | 1 dep | |
| Badgebadge | octane | Components | Free | 1 dep | |
| Breadcrumbbreadcrumb | octane | Components | Free | 1 dep | |
| Buttonbutton | octane | Components | Free | 2 deps |
