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

@deckai/deck-ui

v0.0.13

Published

presentational ui components for deck.ai

Downloads

577

Readme

how to consume deck-ui

Install @deckai/deck-ui via npm, yarn, or bun package managers. Since this is a privately scoped package, you'll need to be added to the @deckai organization on npm, and run npm login with your npm credentials.

Note: you'll need to have both react and react-dom installed in your project to use deck-ui as they are peer dependencies. No other dependencies are required.

bun add @deckai/deck-ui

styles & fonts

Add the following to your layout.tsx file:

import type { Metadata } from "next";
import "./globals.css";
import "@deckai/deck-ui/styles/styles.css";
import localFont from "next/font/local";

const gilroy = localFont({
  src: [
    {
      path: "../../node_modules/@deckai/deck-ui/dist/fonts/Gilroy-Light.ttf",
      weight: "400",
      style: "normal"
    },
    {
      path: "../../node_modules/@deckai/deck-ui/dist/fonts/Gilroy-Regular.ttf",
      weight: "500",
      style: "normal"
    },
    {
      path: "../../node_modules/@deckai/deck-ui/dist/fonts/Gilroy-Medium.ttf",
      weight: "600",
      style: "normal"
    },
    {
      path: "../../node_modules/@deckai/deck-ui/dist/fonts/Gilroy-Bold.ttf",
      weight: "700",
      style: "normal"
    }
  ],
  variable: "--font-gilroy"
});

export default function RootLayout({
  children
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" className={`${gilroy.variable} antialiased`}>
      <body>{children}</body>
    </html>
  );
}
export const metadata: Metadata = {
  title: "Create Next App",
  description: "Generated by create next app"
};

and update your tailwind.config.ts to include the font variable and extend the deck-ui theme. this allows you to use deck-ui colors, typography, and spacing presets in your app.

import type { Config } from "tailwindcss";
import { tailwindConfig } from "@deckai/deck-ui";

export default {
  content: [
    "./src/**/*.{ts,tsx}",
    "./node_modules/@deckai/deck-ui/dist/**/*.{js,mjs}"
  ],
  presets: [tailwindConfig],
  theme: {
    extend: {
      fontFamily: {
        gilroy: ["var(--font-gilroy)"]
      }
    }
  }
} satisfies Config;
import type { Config } from "tailwindcss";

See NextJS docs for more options.

next config

Update your next.config.ts to automatically transpile the deck-ui package.

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  transpilePackages: ["@deckai/deck-ui", "@deckai/icons"]
};

export default nextConfig;

@deckai/icons is a direct dependency of @deckai/deck-ui, so no additional configuration is needed to use it in your project.

using components

next will handle all the tree shaking for you, so just import components from @deckai/deck-ui/components/<COMPONENT> directly.

import { Button } from "@deckai/deck-ui/components/Button";

Server Components Compatibility

The following components must be used within Client Components (you'll need to add the 'use client' directive to the top of any file using these components):

  • Tabs
  • Combobox
  • Any components using event handlers or React hooks

Example usage in a Client Component:

"use client";

import { Tabs } from "@deckai/deck-ui";