fix: api, AuthManager, initLoginForm, GraphViewManager — imports manquants dans search/ui/utils
All checks were successful
CI / lint (push) Successful in 12s
CI / security (push) Successful in 7s
CI / test (push) Successful in 17s
CI / build (push) Successful in 1s

This commit is contained in:
Bruno Charest 2026-05-29 11:58:04 -04:00
parent c88c359c09
commit 2004a49b2d
3 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,5 @@
/* ObsiGate — Search module */ /* ObsiGate — Search module */
import { api } from './auth.js';
import { state } from './state.js'; import { state } from './state.js';
import { safeCreateIcons } from './utils.js'; import { safeCreateIcons } from './utils.js';
import { showLoading, el, hideProgressBar, showWelcome } from './viewer.js'; import { showLoading, el, hideProgressBar, showWelcome } from './viewer.js';

View File

@ -1,8 +1,10 @@
/* ObsiGate — UI module */ /* ObsiGate — UI module */
import { api, AuthManager, initLoginForm } from './auth.js';
import { state } from './state.js'; import { state } from './state.js';
import { openFile, showWelcome } from './viewer.js'; import { openFile, showWelcome } from './viewer.js';
import { safeCreateIcons, getFileIcon, escapeHtml } from './utils.js'; import { safeCreateIcons, getFileIcon, escapeHtml } from './utils.js';
import { syncActiveFileTreeItem } from './sidebar.js'; import { syncActiveFileTreeItem } from './sidebar.js';
import { GraphViewManager } from './graph.js';
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Right Sidebar Manager // Right Sidebar Manager
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------

View File

@ -1,4 +1,5 @@
import { state } from './state.js'; import { state } from './state.js';
import { api } from './auth.js';
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// File extension → Lucide icon mapping // File extension → Lucide icon mapping