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

@bigtablet/design-system

v1.18.4

Published

Bigtablet Design System UI Components

Readme

Bigtablet Design System

npm version License Test Coverage

Bigtablet의 공식 디자인 시스템으로, Foundation(디자인 토큰)과 Components(UI 컴포넌트)로 구성된 통합 UI 라이브러리입니다.

GitHub · NPM · Storybook


주요 특징

  • React 19 지원 - 최신 React 버전 완벽 지원
  • TypeScript - 완전한 타입 안정성
  • Pure React / Next.js - 프레임워크별 최적화된 번들 제공
  • Vanilla JS - Thymeleaf, JSP 등 서버 템플릿 지원
  • 디자인 토큰 - 일관된 색상, 타이포그래피, 간격 시스템
  • 접근성(a11y) - 키보드 네비게이션, 스크린 리더 호환
  • 86% 테스트 커버리지 - 안정적인 컴포넌트 품질

설치

# npm
npm install @bigtablet/design-system

# yarn
yarn add @bigtablet/design-system

# pnpm
pnpm add @bigtablet/design-system

Peer Dependencies

npm install react react-dom lucide-react react-toastify

빠른 시작

Pure React

import { Button, TextField } from '@bigtablet/design-system';
import '@bigtablet/design-system/style.css';

function App() {
  return (
    <div>
      <TextField label="이메일" placeholder="[email protected]" />
      <Button variant="primary">제출</Button>
    </div>
  );
}

Next.js

import { Sidebar, Button } from '@bigtablet/design-system/next';
import '@bigtablet/design-system/style.css';

export default function Layout({ children }) {
  return (
    <div>
      <Sidebar items={[{ label: '홈', href: '/' }]} />
      <main>{children}</main>
    </div>
  );
}

Vanilla JS (HTML/CSS/JS)

<link rel="stylesheet" href="https://unpkg.com/@bigtablet/design-system/dist/vanilla/bigtablet.min.css">
<script src="https://unpkg.com/@bigtablet/design-system/dist/vanilla/bigtablet.min.js"></script>

<button class="bt-button bt-button--md bt-button--primary">버튼</button>

컴포넌트

| Category | Components | |----------|------------| | General | Button, Select | | Form | TextField, Checkbox, Radio, Switch, DatePicker, FileInput | | Feedback | Alert, Toast, Spinner, TopLoading | | Navigation | Pagination, Sidebar | | Overlay | Modal | | Display | Card |

👉 전체 컴포넌트 문서


문서

| 문서 | 설명 | |------|------| | Components | 컴포넌트 API 및 사용법 | | Vanilla JS | HTML/CSS/JS 환경 가이드 | | Architecture | 프로젝트 구조 및 아키텍처 | | Contributing | 기여 가이드라인 | | Testing | 테스트 작성 가이드 |


개발

pnpm install       # 의존성 설치
pnpm storybook     # Storybook 실행 (port 6006)
pnpm build         # 라이브러리 빌드
pnpm test          # 테스트 실행

👉 개발 환경 설정


라이센스

Bigtablet License


링크