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

cancado-do-basico-ui

v0.1.10

Published

A modern React UI component library for dashboard applications

Downloads

341

Readme

cancado-do-basico-ui

A React component library built for dashboard applications. Zero runtime dependencies beyond React. Designed around Apple's iOS 26 Liquid Glass aesthetic — translucent surfaces, spring animations, and a consistent dark/light token system.

npm version npm downloads license


Installation

npm install cancado-do-basico-ui
# or
pnpm add cancado-do-basico-ui

Import the stylesheet once at the root of your app:

import 'cancado-do-basico-ui/styles'

Quick start

Wrap your app with the context providers:

import { ThemeProvider, ToastProvider } from 'cancado-do-basico-ui'
import 'cancado-do-basico-ui/styles'

export default function App() {
  return (
    <ThemeProvider>
      <ToastProvider>
        <YourApp />
      </ToastProvider>
    </ThemeProvider>
  )
}

Both providers are optional — only include them if you use ThemeToggle/useTheme or useToast.


Design tokens

All styles use CSS custom properties from dist/style.css. They switch automatically between light and dark when data-theme is set on <html> (handled by ThemeProvider).

.my-card {
  background: var(--bg-elevated);
  color: var(--label-primary);
  border: 1px solid var(--separator);
}

| Token | Purpose | |-------|---------| | --bg-primary · --bg-secondary · --bg-tertiary · --bg-elevated | Surface backgrounds | | --label-primary · --label-secondary · --label-tertiary | Text colors | | --separator · --separator-opaque | Dividers | | --color-blue · --color-red · --color-green · --color-orange | System colors | | --color-error · --color-success · --color-link | Semantic aliases |


Development

pnpm install

pnpm dev            # watch build — rebuilds dist/ on every change
pnpm storybook      # component playground at localhost:6006
pnpm typecheck      # tsc --noEmit

To develop against a local app, link the package:

# in your consuming app
pnpm link /path/to/cancado-do-basico-ui

Contributing

Pull requests are welcome. For significant changes, open an issue first to discuss what you'd like to change.


License

MIT