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

@mcistudio/unoui-vue

v1.2.1

Published

Vue 3 admin UI components powered by UnoCSS.

Readme

@mcistudio/unoui-vue

An UnoCSS component library for Vue 3 admin applications.

Live demo · Repository

UnoUI provides common admin components for forms, data display, selection, and feedback overlays. It supports focused component imports, TypeScript types, semantic theme tokens, and light and dark themes.

Features

  • Vue 3 Composition API with TypeScript types
  • UnoCSS utilities and Iconify icons
  • Light and dark themes controlled through data-theme
  • Focused component subpath imports
  • Compact controls for data-dense admin interfaces

Requirements

| Dependency | Version | | ---------------------- | ------------------------- | | Vue | ^3.5.0 | | Vue I18n | ^11.0.0 | | UnoCSS | ^66.7.3 | | @unocss/preset-icons | ^66.7.3 | | Node.js | ^20.19.0 or >=22.12.0 |

Installation

pnpm add @mcistudio/unoui-vue

Quick Start

Import the generated UnoCSS output and UnoUI component styles once in the application entry:

import { configureUnoUI } from '@mcistudio/unoui-vue/config'
import { createApp } from 'vue'

import App from './App.vue'

import 'virtual:uno.css'
import '@mcistudio/unoui-vue/style.css'

configureUnoUI({
  locale: 'en'
})

createApp(App).mount('#app')

Enable the UnoUI preset and scan the compiled package entries in uno.config.ts:

import { readFileSync, readdirSync } from 'node:fs'
import { createRequire } from 'node:module'
import { dirname, resolve } from 'node:path'

import { defineConfig, transformerDirectives, transformerVariantGroup } from 'unocss'
import { presetUnoUI } from '@mcistudio/unoui-vue/uno'

const require = createRequire(import.meta.url)
const unoUIPackageDirectory = dirname(require.resolve('@mcistudio/unoui-vue/package.json'))
const unoUIDistDirectory = resolve(unoUIPackageDirectory, 'dist')
const unoUIContent = readdirSync(unoUIDistDirectory, { encoding: 'utf8', recursive: true })
  .filter((file) => file.endsWith('.js'))
  .map((file) => readFileSync(resolve(unoUIDistDirectory, file), 'utf8'))
  .join('\n')

export default defineConfig({
  presets: [presetUnoUI()],
  transformers: [transformerDirectives(), transformerVariantGroup()],
  content: {
    inline: [unoUIContent],
    pipeline: {
      include: ['src/**/*.{vue,js,ts}']
    }
  }
})

Import components and types from focused subpaths:

import { Button } from '@mcistudio/unoui-vue/button'
import { Input } from '@mcistudio/unoui-vue/input'
import { Table, type TableColumn } from '@mcistudio/unoui-vue/table'

Themes

Set data-theme="dark" on the document root to enable the dark theme. The light theme is used when the attribute is absent.

Components

| Category | Components | | --------------------- | --------------------------------------------------------------------------------------------- | | Layout | Splitter, SplitterPanel | | General | Button, ButtonGroup, Tag, Badge, BadgeRibbon | | Form | Form, FormItem, Input, Autocomplete, InputTag, InputI18n, InputOtp | | Selection | Checkbox, CheckboxGroup, Radio, RadioGroup, Switch, Select | | Date and numeric | DatePicker, RangePicker, TimePicker, TimeRangePicker, Slider, ColorPicker, Rate | | Media | ImageEditor | | Data display | Table, Pagination, Progress, Skeleton, QRCode, MillerColumns | | Feedback and overlays | Alert, message, Modal, Drawer, Tooltip, Popconfirm, Dropdown | | Navigation | Tabs, TabPane |

See the live demo for complete examples, API tables, and interaction states.