
Product
PHP and Composer Support Is Now in Beta
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.
@uipath/apollo-wind
Advanced tools
Affected versions:
UiPath wind design system - A Tailwind CSS based React component library
A modern, accessible React component library with bundled Tailwind CSS. Zero-config for quick starts, full Tailwind JIT for advanced needs.
graph LR
A[Apollo Wind] --> B[Pre-compiled Styles<br/>Zero Config]
A --> C[Tailwind JIT<br/>Full Power]
B --> D[Fast Setup<br/>17KB CSS]
C --> E[All Features<br/>Custom Classes]
npm install @uipath/apollo-wind
Note: This package is published to both npm and GitHub Package Registry. External users will automatically pull from npm. Internal UiPath users with .npmrc configured will automatically pull from GitHub Package Registry.
Option 1: Zero Config (Recommended for quick starts)
import "@uipath/apollo-wind/tailwind.css";
import { Button } from "@uipath/apollo-wind";
<Button>Click me</Button>;
Option 2: Full Tailwind JIT (For advanced customization)
npm install @uipath/apollo-wind postcss
// postcss.config.js
export { default } from "@uipath/apollo-wind/postcss";
/* src/app.css */
@import "@uipath/apollo-wind/tailwind.css";
/* Scan your source files for Tailwind classes */
@source "./src/**/*.{js,jsx,ts,tsx}";
/* Scan wind components to include their styles */
@source "./node_modules/@uipath/apollo-wind/dist/**/*.js";
import "./app.css";
import { Button } from "@uipath/apollo-wind";
// ✅ All Tailwind utilities work!
<Button className="bg-purple-500 hover:scale-105 w-[200px]">
Custom Tailwind
</Button>;
| Feature | Pre-compiled | Tailwind JIT |
|---|---|---|
| Setup Time | Instant | 5 minutes |
| Bundle Size | ~17KB CSS | ~varies (JIT) |
| Custom Classes | ❌ | ✅ |
| Arbitrary Values | ❌ | ✅ (w-[200px]) |
| Tailwind Plugins | ❌ | ✅ |
| Best For | Prototypes, Simple Apps | Production, Heavy Customization |
flowchart TD
A[Component Library] --> B[CVA Variants]
A --> C[TypeScript Types]
B --> D[Tailwind Utilities]
C --> E[React Components]
F[Consumer App] --> G{Choose Approach}
G -->|Option 1| H[Import styles.css]
G -->|Option 2| I[Import tailwind.css<br/>+ @source directive]
H --> J[Pre-compiled CSS<br/>34KB]
I --> K[JIT Compiled<br/>Only used utilities]
J --> L[Components Rendered]
K --> L
import {
Button,
Card,
CardContent,
CardHeader,
CardTitle,
Input,
Label,
} from "@uipath/apollo-wind";
function LoginForm() {
return (
<Card className="w-full max-w-md">
<CardHeader>
<CardTitle>Welcome Back</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div>
<Label htmlFor="email">Email</Label>
<Input id="email" type="email" placeholder="you@example.com" />
</div>
<Button className="w-full">Sign In</Button>
</CardContent>
</Card>
);
}
import { cn } from "@uipath/apollo-wind";
<Button className={cn("base-class", isActive && "active-class")}>
Button
</Button>;
This package is part of a pnpm workspace. All commands should be run using pnpm.
From the root of the monorepo:
pnpm install # Install all dependencies
pnpm build # Build apollo packages
pnpm storybook:design # Run Storybook on http://localhost:6006
pnpm test --filter=@uipath/apollo-wind # Run tests
pnpm lint --filter=@uipath/apollo-wind # Run lint
pnpm format --filter=@uipath/apollo-wind # Run biome format
From the packages/apollo-wind directory:
pnpm install # Install dependencies (from root)
pnpm build # Build apollo packages
pnpm storybook # Run Storybook on http://localhost:6006
pnpm test # Run tests
pnpm lint # Run lint
pnpm format # Run biome format
Modern browsers: Chrome, Firefox, Safari, Edge (latest versions)
MIT - see LICENSE
Peer Dependencies: React ≥18.0.0
Built with ❤️ by UiPath | Inspired by shadcn/ui
FAQs
UiPath wind design system - A Tailwind CSS based React component library
The npm package @uipath/apollo-wind receives a total of 984 weekly downloads. As such, @uipath/apollo-wind popularity was classified as not popular.
We found that @uipath/apollo-wind demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 24 open source maintainers collaborating on the project.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.