Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@nuxt/devtools-ui-kit
Advanced tools
Warning: This library is heavily working in progress. Breaking changes may not follow semver. Pin the version if used.
UI kit for module authors to build embedded views for Nuxt Devtools.
npm i @nuxt/devtools-ui-kit
export default defineNuxtConfig({
modules: [
'@nuxt/devtools-ui-kit'
]
})
@nuxt/devtools-ui-kit
is an unbundled component library powered by UnoCSS and VueUse.
In this library, 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
export default defineNuxtConfig({
modules: [
'@nuxt/devtools-ui-kit'
],
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
Unknown package
The npm package @nuxt/devtools-ui-kit receives a total of 30,503 weekly downloads. As such, @nuxt/devtools-ui-kit popularity was classified as popular.
We found that @nuxt/devtools-ui-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.