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

@xiaoshengkai/react-tablex

v1.0.0

Published

React 高性能虚拟表格表单组件库 | 专为解决大数据渲染瓶颈而设计,提供配置化表格表单开发方案,内置数据监听体系,助力快速构建复杂业务场景

Readme

react-tablex

npm version npm downloads license stars

Features

  • 🏎️ Virtual Rendering - Renders 100,000+ rows smoothly with zero lag
  • Declarative Configuration - Build complex tables/forms via JSON-like config
  • 🔗 Reactive Data Binding - Built-in dependency tracking with watch API
  • 🎨 20+ Form Components - Input, Select, DatePicker, Cascader, etc.
  • 💎 Inline Editing - Edit cells directly in the table
  • 🔒 Async Validation - Powered by async-validator with custom rule support
  • 🎯 Flexible Layout - Row/column layouts, fixed columns, row reordering
  • 🧩 Extensible - Register custom components via custom API
  • 📱 Tree-Shakable - ES modules, optimized bundle size

Use Cases

  • Order lists, product management, data dashboards with large datasets
  • Complex form filling and data entry requiring row/column layouts
  • Forms requiring inline editing, cascading, and data validation
  • Enterprise applications like admin systems and back-office platforms

Installation

npm install react-tablex
# or
yarn add react-tablex
# or
pnpm add react-tablex

Quick Start

import React, { useState } from 'react';
import VirtualTable from 'react-tablex';

const columns = [
  {
    label: 'No.',
    fieldkey: 'index',
    width: 80,
    custom: VirtualTable.VirtualNo,
  },
  {
    label: 'Name',
    fieldkey: 'name',
    type: 'Input',
    width: 200,
    rules: [{ required: true }],
  },
  { label: 'Price', fieldkey: 'price', type: 'InputNumber', width: 150 },
  {
    label: 'Status',
    fieldkey: 'status',
    type: 'Select',
    width: 150,
    options: [
      { label: 'Active', value: 1 },
      { label: 'Inactive', value: 0 },
    ],
  },
];

export default () => (
  <VirtualTable
    columns={columns}
    value={dataSource}
    onChange={setData}
    scroll={{ y: 400 }}
  />
);

For more examples, visit the documentation site

Core Concepts

VirtualTable

Core component handling rendering and state management.

<VirtualTable
  columns={columns}
  value={dataSource}
  onChange={setData}
  scroll={{ y: 400, x: 1000 }}
  operateItems={[{ type: Operate.Add }, { type: Operate.Del }]}
/>

Column Config

Each column requires label, fieldkey, and optionally type:

const columns = [
  {
    label: 'No.',
    fieldkey: 'index',
    width: 80,
    custom: VirtualTable.VirtualNo,
  },
  {
    label: 'Input',
    fieldkey: 'Input',
    type: 'Input',
    width: 200,
    rules: [{ required: true }],
  },
];

Watch System

Declarative dependency management for reactive form linkage:

{
  label: 'Price',
  fieldkey: 'price',
  type: 'InputNumber',
  fieldShow: false,
  watch: [{
    deps: ['type'],
    handle(value, { updateSelfConfig }) {
      updateSelfConfig({ fieldShow: value });
    }
  }]
}

Documentation

Contributing

Issues and PRs are welcome!

License

MIT License