@node-red/editor-client 3.1.8 → 4.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 (149) hide show
  1. package/locales/de/editor.json +2 -0
  2. package/locales/en-US/editor.json +10 -1
  3. package/locales/fr/editor.json +8 -1
  4. package/locales/ja/editor.json +10 -3
  5. package/package.json +1 -1
  6. package/public/red/about +52 -0
  7. package/public/red/red.js +1433 -263
  8. package/public/red/red.min.js +3 -3
  9. package/public/red/style.min.css +2 -2
  10. package/public/red/tours/3.1/welcome.js +231 -0
  11. package/public/red/tours/images/nr4-auto-complete.png +0 -0
  12. package/public/red/tours/images/nr4-config-select.png +0 -0
  13. package/public/red/tours/images/nr4-multiplayer.png +0 -0
  14. package/public/red/tours/images/nr4-plugins.png +0 -0
  15. package/public/red/tours/images/nr4-sf-config.png +0 -0
  16. package/public/red/tours/images/nr4-timestamp-formatting.png +0 -0
  17. package/public/red/tours/welcome.js +105 -161
  18. package/public/types/node/assert/strict.d.ts +1 -1
  19. package/public/types/node/assert.d.ts +8 -9
  20. package/public/types/node/async_hooks.d.ts +9 -5
  21. package/public/types/node/buffer.d.ts +43 -18
  22. package/public/types/node/child_process.d.ts +8 -5
  23. package/public/types/node/cluster.d.ts +15 -19
  24. package/public/types/node/console.d.ts +2 -2
  25. package/public/types/node/crypto.d.ts +165 -70
  26. package/public/types/node/dgram.d.ts +4 -4
  27. package/public/types/node/diagnostics_channel.d.ts +8 -7
  28. package/public/types/node/dns/promises.d.ts +11 -9
  29. package/public/types/node/dns.d.ts +18 -13
  30. package/public/types/node/dom-events.d.ts +129 -0
  31. package/public/types/node/domain.d.ts +2 -2
  32. package/public/types/node/events.d.ts +49 -12
  33. package/public/types/node/fs/promises.d.ts +68 -24
  34. package/public/types/node/fs.d.ts +132 -59
  35. package/public/types/node/globals.d.ts +31 -17
  36. package/public/types/node/http.d.ts +138 -27
  37. package/public/types/node/http2.d.ts +38 -5
  38. package/public/types/node/https.d.ts +12 -3
  39. package/public/types/node/module.d.ts +1 -2
  40. package/public/types/node/net.d.ts +69 -28
  41. package/public/types/node/os.d.ts +16 -5
  42. package/public/types/node/path.d.ts +5 -5
  43. package/public/types/node/perf_hooks.d.ts +48 -9
  44. package/public/types/node/process.d.ts +18 -17
  45. package/public/types/node/querystring.d.ts +2 -2
  46. package/public/types/node/readline/promises.d.ts +146 -0
  47. package/public/types/node/readline.d.ts +141 -31
  48. package/public/types/node/stream/consumers.d.ts +2 -2
  49. package/public/types/node/stream/promises.d.ts +1 -1
  50. package/public/types/node/stream/web.d.ts +4 -66
  51. package/public/types/node/stream.d.ts +96 -118
  52. package/public/types/node/string_decoder.d.ts +2 -2
  53. package/public/types/node/test.d.ts +200 -16
  54. package/public/types/node/timers/promises.d.ts +1 -26
  55. package/public/types/node/timers.d.ts +2 -2
  56. package/public/types/node/tls.d.ts +21 -12
  57. package/public/types/node/trace_events.d.ts +12 -2
  58. package/public/types/node/ts4.8/assert/strict.d.ts +11 -0
  59. package/public/types/node/ts4.8/assert.d.ts +964 -0
  60. package/public/types/node/ts4.8/async_hooks.d.ts +504 -0
  61. package/public/types/node/ts4.8/buffer.d.ts +2262 -0
  62. package/public/types/node/ts4.8/child_process.d.ts +1372 -0
  63. package/public/types/node/ts4.8/cluster.d.ts +413 -0
  64. package/public/types/node/ts4.8/console.d.ts +415 -0
  65. package/public/types/node/ts4.8/crypto.d.ts +3967 -0
  66. package/public/types/node/ts4.8/dgram.d.ts +548 -0
  67. package/public/types/node/ts4.8/diagnostics_channel.d.ts +156 -0
  68. package/public/types/node/ts4.8/dns/promises.d.ts +373 -0
  69. package/public/types/node/ts4.8/dns.d.ts +662 -0
  70. package/public/types/node/ts4.8/dom-events.d.ts +129 -0
  71. package/public/types/node/ts4.8/domain.d.ts +173 -0
  72. package/public/types/node/ts4.8/events.d.ts +681 -0
  73. package/public/types/node/ts4.8/fs/promises.d.ts +1141 -0
  74. package/public/types/node/ts4.8/fs.d.ts +3875 -0
  75. package/public/types/node/ts4.8/globals.d.ts +297 -0
  76. package/public/types/node/ts4.8/http.d.ts +1617 -0
  77. package/public/types/node/ts4.8/http2.d.ts +2137 -0
  78. package/public/types/node/ts4.8/https.d.ts +544 -0
  79. package/public/types/node/ts4.8/module.d.ts +117 -0
  80. package/public/types/node/ts4.8/net.d.ts +872 -0
  81. package/public/types/node/ts4.8/os.d.ts +469 -0
  82. package/public/types/node/ts4.8/path.d.ts +194 -0
  83. package/public/types/node/ts4.8/perf_hooks.d.ts +628 -0
  84. package/public/types/node/ts4.8/process.d.ts +1485 -0
  85. package/public/types/node/ts4.8/querystring.d.ts +134 -0
  86. package/public/types/node/ts4.8/readline/promises.d.ts +146 -0
  87. package/public/types/node/ts4.8/readline.d.ts +656 -0
  88. package/public/types/node/ts4.8/stream/consumers.d.ts +15 -0
  89. package/public/types/node/ts4.8/stream/promises.d.ts +45 -0
  90. package/public/types/node/ts4.8/stream/web.d.ts +333 -0
  91. package/public/types/node/ts4.8/stream.d.ts +1343 -0
  92. package/public/types/node/ts4.8/string_decoder.d.ts +70 -0
  93. package/public/types/node/ts4.8/test.d.ts +377 -0
  94. package/public/types/node/ts4.8/timers/promises.d.ts +71 -0
  95. package/public/types/node/ts4.8/timers.d.ts +97 -0
  96. package/public/types/node/ts4.8/tls.d.ts +1031 -0
  97. package/public/types/node/ts4.8/trace_events.d.ts +174 -0
  98. package/public/types/node/ts4.8/tty.d.ts +209 -0
  99. package/public/types/node/ts4.8/url.d.ts +900 -0
  100. package/public/types/node/ts4.8/util.d.ts +1853 -0
  101. package/public/types/node/ts4.8/v8.d.ts +399 -0
  102. package/public/types/node/ts4.8/vm.d.ts +512 -0
  103. package/public/types/node/ts4.8/wasi.d.ts +161 -0
  104. package/public/types/node/ts4.8/worker_threads.d.ts +692 -0
  105. package/public/types/node/ts4.8/zlib.d.ts +520 -0
  106. package/public/types/node/tty.d.ts +5 -3
  107. package/public/types/node/url.d.ts +81 -39
  108. package/public/types/node/util.d.ts +269 -13
  109. package/public/types/node/v8.d.ts +22 -4
  110. package/public/types/node/vm.d.ts +7 -5
  111. package/public/types/node/wasi.d.ts +2 -2
  112. package/public/types/node/worker_threads.d.ts +51 -11
  113. package/public/types/node/zlib.d.ts +2 -2
  114. package/public/types/node-red/func.d.ts +26 -17
  115. package/public/vendor/ace/worker-jsonata.js +1 -1
  116. package/public/vendor/monaco/dist/{fa2cc0ab9f0bec2b3365.ttf → 0c718f5b7d2bce997c5f.ttf} +0 -0
  117. package/public/vendor/monaco/dist/css.worker.js +1 -1
  118. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
  119. package/public/vendor/monaco/dist/editor.js +1 -29
  120. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +2 -2
  121. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  122. package/public/vendor/monaco/dist/html.worker.js +1 -1
  123. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
  124. package/public/vendor/monaco/dist/json.worker.js +1 -1
  125. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
  126. package/public/vendor/monaco/dist/locale/cs.js +324 -106
  127. package/public/vendor/monaco/dist/locale/de.js +336 -118
  128. package/public/vendor/monaco/dist/locale/es.js +329 -111
  129. package/public/vendor/monaco/dist/locale/fr.js +334 -116
  130. package/public/vendor/monaco/dist/locale/it.js +327 -109
  131. package/public/vendor/monaco/dist/locale/ja.js +329 -111
  132. package/public/vendor/monaco/dist/locale/ko.js +330 -112
  133. package/public/vendor/monaco/dist/locale/pl.js +329 -111
  134. package/public/vendor/monaco/dist/locale/pt-br.js +329 -111
  135. package/public/vendor/monaco/dist/locale/qps-ploc.js +330 -112
  136. package/public/vendor/monaco/dist/locale/ru.js +331 -113
  137. package/public/vendor/monaco/dist/locale/tr.js +329 -111
  138. package/public/vendor/monaco/dist/locale/zh-hans.js +331 -113
  139. package/public/vendor/monaco/dist/locale/zh-hant.js +331 -113
  140. package/public/vendor/monaco/dist/ts.worker.js +2 -2
  141. package/public/vendor/vendor.js +1 -1
  142. package/public/vendor/monaco/dist/7064e66c3890a12c47b4.ttf +0 -0
  143. /package/public/red/tours/{images → 3.1/images}/context-menu.png +0 -0
  144. /package/public/red/tours/{images → 3.1/images}/global-env-vars.png +0 -0
  145. /package/public/red/tours/{images → 3.1/images}/hiding-flows.png +0 -0
  146. /package/public/red/tours/{images → 3.1/images}/locking-flows.png +0 -0
  147. /package/public/red/tours/{images → 3.1/images}/mermaid.png +0 -0
  148. /package/public/red/tours/{images → 3.1/images}/node-help.png +0 -0
  149. /package/public/red/tours/{images → 3.1/images}/tab-changes.png +0 -0
@@ -590,6 +590,8 @@
590
590
  },
591
591
  "nodeCount": "__label__ Node",
592
592
  "nodeCount_plural": "__label__ Nodes",
593
+ "pluginCount": "__count__ Plugin",
594
+ "pluginCount_plural": "__count__ Plugins",
593
595
  "moduleCount": "__count__ Modul verfügbar",
594
596
  "moduleCount_plural": "__count__ Module verfügbar",
595
597
  "inuse": "In Gebrauch",
@@ -614,6 +614,8 @@
614
614
  },
615
615
  "nodeCount": "__label__ node",
616
616
  "nodeCount_plural": "__label__ nodes",
617
+ "pluginCount": "__count__ plugin",
618
+ "pluginCount_plural": "__count__ plugins",
617
619
  "moduleCount": "__count__ module available",
618
620
  "moduleCount_plural": "__count__ modules available",
619
621
  "inuse": "in use",
@@ -924,7 +926,14 @@
924
926
  "date": "timestamp",
925
927
  "jsonata": "expression",
926
928
  "env": "env variable",
927
- "cred": "credential"
929
+ "cred": "credential",
930
+ "conf-types": "config node"
931
+ },
932
+ "date": {
933
+ "format": {
934
+ "timestamp": "milliseconds since epoch",
935
+ "object": "JavaScript Date Object"
936
+ }
928
937
  }
929
938
  },
930
939
  "editableList": {
@@ -924,7 +924,14 @@
924
924
  "date": "horodatage",
925
925
  "jsonata": "expression",
926
926
  "env": "variable d'environnement",
927
- "cred": "identifiant"
927
+ "cred": "identifiant",
928
+ "conf-types": "noeud de configuration"
929
+ },
930
+ "date": {
931
+ "format": {
932
+ "timestamp": "millisecondes depuis l'époque",
933
+ "object": "Objet de date JavaScript"
934
+ }
928
935
  }
929
936
  },
930
937
  "editableList": {
@@ -924,7 +924,14 @@
924
924
  "date": "日時",
925
925
  "jsonata": "JSONata式",
926
926
  "env": "環境変数",
927
- "cred": "認証情報"
927
+ "cred": "認証情報",
928
+ "conf-types": "設定ノード"
929
+ },
930
+ "date": {
931
+ "format": {
932
+ "timestamp": "エポックからの経過ミリ秒",
933
+ "object": "JavaScript日付オブジェクト"
934
+ }
928
935
  }
929
936
  },
930
937
  "editableList": {
@@ -1230,7 +1237,7 @@
1230
1237
  },
1231
1238
  "env-var": {
1232
1239
  "environment": "環境変数",
1233
- "header": "大域環境変数",
1240
+ "header": "グローバル環境変数",
1234
1241
  "revert": "破棄"
1235
1242
  },
1236
1243
  "action-list": {
@@ -1382,7 +1389,7 @@
1382
1389
  "copy-item-edit-url": "要素の編集URLをコピー",
1383
1390
  "move-flow-to-start": "フローを先頭に移動",
1384
1391
  "move-flow-to-end": "フローを末尾に移動",
1385
- "show-global-env": "大域環境変数を表示",
1392
+ "show-global-env": "グローバル環境変数を表示",
1386
1393
  "lock-flow": "フローを固定",
1387
1394
  "unlock-flow": "フローの固定を解除",
1388
1395
  "show-node-help": "ノードのヘルプを表示"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-client",
3
- "version": "3.1.8",
3
+ "version": "4.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,55 @@
1
+ #### 4.0.0-beta.2: Beta Release
2
+
3
+ Editor
4
+
5
+ - Introduce multiplayer feature (#4629) @knolleary
6
+ - Separate the "add new config-node" option into a new (+) button (#4627) @GogoVega
7
+ - Retain Palette categories collapsed and filter to localStorage (#4634) @knolleary
8
+ - Ensure palette filter reapplies and clear up unknown categories (#4637) @knolleary
9
+ - Add support for plugin (only) modules to the palette manager (#4620) @knolleary
10
+ - Update monaco to latest and node types to 18 LTS (#4615) @Steve-Mcl
11
+
12
+ Runtime
13
+
14
+ - Fix handling of subflow config-node select type in sf module (#4643) @knolleary
15
+ - Comms API updates (#4628) @knolleary
16
+ - Add French translations for 4.0.0-beta.1 (#4621) @GogoVega
17
+ - Add Japanese translations for 4.0.0-beta.1 (#4612) @kazuhitoyokoi
18
+
19
+ Nodes
20
+ - Fix change node handling of replacing with boolean (#4639) @knolleary
21
+
22
+ #### 4.0.0-beta.1: Beta Release
23
+
24
+ Editor
25
+
26
+ - Click on id in debug panel highlights node or flow (#4439) @ralphwetzel
27
+ - Support config selection in a subflow env var (#4587) @Steve-Mcl
28
+ - Add timestamp formatting options to TypedInput (#4468) @knolleary
29
+ - Allow RED.view.select to select links (#4553) @lgrkvst
30
+ - Add auto-complete to flow/global/env typedInput types (#4480) @knolleary
31
+ - Improve the appearance of the Node-RED primary header (#4598) @joepavitt
32
+
33
+ Runtime
34
+
35
+ - let settings.httpNodeAuth accept single middleware or array of middlewares (#4572) @kevinGodell
36
+ - Upgrade to JSONata 2.x (#4590) @knolleary
37
+ - Bump minimum version to node 18 (#4571) @knolleary
38
+ - npm: Remove production flag on npm invocation (#4347) @ZJvandeWeg
39
+ - Timer testing fix (#4367) @hlovdal
40
+ - Bump to 4.0.0-dev (#4322) @knolleary
41
+
42
+ Nodes
43
+
44
+ - TCP node - when resetting, if no payload, stay disconnected @dceejay
45
+ - HTML node: add option for collecting attributes and content (#4513) @gorenje
46
+ - let split node specify property to split on, and join auto join correctly (#4386) @dceejay
47
+ - Add RFC4180 compliant mode to CSV node (#4540) @Steve-Mcl
48
+ - Fix change node to return boolean if asked (#4525) @dceejay
49
+ - Let msg.reset reset Tcp request node connection when in stay connected mode (#4406) @dceejay
50
+ - Let debug node status msg length be settable via settings (#4402) @dceejay
51
+ - Feat: Add ability to set headers for WebSocket client (#4436) @marcus-j-davies
52
+
1
53
  #### 3.1.8: Maintenance Release
2
54
 
3
55
  - Add validation and error handling on subflow instance properties (#4632) @knolleary