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

@iankibetsh/sh-tailwind

v0.1.3

Published

Vue 3 + Tailwind CSS v4 component library for Laravel backends, built on @iankibetsh/sh-core. Forms, tables, tabs, dialogs, drawers and action components.

Downloads

641

Readme

@iankibetsh/sh-tailwind

Vue 3 + Tailwind CSS v4 component library for Laravel backends, built on @iankibetsh/sh-core. The Tailwind twin of @iankibetsh/shframework (Bootstrap): schema-driven forms, a server-driven data table with an offline cache, Tailwind-native dialogs/drawers, tabs, and confirm/silent action buttons — zero runtime dependencies beyond its peers.

Documentation

Each module has its own guide under documentation/:

| Module | What it covers | |---|---| | Getting started | Install, Tailwind @source, the plugin | | Forms | ShForm — schema, type inference, validation, wizard | | Inputs & masks | Standalone inputs, money/pattern masks, PIN | | Table | ShTable — actions, columns, offline-first cache | | Tabs | ShTabs — slot / component / router modes | | Overlays | ShDialog / ShDrawer and trigger/form helpers | | Actions | ShConfirmAction / ShSilentAction | | Theming | The three override layers + full export list |

Install

npm i @iankibetsh/sh-tailwind @iankibetsh/sh-core pinia

Peers: @iankibetsh/sh-core@^1, vue@^3.5, pinia@^3, and vue-router@^4||^5 (optional). Register the plugin, then point Tailwind at the package — full steps in Getting started.

import { ShTailwind } from '@iankibetsh/sh-tailwind'
app.use(ShTailwind, { baseApiUrl: import.meta.env.VITE_APP_API_URL, authMode: 'bearer' })

Components at a glance

A small taste of each — follow the doc link for the full API.

Forms

<ShForm action="users" :fields="['name', 'email', { name: 'amount', mask: 'money' }]" success-message="Saved!" />

Inputs & masks

<MaskedInput v-model="amount" mask="money" />
<PinInput v-model="otp" :length="6" />

Table

<ShTable
    endpoint="users"
    :columns="['name', { name: 'amount', format: 'money' }]"
    :actions="[{ label: 'Edit', handler: row => (editing = row) }]"
    searchable cache
/>

Tabs

<ShTabs v-model:tab="active" :tabs="['overview', { key: 'activity', count: 12 }]" variant="pills">
    <template #tab-overview>…</template>
    <template #tab-activity>…</template>
</ShTabs>

Overlays

<ShDialog v-model:open="open" title="Edit user" size="lg">…</ShDialog>
<ShDrawer v-model:open="side" position="end" title="Filters">…</ShDrawer>

Actions

<ShConfirmAction url="users/9/suspend" title="Suspend user?" @success="reload">Suspend</ShConfirmAction>

Coming from shframework

| shframework (Bootstrap) | sh-tailwind | |---|---| | ShAutoForm + type arrays (textAreas, phones, …) | ShForm + field objects ({ name, type }) | | placeHolders / labels / helperTexts objects | per-field placeholder / label / helper | | fillSelects | options: { url } on the field | | ShTable (Bootstrap, prop-heavy) | ShTablecolumns/actions objects + offline cache | | ShTabs + ShDynamicTabs | one ShTabs (slot / component / router modes) | | ShModal / ShModalBtn / ShModalForm | ShDialog / ShDialogBtn / ShDialogForm | | ShCanvas / ShCanvasBtn | ShDrawer / ShDrawerBtn | | shFormElementClasses injection | theme plugin option | | ShConfirmAction / ShSilentAction | same names, same events (+ legacy aliases) |

Both layer on the same @iankibetsh/sh-core, so auth, the API client, streamline and useUserStore behave identically — only the UI differs.