@kumologica/sdk 3.0.16 → 3.0.19
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 +4 -4
- package/src/app/ui/editor-client/public/red/red.js +9 -1
- package/src/app/ui/editor-client/public/red/red.min.js +1 -1
- package/src/app/ui/editor-client/public/red/style.min.css +1 -1
- package/src/app/ui/editor-client/public/vendor/ace/worker-jsonata.js +1 -1
- package/src/app/ui/editor-client/public/vendor/jsonata/jsonata.min.js +1 -1
- package/src/app/ui/editor-client/src/js/nodes.js +9 -1
- package/src/app/ui/editor-client/src/sass/tabs.scss +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"productName": "Kumologica Designer",
|
|
4
4
|
"copyright": "Copyright 2020 Kumologica Pty Ltd, All Rights Reserved.",
|
|
5
5
|
"author": "Kumologica Pty Ltd <contact@kumologica.com>",
|
|
6
|
-
"version": "3.0.
|
|
6
|
+
"version": "3.0.19",
|
|
7
7
|
"description": "Kumologica Designer, harnessing Serverless for your cloud integration needs",
|
|
8
8
|
"main": "src/app/main.js",
|
|
9
9
|
"files": [
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"license": "Proprietary",
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@electron/remote": "^2.0.8",
|
|
68
|
-
"@kumologica/builder": "3.0.
|
|
69
|
-
"@kumologica/devkit": "3.0.
|
|
70
|
-
"@kumologica/runtime": "3.0.
|
|
68
|
+
"@kumologica/builder": "3.0.19",
|
|
69
|
+
"@kumologica/devkit": "3.0.19",
|
|
70
|
+
"@kumologica/runtime": "3.0.19",
|
|
71
71
|
"adm-zip": "0.4.13",
|
|
72
72
|
"ajv": "8.10.0",
|
|
73
73
|
"aws-sdk": "2.513.0",
|
|
@@ -4477,6 +4477,14 @@ RED.state = {
|
|
|
4477
4477
|
return "";
|
|
4478
4478
|
}
|
|
4479
4479
|
|
|
4480
|
+
function listNodes() {
|
|
4481
|
+
var result = [];
|
|
4482
|
+
for (var n = 0; n < nodes.length; n++) {
|
|
4483
|
+
result.push(nodes[n]);
|
|
4484
|
+
}
|
|
4485
|
+
return result;
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4480
4488
|
// TODO: supports properties: "z", "type", "selected"
|
|
4481
4489
|
function filterNodes(filter) {
|
|
4482
4490
|
var result = [];
|
|
@@ -4757,7 +4765,7 @@ RED.state = {
|
|
|
4757
4765
|
initialLoad = flow;
|
|
4758
4766
|
}
|
|
4759
4767
|
},
|
|
4760
|
-
|
|
4768
|
+
listNodes: listNodes,
|
|
4761
4769
|
filterNodes: filterNodes,
|
|
4762
4770
|
filterLinks: filterLinks,
|
|
4763
4771
|
|