@opentui/core 0.5.0 → 0.5.1

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "index.node.js",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
7
- "version": "0.5.0",
7
+ "version": "0.5.1",
8
8
  "description": "OpenTUI is a TypeScript library on a native Zig core for building terminal user interfaces (TUIs)",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -75,13 +75,13 @@
75
75
  "web-tree-sitter": "0.25.10"
76
76
  },
77
77
  "optionalDependencies": {
78
- "@opentui/core-darwin-x64": "0.5.0",
79
- "@opentui/core-darwin-arm64": "0.5.0",
80
- "@opentui/core-linux-x64": "0.5.0",
81
- "@opentui/core-linux-arm64": "0.5.0",
82
- "@opentui/core-win32-x64": "0.5.0",
83
- "@opentui/core-win32-arm64": "0.5.0",
84
- "@opentui/core-linux-x64-musl": "0.5.0",
85
- "@opentui/core-linux-arm64-musl": "0.5.0"
78
+ "@opentui/core-darwin-x64": "0.5.1",
79
+ "@opentui/core-darwin-arm64": "0.5.1",
80
+ "@opentui/core-linux-x64": "0.5.1",
81
+ "@opentui/core-linux-arm64": "0.5.1",
82
+ "@opentui/core-win32-x64": "0.5.1",
83
+ "@opentui/core-win32-arm64": "0.5.1",
84
+ "@opentui/core-linux-x64-musl": "0.5.1",
85
+ "@opentui/core-linux-arm64-musl": "0.5.1"
86
86
  }
87
87
  }
package/testing.bun.js CHANGED
@@ -2,11 +2,11 @@
2
2
  import {
3
3
  ANSI,
4
4
  CliRenderer
5
- } from "./chunk-bun-v3e63tzw.js";
5
+ } from "./chunk-bun-8fkgaxc6.js";
6
6
  import {
7
7
  SystemClock,
8
8
  TreeSitterClient
9
- } from "./chunk-bun-ctxxvhwz.js";
9
+ } from "./chunk-bun-83ry0rzt.js";
10
10
 
11
11
  // src/testing/mock-keys.ts
12
12
  import { Buffer as Buffer2 } from "buffer";
package/testing.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  ANSI,
3
3
  CliRenderer
4
- } from "./chunk-node-1j69hr31.js";
4
+ } from "./chunk-node-0yw3x5m7.js";
5
5
  import {
6
6
  SystemClock,
7
7
  TreeSitterClient
8
- } from "./chunk-node-savhj5rp.js";
8
+ } from "./chunk-node-m23dbcww.js";
9
9
 
10
10
  // src/testing/mock-keys.ts
11
11
  import { Buffer as Buffer2 } from "node:buffer";
@@ -0,0 +1 @@
1
+ export {};
package/yoga.bun.js CHANGED
@@ -93,7 +93,7 @@ import {
93
93
  WRAP_WRAP_REVERSE,
94
94
  Wrap,
95
95
  yoga_default
96
- } from "./chunk-bun-ctxxvhwz.js";
96
+ } from "./chunk-bun-83ry0rzt.js";
97
97
  export {
98
98
  yoga_default as default,
99
99
  Wrap,
package/yoga.js CHANGED
@@ -92,7 +92,7 @@ import {
92
92
  WRAP_WRAP_REVERSE,
93
93
  Wrap,
94
94
  yoga_default
95
- } from "./chunk-node-savhj5rp.js";
95
+ } from "./chunk-node-m23dbcww.js";
96
96
  export {
97
97
  yoga_default as default,
98
98
  Wrap,
package/zig.d.ts CHANGED
@@ -510,6 +510,9 @@ export interface RenderLib extends AudioEngineLib {
510
510
  status: number;
511
511
  info: NativeImageInfo;
512
512
  };
513
+ imageRetainIccCache: () => void;
514
+ imageReleaseIccCache: () => void;
515
+ imageTestFailIccProfileCopyAllocationOnce: () => void;
513
516
  imageDecode: (data: Uint8Array) => {
514
517
  status: number;
515
518
  handle: ImageHandle | null;
@@ -523,6 +526,7 @@ export interface RenderLib extends AudioEngineLib {
523
526
  status: number;
524
527
  info: NativeImageInfo;
525
528
  };
529
+ imageMaterialize: (image: ImageHandle) => number;
526
530
  imageGetPixelsPtr: (image: ImageHandle) => Pointer | null;
527
531
  imageClone: (image: ImageHandle) => {
528
532
  status: number;