Goal: Build ALL components from shadcn/ui + extras needed for ShellDocs (Blazor fumadocs equivalent)
Form (11): Button, Input, Textarea, Select, Checkbox, RadioGroup, RadioGroupItem, Switch, Toggle, Label, Slider
Layout (19): Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter, Tabs, TabsList, TabsTrigger, TabsContent, TabModels, Navbar, Sidebar, Separator, Accordion, AccordionItem, AccordionTrigger, AccordionContent, Breadcrumb, BreadcrumbItem, Collapsible, CollapsibleTrigger, CollapsibleContent, Resizable
Navigation (8): NavigationMenu, NavigationMenuItem, Menubar, MenubarItem, Dropdown, Pagination, ScrollArea, Sheet
Feedback (7): Alert, AlertVariants, Progress, Skeleton, Toast, Loading, EmptyState
Overlay (8): Dialog, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, DialogClose, AlertDialog, Popover, Tooltip, HoverCard, Drawer, ContextMenu, Command
Data Display (10): Badge, BadgeVariants, Avatar, AvatarVariants, Table, TableHeader, TableBody, TableRow, TableHead, TableCell, DataTable
Data Visualization (7): Chart, BarChart, LineChart, AreaChart, PieChart, MultiSeriesChart, ChartSeries, ChartVariants
Advanced (6): Carousel, CarouselItem, CarouselContent, CarouselPrevious, CarouselNext, CarouselDots
Form Advanced (5): Form, InputOTP, Combobox, DatePicker, DateRangePicker, TimePicker
Utility (3): ThemeToggle, Shell, ButtonVariants, ToggleVariants, FileUpload, Stepper, StepperList, StepperStep, StepperContent, Calendar
Components upgraded to shadcn-style compositional API (explicit sub-components, no heavy ChildContent, explicit Value/Title props):
-
Tabs → TabsList, TabsTrigger, TabsContent (Value-based)
-
Stepper → StepperList, StepperStep, StepperContent (Value-based, Confirm on last)
-
Collapsible → CollapsibleTrigger, CollapsibleContent
-
Dialog → DialogTrigger, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter, DialogClose
-
Card → CardHeader, CardTitle, CardDescription, CardContent, CardFooter
-
Accordion → AccordionTrigger, AccordionContent (Value optional; legacy Title + ChildContent still supported)
-
Dropdown → DropdownTrigger, DropdownContent, DropdownItem (legacy Trigger/ChildContent supported)
-
Popover → PopoverTrigger, PopoverContent (legacy Trigger/ChildContent supported)
-
HoverCard → HoverCardTrigger, HoverCardContent (legacy ChildContent/CardContent supported)
-
Carousel → CarouselList, CarouselSlide (Value-based; UseCarouselList=true)
-
ContextMenu → ContextMenuTrigger, ContextMenuContent, ContextMenuOption (legacy Items supported)
-
NavigationMenu → NavList, NavItem, NavTrigger, NavContent (UseNavList=true)
-
Select → SelectTrigger, SelectContent, SelectItem (UseCustomSelect=true; native select default)
- Root component cascades context (state, callbacks)
- Sub-components use
Valuefor selection,Title/Descriptionfor labels - No monolithic
ChildContentwith implicit structure - Styling via Tailwind classes matching shadcn defaults
These components are needed to build ShellDocs - the Blazor equivalent of fumadocs.
- CodeBlock - Syntax highlighted code with copy button, line numbers, line highlighting, filename tab
- MDX / MarkdownRenderer - Render MDX/Markdown content with component support
- Callout - Info/warning/danger/tip callout boxes (like Docusaurus admonitions)
- Steps - Numbered step-by-step instructions (vertical)
- FileTree - Display file/folder structure with icons
- Tabs (Docs variant) - Code tabs for multi-language examples (npm/yarn/pnpm)
- SearchDialog - Full-text search overlay (Cmd+K style, extends Command)
- CopyButton - One-click copy to clipboard
- TableOfContents - Auto-generated from headings, scroll-spy active state
- DocsSidebar - Collapsible docs navigation with sections/groups
- DocsHeader - Top nav with search, theme toggle, github link
- DocsBreadcrumb - Auto-generated from route hierarchy
- PrevNextNav - Previous/Next page navigation at bottom of docs
- TypeTable - API/Props reference table (component name, type, default, description)
- LinkCard - Card-style links for related pages
- TreeView - Hierarchical tree with expand/collapse, selection, drag-drop
- Timeline - Vertical event timeline with icons and content
- AspectRatio - Constrained aspect ratio container
- ColorPicker - Color selection with swatches, hex/rgb input
- Toggle Group - Group of toggles (single/multi select)
- Number Input - Increment/decrement number input
- RichTextEditor - WYSIWYG editor (consider Quill or ProseMirror)
- KanbanBoard - Drag-and-drop columns and cards
- VirtualScroll - Virtualized list for large datasets
- InfiniteScroll - Load more on scroll
- ImageViewer - Lightbox with zoom/pan
- VideoPlayer - Video playback controls
- QRCode - QR code generator
- Barcode - Barcode display
ShellDocs will need:
- MDX Pipeline - Parse .mdx files, extract frontmatter, render with Blazor components
- File-based routing - Docs pages from folder structure (like fumadocs/Nextra)
- Search index - Build-time index generation for full-text search
- Syntax highlighting - Prism.js or Shiki via JS interop
- Component embedding - Render ShellUI components inline in docs (live preview)
- Landing page (hero, features grid, code example)
- Component docs (props table, live preview, code examples)
- Getting started guide (steps, code blocks)
- API reference (type tables, method signatures)
- Changelog (timeline)
- v0.1.0 (Dec 2025) - 73 components, CLI + NuGet
- v0.1.1 (Dec 2025) - Hotfix, package publishing
- v0.3.0-alpha (Feb 2026) - Current alpha: Charts, 100 components, Tailwind 4.1.18
- v0.3.0 (Q1 2026) - ShellDocs components (CodeBlock, MDX, Callout, Steps, etc.)
- v0.4.0 (Q2 2026) - ShellDocs site launch
- v1.0.0 (Q2-Q3 2026) - .NET 10, stable API, comprehensive docs