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

@techui/extended

v0.1.6

Published

TechUI Extended Components

Readme

@techui/extended

English | 中文


English

TechUI Extended Components.

@techui/extended is used for TechUI-adapted extension capabilities that live outside the four main component libraries. It is suitable for component families with larger size, independent dependencies, different release rhythm, or more specialized product scenarios.

This README describes extension groups only. It does not maintain a detailed child-component list, so grouped components can continue to iterate without requiring README updates for every internal addition.

Groups

  • datePicker: Date, time, and range selection capabilities. This group wraps a third-party date-picker runtime with TechUI styling, locale, overlay, and theme adaptation.
  • dataUnit: Data display units for dashboards, metric summaries, field information, file / row items, and status summaries. This group extracts high-frequency data-presentation patterns from visualization projects.
  • miniChart: Lightweight visual units for compact data expression. This group carries compact chart capabilities extracted from the main libraries for progress, trend, status, and small visualization scenarios.
  • elementMod: TechUI-native rewrites of selected Element Plus component behaviors for pagination, color selection, and upload workflows.

Usage

import TechUIX from "@techui/extended";

app.use(TechUIX);
import DatePicker from "@techui/extended/datePicker";

app.use(DatePicker);
import DataUnit from "@techui/extended/dataUnit";
import "@techui/extended/dataUnit/style.css";

app.use(DataUnit);
import MiniChart from "@techui/extended/miniChart";
import "@techui/extended/miniChart/style.css";

app.use(MiniChart);
import TuiElementMod from "@techui/extended/elementMod";

app.use(TuiElementMod);

中文

TechUI 扩展组件库。

@techui/extended 用于承载 TechUI 四个主组件库之外的扩展能力。它适合放置体积更大、依赖更独立、发布节奏不同,或更偏专项产品场景的组件分组。

本 README 只描述扩展分组,不维护具体子组件清单,避免分组内部组件频繁迭代时重复修改 README。

分组

  • datePicker:日期、时间和区间选择能力。该分组以第三方日期选择器为运行内核,并提供 TechUI 风格、语言、弹层和主题适配。
  • dataUnit:面向数据看板、指标摘要、字段信息、文件/行项目和状态摘要等场景的数据展示单元。该分组用于沉淀可视化项目中高频出现的数据呈现结构。
  • miniChart:面向紧凑数据表达的轻量图形分组。该分组承接从主库抽离出的紧凑图表能力,用于进度、趋势、状态和小型可视化场景。

使用

import TechUIX from "@techui/extended";

app.use(TechUIX);
import DatePicker from "@techui/extended/datePicker";

app.use(DatePicker);
import DataUnit from "@techui/extended/dataUnit";
import "@techui/extended/dataUnit/style.css";

app.use(DataUnit);
import MiniChart from "@techui/extended/miniChart";
import "@techui/extended/miniChart/style.css";

app.use(MiniChart);