@opentui/core 0.0.0-20251205-41c885f6 → 0.0.0-20251208-bec95e7d

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/Renderable.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter } from "events";
2
- import { type Node as YogaNode } from "bun-yoga";
2
+ import { type Node as YogaNode } from "yoga-layout";
3
3
  import { OptimizedBuffer } from "./buffer";
4
4
  import type { KeyEvent, PasteEvent } from "./lib/KeyHandler";
5
5
  import type { Selection } from "./lib/selection";
@@ -148,6 +148,7 @@ export declare abstract class Renderable extends BaseRenderable {
148
148
  parent: Renderable | null;
149
149
  private childrenPrimarySortDirty;
150
150
  private childrenSortedByPrimaryAxis;
151
+ private _shouldUpdateBefore;
151
152
  onLifecyclePass: (() => void) | null;
152
153
  renderBefore?: (this: Renderable, buffer: OptimizedBuffer, deltaTime: number) => void;
153
154
  renderAfter?: (this: Renderable, buffer: OptimizedBuffer, deltaTime: number) => void;