@opentui/core 0.0.0-20250908-4906ddad
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/SpriteResourceManager.d.ts +74 -0
- package/3d/SpriteUtils.d.ts +13 -0
- package/3d/TextureUtils.d.ts +24 -0
- package/3d/WGPURenderer.d.ts +59 -0
- package/3d/animation/ExplodingSpriteEffect.d.ts +71 -0
- package/3d/animation/PhysicsExplodingSpriteEffect.d.ts +76 -0
- package/3d/animation/SpriteAnimator.d.ts +124 -0
- package/3d/animation/SpriteParticleGenerator.d.ts +62 -0
- package/3d/canvas.d.ts +42 -0
- package/3d/index.d.ts +11 -0
- package/3d/physics/PlanckPhysicsAdapter.d.ts +19 -0
- package/3d/physics/RapierPhysicsAdapter.d.ts +19 -0
- package/3d/physics/physics-interface.d.ts +27 -0
- package/3d.d.ts +2 -0
- package/3d.js +33847 -0
- package/3d.js.map +154 -0
- package/LICENSE +21 -0
- package/README.md +43 -0
- package/Renderable.d.ts +266 -0
- package/animation/Timeline.d.ts +125 -0
- package/ansi.d.ts +28 -0
- package/buffer.d.ts +74 -0
- package/console.d.ts +86 -0
- package/index-d6kwx5pm.js +8837 -0
- package/index-d6kwx5pm.js.map +36 -0
- package/index.d.ts +12 -0
- package/index.js +3721 -0
- package/index.js.map +23 -0
- package/lib/KeyHandler.d.ts +11 -0
- package/lib/RGBA.d.ts +24 -0
- package/lib/TrackedNode.d.ts +36 -0
- package/lib/ascii.font.d.ts +301 -0
- package/lib/border.d.ts +47 -0
- package/lib/hast-styled-text.d.ts +38 -0
- package/lib/index.d.ts +11 -0
- package/lib/output.capture.d.ts +24 -0
- package/lib/parse.keypress.d.ts +14 -0
- package/lib/parse.mouse.d.ts +23 -0
- package/lib/selection.d.ts +63 -0
- package/lib/styled-text.d.ts +73 -0
- package/lib/word-jumps.d.ts +2 -0
- package/lib/yoga.options.d.ts +31 -0
- package/package.json +48 -0
- package/post/filters.d.ts +105 -0
- package/renderables/ASCIIFont.d.ts +43 -0
- package/renderables/Box.d.ts +70 -0
- package/renderables/FrameBuffer.d.ts +16 -0
- package/renderables/Input.d.ts +70 -0
- package/renderables/ScrollBar.d.ts +77 -0
- package/renderables/ScrollBox.d.ts +82 -0
- package/renderables/Select.d.ts +102 -0
- package/renderables/Slider.d.ts +31 -0
- package/renderables/TabSelect.d.ts +86 -0
- package/renderables/Text.d.ts +72 -0
- package/renderables/composition/VRenderable.d.ts +16 -0
- package/renderables/composition/constructs.d.ts +12 -0
- package/renderables/composition/vnode.d.ts +46 -0
- package/renderables/index.d.ts +12 -0
- package/renderer.d.ts +232 -0
- package/singleton.d.ts +5 -0
- package/text-buffer.d.ts +52 -0
- package/types.d.ts +56 -0
- package/utils.d.ts +10 -0
- package/zig.d.ts +110 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./Renderable";
|
|
2
|
+
export * from "./types";
|
|
3
|
+
export * from "./utils";
|
|
4
|
+
export * from "./buffer";
|
|
5
|
+
export * from "./text-buffer";
|
|
6
|
+
export * from "./post/filters";
|
|
7
|
+
export * from "./animation/Timeline";
|
|
8
|
+
export * from "./lib";
|
|
9
|
+
export * from "./renderer";
|
|
10
|
+
export * from "./renderables";
|
|
11
|
+
export * from "./zig";
|
|
12
|
+
export * from "./console";
|