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

pouncejs

v0.140.0

Published

A collection of UI components from Panther labs

Downloads

1,368

Readme

Pounce

🐯A Set of Composable React Primitives for Building UI Dashboards

CircleCI

Description

This project contains common UI components for building dashboards written in TypeScript. It's currently used by Panther

Docs

Documentation is available on http://pouncejs.surge.sh/.

Installation

Pounce heavily depends on Typescript and thus has a limitation of Typescript 3.8.x. Please make sure that your project doesn't use an older version of Typescript.

$ npm install pouncejs

Usage

Quick Start

  1. To start, wrap your app with the ThemeProvider components:
import { ThemeProvider } from 'pouncejs';

const App = () => (
    <ThemeProvider>
       <Router>
         ...
       </Router
    </ThemeProvider>
)
  1. Install DM Sans:
<link
  rel="stylesheet"
  href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"
/>
  1. Then you are ready to go!
import { Box, Button } from 'pouncejs';

Advanced

To use the library you'll need to wrap your app with the <ThemeProvider> so that your components can have access to the theme. By default <ThemeProvider> utilises the default Theme that Pounce exposes, but you can easily override that by passing a theme prop to it.

This can be done like so:

import { ThemeProvider } from 'pouncejs';
import theme from '../my/theme.js';

const App = () => (
    <ThemeProvider theme={theme}>
       <Router>
         ...
       </Router
    </ThemeProvider>
)

Make sure to wrap your entire app with a <ThemeProvider> to avoid un-necessary reconciliations and to gain in performance.

The next step would be to make sure you have your selected font-family installed. By default, Pounce uses DM Sans as it fits the default theme the best. If you are using the default theme, make sure you install DM Sans in your prefered way. The easiest of them all is by adding a link tag in your html:

<link
  rel="stylesheet"
  href="https://fonts.googleapis.com/css2?family=DM+Sans:400,500,700&display=swap"
/>

If you want to use another font-family, simply install it and make sure to mimic this change in the theme that you will provide to <ThemeProvider />. The change that you need to make is in the fonts.primary key of the theme. For example:

import { defaultTheme } from 'pouncejs';

export const myTheme = {
  ...defaultTheme,
  fonts: {
    ...defaultTheme.fonts,
    primary: 'Lato, sans-serif',
  },
};

This way you can keep all the defaults and only change the font-family exposed. You can also add keys to the theme if you want to have a centralised theme configuration that can also be used outside the context of pounce:

import { defaultTheme } from 'pouncejs';

export const myTheme = {
  ...defaultTheme,
  fonts: {
    ...defaultTheme.fonts,
    secondary: 'Inconsolata, monospace',
  },
};

By default, pounce ships with dashboard-related icons, but you may add new ones by extending the icons keyy of the theme. For example, if you want to add a new icon named my-icon you would override the theme and pass it again to the <ThemeProvider> component.

import { theme as defaultTheme } from 'pouncejs';

const myIcons = {
  'my-icon': {
    path: (
      <g id="collapse-table" stroke="none" fill="none">
        <rect x="0" y="0" width="24" height="24" />
      </g>
    ),
    viewBox: '0 0 24 24', // can be omitted if viewBox is `0 0 24 24` which is the default value
  },
};

const theme = {
  ...defaultTheme,
  icons: {
    ...defaultTheme.icons,
    ...myIcons,
  },
};

For typescript users, the new icons won't be available by default in the typings. To make them available, you need to create a declaration file anywhere in your project and extend the CustomIcons interface. For example:

// src/overrides.d.ts

import 'pouncejs';
import { myIcons } from '../myTheme'; // customIcons are declare in the snippet aoove

declare module 'pouncejs' {
  type MyIcons = typeof myIcons;
  export interface CustomIcons extends MyIcons {}
}

This way the my-icon value will be available in all Components that use icons.

SSR

SSR works out of the box with PounceJS. There's no need to add anything in your NextJS or custom-SSR app to enable it.

Performance

Pounce is on its beta phase right now, which means that the performance is constantly getting tuned.

If bundle size is something super crucial, you can safely import each module individually by doing import Box from 'pouncejs/dist/esm/components/Box' instead of the typical import { Box } from 'pouncejs' which will make sure to only pull what's needed for this particular component.

As it stands, it utilizes the latest @emotion/xxx @ 11.x.x internally, so if you are using a CSS-in-JS library in your project, it would be recommended to utilize the same library at a similar major version in order to not have two separate versions of a CSS-in-JS library in your project

License

Apache