Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@woogo/admin-ui
Advanced tools
You can activate Dark mode in your tailwind.config.js
This package is ready for it
<ThemeProvider defineBodyColor>
<SidebarProvider>
<Sidebar>
<NextLinkMenu to="/" icon="BellIcon" name="Test" />
</Sidebar>
<Header title="Woogo UI" haveNotification/>
<MainContainer>
<PageTitle>Dashboard</PageTitle>
<SectionTitle>Summary</SectionTitle>
<div className="container grid grid-cols-4 gap-4">
<InfoCard title="Users Account">556</InfoCard>
<InfoCard title="Pure Benefice">+8500€</InfoCard>
<InfoCard title="Open Box">5</InfoCard>
</div>
<div className="space-x-5 mt-5">
<Button styleType="primary">Primary</Button>
<Button styleType="primary" size="small">Small</Button>
<Button styleType="outline">Outline</Button>
<Button styleType="link">Link</Button>
<Button styleType="primary" disabled>Primary Disabled</Button>
<Button styleType="outline" disabled>Outline Disabled</Button>
<Button styleType="link" disabled>Link Disabled</Button>
</div>
<div className="mt-5 space-x-5">
<Badge type="primary">Primary</Badge>
<Badge type="neutral">Neutral</Badge>
<Badge type="danger">Danger</Badge>
<Badge type="success">Success</Badge>
<Badge type="warning">Warning</Badge>
</div>
</MainContainer>
</SidebarProvider>
</ThemeProvider>
For more exemple look stories in dir : src/stories
<ReactLinkMenu to="/" icon="BellIcon" name="Test" />
<NextLinkMenu to="/" icon="BellIcon" name="Test" />
To prevent purge of class in the package your need to add next line to your tailwind.config.js
module.exports = {
purge: {
enabled: true,
content: ['./src/**/*.{js,ts,jsx,tsx}', './node_modules/@woogo/admin-ui/src/theme/default.ts'],
safelist: ['dark']
},
theme: {
extend: {},
},
variants: {
extend: {
opacity: ['disabled'],
},
},
plugins: [
require('@tailwindcss/forms')
],
}
If you use dark theme you must put this in safelist like above
You can choose to set with javascript the class to body with props defineBodyColor
on ThemeProvider component
Or you can add this to your css file
body {
@apply bg-gray-50 dark:bg-gray-900;
}
Check stories/tailwind.css
Add ::webkit*
class in your css file
moutehard | GautheyValentin |
MIT
FAQs
A taillwind library with react components
The npm package @woogo/admin-ui receives a total of 1 weekly downloads. As such, @woogo/admin-ui popularity was classified as not popular.
We found that @woogo/admin-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.