@kumologica/sdk 3.4.0-beta3 → 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 +4 -4
- package/src/app/main-process/modal-nodelibrary.js +2 -1
- package/src/app/ui/editor-client/public/red/red.js +4 -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/src/js/modals/modal-node-library.js +2 -1
- package/src/app/ui/editor-client/src/js/ui/palette-explorer.js +2 -0
- package/src/app/ui/editor-client/src/sass/header.scss +1 -1
- package/src/app/ui/editor-client/src/sass/palette.scss +2 -2
- package/src/app/ui/editor-client/src/sass/tabs.scss +2 -3
- package/src/app/ui/editor-client/src/sass/workspace.scss +1 -1
- package/src/app/ui/editor-client/templates/index.mst +1 -1
|
@@ -246,7 +246,8 @@ RED.modalNodeLibrary = (function () {
|
|
|
246
246
|
// Attach click event to launch the node library from the sidebar-footer
|
|
247
247
|
$('#launch-node-library').click((event) => {
|
|
248
248
|
event.preventDefault();
|
|
249
|
-
window.__kumologica.
|
|
249
|
+
window.__kumologica.electron.shell.openExternal('https://kumologica.com/nodes/index.html');
|
|
250
|
+
// window.__kumologica.main.dispatch('show-node-library-modal', null);
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
return {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
bottom: 0px;
|
|
24
24
|
left: 0px;
|
|
25
25
|
background: $kumologica-sidebar;
|
|
26
|
-
width:
|
|
26
|
+
width: 265px;
|
|
27
27
|
@include disable-selection;
|
|
28
28
|
// @include component-border;
|
|
29
29
|
// border-top: 1px solid #bbb;
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
display: block;
|
|
244
244
|
cursor: move;
|
|
245
245
|
//margin-left: 0px !important;
|
|
246
|
-
margin:
|
|
246
|
+
margin: 0px 27px;
|
|
247
247
|
height: 25px;
|
|
248
248
|
border-radius: 4px;
|
|
249
249
|
// border: 1px solid #999;
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
display: flex;
|
|
39
39
|
width: 100%;
|
|
40
40
|
position: relative;
|
|
41
|
-
left: 1px;
|
|
42
41
|
// justify-content: space-between;
|
|
43
42
|
box-sizing: border-box;
|
|
44
43
|
|
|
@@ -68,7 +67,7 @@
|
|
|
68
67
|
line-height: 30px;
|
|
69
68
|
// margin-top: 3px;
|
|
70
69
|
// border-right: 1px solid #dddcdc;
|
|
71
|
-
max-width:
|
|
70
|
+
max-width: 190px;
|
|
72
71
|
width: 14%;
|
|
73
72
|
overflow: hidden;
|
|
74
73
|
white-space: nowrap;
|
|
@@ -406,7 +405,7 @@ i.red-ui-tab-icon {
|
|
|
406
405
|
opacity: 0.6;
|
|
407
406
|
position: absolute;
|
|
408
407
|
right: 4px;
|
|
409
|
-
top:
|
|
408
|
+
top: 3px;
|
|
410
409
|
width: 20px;
|
|
411
410
|
height: 30px;
|
|
412
411
|
line-height: 28px;
|