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

@dbx-tools/ui-appkit

v0.3.20

Published

Shared React/Vite/Tailwind foundation for AppKit-oriented UI packages.

Readme

@dbx-tools/ui-appkit

Shared React/Vite/Tailwind foundation for AppKit-oriented UI packages.

Import this package when a React client or feature UI package needs the same Vite plugin setup and base stylesheet used by dbx-tools AppKit UI components. It centralizes React refresh, Tailwind v4, Streamdown base styles, and a shiki token paint shim for streamed markdown/code output.

Key features:

  • Shared Vite plugin factory for React and Tailwind v4.
  • Stable @dbx-tools/ui-appkit/react re-export of AppKit's React component primitives for feature packages.
  • AppKit UI stylesheet import path for host applications and feature packages.
  • Streamdown/code-block styling used by streaming chat and Markdown surfaces.
  • One place to evolve UI build assumptions for feature packages such as @dbx-tools/ui-email and @dbx-tools/ui-mastra.

Why Not Just AppKit UI?

Use @databricks/appkit-ui directly in app code when you only need AppKit's components and hooks. This package exists for dbx-tools feature packages and hosts that want one stable import path for AppKit primitives, React/Tailwind Vite setup, Streamdown/shiki styling, and Tailwind source registration.

Configure Vite

import { appkitUiVitePlugins } from "@dbx-tools/ui-appkit/vite";
import { defineConfig } from "vite";

export default defineConfig({
  plugins: appkitUiVitePlugins(),
});

vite.appkitUiVitePlugins() returns the React plugin and Tailwind v4 plugin. Using it keeps host applications and feature packages on the same Vite/Tailwind integration.

Import Styles

@import "@databricks/appkit-ui/styles.css";
@import "@dbx-tools/ui-appkit/styles.css";

The stylesheet imports Tailwind and Streamdown styles, then adds the shiki CSS variable shim used by Streamdown code-block spans. Feature UI packages should import this once and add their own @source directives for local class names.

Build Feature UI Packages

Feature packages should depend on this package instead of each owning their own Tailwind and Streamdown base setup. That gives downstream host apps one place to look for:

  • Vite plugin defaults;
  • shared markdown/code styling;
  • AppKit UI peer assumptions;
  • future shared React utilities.

Module

  • ./vite - appkitUiVitePlugins() for React + Tailwind v4 Vite projects.
  • ./react - AppKit React UI kit re-export for feature packages and hosts.
  • ./styles.css - Tailwind/Streamdown/shiki base stylesheet.

App-specific React components should live in feature UI packages that import this foundation.