@kumologica/sdk 3.4.0-beta5 → 3.4.0-beta7
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/main-process/menu.js +1 -1
- package/src/app/ui/editor-client/public/red/red.js +14 -3
- 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/src/js/ui/header.js +1 -1
- package/src/app/ui/editor-client/src/js/ui/palette-explorer.js +5 -1
- package/src/app/ui/editor-client/src/js/ui/search.js +8 -1
- package/src/app/ui/editor-client/src/sass/header.scss +1 -0
- package/src/app/ui/editor-client/src/sass/palette.scss +19 -0
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-
|
|
6
|
+
"version": "3.4.0-beta7",
|
|
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-
|
|
68
|
-
"@kumologica/devkit": "3.4.0-
|
|
69
|
-
"@kumologica/runtime": "3.4.0-
|
|
67
|
+
"@kumologica/builder": "3.4.0-beta7",
|
|
68
|
+
"@kumologica/devkit": "3.4.0-beta7",
|
|
69
|
+
"@kumologica/runtime": "3.4.0-beta7",
|
|
70
70
|
"adm-zip": "0.4.13",
|
|
71
71
|
"ajv": "8.10.0",
|
|
72
72
|
"archive-type": "^4.0.0",
|
|
@@ -26567,7 +26567,11 @@ RED.sidebar.azure = (function () {
|
|
|
26567
26567
|
usecontextmenu: true,
|
|
26568
26568
|
closedIcon: $('<i class="icofont-rounded-right"></i>'),
|
|
26569
26569
|
openedIcon: $('<i class="icofont-rounded-down"></i>'),
|
|
26570
|
-
onCreateLi: function(node, $li) {
|
|
26570
|
+
onCreateLi: function(node, $li) {
|
|
26571
|
+
if (node.id !== '__root__'){
|
|
26572
|
+
$li.find('.jqtree-title').before('<span class="icon tab-icon">T</span>');
|
|
26573
|
+
}
|
|
26574
|
+
}
|
|
26571
26575
|
});
|
|
26572
26576
|
|
|
26573
26577
|
// Add the context menu
|
|
@@ -35162,7 +35166,7 @@ RED.notifications = (function() {
|
|
|
35162
35166
|
*/
|
|
35163
35167
|
function searchCommands() {
|
|
35164
35168
|
return [
|
|
35165
|
-
{ type: 'command', title: 'Open Settings', action: 'core:settings:open', shortcut: `${CtrlOrCmd()}
|
|
35169
|
+
{ type: 'command', title: 'Open Settings', action: 'core:settings:open', shortcut: `${CtrlOrCmd()} Y` },
|
|
35166
35170
|
{ type: 'command', title: 'Show Project Info', action: 'core:project-info' },
|
|
35167
35171
|
{ type: 'command', title: 'Run Test...', cb: () => {
|
|
35168
35172
|
if (!$('.sidebar-test').is(':visible')){
|
|
@@ -35171,8 +35175,15 @@ RED.notifications = (function() {
|
|
|
35171
35175
|
|
|
35172
35176
|
$('#test-sidebar-run-btn').click();
|
|
35173
35177
|
} },
|
|
35178
|
+
{ type: 'command', title: 'Open Log Viewer', cb: ()=> {
|
|
35179
|
+
$('#workspace-terminal').toggle()
|
|
35180
|
+
}, shortcut: `${CtrlOrCmd()} T` },
|
|
35174
35181
|
{ type: 'command', title: 'Import Flow', action: 'core:show-import-dialog', shortcut: `${CtrlOrCmd()} I` },
|
|
35175
35182
|
{ type: 'command', title: 'Export Flow', action: 'core:show-export-dialog', shortcut: `${CtrlOrCmd()} E` },
|
|
35183
|
+
{ type: 'command', title: 'Help: Documentation', cb: ()=> {
|
|
35184
|
+
window.__kumologica.electron.shell.openExternal('https://docs.kumologica.com/docs/guide/Intro.html');
|
|
35185
|
+
},
|
|
35186
|
+
}
|
|
35176
35187
|
]
|
|
35177
35188
|
}
|
|
35178
35189
|
|
|
@@ -44190,7 +44201,7 @@ RED.touch.radialMenu = (function() {
|
|
|
44190
44201
|
RED.actions.invoke('core:deploy');
|
|
44191
44202
|
});
|
|
44192
44203
|
|
|
44193
|
-
|
|
44204
|
+
RED.popover.tooltip($('#btn-deploy'), 'Save & Deploy');
|
|
44194
44205
|
}
|
|
44195
44206
|
|
|
44196
44207
|
function deployFlow() {
|