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

tvuikit

v0.8.3

Published

A modern React UI kit for The Void Community projects

Readme

TVUIKit

npm version license React TypeScript Storybook Tailwind CSS

Современный UI-кит на React для проектов The Void Community

TVUIKit — это библиотека React-компонентов, построенная с использованием Tailwind CSS. Она предоставляет набор переиспользуемых, доступных и настраиваемых компонентов для быстрой разработки современных пользовательских интерфейсов с темной темой по умолчанию.

✨ Возможности

  • 🎨 Готовые компоненты: Кнопки, поля ввода, выпадающие меню, модальные окна, переключатели, прогресс-бары и многое другое
  • 🌙 Темная тема: Все компоненты используют темную тему с кастомными CSS-переменными
  • 🎯 Кастомизация: Легкая настройка через пропсы и CSS-переменные
  • 📱 Адаптивность: Все компоненты responsive-ready
  • ⚡ Производительность: Оптимизированные компоненты с минимальным бандлом
  • 🔧 TypeScript: Полная поддержка TypeScript с типами
  • ♿ Доступность: Компоненты разработаны с учетом a11y

📦 Установка

npm install tvuikit
# или
yarn add tvuikit
# или
pnpm add tvuikit

🚀 Быстрый старт

import { Button, Input, Modal } from "tvuikit";
import "tvuikit/index.css";

function App() {
  const [isOpen, setIsOpen] = useState(false);

  return (
    <div className="p-8 bg-(--bg-default) text-(--fg-text)">
      <Button variant="primary" onClick={() => setIsOpen(true)}>
        Открыть модалку
      </Button>

      <Input placeholder="Введите текст" className="mt-4" />

      <Modal isOpen={isOpen} onClose={() => setIsOpen(false)}>
        <div className="p-6">
          <h2 className="text-2xl mb-4">Пример модального окна</h2>
          <p>Содержимое модального окна</p>
        </div>
      </Modal>
    </div>
  );
}

Прогресс-индикаторы

| Компонент | Описание | | ----------------------------- | ---------------------------- | | LinearProgress | Линейный прогресс-бар | | CircleProgress | Круговой индикатор загрузки | | EllipsisProgress | Анимированные точки загрузки | | IndeterminateLinearProgress | Неопределенный прогресс-бар |

Вспомогательные компоненты

| Компонент | Описание | | ----------- | ---------------------------------------------------- | | Wrapper | Контейнер для контента | | Guildline | Демонстрационные компоненты для типографики и кнопок |

Переменные дизайн-системы

| Экспорт | Описание | | -------------- | ----------------------------------------------- | | VARIABLES | Цвета, шрифты и другие константы дизайн-системы | | borderRadius | Стандартный радиус скругления |

🎨 Дизайн-система

CSS-переменные

Библиотека использует CSS-переменные для управления темой:

:root {
  /* Фоны */
  --bg-default: #0a0a0a;
  --bg-component: #00000065;
  --bg-smooth: #111111;
  --bg-card: #27272780;

  /* Текст */
  --fg-default: #ededed;
  --fg-text: #ededed;
  --fg-mini-text: #ededed40;
  --fg-component: #272727;

  /* Цвета кнопок */
  --color-default: #ededed;
  --color-primary: #2aff6a;
  --color-danger: #ff0000;
  --color-secondary: #000000;
  --color-tetriary: #000000;
}

🛠 Разработка

Предварительные требования

  • Node.js 18+
  • npm/yarn/pnpm

Клонирование и установка

git clone https://github.com/The-Void-Community/tvuikit.git
cd tvuikit
npm install

🏗 Архитектура

Технологический стек

  • React 19 — UI библиотека
  • TypeScript — Типизация
  • Tailwind CSS 4 — Стилизация через утилитарные классы
  • Vite — Сборка и development server
  • Storybook — Документация компонентов
  • ESLint + Prettier — Линтинг и форматирование

Структура проекта

tvuikit/
├── src/
│   ├── components/     # Компоненты библиотеки
│   ├── styles/         # Стили и CSS переменные
│   ├── utils/          # Вспомогательные функции
│   └── index.ts        # Главный файл экспортов
├── .storybook/         # Конфигурация Storybook
├── dist/               # Собранные файлы (генерируется)
└── package.json

📄 Лицензия

MIT © The Void Community. Подробнее в файле LICENSE.

👥 Участие в разработке

Мы приветствуем вклад! Пожалуйста, ознакомьтесь с нашим Руководством по вкладу для подробностей.

  1. Форкните репозиторий
  2. Создайте ветку для новой функции (git checkout -b feature/amazing-feature)
  3. Зафиксируйте изменения (git commit -m 'Add amazing feature')
  4. Запушьте в ветку (git push origin feature/amazing-feature)
  5. Откройте Pull Request

🤝 Сообщество

🙏 Благодарности


Разработано FOCKUSTY • Часть The Void Community

📞 Поддержка

По вопросам использования библиотеки: