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

@reni-corp/reni-2c-ui

v0.4.8

Published

モダンなストアフロントアプリケーション構築のための、美しくアクセシブルなコンポーネントを提供する包括的なVue 3コンポーネントライブラリです。

Downloads

1,158

Readme

reni-2C-ui

モダンなストアフロントアプリケーション構築のための、美しくアクセシブルなコンポーネントを提供する包括的なVue 3コンポーネントライブラリです。

インストール

npm install @reni-corp/reni-2c-ui

または

yarn add @reni-corp/reni-2c-ui

RnHtmlコンポーネントをSSR環境で利用する場合

SSR(サーバーサイドレンダリング)環境でRnHtmlコンポーネントを使用する場合は、happy-domのインストールが必要です。

npm install happy-dom

または

yarn add happy-dom

クイックスタート

1. プラグインのインポートとインストール

import { createApp } from 'vue'
import { createReniOneUI } from '@reni-corp/reni-2c-ui'
import '@reni-corp/reni-2c-ui/dist/style.css'

const app = createApp(App)
app.use(createReniOneUI())

2. コンポーネントの使用

<template>
  <rn-button variant="primary" @click="handleClick"> Click me </rn-button>
  <rn-card>
    <rn-text>Hello World</rn-text>
  </rn-card>
</template>

3. 個別コンポーネントのインポート

import { Button, Card, Text } from '@reni-corp/reni-2c-ui'

export default {
  components: {
    RnButton: Button,
    RnCard: Card,
    RnText: Text,
  },
}

コンポーネントカテゴリ

Elements(要素)

基本的なUIビルディングブロック: Button, Icon, Text, TextField, SelectBox, Checkbox, RadioButton, Alert, Spinner など

Layouts(レイアウト)

レイアウトと構造のコンポーネント: Stack, Card, Grid, List, Section, Page

Interactive(インタラクティブ)

インタラクティブなコンポーネント: Modal, Dialog, Gallery, Carousel, Tabs, Notification, DropDown

Navigation(ナビゲーション)

ナビゲーションコンポーネント: AppBar, Drawer, BottomBar

Features(機能)

ビジネス特化型コンポーネント: ProductList, Schedule, Hero, AnnounceBar, CategoryBanner

TypeScript サポート

このライブラリはTypeScriptで構築されており、完全な型定義を提供します。グローバル登録を使用する際、すべてのコンポーネントが自動的に型付けされます。

// グローバルコンポーネント型は自動的に利用可能
// TypeScriptサポートのための追加インポートは不要

バリューオブジェクト

ライブラリには、一般的なデータ型のためのユーティリティバリューオブジェクトが含まれています:

import { CurrencyValue, NumberValue } from '@reni-corp/reni-2c-ui/valueObjects'

const price = new CurrencyValue(1000, 'JPY')
const quantity = new NumberValue(5)

Composables

一般的なUIパターンのための便利なComposablesにアクセスできます:

import {
  useAppNotifications,
  useSyncedTabPanel,
  useToolChip,
  useAppDialogGuidance,
} from '@reni-corp/reni-2c-ui'

リンク

ライセンス

このライブラリはプライベートパッケージです。