Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
tree-select-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/opentui-tree-select
Usage
import { TreeSelect } from "@/components/ui/tree-select";<TreeSelect
label="Select a file"
nodes={[
{
value: "src",
label: "src",
children: [
{ value: "index.ts", label: "index.ts" },
{ value: "utils.ts", label: "utils.ts" },
],
},
{ value: "README.md", label: "README.md" },
]}
onChange={(value) => {}}
/>API Reference
TreeSelect
| Prop | Type | Default |
|---|---|---|
nodes | TreeSelectNode<T>[] | required |
value | T | - |
onChange | (value: T) => void | - |
onSubmit | (value: T) => void | - |
label | string | - |
expandedByDefault | boolean | false |