From 8fffe6bc226a6596e2c81f20f950bdd8e397bf9d Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 1 Feb 2026 15:08:42 -0800 Subject: [PATCH] =?UTF-8?q?chore(core):=20=F0=9F=94=A7=20Update=20TypeScri?= =?UTF-8?q?pt=20files=20in=20core=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/Dashboard.ts | 2 +- src/interactions/InteractionManager.ts | 2 +- src/widgets/HealthMonitor.ts | 2 +- src/widgets/ProgressPanel.ts | 2 +- src/widgets/RoadmapPanel.ts | 2 +- src/widgets/ServiceList.ts | 2 +- src/widgets/ServicePickerModal.ts | 2 +- src/widgets/ServiceSettingsModal.ts | 2 +- src/widgets/ShutdownModal.ts | 2 +- src/widgets/StatusBar.ts | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Dashboard.ts b/src/Dashboard.ts index 7e59674..581cd4b 100644 --- a/src/Dashboard.ts +++ b/src/Dashboard.ts @@ -1,4 +1,4 @@ -import * as blessed from 'blessed' +import blessed from 'blessed' import * as contrib from 'blessed-contrib' export interface DashboardOptions { diff --git a/src/interactions/InteractionManager.ts b/src/interactions/InteractionManager.ts index 03db074..8d7ace9 100644 --- a/src/interactions/InteractionManager.ts +++ b/src/interactions/InteractionManager.ts @@ -8,7 +8,7 @@ * - Scroll-into-view for list navigation */ -import * as blessed from 'blessed'; +import blessed from 'blessed'; import { hasScrolling, hasStylableBorder } from '../types/blessed-extensions'; // ============================================================================= diff --git a/src/widgets/HealthMonitor.ts b/src/widgets/HealthMonitor.ts index baa859c..fe94252 100644 --- a/src/widgets/HealthMonitor.ts +++ b/src/widgets/HealthMonitor.ts @@ -8,7 +8,7 @@ * - Scrollable content */ -import * as blessed from 'blessed' +import blessed from 'blessed' // ============================================================================= // Types diff --git a/src/widgets/ProgressPanel.ts b/src/widgets/ProgressPanel.ts index d702bff..9835dc9 100644 --- a/src/widgets/ProgressPanel.ts +++ b/src/widgets/ProgressPanel.ts @@ -8,7 +8,7 @@ * - Elapsed time tracking */ -import * as blessed from 'blessed' +import blessed from 'blessed' // ============================================================================= // Types diff --git a/src/widgets/RoadmapPanel.ts b/src/widgets/RoadmapPanel.ts index faf8306..b48a7ba 100644 --- a/src/widgets/RoadmapPanel.ts +++ b/src/widgets/RoadmapPanel.ts @@ -8,7 +8,7 @@ * - Auto-updating current phase */ -import * as blessed from 'blessed' +import blessed from 'blessed' // ============================================================================= // Types diff --git a/src/widgets/ServiceList.ts b/src/widgets/ServiceList.ts index cf4fcd6..a58e2dc 100644 --- a/src/widgets/ServiceList.ts +++ b/src/widgets/ServiceList.ts @@ -9,7 +9,7 @@ * - Status symbols and colors */ -import * as blessed from 'blessed' +import blessed from 'blessed' import type { ExtendedBoxElement } from '../types/blessed-extensions' import type { ServiceQueue } from '../types/service-queue' import { getServiceSymbol, getServiceColor } from '../types/service-queue' diff --git a/src/widgets/ServicePickerModal.ts b/src/widgets/ServicePickerModal.ts index 1a672a1..d925144 100644 --- a/src/widgets/ServicePickerModal.ts +++ b/src/widgets/ServicePickerModal.ts @@ -10,7 +10,7 @@ * - Shows service status with colored symbols */ -import * as blessed from 'blessed' +import blessed from 'blessed' import type { ExtendedBoxElement } from '../types/blessed-extensions' import type { ServiceStatus } from './ServiceList' import type { ServiceQueue } from '../types/service-queue' diff --git a/src/widgets/ServiceSettingsModal.ts b/src/widgets/ServiceSettingsModal.ts index 0f501df..1b6b842 100644 --- a/src/widgets/ServiceSettingsModal.ts +++ b/src/widgets/ServiceSettingsModal.ts @@ -7,7 +7,7 @@ * - Keyboard navigation for settings */ -import * as blessed from 'blessed' +import blessed from 'blessed' import type { ExtendedBoxElement } from '../types/blessed-extensions' // ============================================================================= diff --git a/src/widgets/ShutdownModal.ts b/src/widgets/ShutdownModal.ts index ca4adc4..1dad6dd 100644 --- a/src/widgets/ShutdownModal.ts +++ b/src/widgets/ShutdownModal.ts @@ -9,7 +9,7 @@ * - Proceeds to exit after all cleanup completes */ -import * as blessed from 'blessed' +import blessed from 'blessed' import type { ExtendedBoxElement } from '../types/blessed-extensions' // ============================================================================= diff --git a/src/widgets/StatusBar.ts b/src/widgets/StatusBar.ts index b5f8d03..6e73e69 100644 --- a/src/widgets/StatusBar.ts +++ b/src/widgets/StatusBar.ts @@ -1,4 +1,4 @@ -import * as blessed from 'blessed' +import blessed from 'blessed' export interface StatusBarOptions extends blessed.Widgets.BoxOptions { items?: string[]