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

react-input-styles-library

v0.0.4

Published

## 1. 项目概述

Readme

React 输入框样式封装组件库概述

1. 项目概述

本项目旨在封装多种风格的 React 输入框组件,开发者无需重复编写样式与组件逻辑,只需通过 npm install 即可快速引入并使用不同样式的输入框。组件整体设计以简单、可扩展、样式可插拔为核心目标。使用者可以根据项目需求选择不同风格的输入框样式,或在项目中自定义拓展更多样式。

组件库采用 TypeScript + React 开发,并支持现代前端构建工具(Vite、Webpack、Next.js 等)无缝集成。


2. 目录结构 / 所有样式封装

所有输入框的不同样式均存放在统一的 src/page 目录中,每个样式为独立文件夹,便于维护和版本迭代。


3. API 接口(使用者可通过 props 传入参数)

所有样式组件均遵循统一的 props 规范,保证所有输入框组件可替换使用。

统一 API 设计(示例)

interface InputProps {
  value?: string;
  onChange?: (value: string) => void;
  placeholder?: string;
  disabled?: boolean;
  status?: 'default' | 'error' | 'success';
  prefixIcon?: ReactNode;
  suffixIcon?: ReactNode;
  className?: string;          // 自定义 class
  style?: React.CSSProperties; // 行内样式
}

使用方式示例

import { Page1Input, Page2Input } from 'react-input-styles';

function App() {
  return (
    <>
      <Page1Input placeholder="请输入用户名" />
      <Page2Input status="error" />
    </>
  );
}

5. 如何运行

1. 安装依赖

npm install react-input-styles


### **6. 在项目中使用**

```tsx
import { Page1Input } from 'react-input-styles';

function Demo() {
  return <Page1Input placeholder="输入点什么" />;
}