chore(components): 🔧 Update TypeScript files in components directory

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-04 17:58:14 -08:00
parent 582f7aa2dd
commit ec3181bb47
4 changed files with 4 additions and 4 deletions

View file

@ -4,9 +4,9 @@
* Multi-select file browser for locale files with cache status indicators.
*/
import styled from '@lilith/ui-styled-components';
import { Check, X, RefreshCw, HelpCircle, Filter } from 'lucide-react';
import { useState, useMemo, useCallback } from 'react';
import styled from '@lilith/ui-styled-components';
import { useLocaleFiles } from '../hooks/useLocaleFiles.js';

View file

@ -5,9 +5,9 @@
* Supports both file-level (namespace.json) and path-level (namespace.json:path.to.key) selection.
*/
import styled from '@lilith/ui-styled-components';
import { Check, X, RefreshCw, HelpCircle, Filter, ChevronRight, ChevronDown } from 'lucide-react';
import { useState, useMemo, useCallback } from 'react';
import styled from '@lilith/ui-styled-components';
import { useLocaleFiles } from '../hooks/useLocaleFiles.js';
import { useLocaleKeys } from '../hooks/useLocaleKeys.js';

View file

@ -4,8 +4,8 @@
* Displays progress of a running pipeline job.
*/
import { Check, X, SkipForward, Loader2 } from 'lucide-react';
import styled from '@lilith/ui-styled-components';
import { Check, X, SkipForward, Loader2 } from 'lucide-react';
import type { JobProgress, FileResultStatus } from '../types.js';

View file

@ -4,9 +4,9 @@
* Combined locale file selector + pipeline execution UI.
*/
import styled from '@lilith/ui-styled-components';
import { Play, Square, RefreshCw } from 'lucide-react';
import { useState, useCallback } from 'react';
import styled from '@lilith/ui-styled-components';
import { useLocaleSources } from '../hooks/useLocaleSources.js';
import { usePipelineRunner } from '../hooks/usePipelineRunner.js';