@kestra-io/ui-libs 0.0.70 → 0.0.72
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 +15 -15
- package/src/utils/YamlUtils.js +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kestra-io/ui-libs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.72",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -17,34 +17,34 @@
|
|
|
17
17
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path ./.gitignore"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@vue-flow/background": "^1.3.
|
|
20
|
+
"@vue-flow/background": "^1.3.0",
|
|
21
21
|
"@vue-flow/controls": "^1.1.1",
|
|
22
|
-
"@vue-flow/core": "^1.41.
|
|
22
|
+
"@vue-flow/core": "^1.41.1",
|
|
23
23
|
"bootstrap": "^5.3.3",
|
|
24
24
|
"dagre": "^0.8.5",
|
|
25
25
|
"humanize-duration": "^3.31.0",
|
|
26
26
|
"js-yaml": "^4.1.0",
|
|
27
27
|
"lodash": "^4.17.21",
|
|
28
28
|
"moment": "^2.30.1",
|
|
29
|
-
"vue": "^3.5.
|
|
30
|
-
"vue-material-design-icons": "^5.3.
|
|
29
|
+
"vue": "^3.5.5",
|
|
30
|
+
"vue-material-design-icons": "^5.3.0",
|
|
31
31
|
"vuex": "^4.1.0",
|
|
32
|
-
"yaml": "^2.
|
|
32
|
+
"yaml": "^2.5.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@esbuild/linux-x64": "^0.24.0",
|
|
36
|
-
"@typescript-eslint/parser": "^8.
|
|
37
|
-
"@vitejs/plugin-vue": "^5.
|
|
36
|
+
"@typescript-eslint/parser": "^8.8.1",
|
|
37
|
+
"@vitejs/plugin-vue": "^5.1.3",
|
|
38
38
|
"eslint": "^8.57.0",
|
|
39
|
-
"eslint-plugin-vue": "^9.
|
|
40
|
-
"sass": "^1.
|
|
41
|
-
"vite": "^5.4.
|
|
42
|
-
"vite-plugin-static-copy": "^2.
|
|
39
|
+
"eslint-plugin-vue": "^9.28.0",
|
|
40
|
+
"sass": "^1.79.4",
|
|
41
|
+
"vite": "^5.4.5",
|
|
42
|
+
"vite-plugin-static-copy": "^2.0.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@nuxtjs/mdc": "^0.9.
|
|
45
|
+
"@nuxtjs/mdc": "^0.9.0",
|
|
46
46
|
"@popperjs/core": "^2.11.8",
|
|
47
|
-
"mermaid": "^11.
|
|
48
|
-
"shiki": "^1.
|
|
47
|
+
"mermaid": "^11.2.1",
|
|
48
|
+
"shiki": "^1.22.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/src/utils/YamlUtils.js
CHANGED
|
@@ -182,9 +182,7 @@ export default class YamlUtils {
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
static getTaskType(source, position) {
|
|
185
|
-
console.log("entering getTaskType...")
|
|
186
185
|
const types = this.extractAllTypes(source)
|
|
187
|
-
console.log("types", types)
|
|
188
186
|
const lineCounter = new LineCounter();
|
|
189
187
|
yaml.parseDocument(source, {lineCounter});
|
|
190
188
|
const cursorIndex = lineCounter.lineStarts[position.lineNumber - 1] + position.column;
|