pnpm dlx shadcn@latest add https://ui.saturation.io/r/version-selector.jsonimport { VersionSelector } from "@/components/ui/version-selector"<VersionSelector
versions={["v2.0", "v1.5", "v1.0"]}
selectedVersion="v2.0"
onVersionChange={(v) => setVersion(v)}
/>| Prop | Type | Default | Description |
|---|---|---|---|
versions | string[] | — | List of version strings to display. |
selectedVersion | string | — | The currently selected version. |
onVersionChange | (version: string) => void | — | Callback when a version is selected. |
variant | "default" | "cover" | "default" | Visual variant. Use "cover" for hero/banner placements with white styling. |
className | string | — | Additional CSS classes. |
On This Page