@kestra-io/ui-libs 0.0.38 → 0.0.40
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kestra-io/ui-libs",
|
|
3
|
-
"version": "v0.0.
|
|
3
|
+
"version": "v0.0.40",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -16,28 +16,28 @@
|
|
|
16
16
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path ./.gitignore"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@vue-flow/background": "^1.
|
|
20
|
-
"@vue-flow/controls": "1.
|
|
21
|
-
"@vue-flow/core": "1.
|
|
22
|
-
"bootstrap": "^5.3.
|
|
19
|
+
"@vue-flow/background": "^1.3.0",
|
|
20
|
+
"@vue-flow/controls": "^1.1.1",
|
|
21
|
+
"@vue-flow/core": "^1.33.4",
|
|
22
|
+
"bootstrap": "^5.3.3",
|
|
23
|
+
"dagre": "^0.8.5",
|
|
23
24
|
"humanize-duration": "^3.31.0",
|
|
24
25
|
"js-yaml": "^4.1.0",
|
|
25
26
|
"lodash": "^4.17.21",
|
|
26
27
|
"moment": "^2.30.1",
|
|
27
28
|
"vue": "^3.4.0",
|
|
28
|
-
"vue-material-design-icons": "^5.
|
|
29
|
+
"vue-material-design-icons": "^5.3.0",
|
|
29
30
|
"vue3-popper": "^1.5.0",
|
|
30
31
|
"vuex": "^4.1.0",
|
|
31
|
-
"yaml": "^2.
|
|
32
|
-
"dagre": "^0.8.5"
|
|
32
|
+
"yaml": "^2.4.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"eslint
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"vite
|
|
41
|
-
"
|
|
35
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
36
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
37
|
+
"eslint": "^8.57.0",
|
|
38
|
+
"eslint-plugin-vue": "^9.23.0",
|
|
39
|
+
"sass": "^1.71.1",
|
|
40
|
+
"vite": "^5.1.6",
|
|
41
|
+
"vite-plugin-static-copy": "^1.0.1"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
v-if="!execution"
|
|
15
15
|
class="circle-button"
|
|
16
16
|
:class="[`bg-${color}`]"
|
|
17
|
-
@click="$emit(EVENTS.EDIT, {task: data.node.
|
|
17
|
+
@click="$emit(EVENTS.EDIT, {task: data.node.triggerDeclaration, section: SECTIONS.TRIGGERS})"
|
|
18
18
|
>
|
|
19
19
|
<tooltip :title="Utils.translate('edit')">
|
|
20
20
|
<Pencil class="button-icon" alt="Edit task" />
|
|
@@ -166,7 +166,7 @@ export default class VueFlowUtils {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
static isTriggerNode(node) {
|
|
169
|
-
return node.
|
|
169
|
+
return node.triggerDeclaration !== undefined && node.type.endsWith("GraphTrigger");
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
static isCollapsedCluster(node) {
|