[PR #31] [MERGED] Add solid reconciler with example #1014

Closed
opened 2026-03-14 09:13:46 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/anomalyco/opentui/pull/31
Author: @Adictya
Created: 8/16/2025
Status: Merged
Merged: 8/18/2025
Merged by: @kommander

Base: mainHead: solid-reconciler


📝 Commits (10+)

📊 Changes

22 files changed (+1784 additions, -15 deletions)

View changed files

📝 bun.lock (+200 -13)
📝 packages/core/src/renderables/Text.ts (+1 -2)
packages/solid/.prettierrc (+0 -0)
packages/solid/bunfig.toml (+1 -0)
packages/solid/examples/components/ExampleSelector.tsx (+158 -0)
packages/solid/examples/components/animation-demo.tsx (+167 -0)
packages/solid/examples/components/input-demo.tsx (+20 -0)
packages/solid/examples/components/mouse-demo.tsx (+119 -0)
packages/solid/examples/components/text-selection-demo.tsx (+227 -0)
packages/solid/examples/components/text-style-demo.tsx (+29 -0)
packages/solid/examples/index.tsx (+14 -0)
packages/solid/examples/tsconfig.json (+30 -0)
packages/solid/index.ts (+23 -0)
packages/solid/package.json (+32 -0)
packages/solid/scripts/build.ts (+41 -0)
packages/solid/scripts/preload.ts (+4 -0)
packages/solid/scripts/solid-plugin.ts (+58 -0)
packages/solid/src/elements/hooks.ts (+123 -0)
packages/solid/src/elements/index.ts (+119 -0)
packages/solid/src/reconciler.ts (+378 -0)

...and 2 more files

📄 Description

bun install
cd packages/solid
bun --conditions=browser run examples/index.tsx

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/anomalyco/opentui/pull/31 **Author:** [@Adictya](https://github.com/Adictya) **Created:** 8/16/2025 **Status:** ✅ Merged **Merged:** 8/18/2025 **Merged by:** [@kommander](https://github.com/kommander) **Base:** `main` ← **Head:** `solid-reconciler` --- ### 📝 Commits (10+) - [`e363173`](https://github.com/anomalyco/opentui/commit/e36317306a1073056545ec0c5e2bfe952f2e232b) add style text api - [`571f191`](https://github.com/anomalyco/opentui/commit/571f1916f46ad760aefc1ffde03869651fdda09f) add set position - [`1cca7e1`](https://github.com/anomalyco/opentui/commit/1cca7e11fd91bc2ec9049663337859851679ed26) remove unused import - [`cc339a5`](https://github.com/anomalyco/opentui/commit/cc339a5ebde4b8c67a4686bea06618a7156ca6c4) feat: add solid package - [`8c6ef87`](https://github.com/anomalyco/opentui/commit/8c6ef8743cc369b75a0a5a7b649563ff5cd6ff06) fix: build script - [`94934fc`](https://github.com/anomalyco/opentui/commit/94934fcc7cd78bff78d1c1606e2e93d0459e7cb4) move input to onInput - [`b4ccf4e`](https://github.com/anomalyco/opentui/commit/b4ccf4e54e5674a7713906e27973615a56db1773) chore: re-arranging - [`cf6626d`](https://github.com/anomalyco/opentui/commit/cf6626d0ef1cde028d8a7a933270e9da9f3d58a7) quick try importless api - [`08aa4a0`](https://github.com/anomalyco/opentui/commit/08aa4a0de820f2e528c75b11ee08aec6d5a2a6f5) chore move example - [`2fbe420`](https://github.com/anomalyco/opentui/commit/2fbe420b4d31f102f1231336bf174a26d70c5ea4) fix implement api ### 📊 Changes **22 files changed** (+1784 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `bun.lock` (+200 -13) 📝 `packages/core/src/renderables/Text.ts` (+1 -2) ➕ `packages/solid/.prettierrc` (+0 -0) ➕ `packages/solid/bunfig.toml` (+1 -0) ➕ `packages/solid/examples/components/ExampleSelector.tsx` (+158 -0) ➕ `packages/solid/examples/components/animation-demo.tsx` (+167 -0) ➕ `packages/solid/examples/components/input-demo.tsx` (+20 -0) ➕ `packages/solid/examples/components/mouse-demo.tsx` (+119 -0) ➕ `packages/solid/examples/components/text-selection-demo.tsx` (+227 -0) ➕ `packages/solid/examples/components/text-style-demo.tsx` (+29 -0) ➕ `packages/solid/examples/index.tsx` (+14 -0) ➕ `packages/solid/examples/tsconfig.json` (+30 -0) ➕ `packages/solid/index.ts` (+23 -0) ➕ `packages/solid/package.json` (+32 -0) ➕ `packages/solid/scripts/build.ts` (+41 -0) ➕ `packages/solid/scripts/preload.ts` (+4 -0) ➕ `packages/solid/scripts/solid-plugin.ts` (+58 -0) ➕ `packages/solid/src/elements/hooks.ts` (+123 -0) ➕ `packages/solid/src/elements/index.ts` (+119 -0) ➕ `packages/solid/src/reconciler.ts` (+378 -0) _...and 2 more files_ </details> ### 📄 Description ``` bun install cd packages/solid bun --conditions=browser run examples/index.tsx ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-14 09:13:46 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/opentui#1014
No description provided.