@journeyapps-labs/reactor-mod-editor 1.0.0

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 (170) hide show
  1. package/README.md +10 -0
  2. package/dist/@types/EditorModule.d.ts +7 -0
  3. package/dist/@types/MonacoCommandPalletSearchEngine.d.ts +21 -0
  4. package/dist/@types/actions/ChangeEditorThemeAction.d.ts +9 -0
  5. package/dist/@types/index.d.ts +16 -0
  6. package/dist/@types/languages/languages.d.ts +39 -0
  7. package/dist/@types/languages/logs.d.ts +3 -0
  8. package/dist/@types/providers/EditorThemeProvider.d.ts +14 -0
  9. package/dist/@types/settings/StoredThemesSettings.d.ts +13 -0
  10. package/dist/@types/settings/VimSupportSetting.d.ts +7 -0
  11. package/dist/@types/shortcuts/MonacoShortcut.d.ts +9 -0
  12. package/dist/@types/shortcuts/MonacoShortcutHandler.d.ts +17 -0
  13. package/dist/@types/shortcuts/MonacoShortcutMap.d.ts +83 -0
  14. package/dist/@types/stores/MonacoStore.d.ts +38 -0
  15. package/dist/@types/stores/MonacoThemeStore.d.ts +34 -0
  16. package/dist/@types/stores/keybindings/KeybindingsRegistry.d.ts +46 -0
  17. package/dist/@types/stores/keybindings/MonacoKeybindingStore.d.ts +27 -0
  18. package/dist/@types/stores/keybindings/definitions.d.ts +21 -0
  19. package/dist/@types/stores/keybindings/utils.d.ts +2 -0
  20. package/dist/@types/theme/EditorThemePreferencesWidget.d.ts +26 -0
  21. package/dist/@types/theme/SmartEditorThemePreferencesWidget.d.ts +8 -0
  22. package/dist/@types/theme/UploadVSIXThemeBtnWidget.d.ts +12 -0
  23. package/dist/@types/theme/patchThemeService.d.ts +9 -0
  24. package/dist/@types/theme/theme-utils.d.ts +61 -0
  25. package/dist/@types/theme-reactor/editor-theme-fragment.d.ts +41 -0
  26. package/dist/@types/utils/paths.d.ts +23 -0
  27. package/dist/@types/utils/useEditorStickyHeader.d.ts +8 -0
  28. package/dist/@types/widgets/DualEditorWidget.d.ts +7 -0
  29. package/dist/@types/widgets/EditorWidget.d.ts +15 -0
  30. package/dist/@types/widgets/MonacoEditorWidget.d.ts +10 -0
  31. package/dist/@types/widgets/SimpleEditorWidget.d.ts +8 -0
  32. package/dist/EditorModule.js +73 -0
  33. package/dist/EditorModule.js.map +1 -0
  34. package/dist/MonacoCommandPalletSearchEngine.js +52 -0
  35. package/dist/MonacoCommandPalletSearchEngine.js.map +1 -0
  36. package/dist/actions/ChangeEditorThemeAction.js +43 -0
  37. package/dist/actions/ChangeEditorThemeAction.js.map +1 -0
  38. package/dist/index.js +33 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/languages/languages.js +155 -0
  41. package/dist/languages/languages.js.map +1 -0
  42. package/dist/languages/logs.js +110 -0
  43. package/dist/languages/logs.js.map +1 -0
  44. package/dist/providers/EditorThemeProvider.js +26 -0
  45. package/dist/providers/EditorThemeProvider.js.map +1 -0
  46. package/dist/settings/StoredThemesSettings.js +45 -0
  47. package/dist/settings/StoredThemesSettings.js.map +1 -0
  48. package/dist/settings/VimSupportSetting.js +19 -0
  49. package/dist/settings/VimSupportSetting.js.map +1 -0
  50. package/dist/shortcuts/MonacoShortcut.js +27 -0
  51. package/dist/shortcuts/MonacoShortcut.js.map +1 -0
  52. package/dist/shortcuts/MonacoShortcutHandler.js +119 -0
  53. package/dist/shortcuts/MonacoShortcutHandler.js.map +1 -0
  54. package/dist/shortcuts/MonacoShortcutMap.js +84 -0
  55. package/dist/shortcuts/MonacoShortcutMap.js.map +1 -0
  56. package/dist/stores/MonacoStore.js +119 -0
  57. package/dist/stores/MonacoStore.js.map +1 -0
  58. package/dist/stores/MonacoThemeStore.js +143 -0
  59. package/dist/stores/MonacoThemeStore.js.map +1 -0
  60. package/dist/stores/keybindings/KeybindingsRegistry.js +131 -0
  61. package/dist/stores/keybindings/KeybindingsRegistry.js.map +1 -0
  62. package/dist/stores/keybindings/MonacoKeybindingStore.js +105 -0
  63. package/dist/stores/keybindings/MonacoKeybindingStore.js.map +1 -0
  64. package/dist/stores/keybindings/definitions.js +5 -0
  65. package/dist/stores/keybindings/definitions.js.map +1 -0
  66. package/dist/stores/keybindings/utils.js +12 -0
  67. package/dist/stores/keybindings/utils.js.map +1 -0
  68. package/dist/theme/EditorThemePreferencesWidget.js +160 -0
  69. package/dist/theme/EditorThemePreferencesWidget.js.map +1 -0
  70. package/dist/theme/SmartEditorThemePreferencesWidget.js +62 -0
  71. package/dist/theme/SmartEditorThemePreferencesWidget.js.map +1 -0
  72. package/dist/theme/UploadVSIXThemeBtnWidget.js +93 -0
  73. package/dist/theme/UploadVSIXThemeBtnWidget.js.map +1 -0
  74. package/dist/theme/patchThemeService.js +146 -0
  75. package/dist/theme/patchThemeService.js.map +1 -0
  76. package/dist/theme/theme-utils.js +65 -0
  77. package/dist/theme/theme-utils.js.map +1 -0
  78. package/dist/theme-reactor/editor-theme-fragment.js +70 -0
  79. package/dist/theme-reactor/editor-theme-fragment.js.map +1 -0
  80. package/dist/tsconfig.tsbuildinfo +1 -0
  81. package/dist/utils/paths.js +110 -0
  82. package/dist/utils/paths.js.map +1 -0
  83. package/dist/utils/useEditorStickyHeader.js +45 -0
  84. package/dist/utils/useEditorStickyHeader.js.map +1 -0
  85. package/dist/widgets/DualEditorWidget.js +79 -0
  86. package/dist/widgets/DualEditorWidget.js.map +1 -0
  87. package/dist/widgets/EditorWidget.js +85 -0
  88. package/dist/widgets/EditorWidget.js.map +1 -0
  89. package/dist/widgets/MonacoEditorWidget.js +29 -0
  90. package/dist/widgets/MonacoEditorWidget.js.map +1 -0
  91. package/dist/widgets/SimpleEditorWidget.js +71 -0
  92. package/dist/widgets/SimpleEditorWidget.js.map +1 -0
  93. package/dist-module/00a5102416a37050fa62.tmLanguage +1282 -0
  94. package/dist-module/092ac75109eb363dd826.tmLanguage +424 -0
  95. package/dist-module/100.bundle.js +1 -0
  96. package/dist-module/116.bundle.js +1 -0
  97. package/dist-module/173.bundle.js +1 -0
  98. package/dist-module/179.bundle.js +1 -0
  99. package/dist-module/18358219dee0ad14cc0c.tmLanguage +765 -0
  100. package/dist-module/195.bundle.js +1 -0
  101. package/dist-module/277.bundle.js +1 -0
  102. package/dist-module/299.bundle.js +1 -0
  103. package/dist-module/306.bundle.js +1 -0
  104. package/dist-module/344.bundle.js +1 -0
  105. package/dist-module/399345f371a7cb9eb1ba.tmLanguage +629 -0
  106. package/dist-module/404.bundle.js +4 -0
  107. package/dist-module/404.bundle.js.LICENSE.txt +6 -0
  108. package/dist-module/404.bundle.js.map +1 -0
  109. package/dist-module/43.bundle.js +1 -0
  110. package/dist-module/438.bundle.js +3 -0
  111. package/dist-module/438.bundle.js.map +1 -0
  112. package/dist-module/479.bundle.js +1 -0
  113. package/dist-module/491.bundle.js +1 -0
  114. package/dist-module/513.bundle.js +1 -0
  115. package/dist-module/549.bundle.js +1 -0
  116. package/dist-module/5e221c90a0dcbd4af855.tmLanguage +237 -0
  117. package/dist-module/6486a2df9ca5896c2cb6.tmLanguage +5739 -0
  118. package/dist-module/65.bundle.js +1 -0
  119. package/dist-module/66.bundle.js +1 -0
  120. package/dist-module/685.bundle.js +1 -0
  121. package/dist-module/6e3d5ec6699a8d147d29.wasm +0 -0
  122. package/dist-module/7.bundle.js +1 -0
  123. package/dist-module/703774d50b4d4526a465.tmLanguage +386 -0
  124. package/dist-module/717.bundle.js +2 -0
  125. package/dist-module/728.bundle.js +1 -0
  126. package/dist-module/77a7afbe329083ed0f59.tmLanguage +1183 -0
  127. package/dist-module/78.bundle.js +1 -0
  128. package/dist-module/829.bundle.js +1 -0
  129. package/dist-module/831968f77a9412d07cc2.tmLanguage +506 -0
  130. package/dist-module/862.bundle.js +1 -0
  131. package/dist-module/87.bundle.js +1 -0
  132. package/dist-module/923.bundle.js +1 -0
  133. package/dist-module/931.bundle.js +1 -0
  134. package/dist-module/933.bundle.js +3 -0
  135. package/dist-module/933.bundle.js.map +1 -0
  136. package/dist-module/970.bundle.js +1 -0
  137. package/dist-module/984.bundle.js +1 -0
  138. package/dist-module/992.bundle.js +1 -0
  139. package/dist-module/996.bundle.js +1 -0
  140. package/dist-module/9c8494157d226e95da5e.tmLanguage +1377 -0
  141. package/dist-module/a3e215de85a86294de8a.tmLanguage +385 -0
  142. package/dist-module/ba5650c2a0269a236153.tmLanguage +9349 -0
  143. package/dist-module/bundle.js +97 -0
  144. package/dist-module/bundle.js.LICENSE.txt +27 -0
  145. package/dist-module/bundle.js.map +1 -0
  146. package/dist-module/editor.worker.bundle.js +1 -0
  147. package/dist-module/f6283f7ccaed1249d9eb.ttf +0 -0
  148. package/dist-module/json.worker.bundle.js +2 -0
  149. package/dist-module/json.worker.bundle.js.LICENSE.txt +6 -0
  150. package/dist-module/yaml.worker.bundle.js +1 -0
  151. package/media/css.tmLanguage +1183 -0
  152. package/media/handlebars.tmLanguage +1282 -0
  153. package/media/html.tmLanguage +506 -0
  154. package/media/javascript.tmLanguage +5739 -0
  155. package/media/json.tmLanguage +386 -0
  156. package/media/jxml.tmLanguage +424 -0
  157. package/media/markdown.tmLanguage +1377 -0
  158. package/media/regularExpressions.tmLanguage +237 -0
  159. package/media/sql.tmLanguage +765 -0
  160. package/media/themes/ayu-light.json5 +847 -0
  161. package/media/themes/ayu-mirage.json5 +846 -0
  162. package/media/themes/journey.json5 +1061 -0
  163. package/media/themes/oxide.json5 +579 -0
  164. package/media/themes/reactor.json5 +775 -0
  165. package/media/themes/scarlet.json5 +836 -0
  166. package/media/typescript.tmLanguage +9349 -0
  167. package/media/xml.tmLanguage +385 -0
  168. package/media/yaml.tmLanguage +629 -0
  169. package/package.json +45 -0
  170. package/reactor.config.json +4 -0
@@ -0,0 +1,385 @@
1
+ {
2
+ "scopeName": "text.xml",
3
+ "name": "XML",
4
+ "fileTypes": [
5
+ "atom",
6
+ "axml",
7
+ "bpmn",
8
+ "config",
9
+ "cpt",
10
+ "csl",
11
+ "csproj",
12
+ "csproj.user",
13
+ "dae",
14
+ "dia",
15
+ "dita",
16
+ "ditamap",
17
+ "dtml",
18
+ "fodg",
19
+ "fodp",
20
+ "fods",
21
+ "fodt",
22
+ "fsproj",
23
+ "fxml",
24
+ "glade",
25
+ "gpx",
26
+ "graphml",
27
+ "icls",
28
+ "iml",
29
+ "isml",
30
+ "jmx",
31
+ "jsp",
32
+ "launch",
33
+ "menu",
34
+ "mxml",
35
+ "nuspec",
36
+ "opml",
37
+ "owl",
38
+ "pom",
39
+ "ppj",
40
+ "proj",
41
+ "pt",
42
+ "pubxml",
43
+ "pubxml.user",
44
+ "rdf",
45
+ "rng",
46
+ "rss",
47
+ "shproj",
48
+ "storyboard",
49
+ "svg",
50
+ "targets",
51
+ "tld",
52
+ "vbox",
53
+ "vbox-prev",
54
+ "vbproj",
55
+ "vbproj.user",
56
+ "vcproj",
57
+ "vcproj.filters",
58
+ "vcxproj",
59
+ "vcxproj.filters",
60
+ "wsdl",
61
+ "xaml",
62
+ "xbl",
63
+ "xib",
64
+ "xlf",
65
+ "xliff",
66
+ "xml",
67
+ "xpdl",
68
+ "xsd",
69
+ "xul",
70
+ "ui"
71
+ ],
72
+ "patterns": [
73
+ {
74
+ "begin": "(<\\?)\\s*([-_a-zA-Z0-9]+)",
75
+ "captures": {
76
+ "1": {
77
+ "name": "punctuation.definition.tag.xml"
78
+ },
79
+ "2": {
80
+ "name": "entity.name.tag.xml"
81
+ }
82
+ },
83
+ "end": "(\\?>)",
84
+ "name": "meta.tag.preprocessor.xml",
85
+ "patterns": [
86
+ {
87
+ "match": " ([a-zA-Z-]+)",
88
+ "name": "entity.other.attribute-name.xml"
89
+ },
90
+ {
91
+ "include": "#doublequotedString"
92
+ },
93
+ {
94
+ "include": "#singlequotedString"
95
+ }
96
+ ]
97
+ },
98
+ {
99
+ "begin": "(<!)(DOCTYPE)\\s+([:a-zA-Z_][:a-zA-Z0-9_.-]*)",
100
+ "captures": {
101
+ "1": {
102
+ "name": "punctuation.definition.tag.xml"
103
+ },
104
+ "2": {
105
+ "name": "keyword.other.doctype.xml"
106
+ },
107
+ "3": {
108
+ "name": "variable.language.documentroot.xml"
109
+ }
110
+ },
111
+ "end": "\\s*(>)",
112
+ "name": "meta.tag.sgml.doctype.xml",
113
+ "patterns": [
114
+ {
115
+ "include": "#internalSubset"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "include": "#comments"
121
+ },
122
+ {
123
+ "begin": "(<)((?:([-_a-zA-Z0-9]+)(:))?([-_a-zA-Z0-9:]+))(?=(\\s[^>]*)?></\\2>)",
124
+ "beginCaptures": {
125
+ "1": {
126
+ "name": "punctuation.definition.tag.xml"
127
+ },
128
+ "2": {
129
+ "name": "entity.name.tag.xml"
130
+ },
131
+ "3": {
132
+ "name": "entity.name.tag.namespace.xml"
133
+ },
134
+ "4": {
135
+ "name": "punctuation.separator.namespace.xml"
136
+ },
137
+ "5": {
138
+ "name": "entity.name.tag.localname.xml"
139
+ }
140
+ },
141
+ "end": "(>)(</)((?:([-_a-zA-Z0-9]+)(:))?([-_a-zA-Z0-9:]+))(>)",
142
+ "endCaptures": {
143
+ "1": {
144
+ "name": "punctuation.definition.tag.xml"
145
+ },
146
+ "2": {
147
+ "name": "punctuation.definition.tag.xml"
148
+ },
149
+ "3": {
150
+ "name": "entity.name.tag.xml"
151
+ },
152
+ "4": {
153
+ "name": "entity.name.tag.namespace.xml"
154
+ },
155
+ "5": {
156
+ "name": "punctuation.separator.namespace.xml"
157
+ },
158
+ "6": {
159
+ "name": "entity.name.tag.localname.xml"
160
+ },
161
+ "7": {
162
+ "name": "punctuation.definition.tag.xml"
163
+ }
164
+ },
165
+ "name": "meta.tag.no-content.xml",
166
+ "patterns": [
167
+ {
168
+ "include": "#tagStuff"
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "begin": "(</?)(?:([-\\w\\.]+)((:)))?([-\\w\\.:]+)",
174
+ "captures": {
175
+ "1": {
176
+ "name": "punctuation.definition.tag.xml"
177
+ },
178
+ "2": {
179
+ "name": "entity.name.tag.namespace.xml"
180
+ },
181
+ "3": {
182
+ "name": "entity.name.tag.xml"
183
+ },
184
+ "4": {
185
+ "name": "punctuation.separator.namespace.xml"
186
+ },
187
+ "5": {
188
+ "name": "entity.name.tag.localname.xml"
189
+ }
190
+ },
191
+ "end": "(/?>)",
192
+ "name": "meta.tag.xml",
193
+ "patterns": [
194
+ {
195
+ "include": "#tagStuff"
196
+ }
197
+ ]
198
+ },
199
+ {
200
+ "include": "#entity"
201
+ },
202
+ {
203
+ "include": "#bare-ampersand"
204
+ },
205
+ {
206
+ "begin": "<!\\[CDATA\\[",
207
+ "beginCaptures": {
208
+ "0": {
209
+ "name": "punctuation.definition.string.begin.xml"
210
+ }
211
+ },
212
+ "end": "]]>",
213
+ "endCaptures": {
214
+ "0": {
215
+ "name": "punctuation.definition.string.end.xml"
216
+ }
217
+ },
218
+ "name": "string.unquoted.cdata.xml"
219
+ }
220
+ ],
221
+ "repository": {
222
+ "EntityDecl": {
223
+ "begin": "(<!)(ENTITY)\\s+(%\\s+)?([:a-zA-Z_][:a-zA-Z0-9_.-]*)(\\s+(?:SYSTEM|PUBLIC)\\s+)?",
224
+ "captures": {
225
+ "1": {
226
+ "name": "punctuation.definition.tag.xml"
227
+ },
228
+ "2": {
229
+ "name": "keyword.other.entity.xml"
230
+ },
231
+ "3": {
232
+ "name": "punctuation.definition.entity.xml"
233
+ },
234
+ "4": {
235
+ "name": "variable.language.entity.xml"
236
+ },
237
+ "5": {
238
+ "name": "keyword.other.entitytype.xml"
239
+ }
240
+ },
241
+ "end": "(>)",
242
+ "patterns": [
243
+ {
244
+ "include": "#doublequotedString"
245
+ },
246
+ {
247
+ "include": "#singlequotedString"
248
+ }
249
+ ]
250
+ },
251
+ "bare-ampersand": {
252
+ "match": "&",
253
+ "name": "invalid.illegal.bad-ampersand.xml"
254
+ },
255
+ "doublequotedString": {
256
+ "begin": "\"",
257
+ "beginCaptures": {
258
+ "0": {
259
+ "name": "punctuation.definition.string.begin.xml"
260
+ }
261
+ },
262
+ "end": "\"",
263
+ "endCaptures": {
264
+ "0": {
265
+ "name": "punctuation.definition.string.end.xml"
266
+ }
267
+ },
268
+ "name": "string.quoted.double.xml",
269
+ "patterns": [
270
+ {
271
+ "include": "#entity"
272
+ },
273
+ {
274
+ "include": "#bare-ampersand"
275
+ }
276
+ ]
277
+ },
278
+ "entity": {
279
+ "captures": {
280
+ "1": {
281
+ "name": "punctuation.definition.constant.xml"
282
+ },
283
+ "3": {
284
+ "name": "punctuation.definition.constant.xml"
285
+ }
286
+ },
287
+ "match": "(&)([:a-zA-Z_][:a-zA-Z0-9_.-]*|#[0-9]+|#x[0-9a-fA-F]+)(;)",
288
+ "name": "constant.character.entity.xml"
289
+ },
290
+ "internalSubset": {
291
+ "begin": "(\\[)",
292
+ "captures": {
293
+ "1": {
294
+ "name": "punctuation.definition.constant.xml"
295
+ }
296
+ },
297
+ "end": "(\\])",
298
+ "name": "meta.internalsubset.xml",
299
+ "patterns": [
300
+ {
301
+ "include": "#EntityDecl"
302
+ },
303
+ {
304
+ "include": "#parameterEntity"
305
+ },
306
+ {
307
+ "include": "#comments"
308
+ }
309
+ ]
310
+ },
311
+ "parameterEntity": {
312
+ "captures": {
313
+ "1": {
314
+ "name": "punctuation.definition.constant.xml"
315
+ },
316
+ "3": {
317
+ "name": "punctuation.definition.constant.xml"
318
+ }
319
+ },
320
+ "match": "(%)([:a-zA-Z_][:a-zA-Z0-9_.-]*)(;)",
321
+ "name": "constant.character.parameter-entity.xml"
322
+ },
323
+ "singlequotedString": {
324
+ "begin": "'",
325
+ "beginCaptures": {
326
+ "0": {
327
+ "name": "punctuation.definition.string.begin.xml"
328
+ }
329
+ },
330
+ "end": "'",
331
+ "endCaptures": {
332
+ "0": {
333
+ "name": "punctuation.definition.string.end.xml"
334
+ }
335
+ },
336
+ "name": "string.quoted.single.xml",
337
+ "patterns": [
338
+ {
339
+ "include": "#entity"
340
+ },
341
+ {
342
+ "include": "#bare-ampersand"
343
+ }
344
+ ]
345
+ },
346
+ "tagStuff": {
347
+ "patterns": [
348
+ {
349
+ "captures": {
350
+ "1": {
351
+ "name": "entity.other.attribute-name.namespace.xml"
352
+ },
353
+ "2": {
354
+ "name": "entity.other.attribute-name.xml"
355
+ },
356
+ "3": {
357
+ "name": "punctuation.separator.namespace.xml"
358
+ },
359
+ "4": {
360
+ "name": "entity.other.attribute-name.localname.xml"
361
+ }
362
+ },
363
+ "match": "(?:^|\\s+)(?:([-\\w.]+)((:)))?([-\\w.:]+)="
364
+ },
365
+ {
366
+ "include": "#doublequotedString"
367
+ },
368
+ {
369
+ "include": "#singlequotedString"
370
+ }
371
+ ]
372
+ },
373
+ "comments": {
374
+ "begin": "<[!%]--",
375
+ "captures": {
376
+ "0": {
377
+ "name": "punctuation.definition.comment.xml"
378
+ }
379
+ },
380
+ "end": "--%?>",
381
+ "name": "comment.block.xml"
382
+ }
383
+ },
384
+ "version": "https://github.com/atom/language-xml/commit/f461d428fb87040cb8a52d87d0b95151b9d3c0cc"
385
+ }