@opentui/core 0.5.8 → 0.5.9
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/{chunk-bun-2956gvaq.js → chunk-bun-b0662dgp.js} +11 -10
- package/{chunk-bun-2956gvaq.js.map → chunk-bun-b0662dgp.js.map} +4 -4
- package/{chunk-bun-b3exa82d.js → chunk-bun-jxfx3h5k.js} +21 -9
- package/chunk-bun-jxfx3h5k.js.map +32 -0
- package/{chunk-node-kr27pp2p.js → chunk-node-dcyj0dm5.js} +21 -9
- package/chunk-node-dcyj0dm5.js.map +32 -0
- package/{chunk-node-mfda59vq.js → chunk-node-zcz10bhr.js} +11 -10
- package/{chunk-node-mfda59vq.js.map → chunk-node-zcz10bhr.js.map} +4 -4
- package/edit-buffer.d.ts +2 -0
- package/index.bun.js +44 -6
- package/index.bun.js.map +4 -4
- package/index.node.js +44 -6
- package/index.node.js.map +4 -4
- package/package.json +9 -9
- package/post/effects.d.ts +2 -0
- package/testing.bun.js +2 -2
- package/testing.js +2 -2
- package/text-buffer.d.ts +0 -1
- package/yoga.bun.js +1 -1
- package/yoga.js +1 -1
- package/zig.d.ts +1 -0
- package/chunk-bun-b3exa82d.js.map +0 -32
- package/chunk-node-kr27pp2p.js.map +0 -32
|
@@ -11555,7 +11555,6 @@ class TextBuffer {
|
|
|
11555
11555
|
bufferPtr;
|
|
11556
11556
|
_length = 0;
|
|
11557
11557
|
_byteSize = 0;
|
|
11558
|
-
_lineInfo;
|
|
11559
11558
|
_destroyed = false;
|
|
11560
11559
|
_syntaxStyle;
|
|
11561
11560
|
_textBytes;
|
|
@@ -11584,7 +11583,6 @@ class TextBuffer {
|
|
|
11584
11583
|
this.lib.textBufferSetTextFromMem(this.bufferPtr, this._memId);
|
|
11585
11584
|
this._length = this.lib.textBufferGetLength(this.bufferPtr);
|
|
11586
11585
|
this._byteSize = this.lib.textBufferGetByteSize(this.bufferPtr);
|
|
11587
|
-
this._lineInfo = undefined;
|
|
11588
11586
|
this._appendedChunks = [];
|
|
11589
11587
|
}
|
|
11590
11588
|
append(text) {
|
|
@@ -11594,7 +11592,6 @@ class TextBuffer {
|
|
|
11594
11592
|
this.lib.textBufferAppend(this.bufferPtr, textBytes);
|
|
11595
11593
|
this._length = this.lib.textBufferGetLength(this.bufferPtr);
|
|
11596
11594
|
this._byteSize = this.lib.textBufferGetByteSize(this.bufferPtr);
|
|
11597
|
-
this._lineInfo = undefined;
|
|
11598
11595
|
}
|
|
11599
11596
|
loadFile(path3) {
|
|
11600
11597
|
this.guard();
|
|
@@ -11604,7 +11601,6 @@ class TextBuffer {
|
|
|
11604
11601
|
}
|
|
11605
11602
|
this._length = this.lib.textBufferGetLength(this.bufferPtr);
|
|
11606
11603
|
this._byteSize = this.lib.textBufferGetByteSize(this.bufferPtr);
|
|
11607
|
-
this._lineInfo = undefined;
|
|
11608
11604
|
this._textBytes = undefined;
|
|
11609
11605
|
}
|
|
11610
11606
|
setStyledText(text) {
|
|
@@ -11612,7 +11608,6 @@ class TextBuffer {
|
|
|
11612
11608
|
this.lib.textBufferSetStyledText(this.bufferPtr, text.chunks);
|
|
11613
11609
|
this._length = this.lib.textBufferGetLength(this.bufferPtr);
|
|
11614
11610
|
this._byteSize = this.lib.textBufferGetByteSize(this.bufferPtr);
|
|
11615
|
-
this._lineInfo = undefined;
|
|
11616
11611
|
}
|
|
11617
11612
|
setDefaultFg(fg2) {
|
|
11618
11613
|
this.guard();
|
|
@@ -11707,6 +11702,7 @@ class TextBuffer {
|
|
|
11707
11702
|
setTabWidth(width) {
|
|
11708
11703
|
this.guard();
|
|
11709
11704
|
this.lib.textBufferSetTabWidth(this.bufferPtr, width);
|
|
11705
|
+
this._length = this.lib.textBufferGetLength(this.bufferPtr);
|
|
11710
11706
|
}
|
|
11711
11707
|
getTabWidth() {
|
|
11712
11708
|
this.guard();
|
|
@@ -11717,7 +11713,6 @@ class TextBuffer {
|
|
|
11717
11713
|
this.lib.textBufferClear(this.bufferPtr);
|
|
11718
11714
|
this._length = 0;
|
|
11719
11715
|
this._byteSize = 0;
|
|
11720
|
-
this._lineInfo = undefined;
|
|
11721
11716
|
this._textBytes = undefined;
|
|
11722
11717
|
this._appendedChunks = [];
|
|
11723
11718
|
}
|
|
@@ -11726,7 +11721,6 @@ class TextBuffer {
|
|
|
11726
11721
|
this.lib.textBufferReset(this.bufferPtr);
|
|
11727
11722
|
this._length = 0;
|
|
11728
11723
|
this._byteSize = 0;
|
|
11729
|
-
this._lineInfo = undefined;
|
|
11730
11724
|
this._textBytes = undefined;
|
|
11731
11725
|
this._memId = undefined;
|
|
11732
11726
|
this._appendedChunks = [];
|
|
@@ -14412,7 +14406,7 @@ function getOpenTUILib(libPath) {
|
|
|
14412
14406
|
},
|
|
14413
14407
|
editorViewGetViewport: {
|
|
14414
14408
|
args: ["u32", "buffer", "buffer", "buffer", "buffer"],
|
|
14415
|
-
returns: "
|
|
14409
|
+
returns: "bool"
|
|
14416
14410
|
},
|
|
14417
14411
|
editorViewSetScrollMargin: {
|
|
14418
14412
|
args: ["u32", "f32"],
|
|
@@ -14542,6 +14536,10 @@ function getOpenTUILib(libPath) {
|
|
|
14542
14536
|
args: ["u32"],
|
|
14543
14537
|
returns: "u32"
|
|
14544
14538
|
},
|
|
14539
|
+
editBufferSetTabWidth: {
|
|
14540
|
+
args: ["u32", "u8"],
|
|
14541
|
+
returns: "void"
|
|
14542
|
+
},
|
|
14545
14543
|
editBufferDebugLogRope: {
|
|
14546
14544
|
args: ["u32"],
|
|
14547
14545
|
returns: "void"
|
|
@@ -16872,6 +16870,9 @@ class FFIRenderLib {
|
|
|
16872
16870
|
}
|
|
16873
16871
|
return result;
|
|
16874
16872
|
}
|
|
16873
|
+
editBufferSetTabWidth(buffer, width) {
|
|
16874
|
+
this.opentui.symbols.editBufferSetTabWidth(buffer, width);
|
|
16875
|
+
}
|
|
16875
16876
|
editBufferDebugLogRope(buffer) {
|
|
16876
16877
|
this.opentui.symbols.editBufferDebugLogRope(buffer);
|
|
16877
16878
|
}
|
|
@@ -18588,5 +18589,5 @@ var yoga_default = Yoga;
|
|
|
18588
18589
|
|
|
18589
18590
|
export { toArrayBuffer, singleton, envRegistry, registerEnvVar, clearEnvCache, generateEnvMarkdown, generateEnvColored, env, sleep, stringWidth2 as stringWidth, resolveBundledFilePath, DEFAULT_FOREGROUND_RGB, DEFAULT_BACKGROUND_RGB, normalizeIndexedColorIndex, ansi256IndexToRgb, RGBA, normalizeColorValue, hexToRgb, rgbToHex, hsvToRgb, parseColor, isValidBorderStyle, parseBorderStyle, BorderChars, getBorderFromSides, getBorderSides, borderCharsToArray, BorderCharArrays, KeyEvent, PasteEvent, KeyHandler, InternalKeyHandler, fonts, measureText, getCharacterPositions, coordinateToCharacterIndex, renderFontToFrameBuffer, TextAttributes, ATTRIBUTE_BASE_BITS, ATTRIBUTE_BASE_MASK, getBaseAttributes, DebugOverlayCorner, TargetChannel, 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, SystemClock, nonAlphanumericKeys, terminalNamedSingleStrokeKeys, parseKeypress, LinearScrollAccel, MacOSScrollAccel, parseAlign, parseAlignItems, parseBoxSizing, parseDimension, parseDirection, parseDisplay, parseEdge, parseFlexDirection, parseGutter, parseJustify, parseLogLevel, parseMeasureMode, parseOverflow, parsePositionType, parseUnit, parseWrap, MouseParser, Selection, convertGlobalToLocalSelection, ASCIIFontSelectionHelper, StdinParser, treeSitterToTextChunks, treeSitterToStyledText, addDefaultParsers, TreeSitterClient, DataPathsManager, getDataPaths, extensionToFiletype, basenameToFiletype, extToFiletype, pathToFiletype, infoStringToFiletype, getTreeSitterClient, destroyTreeSitterClient, ExtmarksController, createExtmarksController, TerminalPalette, createTerminalPalette, normalizeTerminalPalette, buildTerminalPaletteSignature, decodePasteBytes, stripAnsiSequences, createHostClipboard, createClipboard, ClipboardTarget, createRendererClipboardAdapter, Clipboard, detectLinks, OptimizedBuffer, TextBuffer, SpanInfoStruct, NativeAudioStreamFormat, NativeAudioStreamState, NativeAudioStreamStateNames, NativeAudioStreamCloseReason, NativeAudioStreamState2 as NativeAudioStreamState1, NativeAudioStreamCloseReason2 as NativeAudioStreamCloseReason1, NativeAudioStreamFormat2 as NativeAudioStreamFormat1, NativeClipboardOperationStatus, NativeClipboardStartStatus, NativeClipboardCancelStatus, NativeClipboardCopyStatus, NativeClipboardDestroyStatus, NativeClipboardShutdownStatus, LogLevel2 as LogLevel, NativeMeasureTargetKind, setRenderLibPath, resolveRenderLib, Align, BoxSizing, Dimension, Direction, Display, Edge, Errata, ExperimentalFeature, FlexDirection, Gutter, Justify, LogLevel as LogLevel1, MeasureMode, NodeType, Overflow, PositionType, Unit, Wrap, ALIGN_AUTO, ALIGN_FLEX_START, ALIGN_CENTER, ALIGN_FLEX_END, ALIGN_STRETCH, ALIGN_BASELINE, ALIGN_SPACE_BETWEEN, ALIGN_SPACE_AROUND, ALIGN_SPACE_EVENLY, BOX_SIZING_BORDER_BOX, BOX_SIZING_CONTENT_BOX, DIMENSION_WIDTH, DIMENSION_HEIGHT, DIRECTION_INHERIT, DIRECTION_LTR, DIRECTION_RTL, DISPLAY_FLEX, DISPLAY_NONE, DISPLAY_CONTENTS, EDGE_LEFT, EDGE_TOP, EDGE_RIGHT, EDGE_BOTTOM, EDGE_START, EDGE_END, EDGE_HORIZONTAL, EDGE_VERTICAL, EDGE_ALL, ERRATA_NONE, ERRATA_STRETCH_FLEX_BASIS, ERRATA_ABSOLUTE_POSITION_WITHOUT_INSETS_EXCLUDES_PADDING, ERRATA_ABSOLUTE_PERCENT_AGAINST_INNER_SIZE, ERRATA_ALL, ERRATA_CLASSIC, EXPERIMENTAL_FEATURE_WEB_FLEX_BASIS, FLEX_DIRECTION_COLUMN, FLEX_DIRECTION_COLUMN_REVERSE, FLEX_DIRECTION_ROW, FLEX_DIRECTION_ROW_REVERSE, GUTTER_COLUMN, GUTTER_ROW, GUTTER_ALL, JUSTIFY_FLEX_START, JUSTIFY_CENTER, JUSTIFY_FLEX_END, JUSTIFY_SPACE_BETWEEN, JUSTIFY_SPACE_AROUND, JUSTIFY_SPACE_EVENLY, LOG_LEVEL_ERROR, LOG_LEVEL_WARN, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_VERBOSE, LOG_LEVEL_FATAL, MEASURE_MODE_UNDEFINED, MEASURE_MODE_EXACTLY, MEASURE_MODE_AT_MOST, NODE_TYPE_DEFAULT, NODE_TYPE_TEXT, OVERFLOW_VISIBLE, OVERFLOW_HIDDEN, OVERFLOW_SCROLL, POSITION_TYPE_STATIC, POSITION_TYPE_RELATIVE, POSITION_TYPE_ABSOLUTE, UNIT_UNDEFINED, UNIT_POINT, UNIT_PERCENT, UNIT_AUTO, WRAP_NO_WRAP, WRAP_WRAP, WRAP_WRAP_REVERSE, Config, Node, exports_yoga, yoga_default };
|
|
18590
18591
|
|
|
18591
|
-
//# debugId=
|
|
18592
|
-
//# sourceMappingURL=chunk-node-
|
|
18592
|
+
//# debugId=87E358DA2E4BBC1B64756E2164756E21
|
|
18593
|
+
//# sourceMappingURL=chunk-node-zcz10bhr.js.map
|