@opentui/core 0.0.0-20251128-0889a764 → 0.0.0-20251202-71dcabc4
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/3d.js +1 -1
- package/Renderable.d.ts +2 -2
- package/{index-rhx7c7kj.js → index-r6acnfwr.js} +1474 -1776
- package/index-r6acnfwr.js.map +55 -0
- package/index.d.ts +1 -1
- package/index.js +702 -338
- package/index.js.map +13 -12
- package/lib/KeyHandler.d.ts +1 -1
- package/lib/parse.keypress.d.ts +1 -0
- package/lib/terminal-palette.d.ts +7 -2
- package/lib/yoga.options.d.ts +1 -1
- package/libyoga-2ksztx35.dylib +0 -0
- package/libyoga-gh2tjwb7.so +0 -0
- package/libyoga-j5nt7np1.dylib +0 -0
- package/libyoga-wnbqxxhv.so +0 -0
- package/package.json +10 -10
- package/renderables/Diff.d.ts +66 -1
- package/renderables/EditBufferRenderable.d.ts +1 -0
- package/renderables/LineNumberRenderable.d.ts +1 -0
- package/renderables/TextBufferRenderable.d.ts +13 -0
- package/testing/mock-tree-sitter-client.d.ts +4 -1
- package/testing.js +25 -6
- package/testing.js.map +3 -3
- package/text-buffer-view.d.ts +2 -0
- package/types.d.ts +1 -0
- package/yoga-jkgc6c1f.dll +0 -0
- package/zig.d.ts +2 -0
- package/index-rhx7c7kj.js.map +0 -58
package/3d.js
CHANGED
package/Renderable.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from "events";
|
|
2
|
-
import { type Node as YogaNode } from "yoga
|
|
2
|
+
import { type Node as YogaNode } from "bun-yoga";
|
|
3
3
|
import { OptimizedBuffer } from "./buffer";
|
|
4
4
|
import type { KeyEvent, PasteEvent } from "./lib/KeyHandler";
|
|
5
5
|
import type { Selection } from "./lib/selection";
|
|
@@ -111,7 +111,7 @@ export declare abstract class BaseRenderable extends EventEmitter {
|
|
|
111
111
|
}
|
|
112
112
|
export declare abstract class Renderable extends BaseRenderable {
|
|
113
113
|
static renderablesByNumber: Map<number, Renderable>;
|
|
114
|
-
|
|
114
|
+
protected _isDestroyed: boolean;
|
|
115
115
|
protected _ctx: RenderContext;
|
|
116
116
|
protected _translateX: number;
|
|
117
117
|
protected _translateY: number;
|