@kumologica/sdk 3.4.0-beta4 → 3.4.0-beta5

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
@@ -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.4.0-beta4",
6
+ "version": "3.4.0-beta5",
7
7
  "description": "Kumologica Designer, harnessing Serverless for your cloud integration needs",
8
8
  "main": "src/app/main.js",
9
9
  "files": [
@@ -64,9 +64,9 @@
64
64
  "license": "Proprietary",
65
65
  "dependencies": {
66
66
  "@electron/remote": "^2.0.8",
67
- "@kumologica/builder": "3.4.0-beta4",
68
- "@kumologica/devkit": "3.4.0-beta4",
69
- "@kumologica/runtime": "3.4.0-beta4",
67
+ "@kumologica/builder": "3.4.0-beta5",
68
+ "@kumologica/devkit": "3.4.0-beta5",
69
+ "@kumologica/runtime": "3.4.0-beta5",
70
70
  "adm-zip": "0.4.13",
71
71
  "ajv": "8.10.0",
72
72
  "archive-type": "^4.0.0",
@@ -36,7 +36,8 @@ class ModalNodeLibrary {
36
36
  };
37
37
 
38
38
  this.window = new BrowserWindow(windowOptions);
39
-
39
+ require('@electron/remote/main').enable(this.window.webContents);
40
+
40
41
  // this.window.webContents.openDevTools();
41
42
 
42
43
  this.window.on('focus', () => this.window.webContents.send('focus'));
@@ -26549,6 +26549,8 @@ RED.sidebar.azure = (function () {
26549
26549
  ];
26550
26550
 
26551
26551
  try{
26552
+ if (!window.jqtree) return; // Hack - otherwise the nodeLibrary modal fail to load due to this library being missed
26553
+
26552
26554
  $('#exp-open-project').tree({
26553
26555
  data:data,
26554
26556
  autoOpen: true,
@@ -45404,7 +45406,8 @@ RED.touch.radialMenu = (function() {
45404
45406
  // Attach click event to launch the node library from the sidebar-footer
45405
45407
  $('#launch-node-library').click((event) => {
45406
45408
  event.preventDefault();
45407
- window.__kumologica.main.dispatch('show-node-library-modal', null);
45409
+ window.__kumologica.electron.shell.openExternal('https://kumologica.com/nodes/index.html');
45410
+ // window.__kumologica.main.dispatch('show-node-library-modal', null);
45408
45411
  });
45409
45412
  }
45410
45413
  return {