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

@tuiparts/core

v0.0.6

Published

Framework-agnostic core renderables for terminal applications built on OpenTUI

Readme

@tuiparts/core

Framework-neutral OpenTUI Primitives for tuiparts.sh.

New to the package/recipe split? Start with the primitive and recipe guide.

Installation

Add the package to an existing OpenTUI Core application:

pnpm add @tuiparts/core

The package supports @opentui/core ^0.4.3.

Primitive modules

Primitive modules own terminal interaction and coordination without choosing colors, spacing, glyphs, labels, or fixed visual trees.

| Module | Core interface | Public parts | | --- | --- | --- | | Accordion | AccordionStore | AccordionRootRenderable, AccordionItemRenderable, AccordionTriggerRenderable, AccordionPanelRenderable | | Button | ButtonStore | ButtonRenderable | | Checkbox | CheckboxStore | CheckboxRootRenderable, CheckboxIndicatorRenderable | | CheckboxGroup | CheckboxGroupStore | CheckboxGroupRenderable containing existing Checkbox Roots | | Collapsible | CollapsibleStore | CollapsibleRootRenderable, CollapsibleTriggerRenderable, CollapsiblePanelRenderable | | Dialog | DialogStore | Root, Trigger, Portal, Backdrop, Popup, Title, Description, Close Renderables | | Input | OpenTUI-native state | InputRenderable | | NumberField | NumberFieldStore | Root, Input, Increment, Decrement, and ScrubArea Renderables | | Slider | SliderStore | Root, Track, Range, and Thumb Renderables | | Textarea | OpenTUI-native EditBuffer | TextareaRenderable | | Radio / RadioGroup | RadioGroupStore | RadioGroupRenderable, RadioRootRenderable, RadioIndicatorRenderable | | Switch | SwitchStore | SwitchRootRenderable, SwitchThumbRenderable | | Tabs | TabsStore | TabsRootRenderable, TabsListRenderable, TabsTabRenderable, TabsPanelRenderable | | Toggle | ToggleStore | ToggleRenderable | | ToggleGroup | ToggleGroupStore | ToggleGroupRenderable containing ordinary ToggleRenderable children |

Core callers pass the owning Store between compound parts. React and Solid hide the same wiring behind compound-component context.

import {
  CheckboxIndicatorRenderable,
  CheckboxRootRenderable,
} from "@tuiparts/core/checkbox";

const root = new CheckboxRootRenderable(ctx, {
  defaultChecked: true,
  onCheckedChange: console.log,
});
const indicator = new CheckboxIndicatorRenderable(ctx, { store: root.store });

root.add(indicator);
parent.add(root);

Consumer-owned recipes assemble these parts with native OpenTUI Renderables and choose their presentation. Installable examples live under registry/.

From a repository checkout, run a focused tracer with pnpm --filter @tuiparts/core demo:number-field, pnpm --filter @tuiparts/core demo:slider, pnpm --filter @tuiparts/core demo:checkbox-group, pnpm --filter @tuiparts/core demo:accordion, or pnpm --filter @tuiparts/core demo:collapsible.

Input

InputRenderable preserves OpenTUI's mutable value and event model instead of adding browser-style controlled ownership or defaultValue.

import { InputRenderable } from "@tuiparts/core/input";

const input = new InputRenderable(ctx, {
  value: "initial",
  onInput: console.log,
  onChange: commit,
  onSubmit: submit,
});

onInput reports buffer mutations, onChange reports a changed blur or submit commit, and onSubmit reports successful Enter submission.

Textarea

TextareaRenderable preserves OpenTUI's multiline EditBuffer, native editing methods, and cursor/content/submit callback order. initialValue initializes the native buffer once; no parallel value owner is added.

import { TextareaRenderable } from "@tuiparts/core/textarea";

const textarea = new TextareaRenderable(ctx, {
  initialValue: "Release notes",
  onSubmit: publish,
});

Disabled Textareas reject focus, keyboard editing, paste, and submission while programmatic EditBuffer methods retain their native behavior.

Recipe boundary

Behaviorless presentation such as Badge is distributed as editable registry source rather than a Core package module. Recipes use ordinary TypeScript and native OpenTUI properties; primitive behavior owns no styling infrastructure.

See PRIMITIVE_CONTRACT.md and PRIMITIVES_AND_RECIPES.md for the ownership and composition contract.

License

MIT