@node-red/editor-client 3.0.2 → 3.1.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 (34) hide show
  1. package/locales/de/editor.json +0 -0
  2. package/locales/de/infotips.json +0 -0
  3. package/locales/de/jsonata.json +0 -0
  4. package/locales/en-US/editor.json +31 -6
  5. package/locales/en-US/infotips.json +0 -0
  6. package/locales/en-US/jsonata.json +0 -0
  7. package/locales/ja/editor.json +37 -9
  8. package/locales/ko/editor.json +0 -0
  9. package/locales/ko/infotips.json +0 -0
  10. package/locales/ko/jsonata.json +0 -0
  11. package/locales/ru/editor.json +0 -0
  12. package/locales/ru/infotips.json +0 -0
  13. package/locales/ru/jsonata.json +0 -0
  14. package/package.json +1 -1
  15. package/public/red/about +91 -0
  16. package/public/red/red.js +1756 -543
  17. package/public/red/red.min.js +4 -3
  18. package/public/red/style.min.css +1 -1
  19. package/public/red/tours/3.0/images/context-menu.png +0 -0
  20. package/public/red/tours/{images → 3.0/images}/continuous-search.png +0 -0
  21. package/public/red/tours/{images → 3.0/images}/debug-path-tooltip.png +0 -0
  22. package/public/red/tours/{images → 3.0/images}/junction-quick-add.png +0 -0
  23. package/public/red/tours/{images → 3.0/images}/junction-slice.gif +0 -0
  24. package/public/red/tours/{images → 3.0/images}/split-wire-with-links.gif +0 -0
  25. package/public/red/tours/3.0/welcome.js +155 -0
  26. package/public/red/tours/images/context-menu.png +0 -0
  27. package/public/red/tours/images/global-env-vars.png +0 -0
  28. package/public/red/tours/images/hiding-flows.png +0 -0
  29. package/public/red/tours/images/locking-flows.png +0 -0
  30. package/public/red/tours/images/mermaid.png +0 -0
  31. package/public/red/tours/welcome.js +59 -98
  32. package/public/types/node-red/func.d.ts +3 -0
  33. package/public/vendor/mermaid/mermaid.min.js +1284 -0
  34. package/public/vendor/vendor.js +4 -3
File without changes
File without changes
File without changes
@@ -23,7 +23,9 @@
23
23
  "position": "Position",
24
24
  "enable": "Enable",
25
25
  "disable": "Disable",
26
- "upload": "Upload"
26
+ "upload": "Upload",
27
+ "lock": "Lock",
28
+ "unlock": "Unlock"
27
29
  },
28
30
  "type": {
29
31
  "string": "string",
@@ -53,22 +55,30 @@
53
55
  "confirmDelete": "Confirm delete",
54
56
  "delete": "Are you sure you want to delete '__label__'?",
55
57
  "dropFlowHere": "Drop the flow here",
58
+ "dropImageHere": "Drop the image here",
56
59
  "addFlow": "Add flow",
57
60
  "addFlowToRight": "Add flow to the right",
61
+ "closeFlow": "Close flow",
58
62
  "hideFlow": "Hide flow",
59
63
  "hideOtherFlows": "Hide other flows",
60
- "showAllFlows": "Show all flows",
64
+ "showAllFlows": "Show all flows (__count__ hidden)",
61
65
  "hideAllFlows": "Hide all flows",
62
66
  "hiddenFlows": "List __count__ hidden flow",
63
67
  "hiddenFlows_plural": "List __count__ hidden flows",
64
- "showLastHiddenFlow": "Show last hidden flow",
68
+ "showLastHiddenFlow": "Reopen hidden flow",
65
69
  "listFlows": "List flows",
66
70
  "listSubflows": "List subflows",
67
71
  "status": "Status",
68
72
  "enabled": "Enabled",
69
73
  "disabled": "Disabled",
70
74
  "info": "Description",
71
- "selectNodes": "Click nodes to select"
75
+ "selectNodes": "Click nodes to select",
76
+ "enableFlow": "Enable flow",
77
+ "disableFlow": "Disable flow",
78
+ "lockFlow": "Lock flow",
79
+ "unlockFlow": "Unlock flow",
80
+ "moveToStart": "Move flow to start",
81
+ "moveToEnd": "Move flow to end"
72
82
  },
73
83
  "menu": {
74
84
  "label": {
@@ -101,6 +111,7 @@
101
111
  "displayStatus": "Show node status",
102
112
  "displayConfig": "Configuration nodes",
103
113
  "import": "Import",
114
+ "importExample": "Import Example Flow",
104
115
  "export": "Export",
105
116
  "search": "Search flows",
106
117
  "searchInput": "search your flows",
@@ -497,6 +508,7 @@
497
508
  "addRemoveNode": "Add/remove node from selection",
498
509
  "editSelected": "Edit selected node",
499
510
  "deleteSelected": "Delete selected nodes or link",
511
+ "deleteReconnect": "Delete and Reconnect",
500
512
  "importNode": "Import nodes",
501
513
  "exportNode": "Export nodes",
502
514
  "nudgeNode": "Move selected nodes (1px)",
@@ -683,7 +695,9 @@
683
695
  "empty": "empty",
684
696
  "globalConfig": "Global Configuration Nodes",
685
697
  "triggerAction": "Trigger action",
686
- "find": "Find in workspace"
698
+ "find": "Find in workspace",
699
+ "copyItemUrl": "Copy item url",
700
+ "copyURL2Clipboard": "Copied url to clipboard"
687
701
  },
688
702
  "help": {
689
703
  "name": "Help",
@@ -936,6 +950,9 @@
936
950
  "invalid-expr": "Invalid JSONata expression:\n __message__",
937
951
  "invalid-msg": "Invalid example JSON message:\n __message__",
938
952
  "context-unsupported": "Cannot test context functions\n $flowContext or $globalContext",
953
+ "env-unsupported": "Cannot test $env function",
954
+ "moment-unsupported": "Cannot test $moment function",
955
+ "clone-unsupported": "Cannot test $clone function",
939
956
  "eval": "Error evaluating expression:\n __message__"
940
957
  }
941
958
  },
@@ -981,7 +998,10 @@
981
998
  "quote": "Quote",
982
999
  "link": "Link",
983
1000
  "horizontal-rule": "Horizontal rule",
984
- "toggle-preview": "Toggle preview"
1001
+ "toggle-preview": "Toggle preview",
1002
+ "mermaid": {
1003
+ "summary": "Mermaid Diagram"
1004
+ }
985
1005
  },
986
1006
  "bufferEditor": {
987
1007
  "title": "Buffer editor",
@@ -1203,5 +1223,10 @@
1203
1223
  "node": "Node",
1204
1224
  "junction": "Junction",
1205
1225
  "linkNodes": "Link Nodes"
1226
+ },
1227
+ "env-var": {
1228
+ "environment": "Environment",
1229
+ "header": "Global Environment Variables",
1230
+ "revert": "Revert"
1206
1231
  }
1207
1232
  }
File without changes
File without changes
@@ -23,7 +23,9 @@
23
23
  "position": "配置",
24
24
  "enable": "有効",
25
25
  "disable": "無効",
26
- "upload": "アップロード"
26
+ "upload": "アップロード",
27
+ "lock": "固定",
28
+ "unlock": "固定を解除"
27
29
  },
28
30
  "type": {
29
31
  "string": "文字列",
@@ -53,8 +55,10 @@
53
55
  "confirmDelete": "削除の確認",
54
56
  "delete": "本当に '__label__' を削除しますか?",
55
57
  "dropFlowHere": "ここにフローをドロップしてください",
58
+ "dropImageHere": "ここに画像ファイルをドロップしてください",
56
59
  "addFlow": "フローの追加",
57
60
  "addFlowToRight": "右側にフローを追加",
61
+ "closeFlow": "フローを閉じる",
58
62
  "hideFlow": "フローを非表示",
59
63
  "hideOtherFlows": "他のフローを非表示",
60
64
  "showAllFlows": "全てのフローを表示",
@@ -68,7 +72,13 @@
68
72
  "enabled": "有効",
69
73
  "disabled": "無効",
70
74
  "info": "詳細",
71
- "selectNodes": "ノードをクリックして選択"
75
+ "selectNodes": "ノードをクリックして選択",
76
+ "enableFlow": "フローを有効化",
77
+ "disableFlow": "フローを無効化",
78
+ "lockFlow": "フローを固定",
79
+ "unlockFlow": "フローの固定を解除",
80
+ "moveToStart": "フローを先頭へ移動",
81
+ "moveToEnd": "フローを最後へ移動"
72
82
  },
73
83
  "menu": {
74
84
  "label": {
@@ -101,6 +111,7 @@
101
111
  "displayStatus": "ノードのステータスを表示",
102
112
  "displayConfig": "設定ノード",
103
113
  "import": "読み込み",
114
+ "importExample": "フロー例を読み込み",
104
115
  "export": "書き出し",
105
116
  "search": "ノードを検索",
106
117
  "searchInput": "ノードを検索",
@@ -497,6 +508,7 @@
497
508
  "addRemoveNode": "ノードの選択、選択解除",
498
509
  "editSelected": "選択したノードを編集",
499
510
  "deleteSelected": "選択したノードや接続を削除",
511
+ "deleteReconnect": "削除と再接続",
500
512
  "importNode": "フローの読み込み",
501
513
  "exportNode": "フローの書き出し",
502
514
  "nudgeNode": "選択したノードを移動(移動量小)",
@@ -683,7 +695,9 @@
683
695
  "empty": "空",
684
696
  "globalConfig": "グローバル設定ノード",
685
697
  "triggerAction": "アクションを実行",
686
- "find": "ワークスペース内を検索"
698
+ "find": "ワークスペース内を検索",
699
+ "copyItemUrl": "要素のURLをコピー",
700
+ "copyURL2Clipboard": "URLをクリップボードにコピーしました"
687
701
  },
688
702
  "help": {
689
703
  "name": "ヘルプ",
@@ -935,8 +949,11 @@
935
949
  "errors": {
936
950
  "invalid-expr": "不正なJSONata式:\n __message__",
937
951
  "invalid-msg": "不正なJSONメッセージ例:\n __message__",
938
- "context-unsupported": "$flowContext や $globalContextの\nコンテキスト機能をテストできません",
939
- "eval": "表現評価エラー:\n __message__"
952
+ "context-unsupported": "$flowContext や $globalContextの\nコンテキスト関数をテストできません",
953
+ "env-unsupported": "$env関数はテストできません",
954
+ "moment-unsupported": "$moment関数はテストできません",
955
+ "clone-unsupported": "$clone関数はテストできません",
956
+ "eval": "式評価エラー:\n __message__"
940
957
  }
941
958
  },
942
959
  "monaco": {
@@ -981,7 +998,10 @@
981
998
  "quote": "引用",
982
999
  "link": "リンク",
983
1000
  "horizontal-rule": "区切り線",
984
- "toggle-preview": "プレビュー表示切替え"
1001
+ "toggle-preview": "プレビュー表示切替え",
1002
+ "mermaid": {
1003
+ "summary": "Mermaid図"
1004
+ }
985
1005
  },
986
1006
  "bufferEditor": {
987
1007
  "title": "バッファエディタ",
@@ -1168,8 +1188,7 @@
1168
1188
  "takeATour": "ツアーを開始",
1169
1189
  "start": "開始",
1170
1190
  "next": "次へ",
1171
- "welcomeTours": "ウェルカムツアー",
1172
- "tours": "ツアー"
1191
+ "welcomeTours": "ウェルカムツアー"
1173
1192
  },
1174
1193
  "diagnostics": {
1175
1194
  "title": "システム情報"
@@ -1205,6 +1224,11 @@
1205
1224
  "junction": "分岐点",
1206
1225
  "linkNodes": "Linkノード"
1207
1226
  },
1227
+ "env-var": {
1228
+ "environment": "環境変数",
1229
+ "header": "大域環境変数",
1230
+ "revert": "破棄"
1231
+ },
1208
1232
  "action-list": {
1209
1233
  "toggle-show-tips": "ヒント表示切替",
1210
1234
  "show-about": "Node-REDの説明を表示",
@@ -1348,6 +1372,10 @@
1348
1372
  "show-project-settings": "プロジェクト設定を表示",
1349
1373
  "show-version-control-tab": "バージョンコントロールタブを表示",
1350
1374
  "start-flows": "フローを開始",
1351
- "stop-flows": "フローを停止"
1375
+ "stop-flows": "フローを停止",
1376
+ "copy-item-url": "要素のURLをコピー",
1377
+ "copy-item-edit-url": "要素の編集URLをコピー",
1378
+ "move-flow-to-start": "フローを先頭に移動",
1379
+ "move-flow-to-end": "フローを末尾に移動"
1352
1380
  }
1353
1381
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-client",
3
- "version": "3.0.2",
3
+ "version": "3.1.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/public/red/about CHANGED
@@ -1,3 +1,94 @@
1
+ #### 3.1.0-beta.1: Beta Release
2
+
3
+
4
+ Editor
5
+
6
+ - NEW: Locking Flows (#3938) @knolleary
7
+ - NEW: Improve UX around hiding flows via context menu (#3930) @knolleary
8
+ - NEW: Add support for inline image in markdown editor by drag and drop of an image file (#4006) @HiroyasuNishiyama
9
+ - NEW: Add support for mermaid diagram to markdown editor (#4007) @HiroyasuNishiyama
10
+ - NEW: Support uri fragments for nodes and groups including edit support (#3870) @knolleary
11
+ - NEW: Add global environment variable feature (#3941) @HiroyasuNishiyama
12
+
13
+ - Remember compact/pretty flow export user choice (#3974) @Steve-Mcl
14
+ - fix .red-ui-notification class (#4035) @xiaobinqt
15
+ - Fix border radius on Modules list header (#4038) @bonanitech
16
+ - fix workspace reference error in case of empty tabs (#4029) @HiroyasuNishiyama
17
+ - Disable delete tab menu when single tab exists (#4030) @HiroyasuNishiyama
18
+ - Disable hide all menu if all tabs hidden (#4031) @HiroyasuNishiyama
19
+ - fix hide subflow tooltip (#4033) @HiroyasuNishiyama
20
+ - Fix disabled menu items in project feature (#4027) @kazuhitoyokoi
21
+ - Let themes change radialMenu text colors (#3995) @bonanitech
22
+ - Add Japanese translations for v3.0.3 (#4012) @kazuhitoyokoi
23
+ - Add Japanese translation for v3.1.0-beta.0 (#3997) @kazuhitoyokoi
24
+ - Add Japanese translation for v3.1.0-beta.0 (#3916) @kazuhitoyokoi
25
+ - Hide subflow category after deleting subflow (#3980) @kazuhitoyokoi
26
+ - Prevent dbl-click opening node edit dialog with text selected (#3970) @knolleary
27
+ - Handle replacing unknown node inside group or subflow (#3921) @knolleary
28
+ - Fix #3939, red border red-ui-typedInput-container (#3949) @Steveorevo
29
+ - i18n item URL copy notification & add Japanese message (#3946) @HiroyasuNishiyama
30
+ - add Japanese message for item url copy actions (#3947) @HiroyasuNishiyama
31
+ - Fix autocomplete entry for responseUrl (#3884) @knolleary
32
+ - Fix Japanese translation for JSONata editor (#3872) @HiroyasuNishiyama
33
+ - Fix search type with spaces (#3841) @Steve-Mcl
34
+ - Fix error hanndling of JSONata expression editor for extended functions (#3871) @HiroyasuNishiyama
35
+ - Add button type to the adding SSH key button (#3866) @kazuhitoyokoi
36
+ - Check radio button as default in project dialog (#3879) @kazuhitoyokoi
37
+ - Add $clone as supported function (#3874) @HiroyasuNishiyama
38
+ - Env var jsonata (#3807) @HiroyasuNishiyama
39
+ - Add Japanese translation for v3.0.2 (#3852) @kazuhitoyokoi
40
+
41
+ Runtime
42
+
43
+ - Force IPv4 name resolution to have priority (#4019) @dceejay
44
+ - Fix async loading of modules containing both nodes and plugins (#3999) @knolleary
45
+ - Use main branch as default in project feature (#4036) @kazuhitoyokoi
46
+ - Rename package var to avoid strict mode error (#4020) @knolleary
47
+ - Fix typos in settings.js (#4013) @ypid
48
+ - Ensure credentials object is removed before returning node in getFlow request (#3971) @knolleary
49
+ - Ignore commit error in project feature (#3987) @kazuhitoyokoi
50
+ - Update dependencies (#3969) @knolleary
51
+ - Add check that node sends object rather than primitive type (#3909) @knolleary
52
+ - Ensure key_path is quoted in GIT_SSH_COMMAND in case of spaces in pathname (#3912) @knolleary
53
+ - Fix nodesDir scan when node package has js/html in sub dir to package.json (#3867) @Steve-Mcl
54
+ - Fix file permissions (#3917) @kazuhitoyokoi
55
+ - ci: add minimum GitHub token permissions for workflows (#3907) @boahc077
56
+
57
+ Nodes
58
+
59
+ - Catch: fix typo in catch.html (#3965) @we11adam
60
+ - Change: Fix change node overwriting msg with itself (#3899) @dceejay
61
+ - Comment node: Clarify where the text will appear (#4004) @dirkjanfaber
62
+ - CSV: change replace to replaceAll (#3990) @dceejay
63
+ - CSV node: check header properties for ' and " (#3920) @dceejay
64
+ - CSV: Fix for CSV undefined property (#3906) @dceejay
65
+ - Delay: let delay node handle both flush then reset (#3898) @dceejay
66
+ - Function: Limit number of ports in function node (#3886) @kazuhitoyokoi
67
+ - Function: Remove dot from variable name for external module in function node (#3880) @kazuhitoyokoi
68
+ - Function: add function node monaco types util and promisify (#3868) @Steve-Mcl
69
+ - HTTP In: Ensure msg.req.headers is enumerable (#3908) @knolleary
70
+ - HTTP Request: Support form-data arrays (#3991) @hardillb
71
+ - HTTP Request: Fix httprequest tests to be more lenient on error message (#3922) @knolleary
72
+ - HTTP Request: Add missing property to node object HTTPRequest (#3842) @hardillb
73
+ - HTTP Request/Response: Support sortable list on property UI of http request and http response nodes (#3857) @kazuhitoyokoi
74
+ - HTTP Response: Ensure statusCode is a number (#3894) @hardillb
75
+ - Inject: Allow Inject node to work with async context stores (#4021) @knolleary
76
+ - Join/Batch: Add count to join and batch node labels (#4028) @dceejay
77
+ - MQTT: Fix birth topic handling in MQTT node (#3905) @Steve-Mcl
78
+ - MQTT: Fix pull-down menus of MQTT configuration node (#3890) @kazuhitoyokoi
79
+ - MQTT: Prevent invalid mqtt birth topic crashing node-red (#3869) @Steve-Mcl
80
+ - MQTT: ensure sessionExpiry(Interval) is applied (#3840) @Steve-Mcl
81
+ - MQTT: Fix mqtt nodes not reconnecting on modified-flows deploy (#3992) @knolleary
82
+ - MQTT: fix single subscription mqtt node status (#3966) @Steve-Mcl
83
+ - Range: Add drop mode to range node (#3935) @dceejay
84
+ - Remove done from describe (#3873) @HiroyasuNishiyama
85
+ - Split node: avoid duplicate done call for buffer split (#4000) @knolleary
86
+ - Status: Fix typo in 25-status.html (#3981) @kazuhitoyokoi
87
+ - TCP Node: ensure newline substitution applies to whole message (#4009) @dceejay
88
+ - Template: Add information about environment variable to template node (#3882) @kazuhitoyokoi
89
+ - Trigger: Hide trigger node repeat send option if sending nothing (#4023) @dceejay
90
+ - Watch: fix watch node test on MacOS/ARM (#3942) @HiroyasuNishiyama
91
+
1
92
  #### 3.0.2: Maintenance Release
2
93
 
3
94
  Editor