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

ui-kit-react-sass-dummy

v1.0.0

Published

Modern React UI Kit with Sass styling

Readme

AI UIKit

Modern, erişilebilir ve özelleştirilebilir React bileşen kütüphanesi. TypeScript ve Sass ile geliştirilmiştir.

🚀 Özellikler

  • Modern Tasarım: Güncel UI/UX trendlerine uygun, temiz ve minimal tasarım
  • TypeScript Desteği: Tam TypeScript desteği ile tip güvenliği
  • Sass ile Stillendirilmiş: Özelleştirilebilir Sass değişkenleri ve mixin'ler
  • Erişilebilirlik: WCAG standartlarına uygun erişilebilir bileşenler
  • Responsive: Tüm cihazlarda mükemmel görünüm
  • Tree Shaking: Optimized bundle boyutu için tree shaking desteği

📦 Kurulum

npm install ai-uikit

veya

yarn add ai-uikit

🎯 Kullanım

Button Bileşeni

import { Button } from 'ai-uikit';

function App() {
  return (
    <div>
      <Button variant="primary" size="md">
        Birincil Buton
      </Button>
      
      <Button variant="outline-secondary" loading>
        Yükleniyor...
      </Button>
      
      <Button 
        variant="danger" 
        startIcon={<DeleteIcon />}
        onClick={() => console.log('Silindi!')}
      >
        Sil
      </Button>
    </div>
  );
}

Button Props

| Prop | Tip | Varsayılan | Açıklama | |------|-----|------------|----------| | variant | 'primary' \| 'secondary' \| 'success' \| 'danger' \| 'warning' \| 'info' \| 'light' \| 'dark' \| 'outline-*' | 'primary' | Button stili | | size | 'sm' \| 'md' \| 'lg' | 'md' | Button boyutu | | fullWidth | boolean | false | Tam genişlik | | loading | boolean | false | Yükleniyor durumu | | startIcon | ReactNode | - | Sol ikon | | endIcon | ReactNode | - | Sağ ikon |

Input Bileşeni

import { Input } from 'ai-uikit';

function LoginForm() {
  return (
    <form>
      <Input
        label="E-posta"
        type="email"
        placeholder="[email protected]"
        required
      />
      
      <Input
        label="Şifre"
        type="password"
        placeholder="Şifrenizi girin"
        error="Şifre en az 8 karakter olmalıdır"
      />
      
      <Input
        label="Arama"
        placeholder="Ara..."
        startIcon={<SearchIcon />}
        endIcon={<ClearIcon />}
      />
    </form>
  );
}

Input Props

| Prop | Tip | Varsayılan | Açıklama | |------|-----|------------|----------| | label | string | - | Input etiketi | | error | string | - | Hata mesajı | | helperText | string | - | Yardımcı metin | | variant | 'outlined' \| 'filled' | 'outlined' | Input stili | | size | 'sm' \| 'md' \| 'lg' | 'md' | Input boyutu | | fullWidth | boolean | false | Tam genişlik | | startIcon | ReactNode | - | Sol ikon | | endIcon | ReactNode | - | Sağ ikon | | required | boolean | false | Gerekli alan |

Card Bileşeni

import { Card, CardHeader, CardContent, CardActions, Button } from 'ai-uikit';

function ProfileCard() {
  return (
    <Card variant="elevated" hoverable>
      <CardHeader
        avatar={<Avatar src="/avatar.jpg" />}
        action={<Button variant="outline-primary" size="sm">Takip Et</Button>}
      >
        <div>
          <h4>John Doe</h4>
          <p>Yazılım Geliştirici</p>
        </div>
      </CardHeader>
      
      <CardContent>
        <p>
          React ve TypeScript konularında uzman, 
          modern web teknolojileri ile harika deneyimler yaratıyor.
        </p>
      </CardContent>
      
      <CardActions justify="space-between">
        <Button variant="outline-secondary" size="sm">
          Mesaj
        </Button>
        <Button variant="primary" size="sm">
          Bağlan
        </Button>
      </CardActions>
    </Card>
  );
}

Card Props

| Prop | Tip | Varsayılan | Açıklama | |------|-----|------------|----------| | variant | 'elevated' \| 'outlined' \| 'filled' | 'elevated' | Card stili | | padding | 'none' \| 'sm' \| 'md' \| 'lg' | 'md' | İç boşluk | | hoverable | boolean | false | Hover efekti |

🎨 Özelleştirme

Sass Değişkenleri

Kendi stilinizi oluşturmak için Sass değişkenlerini özelleştirebilirsiniz:

// Renkler
$primary-color: #007bff;
$secondary-color: #6c757d;
$success-color: #28a745;
$danger-color: #dc3545;

// Boşluklar
$spacing-sm: 8px;
$spacing-md: 16px;
$spacing-lg: 24px;

// Tipografi
$font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
$font-size-base: 16px;

@import 'ai-uikit/src/styles/global';

CSS Sınıfları

Her bileşen BEM metodolojisi ile adlandırılmış CSS sınıflarına sahiptir:

.ai-button {
  // Button temel stili
  
  &--primary {
    // Birincil button stili
  }
  
  &--lg {
    // Büyük button stili
  }
}

📚 Storybook

Bileşenleri interaktif olarak keşfetmek için Storybook kullanabilirsiniz:

npm run storybook

🛠️ Geliştirme

Projeyi yerel olarak geliştirmek için:

# Bağımlılıkları yükle
npm install

# Geliştirme modunda çalıştır
npm run dev

# Test çalıştır
npm test

# Build oluştur
npm run build

# Storybook çalıştır
npm run storybook

📄 Lisans

MIT License - detaylar için LICENSE dosyasına bakın.

🤝 Katkıda Bulunma

Katkılarınızı memnuniyetle karşılıyoruz! Lütfen katkıda bulunmadan önce katkı kurallarımızı okuyun.

📞 Destek

Herhangi bir sorunuz veya geri bildiriminiz için: