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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@react-ck/data-table

v3.1.14

Published

> :warning: **WARNING**: This component library is being updated frequently and it's currently unstable due to being in it's early stages, we advice you to use only in production environments only after version **2.0.0**.

Downloads

235

Readme

React CK | Data Table Component

:warning: WARNING: This component library is being updated frequently and it's currently unstable due to being in it's early stages, we advice you to use only in production environments only after version 2.0.0.

The React Table component is a versatile element designed to efficiently display structured data in a tabular format within React applications. Unlike traditional table components, this component accepts an array of records, where each record is represented as an object with named keys and corresponding React nodes. This flexibility allows developers to easily populate tables with dynamic and diverse content without the need for complex nesting.

By accepting an Array<Record<string, React.ReactNode>> as input, developers can populate the table with data in a concise and straightforward manner. Each record in the array corresponds to a row in the table, and the keys within the records determine the columns. This streamlined approach simplifies the process of rendering data-driven tables, making it ideal for dynamic applications where the content may vary based on user input or API responses.

The React Table component provides essential features such as sorting, pagination, and search functionality out of the box, enhancing user experience and enabling seamless interaction with large datasets. Developers can also customize the appearance and behavior of the table to match the application's design language, ensuring a cohesive and visually appealing presentation.

In summary, the React Table component offers a pragmatic solution for displaying structured data in React applications. Its ability to handle an array of records with named keys and React nodes simplifies the data rendering process, making it an efficient choice for developers aiming to create responsive and interactive tables in their projects.

Installation

To integrate the this component into your React apps, you can install it using npm or yarn: npm i --save @react-ck/data-table or yarn add @react-ck/data-table.

You will also need to set up the manager, install it using npm or yarn: npm i --save @react-ck/manager or yarn add @react-ck/manager.

Wrap your app root with the theme provider and use this component:

import { Manager } from "@react-ck/manager";
import { DataTable } from "@react-ck/data-table";

const myApp = () => (
    <Manager>
        <DataTable ... />
    </Manager>
);

Check the documentation website - react-ck.js.org.