@journeyapps-labs/reactor-mod-editor 0.0.0-dev-20250801180850

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 +22 -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,424 @@
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
+ "include": "#embeddedformatstring"
124
+ },
125
+ {
126
+ "begin": "(<)((?:([-_a-zA-Z0-9]+)(:))?([-_a-zA-Z0-9:]+))(?=(\\s[^>]*)?></\\2>)",
127
+ "beginCaptures": {
128
+ "1": {
129
+ "name": "punctuation.definition.tag.xml"
130
+ },
131
+ "2": {
132
+ "name": "entity.name.tag.xml"
133
+ },
134
+ "3": {
135
+ "name": "entity.name.tag.namespace.xml"
136
+ },
137
+ "4": {
138
+ "name": "punctuation.separator.namespace.xml"
139
+ },
140
+ "5": {
141
+ "name": "entity.name.tag.localname.xml"
142
+ }
143
+ },
144
+ "end": "(>)(</)((?:([-_a-zA-Z0-9]+)(:))?([-_a-zA-Z0-9:]+))(>)",
145
+ "endCaptures": {
146
+ "1": {
147
+ "name": "punctuation.definition.tag.xml"
148
+ },
149
+ "2": {
150
+ "name": "punctuation.definition.tag.xml"
151
+ },
152
+ "3": {
153
+ "name": "entity.name.tag.xml"
154
+ },
155
+ "4": {
156
+ "name": "entity.name.tag.namespace.xml"
157
+ },
158
+ "5": {
159
+ "name": "punctuation.separator.namespace.xml"
160
+ },
161
+ "6": {
162
+ "name": "entity.name.tag.localname.xml"
163
+ },
164
+ "7": {
165
+ "name": "punctuation.definition.tag.xml"
166
+ }
167
+ },
168
+ "name": "meta.tag.no-content.xml",
169
+ "patterns": [
170
+ {
171
+ "include": "#tagStuff"
172
+ }
173
+ ]
174
+ },
175
+ {
176
+ "begin": "(</?)(?:([-\\w\\.]+)((:)))?([-\\w\\.:]+)",
177
+ "captures": {
178
+ "1": {
179
+ "name": "punctuation.definition.tag.xml"
180
+ },
181
+ "2": {
182
+ "name": "entity.name.tag.namespace.xml"
183
+ },
184
+ "3": {
185
+ "name": "entity.name.tag.xml"
186
+ },
187
+ "4": {
188
+ "name": "punctuation.separator.namespace.xml"
189
+ },
190
+ "5": {
191
+ "name": "entity.name.tag.localname.xml"
192
+ }
193
+ },
194
+ "end": "(/?>)",
195
+ "name": "meta.tag.xml",
196
+ "patterns": [
197
+ {
198
+ "include": "#tagStuff"
199
+ }
200
+ ]
201
+ },
202
+ {
203
+ "include": "#entity"
204
+ },
205
+ {
206
+ "include": "#bare-ampersand"
207
+ },
208
+ {
209
+ "begin": "<!\\[CDATA\\[",
210
+ "beginCaptures": {
211
+ "0": {
212
+ "name": "punctuation.definition.string.begin.xml"
213
+ }
214
+ },
215
+ "end": "]]>",
216
+ "endCaptures": {
217
+ "0": {
218
+ "name": "punctuation.definition.string.end.xml"
219
+ }
220
+ },
221
+ "name": "string.unquoted.cdata.xml"
222
+ }
223
+ ],
224
+ "repository": {
225
+ "EntityDecl": {
226
+ "begin": "(<!)(ENTITY)\\s+(%\\s+)?([:a-zA-Z_][:a-zA-Z0-9_.-]*)(\\s+(?:SYSTEM|PUBLIC)\\s+)?",
227
+ "captures": {
228
+ "1": {
229
+ "name": "punctuation.definition.tag.xml"
230
+ },
231
+ "2": {
232
+ "name": "keyword.other.entity.xml"
233
+ },
234
+ "3": {
235
+ "name": "punctuation.definition.entity.xml"
236
+ },
237
+ "4": {
238
+ "name": "variable.language.entity.xml"
239
+ },
240
+ "5": {
241
+ "name": "keyword.other.entitytype.xml"
242
+ }
243
+ },
244
+ "end": "(>)",
245
+ "patterns": [
246
+ {
247
+ "include": "#doublequotedString"
248
+ },
249
+ {
250
+ "include": "#singlequotedString"
251
+ }
252
+ ]
253
+ },
254
+ "bare-ampersand": {
255
+ "match": "&",
256
+ "name": "invalid.illegal.bad-ampersand.xml"
257
+ },
258
+ "doublequotedString": {
259
+ "begin": "\"",
260
+ "beginCaptures": {
261
+ "0": {
262
+ "name": "punctuation.definition.string.begin.xml"
263
+ }
264
+ },
265
+ "end": "\"",
266
+ "endCaptures": {
267
+ "0": {
268
+ "name": "punctuation.definition.string.end.xml"
269
+ }
270
+ },
271
+ "name": "string.quoted.double.xml",
272
+ "patterns": [
273
+ {
274
+ "include": "#entity"
275
+ },
276
+ {
277
+ "include": "#bare-ampersand"
278
+ },
279
+ {
280
+ "include": "#embeddedformatstring"
281
+ },
282
+ {
283
+ "include": "#embeddedscript"
284
+ }
285
+ ]
286
+ },
287
+ "entity": {
288
+ "captures": {
289
+ "1": {
290
+ "name": "punctuation.definition.constant.xml"
291
+ },
292
+ "3": {
293
+ "name": "punctuation.definition.constant.xml"
294
+ }
295
+ },
296
+ "match": "(&)([:a-zA-Z_][:a-zA-Z0-9_.-]*|#[0-9]+|#x[0-9a-fA-F]+)(;)",
297
+ "name": "constant.character.entity.xml"
298
+ },
299
+ "internalSubset": {
300
+ "begin": "(\\[)",
301
+ "captures": {
302
+ "1": {
303
+ "name": "punctuation.definition.constant.xml"
304
+ }
305
+ },
306
+ "end": "(\\])",
307
+ "name": "meta.internalsubset.xml",
308
+ "patterns": [
309
+ {
310
+ "include": "#EntityDecl"
311
+ },
312
+ {
313
+ "include": "#parameterEntity"
314
+ },
315
+ {
316
+ "include": "#comments"
317
+ }
318
+ ]
319
+ },
320
+ "parameterEntity": {
321
+ "captures": {
322
+ "1": {
323
+ "name": "punctuation.definition.constant.xml"
324
+ },
325
+ "3": {
326
+ "name": "punctuation.definition.constant.xml"
327
+ }
328
+ },
329
+ "match": "(%)([:a-zA-Z_][:a-zA-Z0-9_.-]*)(;)",
330
+ "name": "constant.character.parameter-entity.xml"
331
+ },
332
+ "singlequotedString": {
333
+ "begin": "'",
334
+ "beginCaptures": {
335
+ "0": {
336
+ "name": "punctuation.definition.string.begin.xml"
337
+ }
338
+ },
339
+ "end": "'",
340
+ "endCaptures": {
341
+ "0": {
342
+ "name": "punctuation.definition.string.end.xml"
343
+ }
344
+ },
345
+ "name": "string.quoted.single.xml",
346
+ "patterns": [
347
+ {
348
+ "include": "#entity"
349
+ },
350
+ {
351
+ "include": "#bare-ampersand"
352
+ }
353
+ ]
354
+ },
355
+ "tagStuff": {
356
+ "patterns": [
357
+ {
358
+ "captures": {
359
+ "1": {
360
+ "name": "entity.other.attribute-name.namespace.xml"
361
+ },
362
+ "2": {
363
+ "name": "entity.other.attribute-name.xml"
364
+ },
365
+ "3": {
366
+ "name": "punctuation.separator.namespace.xml"
367
+ },
368
+ "4": {
369
+ "name": "entity.other.attribute-name.localname.xml"
370
+ }
371
+ },
372
+ "match": "(?:^|\\s+)(?:([-\\w.]+)((:)))?([-\\w.:]+)="
373
+ },
374
+ {
375
+ "include": "#doublequotedString"
376
+ },
377
+ {
378
+ "include": "#singlequotedString"
379
+ }
380
+ ]
381
+ },
382
+ "comments": {
383
+ "begin": "<[!%]--",
384
+ "captures": {
385
+ "0": {
386
+ "name": "punctuation.definition.comment.xml"
387
+ }
388
+ },
389
+ "end": "--%?>",
390
+ "name": "comment.block.xml"
391
+ },
392
+ "embeddedformatstring": {
393
+ "begin": "{(\\$:)?",
394
+ "beginCaptures": {
395
+ "1": {
396
+ "name": "support.type.primitive.ts"
397
+ }
398
+ },
399
+ "end": "[{}]|(?=\")|(?=</)",
400
+ "name": "keyword.operator.js",
401
+ "patterns": [
402
+ {
403
+ "include": "source.js"
404
+ }
405
+ ]
406
+ },
407
+ "embeddedscript": {
408
+ "begin": "(\\$:)",
409
+ "beginCaptures": {
410
+ "1": {
411
+ "name": "support.type.primitive.ts"
412
+ }
413
+ },
414
+ "name": "keyword.operator.js",
415
+ "end": "(?=\")",
416
+ "patterns": [
417
+ {
418
+ "include": "source.js"
419
+ }
420
+ ]
421
+ }
422
+ },
423
+ "version": "https://github.com/atom/language-xml/commit/f461d428fb87040cb8a52d87d0b95151b9d3c0cc"
424
+ }