@fairyhunter13/opentui-core 0.1.96 → 0.1.98
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/NativeSpanFeed.d.ts +2 -2
- package/buffer.d.ts +2 -2
- package/index-0dqa35pr.js.map +7 -7
- package/{index-6e2y44j7.js → index-8bjbbqdx.js} +2 -2
- package/index-8bjbbqdx.js.map +10 -0
- package/{index-dbzy9p5e.js → index-ac0yr0h5.js} +4 -4
- package/{index-dbzy9p5e.js.map → index-ac0yr0h5.js.map} +8 -8
- package/index.js +1 -1
- package/lib/detect-links.d.ts +2 -2
- package/lib/stdin-parser.d.ts +5 -5
- package/lib/terminal-palette.d.ts +1 -1
- package/lib/tree-sitter/default-parsers.d.ts +1 -1
- package/package.json +7 -7
- package/plugins/core-slot.d.ts +5 -5
- package/plugins/registry.d.ts +2 -2
- package/plugins/types.d.ts +1 -1
- package/post/effects.d.ts +1 -1
- package/renderables/TextTable.d.ts +7 -7
- package/renderables/TimeToFirstDraw.d.ts +4 -4
- package/runtime-plugin-support.d.ts +1 -1
- package/runtime-plugin-support.js +2 -2
- package/runtime-plugin-support.js.map +1 -1
- package/runtime-plugin.js +2 -2
- package/testing/manual-clock.d.ts +1 -1
- package/index-6e2y44j7.js.map +0 -10
package/NativeSpanFeed.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Pointer } from "bun:ffi";
|
|
2
|
-
import type { NativeSpanFeedOptions } from "./zig-structs";
|
|
3
|
-
export type { GrowthPolicy, NativeSpanFeedOptions, NativeSpanFeedStats } from "./zig-structs";
|
|
2
|
+
import type { NativeSpanFeedOptions } from "./zig-structs.js";
|
|
3
|
+
export type { GrowthPolicy, NativeSpanFeedOptions, NativeSpanFeedStats } from "./zig-structs.js";
|
|
4
4
|
export type DataHandler = (data: Uint8Array) => void | Promise<void>;
|
|
5
5
|
/**
|
|
6
6
|
* Zero-copy wrapper over Zig memory; not a full stream interface.
|
package/buffer.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RGBA } from "./lib";
|
|
2
|
-
import { type RenderLib } from "./zig";
|
|
1
|
+
import { RGBA } from "./lib/index.js";
|
|
2
|
+
import { type RenderLib } from "./zig.js";
|
|
3
3
|
import { type Pointer } from "bun:ffi";
|
|
4
4
|
import { type BorderStyle, type BorderSides } from "./lib/index.js";
|
|
5
5
|
import { TargetChannel, type WidthMethod, type CapturedLine } from "./types.js";
|