feat: FlowPilot migration — Phase 1-9 + Phase 9 bug fixes + QA fixture harness #147

Merged
chihlasm merged 85 commits from feat/flowpilot-migration into main 2026-04-25 06:02:14 +00:00
Showing only changes of commit 5bcb7aa7c3 - Show all commits

View File

@@ -0,0 +1,22 @@
/**
* InlineNoTemplateDialog — chat-region placement wrapper for
* NoTemplateDialog. Renders above the composer (slide-up animation
* matching ProposalBanner), using the full chat-region width so the
* three decision cards fit side-by-side.
*/
import { NoTemplateDialog } from '@/components/pilot/script/NoTemplateDialog'
import type { ComponentProps } from 'react'
type Props = ComponentProps<typeof NoTemplateDialog>
export function InlineNoTemplateDialog(props: Props) {
return (
<div className="border-t border-default bg-bg-page animate-slide-up">
<div className="px-5 py-3">
<NoTemplateDialog {...props} />
</div>
</div>
)
}
export default InlineNoTemplateDialog