@node-red/editor-client 3.1.0-beta.2 → 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/en-US/editor.json +1 -0
- package/locales/ja/editor.json +2 -1
- package/package.json +1 -1
- package/public/red/about +35 -0
- package/public/red/red.js +194 -125
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/welcome.js +30 -11
- package/public/types/node/crypto.d.ts +13 -6
- package/public/types/node/dns.d.ts +1 -1
- package/public/types/node/globals.d.ts +1 -1
- package/public/types/node/stream.d.ts +99 -0
- package/public/types/node/test.d.ts +2 -2
- package/public/types/node-red/func.d.ts +2 -3
- package/public/vendor/mermaid/mermaid.min.js +713 -417
- 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 +1 -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 +100 -39
- package/public/vendor/monaco/dist/locale/de.js +100 -39
- package/public/vendor/monaco/dist/locale/es.js +100 -39
- package/public/vendor/monaco/dist/locale/fr.js +100 -39
- package/public/vendor/monaco/dist/locale/it.js +100 -39
- package/public/vendor/monaco/dist/locale/ja.js +101 -40
- package/public/vendor/monaco/dist/locale/ko.js +100 -39
- package/public/vendor/monaco/dist/locale/pl.js +100 -39
- package/public/vendor/monaco/dist/locale/pt-br.js +102 -41
- package/public/vendor/monaco/dist/locale/qps-ploc.js +100 -39
- package/public/vendor/monaco/dist/locale/ru.js +100 -39
- package/public/vendor/monaco/dist/locale/tr.js +100 -39
- package/public/vendor/monaco/dist/locale/zh-hans.js +101 -40
- package/public/vendor/monaco/dist/locale/zh-hant.js +100 -39
- 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/ts.worker.js +6 -1
- package/public/vendor/vendor.js +2 -2
package/locales/ja/editor.json
CHANGED
|
@@ -504,6 +504,7 @@
|
|
|
504
504
|
"unassigned": "未割当",
|
|
505
505
|
"global": "グローバル",
|
|
506
506
|
"workspace": "ワークスペース",
|
|
507
|
+
"editor": "編集ダイアログ",
|
|
507
508
|
"selectAll": "全てのノードを選択",
|
|
508
509
|
"selectNone": "選択を外す",
|
|
509
510
|
"selectAllConnected": "接続されたノードを選択",
|
|
@@ -1203,7 +1204,7 @@
|
|
|
1203
1204
|
"fr": "フランス語",
|
|
1204
1205
|
"ja": "日本語",
|
|
1205
1206
|
"ko": "韓国語",
|
|
1206
|
-
"pt-BR":"ポルトガル語",
|
|
1207
|
+
"pt-BR": "ポルトガル語",
|
|
1207
1208
|
"ru": "ロシア語",
|
|
1208
1209
|
"zh-CN": "中国語(簡体)",
|
|
1209
1210
|
"zh-TW": "中国語(繁体)"
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
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
|
+
|
|
35
|
+
|
|
1
36
|
#### 3.1.0-beta.2: Beta Release
|
|
2
37
|
|
|
3
38
|
Editor
|