feat(ui): enhance agent interface with modal viewer and improved icon picker

- Add AgentRunOutputViewer modal component for inline run preview
- Implement IconPicker component with expanded icon selection
- Refactor AgentRunsList to use modal instead of full-page navigation
- Improve CreateAgent form layout with better grid structure
- Update agent icon system to support wider range of icons
- Enhance UI components with better animations and styling
- Add scroll-area component for better content scrolling
- Remove unused AgentRunView in favor of modal approach
This commit is contained in:
Mufeed VH
2025-06-25 01:31:24 +05:30
parent 5d69b449be
commit e878be2faa
16 changed files with 1608 additions and 300 deletions

View File

@@ -1,4 +1,29 @@
export * from "./AgentExecutionDemo";
export * from "./AgentRunOutputViewer";
export * from "./StreamMessage";
export * from "./ToolWidgets";
export * from "./NFOCredits";
export * from "./NFOCredits";
export * from "./UsageDashboard";
export * from "./WebviewPreview";
export * from "./ImagePreview";
export * from "./MCPManager";
export * from "./MCPServerList";
export * from "./MCPAddServer";
export * from "./MCPImportExport";
export * from "./ui/badge";
export * from "./ui/button";
export * from "./ui/card";
export * from "./ui/dialog";
export * from "./ui/dropdown-menu";
export * from "./ui/input";
export * from "./ui/label";
export * from "./ui/select";
export * from "./ui/switch";
export * from "./ui/tabs";
export * from "./ui/textarea";
export * from "./ui/toast";
export * from "./ui/tooltip";
export * from "./ui/popover";
export * from "./ui/pagination";
export * from "./ui/split-pane";
export * from "./ui/scroll-area";