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

@pop-ui/core

v0.0.41

Published

사내 디자인 시스템을 위한 React UI 컴포넌트 라이브러리입니다.

Downloads

244

Readme

@pop-ui/core

사내 디자인 시스템을 위한 React UI 컴포넌트 라이브러리입니다.

설치

기본 설치

모든 컴포넌트를 사용하기 위한 필수 패키지를 설치합니다.

yarn add @pop-ui/core react react-dom @mantine/core @mantine/hooks @emotion/react @emotion/cache @emotion/serialize @emotion/utils

컴포넌트별 추가 패키지

일부 컴포넌트는 추가 패키지가 필요합니다. 사용하는 컴포넌트에 따라 필요한 패키지를 설치하세요.

Button, TextField, SearchBar, Dropdown, Checkbox, Radio, Toggle

추가 패키지 불필요 (기본 설치만으로 사용 가능)

DatePicker, TimePicker

yarn add @mantine/dates dayjs

ImageUploader

yarn add @mantine/dropzone

Table

yarn add react-beautiful-dnd @tabler/icons-react

Pagination

yarn add @tabler/icons-react

Modal

yarn add @mantine/modals

Alert, Tooltip

yarn add @mantine/notifications

에디터 컴포넌트

yarn add @mantine/tiptap @tiptap/react @tiptap/starter-kit @tiptap/extension-link

사용 방법

React (Vite)

import { Button, TextField } from '@pop-ui/core';

function App() {
  return (
    <div>
      <Button styleType="primary" size="md">
        클릭하세요
      </Button>
      <TextField placeholder="텍스트를 입력하세요" />
    </div>
  );
}

Next.js

Next.js에서 사용하려면 Mantine Provider 설정이 필요합니다.

App Router (Next.js 13+)

  1. Providers 컴포넌트 생성:
// app/providers.tsx
'use client'

import { MantineProvider } from '@mantine/core'
import '@mantine/core/styles.css'

export function Providers({ children }: { children: React.ReactNode }) {
  return <MantineProvider>{children}</MantineProvider>
}
  1. Layout에서 사용:
// app/layout.tsx
import { Providers } from './providers'

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="ko">
      <body>
        <Providers>{children}</Providers>
      </body>
    </html>
  )
}
  1. 컴포넌트 사용:
// app/page.tsx
'use client'

import { Button } from '@pop-ui/core'

export default function Page() {
  return <Button onClick={() => alert('클릭!')}>클릭하세요</Button>
}

Pages Router (Next.js 12 이하)

// pages/_app.tsx
import { MantineProvider } from '@mantine/core'
import '@mantine/core/styles.css'
import type { AppProps } from 'next/app'

export default function App({ Component, pageProps }: AppProps) {
  return (
    <MantineProvider>
      <Component {...pageProps} />
    </MantineProvider>
  )
}

제공 컴포넌트

  • Button - 다양한 스타일의 버튼
  • TextField - 텍스트 입력 필드
  • SearchBar - 검색 입력 필드
  • Dropdown - 드롭다운 선택
  • Checkbox - 체크박스
  • Radio - 라디오 버튼
  • Toggle - 토글 스위치
  • DatePicker - 날짜 선택
  • TimePicker - 시간 선택
  • Pagination - 페이지네이션
  • Tab - 탭 메뉴
  • SegmentButton - 세그먼트 버튼
  • Alert - 알림 메시지
  • Tooltip - 툴팁
  • Table - 데이터 테이블
  • Modal - 모달 다이얼로그
  • ImageUploader - 이미지 업로드

기술 스택

  • React 18
  • TypeScript
  • Mantine UI 6.x
  • SCSS Modules

라이센스

MIT