refactor(admin): split StepHeader, SDKSidebar, ScopeWizardTab, PIIRulesTab, ReviewExportStep, DocumentUploadSection components

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-04-17 12:32:45 +02:00
parent e3a1822883
commit d32ad81094
18 changed files with 2134 additions and 3046 deletions

View File

@@ -0,0 +1,16 @@
// =============================================================================
// STEP EXPLANATION PRESETS — merged index
// Combines Part1 (company-profile … einwilligungen) and
// Part2 (dsr … use-case-workshop) for backward-compatible re-export.
// =============================================================================
import type { StepTip } from './StepHeader'
import { STEP_EXPLANATIONS_PART1 } from './StepExplanationsPart1'
import { STEP_EXPLANATIONS_PART2 } from './StepExplanationsPart2'
type ExplanationEntry = { title: string; description: string; explanation: string; tips: StepTip[] }
export const STEP_EXPLANATIONS: Record<string, ExplanationEntry> = {
...STEP_EXPLANATIONS_PART1,
...STEP_EXPLANATIONS_PART2,
}