@opentui/core 0.1.80 → 0.1.81
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/README.md +1 -2
- package/{index-vnvba6q9.js → index-ve2seej0.js} +9 -2
- package/{index-vnvba6q9.js.map → index-ve2seej0.js.map} +3 -3
- package/index.js +59 -51
- package/index.js.map +4 -4
- package/package.json +8 -8
- package/renderables/Textarea.d.ts +1 -1
- package/testing.js +1 -1
package/3d.js
CHANGED
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# OpenTUI Core
|
|
2
2
|
|
|
3
|
-
OpenTUI
|
|
4
|
-
development and is not ready for production use.
|
|
3
|
+
OpenTUI is a native terminal UI core written in Zig with TypeScript bindings. The native core exposes a C ABI and can be used from any language. OpenTUI powers OpenCode in production today and will also power terminal.shop. It is an extensible core with a focus on correctness, stability, and high performance. It provides a component-based architecture with flexible layout capabilities, allowing you to create complex terminal applications.
|
|
5
4
|
|
|
6
5
|
## Documentation
|
|
7
6
|
|
|
@@ -17127,6 +17127,13 @@ Captured output:
|
|
|
17127
17127
|
}
|
|
17128
17128
|
internalPause() {
|
|
17129
17129
|
this._isRunning = false;
|
|
17130
|
+
if (this.renderTimeout) {
|
|
17131
|
+
clearTimeout(this.renderTimeout);
|
|
17132
|
+
this.renderTimeout = null;
|
|
17133
|
+
}
|
|
17134
|
+
if (!this.rendering) {
|
|
17135
|
+
this.resolveIdleIfNeeded();
|
|
17136
|
+
}
|
|
17130
17137
|
}
|
|
17131
17138
|
stop() {
|
|
17132
17139
|
this._controlState = "explicit_stopped" /* EXPLICIT_STOPPED */;
|
|
@@ -17504,5 +17511,5 @@ Captured output:
|
|
|
17504
17511
|
|
|
17505
17512
|
export { __toESM, __commonJS, __export, __require, Edge, Gutter, MeasureMode, exports_src, isValidBorderStyle, parseBorderStyle, BorderChars, getBorderFromSides, getBorderSides, borderCharsToArray, BorderCharArrays, nonAlphanumericKeys, parseKeypress, KeyEvent, PasteEvent, KeyHandler, InternalKeyHandler, RGBA, hexToRgb, rgbToHex, hsvToRgb, parseColor, fonts, measureText, getCharacterPositions, coordinateToCharacterIndex, renderFontToFrameBuffer, TextAttributes, ATTRIBUTE_BASE_BITS, ATTRIBUTE_BASE_MASK, getBaseAttributes, DebugOverlayCorner, createTextAttributes, attributesWithLink, getLinkId, visualizeRenderableTree, isStyledText, StyledText, stringToStyledText, black, red, green, yellow, blue, magenta, cyan, white, brightBlack, brightRed, brightGreen, brightYellow, brightBlue, brightMagenta, brightCyan, brightWhite, bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite, bold, italic, underline, strikethrough, dim, reverse, blink, fg, bg, link, t, hastToStyledText, LinearScrollAccel, MacOSScrollAccel, StdinBuffer, parseAlign, parseAlignItems, parseBoxSizing, parseDimension, parseDirection, parseDisplay, parseEdge, parseFlexDirection, parseGutter, parseJustify, parseLogLevel, parseMeasureMode, parseOverflow, parsePositionType, parseUnit, parseWrap, MouseParser, Selection, convertGlobalToLocalSelection, ASCIIFontSelectionHelper, envRegistry, registerEnvVar, clearEnvCache, generateEnvMarkdown, generateEnvColored, env, treeSitterToTextChunks, treeSitterToStyledText, addDefaultParsers, TreeSitterClient, DataPathsManager, getDataPaths, extToFiletype, pathToFiletype, main, getTreeSitterClient, ExtmarksController, createExtmarksController, TerminalPalette, createTerminalPalette, TextBuffer, SpanInfoStruct, LogLevel2 as LogLevel, setRenderLibPath, resolveRenderLib, OptimizedBuffer, h, isVNode, maybeMakeRenderable, wrapWithDelegates, instantiate, delegate, isValidPercentage, LayoutEvents, RenderableEvents, isRenderable, BaseRenderable, Renderable, RootRenderable, ANSI, defaultKeyAliases, mergeKeyAliases, mergeKeyBindings, getKeyBindingKey, buildKeyBindingsMap, capture, ConsolePosition, TerminalConsole, getObjectsInViewport, buildKittyKeyboardFlags, MouseEvent, MouseButton, createCliRenderer, CliRenderEvents, RendererControlState, CliRenderer };
|
|
17506
17513
|
|
|
17507
|
-
//# debugId=
|
|
17508
|
-
//# sourceMappingURL=index-
|
|
17514
|
+
//# debugId=EFA968BC34E6ECA564756E2164756E21
|
|
17515
|
+
//# sourceMappingURL=index-ve2seej0.js.map
|