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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@skulter/test_ui

v0.1.30

Published

React UI 컴포넌트 라이브러리입니다.

Readme

@skulter/test_ui

React UI 컴포넌트 라이브러리입니다.

설치

npm install @skulter/test_ui
# 또는
pnpm add @skulter/test_ui

사용 방법

컴포넌트 사용하기

import { Button } from '@skulter/test_ui';

function App() {
  return (
    <Button variant="primary">버튼</Button>
  );
}

타입 사용하기

import { ColumnSummary } from '@skulter/test_ui/types'

커스텀 프리셋 사용하기

import customPreset from '@skulter/test_ui/customPreset';

// panda.config.ts 파일에서 사용
import { defineConfig } from '@pandacss/dev';

export default defineConfig({
  // 다른 설정들...
  presets: ['@pandacss/dev/presets', customPreset],
});

PandaCSS 설정 가이드

이 라이브러리를 사용할 때 발생할 수 있는 경로 문제를 해결하기 위해 다음과 같이 설정하세요:

프로젝트의 panda.config.ts 파일 설정

import { defineConfig } from '@pandacss/dev'
import customPreset from '@skulter/test_ui/customPreset'

export default defineConfig({
  staticCss: {
    recipes: '*',
  },
  jsxFramework: 'react',
  // Whether to use css reset
  preflight: true,

  // Where to look for your css declarations
  include: [
    './app/**/*.{js,jsx,ts,tsx}',
    './src/**/*.{js,jsx,ts,tsx}',
    './node_modules/@skulter/test_ui/dist/**/*.{js,mjs}', // 배포된 UI라이브러리 위치
  ],

  // Files to exclude
  exclude: [],

  // Useful for theme customization
  presets: ['@pandacss/dev/presets', customPreset],

  // The output directory for your css system
  outdir: '@mono/acme-ui',
  importMap: '@ui', // 필요할 경우 사용
})

버전 정보

현재 버전: 0.1.03