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

@cocoar/vue-ui

v3.1.0

Published

Cocoar Design System — a touch-first Vue 3 component library with 30+ accessible, themeable components

Readme

@cocoar/vue-ui

Cocoar Design System — a touch-first Vue 3 component library with 30+ accessible, themeable components.

Install

pnpm add @cocoar/vue-ui

Quick Start

import '@cocoar/vue-ui/fonts';
import '@cocoar/vue-ui/styles';
import { CoarButton } from '@cocoar/vue-ui';

Scoped application themes

CoarThemeScope applies one host-owned theme to a subtree without changing the surrounding application. Supply stable brand primitives; Cocoar derives the normal light/dark primitive and semantic token graph from them. Geometry and font values are shared by both modes. Teleported Cocoar overlays opened inside the scope inherit the same theme automatically.

<script setup lang="ts">
import { CoarThemeScope, type CoarTheme } from '@cocoar/vue-ui';

const customerTheme: CoarTheme = {
  accent: '#10b981',
  error: '#e5484d',
  buttonRadius: 999,
  inputRadius: 14,
  cardRadius: 20,
  bodyFontFamily: 'Inter, sans-serif',
};
</script>

<template>
  <CoarThemeScope :theme="customerTheme" mode="auto">
    <CustomerApplication />
  </CoarThemeScope>
</template>

mode is 'light', 'dark', or 'auto'. Auto follows the nearest .light-mode / .dark-mode (or data-theme) ancestor and otherwise the OS preference. The scope is generic: it has no knowledge of tenants, OAuth clients, the PageBuilder, or how the host resolved the theme.

Documentation

Full documentation, live demos, and API reference: docs.cocoar.dev/cocoar-ui-vue

License

Apache-2.0