@node-red/editor-client 3.0.0-beta.2 → 3.0.0
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/locales/de/editor.json +130 -53
- package/locales/en-US/editor.json +77 -61
- package/locales/en-US/infotips.json +19 -19
- package/locales/en-US/jsonata.json +40 -40
- package/locales/ja/editor.json +31 -6
- package/locales/ja/infotips.json +1 -1
- package/locales/zh-CN/editor.json +7 -7
- package/package.json +1 -1
- package/public/red/about +114 -522
- package/public/red/images/start.svg +4 -0
- package/public/red/images/stop.svg +4 -0
- package/public/red/keymap.json +15 -13
- package/public/red/red.js +1188 -379
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +2 -2
- package/public/red/tours/2.1/welcome.js +229 -0
- package/public/red/tours/2.2/images/delete-repair.gif +0 -0
- package/public/red/tours/2.2/images/detach-repair.gif +0 -0
- package/public/red/tours/2.2/images/slice.gif +0 -0
- package/public/red/tours/2.2/images/subflow-labels.png +0 -0
- package/public/red/tours/2.2/welcome.js +156 -0
- package/public/red/tours/images/context-menu.png +0 -0
- package/public/red/tours/welcome.js +26 -10
- package/public/vendor/vendor.js +4 -4
package/public/red/keymap.json
CHANGED
|
@@ -3,16 +3,12 @@
|
|
|
3
3
|
"alt-shift-p":"core:manage-palette",
|
|
4
4
|
"ctrl-f": "core:search",
|
|
5
5
|
"ctrl-shift-f": "core:list-flows",
|
|
6
|
-
"ctrl-+": "core:zoom-in",
|
|
7
|
-
"ctrl--": "core:zoom-out",
|
|
8
|
-
"ctrl-0": "core:zoom-reset",
|
|
9
|
-
"ctrl-enter": "core:confirm-edit-tray",
|
|
10
|
-
"ctrl-escape": "core:cancel-edit-tray",
|
|
11
6
|
"ctrl-d": "core:deploy-flows",
|
|
12
|
-
"ctrl-g i": "core:show-info-tab",
|
|
13
|
-
"ctrl-g h": "core:show-help-tab",
|
|
14
|
-
"ctrl-g d": "core:show-debug-tab",
|
|
15
7
|
"ctrl-g c": "core:show-config-tab",
|
|
8
|
+
"ctrl-g d": "core:show-debug-tab",
|
|
9
|
+
"ctrl-g h": "core:show-help-tab",
|
|
10
|
+
"ctrl-g i": "core:show-info-tab",
|
|
11
|
+
"ctrl-g v": "core:show-version-control-tab",
|
|
16
12
|
"ctrl-g x": "core:show-context-tab",
|
|
17
13
|
"ctrl-e": "core:show-export-dialog",
|
|
18
14
|
"ctrl-i": "core:show-import-dialog",
|
|
@@ -23,11 +19,8 @@
|
|
|
23
19
|
"ctrl-alt-r": "core:show-remote-diff",
|
|
24
20
|
"ctrl-alt-n": "core:new-project",
|
|
25
21
|
"ctrl-alt-o": "core:open-project",
|
|
26
|
-
"ctrl-g v": "core:show-version-control-tab",
|
|
27
22
|
"ctrl-shift-l": "core:show-event-log",
|
|
28
|
-
"ctrl-shift-p":"core:show-action-list"
|
|
29
|
-
"alt-w": "core:hide-flow",
|
|
30
|
-
"alt-shift-w": "core:show-last-hidden-flow"
|
|
23
|
+
"ctrl-shift-p":"core:show-action-list"
|
|
31
24
|
},
|
|
32
25
|
"red-ui-sidebar-node-config": {
|
|
33
26
|
"backspace": "core:delete-config-selection",
|
|
@@ -93,7 +86,16 @@
|
|
|
93
86
|
"alt-a v": "core:distribute-selection-vertically",
|
|
94
87
|
"shift-f": "core:search-previous",
|
|
95
88
|
"f": "core:search-next",
|
|
96
|
-
"alt-l l": "core:split-wire-with-link-nodes"
|
|
89
|
+
"alt-l l": "core:split-wire-with-link-nodes",
|
|
90
|
+
"alt-w": "core:hide-flow",
|
|
91
|
+
"alt-shift-w": "core:show-last-hidden-flow",
|
|
92
|
+
"ctrl-+": "core:zoom-in",
|
|
93
|
+
"ctrl--": "core:zoom-out",
|
|
94
|
+
"ctrl-0": "core:zoom-reset"
|
|
97
95
|
|
|
96
|
+
},
|
|
97
|
+
"red-ui-editor-stack": {
|
|
98
|
+
"ctrl-enter": "core:confirm-edit-tray",
|
|
99
|
+
"ctrl-escape": "core:cancel-edit-tray"
|
|
98
100
|
}
|
|
99
101
|
}
|