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

@copart/data-grid

v0.1.62-alpha.1

Published

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

Downloads

517

Readme

N.B.

Install homebrew, and ASDF for Node versioning.

  • install:asdf

  • install:asdf-node

  • asdf list all nodejs (To list all versions of Node available.)

  • asdf install to install the version of Node, mentioned in .tool-versions file.

Copart MUI Data Grid

Introduction

MUI Data Grid Pro built using React for Copart applications

Props

| Name | Type | Required | Default | Description | | ----------------------------------------- | ------------------------------------------------ | -------- | ----------- | ------------------------------------------------------------------------------------------------------ | | columnMetadata | Array | Yes | [] | Column metadata used for the data grid | | results | Array | Yes | [] | Array of results to be shown in the data grid | | rowCount | Number | Yes | 0 | Total row count value | | apiRef | { current: object } | No | {} | The ref object that allows grid manipulation. | | Can be instantiated with useGridApiRef(). | | rowHeight | Number | No | 52 | Sets the height in pixel of a row in the grid. | | checkboxSelection | Boolean | No | false | If true, the grid get a first column with a checkbox | | that allows to select rows. | | onRowClick | Function | No | () => {} | Callback fired when a row is clicked. | | disableRowSelectionOnClick | Boolean | No | false | If true, the selection on click on a row or cell is | | disabled. | | density | ('comfortable' | 'compact' | 'standard') | No | standard | Set the density of the grid. | | loading | boolean | No | false | If true, a loading overlay is displayed. | | placeholderSearchText | String | No | Search | Placeholder text for the search field | | onSearch | Function | No | () => {} | Callback fired when the value of search field changes. | | showToolbar | Boolean | No | false | If true, the toolbar on top of the grid will be shown. | | hideFooter | Boolean | No | false | If true, the footer component is hidden. | | pagination | Boolean | No | false | If true, pagination is enabled. | | pageNumber | Number | No | 0 | Page Number of the current grid data. | | pageSize | Number | No | 20 | Size of the page (Rows per page) of the current data grid. | | sortModel | Array<{ field: string, sort?: 'asc' | 'desc' }> | No | [] | Set the sort model of the grid. | | onSortColumn | Function | No | () => {} | Callback fired when a column is sorted. | | onPaginationChange | Function | No | () => {} | Callback fired when the pagination model has changed. | | footerActionsContainer | Function | No | () => <></> | Function that returns a React element for the Footer Actions container (without the pagination). | | toolbarCustomComponent | Function | No | () => {} | Function that returns a React element for the Toolbar container (without the search field and counts). | | persistSelectedResults | Boolean | No | false | If true, we will able to persist the selected results across pages and different views and also we can access the list of all the selected results. | keepNonExistentRowsSelected | Boolean | No | false | If true, the selection model will retain selected rows that do not exist This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run start
# or
yarn start
# or
pnpm start

Open http://localhost:5001 with your browser to see the result.

You can start editing the page by modifying pages/index.tsx. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.