@f5-sales-demo/pi-tui 19.51.2 → 19.51.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5-sales-demo/pi-tui",
4
- "version": "19.51.2",
4
+ "version": "19.51.3",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -37,8 +37,8 @@
37
37
  "fmt": "biome format --write ."
38
38
  },
39
39
  "dependencies": {
40
- "@f5-sales-demo/pi-natives": "workspace:*",
41
- "@f5-sales-demo/pi-utils": "workspace:*",
40
+ "@f5-sales-demo/pi-natives": "19.51.3",
41
+ "@f5-sales-demo/pi-utils": "19.51.3",
42
42
  "marked": "^17.0"
43
43
  },
44
44
  "devDependencies": {
@@ -1,8 +1,8 @@
1
1
  import * as fs from "node:fs";
2
2
  import * as os from "node:os";
3
3
  import * as path from "node:path";
4
- import { fuzzyFind } from "@f5xc-salesdemos/pi-natives";
5
- import { getProjectDir } from "@f5xc-salesdemos/pi-utils";
4
+ import { fuzzyFind } from "@f5-sales-demo/pi-natives";
5
+ import { getProjectDir } from "@f5-sales-demo/pi-utils";
6
6
 
7
7
  const PATH_DELIMITERS = new Set([" ", "\t", '"', "'", "="]);
8
8
 
@@ -1,4 +1,4 @@
1
- import { $flag, getProjectDir, logger } from "@f5xc-salesdemos/pi-utils";
1
+ import { $flag, getProjectDir, logger } from "@f5-sales-demo/pi-utils";
2
2
  import type { AutocompleteProvider, CombinedAutocompleteProvider } from "../autocomplete";
3
3
  import { BracketedPasteHandler } from "../bracketed-paste";
4
4
  import { getKeybindings, type KeybindingsManager } from "../keybindings";
package/src/keys.ts CHANGED
@@ -18,12 +18,12 @@
18
18
  * - isKittyProtocolActive() - Query global Kitty protocol state
19
19
  */
20
20
 
21
- import type { KeyEventType } from "@f5xc-salesdemos/pi-natives";
21
+ import type { KeyEventType } from "@f5-sales-demo/pi-natives";
22
22
  import {
23
23
  matchesKey as matchesKeyNative,
24
24
  parseKey as parseKeyNative,
25
25
  parseKittySequence as parseKittySequenceNative,
26
- } from "@f5xc-salesdemos/pi-natives";
26
+ } from "@f5-sales-demo/pi-natives";
27
27
 
28
28
  // =============================================================================
29
29
  // Platform Detection
@@ -1,5 +1,5 @@
1
- import { encodeSixel } from "@f5xc-salesdemos/pi-natives";
2
- import { $env } from "@f5xc-salesdemos/pi-utils";
1
+ import { encodeSixel } from "@f5-sales-demo/pi-natives";
2
+ import { $env } from "@f5-sales-demo/pi-utils";
3
3
 
4
4
  export enum ImageProtocol {
5
5
  Kitty = "\x1b_G",
package/src/terminal.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { dlopen, FFIType, ptr } from "bun:ffi";
2
2
  import * as fs from "node:fs";
3
- import { $env, logger } from "@f5xc-salesdemos/pi-utils";
3
+ import { $env, logger } from "@f5-sales-demo/pi-utils";
4
4
  import { setKittyProtocolActive } from "./keys";
5
5
  import { StdinBuffer } from "./stdin-buffer";
6
6
 
package/src/tui.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  */
4
4
  import * as fs from "node:fs";
5
5
  import * as path from "node:path";
6
- import { $flag, getDebugLogPath } from "@f5xc-salesdemos/pi-utils";
6
+ import { $flag, getDebugLogPath } from "@f5-sales-demo/pi-utils";
7
7
  import { isKeyRelease, matchesKey } from "./keys";
8
8
  import type { Terminal } from "./terminal";
9
9
  import { ImageProtocol, setCellDimensions, setTerminalImageProtocol, TERMINAL } from "./terminal-capabilities";
package/src/utils.ts CHANGED
@@ -1,15 +1,15 @@
1
- import type { Ellipsis, ExtractSegmentsResult, SliceResult } from "@f5xc-salesdemos/pi-natives";
1
+ import type { Ellipsis, ExtractSegmentsResult, SliceResult } from "@f5-sales-demo/pi-natives";
2
2
  import {
3
3
  extractSegments as nativeExtractSegments,
4
4
  sliceWithWidth as nativeSliceWithWidth,
5
5
  truncateToWidth as nativeTruncateToWidth,
6
6
  wrapTextWithAnsi as nativeWrapTextWithAnsi,
7
- } from "@f5xc-salesdemos/pi-natives";
8
- import { getDefaultTabWidth, getIndentation } from "@f5xc-salesdemos/pi-utils";
7
+ } from "@f5-sales-demo/pi-natives";
8
+ import { getDefaultTabWidth, getIndentation } from "@f5-sales-demo/pi-utils";
9
9
 
10
- export { Ellipsis } from "@f5xc-salesdemos/pi-natives";
10
+ export { Ellipsis } from "@f5-sales-demo/pi-natives";
11
11
 
12
- export { getDefaultTabWidth, getIndentation } from "@f5xc-salesdemos/pi-utils";
12
+ export { getDefaultTabWidth, getIndentation } from "@f5-sales-demo/pi-utils";
13
13
 
14
14
  export function sliceWithWidth(line: string, startCol: number, length: number, strict?: boolean | null): SliceResult {
15
15
  return nativeSliceWithWidth(line, startCol, length, strict, getDefaultTabWidth());