@opentuah/core 0.1.77 → 0.1.78
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/index-cgvb25mm.js +4 -4
- package/index.js +1 -1
- package/package.json +7 -7
package/index-cgvb25mm.js
CHANGED
|
@@ -4085,7 +4085,7 @@ function visualizeRenderableTree(renderable, maxDepth = 10) {
|
|
|
4085
4085
|
}
|
|
4086
4086
|
|
|
4087
4087
|
// src/lib/styled-text.ts
|
|
4088
|
-
var BrandedStyledText = Symbol.for("@
|
|
4088
|
+
var BrandedStyledText = Symbol.for("@opentuah/core/StyledText");
|
|
4089
4089
|
function isStyledText(obj) {
|
|
4090
4090
|
return obj && obj[BrandedStyledText];
|
|
4091
4091
|
}
|
|
@@ -5120,7 +5120,7 @@ class ASCIIFontSelectionHelper {
|
|
|
5120
5120
|
}
|
|
5121
5121
|
|
|
5122
5122
|
// src/lib/singleton.ts
|
|
5123
|
-
var singletonCacheSymbol = Symbol.for("@
|
|
5123
|
+
var singletonCacheSymbol = Symbol.for("@opentuah/core/singleton");
|
|
5124
5124
|
function singleton(key, factory) {
|
|
5125
5125
|
const bag = globalThis[singletonCacheSymbol] ??= {};
|
|
5126
5126
|
if (!(key in bag)) {
|
|
@@ -10635,7 +10635,7 @@ function isSizeType(value) {
|
|
|
10635
10635
|
}
|
|
10636
10636
|
|
|
10637
10637
|
// src/Renderable.ts
|
|
10638
|
-
var BrandedRenderable = Symbol.for("@
|
|
10638
|
+
var BrandedRenderable = Symbol.for("@opentuah/core/Renderable");
|
|
10639
10639
|
var LayoutEvents;
|
|
10640
10640
|
((LayoutEvents2) => {
|
|
10641
10641
|
LayoutEvents2["LAYOUT_CHANGED"] = "layout-changed";
|
|
@@ -11869,7 +11869,7 @@ class RootRenderable extends Renderable {
|
|
|
11869
11869
|
|
|
11870
11870
|
// src/renderables/composition/vnode.ts
|
|
11871
11871
|
import util from "util";
|
|
11872
|
-
var BrandedVNode = Symbol.for("@
|
|
11872
|
+
var BrandedVNode = Symbol.for("@opentuah/core/VNode");
|
|
11873
11873
|
function isRenderableConstructor(value) {
|
|
11874
11874
|
return typeof value === "function" && value.prototype && Renderable.prototype.isPrototypeOf(value.prototype);
|
|
11875
11875
|
}
|
package/index.js
CHANGED
|
@@ -3064,7 +3064,7 @@ class CodeRenderable extends TextBufferRenderable {
|
|
|
3064
3064
|
}
|
|
3065
3065
|
}
|
|
3066
3066
|
// src/renderables/TextNode.ts
|
|
3067
|
-
var BrandedTextNodeRenderable = Symbol.for("@
|
|
3067
|
+
var BrandedTextNodeRenderable = Symbol.for("@opentuah/core/TextNodeRenderable");
|
|
3068
3068
|
function isTextNodeRenderable(obj) {
|
|
3069
3069
|
return !!obj?.[BrandedTextNodeRenderable];
|
|
3070
3070
|
}
|
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.1.
|
|
7
|
+
"version": "0.1.78",
|
|
8
8
|
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"bun-webgpu": "0.1.4",
|
|
58
58
|
"planck": "^1.4.2",
|
|
59
59
|
"three": "0.177.0",
|
|
60
|
-
"@opentuah/core-darwin-x64": "0.1.
|
|
61
|
-
"@opentuah/core-darwin-arm64": "0.1.
|
|
62
|
-
"@opentuah/core-linux-x64": "0.1.
|
|
63
|
-
"@opentuah/core-linux-arm64": "0.1.
|
|
64
|
-
"@opentuah/core-win32-x64": "0.1.
|
|
65
|
-
"@opentuah/core-win32-arm64": "0.1.
|
|
60
|
+
"@opentuah/core-darwin-x64": "0.1.78",
|
|
61
|
+
"@opentuah/core-darwin-arm64": "0.1.78",
|
|
62
|
+
"@opentuah/core-linux-x64": "0.1.78",
|
|
63
|
+
"@opentuah/core-linux-arm64": "0.1.78",
|
|
64
|
+
"@opentuah/core-win32-x64": "0.1.78",
|
|
65
|
+
"@opentuah/core-win32-arm64": "0.1.78"
|
|
66
66
|
}
|
|
67
67
|
}
|