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

@orcestr/ui

v0.7.5

Published

Accessible React components and styles for application interfaces.

Downloads

2,717

Readme

Orcestr UI

npm License: MPL 2.0

Live Demo

Доступные React-компоненты и стили для интерфейсов приложений.

В пакете есть layout primitives, контролы, поля, overlays, data views, workflow-состояния, theme tokens и utility hooks.

Основной сайт: orcestr.com

Статус

| Пункт | Значение | | ------- | ------------------------------------------ | | Package | @orcestr/ui | | Version | актуальная версия указана в npm badge выше | | Status | Beta | | Runtime | React 19 | | Styling | CSS из @orcestr/ui/styles.css |

Public API еще формируется, пока пакет находится в beta.

Что внутри

| Зона | Что входит | | ---------- | ------------------------------------------------------------------------------ | | App layout | shell, навигационные паттерны, page surfaces | | Actions | buttons, icon buttons, text links, menus, command surfaces | | Inputs | fields, selects, comboboxes, pickers, switches, checkboxes, segmented controls | | Overlays | dialogs, drawers, modals, popovers, tooltips, context menus, confirm flows | | Data views | tables, pagination, empty/error/loading states, badges, alerts | | Workflows | lifecycle и status components для операционных экранов | | Foundation | provider, locale, theme tokens, CSS variables, utility hooks |

Установка

npm install @orcestr/ui react react-dom react-icons

TanStack Query нужен только при использовании @orcestr/ui/react-query:

npm install @tanstack/react-query

Для проверки неопубликованной сборки в другом приложении запусти npm pack и установи созданный архив. В публикуемых manifest- и lock-файлах должны оставаться registry-версии.

Использование

Подключи CSS один раз рядом с корнем приложения и оберни приложение в OrcestrUiProvider.

import { Button, Link, OrcestrUiProvider } from '@orcestr/ui';
import '@orcestr/ui/styles.css';

export function App() {
    return (
        <OrcestrUiProvider locale="ru" defaultMode="dark">
            <Button>Сохранить</Button>
            <Link href="/account">Аккаунт</Link>
        </OrcestrUiProvider>
    );
}

React Query integration опциональная:

import { usePaginatedComboboxQueryLoader } from '@orcestr/ui/react-query';

В Server Components можно импортировать render-only primitives без client boundary:

import { Box, Flex, Table, Text } from '@orcestr/ui/server';

Demo page экспортируется отдельно:

import { UiExamplePage } from '@orcestr/ui/example/UiExamplePage';
import '@orcestr/ui/example/styles.css';

Настройка provider, тем приложения, overlays, controlled state и границ между client/server описана в руководстве для потребителей.

Entrypoints

| Entrypoint | Назначение | | ----------------------------------- | ----------------------------------------------- | | @orcestr/ui | Client components, providers, hooks и theme API | | @orcestr/ui/server | Server-safe render-only primitives | | @orcestr/ui/styles.css | Runtime styles UI kit | | @orcestr/ui/react-query | Optional React Query adapter | | @orcestr/ui/example/UiExamplePage | Demo page component | | @orcestr/ui/example/styles.css | Demo page styles |

Скрипты

npm run build
npm run typecheck
npm test
npm run check:package
npm run pack:dry-run

| Script | Что проверяет | | ----------------------- | -------------------------------------------------- | | npm run build | TypeScript output, declarations, CSS и ESM imports | | npm run typecheck | TypeScript без emit | | npm test | Contract и state tests | | npm run check:package | Публичные Node ESM entrypoints | | npm run pack:dry-run | Состав публикуемого пакета |

Release

Публикация в NPM идет через GitHub Actions по тегам ui-v*.

Локальные helpers:

npm run release:patch
npm run release:minor
npm run release:major

Каждый helper обновляет package.json и package-lock.json, создает release commit и tag вроде ui-v0.3.1.

git push
git push origin ui-v0.3.1

Workflow перед публикацией запускает typecheck, tests, build и npm pack --dry-run.

Полная инструкция: docs/RELEASE.md.

Maintainer

Публичные обновления ведет @Artasov.

Лицензия

Проект распространяется по Mozilla Public License 2.0. Коммерческое использование разрешено; изменения файлов под MPL остаются на условиях MPL. Авторство указано в NOTICE, правила использования бренда — в TRADEMARKS.md.