@fairyhunter13/opentui-core 0.1.132 → 0.1.134
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 -1
- package/buffer.d.ts +3 -0
- package/console.d.ts +3 -1
- package/{index-t54p24hr.js → index-ckgv87ep.js} +3 -3
- package/{index-t3rrpex7.js → index-n2b7w731.js} +558 -136
- package/index-n2b7w731.js.map +76 -0
- package/{index-gwfqqvw5.js → index-x59exf1c.js} +38 -13
- package/{index-gwfqqvw5.js.map → index-x59exf1c.js.map} +5 -5
- package/index.js +27 -3
- package/index.js.map +1 -1
- package/lib/RGBA.d.ts +27 -3
- package/lib/parse.keypress-kitty.d.ts +1 -0
- package/lib/parse.keypress.d.ts +1 -0
- package/lib/terminal-palette.d.ts +8 -0
- package/package.json +7 -7
- package/renderables/Select.d.ts +3 -1
- package/renderables/TabSelect.d.ts +3 -1
- package/renderables/Textarea.d.ts +5 -3
- package/renderer-theme-mode.d.ts +29 -0
- package/renderer.d.ts +12 -7
- package/runtime-plugin-support.js +3 -3
- package/runtime-plugin.js +3 -3
- package/testing.js +1 -1
- package/types.d.ts +1 -0
- package/zig-structs.d.ts +7 -1
- package/zig.d.ts +4 -0
- package/index-t3rrpex7.js.map +0 -75
- /package/{index-t54p24hr.js.map → index-ckgv87ep.js.map} +0 -0
- /package/lib/{keymapping.d.ts → keybinding.internal.d.ts} +0 -0
package/3d.js
CHANGED
package/Renderable.d.ts
CHANGED
package/buffer.d.ts
CHANGED
|
@@ -15,15 +15,18 @@ export declare class OptimizedBuffer {
|
|
|
15
15
|
private _widthMethod;
|
|
16
16
|
respectAlpha: boolean;
|
|
17
17
|
private _rawBuffers;
|
|
18
|
+
private _rawColorTags;
|
|
18
19
|
private _destroyed;
|
|
19
20
|
get ptr(): Pointer;
|
|
20
21
|
private guard;
|
|
22
|
+
private ensureRawBufferViews;
|
|
21
23
|
get buffers(): {
|
|
22
24
|
char: Uint32Array;
|
|
23
25
|
fg: Float32Array;
|
|
24
26
|
bg: Float32Array;
|
|
25
27
|
attributes: Uint32Array;
|
|
26
28
|
};
|
|
29
|
+
private get rawColorTags();
|
|
27
30
|
constructor(lib: RenderLib, ptr: Pointer, width: number, height: number, options: {
|
|
28
31
|
respectAlpha?: boolean;
|
|
29
32
|
id?: string;
|
package/console.d.ts
CHANGED
|
@@ -4,7 +4,8 @@ import type { ColorInput } from "./lib/RGBA.js";
|
|
|
4
4
|
import { OptimizedBuffer } from "./buffer.js";
|
|
5
5
|
import { type Clock } from "./lib/clock.js";
|
|
6
6
|
import { Capture } from "./lib/output.capture.js";
|
|
7
|
-
import { type KeyBinding as BaseKeyBinding
|
|
7
|
+
import { type KeyBinding as BaseKeyBinding } from "./lib/keybinding.internal.js";
|
|
8
|
+
type KeyAliasMap = Record<string, string>;
|
|
8
9
|
export declare const capture: Capture;
|
|
9
10
|
export declare enum ConsolePosition {
|
|
10
11
|
TOP = "top",
|
|
@@ -142,3 +143,4 @@ export declare class TerminalConsole extends EventEmitter {
|
|
|
142
143
|
};
|
|
143
144
|
private saveLogsToFile;
|
|
144
145
|
}
|
|
146
|
+
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
exports_src
|
|
4
|
-
} from "./index-
|
|
4
|
+
} from "./index-x59exf1c.js";
|
|
5
5
|
import {
|
|
6
6
|
__require
|
|
7
|
-
} from "./index-
|
|
7
|
+
} from "./index-n2b7w731.js";
|
|
8
8
|
|
|
9
9
|
// src/runtime-plugin.ts
|
|
10
10
|
import { existsSync, readFileSync, realpathSync } from "fs";
|
|
@@ -408,4 +408,4 @@ function createRuntimePlugin(input = {}) {
|
|
|
408
408
|
export { isCoreRuntimeModuleSpecifier, runtimeModuleIdForSpecifier, createRuntimePlugin };
|
|
409
409
|
|
|
410
410
|
//# debugId=127A9B143CE0234164756E2164756E21
|
|
411
|
-
//# sourceMappingURL=index-
|
|
411
|
+
//# sourceMappingURL=index-ckgv87ep.js.map
|