Skip to content
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
7b03787
chore: cleanup playground
sadmann7 Jan 30, 2026
64b5acb
Merge branch 'main' into sadman/radix-mono
sadmann7 Jan 31, 2026
91a7370
refactor(registry): migrate to multi-base architecture
sadmann7 Feb 9, 2026
528966f
refactor: migrate to unified radix-ui package
sadmann7 Feb 9, 2026
91ec930
style: format code
sadmann7 Feb 9, 2026
49a978f
fix: update MDX paths to new registry structure
sadmann7 Feb 9, 2026
4017ad5
feat: restructure docs for multi-base component support
sadmann7 Feb 9, 2026
43e1437
fix: remove separator from components meta.json
sadmann7 Feb 9, 2026
c36cc16
refactor: simplify component redirects with regex pattern
sadmann7 Feb 10, 2026
5b96c14
perf: optimize repo for reduced CPU/RAM usage
sadmann7 Feb 10, 2026
5675ac4
refactor: flatten component sidebar and streamline navigation
sadmann7 Feb 10, 2026
1eef0eb
feat: add preview badges and optimize utility components
sadmann7 Feb 10, 2026
73416e5
feat: add components and changelog pages with dynamic content
sadmann7 Feb 10, 2026
2f005bf
refactor: improve doc actions button group styling
sadmann7 Feb 10, 2026
523e300
refactor: align dropdown menu to the right
sadmann7 Feb 10, 2026
59bf4c3
refactor: add spacing to button group separator
sadmann7 Feb 10, 2026
70ea26b
chore: cleanup stuffs
sadmann7 Feb 10, 2026
469d44f
style: add vertical padding to button group separator
sadmann7 Feb 10, 2026
7d22ac3
refactor: render changelog entries as inline list with custom ToC
sadmann7 Feb 10, 2026
ad2aa64
docs: rewrite changelog entry and add separator between entries
sadmann7 Feb 10, 2026
6ec9979
docs: replace em dashes with commas in changelog
sadmann7 Feb 10, 2026
b9c1094
style: increase changelog title size to text-2xl
sadmann7 Feb 10, 2026
3c9c635
refactor: extract changelog logic to lib/changelog.ts
sadmann7 Feb 10, 2026
395c467
chore: cleanup changelog
sadmann7 Feb 10, 2026
5f845c7
chore: cleanup registry
sadmann7 Feb 10, 2026
2c20e10
refactor: restructure registry output to styles/ subdirectories
sadmann7 Feb 10, 2026
de5a2dc
chore: add shadcn/ui attribution via @see TSDoc annotations
sadmann7 Feb 10, 2026
a39b481
chore: add biome-ignore explanation for React import in styles
sadmann7 Feb 10, 2026
1d3c671
fix: pin radix-ui to ^1.4.3 and fix broken doc links
sadmann7 Feb 10, 2026
c70aed4
refactor: derive components list from registry instead of hardcoding
sadmann7 Feb 10, 2026
db53605
chore: update lockfile for radix-ui version pin
sadmann7 Feb 10, 2026
31cbb74
chore: sync
sadmann7 Feb 10, 2026
ea18ba5
refactor: use-mounted
sadmann7 Feb 10, 2026
4da4350
ci: increase Node.js memory limit to fix build OOM errors
sadmann7 Feb 16, 2026
fab8be1
fix: disable noUnknownPseudoElement rule for webkit scrollbar pseudo-…
sadmann7 Feb 16, 2026
ae40ecd
ci: exclude docs from CI build following shadcn pattern
sadmann7 Feb 16, 2026
693018b
chore: cleanup
sadmann7 Feb 16, 2026
d02c4e9
ci: remove unnecessary memory limits and timeout
sadmann7 Feb 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 30 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,34 @@
["clsx\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
"typescript.enablePromptUseWorkspaceTsdk": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.next/**": true,
"**/.turbo/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/*.mp4": true,
"**/*.mp3": true,
"**/*.avi": true,
"**/*.mov": true,
"**/*.webm": true
},
"search.exclude": {
"**/.git": true,
"**/.next": true,
"**/.turbo": true,
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/*.mp4": true,
"**/*.mp3": true,
"pnpm-lock.yaml": true
},
"files.exclude": {
"**/.git": false,
"**/.turbo": true
}
}
Loading
Loading