@ucdjs/pipelines-ui 0.0.1-beta.3 → 0.0.1-beta.6
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.
- package/dist/components/detail/execution-result.d.mts +4 -4
- package/dist/components/detail/version-selector.d.mts +2 -2
- package/dist/components/graph/details.d.mts +2 -2
- package/dist/components/graph/filters.d.mts +2 -2
- package/dist/components/graph/node-types.d.mts +20 -5
- package/dist/components/graph/nodes.d.mts +18 -5
- package/dist/components/graph/pipeline-graph.d.mts +10 -1
- package/dist/components/logs/execution-log-payload.d.mts +2 -2
- package/dist/components/logs/execution-log-table.d.mts +2 -2
- package/dist/components/logs/execution-span-drawer.d.mts +2 -2
- package/dist/components/logs/execution-waterfall.d.mts +2 -2
- package/dist/components/pipeline-sidebar.d.mts +2 -2
- package/dist/components/pipeline-sidebar.mjs +92 -68
- package/dist/components/status-badge.d.mts +2 -2
- package/dist/components/status-icon.d.mts +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/types.d.mts +1 -0
- package/package.json +12 -12
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecuteResult } from "../../types.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/detail/execution-result.d.ts
|
|
5
5
|
interface ExecutionResultProps {
|
|
@@ -9,7 +9,7 @@ interface ExecutionResultProps {
|
|
|
9
9
|
declare function ExecutionResult({
|
|
10
10
|
result,
|
|
11
11
|
className
|
|
12
|
-
}: ExecutionResultProps):
|
|
12
|
+
}: ExecutionResultProps): react_jsx_runtime0.JSX.Element;
|
|
13
13
|
interface ExecutionSummaryProps {
|
|
14
14
|
totalFiles: number;
|
|
15
15
|
matchedFiles: number;
|
|
@@ -30,7 +30,7 @@ declare function ExecutionSummary({
|
|
|
30
30
|
totalOutputs,
|
|
31
31
|
durationMs,
|
|
32
32
|
className
|
|
33
|
-
}: ExecutionSummaryProps):
|
|
33
|
+
}: ExecutionSummaryProps): react_jsx_runtime0.JSX.Element;
|
|
34
34
|
interface ExecutionErrorsProps {
|
|
35
35
|
errors: Array<{
|
|
36
36
|
scope: string;
|
|
@@ -44,6 +44,6 @@ interface ExecutionErrorsProps {
|
|
|
44
44
|
declare function ExecutionErrors({
|
|
45
45
|
errors,
|
|
46
46
|
className
|
|
47
|
-
}: ExecutionErrorsProps):
|
|
47
|
+
}: ExecutionErrorsProps): react_jsx_runtime0.JSX.Element | null;
|
|
48
48
|
//#endregion
|
|
49
49
|
export { ExecutionErrors, ExecutionErrorsProps, ExecutionResult, ExecutionResultProps, ExecutionSummary, ExecutionSummaryProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/detail/version-selector.d.ts
|
|
4
4
|
interface VersionSelectorProps {
|
|
@@ -16,6 +16,6 @@ declare function VersionSelector({
|
|
|
16
16
|
onSelectAll,
|
|
17
17
|
onDeselectAll,
|
|
18
18
|
className
|
|
19
|
-
}: VersionSelectorProps):
|
|
19
|
+
}: VersionSelectorProps): react_jsx_runtime0.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { VersionSelector, VersionSelectorProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { PipelineGraphNode } from "@ucdjs/pipelines-core";
|
|
3
3
|
|
|
4
4
|
//#region src/components/graph/details.d.ts
|
|
@@ -9,6 +9,6 @@ interface PipelineGraphDetailsProps {
|
|
|
9
9
|
declare function PipelineGraphDetails({
|
|
10
10
|
node,
|
|
11
11
|
onClose
|
|
12
|
-
}: PipelineGraphDetailsProps):
|
|
12
|
+
}: PipelineGraphDetailsProps): react_jsx_runtime0.JSX.Element | null;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { PipelineGraphDetails, PipelineGraphDetailsProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { PipelineGraphNodeType } from "@ucdjs/pipelines-core";
|
|
3
3
|
|
|
4
4
|
//#region src/components/graph/filters.d.ts
|
|
@@ -9,6 +9,6 @@ interface PipelineGraphFiltersProps {
|
|
|
9
9
|
declare function PipelineGraphFilters({
|
|
10
10
|
visibleTypes,
|
|
11
11
|
onToggleType
|
|
12
|
-
}: PipelineGraphFiltersProps):
|
|
12
|
+
}: PipelineGraphFiltersProps): react_jsx_runtime0.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { PipelineGraphFilters, PipelineGraphFiltersProps };
|
|
@@ -1,10 +1,25 @@
|
|
|
1
|
+
import { PipelineNodeData } from "./nodes.mjs";
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
import * as react from "react";
|
|
4
|
+
import * as _xyflow_react0 from "@xyflow/react";
|
|
5
|
+
|
|
1
6
|
//#region src/components/graph/node-types.d.ts
|
|
2
7
|
declare const nodeTypes: {
|
|
3
|
-
readonly source:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
readonly
|
|
7
|
-
|
|
8
|
+
readonly source: react.MemoExoticComponent<(props: _xyflow_react0.NodeProps & {
|
|
9
|
+
data: PipelineNodeData;
|
|
10
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
11
|
+
readonly file: react.MemoExoticComponent<(props: _xyflow_react0.NodeProps & {
|
|
12
|
+
data: PipelineNodeData;
|
|
13
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
14
|
+
readonly route: react.MemoExoticComponent<(props: _xyflow_react0.NodeProps & {
|
|
15
|
+
data: PipelineNodeData;
|
|
16
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
17
|
+
readonly artifact: react.MemoExoticComponent<(props: _xyflow_react0.NodeProps & {
|
|
18
|
+
data: PipelineNodeData;
|
|
19
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
20
|
+
readonly output: react.MemoExoticComponent<(props: _xyflow_react0.NodeProps & {
|
|
21
|
+
data: PipelineNodeData;
|
|
22
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
8
23
|
};
|
|
9
24
|
//#endregion
|
|
10
25
|
export { nodeTypes };
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
import * as react from "react";
|
|
3
|
+
import { NodeProps } from "@xyflow/react";
|
|
1
4
|
import { PipelineGraphNode } from "@ucdjs/pipelines-core";
|
|
2
5
|
|
|
3
6
|
//#region src/components/graph/nodes.d.ts
|
|
@@ -5,10 +8,20 @@ interface PipelineNodeData {
|
|
|
5
8
|
pipelineNode: PipelineGraphNode;
|
|
6
9
|
label: string;
|
|
7
10
|
}
|
|
8
|
-
declare const SourceNode:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
declare const
|
|
12
|
-
|
|
11
|
+
declare const SourceNode: react.MemoExoticComponent<(props: NodeProps & {
|
|
12
|
+
data: PipelineNodeData;
|
|
13
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
14
|
+
declare const FileNode: react.MemoExoticComponent<(props: NodeProps & {
|
|
15
|
+
data: PipelineNodeData;
|
|
16
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
17
|
+
declare const RouteNode: react.MemoExoticComponent<(props: NodeProps & {
|
|
18
|
+
data: PipelineNodeData;
|
|
19
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
20
|
+
declare const ArtifactNode: react.MemoExoticComponent<(props: NodeProps & {
|
|
21
|
+
data: PipelineNodeData;
|
|
22
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
23
|
+
declare const OutputNode: react.MemoExoticComponent<(props: NodeProps & {
|
|
24
|
+
data: PipelineNodeData;
|
|
25
|
+
}) => react_jsx_runtime0.JSX.Element>;
|
|
13
26
|
//#endregion
|
|
14
27
|
export { ArtifactNode, FileNode, OutputNode, PipelineNodeData, RouteNode, SourceNode };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
import * as react from "react";
|
|
1
3
|
import "@xyflow/react/dist/style.css";
|
|
2
4
|
import { PipelineGraph, PipelineGraphNode } from "@ucdjs/pipelines-core";
|
|
3
5
|
|
|
@@ -10,6 +12,13 @@ interface PipelineGraphProps {
|
|
|
10
12
|
showMinimap?: boolean;
|
|
11
13
|
className?: string;
|
|
12
14
|
}
|
|
13
|
-
declare const PipelineGraph$1:
|
|
15
|
+
declare const PipelineGraph$1: react.MemoExoticComponent<({
|
|
16
|
+
graph,
|
|
17
|
+
onNodeSelect,
|
|
18
|
+
showFilters,
|
|
19
|
+
showDetails,
|
|
20
|
+
showMinimap,
|
|
21
|
+
className
|
|
22
|
+
}: PipelineGraphProps) => react_jsx_runtime0.JSX.Element>;
|
|
14
23
|
//#endregion
|
|
15
24
|
export { PipelineGraph$1 as PipelineGraph, PipelineGraphProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecutionLogItem } from "../../types.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/logs/execution-log-payload.d.ts
|
|
5
5
|
interface ExecutionLogPayloadPanelProps {
|
|
@@ -7,6 +7,6 @@ interface ExecutionLogPayloadPanelProps {
|
|
|
7
7
|
}
|
|
8
8
|
declare function ExecutionLogPayloadPanel({
|
|
9
9
|
log
|
|
10
|
-
}: ExecutionLogPayloadPanelProps):
|
|
10
|
+
}: ExecutionLogPayloadPanelProps): react_jsx_runtime0.JSX.Element | null;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { ExecutionLogPayloadPanel, ExecutionLogPayloadPanelProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecutionLogItem } from "../../types.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/logs/execution-log-table.d.ts
|
|
5
5
|
interface ExecutionLogTableProps {
|
|
@@ -11,6 +11,6 @@ declare function ExecutionLogTable({
|
|
|
11
11
|
logs,
|
|
12
12
|
expandedLogId,
|
|
13
13
|
onToggle
|
|
14
|
-
}: ExecutionLogTableProps):
|
|
14
|
+
}: ExecutionLogTableProps): react_jsx_runtime0.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ExecutionLogTable, ExecutionLogTableProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecutionSpan } from "../../lib/execution-logs.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/logs/execution-span-drawer.d.ts
|
|
5
5
|
interface ExecutionSpanDrawerProps {
|
|
@@ -11,6 +11,6 @@ declare function ExecutionSpanDrawer({
|
|
|
11
11
|
span,
|
|
12
12
|
baseTime,
|
|
13
13
|
onClose
|
|
14
|
-
}: ExecutionSpanDrawerProps):
|
|
14
|
+
}: ExecutionSpanDrawerProps): react_jsx_runtime0.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ExecutionSpanDrawer, ExecutionSpanDrawerProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecutionSpan } from "../../lib/execution-logs.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/logs/execution-waterfall.d.ts
|
|
5
5
|
interface ExecutionWaterfallProps {
|
|
@@ -13,6 +13,6 @@ declare function ExecutionWaterfall({
|
|
|
13
13
|
selectedSpanId,
|
|
14
14
|
onSelect,
|
|
15
15
|
onSpanClick
|
|
16
|
-
}: ExecutionWaterfallProps):
|
|
16
|
+
}: ExecutionWaterfallProps): react_jsx_runtime0.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { ExecutionWaterfall, ExecutionWaterfallProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/pipeline-sidebar.d.ts
|
|
4
|
-
declare function PipelineSidebar():
|
|
4
|
+
declare function PipelineSidebar(): react_jsx_runtime0.JSX.Element;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { PipelineSidebar };
|
|
@@ -10,7 +10,7 @@ import { BookOpen, ExternalLink, Folder, FolderOpen } from "lucide-react";
|
|
|
10
10
|
|
|
11
11
|
//#region src/components/pipeline-sidebar.tsx
|
|
12
12
|
function PipelineSidebar() {
|
|
13
|
-
const $ = c(
|
|
13
|
+
const $ = c(32);
|
|
14
14
|
const { data, loading } = usePipelines();
|
|
15
15
|
let t0;
|
|
16
16
|
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
@@ -47,27 +47,50 @@ function PipelineSidebar() {
|
|
|
47
47
|
const toggleFile = t3;
|
|
48
48
|
let t4;
|
|
49
49
|
if ($[5] === Symbol.for("react.memo_cache_sentinel")) {
|
|
50
|
-
t4 = /* @__PURE__ */ jsx(
|
|
50
|
+
t4 = /* @__PURE__ */ jsx("h1", {
|
|
51
|
+
className: "text-sm font-semibold text-sidebar-foreground tracking-tight truncate",
|
|
52
|
+
children: "UCD Pipelines"
|
|
53
|
+
});
|
|
54
|
+
$[5] = t4;
|
|
55
|
+
} else t4 = $[5];
|
|
56
|
+
let t5;
|
|
57
|
+
if ($[6] !== data) {
|
|
58
|
+
t5 = data?.workspaceId ? `Workspace ${data.workspaceId.slice(0, 10)}...` : "Pipeline files";
|
|
59
|
+
$[6] = data;
|
|
60
|
+
$[7] = t5;
|
|
61
|
+
} else t5 = $[7];
|
|
62
|
+
let t6;
|
|
63
|
+
if ($[8] !== t5) {
|
|
64
|
+
t6 = /* @__PURE__ */ jsxs("div", {
|
|
65
|
+
className: "min-w-0",
|
|
66
|
+
children: [t4, /* @__PURE__ */ jsx("p", {
|
|
67
|
+
className: "text-[10px] text-muted-foreground truncate",
|
|
68
|
+
children: t5
|
|
69
|
+
})]
|
|
70
|
+
});
|
|
71
|
+
$[8] = t5;
|
|
72
|
+
$[9] = t6;
|
|
73
|
+
} else t6 = $[9];
|
|
74
|
+
let t7;
|
|
75
|
+
if ($[10] === Symbol.for("react.memo_cache_sentinel")) {
|
|
76
|
+
t7 = /* @__PURE__ */ jsx(ThemeToggle, {});
|
|
77
|
+
$[10] = t7;
|
|
78
|
+
} else t7 = $[10];
|
|
79
|
+
let t8;
|
|
80
|
+
if ($[11] !== t6) {
|
|
81
|
+
t8 = /* @__PURE__ */ jsx(SidebarHeader, {
|
|
51
82
|
className: "p-4",
|
|
52
83
|
children: /* @__PURE__ */ jsxs("div", {
|
|
53
84
|
className: "flex items-center justify-between gap-3",
|
|
54
|
-
children: [
|
|
55
|
-
className: "min-w-0",
|
|
56
|
-
children: [/* @__PURE__ */ jsx("h1", {
|
|
57
|
-
className: "text-sm font-semibold text-sidebar-foreground tracking-tight truncate",
|
|
58
|
-
children: "UCD Pipelines"
|
|
59
|
-
}), /* @__PURE__ */ jsx("p", {
|
|
60
|
-
className: "text-[10px] text-muted-foreground truncate",
|
|
61
|
-
children: "Pipeline files"
|
|
62
|
-
})]
|
|
63
|
-
}), /* @__PURE__ */ jsx(ThemeToggle, {})]
|
|
85
|
+
children: [t6, t7]
|
|
64
86
|
})
|
|
65
87
|
});
|
|
66
|
-
$[
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
88
|
+
$[11] = t6;
|
|
89
|
+
$[12] = t8;
|
|
90
|
+
} else t8 = $[12];
|
|
91
|
+
let t9;
|
|
92
|
+
if ($[13] !== currentFileSlug || $[14] !== currentPipelineId || $[15] !== files || $[16] !== loading || $[17] !== openFiles) {
|
|
93
|
+
t9 = loading ? /* @__PURE__ */ jsx("div", {
|
|
71
94
|
className: "px-2 py-2 text-xs text-muted-foreground",
|
|
72
95
|
children: "Loading..."
|
|
73
96
|
}) : files.map((file) => {
|
|
@@ -113,45 +136,45 @@ function PipelineSidebar() {
|
|
|
113
136
|
}) }, `${file.fileId}-${pipeline.id}`);
|
|
114
137
|
}) })] }, file.fileId);
|
|
115
138
|
});
|
|
116
|
-
$[
|
|
117
|
-
$[
|
|
118
|
-
$[
|
|
119
|
-
$[
|
|
120
|
-
$[
|
|
121
|
-
$[
|
|
122
|
-
} else
|
|
123
|
-
let
|
|
124
|
-
if ($[
|
|
125
|
-
|
|
126
|
-
$[
|
|
127
|
-
$[
|
|
128
|
-
} else
|
|
129
|
-
let
|
|
130
|
-
if ($[
|
|
131
|
-
|
|
132
|
-
$[
|
|
133
|
-
} else
|
|
134
|
-
let
|
|
135
|
-
if ($[
|
|
136
|
-
|
|
139
|
+
$[13] = currentFileSlug;
|
|
140
|
+
$[14] = currentPipelineId;
|
|
141
|
+
$[15] = files;
|
|
142
|
+
$[16] = loading;
|
|
143
|
+
$[17] = openFiles;
|
|
144
|
+
$[18] = t9;
|
|
145
|
+
} else t9 = $[18];
|
|
146
|
+
let t10;
|
|
147
|
+
if ($[19] !== t9) {
|
|
148
|
+
t10 = /* @__PURE__ */ jsx(SidebarContent, { children: /* @__PURE__ */ jsx(SidebarGroup, { children: /* @__PURE__ */ jsx(SidebarMenu, { children: t9 }) }) });
|
|
149
|
+
$[19] = t9;
|
|
150
|
+
$[20] = t10;
|
|
151
|
+
} else t10 = $[20];
|
|
152
|
+
let t11;
|
|
153
|
+
if ($[21] === Symbol.for("react.memo_cache_sentinel")) {
|
|
154
|
+
t11 = /* @__PURE__ */ jsx(SidebarGroupLabel, { children: "Documentation" });
|
|
155
|
+
$[21] = t11;
|
|
156
|
+
} else t11 = $[21];
|
|
157
|
+
let t12;
|
|
158
|
+
if ($[22] === Symbol.for("react.memo_cache_sentinel")) {
|
|
159
|
+
t12 = /* @__PURE__ */ jsx(SidebarMenuItem, { children: /* @__PURE__ */ jsx(SidebarMenuButton, { render: /* @__PURE__ */ jsxs("a", {
|
|
137
160
|
href: "https://docs.ucdjs.dev/pipelines",
|
|
138
161
|
children: [/* @__PURE__ */ jsx(BookOpen, { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "Getting Started" })]
|
|
139
162
|
}) }) });
|
|
140
|
-
$[
|
|
141
|
-
} else
|
|
142
|
-
let
|
|
143
|
-
if ($[
|
|
144
|
-
|
|
163
|
+
$[22] = t12;
|
|
164
|
+
} else t12 = $[22];
|
|
165
|
+
let t13;
|
|
166
|
+
if ($[23] === Symbol.for("react.memo_cache_sentinel")) {
|
|
167
|
+
t13 = /* @__PURE__ */ jsxs(SidebarGroup, { children: [t11, /* @__PURE__ */ jsxs(SidebarMenu, { children: [t12, /* @__PURE__ */ jsx(SidebarMenuItem, { children: /* @__PURE__ */ jsx(SidebarMenuButton, { render: /* @__PURE__ */ jsxs("a", {
|
|
145
168
|
href: "https://docs.ucdjs.dev/pipelines/api",
|
|
146
169
|
target: "_blank",
|
|
147
170
|
rel: "noopener noreferrer",
|
|
148
171
|
children: [/* @__PURE__ */ jsx(ExternalLink, { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "API Reference" })]
|
|
149
172
|
}) }) })] })] });
|
|
150
|
-
$[
|
|
151
|
-
} else
|
|
152
|
-
let
|
|
153
|
-
if ($[
|
|
154
|
-
|
|
173
|
+
$[23] = t13;
|
|
174
|
+
} else t13 = $[23];
|
|
175
|
+
let t14;
|
|
176
|
+
if ($[24] !== data?.errors) {
|
|
177
|
+
t14 = (data?.errors?.length || 0) > 0 && /* @__PURE__ */ jsx("div", {
|
|
155
178
|
className: "px-2 py-1.5",
|
|
156
179
|
children: /* @__PURE__ */ jsxs("p", {
|
|
157
180
|
className: "text-xs text-destructive font-medium",
|
|
@@ -163,27 +186,28 @@ function PipelineSidebar() {
|
|
|
163
186
|
]
|
|
164
187
|
})
|
|
165
188
|
});
|
|
166
|
-
$[
|
|
167
|
-
$[
|
|
168
|
-
} else
|
|
169
|
-
let
|
|
170
|
-
if ($[
|
|
171
|
-
|
|
172
|
-
$[
|
|
173
|
-
$[
|
|
174
|
-
} else
|
|
175
|
-
let
|
|
176
|
-
if ($[
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
189
|
+
$[24] = data?.errors;
|
|
190
|
+
$[25] = t14;
|
|
191
|
+
} else t14 = $[25];
|
|
192
|
+
let t15;
|
|
193
|
+
if ($[26] !== t14) {
|
|
194
|
+
t15 = /* @__PURE__ */ jsxs(SidebarFooter, { children: [t13, t14] });
|
|
195
|
+
$[26] = t14;
|
|
196
|
+
$[27] = t15;
|
|
197
|
+
} else t15 = $[27];
|
|
198
|
+
let t16;
|
|
199
|
+
if ($[28] !== t10 || $[29] !== t15 || $[30] !== t8) {
|
|
200
|
+
t16 = /* @__PURE__ */ jsxs(Sidebar, { children: [
|
|
201
|
+
t8,
|
|
202
|
+
t10,
|
|
203
|
+
t15
|
|
181
204
|
] });
|
|
182
|
-
$[
|
|
183
|
-
$[
|
|
184
|
-
$[
|
|
185
|
-
|
|
186
|
-
|
|
205
|
+
$[28] = t10;
|
|
206
|
+
$[29] = t15;
|
|
207
|
+
$[30] = t8;
|
|
208
|
+
$[31] = t16;
|
|
209
|
+
} else t16 = $[31];
|
|
210
|
+
return t16;
|
|
187
211
|
}
|
|
188
212
|
|
|
189
213
|
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { ExecutionStatus } from "@ucdjs/pipelines-executor";
|
|
3
3
|
|
|
4
4
|
//#region src/components/status-badge.d.ts
|
|
@@ -6,6 +6,6 @@ declare function StatusBadge({
|
|
|
6
6
|
status
|
|
7
7
|
}: {
|
|
8
8
|
status: ExecutionStatus;
|
|
9
|
-
}):
|
|
9
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { StatusBadge };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { ExecutionStatus } from "@ucdjs/pipelines-executor";
|
|
3
3
|
|
|
4
4
|
//#region src/components/status-icon.d.ts
|
|
@@ -6,6 +6,6 @@ declare function StatusIcon({
|
|
|
6
6
|
status
|
|
7
7
|
}: {
|
|
8
8
|
status: ExecutionStatus;
|
|
9
|
-
}):
|
|
9
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { StatusIcon };
|
package/dist/index.d.mts
CHANGED
|
@@ -13,8 +13,8 @@ import { ExecutionErrors, ExecutionErrorsProps, ExecutionResult, ExecutionResult
|
|
|
13
13
|
import { VersionSelector, VersionSelectorProps } from "./components/detail/version-selector.mjs";
|
|
14
14
|
import { PipelineGraphDetails, PipelineGraphDetailsProps } from "./components/graph/details.mjs";
|
|
15
15
|
import { PipelineGraphFilters, PipelineGraphFiltersProps } from "./components/graph/filters.mjs";
|
|
16
|
-
import { nodeTypes } from "./components/graph/node-types.mjs";
|
|
17
16
|
import { ArtifactNode, FileNode, OutputNode, PipelineNodeData, RouteNode, SourceNode } from "./components/graph/nodes.mjs";
|
|
17
|
+
import { nodeTypes } from "./components/graph/node-types.mjs";
|
|
18
18
|
import { PipelineGraph, PipelineGraphProps } from "./components/graph/pipeline-graph.mjs";
|
|
19
19
|
import { ExecutionLogPayloadPanel, ExecutionLogPayloadPanelProps } from "./components/logs/execution-log-payload.mjs";
|
|
20
20
|
import { ExecutionLogTable, ExecutionLogTableProps } from "./components/logs/execution-log-table.mjs";
|
package/dist/types.d.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ucdjs/pipelines-ui",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Lucas Nørgård",
|
|
@@ -45,28 +45,28 @@
|
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=24.13"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@tanstack/react-router": "1.
|
|
51
|
+
"@tanstack/react-router": "1.161.1",
|
|
52
52
|
"react": ">=19.2.0",
|
|
53
53
|
"react-dom": ">=19.2.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@icons-pack/react-simple-icons": "13.
|
|
56
|
+
"@icons-pack/react-simple-icons": "13.11.2",
|
|
57
57
|
"@xyflow/react": "12.10.0",
|
|
58
58
|
"clsx": "2.1.1",
|
|
59
|
-
"lucide-react": "0.
|
|
60
|
-
"tailwind-merge": "3.4.
|
|
61
|
-
"@ucdjs-internal/shared-ui": "0.1.
|
|
62
|
-
"@ucdjs/pipelines-
|
|
63
|
-
"@ucdjs/pipelines-
|
|
59
|
+
"lucide-react": "0.574.0",
|
|
60
|
+
"tailwind-merge": "3.4.1",
|
|
61
|
+
"@ucdjs-internal/shared-ui": "0.1.5",
|
|
62
|
+
"@ucdjs/pipelines-executor": "0.0.1-beta.6",
|
|
63
|
+
"@ucdjs/pipelines-core": "0.0.1-beta.6"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@eslint-react/eslint-plugin": "2.
|
|
66
|
+
"@eslint-react/eslint-plugin": "2.13.0",
|
|
67
67
|
"@luxass/eslint-config": "7.2.0",
|
|
68
68
|
"@rollup/plugin-babel": "6.1.0",
|
|
69
|
-
"@tanstack/react-router": "1.
|
|
69
|
+
"@tanstack/react-router": "1.161.1",
|
|
70
70
|
"@types/react": "19.2.14",
|
|
71
71
|
"@types/react-dom": "19.2.3",
|
|
72
72
|
"babel-plugin-react-compiler": "1.0.0",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"publint": "0.3.17",
|
|
77
77
|
"react": "19.2.4",
|
|
78
78
|
"react-dom": "19.2.4",
|
|
79
|
-
"tailwindcss": "4.
|
|
79
|
+
"tailwindcss": "4.2.0",
|
|
80
80
|
"tsdown": "0.20.3",
|
|
81
81
|
"typescript": "5.9.3",
|
|
82
82
|
"@ucdjs-tooling/tsconfig": "1.0.0",
|