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

griddle-react-0

v0.6.6

Published

Griddle - A fast and flexible grid component for React.

Downloads

16

Readme

Stories in Ready Stories in Discussion Griddle

Take a brief look at what's coming in Griddle v1.0


Join us here ![Gitter](https://badges.gitter.im/Join Chat.svg)

Build Status


Griddle is a simple grid Component for use with React. It depends on Lodash Modules and React.

Please check out the documentation and examples.

To use Griddle:

npm install griddle-react

Or

download and reference griddle.js from the build directory (npm is preferred).


To run from source, type the following commands into a terminal:

  1. npm install -g grunt-cli if you don't have grunt.
  2. npm install
  3. grunt
  4. That's it!

Griddle is not yet version 1. There are likely some areas that will change and some issues that you may encounter. Please submit issues / pull requests for anything you run into.


###Contributing:###

Please feel free submit any bugs or suggestions as issues. If you are having problems getting up and running please post in the Gitter chat and we'll try to help out. Pull requests are welcome but if you have an idea please post as an issue first to make sure everyone is on the same-page (and to help avoid duplicate work). If you are looking to help out but don't know where to start, please take a look at approved issues that don't have anyone assigned.


###Changelog:###

0.6.0

Add columnMetadata:

  • sortDirectionCycle - (optional) an array of sort directions, specifying the order that they should cycle through as the user repeatedly clicks on the column heading. The default is [null, 'asc', 'desc']
  • multiSort - (optional) an object of columns and sort direction to allow multiple sort for selected column
{
    columnName: "state",
    order: 4,
    locked: false,
    visible: true,
    multiSort: {
      columns: ['name'],
      orders: ['asc']
    }
  },

Changed columnMetadata:

  • customCompareFn - (optional) a function comparator

Breaking changes Previous you had to write compare or compare2 to define your custom compare function, now it is only customCompareFn that based on number of arguments behaves as compare or compare2

0.5.0

  • Support React 15
  • Various bug fixes

Thanks @thangaduraicse, @Julusian, Yaohan Chen, and @Dem0n3D

0.4.0

  • Remove the underscore dependencies and implement the use of lodash-modularized
  • Support filter by column
  • Various fixes

Thanks @dlong500, Chris Main, @astraw, Tony L. Kerz, @jsdmc, @kevinhughes27, @liorbentov, @bouk, @yorchv, and everyone else who has helped with 0.4.0!

0.3.0

  • Pulling the React 0.14 update into a larger version update to prevent npm from assuming it's safe to update.

0.2.16

  • Reverted to prevent an auto-upgrade to React 0.14.

0.2.15

  • Upgrade to React 0.14 - big thanks to Sajin Shrestha (@sajinshrestha) on nearly single-handedly taking on this effort!

0.2.13

  • Numerous bug fixes, additions.
  • Additional notes will be added soon. ...

0.2.1 - 0.2.3

  • Tweaks surrounding package.json dependencies.

0.2.0

  1. Styling - Griddle now renders as a single HTML table by default. Additionally, if you don't want to use Griddle's styles they can be turned off with a property useGriddleStyles={false}. See more on styling.
  2. External Results - External data should now be passed in via props rather than a callback. The Griddle callback is still available for those that wish to use it but it's now in a separate module. More on External Data
  3. Custom Components - In addition to swapping out the column or row with a custom component, it's now possible to switch out the entire grid with a custom component. For example, the data could initially be rendered as a chart. The data that makes up the chart could be displayed by clicking on settings and unchecking the Enable Custom Formatting option. Customization docs
  4. Infinite Scrolling - Infinite scrolling can be toggled instead of the default pagination. View infinite scrolling docs
  5. New Documentation Site - The documentation site is a bit more thorough and no longer a single page. Check it out here

Breaking Changes:

  1. Updated the following properties:
  • useCustomFormat changed to useCustomRowComponent
  • useCustomPager changed to useCustomPagerComponent
  • customFormat changed to customRowComponent
  • customPager changed to customPagerComponent
  • customFormatClassName changed to customRowComponentClassName
  • allowToggleCustom to enableToggleCustom
  • customNoData changed to customNoDataComponent
  • Significantly changed getExternalResults. See the note below.
  1. The getExternalResults property and loading data from an external source has been updated quite a bit.

0.1.19:

  1. Updated some of the documentation to note forthcoming changes to ExternalResults etc.
  2. Custom cell components now have a property rowData as well as the data. See here for more info
  3. Components reference just React now instead of React/Addons.

0.1.18:

  1. Fixed a bug where initialSort property wasn't getting used
  2. Added initialSortAscending prop (defaults to true)
  3. Removed references to bootstrap
  4. Fixed an issue with filtering and external results
  5. External Results fixes/enhancements
  6. Metadata enhancements