Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

virtual-table-ant-design

suminhohu937ISC1.0.8TypeScript support: included

The virtual table based on `ant-design@4.x` is simple and easy to use, without changing the original table component

ant-design, antd-table, virtual-table

readme

virtual-table-ant-design

The virtual table based on `ant-design@4.x` is simple and easy to use, without changing the original table component.

Since peerDependencies are used, please make sure to use reac and antd in your project, see package.json for details.

The project was packaged by rollup, exported CommonJS and ESModule modules, and used prettier to beautify the code.

Try it out: https://codesandbox.io/s/awesome-virtual-table-wxqc9

Install

npm install -D virtual-table-ant-design

Usage

import { VList } from 'virtual-table-ant-design'
import { Table } from 'antd'

<Table
  rowSelection={rowSelection}
  pagination={false}
  rowKey="id"
  dataSource={dataSource}
  columns={columns}
  loading={loading}
  scroll={{ y: '50vh', x: true }}
  components={VList({
    height: 500,
  })}
/>

Document