npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nova-design-system/nova-vue

v3.28.0

Published

Nova is a design system created by Elia Group to empower creators to efficiently build solutions that people love to use.

Readme

Nova Components Vue

Nova Components Vue provides an easy way to use Nova’s native Web Components within your Vue applications.

Key Features

  • Lightweight Integration: Leverage Nova Web Components with minimal configuration in Vue.
  • Customizable Styling: Use Tailwind’s utility classes with the Nova Tailwind theme and plugin for token-driven styling and layouts.
  • Dark Mode Ready: Toggle dark mode by adding the dark class to your body element.
  • Nova Font Pro Support: Easily integrate Nova’s custom font for a consistent design experience.

Installation

To begin, install the necessary Nova packages using your package manager:

npm install @nova-design-system/nova-webcomponents @nova-design-system/nova-base @nova-design-system/nova-vue

or

yarn add @nova-design-system/nova-webcomponents @nova-design-system/nova-base @nova-design-system/nova-vue

In some case, you might experience SSL certificate issues when working on Developers' VM. As documented in the Developers' setup guide, you need to turn off the SSL certificate verification:

npm config set strict-ssl false

Note for Yarn Users Yarn does not automatically install peer dependencies. You must install the following peer dependency manually:

yarn add @stencil/vue-output-target

Setting up Tailwind

Nova Vue requires Tailwind CSS for styling. Tailwind provides a powerful utility-first workflow and an optimized bundle size. Nova includes a dedicated Tailwind theme and plugin that map Nova’s design tokens to Tailwind’s theme and utilities, enabling consistent, token-driven styling across your app.

Tailwind Version This guide is written for Tailwind v4. While compatible with v3, some features may not work as expected.

About Tailwind and the Nova Plugin

  • What is Tailwind? A utility-first CSS framework with low-level, composable classes (flex, grid, spacing, color, typography) to rapidly build UIs.
  • Nova Tokens: Nova ships design tokens as CSS variables (via the Spark and Ocean themes) covering colors, spacing, typography, radii, shadows, and more.
  • Integration:
    • novaTailwindTheme wires Nova tokens into Tailwind’s theme scales.
    • The Nova Tailwind plugin exposes utilities and variants that reference those tokens, so your Tailwind classes resolve to Nova’s token values at runtime.
  • Why import tokens CSS? Import one token CSS file (spark.css or ocean.css) so the underlying CSS variables exist at runtime. The Tailwind utilities generated by the plugin read from these variables.
  • Do not mix with legacy utilities: When using Tailwind, do not import @nova-design-system/nova-base/dist/css/nova-utils.css to avoid redundant CSS and larger bundles.

Below is an example setup using the Vue CLI with Vite. If you're using another framework, such as Nuxt, please refer to the Tailwind Installation Guide.

1. Install Tailwind CSS and the Vite Plugin

npm install tailwindcss @tailwindcss/vite

Use the Tailwind CSS IntelliSense Extension to get full autocomplete support for Tailwind and Nova tokens.

2. Configure the Vite Plugin

Add the tailwindcss plugin to your vite.config.ts:

import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'
import tailwindcss from '@tailwindcss/vite'

// https://vite.dev/config/
export default defineConfig({
  plugins: [vue(), vueJsx(), vueDevTools(), tailwindcss()],
  resolve: {
    alias: {
      '@': fileURLToPath(new URL('./src', import.meta.url)),
    },
  },
})

3. Create tailwind.config.ts

In the root of your project, create a tailwind.config.ts file and include the Nova theme:

import type { Config } from 'tailwindcss'
import { novaTailwindTheme } from "@nova-design-system/nova-base/theme"

export default {
  theme: novaTailwindTheme,
} satisfies Config

4. Configure Tailwind and Nova Plugin in main.css

In src/assets/main.css:

@import 'tailwindcss';

@config "../../tailwind.config.ts";
@plugin "@nova-design-system/nova-base/theme/plugin";
@custom-variant dark (&:where(.dark, .dark *));

Make sure to remove any other CSS that was generated by the Vue CLI.

Dark Mode To enable dark mode, add the dark class to the <body> element.

5. Register NovaComponents and include the Nova Tokens

Register the Nova Components Vue plugin in your main.ts file, and include exactly one of the Nova tokens (Spark or Ocean) CSS files:

import './assets/main.css'
import '@nova-design-system/nova-base/dist/css/spark.css' // or ocean.css

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import { NovaComponents } from '@nova-design-system/nova-vue/plugin'

const app = createApp(App)

app.use(router)
app.use(NovaComponents)

app.mount('#app')

When using Tailwind, do not import @nova-design-system/nova-base/dist/css/nova-utils.css.

6. Use Nova Components with Tailwind Utilities

<script setup lang="ts">
import { ref } from 'vue'
import { NvButton } from '@nova-design-system/nova-vue'

const count = ref(0)
</script>

<template>
  <div class="flex items-center justify-center">
    <NvButton danger @click="count++">
      Count is {{ count }}
    </NvButton>
  </div>
</template>

Note: We have full TypeScript and IntelliSense support for Nova components. If you do not see autocomplete options, uninstall Volar/Vetur and use the Vue - Official extension only.

7. Setup the Nova Font

Follow the steps in the Nova Font Pro Integration section below.


Creating Your Own Style Components with Tailwind

If you find you’re repeating the same set of utility classes for certain UI elements (e.g., a card component), you can group them using Tailwind’s @apply keyword:

/* any css file */
.card {
  @apply bg-gray-50 dark:bg-gray-500 p-4 rounded-md shadow-sm;
}

Then in your markup, instead of:

<div class="bg-gray-50 dark:bg-gray-500 p-4 rounded-md shadow-sm">
  <!-- Content -->
</div>
<div class="bg-gray-50 dark:bg-gray-500 p-4 rounded-md shadow-sm">
  <!-- Content -->
</div>

You can use your new card class:

<div class="card">
  <!-- Content -->
</div>
<div class="card">
  <!-- Content -->
</div>

This ensures consistent styling and keeps your markup clean. Any colors or spacing used will reference the correct Nova Tokens.


Nova Font Pro Integration

[!WARNING] Nova Fonts is a protected asset and is not included in the Nova Base package. You need to include the Nova Fonts CSS file in your project. To get the Nova Fonts URL, please contact us via Teams or get the URL in the Nova Design System internal wiki.

Once you have the URL, you can integrate it using any of these methods:

Option 1: Import in Global CSS (Recommended)

In your src/assets/main.css:

@import url('contact-us-for-URL/nova-fonts-pro.css');

Option 2: HTML Integration

In your index.html:

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="contact-us-for-URL/nova-fonts-pro.css">
</head>
<body>
  <div id="app"></div>
</body>
</html>

The nova-fonts-pro.css file includes both font definitions and the font-family rule for the body, automatically applying the fonts across your Vue application.