@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
|
@@ -17,7 +17,7 @@ export default {
|
|
|
17
17
|
"en-US": "Context Menu",
|
|
18
18
|
"ja": "コンテキストメニュー"
|
|
19
19
|
},
|
|
20
|
-
image: 'images/context-menu.png',
|
|
20
|
+
image: '3.0/images/context-menu.png',
|
|
21
21
|
description: {
|
|
22
22
|
"en-US": `<p>The editor now has its own context menu when you
|
|
23
23
|
right-click in the workspace.</p>
|
|
@@ -32,7 +32,7 @@ export default {
|
|
|
32
32
|
"en-US": "Wire Junctions",
|
|
33
33
|
"ja": "分岐点をワイヤーに追加"
|
|
34
34
|
},
|
|
35
|
-
image: 'images/junction-slice.gif',
|
|
35
|
+
image: '3.0/images/junction-slice.gif',
|
|
36
36
|
description: {
|
|
37
37
|
"en-US": `<p>To make it easier to route wires around your flows,
|
|
38
38
|
it is now possible to add junction nodes that give
|
|
@@ -48,7 +48,7 @@ export default {
|
|
|
48
48
|
"en-US": "Wire Junctions",
|
|
49
49
|
"ja": "分岐点をワイヤーに追加"
|
|
50
50
|
},
|
|
51
|
-
image: 'images/junction-quick-add.png',
|
|
51
|
+
image: '3.0/images/junction-quick-add.png',
|
|
52
52
|
description: {
|
|
53
53
|
"en-US": `<p>Junctions can also be added using the quick-add dialog.</p>
|
|
54
54
|
<p>The dialog is opened by holding the Ctrl (or Cmd) key when
|
|
@@ -62,7 +62,7 @@ export default {
|
|
|
62
62
|
"en-US": "Debug Path Tooltip",
|
|
63
63
|
"ja": "デバッグパスのツールチップ"
|
|
64
64
|
},
|
|
65
|
-
image: 'images/debug-path-tooltip.png',
|
|
65
|
+
image: '3.0/images/debug-path-tooltip.png',
|
|
66
66
|
description: {
|
|
67
67
|
"en-US": `<p>When hovering over a node name in the Debug sidebar, a
|
|
68
68
|
new tooltip shows the full location of the node.</p>
|
|
@@ -81,7 +81,7 @@ export default {
|
|
|
81
81
|
"en-US": "Continuous Search",
|
|
82
82
|
"ja": "連続した検索"
|
|
83
83
|
},
|
|
84
|
-
image: 'images/continuous-search.png',
|
|
84
|
+
image: '3.0/images/continuous-search.png',
|
|
85
85
|
description: {
|
|
86
86
|
"en-US": `<p>When searching for things in the editor, a new toolbar in
|
|
87
87
|
the workspace provides options to quickly jump between
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"en-US": "New wiring actions",
|
|
95
95
|
"ja": "新しいワイヤー操作"
|
|
96
96
|
},
|
|
97
|
-
image: "images/split-wire-with-links.gif",
|
|
97
|
+
image: "3.0/images/split-wire-with-links.gif",
|
|
98
98
|
description: {
|
|
99
99
|
"en-US": `<p>A new action has been added that will replace a wire with a pair of connected Link nodes:</p>
|
|
100
100
|
<ul>
|
|
Binary file
|
|
Binary file
|
|
@@ -1,15 +1,90 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
version: "3.1.0-beta.
|
|
2
|
+
version: "3.1.0-beta.3",
|
|
3
3
|
steps: [
|
|
4
4
|
{
|
|
5
5
|
titleIcon: "fa fa-map-o",
|
|
6
6
|
title: {
|
|
7
|
-
"en-US": "Welcome to Node-RED 3.1 Beta
|
|
8
|
-
"ja": "Node-RED 3.1 ベータ
|
|
7
|
+
"en-US": "Welcome to Node-RED 3.1 Beta 3!",
|
|
8
|
+
"ja": "Node-RED 3.1 ベータ3へようこそ!"
|
|
9
9
|
},
|
|
10
10
|
description: {
|
|
11
|
-
"en-US": "<p>This is the
|
|
12
|
-
"ja": "<p>これは3.1.0
|
|
11
|
+
"en-US": "<p>This is the third beta release for 3.1.0. This is mostly a bug fix release, so you can skip this tour if you've tried the other betas.</p><p>If not, stick around to see what's new in Node-RED 3.1.</p>",
|
|
12
|
+
"ja": "<p>これは3.1.0の3回目のベータリリースです。不具合修正のリリースのため、もし他のベータ版を試したことがある場合は、このツアーを読み飛ばしてもかまいません。</p><p>そうでない場合は、Node-RED 3.1の新機能を確認してください。</p>"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
title: {
|
|
17
|
+
"en-US": "New ways to work with groups",
|
|
18
|
+
"ja": "グループの新たな操作方法"
|
|
19
|
+
},
|
|
20
|
+
description: {
|
|
21
|
+
"en-US": `<p>We have changed how you interact with groups in the editor.</p>
|
|
22
|
+
<ul>
|
|
23
|
+
<li>They don't get in the way when clicking on a node</li>
|
|
24
|
+
<li>They can be reordered using the Moving Forwards and Move Backwards actions</li>
|
|
25
|
+
<li>Multiple nodes can be dragged into a group in one go</li>
|
|
26
|
+
<li>Holding <code>Alt</code> when dragging a node will *remove* it from its group</li>
|
|
27
|
+
</ul>`,
|
|
28
|
+
"ja": `<p>エディタ上のグループの操作が変更されました。</p>
|
|
29
|
+
<ul>
|
|
30
|
+
<li>グループ内のノードをクリックする時に、グループが邪魔をすることが無くなりました。</li>
|
|
31
|
+
<li>「前面へ移動」と「背面へ移動」の動作を用いて、複数のグループの表示順序を変えることができます。</li>
|
|
32
|
+
<li>グループ内へ一度に複数のノードをドラッグできるようになりました。</li>
|
|
33
|
+
<li><code>Alt</code> を押したまま、グループ内のノードをドラッグすると、そのグループから *除く* ことができます。</li>
|
|
34
|
+
</ul>`
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
title: {
|
|
39
|
+
"en-US": "Change notification on tabs",
|
|
40
|
+
"ja": "タブ上の変更通知"
|
|
41
|
+
},
|
|
42
|
+
image: 'images/tab-changes.png',
|
|
43
|
+
description: {
|
|
44
|
+
"en-US": `<p>When a tab contains undeployed changes it now shows the
|
|
45
|
+
same style of change icon used by nodes.</p>
|
|
46
|
+
<p>This will make it much easier to track down changes when you're
|
|
47
|
+
working across multiple flows.</p>`,
|
|
48
|
+
"ja": `<p>タブ内にデプロイされていない変更が存在する時は、ノードと同じスタイルで変更の印が表示されるようになりました。</p>
|
|
49
|
+
<p>これによって複数のフローを編集している時に、変更を見つけるのが簡単になりました。</p>`
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
title: {
|
|
54
|
+
"en-US": "A bigger canvas to work with",
|
|
55
|
+
"ja": "より広くなった作業キャンバス"
|
|
56
|
+
},
|
|
57
|
+
description: {
|
|
58
|
+
"en-US": `<p>The default canvas size has been increased so you can fit more
|
|
59
|
+
into one flow.</p>
|
|
60
|
+
<p>We still recommend using tools such as subflows and Link Nodes to help
|
|
61
|
+
keep things organised, but now you have more room to work in.</p>`,
|
|
62
|
+
"ja": `<p>標準のキャンバスが広くなったため、1つのフローに沢山のものを含めることができるようになりました。</p>
|
|
63
|
+
<p>引き続き、サブフローやリンクノードなどの方法を用いて整理することをお勧めしますが、作業できる場所が増えました。</p>`
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
title: {
|
|
68
|
+
"en-US": "Finding help",
|
|
69
|
+
"ja": "ヘルプを見つける"
|
|
70
|
+
},
|
|
71
|
+
image: 'images/node-help.png',
|
|
72
|
+
description: {
|
|
73
|
+
"en-US": `<p>All node edit dialogs now include a link to that node's help
|
|
74
|
+
in the footer.</p>
|
|
75
|
+
<p>Clicking it will open up the Help sidebar showing the help for that node.</p>`,
|
|
76
|
+
"ja": `<p>全てのノードの編集ダイアログの下に、ノードのヘルプへのリンクが追加されました。</p>
|
|
77
|
+
<p>これをクリックすると、ノードのヘルプサイドバーが表示されます。</p>`
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
title: {
|
|
82
|
+
"en-US": "And lots more...",
|
|
83
|
+
"ja": "そしてさらに沢山あります..."
|
|
84
|
+
},
|
|
85
|
+
description: {
|
|
86
|
+
"en-US": `<p>Of course we have everything from 3.1.0-beta.1 as well....</p>`,
|
|
87
|
+
"ja": `<p>もちろん3.1.0 ベータ1の全ての機能があります....</p>`
|
|
13
88
|
}
|
|
14
89
|
},
|
|
15
90
|
{
|
|
@@ -78,13 +153,13 @@ export default {
|
|
|
78
153
|
{
|
|
79
154
|
title: {
|
|
80
155
|
"en-US": "Adding Mermaid Diagrams",
|
|
81
|
-
"ja": "Mermaid
|
|
156
|
+
"ja": "Mermaid図を追加"
|
|
82
157
|
},
|
|
83
158
|
image: 'images/mermaid.png',
|
|
84
159
|
description: {
|
|
85
160
|
"en-US": `<p>You can also add <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> diagrams directly into your node or flow descriptions.</p>
|
|
86
161
|
<p>This gives you much richer options for documenting your flows.</p>`,
|
|
87
|
-
"ja": `<p>ノードやフローの説明に、<a href="https://github.com/mermaid-js/mermaid">Mermaid</a
|
|
162
|
+
"ja": `<p>ノードやフローの説明に、<a href="https://github.com/mermaid-js/mermaid">Mermaid</a>図を直接追加することもできます。</p>
|
|
88
163
|
<p>これによって、フローを説明する文書作成の選択肢がより多くなります。</p>`
|
|
89
164
|
},
|
|
90
165
|
},
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
/* NOTE: Do not edit directly! This file is generated using `npm run update-types` in https://github.com/Steve-Mcl/monaco-editor-esm-i18n */
|
|
3
|
+
|
|
4
|
+
declare module 'assert/strict' {
|
|
5
|
+
import { strict } from 'node:assert';
|
|
6
|
+
export = strict;
|
|
7
|
+
}
|
|
8
|
+
declare module 'node:assert/strict' {
|
|
9
|
+
import { strict } from 'node:assert';
|
|
10
|
+
export = strict;
|
|
11
|
+
}
|