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

@react-ratel/core

v0.0.15

Published

React full library

Readme

react-ratel

React components library (datepicker, tooltip, popover, select...). Just wrappers around some famous libraries.

Install

yarn add react-ratel

Usage

import React, { Component } from "react";
import ThemeProvider from "@react-ratel/core/ThemeProvider";
import DefaultTheme from "@react-ratel/core/Theme/DefaultTheme";
// style
import Reset from "@react-ratel/core/Reset";
import GlobalStyle from "@react-ratel/core/GlobalStyle";
// buttons
import Button from "@react-ratel/core/Button";
import DropdownButton from "@react-ratel/core/DropdownButton";
import RoundButton from "@react-ratel/core/RoundButton";
import StackedButton from "@react-ratel/core/StackedButton";
// zones
import Box from "@react-ratel/core/Box";
import BackgroundBox from "@react-ratel/core/BackgroundBox";
import UploadBox from "@react-ratel/core/UploadBox";
import Divider from "@react-ratel/core/Divider";
// fonts
import A from "@react-ratel/core/A";
import H1 from "@react-ratel/core/H1";
import H2 from "@react-ratel/core/H2";
import H4 from "@react-ratel/core/H4";
import P from "@react-ratel/core/P";
import Text from "@react-ratel/core/Text";
// spacing
import Padding from "@react-ratel/core/Padding";
import Margin from "@react-ratel/core/Margin";
// overlay
import Overlay from "@react-ratel/core/Overlay";
// icons
import Icon from "@react-ratel/core/Icon";
// layout
import Row from "@react-ratel/core/Row";
import Col from "@react-ratel/core/Col";
import Div from "@react-ratel/core/Div";
// tooltip
import Tooltip from "@react-ratel/core/Tooltip";
// form
import Input from "@react-ratel/core/Input";
import Label from "@react-ratel/core/Label";
import Textarea from "@react-ratel/core/Textarea";
import Select from "@react-ratel/core/Select";
import VirtualizedSelect from "@react-ratel/core/VirtualizedSelect";
import DatePicker from "@react-ratel/core/DatePicker";
import Switch from "@react-ratel/core/Switch";
// modal
import Modal from "@react-ratel/core/Modal";
// list
import List from "@react-ratel/core/List";
import ListItem from "@react-ratel/core/List/ListItem";
// loader
import Loader from "@react-ratel/core/Loader";
// card
import Card from "@react-ratel/core/Card";
// image
import BackgroundImage from "@react-ratel/core/BackgroundImage";
// alert
import Alert from "@react-ratel/core/Alert";
// tag
import Tag from "@react-ratel/core/Tag";
// toast
import Toast from "@react-ratel/core/Toast";
// progress
import Progress from "@react-ratel/core/Progress";
// Stats
import Gauge from "@react-ratel/core/Gauge";

function Example() {
  return (
    <>
      <Reset />
      <ThemeProvider theme={DefaultTheme}>
        <>
          <GlobalStyle />
          {/* Your app */}
        </>
      </ThemeProvider>
    </>
  );
}