Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
UI kit for Nuxt 3's examples and internal tooling UI.
Note: This library is heavily working in progress and does not serve as a generic UI library (for now). It is not recommended to use it in production.
// nuxt.config.js
import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
modules: [
'@nuxt/ui'
]
})
Nuxt UI is an unbundled component library powered by UnoCSS and VueUse.
In Nuxt UI, we introduced the n
attribute for every component to customize the styles and variations. For example, to make a red button:
<NButton n="red" />
to make it larger, add the size specifier (sm
, md
, lg
or xl
) the n
attribute:
<NButton n="red xl" />
You can apply the same specifiers to any other component, for example:
<NCheckbox n="red xl" />
Apply it to parent components could make a local theme scope
<NCard n="green-500">
<!-- both of them are themed green -->
<NCheckbox>i accept the terms & conditions</NCheckbox>
<NButton>Submit</NButton>
</NCard>
Powered by UnoCSS, you can use Tailwind/Windi CSS utilities to quickly customize the look and feel of components.
It's also possible to override the default theme globally, for example:
// nuxt.config.js
import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
modules: [
'@nuxt/ui'
],
unocss: {
shortcuts: {
'n-button-base': 'border n-border-base rounded shadow-sm op80 !outline-none',
'n-button-hover': 'op100 !border-context text-context',
'n-button-active': 'n-active-base bg-context/5',
}
}
})
You can find all the default values and available entries in src/unocss/index.ts.
FAQs
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
The npm package @nuxt/ui receives a total of 21,838 weekly downloads. As such, @nuxt/ui popularity was classified as popular.
We found that @nuxt/ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.