@opentui/core 0.0.0-20251201-fe4cc80e → 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/{index-533e9nca.js → index-r6acnfwr.js} +1305 -1218
- package/{index-533e9nca.js.map → index-r6acnfwr.js.map} +5 -5
- package/index.js +25 -21
- package/index.js.map +5 -4
- package/lib/terminal-palette.d.ts +3 -3
- package/package.json +8 -8
- package/testing.js +1 -1
|
@@ -27,8 +27,8 @@ export declare class TerminalPalette implements TerminalPaletteDetector {
|
|
|
27
27
|
private writeFn;
|
|
28
28
|
private activeListeners;
|
|
29
29
|
private activeTimers;
|
|
30
|
-
private
|
|
31
|
-
constructor(stdin: NodeJS.ReadStream, stdout: NodeJS.WriteStream, writeFn?: WriteFunction,
|
|
30
|
+
private inLegacyTmux;
|
|
31
|
+
constructor(stdin: NodeJS.ReadStream, stdout: NodeJS.WriteStream, writeFn?: WriteFunction, isLegacyTmux?: boolean);
|
|
32
32
|
/**
|
|
33
33
|
* Write an OSC sequence, wrapping for tmux if needed
|
|
34
34
|
*/
|
|
@@ -39,5 +39,5 @@ export declare class TerminalPalette implements TerminalPaletteDetector {
|
|
|
39
39
|
private querySpecialColors;
|
|
40
40
|
detect(options?: GetPaletteOptions): Promise<TerminalColors>;
|
|
41
41
|
}
|
|
42
|
-
export declare function createTerminalPalette(stdin: NodeJS.ReadStream, stdout: NodeJS.WriteStream, writeFn?: WriteFunction,
|
|
42
|
+
export declare function createTerminalPalette(stdin: NodeJS.ReadStream, stdout: NodeJS.WriteStream, writeFn?: WriteFunction, isLegacyTmux?: boolean): TerminalPaletteDetector;
|
|
43
43
|
export {};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"version": "0.0.0-
|
|
7
|
+
"version": "0.0.0-20251202-71dcabc4",
|
|
8
8
|
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"bun-ffi-structs": "0.1.2",
|
|
39
|
-
"bun-yoga": "^0.2.
|
|
39
|
+
"bun-yoga": "^0.2.10",
|
|
40
40
|
"diff": "8.0.2",
|
|
41
41
|
"jimp": "1.6.0"
|
|
42
42
|
},
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"bun-webgpu": "0.1.4",
|
|
57
57
|
"planck": "^1.4.2",
|
|
58
58
|
"three": "0.177.0",
|
|
59
|
-
"@opentui/core-darwin-x64": "0.0.0-
|
|
60
|
-
"@opentui/core-darwin-arm64": "0.0.0-
|
|
61
|
-
"@opentui/core-linux-x64": "0.0.0-
|
|
62
|
-
"@opentui/core-linux-arm64": "0.0.0-
|
|
63
|
-
"@opentui/core-win32-x64": "0.0.0-
|
|
64
|
-
"@opentui/core-win32-arm64": "0.0.0-
|
|
59
|
+
"@opentui/core-darwin-x64": "0.0.0-20251202-71dcabc4",
|
|
60
|
+
"@opentui/core-darwin-arm64": "0.0.0-20251202-71dcabc4",
|
|
61
|
+
"@opentui/core-linux-x64": "0.0.0-20251202-71dcabc4",
|
|
62
|
+
"@opentui/core-linux-arm64": "0.0.0-20251202-71dcabc4",
|
|
63
|
+
"@opentui/core-win32-x64": "0.0.0-20251202-71dcabc4",
|
|
64
|
+
"@opentui/core-win32-arm64": "0.0.0-20251202-71dcabc4"
|
|
65
65
|
}
|
|
66
66
|
}
|