@node-red/editor-client 2.2.2 → 3.0.0-beta.1

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 (143) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +44 -14
  3. package/locales/ja/editor.json +50 -17
  4. package/locales/ko/editor.json +5 -2
  5. package/locales/ru/editor.json +14 -11
  6. package/locales/zh-CN/editor.json +14 -11
  7. package/locales/zh-TW/editor.json +14 -11
  8. package/package.json +1 -1
  9. package/public/red/about +77 -0
  10. package/public/red/images/grip-horizontal.svg +1 -0
  11. package/public/red/images/grip.svg +1 -0
  12. package/public/red/keymap.json +5 -1
  13. package/public/red/red.js +2060 -610
  14. package/public/red/red.min.js +2 -2
  15. package/public/red/style.min.css +2 -2
  16. package/public/red/tours/images/continuous-search.png +0 -0
  17. package/public/red/tours/images/debug-path-tooltip.png +0 -0
  18. package/public/red/tours/images/junction-quick-add.png +0 -0
  19. package/public/red/tours/images/junction-slice.gif +0 -0
  20. package/public/red/tours/images/split-wire-with-links.gif +0 -0
  21. package/public/red/tours/welcome.js +65 -99
  22. package/public/types/node/assert.d.ts +5 -1
  23. package/public/types/node/async_hooks.d.ts +4 -1
  24. package/public/types/node/buffer.d.ts +68 -1
  25. package/public/types/node/child_process.d.ts +4 -1
  26. package/public/types/node/cluster.d.ts +4 -1
  27. package/public/types/node/console.d.ts +10 -1
  28. package/public/types/node/crypto.d.ts +6 -3
  29. package/public/types/node/dgram.d.ts +12 -9
  30. package/public/types/node/dns.d.ts +8 -1
  31. package/public/types/node/domain.d.ts +4 -1
  32. package/public/types/node/events.d.ts +5 -1
  33. package/public/types/node/fs.d.ts +10 -7
  34. package/public/types/node/globals.d.ts +140 -7
  35. package/public/types/node/http.d.ts +10 -4
  36. package/public/types/node/http2.d.ts +8 -5
  37. package/public/types/node/https.d.ts +4 -1
  38. package/public/types/node/module.d.ts +5 -1
  39. package/public/types/node/net.d.ts +7 -4
  40. package/public/types/node/os.d.ts +4 -1
  41. package/public/types/node/path.d.ts +5 -1
  42. package/public/types/node/perf_hooks.d.ts +4 -1
  43. package/public/types/node/process.d.ts +6 -2
  44. package/public/types/node/querystring.d.ts +4 -1
  45. package/public/types/node/readline.d.ts +5 -1
  46. package/public/types/node/stream.d.ts +13 -9
  47. package/public/types/node/string_decoder.d.ts +4 -1
  48. package/public/types/node/timers.d.ts +4 -1
  49. package/public/types/node/tls.d.ts +6 -2
  50. package/public/types/node/trace_events.d.ts +4 -1
  51. package/public/types/node/tty.d.ts +4 -1
  52. package/public/types/node/url.d.ts +35 -2
  53. package/public/types/node/util.d.ts +11 -2
  54. package/public/types/node/v8.d.ts +4 -1
  55. package/public/types/node/vm.d.ts +4 -1
  56. package/public/types/node/wasi.d.ts +4 -1
  57. package/public/types/node/worker_threads.d.ts +4 -1
  58. package/public/types/node/zlib.d.ts +4 -1
  59. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +382 -217
  60. package/public/vendor/monaco/dist/ade705761eb7e702770d.ttf +0 -0
  61. package/public/vendor/monaco/dist/css.worker.js +2 -1
  62. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +6 -0
  63. package/public/vendor/monaco/dist/editor.js +2 -5
  64. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +8 -0
  65. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  66. package/public/vendor/monaco/dist/html.worker.js +2 -1
  67. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +6 -0
  68. package/public/vendor/monaco/dist/json.worker.js +2 -1
  69. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +6 -0
  70. package/public/vendor/monaco/dist/locale/cs.js +1550 -1445
  71. package/public/vendor/monaco/dist/locale/de.js +1550 -1445
  72. package/public/vendor/monaco/dist/locale/es.js +1550 -1445
  73. package/public/vendor/monaco/dist/locale/fr.js +1550 -1445
  74. package/public/vendor/monaco/dist/locale/it.js +1550 -1445
  75. package/public/vendor/monaco/dist/locale/ja.js +1550 -1445
  76. package/public/vendor/monaco/dist/locale/ko.js +1550 -1445
  77. package/public/vendor/monaco/dist/locale/pl.js +1550 -1445
  78. package/public/vendor/monaco/dist/locale/pt-br.js +1550 -1445
  79. package/public/vendor/monaco/dist/locale/qps-ploc.js +1550 -1445
  80. package/public/vendor/monaco/dist/locale/ru.js +1550 -1445
  81. package/public/vendor/monaco/dist/locale/tr.js +1550 -1445
  82. package/public/vendor/monaco/dist/locale/zh-hans.js +1550 -1445
  83. package/public/vendor/monaco/dist/locale/zh-hant.js +1550 -1445
  84. package/public/vendor/monaco/dist/theme/ace.json +197 -0
  85. package/public/vendor/monaco/dist/theme/active4d.json +4 -0
  86. package/public/vendor/monaco/dist/theme/all-hallows-eve.json +4 -0
  87. package/public/vendor/monaco/dist/theme/amy.json +4 -0
  88. package/public/vendor/monaco/dist/theme/birds-of-paradise.json +4 -0
  89. package/public/vendor/monaco/dist/theme/blackboard.json +4 -0
  90. package/public/vendor/monaco/dist/theme/brilliance-black.json +4 -0
  91. package/public/vendor/monaco/dist/theme/brilliance-dull.json +4 -0
  92. package/public/vendor/monaco/dist/theme/chrome-devtools.json +4 -0
  93. package/public/vendor/monaco/dist/theme/clouds-midnight.json +4 -0
  94. package/public/vendor/monaco/dist/theme/clouds.json +4 -0
  95. package/public/vendor/monaco/dist/theme/cobalt.json +4 -0
  96. package/public/vendor/monaco/dist/theme/cobalt2.json +859 -0
  97. package/public/vendor/monaco/dist/theme/dawn.json +4 -0
  98. package/public/vendor/monaco/dist/theme/dracula.json +208 -0
  99. package/public/vendor/monaco/dist/theme/dreamweaver.json +4 -0
  100. package/public/vendor/monaco/dist/theme/eiffel.json +4 -0
  101. package/public/vendor/monaco/dist/theme/espresso-libre.json +4 -0
  102. package/public/vendor/monaco/dist/theme/github.json +4 -0
  103. package/public/vendor/monaco/dist/theme/idle.json +4 -0
  104. package/public/vendor/monaco/dist/theme/idlefingers.json +4 -0
  105. package/public/vendor/monaco/dist/theme/iplastic.json +4 -0
  106. package/public/vendor/monaco/dist/theme/katzenmilch.json +4 -0
  107. package/public/vendor/monaco/dist/theme/krtheme.json +4 -0
  108. package/public/vendor/monaco/dist/theme/kuroir-theme.json +4 -0
  109. package/public/vendor/monaco/dist/theme/lazy.json +4 -0
  110. package/public/vendor/monaco/dist/theme/magicwb-amiga.json +4 -0
  111. package/public/vendor/monaco/dist/theme/merbivore-soft.json +4 -0
  112. package/public/vendor/monaco/dist/theme/merbivore.json +4 -0
  113. package/public/vendor/monaco/dist/theme/monoindustrial.json +4 -0
  114. package/public/vendor/monaco/dist/theme/monokai-bright.json +4 -0
  115. package/public/vendor/monaco/dist/theme/monokai.json +4 -0
  116. package/public/vendor/monaco/dist/theme/night-owl.json +4 -0
  117. package/public/vendor/monaco/dist/theme/oceanic-next.json +4 -0
  118. package/public/vendor/monaco/dist/theme/pastels-on-dark.json +4 -0
  119. package/public/vendor/monaco/dist/theme/slush-and-poppies.json +4 -0
  120. package/public/vendor/monaco/dist/theme/solarized-dark.json +4 -0
  121. package/public/vendor/monaco/dist/theme/solarized-light.json +4 -0
  122. package/public/vendor/monaco/dist/theme/spacecadet.json +4 -0
  123. package/public/vendor/monaco/dist/theme/sunburst.json +4 -0
  124. package/public/vendor/monaco/dist/theme/textmate-mac-classic.json +4 -0
  125. package/public/vendor/monaco/dist/theme/tomorrow-night-blue.json +4 -0
  126. package/public/vendor/monaco/dist/theme/tomorrow-night-bright.json +4 -0
  127. package/public/vendor/monaco/dist/theme/tomorrow-night-eighties.json +4 -0
  128. package/public/vendor/monaco/dist/theme/tomorrow-night.json +4 -0
  129. package/public/vendor/monaco/dist/theme/tomorrow.json +4 -0
  130. package/public/vendor/monaco/dist/theme/twilight.json +4 -0
  131. package/public/vendor/monaco/dist/theme/upstream-sunburst.json +4 -0
  132. package/public/vendor/monaco/dist/theme/vibrant-ink.json +4 -0
  133. package/public/vendor/monaco/dist/theme/xcode_default.json +4 -0
  134. package/public/vendor/monaco/dist/theme/zenburnesque.json +4 -0
  135. package/public/vendor/monaco/dist/ts.worker.js +2 -16
  136. package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +6 -0
  137. package/public/vendor/vendor.js +4 -4
  138. package/public/red/images/grip-horizontal.png +0 -0
  139. package/public/red/images/grip.png +0 -0
  140. package/public/red/tours/images/delete-repair.gif +0 -0
  141. package/public/red/tours/images/detach-repair.gif +0 -0
  142. package/public/red/tours/images/slice.gif +0 -0
  143. package/public/red/tours/images/subflow-labels.png +0 -0
@@ -0,0 +1,197 @@
1
+ {
2
+ "base": "vs",
3
+ "inherit": true,
4
+ "rules": [
5
+ {
6
+ "token": "",
7
+ "foreground": "5c6773"
8
+ },
9
+ {
10
+ "token": "invalid",
11
+ "foreground": "ff3333"
12
+ },
13
+ {
14
+ "token": "emphasis",
15
+ "fontStyle": "italic"
16
+ },
17
+ {
18
+ "token": "strong",
19
+ "fontStyle": "bold"
20
+ },
21
+ {
22
+ "token": "variable",
23
+ "foreground": "5c6773"
24
+ },
25
+ {
26
+ "token": "variable.predefined",
27
+ "foreground": "5c6773"
28
+ },
29
+ {
30
+ "token": "constant",
31
+ "foreground": "f08c36"
32
+ },
33
+ {
34
+ "token": "comment",
35
+ "foreground": "abb0b6",
36
+ "fontStyle": "italic"
37
+ },
38
+ {
39
+ "token": "number",
40
+ "foreground": "f08c36"
41
+ },
42
+ {
43
+ "token": "number.hex",
44
+ "foreground": "f08c36"
45
+ },
46
+ {
47
+ "token": "regexp",
48
+ "foreground": "4dbf99"
49
+ },
50
+ {
51
+ "token": "annotation",
52
+ "foreground": "41a6d9"
53
+ },
54
+ {
55
+ "token": "type",
56
+ "foreground": "41a6d9"
57
+ },
58
+ {
59
+ "token": "delimiter",
60
+ "foreground": "5c6773"
61
+ },
62
+ {
63
+ "token": "delimiter.html",
64
+ "foreground": "5c6773"
65
+ },
66
+ {
67
+ "token": "delimiter.xml",
68
+ "foreground": "5c6773"
69
+ },
70
+ {
71
+ "token": "tag",
72
+ "foreground": "e7c547"
73
+ },
74
+ {
75
+ "token": "tag.id.jade",
76
+ "foreground": "e7c547"
77
+ },
78
+ {
79
+ "token": "tag.class.jade",
80
+ "foreground": "e7c547"
81
+ },
82
+ {
83
+ "token": "meta.scss",
84
+ "foreground": "e7c547"
85
+ },
86
+ {
87
+ "token": "metatag",
88
+ "foreground": "e7c547"
89
+ },
90
+ {
91
+ "token": "metatag.content.html",
92
+ "foreground": "86b300"
93
+ },
94
+ {
95
+ "token": "metatag.html",
96
+ "foreground": "e7c547"
97
+ },
98
+ {
99
+ "token": "metatag.xml",
100
+ "foreground": "e7c547"
101
+ },
102
+ {
103
+ "token": "metatag.php",
104
+ "fontStyle": "bold"
105
+ },
106
+ {
107
+ "token": "key",
108
+ "foreground": "41a6d9"
109
+ },
110
+ {
111
+ "token": "string.key.json",
112
+ "foreground": "41a6d9"
113
+ },
114
+ {
115
+ "token": "string.value.json",
116
+ "foreground": "86b300"
117
+ },
118
+ {
119
+ "token": "attribute.name",
120
+ "foreground": "f08c36"
121
+ },
122
+ {
123
+ "token": "attribute.value",
124
+ "foreground": "0451A5"
125
+ },
126
+ {
127
+ "token": "attribute.value.number",
128
+ "foreground": "abb0b6"
129
+ },
130
+ {
131
+ "token": "attribute.value.unit",
132
+ "foreground": "86b300"
133
+ },
134
+ {
135
+ "token": "attribute.value.html",
136
+ "foreground": "86b300"
137
+ },
138
+ {
139
+ "token": "attribute.value.xml",
140
+ "foreground": "86b300"
141
+ },
142
+ {
143
+ "token": "string",
144
+ "foreground": "86b300"
145
+ },
146
+ {
147
+ "token": "string.html",
148
+ "foreground": "86b300"
149
+ },
150
+ {
151
+ "token": "string.sql",
152
+ "foreground": "86b300"
153
+ },
154
+ {
155
+ "token": "string.yaml",
156
+ "foreground": "86b300"
157
+ },
158
+ {
159
+ "token": "keyword",
160
+ "foreground": "f2590c"
161
+ },
162
+ {
163
+ "token": "keyword.json",
164
+ "foreground": "f2590c"
165
+ },
166
+ {
167
+ "token": "keyword.flow",
168
+ "foreground": "f2590c"
169
+ },
170
+ {
171
+ "token": "keyword.flow.scss",
172
+ "foreground": "f2590c"
173
+ },
174
+ {
175
+ "token": "operator.scss",
176
+ "foreground": "666666"
177
+ },
178
+ {
179
+ "token": "operator.sql",
180
+ "foreground": "778899"
181
+ },
182
+ {
183
+ "token": "operator.swift",
184
+ "foreground": "666666"
185
+ },
186
+ {
187
+ "token": "predefined.sql",
188
+ "foreground": "FF00FF"
189
+ }
190
+ ],
191
+ "colors": {
192
+ "editor.background": "#fafafa",
193
+ "editor.foreground": "#5c6773",
194
+ "editorIndentGuide.background": "#ecebec",
195
+ "editorIndentGuide.activeBackground": "#e0e0e0"
196
+ }
197
+ }
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "background": "e2e9ff5e",
7
11
  "token": "text.html source.active4d"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "000000",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "ffffff",
7
11
  "background": "434242",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "200020",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "404080",
7
11
  "background": "200020",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "372725",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "e6e1c4",
7
11
  "background": "322323",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "0C1021",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "aeaeae",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "0D0D0DFA",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "000000",
7
11
  "background": "ffffff",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "050505FA",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "000000",
7
11
  "background": "ffffff",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "c41a16",
7
11
  "token": "string"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "191919",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "3c403b",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "bcc8ba",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "002240",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "e1efff",
7
11
  "token": "punctuation - (punctuation.definition.string || punctuation.definition.comment)"