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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@tetex-public/ui

v0.0.47

Published

tetex.techで使用されているUIコンポーネントライブラリです。Reactで構築され、Tailwind CSSを使用してスタイリングされています。

Downloads

2,647

Readme

tetex.tech UI ライブラリ

tetex.techで使用されているUIコンポーネントライブラリです。Reactで構築され、Tailwind CSSを使用してスタイリングされています。

インストール

npm install @tetex-public/ui

または

yarn add @tetex-public/ui

使い方

基本的な使用例:

import ArticlePage from './components/pages/ArticlePage';
import { ThemeProvider, BasePageLayout } from '@tetex-public/ui';
import '@tetex-public/ui/style.css';

function App() {
  return (
    <ThemeProvider>
      <BasePageLayout headerProps={{ defaultLabel: '記事', defaultPath: '/' }}>
        <ArticlePage />
      </BasePageLayout>
    </ThemeProvider>
  );
}

export default App;

重要な注意事項

現在の版では型定義ファイル(.d.ts)のエクスポートに制限があります。そのため、TypeScriptプロジェクトで使用する際に型エラーが表示される可能性がありますが、実際の機能は正常に動作します。この問題は次回のアップデートで解決予定です。

一時的な対処方法

型エラーを回避するには、以下のいずれかの方法を使用してください:

  1. tsconfig.jsoncompilerOptionsに以下を追加:
{
  "compilerOptions": {
    "noImplicitAny": false,
    "skipLibCheck": true
  }
}
  1. または、型アサーションを使用:
import { ThemeProvider, BasePageLayout } from '@tetex-public/ui';
const Layout = BasePageLayout as any;

主要なコンポーネント

ThemeProvider

アプリケーション全体のテーマを管理します。全てのコンポーネントをThemeProviderで囲む必要があります。

<ThemeProvider>
  {/* 子コンポーネント */}
</ThemeProvider>

BasePageLayout

ページの基本レイアウトを提供します。ヘッダーとフッターを含みます。

<BasePageLayout
  headerProps={{
    defaultLabel: 'ホーム',
    defaultPath: '/',
  }}
>
  {/* ページコンテンツ */}
</BasePageLayout>

主なprops

  • headerProps: ヘッダーの設定
    • defaultLabel: デフォルトのラベル
    • defaultPath: デフォルトのパス

スタイリング

このライブラリはTailwind CSSを使用しています。独自のプレフィックスttx-を使用してクラス名の衝突を防いでいます。

// 例
<div className="ttx-container ttx-mx-auto ttx-p-4">

必須依存関係

  • React 18.0.0以上
  • Tailwind CSS 3.0.0以上

開発環境のセットアップ

# インストール
npm install

# 開発サーバーの起動
npm run dev

# ビルド
npm run build

ライセンス

このプロジェクトはMITライセンスの下で公開されています。

コントリビューション

バグ報告や機能要望は、GitHubのIssueトラッカーをご使用ください。プルリクエストも歓迎します。

今後の予定

  • 型定義ファイルの完全なサポート
  • コンポーネントのドキュメント整備
  • テストカバレッジの向上

サポート

質問や問題がある場合は、GitHubのIssueでお知らせください。