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

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 (147) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +88 -57
  3. package/locales/en-US/infotips.json +19 -19
  4. package/locales/en-US/jsonata.json +40 -40
  5. package/locales/ja/editor.json +54 -17
  6. package/locales/ja/infotips.json +1 -1
  7. package/locales/ko/editor.json +5 -2
  8. package/locales/ru/editor.json +14 -11
  9. package/locales/zh-CN/editor.json +14 -11
  10. package/locales/zh-TW/editor.json +14 -11
  11. package/package.json +1 -1
  12. package/public/red/about +151 -0
  13. package/public/red/images/grip-horizontal.svg +1 -0
  14. package/public/red/images/grip.svg +1 -0
  15. package/public/red/keymap.json +5 -1
  16. package/public/red/red.js +2837 -839
  17. package/public/red/red.min.js +2 -2
  18. package/public/red/style.min.css +2 -2
  19. package/public/red/tours/images/context-menu.png +0 -0
  20. package/public/red/tours/images/continuous-search.png +0 -0
  21. package/public/red/tours/images/debug-path-tooltip.png +0 -0
  22. package/public/red/tours/images/junction-quick-add.png +0 -0
  23. package/public/red/tours/images/junction-slice.gif +0 -0
  24. package/public/red/tours/images/split-wire-with-links.gif +0 -0
  25. package/public/red/tours/welcome.js +91 -95
  26. package/public/types/node/assert.d.ts +5 -1
  27. package/public/types/node/async_hooks.d.ts +4 -1
  28. package/public/types/node/buffer.d.ts +68 -1
  29. package/public/types/node/child_process.d.ts +4 -1
  30. package/public/types/node/cluster.d.ts +4 -1
  31. package/public/types/node/console.d.ts +10 -1
  32. package/public/types/node/crypto.d.ts +6 -3
  33. package/public/types/node/dgram.d.ts +12 -9
  34. package/public/types/node/dns.d.ts +8 -1
  35. package/public/types/node/domain.d.ts +4 -1
  36. package/public/types/node/events.d.ts +5 -1
  37. package/public/types/node/fs.d.ts +10 -7
  38. package/public/types/node/globals.d.ts +140 -7
  39. package/public/types/node/http.d.ts +10 -4
  40. package/public/types/node/http2.d.ts +8 -5
  41. package/public/types/node/https.d.ts +4 -1
  42. package/public/types/node/module.d.ts +5 -1
  43. package/public/types/node/net.d.ts +7 -4
  44. package/public/types/node/os.d.ts +4 -1
  45. package/public/types/node/path.d.ts +5 -1
  46. package/public/types/node/perf_hooks.d.ts +4 -1
  47. package/public/types/node/process.d.ts +6 -2
  48. package/public/types/node/querystring.d.ts +4 -1
  49. package/public/types/node/readline.d.ts +5 -1
  50. package/public/types/node/stream.d.ts +13 -9
  51. package/public/types/node/string_decoder.d.ts +4 -1
  52. package/public/types/node/timers.d.ts +4 -1
  53. package/public/types/node/tls.d.ts +6 -2
  54. package/public/types/node/trace_events.d.ts +4 -1
  55. package/public/types/node/tty.d.ts +4 -1
  56. package/public/types/node/url.d.ts +35 -2
  57. package/public/types/node/util.d.ts +11 -2
  58. package/public/types/node/v8.d.ts +4 -1
  59. package/public/types/node/vm.d.ts +4 -1
  60. package/public/types/node/wasi.d.ts +4 -1
  61. package/public/types/node/worker_threads.d.ts +4 -1
  62. package/public/types/node/zlib.d.ts +4 -1
  63. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +382 -217
  64. package/public/vendor/monaco/dist/ade705761eb7e702770d.ttf +0 -0
  65. package/public/vendor/monaco/dist/css.worker.js +2 -1
  66. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +6 -0
  67. package/public/vendor/monaco/dist/editor.js +2 -5
  68. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +8 -0
  69. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  70. package/public/vendor/monaco/dist/html.worker.js +2 -1
  71. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +6 -0
  72. package/public/vendor/monaco/dist/json.worker.js +2 -1
  73. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +6 -0
  74. package/public/vendor/monaco/dist/locale/cs.js +1550 -1445
  75. package/public/vendor/monaco/dist/locale/de.js +1550 -1445
  76. package/public/vendor/monaco/dist/locale/es.js +1550 -1445
  77. package/public/vendor/monaco/dist/locale/fr.js +1550 -1445
  78. package/public/vendor/monaco/dist/locale/it.js +1550 -1445
  79. package/public/vendor/monaco/dist/locale/ja.js +1550 -1445
  80. package/public/vendor/monaco/dist/locale/ko.js +1550 -1445
  81. package/public/vendor/monaco/dist/locale/pl.js +1550 -1445
  82. package/public/vendor/monaco/dist/locale/pt-br.js +1550 -1445
  83. package/public/vendor/monaco/dist/locale/qps-ploc.js +1550 -1445
  84. package/public/vendor/monaco/dist/locale/ru.js +1550 -1445
  85. package/public/vendor/monaco/dist/locale/tr.js +1550 -1445
  86. package/public/vendor/monaco/dist/locale/zh-hans.js +1550 -1445
  87. package/public/vendor/monaco/dist/locale/zh-hant.js +1550 -1445
  88. package/public/vendor/monaco/dist/theme/ace.json +197 -0
  89. package/public/vendor/monaco/dist/theme/active4d.json +4 -0
  90. package/public/vendor/monaco/dist/theme/all-hallows-eve.json +4 -0
  91. package/public/vendor/monaco/dist/theme/amy.json +4 -0
  92. package/public/vendor/monaco/dist/theme/birds-of-paradise.json +4 -0
  93. package/public/vendor/monaco/dist/theme/blackboard.json +4 -0
  94. package/public/vendor/monaco/dist/theme/brilliance-black.json +4 -0
  95. package/public/vendor/monaco/dist/theme/brilliance-dull.json +4 -0
  96. package/public/vendor/monaco/dist/theme/chrome-devtools.json +4 -0
  97. package/public/vendor/monaco/dist/theme/clouds-midnight.json +4 -0
  98. package/public/vendor/monaco/dist/theme/clouds.json +4 -0
  99. package/public/vendor/monaco/dist/theme/cobalt.json +4 -0
  100. package/public/vendor/monaco/dist/theme/cobalt2.json +859 -0
  101. package/public/vendor/monaco/dist/theme/dawn.json +4 -0
  102. package/public/vendor/monaco/dist/theme/dracula.json +208 -0
  103. package/public/vendor/monaco/dist/theme/dreamweaver.json +4 -0
  104. package/public/vendor/monaco/dist/theme/eiffel.json +4 -0
  105. package/public/vendor/monaco/dist/theme/espresso-libre.json +4 -0
  106. package/public/vendor/monaco/dist/theme/github.json +4 -0
  107. package/public/vendor/monaco/dist/theme/idle.json +4 -0
  108. package/public/vendor/monaco/dist/theme/idlefingers.json +4 -0
  109. package/public/vendor/monaco/dist/theme/iplastic.json +4 -0
  110. package/public/vendor/monaco/dist/theme/katzenmilch.json +4 -0
  111. package/public/vendor/monaco/dist/theme/krtheme.json +4 -0
  112. package/public/vendor/monaco/dist/theme/kuroir-theme.json +4 -0
  113. package/public/vendor/monaco/dist/theme/lazy.json +4 -0
  114. package/public/vendor/monaco/dist/theme/magicwb-amiga.json +4 -0
  115. package/public/vendor/monaco/dist/theme/merbivore-soft.json +4 -0
  116. package/public/vendor/monaco/dist/theme/merbivore.json +4 -0
  117. package/public/vendor/monaco/dist/theme/monoindustrial.json +4 -0
  118. package/public/vendor/monaco/dist/theme/monokai-bright.json +4 -0
  119. package/public/vendor/monaco/dist/theme/monokai.json +4 -0
  120. package/public/vendor/monaco/dist/theme/night-owl.json +4 -0
  121. package/public/vendor/monaco/dist/theme/oceanic-next.json +4 -0
  122. package/public/vendor/monaco/dist/theme/pastels-on-dark.json +4 -0
  123. package/public/vendor/monaco/dist/theme/slush-and-poppies.json +4 -0
  124. package/public/vendor/monaco/dist/theme/solarized-dark.json +4 -0
  125. package/public/vendor/monaco/dist/theme/solarized-light.json +4 -0
  126. package/public/vendor/monaco/dist/theme/spacecadet.json +4 -0
  127. package/public/vendor/monaco/dist/theme/sunburst.json +4 -0
  128. package/public/vendor/monaco/dist/theme/textmate-mac-classic.json +4 -0
  129. package/public/vendor/monaco/dist/theme/tomorrow-night-blue.json +4 -0
  130. package/public/vendor/monaco/dist/theme/tomorrow-night-bright.json +4 -0
  131. package/public/vendor/monaco/dist/theme/tomorrow-night-eighties.json +4 -0
  132. package/public/vendor/monaco/dist/theme/tomorrow-night.json +4 -0
  133. package/public/vendor/monaco/dist/theme/tomorrow.json +4 -0
  134. package/public/vendor/monaco/dist/theme/twilight.json +4 -0
  135. package/public/vendor/monaco/dist/theme/upstream-sunburst.json +4 -0
  136. package/public/vendor/monaco/dist/theme/vibrant-ink.json +4 -0
  137. package/public/vendor/monaco/dist/theme/xcode_default.json +4 -0
  138. package/public/vendor/monaco/dist/theme/zenburnesque.json +4 -0
  139. package/public/vendor/monaco/dist/ts.worker.js +2 -16
  140. package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +6 -0
  141. package/public/vendor/vendor.js +4 -4
  142. package/public/red/images/grip-horizontal.png +0 -0
  143. package/public/red/images/grip.png +0 -0
  144. package/public/red/tours/images/delete-repair.gif +0 -0
  145. package/public/red/tours/images/detach-repair.gif +0 -0
  146. package/public/red/tours/images/slice.gif +0 -0
  147. package/public/red/tours/images/subflow-labels.png +0 -0
@@ -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,17 @@
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
+ "thisFlow": "現在のフロー"
912
+ }
903
913
  },
904
914
  "expressionEditor": {
905
915
  "functions": "関数",
@@ -934,6 +944,8 @@
934
944
  "format": "JSONフォーマット",
935
945
  "rawMode": "JSONを編集",
936
946
  "uiMode": "ビジュアルエディタ",
947
+ "rawMode-readonly": "JSON",
948
+ "uiMode-readonly": "ビジュアル",
937
949
  "insertAbove": "上に挿入",
938
950
  "insertBelow": "下に挿入",
939
951
  "addItem": "要素を追加",
@@ -1148,6 +1160,9 @@
1148
1160
  "start": "開始",
1149
1161
  "next": "次へ"
1150
1162
  },
1163
+ "diagnostics": {
1164
+ "title": "システム情報"
1165
+ },
1151
1166
  "languages": {
1152
1167
  "de": "ドイツ語",
1153
1168
  "en-US": "英語",
@@ -1157,6 +1172,22 @@
1157
1172
  "zh-CN": "中国語(簡体)",
1158
1173
  "zh-TW": "中国語(繁体)"
1159
1174
  },
1175
+ "validator": {
1176
+ "errors": {
1177
+ "invalid-json": "JSONデータが不正: __error__",
1178
+ "invalid-json-prop": "__prop__: JSONデータが不正: __error__",
1179
+ "invalid-prop": "プロパティ式が不正",
1180
+ "invalid-prop-prop": "__prop__: プロパティ式が不正",
1181
+ "invalid-num": "数値が不正",
1182
+ "invalid-num-prop": "__prop__: 数値が不正",
1183
+ "invalid-regexp": "入力パターンが不正",
1184
+ "invalid-regex-prop": "__prop__: 入力パターンが不正",
1185
+ "missing-required-prop": "__prop__: プロパティが未設定",
1186
+ "invalid-config": "__prop__: 設定ノードが不正",
1187
+ "missing-config": "__prop__: 設定ノードが存在しません",
1188
+ "validation-error": "__prop__: チェックエラー: __node__, __id__: __error__"
1189
+ }
1190
+ },
1160
1191
  "action-list": {
1161
1192
  "toggle-show-tips": "ヒント表示切替",
1162
1193
  "show-about": "Node-REDの説明を表示",
@@ -1174,6 +1205,7 @@
1174
1205
  "hide-all-flows": "全てのフローを非表示",
1175
1206
  "show-all-flows": "全てのフローを表示",
1176
1207
  "show-last-hidden-flow": "最後に非表示にしたフローを表示",
1208
+ "list-modified-nodes": "修正したフローを表示",
1177
1209
  "list-hidden-flows": "非表示フローを表示",
1178
1210
  "list-flows": "フロー一覧",
1179
1211
  "list-subflows": "サブフロー一覧",
@@ -1240,6 +1272,8 @@
1240
1272
  "distribute-selection-vertically": "選択を上下に整列",
1241
1273
  "wire-series-of-nodes": "ノードを一続きに接続",
1242
1274
  "wire-node-to-multiple": "ノードを複数に接続",
1275
+ "split-wire-with-link-nodes": "ワイヤーをlinkノードで分割",
1276
+ "generate-node-names": "ノード名を生成",
1243
1277
  "show-user-settings": "ユーザ設定を表示",
1244
1278
  "show-help": "ヘルプを表示",
1245
1279
  "toggle-palette": "パレットの表示切替",
@@ -1266,6 +1300,8 @@
1266
1300
  "show-library-import-dialog": "ライブラリ読み込みダイアログを表示",
1267
1301
  "show-examples-import-dialog": "サンプル読み込みダイアログを表示",
1268
1302
  "search": "検索",
1303
+ "search-previous": "前を検索",
1304
+ "search-next": "次を検索",
1269
1305
  "show-action-list": "アクション一覧を表示",
1270
1306
  "confirm-edit-tray": "編集を完了",
1271
1307
  "cancel-edit-tray": "編集をキャンセル",
@@ -1276,8 +1312,8 @@
1276
1312
  "set-deploy-type-to-modified-flows": "デプロイを「変更したフロー」に設定",
1277
1313
  "set-deploy-type-to-modified-nodes": "デプロイを「変更したノード」に設定",
1278
1314
  "show-debug-tab": "デバッグタブを表示",
1279
- "clear-debug-messages": "デバッグメッセージをクリア",
1280
- "clear-filtered-debug-messages": "フィルタしたデバッグメッセージをクリア",
1315
+ "clear-debug-messages": "デバッグメッセージを削除",
1316
+ "clear-filtered-debug-messages": "フィルタしたデバッグメッセージを削除",
1281
1317
  "activate-selected-debug-nodes": "選択したデバッグノードを有効化",
1282
1318
  "activate-all-debug-nodes": "全てのデバッグノードを有効化",
1283
1319
  "activate-all-flow-debug-nodes": "フロー内の全デバッグノードを有効化",
@@ -1287,6 +1323,7 @@
1287
1323
  "zoom-in": "ズームイン",
1288
1324
  "zoom-out": "ズームアウト",
1289
1325
  "zoom-reset": "ズームリセット",
1290
- "toggle-navigator": "ナビゲータ表示切替"
1326
+ "toggle-navigator": "ナビゲータ表示切替",
1327
+ "show-system-info": "システムインフォメーション"
1291
1328
  }
1292
1329
  }
@@ -17,7 +17,7 @@
17
17
  "tip14": "[shift] を押しながらノードを [click] すると、接続された全てのノードを選択できます。",
18
18
  "tip15": "[ctrl] を押しながらノードを [click] すると、選択/非選択を切り替えできます。",
19
19
  "tip16": "{{core:show-previous-tab}} や {{core:show-next-tab}} で、タブの切り替えができます。",
20
- "tip17": "ノードのプロバティ設定画面にて {{core:confirm-edit-tray}} を押すと、変更を確定できます。また、 {{core:cancel-edit-tray}} を押すと、変更を取り消せます。",
20
+ "tip17": "ノードのプロパティ設定画面にて {{core:confirm-edit-tray}} を押すと、変更を確定できます。また、 {{core:cancel-edit-tray}} を押すと、変更を取り消せます。",
21
21
  "tip18": "ノードを選択し、 {{core:edit-selected-node}} を押すとプロパティ設定画面が表示されます。"
22
22
  }
23
23
  }
@@ -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.3",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/public/red/about CHANGED
@@ -1,3 +1,154 @@
1
+ #### 3.0.0-beta.3: Beta Release
2
+
3
+ Editor
4
+
5
+ - Add Right-Click content menu (#3678) @knolleary
6
+ - Fix disable junction (#3671) @HiroyasuNishiyama
7
+ - Add Japanese translations for v2.2.3 (#3672) @kazuhitoyokoi
8
+ - Reset mouse state when switching tabs (#3643) @knolleary
9
+ - Fix uncorrect fix of junction to subflow conversion (#3666) @HiroyasuNishiyama
10
+ - Fix undoing junction to subflow (#3653) @HiroyasuNishiyama
11
+ - Fix conversion of junction to subflow (#3652) @HiroyasuNishiyama
12
+ - Fix to include junction to exported nodes (#3650) @HiroyasuNishiyama
13
+ - Fix z-index value for shade to cover nodes in palette (#3649) @kazuhitoyokoi
14
+ - Fix to extend escaped subflow category characters (#3647) @HiroyasuNishiyama
15
+ - Fix to sanitize tab name (#3646) @HiroyasuNishiyama
16
+ - Fix selector placement (#3644) @bonanitech
17
+ - Add Japanese translations for v3.0-beta.2 (#3622) @kazuhitoyokoi
18
+ - Fix new folder menu of save to library dialog (#3633) @HiroyasuNishiyama
19
+ - Fix layer of palette node (#3638) @HiroyasuNishiyama
20
+ - Fix to place a node dragged from palette within the workspace (#3637) @HiroyasuNishiyama
21
+ - Fix typo in CSS (#3628) @bonanitech
22
+ - Use the correct variable for the gutter text color (#3615) @bonanitech
23
+
24
+
25
+ Runtime
26
+
27
+ - Support loading node modules from `nodesdir` (#3676) @Steve-Mcl
28
+ - fix buffer parse error message of evaluateNodeProperty (#3624) @HiroyasuNishiyama
29
+
30
+ Nodes
31
+
32
+ - File: Further simplify file node filename entry UX (v3) (#3677) @Steve-Mcl
33
+ - Function: Fix initial cursor position of init/finalize tab of function node (#3674) @HiroyasuNishiyama
34
+ - Function: Fix ESM module loading in Function node (#3645) @knolleary
35
+ - Inject: Fix JSONata evaluation of inject button (#3632) @HiroyasuNishiyama
36
+ - TCP: Dont delete TCP socket twice (#3630) @Steve-Mcl
37
+ - MQTT Node: define noproxy variable (#3626) @Steve-Mcl
38
+ - Debug: i18n debug sidebar node label (#3623) @HiroyasuNishiyama
39
+
40
+ #### 3.0.0-beta.2: Beta Release
41
+
42
+ **Migration from 2.x**
43
+
44
+ - The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
45
+
46
+ Editor
47
+
48
+ - Rework Junctions to be more node like in their event handling (#3607) @knolleary
49
+ - Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
50
+ - Do not slice-junction link node wires (#3608) @knolleary
51
+ - Handle many-to-one slicing of wires (#3604) @knolleary
52
+ - Ensure ACE worker options are set (#3611) @Steve-Mcl
53
+ - Remove duplicate history add of ungroup event (#3605) @knolleary
54
+ - use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
55
+ - Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
56
+ - Fix typedInput label not visible on themes (#3580) @bonanitech
57
+ - Fix project switching when junctions are present (#3595) @Steve-Mcl
58
+ - Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
59
+ - Fix error initialising flow tab editor (#3585) @Steve-Mcl
60
+ - Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
61
+ - Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
62
+ - Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
63
+
64
+ Runtime
65
+
66
+ - fix error on system-info action (#3589) @HiroyasuNishiyama
67
+
68
+ Nodes
69
+
70
+ - I18n switch rule selector (#3602) @HiroyasuNishiyama
71
+ - Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
72
+ - update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
73
+
74
+
75
+ #### 3.0.0-beta.1: Beta Release
76
+
77
+ **Migration from 2.x**
78
+
79
+ - Node-RED now requires Node.js 14.x or later.
80
+ - New installs of Node-RED will default to the monaco editor.
81
+
82
+
83
+ Editor
84
+
85
+ - Add Junctions (#3462) @knolleary
86
+ - Allow node name to be auto-generated when added (#3478, #3538) @knolleary
87
+ - Set monaco as default code editor as of v3.x (#3543) @Steve-Mcl
88
+ - Update Monaco to V0.33.0 (#3522) @Steve-Mcl
89
+ - Auto-complete Improvements (#3521) @Steve-Mcl
90
+ - Add a tooltip to debug sidebar messages to reveal full path to node (#3503) @knolleary
91
+ - Fix down arrow triggering menu in search box (#3507) @Steve-Mcl
92
+ - Add Japanese translations for v3.0 (#3512) @kazuhitoyokoi
93
+ - Add feature: Continuous search tools (search previous, search next) (#3405) @Steve-Mcl
94
+ - Add feature: split-wire-to-links (#3399, #3476) @Steve-Mcl
95
+ - Add copy button to node properties tables (#3390) @knolleary
96
+ - Add info-tab search options dropdown to the regular search (#3395) @Steve-Mcl
97
+ - New Feature: Add ability to find modified nodes/flows. (#3392) @Steve-Mcl
98
+ - Code editor ux improvements around remembering state of each code editor in a flow (#3553) @Steve-Mcl
99
+ - Make it easier to apply themes on SVG icons (#3515) @bonanitech
100
+ - Add support of property validation message (#3438) @HiroyasuNishiyama
101
+ - Ensure node validation tooltip is closed when field becomes valid (#3570) @knolleary
102
+ - Add "search for" buttons to notifications (#3567) @Steve-Mcl
103
+ - Don't let themes change node config colors (#3564) @bonanitech
104
+ - Fix gap between typedInput containers borders (#3560) @bonanitech
105
+ - Fix recording removed links in edit history (#3547) @knolleary
106
+ - Remove unused SASS vars (#3536) @bonanitech
107
+ - Add custom style for jQuery widgets borders (#3537) @bonanitech
108
+ - fix out of scope reference of hasUnusedConfig variable (#3535) @HiroyasuNishiyama
109
+ - correct "non string" check parenthesis (#3524) @Steve-Mcl
110
+ - Ensure i18n of scoped package name (#3516) @Steve-Mcl
111
+ - Prevent shortcut deploy when deploy button shaded (#3517) @Steve-Mcl
112
+ - Fix: Sidebar "Configuration" filter button tooltip (#3500) @ralphwetzel
113
+ - Add the ability to customize diff colors even more (#3499) @bonanitech
114
+ - Do JSON comparison of old value/new value in editor (#3481) @Steve-Mcl
115
+ - Fix nodes losing their wires when in an iframe (#3484) @zettca
116
+ - Improve scroll into view (#3468) @Steve-Mcl
117
+ - Do not show 1st tab if hidden when loading (#3464) @Steve-Mcl
118
+
119
+ Runtime
120
+
121
+ - Fix importing external module from node-red module (#3541) @knolleary
122
+ - Add support for multiple static paths with optional static root (#3542) @Steve-Mcl
123
+ - Store external token when authenticating if provided (#3460) @ArFe
124
+ - Support OAuth/OpenID logout (#3388) @mw75
125
+ - Allow adminAuth to auto-login users when using passport strategy (#3519) @knolleary
126
+ - Add runtime diagnostics admin endpoint (#3511) @Steve-Mcl
127
+ - Don't start if user has no home directory (#3540) @hardillb
128
+ - Error on invalid encrypted credentials (#3498) @sammachin
129
+
130
+ Nodes
131
+
132
+ - Debug: Add message count option to Debug status (#3544 #3551) @rafaelmuynarsk @knolleary
133
+ - File: Change basic Filename field to a typedInput (#3533) @Steve-Mcl
134
+ - HTTP Request: Add UI for Http Request node headers (#3488) @Steve-Mcl
135
+ - Inject: let inject optionally fire at start in only at time mode. (#3385) @dceejay
136
+ - Link Call: Dynamic link call (#3463) @Steve-Mcl
137
+ - Link Call: Display link targets of nodes in a regular flow, for Link Call nodes inside a subflow (#3528) @Steve-Mcl
138
+ - MQTT: MQTT payload auto parsing improvements (#3530) @Steve-Mcl
139
+ - MQTT: Add client and Runtime MQTT topic validation (#3563) @Steve-Mcl [dev]
140
+ - MQTT: save and restore v5 config user props (#3562) @Steve-Mcl
141
+ - MQTT: Fix incorrect MQTT status (#3552) @Steve-Mcl
142
+ - MQTT: fix reference error of msg.status in debug node (#3526) @HiroyasuNishiyama
143
+ - MQTT: Add unit tests for MQTT nodes (#3497) @Steve-Mcl
144
+ - MQTT: fix typo of will properties (#3502) @Steve-Mcl
145
+ - MQTT: ensure mqtt v5 props can be set false (#3472) @Steve-Mcl
146
+ - Switch: add check for NaN in is of type number to be false (#3409) @dceejay
147
+ - TCP: TCP node better split (#3465) @dceejay
148
+ - Watch: Update Watch node to use node-watch module (#3559 #3569) @knolleary
149
+ - WebSocket: call done after ws disconnects (#3531) @Steve-Mcl
150
+
151
+
1
152
  #### 2.2.2: Maintenance Release
2
153
 
3
154
  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
  }