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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@w.ui/wui-react

v2.1.1

Published

pro-react-admin components library

Downloads

261

Readme

@w.ui/wui-react

基于 React 19 和 Ant Design 6 的高质量组件库,提供 300+ 可复用的业务组件。

✨ 特性

  • 🚀 基于 React 19Ant Design 6 构建
  • 📦 开箱即用的高质量 React 组件
  • 🛡 使用 TypeScript 开发,提供完整的类型定义
  • 🎨 支持主题定制和暗黑模式
  • 📱 响应式设计,完美适配移动端
  • 🌐 国际化支持

📦 安装

npm install @w.ui/wui-react
# 或
yarn add @w.ui/wui-react
# 或
pnpm add @w.ui/wui-react

🔨 使用

import React from 'react';
import { DescBox, RadioInput, Exception } from '@w.ui/wui-react';
import '@w.ui/wui-react/style.css';

const App = () => {
  return (
    <div>
      <DescBox title="示例标题" description="这是一个描述框组件" />
      <RadioInput 
        options={[
          { label: '选项1', value: '1' },
          { label: '选项2', value: '2' }
        ]}
        onChange={(value) => console.log(value)}
      />
    </div>
  );
};

export default App;

📚 组件列表

本库包含 100+ 组件,包括但不限于:

核心组件

  • ErrorBoundary - 错误边界
  • WatermarkProvider - 水印
  • KeepAlive - 页面缓存
  • ResponsiveTable - 响应式表格
  • GlobalSearch - 全局搜索

UI 组件

  • AdvancedCodeBlock - 高级代码块
  • AnimatedList - 动画列表
  • BackgroundBeams - 背景光束效果
  • BorderBeam - 边框动画
  • ColorfulText - 彩色文字
  • DescBox - 描述框
  • RadioInput - 单选/多选输入

动画组件

  • AnimateOnScreen - 进入视口动画
  • AnimateRipple - 波纹动画
  • BlurFade - 模糊渐显
  • ScrollAnimation - 滚动动画
  • TypeWriter - 打字机效果

完整组件列表请访问 在线文档

🔗 依赖

Peer Dependencies

{
  "react": ">=19.0.0",
  "react-dom": ">=19.0.0",
  "antd": ">=6.0.0"
}

确保你的项目中已安装这些依赖。

🌍 浏览器支持

  • 现代浏览器
  • Chrome >= 90
  • Firefox >= 88
  • Safari >= 14
  • Edge >= 90

📖 文档

🤝 贡献

欢迎提交 Issue 和 Pull Request!

详见 贡献指南

📄 License

MIT © wkylin

👨‍💻 作者

wkylin

⭐️ Star History

如果这个项目对你有帮助,请给一个 ⭐️ 支持一下!