@kestra-io/ui-libs 0.0.219 → 0.0.221
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/nodes/BasicNode.vue.d.ts +1 -0
- package/dist/components/nodes/BasicNode.vue.d.ts.map +1 -1
- package/dist/kestra-index.cjs.js +1 -1
- package/dist/kestra-index.cjs.js.map +1 -1
- package/dist/kestra-index.es.js +19 -14
- package/dist/kestra-index.es.js.map +1 -1
- package/dist/ui-libs.css +1 -1
- package/package.json +1 -1
- package/src/components/nodes/BasicNode.vue +6 -2
- package/src/components/nodes/TaskNode.vue +1 -1
package/dist/kestra-index.es.js
CHANGED
|
@@ -9600,6 +9600,10 @@ const A0 = { class: "icon rounded" }, R0 = { class: "node-content" }, D0 = { cla
|
|
|
9600
9600
|
type: String,
|
|
9601
9601
|
default: void 0
|
|
9602
9602
|
},
|
|
9603
|
+
title: {
|
|
9604
|
+
type: String,
|
|
9605
|
+
default: void 0
|
|
9606
|
+
},
|
|
9603
9607
|
type: {
|
|
9604
9608
|
type: String,
|
|
9605
9609
|
default: void 0
|
|
@@ -9696,9 +9700,10 @@ const A0 = { class: "icon rounded" }, R0 = { class: "node-content" }, D0 = { cla
|
|
|
9696
9700
|
return this.data.node.task.type;
|
|
9697
9701
|
},
|
|
9698
9702
|
hoverTooltip() {
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9703
|
+
var e;
|
|
9704
|
+
if ((e = this.data.node.type) != null && e.endsWith("SubflowGraphTask")) {
|
|
9705
|
+
const t = this.data.node.task.subflowId ?? this.data.node.task;
|
|
9706
|
+
return t.namespace + " " + t.flowId;
|
|
9702
9707
|
}
|
|
9703
9708
|
return this.trimmedId;
|
|
9704
9709
|
}
|
|
@@ -9728,7 +9733,7 @@ const A0 = { class: "icon rounded" }, R0 = { class: "node-content" }, D0 = { cla
|
|
|
9728
9733
|
O("div", P0, [
|
|
9729
9734
|
K(_e, { title: t.hoverTooltip }, {
|
|
9730
9735
|
default: te(() => [
|
|
9731
|
-
Et(z(t.trimmedId), 1)
|
|
9736
|
+
Et(z(e.title ?? t.trimmedId), 1)
|
|
9732
9737
|
]),
|
|
9733
9738
|
_: 1
|
|
9734
9739
|
}, 8, ["title"])
|
|
@@ -9790,7 +9795,7 @@ const A0 = { class: "icon rounded" }, R0 = { class: "node-content" }, D0 = { cla
|
|
|
9790
9795
|
])
|
|
9791
9796
|
], 34));
|
|
9792
9797
|
}
|
|
9793
|
-
}), ap = /* @__PURE__ */ Q(q0, [["__scopeId", "data-v-
|
|
9798
|
+
}), ap = /* @__PURE__ */ Q(q0, [["__scopeId", "data-v-9cf36f71"]]), F0 = ["innerHTML"], V0 = /* @__PURE__ */ Re({
|
|
9794
9799
|
__name: "Duration",
|
|
9795
9800
|
props: {
|
|
9796
9801
|
histories: {}
|
|
@@ -10184,18 +10189,18 @@ const up = /* @__PURE__ */ Q(gC, [["render", bC]]), CC = {
|
|
|
10184
10189
|
};
|
|
10185
10190
|
},
|
|
10186
10191
|
dataWithLink() {
|
|
10187
|
-
var e, t, n, r;
|
|
10188
|
-
if (this.data.node.type.endsWith("SubflowGraphTask") && this.enableSubflowInteraction) {
|
|
10189
|
-
const
|
|
10192
|
+
var e, t, n, r, i;
|
|
10193
|
+
if ((e = this.data.node.type) != null && e.endsWith("SubflowGraphTask") && this.enableSubflowInteraction) {
|
|
10194
|
+
const a = this.data.node.task.subflowId ?? this.data.node.task;
|
|
10190
10195
|
return {
|
|
10191
10196
|
...this.data,
|
|
10192
10197
|
link: {
|
|
10193
|
-
namespace:
|
|
10194
|
-
id:
|
|
10195
|
-
executionId: (
|
|
10196
|
-
var
|
|
10197
|
-
return
|
|
10198
|
-
})) == null ? void 0 :
|
|
10198
|
+
namespace: a.namespace,
|
|
10199
|
+
id: a.flowId,
|
|
10200
|
+
executionId: (i = (r = (n = (t = this.taskExecution) == null ? void 0 : t.taskRunList.filter((o) => {
|
|
10201
|
+
var s;
|
|
10202
|
+
return o.taskId === this.data.node.task.id && ((s = o.outputs) == null ? void 0 : s.executionId);
|
|
10203
|
+
})) == null ? void 0 : n[0]) == null ? void 0 : r.outputs) == null ? void 0 : i.executionId
|
|
10199
10204
|
}
|
|
10200
10205
|
};
|
|
10201
10206
|
}
|