@f5xc-salesdemos/pi-tui 18.24.0 → 18.25.2

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": "@f5xc-salesdemos/pi-tui",
4
- "version": "18.24.0",
4
+ "version": "18.25.2",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://github.com/f5xc-salesdemos/xcsh",
7
7
  "author": "Can Boluk",
@@ -37,8 +37,8 @@
37
37
  "fmt": "biome format --write ."
38
38
  },
39
39
  "dependencies": {
40
- "@f5xc-salesdemos/pi-natives": "18.24.0",
41
- "@f5xc-salesdemos/pi-utils": "18.24.0",
40
+ "@f5xc-salesdemos/pi-natives": "18.25.2",
41
+ "@f5xc-salesdemos/pi-utils": "18.25.2",
42
42
  "marked": "^17.0"
43
43
  },
44
44
  "devDependencies": {
@@ -146,7 +146,7 @@ export const TERMINAL_ID: TerminalId = (() => {
146
146
  if (caseEq(TERM_PROGRAM, "alacritty")) return "alacritty";
147
147
  }
148
148
 
149
- if (!!TERM && TERM.toLowerCase().includes("ghostty")) return "ghostty";
149
+ if (TERM?.toLowerCase().includes("ghostty")) return "ghostty";
150
150
 
151
151
  if (COLORTERM) {
152
152
  if (caseEq(COLORTERM, "truecolor") || caseEq(COLORTERM, "24bit")) return "trueColor";