ikie-cli 0.1.37 → 0.1.39
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/dist/theme.d.ts +1 -1
- package/dist/theme.js +2 -2
- package/package.json +1 -1
package/dist/theme.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare function drawBanner(model: string): void;
|
|
|
41
41
|
export declare function modeTag(mode: 'agent' | 'plan'): string;
|
|
42
42
|
/** Circular fill indicator for context usage. */
|
|
43
43
|
export declare function contextRing(pct: number): string;
|
|
44
|
-
/** True when the terminal supports VT100 escape sequences. */
|
|
44
|
+
/** True when the terminal supports VT100 escape sequences (cursor save/restore, etc). */
|
|
45
45
|
export declare const supportsVT: boolean;
|
|
46
46
|
declare const CH: {
|
|
47
47
|
tl: string;
|
package/dist/theme.js
CHANGED
|
@@ -280,8 +280,8 @@ export function contextRing(pct) {
|
|
|
280
280
|
return `${color(char)} ${color(`${Math.round(pct * 100)}%`)}`;
|
|
281
281
|
}
|
|
282
282
|
const IS_WIN = process.platform === 'win32';
|
|
283
|
-
/** True when the terminal supports VT100 escape sequences. */
|
|
284
|
-
export const supportsVT = !IS_WIN
|
|
283
|
+
/** True when the terminal supports VT100 escape sequences (cursor save/restore, etc). */
|
|
284
|
+
export const supportsVT = !IS_WIN;
|
|
285
285
|
const CH = IS_WIN
|
|
286
286
|
? { tl: '+-', prompt: '-> ', cont: '| ', arrow: '>', dot: 'o' }
|
|
287
287
|
: { tl: '╭─', prompt: '╰─❯', cont: '│ ', arrow: '❯', dot: '●' };
|