@kumologica/sdk 3.6.0-beta12 → 3.6.0-beta13
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/cli/commands/export-commands/cloudformation.js +7 -0
- package/package.json +6 -5
- package/src/app/ui/editor-client/public/red/red.js +2 -828
- 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/sidebar.js +1 -1
- package/src/app/ui/editor-client/src/sass/palette.scss +34 -46
- package/src/app/ui/editor-client/src/sass/style.scss +1 -1
- package/src/app/ui/editor-client/src/sass/ui/common/searchBox.scss +0 -1
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
#palette-container {
|
|
35
35
|
background: $kumologica-sidebar;
|
|
36
|
-
|
|
36
|
+
margin-bottom: 55px;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
#palette-options {
|
|
@@ -108,18 +108,10 @@
|
|
|
108
108
|
border-radius: 5px;
|
|
109
109
|
padding: 5px 12px;
|
|
110
110
|
|
|
111
|
-
&:link {
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
&:
|
|
115
|
-
text-decoration: none;
|
|
116
|
-
}
|
|
117
|
-
&:hover {
|
|
118
|
-
text-decoration: none;
|
|
119
|
-
}
|
|
120
|
-
&:active {
|
|
121
|
-
text-decoration: none;
|
|
122
|
-
}
|
|
111
|
+
&:link { text-decoration: none; }
|
|
112
|
+
&:visited { text-decoration: none; }
|
|
113
|
+
&:hover { text-decoration: none; }
|
|
114
|
+
&:active { text-decoration: none; }
|
|
123
115
|
}
|
|
124
116
|
|
|
125
117
|
.palette-option-button {
|
|
@@ -135,24 +127,13 @@
|
|
|
135
127
|
line-height: 12px;
|
|
136
128
|
padding: 5px 12px;
|
|
137
129
|
|
|
138
|
-
&:link {
|
|
139
|
-
|
|
140
|
-
}
|
|
141
|
-
&:
|
|
142
|
-
text-decoration: none;
|
|
143
|
-
}
|
|
144
|
-
&:hover {
|
|
145
|
-
text-decoration: none;
|
|
146
|
-
}
|
|
147
|
-
&:active {
|
|
148
|
-
text-decoration: none;
|
|
149
|
-
}
|
|
130
|
+
&:link { text-decoration: none; }
|
|
131
|
+
&:visited { text-decoration: none; }
|
|
132
|
+
&:hover { text-decoration: none; }
|
|
133
|
+
&:active { text-decoration: none; }
|
|
150
134
|
}
|
|
151
135
|
|
|
152
136
|
#palette-nodes {
|
|
153
|
-
display: flex;
|
|
154
|
-
flex-direction: column;
|
|
155
|
-
height: 100%;
|
|
156
137
|
overflow-y: auto;
|
|
157
138
|
}
|
|
158
139
|
|
|
@@ -171,12 +152,12 @@
|
|
|
171
152
|
padding-left: 80px;
|
|
172
153
|
}
|
|
173
154
|
.palette-search {
|
|
174
|
-
display: flex;
|
|
175
155
|
margin-top: 5px;
|
|
176
156
|
margin-bottom: 8px;
|
|
157
|
+
position: relative;
|
|
177
158
|
overflow: hidden;
|
|
178
159
|
text-align: center;
|
|
179
|
-
height:
|
|
160
|
+
height: 35px;
|
|
180
161
|
padding: 3px 6px;
|
|
181
162
|
// border-bottom: 1px solid $primary-border-color;
|
|
182
163
|
box-sizing: border-box;
|
|
@@ -391,45 +372,49 @@
|
|
|
391
372
|
width: 25px;
|
|
392
373
|
}
|
|
393
374
|
|
|
375
|
+
|
|
376
|
+
|
|
394
377
|
/*
|
|
395
378
|
* ----------------
|
|
396
379
|
* Explorer tab
|
|
397
380
|
* ----------------
|
|
398
381
|
*/
|
|
399
382
|
|
|
400
|
-
#palette-explorer {
|
|
383
|
+
#palette-explorer {
|
|
401
384
|
display: flex;
|
|
402
385
|
flex-direction: column;
|
|
403
386
|
height: 100%;
|
|
404
387
|
overflow-y: auto;
|
|
405
|
-
}
|
|
388
|
+
}
|
|
406
389
|
|
|
407
|
-
#palette-explorer-top {
|
|
390
|
+
#palette-explorer-top {
|
|
408
391
|
display: flex;
|
|
409
392
|
margin-top: 6px;
|
|
410
|
-
}
|
|
393
|
+
}
|
|
411
394
|
|
|
412
|
-
#palette-explorer-bottom {
|
|
395
|
+
#palette-explorer-bottom {
|
|
413
396
|
display: flex;
|
|
414
397
|
margin-top: 5px;
|
|
415
398
|
padding-top: 6px;
|
|
416
399
|
border-top: 1px solid #cccbcb;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
#exp-workspace,
|
|
420
|
-
#exp-open-project
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
#exp-workspace,
|
|
403
|
+
#exp-open-project{
|
|
421
404
|
display: flex;
|
|
422
405
|
width: 100%;
|
|
423
|
-
}
|
|
406
|
+
}
|
|
424
407
|
|
|
425
|
-
#exp-workspace-addFolder,
|
|
426
|
-
#exp-open-project-createTab {
|
|
408
|
+
#exp-workspace-addFolder,
|
|
409
|
+
#exp-open-project-createTab {
|
|
427
410
|
display: flex;
|
|
428
411
|
height: fit-content;
|
|
429
|
-
}
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
|
|
430
415
|
|
|
431
|
-
#addProjectToWorkspace,
|
|
432
|
-
#createTab
|
|
416
|
+
#addProjectToWorkspace,
|
|
417
|
+
#createTab{
|
|
433
418
|
display: flex;
|
|
434
419
|
margin: 0px 5px 0 0;
|
|
435
420
|
padding: 6px;
|
|
@@ -444,7 +429,7 @@
|
|
|
444
429
|
position: relative;
|
|
445
430
|
left: 11px;
|
|
446
431
|
font-size: 10px;
|
|
447
|
-
background: #
|
|
432
|
+
background: #E59D37;
|
|
448
433
|
height: 6px;
|
|
449
434
|
width: 8px;
|
|
450
435
|
top: 4px;
|
|
@@ -455,3 +440,6 @@
|
|
|
455
440
|
align-content: center;
|
|
456
441
|
font-family: monospace;
|
|
457
442
|
}
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|