@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
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs-dark",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"background": "2E3440",
|
|
7
|
+
"token": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"foreground": "616e88",
|
|
11
|
+
"token": "comment"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"foreground": "a3be8c",
|
|
15
|
+
"token": "string"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"foreground": "b48ead",
|
|
19
|
+
"token": "constant.numeric"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"foreground": "81a1c1",
|
|
23
|
+
"token": "constant.language"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"foreground": "81a1c1",
|
|
27
|
+
"token": "keyword"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"foreground": "81a1c1",
|
|
31
|
+
"token": "storage"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"foreground": "81a1c1",
|
|
35
|
+
"token": "storage.type"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"foreground": "8fbcbb",
|
|
39
|
+
"token": "entity.name.class"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"foreground": "8fbcbb",
|
|
43
|
+
"fontStyle": " bold",
|
|
44
|
+
"token": "entity.other.inherited-class"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"foreground": "88c0d0",
|
|
48
|
+
"token": "entity.name.function"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"foreground": "81a1c1",
|
|
52
|
+
"token": "entity.name.tag"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"foreground": "8fbcbb",
|
|
56
|
+
"token": "entity.other.attribute-name"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"foreground": "88c0d0",
|
|
60
|
+
"token": "support.function"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"foreground": "f8f8f0",
|
|
64
|
+
"background": "f92672",
|
|
65
|
+
"token": "invalid"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"foreground": "f8f8f0",
|
|
69
|
+
"background": "ae81ff",
|
|
70
|
+
"token": "invalid.deprecated"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"foreground": "b48ead",
|
|
74
|
+
"token": "constant.color.other.rgb-value"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"foreground": "ebcb8b",
|
|
78
|
+
"token": "constant.character.escape"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"foreground": "8fbcbb",
|
|
82
|
+
"token": "variable.other.constant"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"colors": {
|
|
86
|
+
"editor.foreground": "#D8DEE9",
|
|
87
|
+
"editor.background": "#2E3440",
|
|
88
|
+
"editor.selectionBackground": "#434C5ECC",
|
|
89
|
+
"editor.lineHighlightBackground": "#3B4252",
|
|
90
|
+
"editorCursor.foreground": "#D8DEE9",
|
|
91
|
+
"editorWhitespace.foreground": "#434C5ECC"
|
|
92
|
+
}
|
|
93
|
+
}
|