mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 21:56:08 +00:00
* feat: refactor registry * fix: remove components * refactor: getActiveStyle * fix: prettier in build-registry Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * fix * Update apps/v4/scripts/build-registry.mts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix * Update apps/v4/scripts/build-registry.mts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update apps/v4/components/block-viewer.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
38 lines
532 B
TypeScript
38 lines
532 B
TypeScript
export const registryCategories = [
|
|
{
|
|
name: "Sidebar",
|
|
slug: "sidebar",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Dashboard",
|
|
slug: "dashboard",
|
|
hidden: true,
|
|
},
|
|
{
|
|
name: "Authentication",
|
|
slug: "authentication",
|
|
hidden: true,
|
|
},
|
|
{
|
|
name: "Login",
|
|
slug: "login",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Signup",
|
|
slug: "signup",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "OTP",
|
|
slug: "otp",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Calendar",
|
|
slug: "calendar",
|
|
hidden: false,
|
|
},
|
|
]
|