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

react-table-procoor

v2.14.25

Published

React Table Customized Grid

Readme

1- This branch requires Node.js version 20 or higher.

2- When loading CSS files inside the StyleLoader component, a timestamp check is used to avoid loading cached versions. Verify the latest file by checking its last modified date in the Network In Header tab.

3- A Custom Filter system was added, separate from React Table's default filters. It is implemented in the filterTypes function and supports three data types:

  • text
  • number
  • date Date filtering is handled in ProcoorGrid.jsx using checkDateIsBetween inside the DateFilter function.

4- You can now specify which columns are filterable by adding: filterable: true,

5- For all column types, filter keys must align with filterTypes:

  • number → default: "columnFilter"
  • date → "dateFilter" Add Directly
  • text → must include: filterType: "custom" delete columns from LocalStorage and reload to show updata --shape object type number { "accessor": "arrange", "Header": "levelNo", "pinned": true, "minWidth": 80, "width": 80, "type": "number", "filterable": true, // must add this to column for show input for filter "filter": "columnFilter" // default show depend on type if number - you don't need add in columns it add automatic } --shape object column type data { "accessor": "creationDate", "Header": "creationDate", "pinned": true, "minWidth": 80, "width": 80, "type": "date", "filterable": true, // must add this to column for show input for filter "filter": "dateFilter" // default show depend on type if data - you don't need add in columns it add automatic } --shape object column type text { "accessor": "actionBy", "Header": "actionByContact", "minWidth": 200, "width": 200, "type": "text", "isClient": true, "hidden": false, "filterable": true, // must add this to column for show input for filter "filterType": "custom", // must add FiterType value custom to show ("filter": "customTextFilter") "filter": "customTextFilter", // show when add filtertype if not add not show - depend on type if text - you don't need add in columns it add automatic "pinned": false } delete columns from LocalStorage and reload to show updata 6- Added an Export component to allow downloading table data as an Excel file.

7- There is no need to manually add gridActions for export; the default export action is already included.

  • If you want to add your own export action or additional actions, the action key must start with 1.
  • If you add a custom export action, the export title must start with a capital letter export; otherwise, both the default and your custom export will appear.
  • You can add another export any action in gridActions

8- You can toggle export visibility using: ExportAvailable={true or false} in ProcoorGrid Components You can also specify the exported file name using: FileNameExport={YourName} in ProcoorGrid Components If not provided, the default name will be the gridKey. <ProcoorGrid gridFieldKey="id" gridKey={pr-grid-custom} FileNameExport="Your Name File " ExportAvailable={true if want show action false if not} />

9- A LoadingScreen was added and will display while CSS files are being loaded.