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

@tmptech/ui

v1.1.9

Published

TmpTech UI Component Library for React on Frappe Framework

Readme

TmpTech UI

A modern React UI component library built for the Frappe Framework, inspired by frappe-ui and based on frappe-ui-react.

Features

  • 📦 50+ React Components - Comprehensive UI component library
  • 🎨 TailwindCSS Powered - Utility-first CSS styling
  • 📖 Storybook Documentation - Interactive component documentation
  • 🔧 TypeScript Support - Full type safety and IDE support
  • 🚀 Vite Build System - Fast and optimized builds
  • 🎯 Frappe Framework Ready - Built specifically for Frappe integration

Installation

npm install @tmptech/ui
# or
yarn add @tmptech/ui
# or
pnpm add @tmptech/ui

Quick Start

import { Button, Card, Input } from '@tmptech/ui';
import '@tmptech/ui/css';

export default function App() {
  return (
    <Card>
      <Input label="Name" placeholder="Enter your name" />
      <Button variant="primary">Submit</Button>
    </Card>
  );
}

Available Components

Form Components

  • Input - Text input field
  • Select - Dropdown select
  • Textarea - Multi-line text input
  • Checkbox - Checkbox control
  • Switch - Toggle switch
  • DatePicker - Date selection
  • FileUploader - File upload

Display Components

  • Button - Action button
  • Card - Container component
  • Badge - Status badge
  • Alert - Alert message
  • Avatar - User avatar
  • Breadcrumbs - Navigation breadcrumbs
  • Divider - Divider line
  • Typography - Text components

Interactive Components

  • Dropdown - Dropdown menu
  • Modal - Modal dialog
  • Dialog - Dialog box
  • Tooltip - Tooltip popover
  • Popover - Popover component
  • Tabs - Tab navigation
  • Toast - Toast notification

Feedback Components

  • Spinner - Loading spinner
  • Progress - Progress bar
  • Toast - Toast notifications

Development

Setup

npm install

Development Server

npm run dev

Storybook

npm run storybook

Build

npm run build

Type Check

npm run type-check

Lint

npm run lint

Project Structure

tmptech-ui/
├── src/
│   ├── components/        # React components
│   ├── icons/             # Icon components
│   ├── utils/             # Utility functions
│   ├── @types/            # TypeScript type definitions
│   ├── style.css          # Global styles
│   └── index.ts           # Main export file
├── .storybook/            # Storybook configuration
├── public/                # Static assets
├── vite.config.ts         # Vite configuration
├── tailwind.config.js     # TailwindCSS configuration
└── package.json

Integration with Frappe

To use tmptech-ui in your Frappe application:

  1. Install the package in your Frappe app:
npm install @tmptech/ui
  1. Import the library and styles in your main React component:
import { Button, Card } from '@tmptech/ui';
import '@tmptech/ui/css';
  1. Use components in your Frappe DocType forms or pages.

Contributing

See CONTRIBUTING.md for guidelines on how to contribute.

License

MIT

Support

For issues and feature requests, please open an issue on GitHub.