
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@classytic/clarity
Advanced tools
Clarity UI - Custom components built on shadcn/ui and radix by Classytic
Reusable UI components built on shadcn/ui for Next.js projects.
npm install @classytic/clarity
import { DialogWrapper, FormInput, DataTable } from "@classytic/clarity";
import { PageHeader, InsetSidebar } from "@classytic/clarity/dashboard";
| Category | Components |
|---|---|
| Dialogs/Sheets | DialogWrapper, FormDialog, SheetWrapper, FormSheet, ConfirmDialog |
| Forms | FormInput, FormTextarea, SelectInput, CheckboxInput, RadioInput, SwitchInput, DateInput, TagInput, ComboboxInput, SlugField, FormErrorSummary, DateRangeFilter |
| Tables | DataTable, TableWrapper, SimpleTable |
| Layout | CardWrapper, CollapsibleWrapper, ResponsiveSplitLayout, TabsWrapper |
| Display | Pill, InfoRow, CopyButton, Thumbnail, DisplayHeading |
| Navigation | ApiPagination, CustomPagination |
| Dashboard | PageHeader, HeaderSection, InsetSidebar, DualSidebar, ProjectSwitcher, SidebarNav, SidebarUserMenu |
| Other | ModeToggle, TooltipWrapper, DropdownWrapper, AccordionWrapper |
// Main components
import { ... } from "@classytic/clarity";
// Dashboard components (sidebar, header)
import { ... } from "@classytic/clarity/dashboard";
// Layout utilities
import { ... } from "@classytic/clarity/layout";
@/ path alias@/components/ui/*Add @classytic/clarity to transpilePackages in your next.config.ts:
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
transpilePackages: ["@classytic/clarity"],
};
export default nextConfig;
Import the clarity styles in your global CSS file to ensure all component classes are included in production builds:
Tailwind v4 (in app/globals.css):
@import "tailwindcss";
@import "@classytic/clarity/styles.css";
Tailwind v3 (in tailwind.config.js):
module.exports = {
content: [
// ... your paths
"./node_modules/@classytic/clarity/dist/**/*.js",
],
};
npm run build # Build package
npm run dev # Watch mode
UNLICENSED
Copyright © 2026 Classytic. All rights reserved.
This software is the confidential and proprietary information of Classytic. Unauthorized copying of this software, via any medium is strictly prohibited.
FAQs
Clarity UI - Custom components built on shadcn/ui and radix by Classytic
We found that @classytic/clarity demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.