"use client"; import { ReactNode } from "react"; interface InlineParameterPanelProps { expanded: boolean; onToggle: () => void; children: ReactNode; nodeId: string; selected?: boolean; } /** * Collapsible parameter container for inline display within generation nodes. * Provides a chevron toggle button and smooth expand/collapse transitions. */ export function InlineParameterPanel({ expanded, onToggle, children, nodeId, selected = false, }: InlineParameterPanelProps) { return (
{/* Settings toggle button — no background when collapsed, floats below node edge */} {/* Collapsible content area */}
{children}
); }