From ec3181bb475460f88a9bdff06eeacda9dcca4ec4 Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 4 Feb 2026 17:58:14 -0800 Subject: [PATCH] =?UTF-8?q?chore(components):=20=F0=9F=94=A7=20Update=20Ty?= =?UTF-8?q?peScript=20files=20in=20components=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../locale-pipeline-admin/src/components/LocaleFileSelector.tsx | 2 +- .../locale-pipeline-admin/src/components/LocalePathSelector.tsx | 2 +- .../locale-pipeline-admin/src/components/PipelineProgress.tsx | 2 +- .../@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx b/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx index 4902bfa3d..353d5b118 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx @@ -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'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx b/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx index 3cc33243c..434f8459e 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx @@ -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'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx b/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx index 6612e41ef..ffadbb78c 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx @@ -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'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx b/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx index 310cf2256..f9b3abf23 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx @@ -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';