@node-red/editor-client 2.0.4 → 2.1.0-beta.2

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.
Files changed (77) hide show
  1. package/locales/en-US/editor.json +37 -7
  2. package/locales/ko/editor.json +1 -1
  3. package/package.json +2 -2
  4. package/public/red/about +109 -0
  5. package/public/red/images/node-red-256.svg +1 -0
  6. package/public/red/keymap.json +13 -2
  7. package/public/red/red.js +6122 -3663
  8. package/public/red/red.min.js +1 -1
  9. package/public/red/style.min.css +2 -2
  10. package/public/red/tours/first-flow.js +80 -0
  11. package/public/red/tours/welcome.js +135 -0
  12. package/public/tours/first-flow.js +82 -0
  13. package/public/types/node/assert.d.ts +127 -0
  14. package/public/types/node/async_hooks.d.ts +229 -0
  15. package/public/types/node/buffer.d.ts +25 -1
  16. package/public/types/node/child_process.d.ts +514 -6
  17. package/public/types/node/cluster.d.ts +265 -0
  18. package/public/types/node/console.d.ts +136 -1
  19. package/public/types/node/crypto.d.ts +1189 -1
  20. package/public/types/node/dgram.d.ts +144 -1
  21. package/public/types/node/dns.d.ts +383 -10
  22. package/public/types/node/domain.d.ts +27 -1
  23. package/public/types/node/events.d.ts +81 -1
  24. package/public/types/node/fs.d.ts +2273 -1
  25. package/public/types/node/globals.d.ts +616 -1
  26. package/public/types/node/http.d.ts +489 -1
  27. package/public/types/node/http2.d.ts +961 -0
  28. package/public/types/node/https.d.ts +142 -0
  29. package/public/types/node/module.d.ts +55 -0
  30. package/public/types/node/net.d.ts +296 -1
  31. package/public/types/node/os.d.ts +242 -1
  32. package/public/types/node/path.d.ts +156 -1
  33. package/public/types/node/perf_hooks.d.ts +274 -0
  34. package/public/types/node/process.d.ts +412 -1
  35. package/public/types/node/querystring.d.ts +31 -1
  36. package/public/types/node/readline.d.ts +173 -0
  37. package/public/types/node/stream.d.ts +358 -0
  38. package/public/types/node/string_decoder.d.ts +10 -0
  39. package/public/types/node/timers.d.ts +19 -0
  40. package/public/types/node/tls.d.ts +783 -0
  41. package/public/types/node/trace_events.d.ts +64 -0
  42. package/public/types/node/tty.d.ts +69 -0
  43. package/public/types/node/url.d.ts +119 -1
  44. package/public/types/node/util.d.ts +210 -0
  45. package/public/types/node/v8.d.ts +190 -0
  46. package/public/types/node/vm.d.ts +155 -0
  47. package/public/types/node/wasi.d.ts +89 -0
  48. package/public/types/node/worker_threads.d.ts +241 -0
  49. package/public/types/node/zlib.d.ts +364 -0
  50. package/public/types/node-red/func.d.ts +1 -1
  51. package/public/types/node-red/util.d.ts +1 -1
  52. package/public/vendor/ace/worker-jsonata.js +1 -1
  53. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +192 -192
  54. package/public/vendor/monaco/dist/css.worker.js +1 -1
  55. package/public/vendor/monaco/dist/editor.js +2 -2
  56. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  57. package/public/vendor/monaco/dist/html.worker.js +1 -1
  58. package/public/vendor/monaco/dist/json.worker.js +1 -1
  59. package/public/vendor/monaco/dist/locale/cs.js +44 -10
  60. package/public/vendor/monaco/dist/locale/de.js +46 -12
  61. package/public/vendor/monaco/dist/locale/es.js +46 -12
  62. package/public/vendor/monaco/dist/locale/fr.js +43 -9
  63. package/public/vendor/monaco/dist/locale/it.js +45 -11
  64. package/public/vendor/monaco/dist/locale/ja.js +45 -11
  65. package/public/vendor/monaco/dist/locale/ko.js +44 -10
  66. package/public/vendor/monaco/dist/locale/pl.js +42 -8
  67. package/public/vendor/monaco/dist/locale/pt-br.js +49 -15
  68. package/public/vendor/monaco/dist/locale/qps-ploc.js +1445 -0
  69. package/public/vendor/monaco/dist/locale/ru.js +48 -14
  70. package/public/vendor/monaco/dist/locale/tr.js +49 -15
  71. package/public/vendor/monaco/dist/locale/zh-hans.js +48 -14
  72. package/public/vendor/monaco/dist/locale/zh-hant.js +45 -11
  73. package/public/vendor/monaco/dist/theme/monoindustrial.json +228 -0
  74. package/public/vendor/monaco/dist/theme/solarized-dark.json +1082 -0
  75. package/public/vendor/monaco/dist/ts.worker.js +2 -2
  76. package/public/vendor/vendor.js +4 -4
  77. package/templates/index.mst +5 -1
@@ -53,8 +53,15 @@
53
53
  "confirmDelete": "Confirm delete",
54
54
  "delete": "Are you sure you want to delete '__label__'?",
55
55
  "dropFlowHere": "Drop the flow here",
56
- "addFlow": "Add Flow",
57
- "listFlows": "List Flows",
56
+ "addFlow": "Add flow",
57
+ "addFlowToRight": "Add flow to the right",
58
+ "hideFlow": "Hide flow",
59
+ "hideOtherFlows": "Hide other flows",
60
+ "showAllFlows": "Show all flows",
61
+ "hideAllFlows": "Hide all flows",
62
+ "showLastHiddenFlow": "Show last hidden flow",
63
+ "listFlows": "List flows",
64
+ "listSubflows": "List subflows",
58
65
  "status": "Status",
59
66
  "enabled": "Enabled",
60
67
  "disabled":"Disabled",
@@ -105,6 +112,7 @@
105
112
  "editPalette":"Manage palette",
106
113
  "other": "Other",
107
114
  "showTips": "Show tips",
115
+ "showWelcomeTours": "Show guided tours for new versions",
108
116
  "help": "Node-RED website",
109
117
  "projects": "Projects",
110
118
  "projects-new": "New",
@@ -116,7 +124,20 @@
116
124
  "groupSelection": "Group selection",
117
125
  "ungroupSelection": "Ungroup selection",
118
126
  "groupMergeSelection": "Merge selection",
119
- "groupRemoveSelection": "Remove from group"
127
+ "groupRemoveSelection": "Remove from group",
128
+ "arrange":"Arrange",
129
+ "alignLeft":"Align to left",
130
+ "alignCenter":"Align to center",
131
+ "alignRight":"Align to right",
132
+ "alignTop":"Align to top",
133
+ "alignMiddle":"Align to middle",
134
+ "alignBottom":"Align to bottom",
135
+ "distributeHorizontally":"Distribute horizontally",
136
+ "distributeVertically":"Distribute vertically",
137
+ "moveToBack":"Move to back",
138
+ "moveToFront":"Move to front",
139
+ "moveBackwards":"Move backwards",
140
+ "moveForwards":"Move forwards"
120
141
  }
121
142
  },
122
143
  "actions": {
@@ -450,8 +471,9 @@
450
471
  "unassigned": "Unassigned",
451
472
  "global": "global",
452
473
  "workspace": "workspace",
453
- "selectAll": "Select all nodes",
454
- "selectAllConnected": "Select all connected nodes",
474
+ "selectAll": "Select all",
475
+ "selectNone": "Select none",
476
+ "selectAllConnected": "Select connected",
455
477
  "addRemoveNode": "Add/remove node from selection",
456
478
  "editSelected": "Edit selected node",
457
479
  "deleteSelected": "Delete selected nodes or link",
@@ -464,7 +486,10 @@
464
486
  "copyNode": "Copy selected nodes",
465
487
  "cutNode": "Cut selected nodes",
466
488
  "pasteNode": "Paste nodes",
467
- "undoChange": "Undo the last change performed",
489
+ "copyGroupStyle": "Copy group style",
490
+ "pasteGroupStyle": "Paste group style",
491
+ "undoChange": "Undo",
492
+ "redoChange": "Redo",
468
493
  "searchBox": "Open search box",
469
494
  "managePalette": "Manage palette",
470
495
  "actionList":"Action list"
@@ -519,7 +544,8 @@
519
544
  "nodeEnabled_plural": "Nodes enabled:",
520
545
  "nodeDisabled": "Node disabled:",
521
546
  "nodeDisabled_plural": "Nodes disabled:",
522
- "nodeUpgraded": "Node module __module__ upgraded to version __version__"
547
+ "nodeUpgraded": "Node module __module__ upgraded to version __version__",
548
+ "unknownNodeRegistered": "Error loading node: <ul><li>__type__<br>__error__</li></ul>"
523
549
  },
524
550
  "editor": {
525
551
  "title": "Manage palette",
@@ -1108,6 +1134,10 @@
1108
1134
  "preview": "UI Preview",
1109
1135
  "defaultValue": "Default value"
1110
1136
  },
1137
+ "tourGuide": {
1138
+ "start": "Start",
1139
+ "next": "Next"
1140
+ },
1111
1141
  "languages" : {
1112
1142
  "de": "German",
1113
1143
  "en-US": "English",
@@ -56,7 +56,7 @@
56
56
  "displayConfig": "설정노드 보기",
57
57
  "import": "가져오기",
58
58
  "export": "내보내기",
59
- "search": "플로우 겅색",
59
+ "search": "플로우 검색",
60
60
  "searchInput": "플로우 검색",
61
61
  "subflows": "보조 플로우",
62
62
  "createSubflow": "보조 플로우 생성",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-client",
3
- "version": "2.0.4",
3
+ "version": "2.1.0-beta.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "name": "Dave Conway-Jones"
15
15
  }
16
16
  ],
17
- "main": "./lib/index.js"
17
+ "main": "./index.js"
18
18
  }
package/public/red/about CHANGED
@@ -1,3 +1,112 @@
1
+ #### 2.1.0-beta.2: Beta Release
2
+
3
+ Editor
4
+
5
+ - Fix switching projects (#3199) @knolleary
6
+ - Use locale setting when installing/enabling node (#3198) @knolleary
7
+ - Do not show projects-wecome dialog until welcome tour completes (#3197) @knolleary
8
+ - Fix converting selection to subflow (#3196) @knolleary
9
+ - Avoid conflicts with native browser cmd-ctrl type shortcuts (#3195) @knolleary
10
+ - Ensure message tools stay attached to top-level entry in Debug/Context (#3186) @knolleary
11
+ - Ensure tab state updates properly when toggling enable state (#3175) @knolleary
12
+ - Improve handling of long labels in TreeList (#3176) @knolleary
13
+ - Shift-click tab scroll arrows to jump to start/end (#3177) @knolleary
14
+
15
+ Runtime
16
+
17
+ - Update package dependencies
18
+ - Update to latest node-red-admin
19
+
20
+ Nodes
21
+
22
+ - Dynamic MQTT connections (#3189)
23
+ - Link: Filter out Link Out Return nodes in Link In edit dialog Fixes #3187
24
+ - Link: Fix link call label (#3200) @knolleary
25
+ - Debug: Redesign debug filter options and make them persistant (#3183) @knolleary
26
+ - Inject: Widen Inject interval box for >1 digit (#3184) @knolleary
27
+ - Switch: Fix rule focus when switch 'otherwise' rule is used (#3185) @knolleary
28
+
29
+
30
+
31
+ #### 2.1.0-beta.1: Beta Release
32
+
33
+ Editor
34
+
35
+ - Add Tour Guide component (#3136) @knolleary
36
+ - Allow tabs to be hidden (#3120) @knolleary
37
+ - Add align actions to editor (#3110) @knolleary
38
+ - Add support of environment variable for tab & group (#3112) @HiroyasuNishiyama
39
+ - Add autoComplete widget and add to TypedInput for msg. props (#3171) @knolleary
40
+ - Render node documentation to node-red style guide when written in markdown. (#3169) @Steve-Mcl
41
+ - Allow colouring of tab icon svg (#3140) @harmonic7
42
+ - Restore tab selection after merging conflicts (#3151) @GerwinvBeek
43
+ - Fix serving of theme files on Windows (#3154) @knolleary
44
+ - Ensure config-node select inherits width properly from input (#3155) @knolleary
45
+ - Do better remembering TypedInput values whilst switching types (#3159) @knolleary
46
+ - Update monaco to 0.28.1 (#3153) @knolleary
47
+ - Improve themeing of tourGuide (#3161) @knolleary
48
+ - Allow a node to specify a filter for the config nodes it can pick from (#3160) @knolleary
49
+ - Allow RED.notify.update to modify any notification setting (#3163) @knolleary
50
+ - Fix typo in ko editor.json Fixes #3119
51
+ - Improve RED.actions api to ensure actions cannot be overridden
52
+ - Ensure treeList row has suitable min-height when no content Fixes #3109
53
+ - Refactor edit dialogs to use separate edit panes
54
+ - Ensure type select button is not focussable when TypedInput only has one type
55
+ - Place close tab link in front of fade
56
+
57
+ Runtime
58
+
59
+ - Improve error reporting with oauth login strategies (#3148) @knolleary
60
+ - Add allowUpdate feature to externalModules.palette (#3143) @knolleary
61
+ - Improve node install error reporting (#3158) @knolleary
62
+ - Improve unit test coverage (#3168) @knolleary
63
+ - Allow coreNodesDir to be set to false (#3149) @hardillb
64
+ - Update package dependencies
65
+ - uncaughtException debug improvements (#3146) @renatojuniorrs
66
+
67
+ Nodes
68
+
69
+ - Change: Add option to deep-clone properties in Change node (#3156) @knolleary
70
+ - Delay: Add push to front of rate limit queue. (#3069) @dceejay
71
+ - File: Add paletteLabel to file nodes to make read/write more obvious (#3157) @knolleary
72
+ - HTTP Request: Extend HTTP request node to log detailed timing information (#3116) @k-toumura
73
+ - HTTP Response: Fix sizing of HTTP Response header fields (#3164) @knolleary
74
+ - Join: Support for msg.restartTimeout (#3121) @magma1447
75
+ - Link Call: Add Link Call node (#3152) @knolleary
76
+ - Switch: Copy previous rule type when adding rule to switch node (#3170) @knolleary
77
+ - Delay node: add option to send intermediate messages on separate output (#3166) @knolleary
78
+ - Typo in http request set method translation (#3173) @mailsvb
79
+
80
+ #### 2.0.6: Maintenance Release
81
+
82
+ Editor
83
+
84
+ - Fix typo in ko editor.json Fixes #3119
85
+ - Change fade color when hovering an inactive tab (#3106) @bonanitech
86
+ - Ensure treeList row has suitable min-height when no content Fixes #3109
87
+
88
+ Runtime
89
+
90
+ - Update tar to latest (#3128) @aksswami
91
+ - Give passport verify callback the same arity as the original callback (#3117) @dschmidt
92
+ - Handle HTTPS Key and certificate as string or buffer (#3115) @bartbutenaers
93
+
94
+ #### 2.0.5: Maintenance Release
95
+
96
+ Editor
97
+
98
+ - Remove default ctrl-enter keybinding from monaco editor Fixes #3093
99
+
100
+ Runtime
101
+
102
+ - Update tar dependency
103
+ - Add support for maintenance streams in generate-publish-script
104
+
105
+
106
+ Nodes
107
+
108
+ - Fix regression in Join node when manual joining array with msg.parts present Fixes #3096
109
+
1
110
  #### 2.0.4: Maintenance Release
2
111
 
3
112
  Editor
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="512" width="512"><g transform="translate(0 -540.36)"><path fill="#8f0000" color="#000" d="M0 540.36h512v392H0z"/><rect ry="0" height="108.23" width="500.23" stroke="#fff" y="938.25" x="5.89" stroke-width="11.77" fill="#fff"/><path style="text-decoration-color:#000;isolation:auto;mix-blend-mode:normal;solid-color:#000;block-progression:tb;text-decoration-line:none;white-space:normal;text-indent:0;text-transform:none;text-decoration-style:solid" d="M122.88 305.82a4.46 4.46 0 0 0-4.38 4.42v.78c-2.23.1-4.04.54-5.33 1.43a10.5 10.5 0 0 0-3.18 3.87c-.71 1.3-1.3 2.41-2.15 3.2-.72.66-1.8 1.12-3.45 1.32a4.37 4.37 0 0 0-4.3-3.95H82.91a4.43 4.43 0 0 0-4.42 4.35v4.24a4.43 4.43 0 0 0 4.42 4.36h17.16a4.4 4.4 0 0 0 4.4-4.36v-1.6c9.72.14 12.46 2.6 15.59 5.33 3 2.62 6.66 5.38 15.43 5.5v.73a4.49 4.49 0 0 0 4.46 4.38h17.09c2.38 0 4.45-2 4.45-4.38v-4.24a4.49 4.49 0 0 0-4.45-4.38h-17.1c-2.38 0-4.45 2-4.45 4.38v.58c-8.1-.06-10.48-2.15-13.5-4.79-2.5-2.19-5.64-4.58-11.94-5.58 1.17-1.18 1.88-2.52 2.51-3.66.68-1.23 1.29-2.2 2.27-2.88.76-.52 1.98-.84 3.66-.94v.55c0 2.39 2 4.34 4.38 4.34h17.24a4.39 4.39 0 0 0 4.38-4.34v-4.24c0-2.38-2-4.42-4.38-4.42zm0 3h17.24c.8 0 1.38.62 1.38 1.42v4.24c0 .81-.57 1.34-1.38 1.34h-17.24c-.8 0-1.38-.53-1.38-1.34v-4.24c0-.8.57-1.42 1.38-1.42zm-39.96 11.02h17.16c.81 0 1.42.6 1.42 1.4v4.24c0 .81-.61 1.41-1.42 1.41H82.92c-.8 0-1.42-.6-1.42-1.4v-4.25c0-.8.61-1.4 1.42-1.4zm57.04 9.98h17.09c.8 0 1.45.57 1.45 1.38v4.17c0 .8-.65 1.45-1.45 1.45h-17.1c-.8 0-1.45-.65-1.45-1.45v-4.17c0-.8.65-1.38 1.46-1.38z" fill="#fff" color="#000" transform="matrix(4 0 0 4 -162 -450.91)"/><g fill="#8f0000"><path d="M91 954.34v8.45l-8 1.45v60.07H69.03l-28.53-47.1-.5.05v37.2l8 1.44v8.41H19v-8.4l7.45-1.45v-50.22L19 962.79v-8.46h21.48l28.37 47.1.15-.04v-37.15l-7-1.45v-8.45h29zM95 997.83q0-11.63 6.49-19.03 6.53-7.45 18.02-7.45 11.53 0 18.02 7.4 6.54 7.4 6.54 19.08v1q0 11.74-6.54 19.14-6.49 7.35-17.93 7.35-11.58 0-18.11-7.35-6.5-7.4-6.5-19.13v-1.01zm14.03 1q0 7.12 2.5 11.45 2.5 4.28 8.08 4.28 5.43 0 7.93-4.33 2.54-4.33 2.54-11.4v-1q0-6.92-2.54-11.3-2.55-4.37-8.03-4.37t-7.98 4.37-2.5 11.3v1zM184.48 1017.96a17.15 17.15 0 0 1-5.82 5.48 15.17 15.17 0 0 1-7.59 1.88c-6.4 0-11.4-2.35-14.95-7.03-3.52-4.67-5.13-10.86-5.13-18.55v-1c0-8.21 1.62-14.83 5.18-19.86 3.56-5.03 8.56-7.54 15-7.54 2.6 0 4.93.57 7.01 1.73a17.94 17.94 0 0 1 5.81 4.8v-18.64l-8-1.45v-8.46h22v65.13l6 1.44v8.43h-18.45l-1.06-6.36zm-19.49-18.22c0 4.55.63 8.14 2.14 10.77 1.54 2.6 4.04 3.9 7.5 3.9 2.05 0 3.83-.43 5.33-1.26 1.5-.83 3.07-2.03 4.03-3.6v-22.06a11.27 11.27 0 0 0-4.03-3.85 9.62 9.62 0 0 0-5.24-1.4c-3.43 0-5.92 1.53-7.5 4.57s-2.23 7.02-2.23 11.92v1.01zM233.7 1025.28c-7.5 0-13.5-2.4-17.98-7.21-4.48-4.81-6.73-10.91-6.73-18.32v-1.92c0-7.72 2.12-14.08 6.35-19.08 4.26-5 9.96-7.46 17.1-7.43 7.03 0 12.47 2.1 16.35 6.33a23.46 23.46 0 0 1 6.2 17.15v7.52h-31.43l-.1.41c.26 3.43 1.4 6.25 3.41 8.46 2.05 2.21 4.83 3.32 8.32 3.32 3.1 0 5.69-.3 7.74-.91 2.05-.64 4.29-1.64 6.73-2.98l3.8 8.65a27.59 27.59 0 0 1-8.37 4.28 35.28 35.28 0 0 1-11.4 1.73zm-1.25-43.16c-2.6 0-4.65.99-6.15 2.98s-2.44 4.6-2.8 7.83l.15.4H241v-1.41c0-2.98-.84-5.35-2.25-7.11-1.37-1.8-3.47-2.7-6.3-2.7zM291.99 1000.32h-27v-11h27zM331.88 954.34c7.95 0 14.18 1.82 18.7 5.47 4.52 3.63 6.4 8.64 6.4 15.05 0 3.52-.57 6.58-2.46 9.18-1.89 2.6-4.66 4.7-8.31 6.3 4.13 1.21 7.1 3.25 8.89 6.1a19.02 19.02 0 0 1 2.89 10.52v3.56c0 1.54.15 2.74.76 3.6.6.84 1.62 1.34 3.03 1.5l1.2.24v8.46h-6.73c-4.58 0-7.8-1.24-9.66-3.7s-2.6-5.66-2.6-9.57v-3.99c0-3.4-1.1-6.05-2.93-7.98-1.8-1.95-4.34-2.98-7.64-3.07H322v18.45l7 1.44v8.42h-29v-8.42l8-1.44v-50.22l-8-1.44v-8.46h31.89zm-9.95 30.85h9.71c3.91 0 6.84-.83 8.8-2.5s2.93-4.07 2.93-7.2c0-3.15-.98-5.65-2.93-7.5-1.92-1.9-4.78-2.84-8.56-2.84h-9.9v20.04zM412.99 993.32h-23v20h22.21l.63-8h10.2v18.99H368v-8.42l8-1.44v-50.22l-8-1.44v-8.47h54.95v19h-10.3l-.63-8H390v17h23v11zM462.48 954.36c8.55 0 15.6 2.71 21.14 8.19 5.55 5.45 8.36 12.42 8.36 20.98v11.58c0 8.59-2.81 15.63-8.36 21.08-5.54 5.41-12.59 8.12-21.14 8.12h-31.5v-8.41l7-1.52v-50.22l-7-1.37v-8.43l7.46-.08 24.04.08zm-10.5 10.76v48.4l9.77.02c5.03.02 8.98-1.7 11.83-5.1 2.85-3.39 4.4-7.8 4.4-13.28v-11.68c0-5.42-1.55-9.84-4.4-13.24-2.85-3.4-6.8-5.1-11.83-5.1l-9.77-.02z"/></g></g></svg>
@@ -25,7 +25,9 @@
25
25
  "ctrl-alt-o": "core:open-project",
26
26
  "ctrl-g v": "core:show-version-control-tab",
27
27
  "ctrl-shift-l": "core:show-event-log",
28
- "ctrl-shift-p":"core:show-action-list"
28
+ "ctrl-shift-p":"core:show-action-list",
29
+ "alt-w": "core:hide-flow",
30
+ "alt-shift-w": "core:show-last-hidden-flow"
29
31
  },
30
32
  "red-ui-sidebar-node-config": {
31
33
  "backspace": "core:delete-config-selection",
@@ -77,6 +79,15 @@
77
79
  "right": "core:go-to-nearest-node-on-right",
78
80
  "left": "core:go-to-nearest-node-on-left",
79
81
  "up": "core:go-to-nearest-node-above",
80
- "down": "core:go-to-nearest-node-below"
82
+ "down": "core:go-to-nearest-node-below",
83
+ "alt-a g": "core:align-selection-to-grid",
84
+ "alt-a l": "core:align-selection-to-left",
85
+ "alt-a r": "core:align-selection-to-right",
86
+ "alt-a t": "core:align-selection-to-top",
87
+ "alt-a b": "core:align-selection-to-bottom",
88
+ "alt-a m": "core:align-selection-to-middle",
89
+ "alt-a c": "core:align-selection-to-center",
90
+ "alt-a h": "core:distribute-selection-horizontally",
91
+ "alt-a v": "core:distribute-selection-vertically"
81
92
  }
82
93
  }