@oh-my-pi/pi-tui 16.1.1 → 16.1.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 +3 -3
- package/src/terminal.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-tui",
|
|
4
|
-
"version": "16.1.
|
|
4
|
+
"version": "16.1.3",
|
|
5
5
|
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"fmt": "biome format --write ."
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@oh-my-pi/pi-natives": "16.1.
|
|
41
|
-
"@oh-my-pi/pi-utils": "16.1.
|
|
40
|
+
"@oh-my-pi/pi-natives": "16.1.3",
|
|
41
|
+
"@oh-my-pi/pi-utils": "16.1.3",
|
|
42
42
|
"lru-cache": "11.5.1",
|
|
43
43
|
"marked": "^18.0.5"
|
|
44
44
|
},
|
package/src/terminal.ts
CHANGED
|
@@ -437,7 +437,7 @@ export class ProcessTerminal implements Terminal {
|
|
|
437
437
|
#reportedRows?: number;
|
|
438
438
|
#osc11PollTimer?: Timer;
|
|
439
439
|
#mode2031DebounceTimer?: Timer;
|
|
440
|
-
#progressTimer?:
|
|
440
|
+
#progressTimer?: Timer;
|
|
441
441
|
|
|
442
442
|
get kittyProtocolActive(): boolean {
|
|
443
443
|
return this.#kittyProtocolActive;
|