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

iryx-ui

v0.26.0

Published

A Vue 3 component library built on Reka UI and Tailwind CSS v4.

Readme

iryx-ui

A Vue 3 component library built on Reka UI and Tailwind CSS v4. Accessible by default, yours to restyle.

npm version license

Documentation →

Every component arrives with keyboard navigation, focus management and ARIA already working, then hands you a class, a per-element ui, or unstyled when the defaults are not what you want.

Installation

pnpm add iryx-ui

npm install, yarn add and bun add work the same — it is one package on npm.

Vue 3

// main.ts
import { IryxUi } from 'iryx-ui'
import { createApp } from 'vue'
import App from './App.vue'

createApp(App).use(IryxUi).mount('#app')
/* main.css */
@import "tailwindcss";
@import "iryx-ui/theme.css";

Nuxt

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['iryx-ui/nuxt'],
})
/* assets/css/main.css */
@import "tailwindcss";
@import "iryx-ui/theme.css";

Components are auto-imported with the I prefix.

Usage

<template>
  <IApp appearance="system">
    <ICard>
      <IFormField label="Email" description="We'll never share it.">
        <IInput v-model="email" type="email" placeholder="[email protected]" />
      </IFormField>

      <template #footer>
        <IButton @click="save">
          Save
        </IButton>
      </template>
    </ICard>
  </IApp>
</template>

Blocks

Whole page sections — a hero, a banded section, a framed screenshot — on their own import path, so an app that never uses them never carries them:

import { createIryxUi } from 'iryx-ui'
import { marketingComponents } from 'iryx-ui/marketing'

app.use(createIryxUi({ components: marketingComponents }))

In Nuxt, the module auto-imports them once blocks is on:

export default defineNuxtConfig({
  modules: ['iryx-ui/nuxt'],
  iryxUi: { blocks: true },
})
<IHero grid heading="Invoicing that chases the money for you">
  <template #actions>
    <IButton size="lg">Start free</IButton>
  </template>
</IHero>

<ISection tone="muted" bordered heading="Everything the money side needs">
  <!-- … -->
</ISection>

Nine so far: IHero, ISection, IPricingTable, IPricingCard, IFeatureCard, ITestimonialCard, IBrowserFrame, ISiteHeader and ISiteFooter. Importing the subpath also declares them on Vue's GlobalComponents; a project that never imports it is untouched.

Three ways to take the styling back

<!-- merge with the built-in classes -->
<IButton class="rounded-full" />

<!-- reach a single slot -->
<ISelect :ui="{ content: 'w-72' }" />

<!-- keep the primitive, drop the paint -->
<IDialog unstyled />

TypeScript

The plugin registers every component under the I prefix, and the package declares them on Vue's GlobalComponents, so their props are checked in templates without an import. A project that passes a different prefix declares its own augmentation:

import type { IryxUiGlobalComponents } from 'iryx-ui'

declare module 'vue' {
  interface GlobalComponents extends IryxUiGlobalComponents {}
}

Every class prop takes the exported ClassValue — a string, or an array of strings and falsy values. Object syntax is not accepted: tailwind-merge cannot merge it, so it would lose to a built-in class rather than replace it.

Requirements

  • Vue 3.5 or newer
  • Tailwind CSS v4

Ships as ESM with full type definitions. Every component renders on the server.

Documentation

Every component and composable has its own page, with the props in full and demos you can operate:

License

MIT