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

@krysent/kite-ui

v1.0.1

Published

基于 Antd 的二次封装组件库

Downloads

42

Readme

@krysent/kite-ui - 三层物料体系组件库

基于 Ant Design 的二次封装组件库,采用三层物料体系架构设计。

快速开始

# 安装依赖
pnpm install

# 构建
pnpm build

# 类型检查
pnpm type-check

# 测试
pnpm test

目录结构

packages/ui/
├── src/
│   ├── atoms/          # 原子层 - Base UI 包装器
│   ├── patterns/       # 模式层 - 业务组件
│   ├── templates/      # 模板层 - 复杂模块
│   ├── hooks/          # Headless Hooks
│   ├── types/          # 类型定义
│   └── test/           # 测试配置
├── ARCHITECTURE.md      # 架构文档
└── README.md           # 本文件

使用示例

原子层组件

import { ZButton, Input, CurrencyInput, ZStatusTag } from '@krysent/kite-ui';

<ZButton type="primary">提交</ZButton>
<Input placeholder="请输入" />
<CurrencyInput value={1000} currency="¥" />
<ZStatusTag status="success" />

模式层组件

import { ZAddressSelector, ZUserSelect, ZSkuUploader } from '@krysent/kite-ui';

<ZAddressSelector onChange={(value) => console.log(value)} />
<ZUserSelect apiUrl="/api/users/search" />
<ZSkuUploader uploadUrl="/api/upload/sku" />

模板层组件

import { Table, SchemaForm } from '@krysent/kite-ui';

// Table - 高级表格
<Table
  columns={[
    { title: 'ID', dataIndex: 'id' },
    { title: '名称', dataIndex: 'name' },
  ]}
  requestOptions={{
    request: async (params) => {
      const res = await fetchUsers(params);
      return { data: res.list, total: res.total };
    },
  }}
/>

// SchemaForm - Schema 驱动表单
<SchemaForm
  schema={{
    fields: [
      { name: 'username', label: '用户名', type: 'input', required: true },
      {
        name: 'email',
        label: '邮箱',
        type: 'input',
        disabled: (values) => values.role === 'guest',
        dependencies: ['role'],
      },
    ],
  }}
  onFinish={(values) => console.log(values)}
/>

Headless Hooks

import { useTableRequest, useFormReactivity } from '@krysent/kite-ui'

// 自定义表格逻辑
const { dataSource, loading, pagination, refresh } = useTableRequest({
  request: fetchData,
})

// 表单字段联动
const { processedFields, handleValuesChange } = useFormReactivity({
  fields: schema.fields,
  form,
})

详细文档

测试

# 运行测试
pnpm test

# 测试覆盖率
pnpm test:coverage

# UI 模式
pnpm test:ui

License

MIT