![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@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
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.