feat(03-03): add Científico tab to BiWorkspace with MiroFlowControl

- Added Brain icon import from lucide-react
- Added MiroFlowControl component import
- Added TabsTrigger for 'cientifico' tab with Brain icon
- Added TabsContent rendering MiroFlowControl component
- All existing tabs (overview, datasources, upload, datasets, charts, backups, staging, advanced) preserved
This commit is contained in:
Jonas Pacheco 2026-03-25 10:57:28 -03:00
parent e5b915e7e8
commit 4ceb407505
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,7 @@ import {
X,
Sparkles,
MessageSquare,
Brain,
} from "lucide-react";
import { Textarea } from "@/components/ui/textarea";
import {
@ -81,6 +82,7 @@ import {
Cell,
} from "recharts";
import { SupersetDashboard } from "@/components/SupersetDashboard";
import { MiroFlowControl } from "@/components/MiroFlowControl";
interface BiStats {
dataSources: number;
@ -2893,6 +2895,9 @@ export default function BiWorkspace() {
<TabsTrigger value="advanced" className="data-[state=active]:bg-[#c89b3c] data-[state=active]:text-[#1f334d] text-white/70">
<Settings className="w-4 h-4 mr-2" /> Insights
</TabsTrigger>
<TabsTrigger value="cientifico" className="data-[state=active]:bg-[#c89b3c] data-[state=active]:text-[#1f334d] text-white/70">
<Brain className="w-4 h-4 mr-2" /> Científico
</TabsTrigger>
</TabsList>
<TabsContent value="overview" className="mt-0">
@ -2936,6 +2941,9 @@ export default function BiWorkspace() {
<SupersetDashboard dashboardId="executive-summary" height="calc(100vh - 320px)" />
</div>
</TabsContent>
<TabsContent value="cientifico" className="mt-0">
<MiroFlowControl />
</TabsContent>
</Tabs>
</div>
</div>