@railtownai/railtracks-visualizer 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,8 @@ import React from "react";
2
2
  interface FileSelectorProps {
3
3
  files: {
4
4
  name: string;
5
+ size?: number;
6
+ modified?: string;
5
7
  }[];
6
8
  currentFile: string | null;
7
9
  onFileSelect: (filename: string) => void;
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  import { AgenticFlowVisualizerProps } from "./AgenticFlowVisualizer";
3
3
  /**
4
- * Visualizer component that wraps AgenticFlowVisualizer with ReactFlowProvider.
4
+ * Visualizer component that wraps AgenticFlowVisualizer with ReactFlowProvider and ThemeProvider.
5
5
  * This is the main component that should be imported from the npm package.
6
6
  */
7
7
  declare const Visualizer: React.FC<AgenticFlowVisualizerProps>;
@@ -1,3 +1,3 @@
1
1
  export { OpenAIIcon } from "./OpenAIIcon";
2
- export { AnthropicIcon } from "./AnthropicIcon";
3
2
  export { GoogleIcon } from "./GoogleIcon";
3
+ export { AnthropicIcon } from "./AnthropicIcon";
@@ -17,6 +17,7 @@ export interface Theme {
17
17
  destructive: string;
18
18
  destructiveForeground: string;
19
19
  border: string;
20
+ mutedBorder: string;
20
21
  input: string;
21
22
  ring: string;
22
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@railtownai/railtracks-visualizer",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Railtown AI",
6
6
  "description": "A visualizer for RailTracks agentic flows",