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

@designbasekorea/ui-wc

v0.2.0

Published

Designbase Web Components — Vue, Angular, React, vanilla HTML 공통 UI

Downloads

681

Readme

@designbasekorea/ui-wc

Designbase Web Components — Vue 3, Angular, React, vanilla HTML에서 공통으로 사용하는 웹 컴포넌트 원본입니다.

React 사용자는 @designbasekorea/ui-wc/reactButton, Input, Tabs wrapper를 사용할 수 있습니다. vanilla/Vue/Angular는 <db-button> 같은 Custom Elements를 직접 사용할 수 있습니다. 기존 @designbasekorea/ui React 패키지는 별도 레거시/완성형 패키지로 유지합니다.

설치

npm install @designbasekorea/ui-wc @designbasekorea/tokens @designbasekorea/theme

사용법

import '@designbasekorea/tokens/dist/css/tokens.css';
import '@designbasekorea/theme/dist/css/theme.css';
import '@designbasekorea/ui-wc/dist/index.css';
import '@designbasekorea/ui-wc';
<db-button variant="primary">저장</db-button>
<db-input label="이메일" placeholder="[email protected]"></db-input>
<db-tabs labels="홈,탐색,알림" active-index="0"></db-tabs>

React wrapper

import '@designbasekorea/tokens/dist/css/tokens.css';
import '@designbasekorea/theme/dist/css/theme.css';
import '@designbasekorea/ui-wc/dist/index.css';
import { Button } from '@designbasekorea/ui-wc/react';

<Button variant="primary" onPress={() => save()}>
    저장
</Button>

컴포넌트 (11개)

| 태그 | 설명 | |------|------| | db-button | 버튼 | | db-input | 텍스트 입력 | | db-checkbox | 체크박스 | | db-toggle | 토글 | | db-badge | 뱃지 | | db-spinner | 로딩 스피너 | | db-card | 카드 | | db-tabs | 탭 | | db-modal | 모달 (<dialog>) | | db-dropdown | 드롭다운 | | db-tooltip | 툴팁 |

이벤트

커스텀 이벤트는 db- 접두사를 사용합니다.

  • db-click — Button
  • db-input — Input (detail.value)
  • db-change — Checkbox, Toggle, Tabs, Dropdown
  • db-close — Modal

스타일

Light DOM + 글로벌 --db-* CSS 변수. 자세한 내용은 docs/STYLING.md.

프레임워크별 가이드

Storybook

npm run storybook

포트: 6007