@node-red/editor-client 2.2.2 → 3.0.0-beta.1

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 (143) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +44 -14
  3. package/locales/ja/editor.json +50 -17
  4. package/locales/ko/editor.json +5 -2
  5. package/locales/ru/editor.json +14 -11
  6. package/locales/zh-CN/editor.json +14 -11
  7. package/locales/zh-TW/editor.json +14 -11
  8. package/package.json +1 -1
  9. package/public/red/about +77 -0
  10. package/public/red/images/grip-horizontal.svg +1 -0
  11. package/public/red/images/grip.svg +1 -0
  12. package/public/red/keymap.json +5 -1
  13. package/public/red/red.js +2060 -610
  14. package/public/red/red.min.js +2 -2
  15. package/public/red/style.min.css +2 -2
  16. package/public/red/tours/images/continuous-search.png +0 -0
  17. package/public/red/tours/images/debug-path-tooltip.png +0 -0
  18. package/public/red/tours/images/junction-quick-add.png +0 -0
  19. package/public/red/tours/images/junction-slice.gif +0 -0
  20. package/public/red/tours/images/split-wire-with-links.gif +0 -0
  21. package/public/red/tours/welcome.js +65 -99
  22. package/public/types/node/assert.d.ts +5 -1
  23. package/public/types/node/async_hooks.d.ts +4 -1
  24. package/public/types/node/buffer.d.ts +68 -1
  25. package/public/types/node/child_process.d.ts +4 -1
  26. package/public/types/node/cluster.d.ts +4 -1
  27. package/public/types/node/console.d.ts +10 -1
  28. package/public/types/node/crypto.d.ts +6 -3
  29. package/public/types/node/dgram.d.ts +12 -9
  30. package/public/types/node/dns.d.ts +8 -1
  31. package/public/types/node/domain.d.ts +4 -1
  32. package/public/types/node/events.d.ts +5 -1
  33. package/public/types/node/fs.d.ts +10 -7
  34. package/public/types/node/globals.d.ts +140 -7
  35. package/public/types/node/http.d.ts +10 -4
  36. package/public/types/node/http2.d.ts +8 -5
  37. package/public/types/node/https.d.ts +4 -1
  38. package/public/types/node/module.d.ts +5 -1
  39. package/public/types/node/net.d.ts +7 -4
  40. package/public/types/node/os.d.ts +4 -1
  41. package/public/types/node/path.d.ts +5 -1
  42. package/public/types/node/perf_hooks.d.ts +4 -1
  43. package/public/types/node/process.d.ts +6 -2
  44. package/public/types/node/querystring.d.ts +4 -1
  45. package/public/types/node/readline.d.ts +5 -1
  46. package/public/types/node/stream.d.ts +13 -9
  47. package/public/types/node/string_decoder.d.ts +4 -1
  48. package/public/types/node/timers.d.ts +4 -1
  49. package/public/types/node/tls.d.ts +6 -2
  50. package/public/types/node/trace_events.d.ts +4 -1
  51. package/public/types/node/tty.d.ts +4 -1
  52. package/public/types/node/url.d.ts +35 -2
  53. package/public/types/node/util.d.ts +11 -2
  54. package/public/types/node/v8.d.ts +4 -1
  55. package/public/types/node/vm.d.ts +4 -1
  56. package/public/types/node/wasi.d.ts +4 -1
  57. package/public/types/node/worker_threads.d.ts +4 -1
  58. package/public/types/node/zlib.d.ts +4 -1
  59. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +382 -217
  60. package/public/vendor/monaco/dist/ade705761eb7e702770d.ttf +0 -0
  61. package/public/vendor/monaco/dist/css.worker.js +2 -1
  62. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +6 -0
  63. package/public/vendor/monaco/dist/editor.js +2 -5
  64. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +8 -0
  65. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  66. package/public/vendor/monaco/dist/html.worker.js +2 -1
  67. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +6 -0
  68. package/public/vendor/monaco/dist/json.worker.js +2 -1
  69. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +6 -0
  70. package/public/vendor/monaco/dist/locale/cs.js +1550 -1445
  71. package/public/vendor/monaco/dist/locale/de.js +1550 -1445
  72. package/public/vendor/monaco/dist/locale/es.js +1550 -1445
  73. package/public/vendor/monaco/dist/locale/fr.js +1550 -1445
  74. package/public/vendor/monaco/dist/locale/it.js +1550 -1445
  75. package/public/vendor/monaco/dist/locale/ja.js +1550 -1445
  76. package/public/vendor/monaco/dist/locale/ko.js +1550 -1445
  77. package/public/vendor/monaco/dist/locale/pl.js +1550 -1445
  78. package/public/vendor/monaco/dist/locale/pt-br.js +1550 -1445
  79. package/public/vendor/monaco/dist/locale/qps-ploc.js +1550 -1445
  80. package/public/vendor/monaco/dist/locale/ru.js +1550 -1445
  81. package/public/vendor/monaco/dist/locale/tr.js +1550 -1445
  82. package/public/vendor/monaco/dist/locale/zh-hans.js +1550 -1445
  83. package/public/vendor/monaco/dist/locale/zh-hant.js +1550 -1445
  84. package/public/vendor/monaco/dist/theme/ace.json +197 -0
  85. package/public/vendor/monaco/dist/theme/active4d.json +4 -0
  86. package/public/vendor/monaco/dist/theme/all-hallows-eve.json +4 -0
  87. package/public/vendor/monaco/dist/theme/amy.json +4 -0
  88. package/public/vendor/monaco/dist/theme/birds-of-paradise.json +4 -0
  89. package/public/vendor/monaco/dist/theme/blackboard.json +4 -0
  90. package/public/vendor/monaco/dist/theme/brilliance-black.json +4 -0
  91. package/public/vendor/monaco/dist/theme/brilliance-dull.json +4 -0
  92. package/public/vendor/monaco/dist/theme/chrome-devtools.json +4 -0
  93. package/public/vendor/monaco/dist/theme/clouds-midnight.json +4 -0
  94. package/public/vendor/monaco/dist/theme/clouds.json +4 -0
  95. package/public/vendor/monaco/dist/theme/cobalt.json +4 -0
  96. package/public/vendor/monaco/dist/theme/cobalt2.json +859 -0
  97. package/public/vendor/monaco/dist/theme/dawn.json +4 -0
  98. package/public/vendor/monaco/dist/theme/dracula.json +208 -0
  99. package/public/vendor/monaco/dist/theme/dreamweaver.json +4 -0
  100. package/public/vendor/monaco/dist/theme/eiffel.json +4 -0
  101. package/public/vendor/monaco/dist/theme/espresso-libre.json +4 -0
  102. package/public/vendor/monaco/dist/theme/github.json +4 -0
  103. package/public/vendor/monaco/dist/theme/idle.json +4 -0
  104. package/public/vendor/monaco/dist/theme/idlefingers.json +4 -0
  105. package/public/vendor/monaco/dist/theme/iplastic.json +4 -0
  106. package/public/vendor/monaco/dist/theme/katzenmilch.json +4 -0
  107. package/public/vendor/monaco/dist/theme/krtheme.json +4 -0
  108. package/public/vendor/monaco/dist/theme/kuroir-theme.json +4 -0
  109. package/public/vendor/monaco/dist/theme/lazy.json +4 -0
  110. package/public/vendor/monaco/dist/theme/magicwb-amiga.json +4 -0
  111. package/public/vendor/monaco/dist/theme/merbivore-soft.json +4 -0
  112. package/public/vendor/monaco/dist/theme/merbivore.json +4 -0
  113. package/public/vendor/monaco/dist/theme/monoindustrial.json +4 -0
  114. package/public/vendor/monaco/dist/theme/monokai-bright.json +4 -0
  115. package/public/vendor/monaco/dist/theme/monokai.json +4 -0
  116. package/public/vendor/monaco/dist/theme/night-owl.json +4 -0
  117. package/public/vendor/monaco/dist/theme/oceanic-next.json +4 -0
  118. package/public/vendor/monaco/dist/theme/pastels-on-dark.json +4 -0
  119. package/public/vendor/monaco/dist/theme/slush-and-poppies.json +4 -0
  120. package/public/vendor/monaco/dist/theme/solarized-dark.json +4 -0
  121. package/public/vendor/monaco/dist/theme/solarized-light.json +4 -0
  122. package/public/vendor/monaco/dist/theme/spacecadet.json +4 -0
  123. package/public/vendor/monaco/dist/theme/sunburst.json +4 -0
  124. package/public/vendor/monaco/dist/theme/textmate-mac-classic.json +4 -0
  125. package/public/vendor/monaco/dist/theme/tomorrow-night-blue.json +4 -0
  126. package/public/vendor/monaco/dist/theme/tomorrow-night-bright.json +4 -0
  127. package/public/vendor/monaco/dist/theme/tomorrow-night-eighties.json +4 -0
  128. package/public/vendor/monaco/dist/theme/tomorrow-night.json +4 -0
  129. package/public/vendor/monaco/dist/theme/tomorrow.json +4 -0
  130. package/public/vendor/monaco/dist/theme/twilight.json +4 -0
  131. package/public/vendor/monaco/dist/theme/upstream-sunburst.json +4 -0
  132. package/public/vendor/monaco/dist/theme/vibrant-ink.json +4 -0
  133. package/public/vendor/monaco/dist/theme/xcode_default.json +4 -0
  134. package/public/vendor/monaco/dist/theme/zenburnesque.json +4 -0
  135. package/public/vendor/monaco/dist/ts.worker.js +2 -16
  136. package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +6 -0
  137. package/public/vendor/vendor.js +4 -4
  138. package/public/red/images/grip-horizontal.png +0 -0
  139. package/public/red/images/grip.png +0 -0
  140. package/public/red/tours/images/delete-repair.gif +0 -0
  141. package/public/red/tours/images/detach-repair.gif +0 -0
  142. package/public/red/tours/images/slice.gif +0 -0
  143. package/public/red/tours/images/subflow-labels.png +0 -0
@@ -185,7 +185,8 @@
185
185
  "create-default-package": "Standardpaketdatei erstellen",
186
186
  "no-thanks": "Nein, Danke",
187
187
  "create-default-project": "Standardprojektdateien erstellen",
188
- "show-merge-conflicts": "Merge-Konflikte anzeigen"
188
+ "show-merge-conflicts": "Merge-Konflikte anzeigen",
189
+ "unknownNodesButton": "Finden Sie unbekannte nodes"
189
190
  }
190
191
  },
191
192
  "clipboard": {
@@ -269,7 +270,9 @@
269
270
  "successfulRestart": "Flows erfolgreich neugestartet",
270
271
  "deployFailed": "Übernahme (deploy) fehlgeschlagen: __message__",
271
272
  "unusedConfigNodes": "Einige Konfigurations-Nodes werden nicht verwendet.",
272
- "unusedConfigNodesLink": "Hier klicken, um sie anzuschauen.",
273
+ "unusedConfigNodesButton":"Finden Sie ungenutzte konfig nodes",
274
+ "unknownNodesButton":"Finden Sie unbekannte nodes",
275
+ "invalidNodesButton":"Finden Sie ungültige nodes",
273
276
  "errors": {
274
277
  "noResponse": "Keine Antwort vom Server"
275
278
  },
@@ -634,14 +637,7 @@
634
637
  "empty": "leer",
635
638
  "globalConfig": "Globale Konfigurations-Nodes",
636
639
  "triggerAction": "Auslösen",
637
- "find": "Suche im Arbeitsbereich",
638
- "search": {
639
- "configNodes": "Konfigurations-Nodes",
640
- "unusedConfigNodes": "Unbenutzte Konfigurations-Nodes",
641
- "invalidNodes": "Ungültige Nodes",
642
- "uknownNodes": "Unbekannte Nodes",
643
- "unusedSubflows": "Unbenutzte Subflows"
644
- }
640
+ "find": "Suche im Arbeitsbereich"
645
641
  },
646
642
  "help": {
647
643
  "name": "Hilfe",
@@ -863,7 +859,14 @@
863
859
  },
864
860
  "search": {
865
861
  "empty": "Keine Übereinstimmungen gefunden",
866
- "addNode": "Node hinzufügen ..."
862
+ "addNode": "Node hinzufügen ...",
863
+ "options": {
864
+ "configNodes": "Konfigurations-Nodes",
865
+ "unusedConfigNodes": "Unbenutzte Konfigurations-Nodes",
866
+ "invalidNodes": "Ungültige Nodes",
867
+ "uknownNodes": "Unbekannte Nodes",
868
+ "unusedSubflows": "Unbenutzte Subflows"
869
+ }
867
870
  },
868
871
  "expressionEditor": {
869
872
  "functions": "Funktionen",
@@ -149,7 +149,11 @@
149
149
  "toggle-navigator": "Toggle navigator",
150
150
  "zoom-out": "Zoom out",
151
151
  "zoom-reset": "Reset zoom",
152
- "zoom-in": "Zoom in"
152
+ "zoom-in": "Zoom in",
153
+ "search-flows": "Search flows",
154
+ "search-prev": "Previous",
155
+ "search-next": "Next",
156
+ "search-counter": "\"__term__\" __result__ of __count__"
153
157
  },
154
158
  "user": {
155
159
  "loggedInAs": "Logged in as __name__",
@@ -213,7 +217,8 @@
213
217
  "create-default-package": "Create default package file",
214
218
  "no-thanks": "No thanks",
215
219
  "create-default-project": "Create default project files",
216
- "show-merge-conflicts": "Show merge conflicts"
220
+ "show-merge-conflicts": "Show merge conflicts",
221
+ "unknownNodesButton": "Search for unknown nodes"
217
222
  }
218
223
  },
219
224
  "clipboard": {
@@ -297,7 +302,9 @@
297
302
  "successfulRestart": "Successfully restarted flows",
298
303
  "deployFailed": "Deploy failed: __message__",
299
304
  "unusedConfigNodes":"You have some unused configuration nodes.",
300
- "unusedConfigNodesLink":"Click here to see them",
305
+ "unusedConfigNodesButton":"Search unused config nodes",
306
+ "unknownNodesButton":"Search for unknown nodes",
307
+ "invalidNodesButton":"Search for invalid nodes",
301
308
  "errors": {
302
309
  "noResponse": "no response from server"
303
310
  },
@@ -497,7 +504,8 @@
497
504
  "redoChange": "Redo",
498
505
  "searchBox": "Open search box",
499
506
  "managePalette": "Manage palette",
500
- "actionList":"Action list"
507
+ "actionList": "Action list",
508
+ "splitWireWithLinks": "Split selection with Link nodes"
501
509
  },
502
510
  "library": {
503
511
  "library": "Library",
@@ -667,15 +675,7 @@
667
675
  "empty": "empty",
668
676
  "globalConfig": "Global Configuration Nodes",
669
677
  "triggerAction": "Trigger action",
670
- "find": "Find in workspace",
671
- "search": {
672
- "configNodes": "Configuration nodes",
673
- "unusedConfigNodes": "Unused configuration nodes",
674
- "invalidNodes": "Invalid nodes",
675
- "uknownNodes": "Unknown nodes",
676
- "unusedSubflows": "Unused subflows",
677
- "hiddenFlows": "Hidden flows"
678
- }
678
+ "find": "Find in workspace"
679
679
  },
680
680
  "help": {
681
681
  "name": "Help",
@@ -899,7 +899,16 @@
899
899
  "history": "Search history",
900
900
  "clear": "clear all",
901
901
  "empty": "No matches found",
902
- "addNode": "add a node..."
902
+ "addNode": "add a node...",
903
+ "options": {
904
+ "configNodes": "Configuration nodes",
905
+ "unusedConfigNodes": "Unused configuration nodes",
906
+ "invalidNodes": "Invalid nodes",
907
+ "uknownNodes": "Unknown nodes",
908
+ "unusedSubflows": "Unused subflows",
909
+ "hiddenFlows": "Hidden flows",
910
+ "modifiedNodes": "Modified nodes and flows"
911
+ }
903
912
  },
904
913
  "expressionEditor": {
905
914
  "functions": "Functions",
@@ -934,6 +943,8 @@
934
943
  "format": "format JSON",
935
944
  "rawMode": "Edit JSON",
936
945
  "uiMode": "Visual editor",
946
+ "rawMode-readonly": "JSON",
947
+ "uiMode-readonly": "Visual",
937
948
  "insertAbove": "Insert above",
938
949
  "insertBelow": "Insert below",
939
950
  "addItem": "Add item",
@@ -1148,6 +1159,9 @@
1148
1159
  "start": "Start",
1149
1160
  "next": "Next"
1150
1161
  },
1162
+ "diagnostics": {
1163
+ "title": "System Info"
1164
+ },
1151
1165
  "languages" : {
1152
1166
  "de": "German",
1153
1167
  "en-US": "English",
@@ -1156,5 +1170,21 @@
1156
1170
  "ru": "Russian",
1157
1171
  "zh-CN": "Chinese(Simplified)",
1158
1172
  "zh-TW": "Chinese(Traditional)"
1173
+ },
1174
+ "validator": {
1175
+ "errors": {
1176
+ "invalid-json": "Invalid JSON data: __error__",
1177
+ "invalid-json-prop": "__prop__: invalid JSON data: __error__",
1178
+ "invalid-prop": "Invalid property expression",
1179
+ "invalid-prop-prop": "__prop__: invalid property expression",
1180
+ "invalid-num": "Invalid number",
1181
+ "invalid-num-prop": "__prop__: invalid number",
1182
+ "invalid-regexp": "Invalid input pattern",
1183
+ "invalid-regex-prop": "__prop__: invalid input pattern",
1184
+ "missing-required-prop": "__prop__: property value missing",
1185
+ "invalid-config": "__prop__: invalid configuration node",
1186
+ "missing-config": "__prop__: missing configuration node",
1187
+ "validation-error": "__prop__: validation error: __node__, __id__: __error__"
1188
+ }
1159
1189
  }
1160
1190
  }
@@ -149,7 +149,11 @@
149
149
  "toggle-navigator": "ナビゲータの表示/非表示を切替",
150
150
  "zoom-out": "縮小",
151
151
  "zoom-reset": "拡大/縮小を初期化",
152
- "zoom-in": "拡大"
152
+ "zoom-in": "拡大",
153
+ "search-flows": "フローを検索",
154
+ "search-prev": "前へ",
155
+ "search-next": "次へ",
156
+ "search-counter": "\"__term__\" __count__ 件中の __result__ 件目"
153
157
  },
154
158
  "user": {
155
159
  "loggedInAs": "__name__ としてログインしました",
@@ -213,7 +217,8 @@
213
217
  "create-default-package": "デフォルトパッケージファイルの作成",
214
218
  "no-thanks": "不要",
215
219
  "create-default-project": "デフォルトプロジェクトファイルの作成",
216
- "show-merge-conflicts": "マージ競合を表示"
220
+ "show-merge-conflicts": "マージ競合を表示",
221
+ "unknownNodesButton": "不明なノードを検索する"
217
222
  }
218
223
  },
219
224
  "clipboard": {
@@ -297,7 +302,9 @@
297
302
  "successfulRestart": "フローの再起動が成功しました",
298
303
  "deployFailed": "デプロイが失敗しました: __message__",
299
304
  "unusedConfigNodes": "使われていない設定ノードがあります。",
300
- "unusedConfigNodesLink": "設定を参照する",
305
+ "unusedConfigNodesButton":"未使用の構成ノードを検索",
306
+ "unknownNodesButton":"不明なノードを検索する",
307
+ "invalidNodesButton":"無効なノードを検索する",
301
308
  "errors": {
302
309
  "noResponse": "サーバの応答がありません"
303
310
  },
@@ -497,7 +504,8 @@
497
504
  "redoChange": "変更操作をやり直し",
498
505
  "searchBox": "ノードを検索",
499
506
  "managePalette": "パレットの管理",
500
- "actionList": "動作一覧"
507
+ "actionList": "動作一覧",
508
+ "splitWireWithLinks": "選択したワイヤーをlinkノードで分離"
501
509
  },
502
510
  "library": {
503
511
  "library": "ライブラリ",
@@ -667,15 +675,7 @@
667
675
  "empty": "空",
668
676
  "globalConfig": "グローバル設定ノード",
669
677
  "triggerAction": "アクションを実行",
670
- "find": "ワークスペース内を検索",
671
- "search": {
672
- "configNodes": "設定ノード",
673
- "unusedConfigNodes": "未使用の設定ノード",
674
- "invalidNodes": "不正なノード",
675
- "uknownNodes": "未知のノード",
676
- "unusedSubflows": "未使用のサブフロー",
677
- "hiddenFlows": "非表示のフロー"
678
- }
678
+ "find": "ワークスペース内を検索"
679
679
  },
680
680
  "help": {
681
681
  "name": "ヘルプ",
@@ -899,7 +899,16 @@
899
899
  "history": "検索履歴",
900
900
  "clear": "全て削除",
901
901
  "empty": "一致したものが見つかりませんでした",
902
- "addNode": "ノードを追加..."
902
+ "addNode": "ノードを追加...",
903
+ "options": {
904
+ "configNodes": "設定ノード",
905
+ "unusedConfigNodes": "未使用の設定ノード",
906
+ "invalidNodes": "不正なノード",
907
+ "uknownNodes": "未知のノード",
908
+ "unusedSubflows": "未使用のサブフロー",
909
+ "hiddenFlows": "非表示のフロー",
910
+ "modifiedNodes": "修正したノードやフロー"
911
+ }
903
912
  },
904
913
  "expressionEditor": {
905
914
  "functions": "関数",
@@ -934,6 +943,8 @@
934
943
  "format": "JSONフォーマット",
935
944
  "rawMode": "JSONを編集",
936
945
  "uiMode": "ビジュアルエディタ",
946
+ "rawMode-readonly": "JSON",
947
+ "uiMode-readonly": "ビジュアル",
937
948
  "insertAbove": "上に挿入",
938
949
  "insertBelow": "下に挿入",
939
950
  "addItem": "要素を追加",
@@ -1174,6 +1185,7 @@
1174
1185
  "hide-all-flows": "全てのフローを非表示",
1175
1186
  "show-all-flows": "全てのフローを表示",
1176
1187
  "show-last-hidden-flow": "最後に非表示にしたフローを表示",
1188
+ "list-modified-nodes": "修正したフローを表示",
1177
1189
  "list-hidden-flows": "非表示フローを表示",
1178
1190
  "list-flows": "フロー一覧",
1179
1191
  "list-subflows": "サブフロー一覧",
@@ -1240,6 +1252,8 @@
1240
1252
  "distribute-selection-vertically": "選択を上下に整列",
1241
1253
  "wire-series-of-nodes": "ノードを一続きに接続",
1242
1254
  "wire-node-to-multiple": "ノードを複数に接続",
1255
+ "split-wire-with-link-nodes": "ワイヤーをlinkノードで分割",
1256
+ "generate-node-names": "ノード名を生成",
1243
1257
  "show-user-settings": "ユーザ設定を表示",
1244
1258
  "show-help": "ヘルプを表示",
1245
1259
  "toggle-palette": "パレットの表示切替",
@@ -1266,6 +1280,8 @@
1266
1280
  "show-library-import-dialog": "ライブラリ読み込みダイアログを表示",
1267
1281
  "show-examples-import-dialog": "サンプル読み込みダイアログを表示",
1268
1282
  "search": "検索",
1283
+ "search-previous": "前を検索",
1284
+ "search-next": "次を検索",
1269
1285
  "show-action-list": "アクション一覧を表示",
1270
1286
  "confirm-edit-tray": "編集を完了",
1271
1287
  "cancel-edit-tray": "編集をキャンセル",
@@ -1276,8 +1292,8 @@
1276
1292
  "set-deploy-type-to-modified-flows": "デプロイを「変更したフロー」に設定",
1277
1293
  "set-deploy-type-to-modified-nodes": "デプロイを「変更したノード」に設定",
1278
1294
  "show-debug-tab": "デバッグタブを表示",
1279
- "clear-debug-messages": "デバッグメッセージをクリア",
1280
- "clear-filtered-debug-messages": "フィルタしたデバッグメッセージをクリア",
1295
+ "clear-debug-messages": "デバッグメッセージを削除",
1296
+ "clear-filtered-debug-messages": "フィルタしたデバッグメッセージを削除",
1281
1297
  "activate-selected-debug-nodes": "選択したデバッグノードを有効化",
1282
1298
  "activate-all-debug-nodes": "全てのデバッグノードを有効化",
1283
1299
  "activate-all-flow-debug-nodes": "フロー内の全デバッグノードを有効化",
@@ -1287,6 +1303,23 @@
1287
1303
  "zoom-in": "ズームイン",
1288
1304
  "zoom-out": "ズームアウト",
1289
1305
  "zoom-reset": "ズームリセット",
1290
- "toggle-navigator": "ナビゲータ表示切替"
1306
+ "toggle-navigator": "ナビゲータ表示切替",
1307
+ "show-system-info": "システムインフォメーション"
1308
+ },
1309
+ "validator": {
1310
+ "errors": {
1311
+ "invalid-json": "JSONデータが不正: __error__",
1312
+ "invalid-json-prop": "__prop__: JSONデータが不正: __error__",
1313
+ "invalid-prop": "プロパティ式が不正",
1314
+ "invalid-prop-prop": "__prop__: プロパティ式が不正",
1315
+ "invalid-num": "数値が不正",
1316
+ "invalid-num-prop": "__prop__: 数値が不正",
1317
+ "invalid-regexp": "入力パターンが不正",
1318
+ "invalid-regex-prop": "__prop__: 入力パターンが不正",
1319
+ "missing-required-prop": "__prop__: プロパティが未設定",
1320
+ "invalid-config": "__prop__: 設定ノードが不正",
1321
+ "missing-config": "__prop__: 設定ノードが存在しません",
1322
+ "validation-error": "__prop__: チェックエラー: __node__, __id__: __error__"
1323
+ }
1291
1324
  }
1292
1325
  }
@@ -141,7 +141,8 @@
141
141
  "create-default-package": "기본 패키지 파일 생성",
142
142
  "no-thanks": "괜찮습니다",
143
143
  "create-default-project": "기본 프로젝트 파일 생성",
144
- "show-merge-conflicts": "병합 충돌 보여주기"
144
+ "show-merge-conflicts": "병합 충돌 보여주기",
145
+ "unknownNodesButton": "알 수 없는 노드 검색"
145
146
  }
146
147
  },
147
148
  "clipboard": {
@@ -203,7 +204,9 @@
203
204
  "successfulRestart": "플로우 재시작을 성공했습니다",
204
205
  "deployFailed": "배포 실패 : __message__",
205
206
  "unusedConfigNodes": "사용되지 않는 설정노드가 있습니다",
206
- "unusedConfigNodesLink": "여기를 클릭하면 있습니다",
207
+ "unusedConfigNodesButton":"사용하지 않는 구성 노드 검색",
208
+ "unknownNodesButton":"알 수 없는 노드 검색",
209
+ "invalidNodesButton":"잘못된 노드 검색",
207
210
  "errors": {
208
211
  "noResponse": "서버의 응답이 없습니다"
209
212
  },
@@ -183,7 +183,8 @@
183
183
  "create-default-package": "Создать файл пакета по умолчанию",
184
184
  "no-thanks": "Нет, спасибо",
185
185
  "create-default-project": "Создать файлы проекта по умолчанию",
186
- "show-merge-conflicts": "Показать конфликты слияния"
186
+ "show-merge-conflicts": "Показать конфликты слияния",
187
+ "unknownNodesButton": "Поиск неизвестных узлов"
187
188
  }
188
189
  },
189
190
  "clipboard": {
@@ -277,7 +278,9 @@
277
278
  "successfulRestart": "Потоки успешно перезапущены",
278
279
  "deployFailed": "Развертывание не удалось: __message__",
279
280
  "unusedConfigNodes":"У вас есть неиспользуемых узлы конфигурации.",
280
- "unusedConfigNodesLink":"Нажмите здесь, чтобы их увидеть",
281
+ "unusedConfigNodesButton":"Поиск неиспользуемых узлов конфигурации",
282
+ "unknownNodesButton":"Поиск неизвестных узлов",
283
+ "invalidNodesButton":"Поиск недопустимых узлов",
281
284
  "errors": {
282
285
  "noResponse": "нет ответа от сервера"
283
286
  },
@@ -650,14 +653,7 @@
650
653
  "empty": "пусто",
651
654
  "globalConfig": "Глобальные конфиг узлы",
652
655
  "triggerAction": "Вызвать действие",
653
- "find": "Найти в рабочей области",
654
- "search": {
655
- "configNodes": "Узлы конфигурации",
656
- "unusedConfigNodes": "Неиспользуемые узлы конфигурации",
657
- "invalidNodes": "Недействительные узлы",
658
- "uknownNodes": "Неизвестные узлы",
659
- "unusedSubflows": "Неиспользуемые подпотоки"
660
- }
656
+ "find": "Найти в рабочей области"
661
657
  },
662
658
  "help": {
663
659
  "name": "Справка",
@@ -888,7 +884,14 @@
888
884
  },
889
885
  "search": {
890
886
  "empty": "Ничего не найдено",
891
- "addNode": "добавить узел..."
887
+ "addNode": "добавить узел...",
888
+ "options": {
889
+ "configNodes": "Узлы конфигурации",
890
+ "unusedConfigNodes": "Неиспользуемые узлы конфигурации",
891
+ "invalidNodes": "Недействительные узлы",
892
+ "uknownNodes": "Неизвестные узлы",
893
+ "unusedSubflows": "Неиспользуемые подпотоки"
894
+ }
892
895
  },
893
896
  "expressionEditor": {
894
897
  "functions": "Функции",
@@ -182,7 +182,8 @@
182
182
  "create-default-package": "创建默认的包文件",
183
183
  "no-thanks": "不了,谢谢",
184
184
  "create-default-project": "创建默认项目文件",
185
- "show-merge-conflicts": "显示合并冲突"
185
+ "show-merge-conflicts": "显示合并冲突",
186
+ "unknownNodesButton": "搜索未知节点"
186
187
  }
187
188
  },
188
189
  "clipboard": {
@@ -264,7 +265,9 @@
264
265
  "successfulRestart": "成功重启流程",
265
266
  "deployFailed": "部署失败: __message__",
266
267
  "unusedConfigNodes": "您有一些未使用的配置节点",
267
- "unusedConfigNodesLink": "点击此处查看它们",
268
+ "unusedConfigNodesButton":"搜索未使用的配置节点",
269
+ "unknownNodesButton":"搜索未知节点",
270
+ "invalidNodesButton":"搜索无效节点",
268
271
  "errors": {
269
272
  "noResponse": "服务器没有响应"
270
273
  },
@@ -614,14 +617,7 @@
614
617
  "empty": "空的",
615
618
  "globalConfig": "全局配置节点",
616
619
  "triggerAction": "触发动作",
617
- "find": "在工作区中查找",
618
- "search": {
619
- "configNodes": "配置节点",
620
- "unusedConfigNodes": "未使用的配置节点",
621
- "invalidNodes": "无效的节点",
622
- "uknownNodes": "未知的节点",
623
- "unusedSubflows": "未使用的子流程"
624
- }
620
+ "find": "在工作区中查找"
625
621
  },
626
622
  "help": {
627
623
  "name": "帮助",
@@ -842,7 +838,14 @@
842
838
  },
843
839
  "search": {
844
840
  "empty": "找不到匹配",
845
- "addNode": "添加一个节点..."
841
+ "addNode": "添加一个节点...",
842
+ "options": {
843
+ "configNodes": "配置节点",
844
+ "unusedConfigNodes": "未使用的配置节点",
845
+ "invalidNodes": "无效的节点",
846
+ "uknownNodes": "未知的节点",
847
+ "unusedSubflows": "未使用的子流程"
848
+ }
846
849
  },
847
850
  "expressionEditor": {
848
851
  "functions": "功能",
@@ -182,7 +182,8 @@
182
182
  "create-default-package": "創建默認的包文件",
183
183
  "no-thanks": "不了,謝謝",
184
184
  "create-default-project": "創建默認項目文件",
185
- "show-merge-conflicts": "顯示合併衝突"
185
+ "show-merge-conflicts": "顯示合併衝突",
186
+ "unknownNodesButton": "搜索未知節點"
186
187
  }
187
188
  },
188
189
  "clipboard": {
@@ -264,7 +265,9 @@
264
265
  "successfulRestart": "成功重啟流程",
265
266
  "deployFailed": "部署失敗: __message__",
266
267
  "unusedConfigNodes": "您有一些未使用的配置節點",
267
- "unusedConfigNodesLink": "點擊此處查看它們",
268
+ "unusedConfigNodesButton":"搜索未使用的配置節點",
269
+ "unknownNodesButton":"搜索未知節點",
270
+ "invalidNodesButton":"搜索無效節點",
268
271
  "errors": {
269
272
  "noResponse": "伺服器沒有回應"
270
273
  },
@@ -614,14 +617,7 @@
614
617
  "empty": "空的",
615
618
  "globalConfig": "全局配置節點",
616
619
  "triggerAction": "觸發動作",
617
- "find": "在工作區中查找",
618
- "search": {
619
- "configNodes": "配置節點",
620
- "unusedConfigNodes": "未使用的配置節點",
621
- "invalidNodes": "無效的節點",
622
- "uknownNodes": "未知的節點",
623
- "unusedSubflows": "未使用的子流程"
624
- }
620
+ "find": "在工作區中查找"
625
621
  },
626
622
  "help": {
627
623
  "name": "幫助",
@@ -842,7 +838,14 @@
842
838
  },
843
839
  "search": {
844
840
  "empty": "找不到匹配",
845
- "addNode": "添加一個節點..."
841
+ "addNode": "添加一個節點...",
842
+ "options": {
843
+ "configNodes": "配置節點",
844
+ "unusedConfigNodes": "未使用的配置節點",
845
+ "invalidNodes": "無效的節點",
846
+ "uknownNodes": "未知的節點",
847
+ "unusedSubflows": "未使用的子流程"
848
+ }
846
849
  },
847
850
  "expressionEditor": {
848
851
  "functions": "功能",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-client",
3
- "version": "2.2.2",
3
+ "version": "3.0.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/public/red/about CHANGED
@@ -1,3 +1,80 @@
1
+ #### 3.0.0-beta.1: Beta Release
2
+
3
+ **Migration from 2.x**
4
+
5
+ - Node-RED now requires Node.js 14.x or later.
6
+ - New installs of Node-RED will default to the monaco editor.
7
+
8
+
9
+ Editor
10
+
11
+ - Add Junctions (#3462) @knolleary
12
+ - Allow node name to be auto-generated when added (#3478, #3538) @knolleary
13
+ - Set monaco as default code editor as of v3.x (#3543) @Steve-Mcl
14
+ - Update Monaco to V0.33.0 (#3522) @Steve-Mcl
15
+ - Auto-complete Improvements (#3521) @Steve-Mcl
16
+ - Add a tooltip to debug sidebar messages to reveal full path to node (#3503) @knolleary
17
+ - Fix down arrow triggering menu in search box (#3507) @Steve-Mcl
18
+ - Add Japanese translations for v3.0 (#3512) @kazuhitoyokoi
19
+ - Add feature: Continuous search tools (search previous, search next) (#3405) @Steve-Mcl
20
+ - Add feature: split-wire-to-links (#3399, #3476) @Steve-Mcl
21
+ - Add copy button to node properties tables (#3390) @knolleary
22
+ - Add info-tab search options dropdown to the regular search (#3395) @Steve-Mcl
23
+ - New Feature: Add ability to find modified nodes/flows. (#3392) @Steve-Mcl
24
+ - Code editor ux improvements around remembering state of each code editor in a flow (#3553) @Steve-Mcl
25
+ - Make it easier to apply themes on SVG icons (#3515) @bonanitech
26
+ - Add support of property validation message (#3438) @HiroyasuNishiyama
27
+ - Ensure node validation tooltip is closed when field becomes valid (#3570) @knolleary
28
+ - Add "search for" buttons to notifications (#3567) @Steve-Mcl
29
+ - Don't let themes change node config colors (#3564) @bonanitech
30
+ - Fix gap between typedInput containers borders (#3560) @bonanitech
31
+ - Fix recording removed links in edit history (#3547) @knolleary
32
+ - Remove unused SASS vars (#3536) @bonanitech
33
+ - Add custom style for jQuery widgets borders (#3537) @bonanitech
34
+ - fix out of scope reference of hasUnusedConfig variable (#3535) @HiroyasuNishiyama
35
+ - correct "non string" check parenthesis (#3524) @Steve-Mcl
36
+ - Ensure i18n of scoped package name (#3516) @Steve-Mcl
37
+ - Prevent shortcut deploy when deploy button shaded (#3517) @Steve-Mcl
38
+ - Fix: Sidebar "Configuration" filter button tooltip (#3500) @ralphwetzel
39
+ - Add the ability to customize diff colors even more (#3499) @bonanitech
40
+ - Do JSON comparison of old value/new value in editor (#3481) @Steve-Mcl
41
+ - Fix nodes losing their wires when in an iframe (#3484) @zettca
42
+ - Improve scroll into view (#3468) @Steve-Mcl
43
+ - Do not show 1st tab if hidden when loading (#3464) @Steve-Mcl
44
+
45
+ Runtime
46
+
47
+ - Fix importing external module from node-red module (#3541) @knolleary
48
+ - Add support for multiple static paths with optional static root (#3542) @Steve-Mcl
49
+ - Store external token when authenticating if provided (#3460) @ArFe
50
+ - Support OAuth/OpenID logout (#3388) @mw75
51
+ - Allow adminAuth to auto-login users when using passport strategy (#3519) @knolleary
52
+ - Add runtime diagnostics admin endpoint (#3511) @Steve-Mcl
53
+ - Don't start if user has no home directory (#3540) @hardillb
54
+ - Error on invalid encrypted credentials (#3498) @sammachin
55
+
56
+ Nodes
57
+
58
+ - Debug: Add message count option to Debug status (#3544 #3551) @rafaelmuynarsk @knolleary
59
+ - File: Change basic Filename field to a typedInput (#3533) @Steve-Mcl
60
+ - HTTP Request: Add UI for Http Request node headers (#3488) @Steve-Mcl
61
+ - Inject: let inject optionally fire at start in only at time mode. (#3385) @dceejay
62
+ - Link Call: Dynamic link call (#3463) @Steve-Mcl
63
+ - Link Call: Display link targets of nodes in a regular flow, for Link Call nodes inside a subflow (#3528) @Steve-Mcl
64
+ - MQTT: MQTT payload auto parsing improvements (#3530) @Steve-Mcl
65
+ - MQTT: Add client and Runtime MQTT topic validation (#3563) @Steve-Mcl [dev]
66
+ - MQTT: save and restore v5 config user props (#3562) @Steve-Mcl
67
+ - MQTT: Fix incorrect MQTT status (#3552) @Steve-Mcl
68
+ - MQTT: fix reference error of msg.status in debug node (#3526) @HiroyasuNishiyama
69
+ - MQTT: Add unit tests for MQTT nodes (#3497) @Steve-Mcl
70
+ - MQTT: fix typo of will properties (#3502) @Steve-Mcl
71
+ - MQTT: ensure mqtt v5 props can be set false (#3472) @Steve-Mcl
72
+ - Switch: add check for NaN in is of type number to be false (#3409) @dceejay
73
+ - TCP: TCP node better split (#3465) @dceejay
74
+ - Watch: Update Watch node to use node-watch module (#3559 #3569) @knolleary
75
+ - WebSocket: call done after ws disconnects (#3531) @Steve-Mcl
76
+
77
+
1
78
  #### 2.2.2: Maintenance Release
2
79
 
3
80
  Nodes
@@ -0,0 +1 @@
1
+ <svg width="50" height="5" viewBox="0, 0, 50, 5" xmlns="http://www.w3.org/2000/svg"><path d="M0 1H50V4H0Z" fill="#CCC"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="5" height="50" viewBox="0, 0, 5, 50" xmlns="http://www.w3.org/2000/svg"><path d="M1 0H4V50H1Z" fill="#CCC"/></svg>
@@ -90,6 +90,10 @@
90
90
  "alt-a m": "core:align-selection-to-middle",
91
91
  "alt-a c": "core:align-selection-to-center",
92
92
  "alt-a h": "core:distribute-selection-horizontally",
93
- "alt-a v": "core:distribute-selection-vertically"
93
+ "alt-a v": "core:distribute-selection-vertically",
94
+ "shift-f": "core:search-previous",
95
+ "f": "core:search-next",
96
+ "alt-l l": "core:split-wire-with-link-nodes"
97
+
94
98
  }
95
99
  }