silvery 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silvery",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "React terminal UI renderer for complex interactive apps — layout-aware rendering, flexbox, scrolling, and incremental updates",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ansi",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"compat:chalk": "bun packages/ink/scripts/compat-check.ts chalk"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
+
"@chenglou/pretext": "^0.0.3",
|
|
79
80
|
"@silvery/commander": "workspace:*",
|
|
80
81
|
"loggily": "github:beorn/loggily",
|
|
81
82
|
"react-reconciler": "^0.33.0",
|
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from "@silvery/ag-react"
|
|
|
9
9
|
import type { ReactElement } from "react"
|
|
10
10
|
import { render as reactRender, type RenderOptions } from "@silvery/ag-react"
|
|
11
11
|
import type { Term } from "@silvery/ag-react"
|
|
12
|
-
import type { TermDef } from "@silvery/ag/
|
|
12
|
+
import type { TermDef } from "@silvery/ag-term/term-def"
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Render a React element to the terminal.
|