@node-red/editor-client 3.1.0-beta.1 → 3.1.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.
- package/locales/de/editor.json +2 -0
- package/locales/en-US/editor.json +9 -2
- package/locales/fr/editor.json +1238 -0
- package/locales/fr/infotips.json +23 -0
- package/locales/fr/jsonata.json +274 -0
- package/locales/ja/editor.json +15 -3
- package/locales/ko/editor.json +233 -31
- package/locales/pt-BR/editor.json +1208 -0
- package/locales/pt-BR/infotips.json +23 -0
- package/locales/pt-BR/jsonata.json +274 -0
- package/locales/ru/editor.json +2 -0
- package/locales/zh-CN/editor.json +1175 -1049
- package/locales/zh-TW/editor.json +3 -0
- package/package.json +1 -1
- package/public/red/about +85 -1
- package/public/red/red.js +1250 -1092
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/3.0/welcome.js +6 -6
- package/public/red/tours/images/node-help.png +0 -0
- package/public/red/tours/images/tab-changes.png +0 -0
- package/public/red/tours/welcome.js +82 -7
- package/public/types/node/assert/strict.d.ts +11 -0
- package/public/types/node/assert.d.ts +898 -64
- package/public/types/node/async_hooks.d.ts +362 -94
- package/public/types/node/buffer.d.ts +2158 -14
- package/public/types/node/child_process.d.ts +1109 -257
- package/public/types/node/cluster.d.ts +349 -200
- package/public/types/node/console.d.ts +313 -43
- package/public/types/node/crypto.d.ts +3338 -658
- package/public/types/node/dgram.d.ts +459 -58
- package/public/types/node/diagnostics_channel.d.ts +155 -0
- package/public/types/node/dns/promises.d.ts +371 -0
- package/public/types/node/dns.d.ts +532 -265
- package/public/types/node/domain.d.ts +159 -16
- package/public/types/node/events.d.ts +589 -30
- package/public/types/node/fs/promises.d.ts +1097 -0
- package/public/types/node/fs.d.ts +2484 -958
- package/public/types/node/globals.d.ts +44 -504
- package/public/types/node/http.d.ts +1156 -145
- package/public/types/node/http2.d.ts +1610 -470
- package/public/types/node/https.d.ts +462 -72
- package/public/types/node/module.d.ts +72 -13
- package/public/types/node/net.d.ts +663 -131
- package/public/types/node/os.d.ts +238 -25
- package/public/types/node/path.d.ts +57 -23
- package/public/types/node/perf_hooks.d.ts +424 -112
- package/public/types/node/process.d.ts +1261 -193
- package/public/types/node/querystring.d.ts +107 -7
- package/public/types/node/readline.d.ts +443 -74
- package/public/types/node/stream/consumers.d.ts +15 -0
- package/public/types/node/stream/promises.d.ts +45 -0
- package/public/types/node/stream/web.d.ts +395 -0
- package/public/types/node/stream.d.ts +1180 -177
- package/public/types/node/string_decoder.d.ts +57 -0
- package/public/types/node/test.d.ts +193 -0
- package/public/types/node/timers/promises.d.ts +96 -0
- package/public/types/node/timers.d.ts +87 -12
- package/public/types/node/tls.d.ts +457 -222
- package/public/types/node/trace_events.d.ts +107 -10
- package/public/types/node/tty.d.ts +158 -23
- package/public/types/node/url.d.ts +734 -28
- package/public/types/node/util.d.ts +1542 -164
- package/public/types/node/v8.d.ts +261 -73
- package/public/types/node/vm.d.ts +384 -32
- package/public/types/node/wasi.d.ts +92 -23
- package/public/types/node/worker_threads.d.ts +531 -123
- package/public/types/node/zlib.d.ts +216 -63
- package/public/types/node-red/func.d.ts +2 -3
- package/public/vendor/jquery/css/base/images/ui-icons_444444_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_555555_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777620_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777777_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_cc0000_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_ffffff_256x240.png +0 -0
- package/public/vendor/jquery/css/base/jquery-ui.min.css +4 -4
- package/public/vendor/mermaid/mermaid.min.js +713 -417
- package/public/vendor/monaco/dist/{ade705761eb7e702770d.ttf → 7064e66c3890a12c47b4.ttf} +0 -0
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.js +29 -1
- package/public/vendor/monaco/dist/editor.js.LICENSE.txt +5 -1
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/fa2cc0ab9f0bec2b3365.ttf +0 -0
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +393 -84
- package/public/vendor/monaco/dist/locale/de.js +397 -88
- package/public/vendor/monaco/dist/locale/es.js +392 -83
- package/public/vendor/monaco/dist/locale/fr.js +401 -92
- package/public/vendor/monaco/dist/locale/it.js +399 -90
- package/public/vendor/monaco/dist/locale/ja.js +411 -102
- package/public/vendor/monaco/dist/locale/ko.js +398 -89
- package/public/vendor/monaco/dist/locale/pl.js +396 -87
- package/public/vendor/monaco/dist/locale/pt-br.js +397 -88
- package/public/vendor/monaco/dist/locale/qps-ploc.js +1643 -1334
- package/public/vendor/monaco/dist/locale/ru.js +398 -89
- package/public/vendor/monaco/dist/locale/tr.js +400 -91
- package/public/vendor/monaco/dist/locale/zh-hans.js +403 -94
- package/public/vendor/monaco/dist/locale/zh-hant.js +395 -86
- package/public/vendor/monaco/dist/theme/forge-dark.json +213 -0
- package/public/vendor/monaco/dist/theme/forge-light.json +227 -0
- package/public/vendor/monaco/dist/theme/forge.json +236 -0
- package/public/vendor/monaco/dist/theme/github-dark.json +348 -0
- package/public/vendor/monaco/dist/theme/github-light.json +348 -0
- package/public/vendor/monaco/dist/theme/nord.json +93 -0
- package/public/vendor/monaco/dist/ts.worker.js +6 -1
- package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +14 -6
- package/public/vendor/vendor.js +6 -13
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,5 +1,89 @@
|
|
|
1
|
-
#### 3.1.0-beta.
|
|
1
|
+
#### 3.1.0-beta.3: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Select the item that is specified in a deep link URL (#4113) @Steve-Mcl
|
|
6
|
+
- Update to Monaco 0.38.0 (#4189) @Steve-Mcl
|
|
7
|
+
- Place subflow outputs/inputs relative to current view (#4183) @knolleary
|
|
8
|
+
- Enable RED.view.select to select group by id (#4184) @knolleary
|
|
9
|
+
- Combine existing env vars when merging groups (#4182) @knolleary
|
|
10
|
+
- Avoid creating empty global-config node if not needed (#4153) @knolleary
|
|
11
|
+
- Fix group selection when using lasso (#4108) @knolleary
|
|
12
|
+
- Use editor path in generating localStorage keys (#4151) @mw75
|
|
13
|
+
- Ensure no node credentials are included when exporting to clipboard (#4112) @knolleary
|
|
14
|
+
- Fix jsonata expression test ui (#4097) @knolleary
|
|
15
|
+
- Fix search button in palette popover (#4096) @knolleary
|
|
16
|
+
|
|
17
|
+
Runtime
|
|
18
|
+
|
|
19
|
+
- Allow options object on each httpStatic configuration (#4109) @kevinGodell
|
|
20
|
+
- Ensure non-zero exit codes for errors (#4181) @knolleary
|
|
21
|
+
- Ensure external modules are installed synchronously (#4180) @knolleary
|
|
22
|
+
- Update dependecies include got (#4155) @knolleary
|
|
23
|
+
- Add Japanese translations for v3.1 beta.2 (#4158) @kazuhitoyokoi
|
|
24
|
+
- Ensure express server options are applied consistently (#4178) @knolleary
|
|
25
|
+
- Remove version info from theme endpoint (#4179) @knolleary
|
|
26
|
+
- Add Japanese translations for welcome tour of 3.1.0 beta.2 (#4145) @kazuhitoyokoi
|
|
27
|
+
- Added SHA-256 and SHA-512-256 digest authentication (#4100) @sroebert
|
|
28
|
+
- Add "timers" types to known types (#4103) @Steve-Mcl
|
|
29
|
+
|
|
30
|
+
Nodes
|
|
31
|
+
|
|
32
|
+
- Allow Catch/Status nodes to be scoped to their group (#4185) @NetHans
|
|
33
|
+
- MQTT: Option to disable MQTT topic unsubscribe on disconnect (#4078) @flying7eleven
|
|
34
|
+
|
|
2
35
|
|
|
36
|
+
#### 3.1.0-beta.2: Beta Release
|
|
37
|
+
|
|
38
|
+
Editor
|
|
39
|
+
|
|
40
|
+
- NEW: Add change icon to tabs (#4068) @knolleary
|
|
41
|
+
- NEW: Complete overhaul of Group UX (#4079) @knolleary
|
|
42
|
+
- NEW: Add link to node help in node edit dialog footer (#4065) @knolleary
|
|
43
|
+
- NEW: Added editor feature for connecting multiple nodes to single node (#4051) @sonntam
|
|
44
|
+
- NEW: Increase workspace size to 8000x8000 (#4094) @knolleary
|
|
45
|
+
- Ensure node buttons are redrawn when flow lock state is changed (#4091) @knolleary
|
|
46
|
+
- Prevent loops being created with junction nodes (#4087) @knolleary
|
|
47
|
+
- Prevent opening locked node's edit dialog (#4069) @knolleary
|
|
48
|
+
- Reverse direction of tab scroll to expected direction (#4064) @knolleary
|
|
49
|
+
- Add cancel operation to editableList (#4077) @HiroyasuNishiyama
|
|
50
|
+
- Apply Mermaid diagram for project settings UI (#4054) @kazuhitoyokoi
|
|
51
|
+
- Add tooltip for show/hide button on info sidebar (#4050) @kazuhitoyokoi
|
|
52
|
+
- Fix align nodes on locked tab (#4072) @HiroyasuNishiyama
|
|
53
|
+
- Fix importing connected link nodes into a subflow (#4082) @knolleary
|
|
54
|
+
- Fix to add empty marker to empty group (#4060) @HiroyasuNishiyama
|
|
55
|
+
- Fix image URLs for v3.0 tour (#4053) @kazuhitoyokoi
|
|
56
|
+
- Show scrollbar in notification dialog only when needed (#4048) @kazuhitoyokoi
|
|
57
|
+
- Update-monaco-and-typings (#4089) @Steve-Mcl
|
|
58
|
+
- Update jquery UI (#4088) @knolleary
|
|
59
|
+
- Support i18n of lock/unlock buttons in flow property UI (#4049) @kazuhitoyokoi
|
|
60
|
+
- Translation kr (#3895) @hae-iotplatform
|
|
61
|
+
- Translation zhcn (!!请懂中文的帮忙review) (#3952) @cliyr
|
|
62
|
+
- Add French translation of nodes (#3964) @GogoVega
|
|
63
|
+
- Add French translation (#3962) @GogoVega
|
|
64
|
+
- Portuguese Brazilian (pt-BR) translation (#3804) @FabsMuller
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
Runtime
|
|
68
|
+
|
|
69
|
+
- NEW: Generate stable ids for subflow instance internal nodes (#4093) @knolleary
|
|
70
|
+
- NEW: Change default file name to flows.json in project feature (#4073) @kazuhitoyokoi
|
|
71
|
+
- NEW: Deprecate synchronous access to jsonata (#4090) @knolleary
|
|
72
|
+
- Add Node 18 to test matrix (#4084) @knolleary
|
|
73
|
+
- Bump minimum nodejs version supported to match documented value (#4086) @knolleary
|
|
74
|
+
- Update monaco docs link in settings.js (#4075) @Steve-Mcl
|
|
75
|
+
- Remove duplicated messages in the message catalog (#4066) @kazuhitoyokoi
|
|
76
|
+
- Ensure errors in preDeliver callback are handled (#3911) @knolleary
|
|
77
|
+
- Fix "EADDRINUSE" error (#4046) @bggbr
|
|
78
|
+
|
|
79
|
+
Nodes
|
|
80
|
+
|
|
81
|
+
- Link Call: Clear link-call timeouts when node is closed (#4085) @knolleary
|
|
82
|
+
- Join: ensure inflight status is cleared when in auto mode (#4083) @knolleary
|
|
83
|
+
- File Out: Fix extra newline append for multipart file write (#3915) @dceejay
|
|
84
|
+
- Add validators for complete and link call nodes (#4056) @kazuhitoyokoi
|
|
85
|
+
|
|
86
|
+
#### 3.1.0-beta.1: Beta Release
|
|
3
87
|
|
|
4
88
|
Editor
|
|
5
89
|
|