@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,237 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array/>
7
+ <key>hideFromUser</key>
8
+ <true/>
9
+ <key>name</key>
10
+ <string>Regular Expressions (JavaScript)</string>
11
+ <key>patterns</key>
12
+ <array>
13
+ <dict>
14
+ <key>include</key>
15
+ <string>#regexp</string>
16
+ </dict>
17
+ </array>
18
+ <key>repository</key>
19
+ <dict>
20
+ <key>regex-character-class</key>
21
+ <dict>
22
+ <key>patterns</key>
23
+ <array>
24
+ <dict>
25
+ <key>match</key>
26
+ <string>\\[wWsSdD]|\.</string>
27
+ <key>name</key>
28
+ <string>constant.character.character-class.regexp</string>
29
+ </dict>
30
+ <dict>
31
+ <key>match</key>
32
+ <string>\\([0-7]{3}|x\h\h|u\h\h\h\h)</string>
33
+ <key>name</key>
34
+ <string>constant.character.numeric.regexp</string>
35
+ </dict>
36
+ <dict>
37
+ <key>match</key>
38
+ <string>\\c[A-Z]</string>
39
+ <key>name</key>
40
+ <string>constant.character.control.regexp</string>
41
+ </dict>
42
+ <dict>
43
+ <key>match</key>
44
+ <string>\\.</string>
45
+ <key>name</key>
46
+ <string>constant.character.escape.backslash.regexp</string>
47
+ </dict>
48
+ </array>
49
+ </dict>
50
+ <key>regexp</key>
51
+ <dict>
52
+ <key>patterns</key>
53
+ <array>
54
+ <dict>
55
+ <key>match</key>
56
+ <string>\\[bB]|\^|\$</string>
57
+ <key>name</key>
58
+ <string>keyword.control.anchor.regexp</string>
59
+ </dict>
60
+ <dict>
61
+ <key>match</key>
62
+ <string>\\[1-9]\d*</string>
63
+ <key>name</key>
64
+ <string>keyword.other.back-reference.regexp</string>
65
+ </dict>
66
+ <dict>
67
+ <key>match</key>
68
+ <string>[?+*]|\{(\d+,\d+|\d+,|,\d+|\d+)\}\??</string>
69
+ <key>name</key>
70
+ <string>keyword.operator.quantifier.regexp</string>
71
+ </dict>
72
+ <dict>
73
+ <key>match</key>
74
+ <string>\|</string>
75
+ <key>name</key>
76
+ <string>keyword.operator.or.regexp</string>
77
+ </dict>
78
+ <dict>
79
+ <key>begin</key>
80
+ <string>(\()((\?=)|(\?!))</string>
81
+ <key>beginCaptures</key>
82
+ <dict>
83
+ <key>1</key>
84
+ <dict>
85
+ <key>name</key>
86
+ <string>punctuation.definition.group.regexp</string>
87
+ </dict>
88
+ <key>3</key>
89
+ <dict>
90
+ <key>name</key>
91
+ <string>meta.assertion.look-ahead.regexp</string>
92
+ </dict>
93
+ <key>4</key>
94
+ <dict>
95
+ <key>name</key>
96
+ <string>meta.assertion.negative-look-ahead.regexp</string>
97
+ </dict>
98
+ </dict>
99
+ <key>end</key>
100
+ <string>(\))</string>
101
+ <key>endCaptures</key>
102
+ <dict>
103
+ <key>1</key>
104
+ <dict>
105
+ <key>name</key>
106
+ <string>punctuation.definition.group.regexp</string>
107
+ </dict>
108
+ </dict>
109
+ <key>name</key>
110
+ <string>meta.group.assertion.regexp</string>
111
+ <key>patterns</key>
112
+ <array>
113
+ <dict>
114
+ <key>include</key>
115
+ <string>#regexp</string>
116
+ </dict>
117
+ </array>
118
+ </dict>
119
+ <dict>
120
+ <key>begin</key>
121
+ <string>\((\?:)?</string>
122
+ <key>beginCaptures</key>
123
+ <dict>
124
+ <key>0</key>
125
+ <dict>
126
+ <key>name</key>
127
+ <string>punctuation.definition.group.regexp</string>
128
+ </dict>
129
+ </dict>
130
+ <key>end</key>
131
+ <string>\)</string>
132
+ <key>endCaptures</key>
133
+ <dict>
134
+ <key>0</key>
135
+ <dict>
136
+ <key>name</key>
137
+ <string>punctuation.definition.group.regexp</string>
138
+ </dict>
139
+ </dict>
140
+ <key>name</key>
141
+ <string>meta.group.regexp</string>
142
+ <key>patterns</key>
143
+ <array>
144
+ <dict>
145
+ <key>include</key>
146
+ <string>#regexp</string>
147
+ </dict>
148
+ </array>
149
+ </dict>
150
+ <dict>
151
+ <key>begin</key>
152
+ <string>(\[)(\^)?</string>
153
+ <key>beginCaptures</key>
154
+ <dict>
155
+ <key>1</key>
156
+ <dict>
157
+ <key>name</key>
158
+ <string>punctuation.definition.character-class.regexp</string>
159
+ </dict>
160
+ <key>2</key>
161
+ <dict>
162
+ <key>name</key>
163
+ <string>keyword.operator.negation.regexp</string>
164
+ </dict>
165
+ </dict>
166
+ <key>end</key>
167
+ <string>(\])</string>
168
+ <key>endCaptures</key>
169
+ <dict>
170
+ <key>1</key>
171
+ <dict>
172
+ <key>name</key>
173
+ <string>punctuation.definition.character-class.regexp</string>
174
+ </dict>
175
+ </dict>
176
+ <key>name</key>
177
+ <string>constant.other.character-class.set.regexp</string>
178
+ <key>patterns</key>
179
+ <array>
180
+ <dict>
181
+ <key>captures</key>
182
+ <dict>
183
+ <key>1</key>
184
+ <dict>
185
+ <key>name</key>
186
+ <string>constant.character.numeric.regexp</string>
187
+ </dict>
188
+ <key>2</key>
189
+ <dict>
190
+ <key>name</key>
191
+ <string>constant.character.control.regexp</string>
192
+ </dict>
193
+ <key>3</key>
194
+ <dict>
195
+ <key>name</key>
196
+ <string>constant.character.escape.backslash.regexp</string>
197
+ </dict>
198
+ <key>4</key>
199
+ <dict>
200
+ <key>name</key>
201
+ <string>constant.character.numeric.regexp</string>
202
+ </dict>
203
+ <key>5</key>
204
+ <dict>
205
+ <key>name</key>
206
+ <string>constant.character.control.regexp</string>
207
+ </dict>
208
+ <key>6</key>
209
+ <dict>
210
+ <key>name</key>
211
+ <string>constant.character.escape.backslash.regexp</string>
212
+ </dict>
213
+ </dict>
214
+ <key>match</key>
215
+ <string>(?:.|(\\(?:[0-7]{3}|x\h\h|u\h\h\h\h))|(\\c[A-Z])|(\\.))\-(?:[^\]\\]|(\\(?:[0-7]{3}|x\h\h|u\h\h\h\h))|(\\c[A-Z])|(\\.))</string>
216
+ <key>name</key>
217
+ <string>constant.other.character-class.range.regexp</string>
218
+ </dict>
219
+ <dict>
220
+ <key>include</key>
221
+ <string>#regex-character-class</string>
222
+ </dict>
223
+ </array>
224
+ </dict>
225
+ <dict>
226
+ <key>include</key>
227
+ <string>#regex-character-class</string>
228
+ </dict>
229
+ </array>
230
+ </dict>
231
+ </dict>
232
+ <key>scopeName</key>
233
+ <string>source.js.regexp</string>
234
+ <key>uuid</key>
235
+ <string>AC8679DE-3AC7-4056-84F9-69A7ADC29DDD</string>
236
+ </dict>
237
+ </plist>