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

@vuepkg/ui

v0.2.0

Published

Headless-friendly Vue 3 UI primitives for @vuepkg

Downloads

63

Readme

@vuepkg/ui

Headless-friendly Vue 3 UI primitives for the @vuepkg ecosystem.

@vuepkg/calendar의 내부 구현(네비게이션 버튼 등)에서 추출한 범용 컴포넌트입니다. CSS 변수(--vp-button-*)로 테마가 적용되며, @vuepkg/theme와 함께 사용합니다.

설치

npm install @vuepkg/ui @vuepkg/theme
// main.ts
import '@vuepkg/theme/index.css'
import '@vuepkg/ui/style.css'

vue 3.5+ 가 peerDependency입니다.


Button

텍스트 버튼. <button>을 그대로 감싸므로 disabled, class, style, data-*, 네이티브 이벤트(@click, @dblclick 등)를 별도 설정 없이 그대로 전달할 수 있습니다.

<script setup lang="ts">
import { Button } from '@vuepkg/ui'
</script>

<template>
  <Button @click="goToday">Today</Button>
  <Button weight="bold" @click="submit">저장</Button>
  <Button disabled>비활성</Button>
</template>

Props

| Prop | 타입 | 기본값 | 설명 | | ---- | ---- | ------ | ---- | | weight | 'normal' \| 'bold' | 'normal' | 글자 굵기 | | type | 'button' \| 'submit' \| 'reset' | 'button' | 네이티브 <button> type 속성 |

type은 명시적 prop입니다. 폼 안에서 의도치 않게 submit으로 동작하는 것을 막기 위해 기본값이 'button'으로 고정되어 있으며, 필요할 때만 type="submit"을 직접 지정하세요.


IconButton

정사각형 아이콘 버튼. ‹ › 같은 네비게이션 화살표용입니다. aria-label이 필수 prop입니다.

<script setup lang="ts">
import { IconButton } from '@vuepkg/ui'
</script>

<template>
  <IconButton ariaLabel="Previous month" @click="prevMonth">‹</IconButton>
  <IconButton ariaLabel="Next month" @click="nextMonth">›</IconButton>
  <IconButton ariaLabel="Previous week" size="sm" @click="prevWeek">‹</IconButton>
</template>

Props

| Prop | 타입 | 기본값 | 설명 | | ---- | ---- | ------ | ---- | | ariaLabel | string | — (필수) | 스크린리더용 라벨. 시각적 라벨이 없는 아이콘 버튼이므로 항상 전달해야 합니다 | | size | 'sm' \| 'md' | 'md' | sm: 30×30px, md: 32×32px | | type | 'button' \| 'submit' \| 'reset' | 'button' | 네이티브 <button> type 속성 |


SegmentedControl

단일 선택 토글 버튼 그룹 (예: 캘린더 Month/Week/Day/List 뷰 전환). v-model로 사용합니다.

<script setup lang="ts">
import { ref } from 'vue'
import { SegmentedControl } from '@vuepkg/ui'

const view = ref('month')
const options = [
  { value: 'month', label: 'Month' },
  { value: 'week', label: 'Week' },
  { value: 'day', label: 'Day' },
  { value: 'list', label: 'List' },
]
</script>

<template>
  <SegmentedControl v-model="view" :options="options" ariaLabel="캘린더 보기 선택" />
</template>

Props

| Prop | 타입 | 기본값 | 설명 | | ---- | ---- | ------ | ---- | | options | { value: string; label: string }[] | — (필수) | 선택 항목 목록 | | modelValue | string | — (필수) | 현재 선택된 value | | ariaLabel | string | — (필수) | 그룹 전체에 대한 스크린리더 라벨 |

Emits

| 이벤트 | 페이로드 | 설명 | | ---- | ---- | ---- | | update:modelValue | string | 옵션 클릭 또는 키보드 네비게이션으로 선택이 바뀔 때 |

키보드 동작 (Roving tabindex)

  • / (또는 /): 이전/다음 옵션으로 포커스·선택 이동 (양 끝에서 순환)
  • Home/End: 첫/마지막 옵션으로 이동
  • 선택된 항목만 tabindex="0", 나머지는 -1 — Tab 키로 그룹에 진입하면 항상 현재 선택값에 포커스됨

Chip

레이블·태그형 표시 요소. 정적 표시(공휴일 칩)와 클릭 가능한 인터랙티브 칩(일정 칩) 둘 다 지원합니다. 색상은 토큰(--vp-chip-*) 또는 color/backgroundColor prop으로 동적 오버라이드할 수 있습니다.

<script setup lang="ts">
import { Chip } from '@vuepkg/ui'
</script>

<template>
  <!-- 정적 표시 -->
  <Chip>공휴일</Chip>

  <!-- 클릭 가능 + 동적 색상 -->
  <Chip clickable color="#1565c0" backgroundColor="#e3f2fd" @click="onSelect">
    회의
  </Chip>
</template>

Props

| Prop | 타입 | 기본값 | 설명 | | ---- | ---- | ------ | ---- | | color | string | — | 텍스트·테두리 색상 인라인 오버라이드 | | backgroundColor | string | — | 배경색 인라인 오버라이드 | | clickable | boolean | false | true이면 role="button", tabindex="0", 클릭/Enter/Space 인터랙션 활성화 |

Emits

| 이벤트 | 페이로드 | 설명 | | ---- | ---- | ---- | | click | MouseEvent \| KeyboardEvent | clickable일 때 클릭 또는 Enter/Space 입력 시 |

Chipborder-radius(--vp-chip-radius)와 클릭 인터랙션만 제공하는 최소 셸입니다. padding·font-size·기본 색상 등은 의도적으로 비워뒀습니다 — 용도별로 padding/크기 차이가 커서(예: 공휴일 칩 vs 일정 칩) 무리하게 통일하지 않고, 소비 측 컴포넌트가 class 폴스루로 자신의 스타일을 얹는 방식을 권장합니다.


공통 동작 — 속성 폴스루(Attribute Fallthrough)

Button/IconButton/Chip은 단일 루트 엘리먼트이므로 Vue 3의 기본 동작에 따라 prop으로 선언하지 않은 속성은 자동으로 루트 엘리먼트에 전달됩니다 (SegmentedControl은 내부에 여러 <button>을 렌더링하므로 동일하게 적용되지 않습니다):

<Button class="my-extra-class" data-testid="save-btn" disabled>저장</Button>
  • class/style → 컴포넌트 자체 클래스와 병합
  • disabled, data-*, aria-* (ariaLabel 제외) → 그대로 전달
  • @click 외 임의의 네이티브 이벤트(@dblclick, @mouseenter 등) → 자동 바인딩

테마 토큰

:root {
  --vp-button-bg:        /* 배경 */
  --vp-button-bg-hover:  /* hover 배경 */
  --vp-button-border:    /* 테두리 */
  --vp-button-text:      /* 텍스트 색상 */
  --vp-button-radius:    /* 모서리 반경 (기본 4px) */
}

@vuepkg/themebase.css에 기본값이 정의되어 있으며, 다크 모드는 dark.css(또는 .vp-dark 클래스)에서 자동 적용됩니다.


의존성 방향

@vuepkg/core  ←  @vuepkg/ui  ←  @vuepkg/calendar

@vuepkg/ui@vuepkg/core에만 의존합니다.


License

MIT © vuepkg