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 🙏

© 2026 – Pkg Stats / Ryan Hefner

kollia

v0.4.3

Published

Useful and deeply editable React components for coding faster

Readme

Kollia

Deeply customizable UI Components for react.js applications.

installation

To install this library, you can run:

npm install kollia or yarn add kollia

Usage

Here's an example of basic usage:

    import React from 'react';
    import { DatePicker } from 'kollia';

    function MyApp() {
        return (
            <div>
                <DatePicker 
                    title="Avaibility" 
                    setItemLabelValue={() => "€ 500"} 
                    onSelect={value => console.log(value)} />
            </div>
        );
    }

Documentation

DatePicker

| Prop | Type | Default | Description | |-------|--------|---------|------------------------| | title | string | n/a | Title of the component | | lengend | string[] | ["Unavailable","Available"] | Lengends text | | className | string | n/a | Custom class name(s) that will be added | | onSelect | (value: {startDate: Date, endDate: Date}) => void | n/a | | setItemLabelValue | (date: Date) => string | n/a | function called to add custom label to each date (we have to return the label as a string)| | textColor | string | #1A2B48 | Color of the text in the calendar | | headerColor | string | #5E6D77 | color of the header text (day's names) | | enableColor | {borderColor: string; color: string; textColor: string} | {borderColor: #dadcdd; color: #5191FA; textColor: #fff} | color config of the enabled dates | | disableColor | {borderColor: string; color: string; textColor: string} | {borderColor: #dadcdd; color: #fff; textColor: #dadcdd} | color config of the disabled dates | | activeColor | string | #FA5636 | color of the current date | | hiddenColor | string | n/a | set color here to display date that are not in the current month | | selectedColor | {color: string; backgroundColor: string} | {color: #fff; backgroundColor: #5191FA} | colors config of the selected dates | | outerBorderColor | string | #dadcdd | border color of the calendar | | innerBorderColor | string | #dadcdd | border color of each date in the calendar | | headerBorderColor | string | #dadcdd | border color of the header bar | | innerBorderRadius | number | 5 | border radius of each date in the calendar | | outerBorderRadius | number | 5 | border width of the calendar | | innerBorderWidth | number | 1 | border width of each date in the calendar | | headerBorderWidth | number | 1 | border width of the header bar| | disabledDates | Date[] | n/a | list of date to enable or disable dependind of the value of the enableOnly props | | enableOnly | boolean | false | if true enable only the date provided in disabledDates props. All other dates will be disabled |

Carousel

Author

Djibril ISSOUFOU