@node-red/editor-client 2.2.1 → 3.0.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 (143) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +45 -14
  3. package/locales/ja/editor.json +53 -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 +119 -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 +2161 -674
  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 +80 -97
  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,17 @@
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
+ "thisFlow": "Current flow"
912
+ }
903
913
  },
904
914
  "expressionEditor": {
905
915
  "functions": "Functions",
@@ -934,6 +944,8 @@
934
944
  "format": "format JSON",
935
945
  "rawMode": "Edit JSON",
936
946
  "uiMode": "Visual editor",
947
+ "rawMode-readonly": "JSON",
948
+ "uiMode-readonly": "Visual",
937
949
  "insertAbove": "Insert above",
938
950
  "insertBelow": "Insert below",
939
951
  "addItem": "Add item",
@@ -1148,6 +1160,9 @@
1148
1160
  "start": "Start",
1149
1161
  "next": "Next"
1150
1162
  },
1163
+ "diagnostics": {
1164
+ "title": "System Info"
1165
+ },
1151
1166
  "languages" : {
1152
1167
  "de": "German",
1153
1168
  "en-US": "English",
@@ -1156,5 +1171,21 @@
1156
1171
  "ru": "Russian",
1157
1172
  "zh-CN": "Chinese(Simplified)",
1158
1173
  "zh-TW": "Chinese(Traditional)"
1174
+ },
1175
+ "validator": {
1176
+ "errors": {
1177
+ "invalid-json": "Invalid JSON data: __error__",
1178
+ "invalid-json-prop": "__prop__: invalid JSON data: __error__",
1179
+ "invalid-prop": "Invalid property expression",
1180
+ "invalid-prop-prop": "__prop__: invalid property expression",
1181
+ "invalid-num": "Invalid number",
1182
+ "invalid-num-prop": "__prop__: invalid number",
1183
+ "invalid-regexp": "Invalid input pattern",
1184
+ "invalid-regex-prop": "__prop__: invalid input pattern",
1185
+ "missing-required-prop": "__prop__: property value missing",
1186
+ "invalid-config": "__prop__: invalid configuration node",
1187
+ "missing-config": "__prop__: missing configuration node",
1188
+ "validation-error": "__prop__: validation error: __node__, __id__: __error__"
1189
+ }
1159
1190
  }
1160
1191
  }
@@ -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": "要素を追加",
@@ -1148,6 +1159,9 @@
1148
1159
  "start": "開始",
1149
1160
  "next": "次へ"
1150
1161
  },
1162
+ "diagnostics": {
1163
+ "title": "システム情報"
1164
+ },
1151
1165
  "languages": {
1152
1166
  "de": "ドイツ語",
1153
1167
  "en-US": "英語",
@@ -1157,6 +1171,22 @@
1157
1171
  "zh-CN": "中国語(簡体)",
1158
1172
  "zh-TW": "中国語(繁体)"
1159
1173
  },
1174
+ "validator": {
1175
+ "errors": {
1176
+ "invalid-json": "JSONデータが不正: __error__",
1177
+ "invalid-json-prop": "__prop__: JSONデータが不正: __error__",
1178
+ "invalid-prop": "プロパティ式が不正",
1179
+ "invalid-prop-prop": "__prop__: プロパティ式が不正",
1180
+ "invalid-num": "数値が不正",
1181
+ "invalid-num-prop": "__prop__: 数値が不正",
1182
+ "invalid-regexp": "入力パターンが不正",
1183
+ "invalid-regex-prop": "__prop__: 入力パターンが不正",
1184
+ "missing-required-prop": "__prop__: プロパティが未設定",
1185
+ "invalid-config": "__prop__: 設定ノードが不正",
1186
+ "missing-config": "__prop__: 設定ノードが存在しません",
1187
+ "validation-error": "__prop__: チェックエラー: __node__, __id__: __error__"
1188
+ }
1189
+ },
1160
1190
  "action-list": {
1161
1191
  "toggle-show-tips": "ヒント表示切替",
1162
1192
  "show-about": "Node-REDの説明を表示",
@@ -1174,6 +1204,7 @@
1174
1204
  "hide-all-flows": "全てのフローを非表示",
1175
1205
  "show-all-flows": "全てのフローを表示",
1176
1206
  "show-last-hidden-flow": "最後に非表示にしたフローを表示",
1207
+ "list-modified-nodes": "修正したフローを表示",
1177
1208
  "list-hidden-flows": "非表示フローを表示",
1178
1209
  "list-flows": "フロー一覧",
1179
1210
  "list-subflows": "サブフロー一覧",
@@ -1240,6 +1271,8 @@
1240
1271
  "distribute-selection-vertically": "選択を上下に整列",
1241
1272
  "wire-series-of-nodes": "ノードを一続きに接続",
1242
1273
  "wire-node-to-multiple": "ノードを複数に接続",
1274
+ "split-wire-with-link-nodes": "ワイヤーをlinkノードで分割",
1275
+ "generate-node-names": "ノード名を生成",
1243
1276
  "show-user-settings": "ユーザ設定を表示",
1244
1277
  "show-help": "ヘルプを表示",
1245
1278
  "toggle-palette": "パレットの表示切替",
@@ -1266,6 +1299,8 @@
1266
1299
  "show-library-import-dialog": "ライブラリ読み込みダイアログを表示",
1267
1300
  "show-examples-import-dialog": "サンプル読み込みダイアログを表示",
1268
1301
  "search": "検索",
1302
+ "search-previous": "前を検索",
1303
+ "search-next": "次を検索",
1269
1304
  "show-action-list": "アクション一覧を表示",
1270
1305
  "confirm-edit-tray": "編集を完了",
1271
1306
  "cancel-edit-tray": "編集をキャンセル",
@@ -1276,8 +1311,8 @@
1276
1311
  "set-deploy-type-to-modified-flows": "デプロイを「変更したフロー」に設定",
1277
1312
  "set-deploy-type-to-modified-nodes": "デプロイを「変更したノード」に設定",
1278
1313
  "show-debug-tab": "デバッグタブを表示",
1279
- "clear-debug-messages": "デバッグメッセージをクリア",
1280
- "clear-filtered-debug-messages": "フィルタしたデバッグメッセージをクリア",
1314
+ "clear-debug-messages": "デバッグメッセージを削除",
1315
+ "clear-filtered-debug-messages": "フィルタしたデバッグメッセージを削除",
1281
1316
  "activate-selected-debug-nodes": "選択したデバッグノードを有効化",
1282
1317
  "activate-all-debug-nodes": "全てのデバッグノードを有効化",
1283
1318
  "activate-all-flow-debug-nodes": "フロー内の全デバッグノードを有効化",
@@ -1287,6 +1322,7 @@
1287
1322
  "zoom-in": "ズームイン",
1288
1323
  "zoom-out": "ズームアウト",
1289
1324
  "zoom-reset": "ズームリセット",
1290
- "toggle-navigator": "ナビゲータ表示切替"
1325
+ "toggle-navigator": "ナビゲータ表示切替",
1326
+ "show-system-info": "システムインフォメーション"
1291
1327
  }
1292
1328
  }
@@ -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.1",
3
+ "version": "3.0.0-beta.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/public/red/about CHANGED
@@ -1,3 +1,122 @@
1
+ #### 3.0.0-beta.2: Beta Release
2
+
3
+ **Migration from 2.x**
4
+
5
+ - The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
6
+
7
+ Editor
8
+
9
+ - Rework Junctions to be more node like in their event handling (#3607) @knolleary
10
+ - Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
11
+ - Do not slice-junction link node wires (#3608) @knolleary
12
+ - Handle many-to-one slicing of wires (#3604) @knolleary
13
+ - Ensure ACE worker options are set (#3611) @Steve-Mcl
14
+ - Remove duplicate history add of ungroup event (#3605) @knolleary
15
+ - use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
16
+ - Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
17
+ - Fix typedInput label not visible on themes (#3580) @bonanitech
18
+ - Fix project switching when junctions are present (#3595) @Steve-Mcl
19
+ - Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
20
+ - Fix error initialising flow tab editor (#3585) @Steve-Mcl
21
+ - Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
22
+ - Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
23
+ - Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
24
+
25
+ Runtime
26
+
27
+ - fix error on system-info action (#3589) @HiroyasuNishiyama
28
+
29
+ Nodes
30
+
31
+ - I18n switch rule selector (#3602) @HiroyasuNishiyama
32
+ - Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
33
+ - update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
34
+
35
+
36
+ #### 3.0.0-beta.1: Beta Release
37
+
38
+ **Migration from 2.x**
39
+
40
+ - Node-RED now requires Node.js 14.x or later.
41
+ - New installs of Node-RED will default to the monaco editor.
42
+
43
+
44
+ Editor
45
+
46
+ - Add Junctions (#3462) @knolleary
47
+ - Allow node name to be auto-generated when added (#3478, #3538) @knolleary
48
+ - Set monaco as default code editor as of v3.x (#3543) @Steve-Mcl
49
+ - Update Monaco to V0.33.0 (#3522) @Steve-Mcl
50
+ - Auto-complete Improvements (#3521) @Steve-Mcl
51
+ - Add a tooltip to debug sidebar messages to reveal full path to node (#3503) @knolleary
52
+ - Fix down arrow triggering menu in search box (#3507) @Steve-Mcl
53
+ - Add Japanese translations for v3.0 (#3512) @kazuhitoyokoi
54
+ - Add feature: Continuous search tools (search previous, search next) (#3405) @Steve-Mcl
55
+ - Add feature: split-wire-to-links (#3399, #3476) @Steve-Mcl
56
+ - Add copy button to node properties tables (#3390) @knolleary
57
+ - Add info-tab search options dropdown to the regular search (#3395) @Steve-Mcl
58
+ - New Feature: Add ability to find modified nodes/flows. (#3392) @Steve-Mcl
59
+ - Code editor ux improvements around remembering state of each code editor in a flow (#3553) @Steve-Mcl
60
+ - Make it easier to apply themes on SVG icons (#3515) @bonanitech
61
+ - Add support of property validation message (#3438) @HiroyasuNishiyama
62
+ - Ensure node validation tooltip is closed when field becomes valid (#3570) @knolleary
63
+ - Add "search for" buttons to notifications (#3567) @Steve-Mcl
64
+ - Don't let themes change node config colors (#3564) @bonanitech
65
+ - Fix gap between typedInput containers borders (#3560) @bonanitech
66
+ - Fix recording removed links in edit history (#3547) @knolleary
67
+ - Remove unused SASS vars (#3536) @bonanitech
68
+ - Add custom style for jQuery widgets borders (#3537) @bonanitech
69
+ - fix out of scope reference of hasUnusedConfig variable (#3535) @HiroyasuNishiyama
70
+ - correct "non string" check parenthesis (#3524) @Steve-Mcl
71
+ - Ensure i18n of scoped package name (#3516) @Steve-Mcl
72
+ - Prevent shortcut deploy when deploy button shaded (#3517) @Steve-Mcl
73
+ - Fix: Sidebar "Configuration" filter button tooltip (#3500) @ralphwetzel
74
+ - Add the ability to customize diff colors even more (#3499) @bonanitech
75
+ - Do JSON comparison of old value/new value in editor (#3481) @Steve-Mcl
76
+ - Fix nodes losing their wires when in an iframe (#3484) @zettca
77
+ - Improve scroll into view (#3468) @Steve-Mcl
78
+ - Do not show 1st tab if hidden when loading (#3464) @Steve-Mcl
79
+
80
+ Runtime
81
+
82
+ - Fix importing external module from node-red module (#3541) @knolleary
83
+ - Add support for multiple static paths with optional static root (#3542) @Steve-Mcl
84
+ - Store external token when authenticating if provided (#3460) @ArFe
85
+ - Support OAuth/OpenID logout (#3388) @mw75
86
+ - Allow adminAuth to auto-login users when using passport strategy (#3519) @knolleary
87
+ - Add runtime diagnostics admin endpoint (#3511) @Steve-Mcl
88
+ - Don't start if user has no home directory (#3540) @hardillb
89
+ - Error on invalid encrypted credentials (#3498) @sammachin
90
+
91
+ Nodes
92
+
93
+ - Debug: Add message count option to Debug status (#3544 #3551) @rafaelmuynarsk @knolleary
94
+ - File: Change basic Filename field to a typedInput (#3533) @Steve-Mcl
95
+ - HTTP Request: Add UI for Http Request node headers (#3488) @Steve-Mcl
96
+ - Inject: let inject optionally fire at start in only at time mode. (#3385) @dceejay
97
+ - Link Call: Dynamic link call (#3463) @Steve-Mcl
98
+ - Link Call: Display link targets of nodes in a regular flow, for Link Call nodes inside a subflow (#3528) @Steve-Mcl
99
+ - MQTT: MQTT payload auto parsing improvements (#3530) @Steve-Mcl
100
+ - MQTT: Add client and Runtime MQTT topic validation (#3563) @Steve-Mcl [dev]
101
+ - MQTT: save and restore v5 config user props (#3562) @Steve-Mcl
102
+ - MQTT: Fix incorrect MQTT status (#3552) @Steve-Mcl
103
+ - MQTT: fix reference error of msg.status in debug node (#3526) @HiroyasuNishiyama
104
+ - MQTT: Add unit tests for MQTT nodes (#3497) @Steve-Mcl
105
+ - MQTT: fix typo of will properties (#3502) @Steve-Mcl
106
+ - MQTT: ensure mqtt v5 props can be set false (#3472) @Steve-Mcl
107
+ - Switch: add check for NaN in is of type number to be false (#3409) @dceejay
108
+ - TCP: TCP node better split (#3465) @dceejay
109
+ - Watch: Update Watch node to use node-watch module (#3559 #3569) @knolleary
110
+ - WebSocket: call done after ws disconnects (#3531) @Steve-Mcl
111
+
112
+
113
+ #### 2.2.2: Maintenance Release
114
+
115
+ Nodes
116
+
117
+ - Fix "close timed out" error when performing full deploy or modifying broker node. (#3451) @Steve-Mcl
118
+
119
+
1
120
  #### 2.2.1: Maintenance Release
2
121
 
3
122
  Editor
@@ -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>