@opentui/core 0.0.0-20251006-283f60d7 → 0.0.0-20251008-63d6b70d
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-hxktycf0.js → index-pxa2sv92.js} +12 -12
- package/{index-hxktycf0.js.map → index-pxa2sv92.js.map} +3 -3
- package/index.js +9 -4
- package/index.js.map +3 -3
- package/lib/scroll-acceleration.d.ts +1 -0
- package/package.json +7 -7
- package/renderables/ScrollBox.d.ts +2 -0
- package/testing.js +1 -1
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-20251008-63d6b70d",
|
|
8
8
|
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"bun-webgpu": "0.1.3",
|
|
54
54
|
"planck": "^1.4.2",
|
|
55
55
|
"three": "0.177.0",
|
|
56
|
-
"@opentui/core-darwin-x64": "0.0.0-
|
|
57
|
-
"@opentui/core-darwin-arm64": "0.0.0-
|
|
58
|
-
"@opentui/core-linux-x64": "0.0.0-
|
|
59
|
-
"@opentui/core-linux-arm64": "0.0.0-
|
|
60
|
-
"@opentui/core-win32-x64": "0.0.0-
|
|
61
|
-
"@opentui/core-win32-arm64": "0.0.0-
|
|
56
|
+
"@opentui/core-darwin-x64": "0.0.0-20251008-63d6b70d",
|
|
57
|
+
"@opentui/core-darwin-arm64": "0.0.0-20251008-63d6b70d",
|
|
58
|
+
"@opentui/core-linux-x64": "0.0.0-20251008-63d6b70d",
|
|
59
|
+
"@opentui/core-linux-arm64": "0.0.0-20251008-63d6b70d",
|
|
60
|
+
"@opentui/core-win32-x64": "0.0.0-20251008-63d6b70d",
|
|
61
|
+
"@opentui/core-win32-arm64": "0.0.0-20251008-63d6b70d"
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -98,6 +98,8 @@ export declare class ScrollBoxRenderable extends BoxRenderable {
|
|
|
98
98
|
set scrollbarOptions(options: ScrollBoxOptions["scrollbarOptions"]);
|
|
99
99
|
set verticalScrollbarOptions(options: ScrollBoxOptions["verticalScrollbarOptions"]);
|
|
100
100
|
set horizontalScrollbarOptions(options: ScrollBoxOptions["horizontalScrollbarOptions"]);
|
|
101
|
+
get scrollAcceleration(): ScrollAcceleration;
|
|
102
|
+
set scrollAcceleration(value: ScrollAcceleration);
|
|
101
103
|
protected destroySelf(): void;
|
|
102
104
|
}
|
|
103
105
|
export {};
|