@kumologica/sdk 3.0.21 → 3.0.22

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.0.21",
6
+ "version": "3.0.22",
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.21",
69
- "@kumologica/devkit": "3.0.21",
70
- "@kumologica/runtime": "3.0.21",
68
+ "@kumologica/builder": "3.0.22",
69
+ "@kumologica/devkit": "3.0.22",
70
+ "@kumologica/runtime": "3.0.22",
71
71
  "adm-zip": "0.4.13",
72
72
  "ajv": "8.10.0",
73
73
  "aws-sdk": "2.513.0",
@@ -88,7 +88,7 @@
88
88
  "express": "4.17.3",
89
89
  "express-session": "1.16.2",
90
90
  "extract-json-from-string": "1.0.1",
91
- "fs-extra": "8.1.0",
91
+ "fs-extra": "10.1.0",
92
92
  "glob": "7.1.6",
93
93
  "got": "11.8.2",
94
94
  "hash-sum": "2.0.0",
@@ -42,7 +42,6 @@ const deployCli = require('@kumologica/builder');
42
42
  const Azure = require('./lib/azure');
43
43
 
44
44
  const { openFileOnEditor, openFolder } = require('./lib/utils/editor');
45
- const { removeRemote } = require('@kumologica/runtime/src/runtime/lib/storage/localfilesystem/projects');
46
45
 
47
46
  const terminalEmitter = new events.EventEmitter();
48
47
  const awsDeployer = new AWSDeployer(terminalEmitter);
@@ -9446,14 +9446,19 @@ RED.panels = (function() {
9446
9446
  return ul.find("a[href='#" + id + "']").length > 0;
9447
9447
  },
9448
9448
  renameTab: function (id, label) {
9449
- tabs[id].label = label;
9450
- var tab = ul.find("a[href='#" + id + "']");
9451
- tab.attr('title', label);
9452
- tab
9453
- .find('span.bidiAware')
9454
- .text(label)
9455
- .attr('dir', RED.text.bidi.resolveBaseTextDir(label));
9456
- updateTabWidths();
9449
+ if (tabs[id]){
9450
+ tabs[id].label = label;
9451
+ var tab = ul.find("a[href='#" + id + "']");
9452
+ tab.attr('title', label);
9453
+ tab
9454
+ .find('span.bidiAware')
9455
+ .text(label)
9456
+ .attr('dir', RED.text.bidi.resolveBaseTextDir(label));
9457
+ updateTabWidths();
9458
+ } else {
9459
+ console.log('[tabs] Tab not found')
9460
+ }
9461
+
9457
9462
  },
9458
9463
  selection: getSelection,
9459
9464
  order: function (order) {
@@ -17380,7 +17385,7 @@ RED.h = handlers;
17380
17385
  }
17381
17386
  }
17382
17387
  clipboard = JSON.stringify(nns);
17383
- RED.notify(`${nns.length} node copied`);
17388
+ // RED.notify(`${nns.length} node copied`);
17384
17389
  }
17385
17390
  }
17386
17391
 
@@ -20168,7 +20173,7 @@ RED.h = handlers;
20168
20173
  }
20169
20174
  if (counts.length > 0) {
20170
20175
  var countList = '<ul><li>' + counts.join('</li><li>') + '</li></ul>';
20171
- RED.notify(`<p>Imported:</p> ${countList}`)
20176
+ // RED.notify(`<p>Imported:</p> ${countList}`)
20172
20177
  }
20173
20178
  }
20174
20179
  } catch (error) {