Skip to content

Commit fb40762

Browse files
authored
Merge pull request #372 from FlowiseAI/feature/Process-Flow-UI-Improvement
Feature/Process Flow UI UX Improvements
2 parents ad0281a + 123370f commit fb40762

30 files changed

+171567
-1622
lines changed

dist/components/bubbles/BotBubble.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { JSX } from 'solid-js';
2+
type TracesButtonProps = {
3+
feedbackColor?: string;
4+
isDisabled?: boolean;
5+
isLoading?: boolean;
6+
disableIcon?: boolean;
7+
} & JSX.ButtonHTMLAttributes<HTMLButtonElement>;
8+
export declare const TracesButton: (props: TracesButtonProps) => JSX.Element;
9+
export {};
10+
//# sourceMappingURL=TracesButton.d.ts.map

dist/components/buttons/TracesButton.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { JSX } from 'solid-js/jsx-runtime';
2+
export declare const TracesIcon: (props: JSX.SvgSVGAttributes<SVGSVGElement>) => JSX.Element;
3+
//# sourceMappingURL=TracesIcon.d.ts.map

dist/components/icons/TracesIcon.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/icons/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ export * from './SparklesIcon';
1414
export * from './VolumeIcon';
1515
export * from './SquareStopIcon';
1616
export * from './ChevronDownIcon';
17+
export * from './TracesIcon';
1718
//# sourceMappingURL=index.d.ts.map

dist/components/icons/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
export type NodeDetailsNode = {
2+
label: string;
3+
name: string;
4+
status: string;
5+
data: any;
6+
};
7+
type NodeDetailsContentProps = {
8+
node: NodeDetailsNode;
9+
backgroundColor?: string;
10+
textColor?: string;
11+
apiHost?: string;
12+
chatflowid?: string;
13+
chatId?: string;
14+
};
15+
export declare function syntaxHighlight(json: string): string;
16+
export declare const CloseIcon: () => import("solid-js").JSX.Element;
17+
export declare const ClockIcon: () => import("solid-js").JSX.Element;
18+
export declare const CoinIcon: () => import("solid-js").JSX.Element;
19+
export declare const TokenIcon: () => import("solid-js").JSX.Element;
20+
export declare const NodeIcon: (props: {
21+
name: string;
22+
apiHost?: string;
23+
size?: number;
24+
borderRadius?: string;
25+
bgColor?: string;
26+
}) => import("solid-js").JSX.Element;
27+
export declare const jsonBlockStyle: Record<string, string>;
28+
export declare const nddStyles = "\n .ndd-json .string { color: #7ac35c; }\n .ndd-json .number { color: #e08331; }\n .ndd-json .boolean { color: #326dc3; }\n .ndd-json .null { color: #a951ad; }\n .ndd-json .key { color: #d73e3e; font-weight: bold; }\n @keyframes ndd-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }\n .ndd-spin { animation: ndd-spin 1.5s linear infinite; }\n .ndd-markdown p { margin: 0 0 0.5em 0; }\n .ndd-markdown p:last-child { margin-bottom: 0; }\n .ndd-markdown code { background: rgba(0,0,0,0.06); padding: 1px 4px; border-radius: 3px; font-size: 0.8em; font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace; }\n .ndd-markdown pre { background: rgba(0,0,0,0.04); padding: 10px 12px; border-radius: 6px; overflow-x: auto; margin: 0.5em 0; }\n .ndd-markdown pre code { background: none; padding: 0; font-size: 0.8em; }\n .ndd-markdown a { color: #1976d2; text-decoration: underline; }\n .ndd-markdown ul, .ndd-markdown ol { margin: 0.4em 0; padding-left: 1.5em; }\n .ndd-markdown li { margin: 0.2em 0; }\n .ndd-markdown h1, .ndd-markdown h2, .ndd-markdown h3 { margin: 0.6em 0 0.3em 0; font-weight: 600; }\n .ndd-markdown h1 { font-size: 1.2em; }\n .ndd-markdown h2 { font-size: 1.1em; }\n .ndd-markdown h3 { font-size: 1em; }\n .ndd-markdown blockquote { border-left: 3px solid rgba(0,0,0,0.15); margin: 0.5em 0; padding: 0.2em 0 0.2em 0.8em; opacity: 0.85; }\n .ndd-markdown table { border-collapse: collapse; margin: 0.5em 0; font-size: 0.85em; }\n .ndd-markdown th, .ndd-markdown td { border: 1px solid rgba(0,0,0,0.12); padding: 4px 8px; }\n .ndd-markdown th { background: rgba(0,0,0,0.04); font-weight: 600; }\n .ndd-markdown strong { font-weight: 600; }\n";
29+
export declare const getMetrics: (data: any) => {
30+
time?: string | undefined;
31+
tokens?: string | undefined;
32+
cost?: string | undefined;
33+
} | null;
34+
export declare const NodeDetailsContent: (props: NodeDetailsContentProps) => import("solid-js").JSX.Element;
35+
export {};
36+
//# sourceMappingURL=NodeDetailsContent.d.ts.map

dist/components/treeview/NodeDetailsContent.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/treeview/NodeDetailsDialog.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)