mirror of
https://github.com/anomalyco/opentui.git
synced 2026-04-25 13:06:00 +03:00
[PR #206] [MERGED] fix: add missing SliderRenderable export #367
Labels
No labels
bug
core
documentation
feature
good first issue
help wanted
pull-request
question
react
solid
tmux
windows
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/opentui#367
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/anomalyco/opentui/pull/206
Author: @thefinalb055
Created: 10/8/2025
Status: ✅ Merged
Merged: 10/12/2025
Merged by: @kommander
Base:
main← Head:fix/missing-renderable-exports📝 Commits (4)
5143cc0fix: add missing SliderRenderable export to @opentui/core72b8a0aMerge branch 'main' into fix/missing-renderable-exports1c27946Merge branch 'main' into fix/missing-renderable-exportsf50d413Prettier ran - formatted 1 file (index.ts)📊 Changes
1 file changed (+10 additions, -9 deletions)
View changed files
📝
packages/core/src/renderables/index.ts(+10 -9)📄 Description
Summary
Fixes #205
Adds the missing
export * from "./Slider"topackages/core/src/renderables/index.ts.Problem
The published
@opentui/core@0.1.25package was missing theSliderRenderableexport, causing runtime errors when importing it outside the monorepo:Solution
Added the missing export statement for Slider. Note that
CodeRenderableandTextBufferRenderableexports were already added in PR #191, so this PR only addresses the Slider export.Verification
Verified in the build output (
bun run build:lib):dist/renderables/Slider.d.tsexistsdist/renderables/index.d.tsincludesexport * from "./Slider"dist/index.jsexportsSliderRenderablein the main export blockTest Plan
bun run build:lib)bun run test:js- 658 pass)🤖 Generated with Claude Code
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.