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-eco-ui-kit

v1.0.4

Published

Set of presentational ReactJS components.

Downloads

7

Readme

React-eco-ui-kit

Build Status codecov npm

Usage:
import EcoUiKit from 'react-eco-ui-kit';

const { utils, consts, components } = EcoUiKit;
const { Paginator } = components;

//or
import { components, utils, consts } from 'react-eco-ui-kit';

const { Picker } = components;

//or
import { Paginator, Input, Picker } from 'react-eco-ui-kit';

Components:

  • Paginator

Alt Text

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | amount | number.isRequered | --- | All items | valuePerPage | number | 10 | Items per one page | amountPickersToShow | number | 4 | Pickers to show in the Paginator | onPickerChange | func | noop | function to trigger after picker change | initIndex | number | 1 | start picked index | className | string | EMPTY | class name for the Paginator wrapper | customPickerComponent | React.Component | Picker | Picker component | pickerClassName | string | EMPTY | provided class name for the Picker component | enableDelimeter | bool | true | Flag to toggle delimeter visibility | customDelimeterComponent | React.Component | Delimeter | Delimeter component | delimeterValue | string | ... | Delimeter value to show | delimeterClassName | string | EMPTY | provided class name for the Delimeter component | enableLabels | bool | true | Flag to toggle labels visibility | customLabelComponent | React.Component | Label | Label Component | firstLabel | string | First | Value for first label | lastLabel | string | Last | Value for last label | labelClassName | strings | EMPTY | provided class name for the Label component | enableControls | bool | true | Flag to toggle controls visibility | customControlComponent | React.Component | Control | Control component | controlUp | any | > | Value for control up | controlDown | any | < | Value for control down | controlClassName | string | EMPTY | provided class name for the Control component | enableInputControl | bool | true | Flag to toggle input visibility | customInputComponent | React.Component | Input | Input component | inputControlValidator | func | --- | function to validate input values. Will trigger on each change. | inputClassName | string | EMPTY | provided class name for the Input component

Usage:
const renderPaginator = (amount) => (<Paginator amount={amount} />);
const myData = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] //your data

renderPaginator(myData.length);
  • Delimeter

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | className | string | EMPTY | provided class name for the Delimeter component | value | any | ... | Delimeter value to show

Usage:
const renderDelimeter = (props) => (<Delimeter {...props} />);

renderDelimeter({ value: '---', className: 'myDelimeter' });
  • Control

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | className | string | EMPTY | provided class name for the Control component | value | any | def | Control value to show | disabled | bool | false | Flag to toggle availability of the Control | onClick | func | noop | click handler

Usage:
const renderControl = (props) => (<Control {...props} />);

renderControl({ value: '->', className: 'myControl' });
  • Label

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | className | string | EMPTY | provided class name for the Label component | value | any | def | Label value to show | disabled | bool | false | Flag to toggle availability of the Label | onClick | func | noop | click handler

Usage:
const renderLabel = (props) => (<Label {...props} />);

renderLabel({ value: 'FIRST', className: 'myLabel' });
  • Picker

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | className | string | EMPTY | provided class name for the Picker component | value | any | def | Picker value to show | disabled | bool | false | Flag to toggle availability of the Picker | picked | bool | false | Flag to toggle picked state of the Picker | onClick | func | noop | click handler

Usage:
const renderPicker = (props) => (<Picker {...props} />);

renderPicker({ value: '22', className: 'myPicker' });
  • Input

| Name | Type | Default | Description | |:-------------:|:-------------:|:-----:|:------------:| | className | string | EMPTY | provided class name for the Input component | value | string | def | Input value to show | validator | func | identity | function to validate input values. Will trigger on each change. | onChange | func | noop | change handler

Usage:
const renderInput = (props) => (<Input {...props} />);

renderInput({ value: '22', className: 'myInput' });