@webgal/language-service 0.0.2-alpha.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.
- package/LICENSE +373 -0
- package/build/chunk-C0xms8kb.cjs +34 -0
- package/build/index.cjs +297 -0
- package/build/index.d.cts +103 -0
- package/build/index.d.mts +103 -0
- package/build/index.mjs +293 -0
- package/build/language-configuration-BeRkRSII.mjs +214 -0
- package/build/language-configuration-D41FLA6b.cjs +232 -0
- package/build/monaco-init.cjs +83 -0
- package/build/monaco-init.d.cts +7 -0
- package/build/monaco-init.d.mts +7 -0
- package/build/monaco-init.mjs +78 -0
- package/build/monaco.cjs +138 -0
- package/build/monaco.d.cts +32 -0
- package/build/monaco.d.mts +32 -0
- package/build/monaco.mjs +134 -0
- package/build/node.cjs +374 -0
- package/build/node.d.cts +11 -0
- package/build/node.d.mts +11 -0
- package/build/node.mjs +370 -0
- package/build/syntaxes.cjs +12 -0
- package/build/syntaxes.d.cts +293 -0
- package/build/syntaxes.d.mts +293 -0
- package/build/syntaxes.mjs +9 -0
- package/build/themes.cjs +10 -0
- package/build/themes.d.cts +286 -0
- package/build/themes.d.mts +286 -0
- package/build/themes.mjs +8 -0
- package/build/white-Be4QIaif.cjs +1007 -0
- package/build/white-CaNrG0B0.mjs +995 -0
- package/package.json +71 -0
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
//#region src/themes.d.ts
|
|
2
|
+
declare const webgalDarkTheme: {
|
|
3
|
+
name: string;
|
|
4
|
+
colors: {
|
|
5
|
+
"editor.inactiveSelectionBackground": string;
|
|
6
|
+
"editorIndentGuide.background1": string;
|
|
7
|
+
"editorIndentGuide.activeBackground1": string;
|
|
8
|
+
"editor.selectionHighlightBackground": string;
|
|
9
|
+
"editor.lineHighlightBackground": string;
|
|
10
|
+
"editor.lineHighlightBorder": string;
|
|
11
|
+
"editor.selectionBackground": string;
|
|
12
|
+
"editorCursor.foreground": string;
|
|
13
|
+
"list.dropBackground": string;
|
|
14
|
+
"menu.foreground": string;
|
|
15
|
+
"menu.separatorBackground": string;
|
|
16
|
+
"menu.border": string;
|
|
17
|
+
"tab.selectedBackground": string;
|
|
18
|
+
"tab.selectedForeground": string;
|
|
19
|
+
"tab.lastPinnedBorder": string;
|
|
20
|
+
"list.activeSelectionIconForeground": string;
|
|
21
|
+
"terminal.inactiveSelectionBackground": string;
|
|
22
|
+
"actionBar.toggledBackground": string;
|
|
23
|
+
"activityBar.activeBorder": string;
|
|
24
|
+
"activityBar.background": string;
|
|
25
|
+
"activityBar.border": string;
|
|
26
|
+
"activityBar.foreground": string;
|
|
27
|
+
"activityBar.inactiveForeground": string;
|
|
28
|
+
"activityBarBadge.background": string;
|
|
29
|
+
"activityBarBadge.foreground": string;
|
|
30
|
+
"badge.background": string;
|
|
31
|
+
"badge.foreground": string;
|
|
32
|
+
"button.background": string;
|
|
33
|
+
"button.border": string;
|
|
34
|
+
"button.foreground": string;
|
|
35
|
+
"button.hoverBackground": string;
|
|
36
|
+
"button.secondaryBackground": string;
|
|
37
|
+
"button.secondaryForeground": string;
|
|
38
|
+
"button.secondaryHoverBackground": string;
|
|
39
|
+
"chat.slashCommandBackground": string;
|
|
40
|
+
"chat.slashCommandForeground": string;
|
|
41
|
+
"chat.editedFileForeground": string;
|
|
42
|
+
"checkbox.background": string;
|
|
43
|
+
"checkbox.border": string;
|
|
44
|
+
"debugToolBar.background": string;
|
|
45
|
+
descriptionForeground: string;
|
|
46
|
+
"dropdown.background": string;
|
|
47
|
+
"dropdown.border": string;
|
|
48
|
+
"dropdown.foreground": string;
|
|
49
|
+
"dropdown.listBackground": string;
|
|
50
|
+
"editor.background": string;
|
|
51
|
+
"editor.findMatchBackground": string;
|
|
52
|
+
"editor.foreground": string;
|
|
53
|
+
"editorGroup.border": string;
|
|
54
|
+
"editorGroupHeader.tabsBackground": string;
|
|
55
|
+
"editorGroupHeader.tabsBorder": string;
|
|
56
|
+
"editorGutter.addedBackground": string;
|
|
57
|
+
"editorGutter.deletedBackground": string;
|
|
58
|
+
"editorGutter.modifiedBackground": string;
|
|
59
|
+
"editorLineNumber.activeForeground": string;
|
|
60
|
+
"editorLineNumber.foreground": string;
|
|
61
|
+
"editorOverviewRuler.border": string;
|
|
62
|
+
"editorWidget.background": string;
|
|
63
|
+
errorForeground: string;
|
|
64
|
+
focusBorder: string;
|
|
65
|
+
foreground: string;
|
|
66
|
+
"icon.foreground": string;
|
|
67
|
+
"input.background": string;
|
|
68
|
+
"input.border": string;
|
|
69
|
+
"input.foreground": string;
|
|
70
|
+
"input.placeholderForeground": string;
|
|
71
|
+
"inputOption.activeBackground": string;
|
|
72
|
+
"inputOption.activeBorder": string;
|
|
73
|
+
"keybindingLabel.foreground": string;
|
|
74
|
+
"menu.background": string;
|
|
75
|
+
"menu.selectionBackground": string;
|
|
76
|
+
"notificationCenterHeader.background": string;
|
|
77
|
+
"notificationCenterHeader.foreground": string;
|
|
78
|
+
"notifications.background": string;
|
|
79
|
+
"notifications.border": string;
|
|
80
|
+
"notifications.foreground": string;
|
|
81
|
+
"panel.background": string;
|
|
82
|
+
"panel.border": string;
|
|
83
|
+
"panelInput.border": string;
|
|
84
|
+
"panelTitle.activeBorder": string;
|
|
85
|
+
"panelTitle.activeForeground": string;
|
|
86
|
+
"panelTitle.inactiveForeground": string;
|
|
87
|
+
"peekViewEditor.background": string;
|
|
88
|
+
"peekViewEditor.matchHighlightBackground": string;
|
|
89
|
+
"peekViewResult.background": string;
|
|
90
|
+
"peekViewResult.matchHighlightBackground": string;
|
|
91
|
+
"pickerGroup.border": string;
|
|
92
|
+
"progressBar.background": string;
|
|
93
|
+
"quickInput.background": string;
|
|
94
|
+
"quickInput.foreground": string;
|
|
95
|
+
"settings.dropdownBackground": string;
|
|
96
|
+
"settings.dropdownBorder": string;
|
|
97
|
+
"settings.headerForeground": string;
|
|
98
|
+
"settings.modifiedItemIndicator": string;
|
|
99
|
+
"sideBar.background": string;
|
|
100
|
+
"sideBar.border": string;
|
|
101
|
+
"sideBar.foreground": string;
|
|
102
|
+
"sideBarSectionHeader.background": string;
|
|
103
|
+
"sideBarSectionHeader.border": string;
|
|
104
|
+
"sideBarSectionHeader.foreground": string;
|
|
105
|
+
"sideBarTitle.foreground": string;
|
|
106
|
+
"statusBar.background": string;
|
|
107
|
+
"statusBar.border": string;
|
|
108
|
+
"statusBar.debuggingBackground": string;
|
|
109
|
+
"statusBar.debuggingForeground": string;
|
|
110
|
+
"statusBar.focusBorder": string;
|
|
111
|
+
"statusBar.foreground": string;
|
|
112
|
+
"statusBar.noFolderBackground": string;
|
|
113
|
+
"statusBarItem.focusBorder": string;
|
|
114
|
+
"statusBarItem.prominentBackground": string;
|
|
115
|
+
"statusBarItem.remoteBackground": string;
|
|
116
|
+
"statusBarItem.remoteForeground": string;
|
|
117
|
+
"tab.activeBackground": string;
|
|
118
|
+
"tab.activeBorder": string;
|
|
119
|
+
"tab.activeBorderTop": string;
|
|
120
|
+
"tab.activeForeground": string;
|
|
121
|
+
"tab.selectedBorderTop": string;
|
|
122
|
+
"tab.border": string;
|
|
123
|
+
"tab.hoverBackground": string;
|
|
124
|
+
"tab.inactiveBackground": string;
|
|
125
|
+
"tab.inactiveForeground": string;
|
|
126
|
+
"tab.unfocusedActiveBorder": string;
|
|
127
|
+
"tab.unfocusedActiveBorderTop": string;
|
|
128
|
+
"tab.unfocusedHoverBackground": string;
|
|
129
|
+
"terminal.foreground": string;
|
|
130
|
+
"terminal.tab.activeBorder": string;
|
|
131
|
+
"textBlockQuote.background": string;
|
|
132
|
+
"textBlockQuote.border": string;
|
|
133
|
+
"textCodeBlock.background": string;
|
|
134
|
+
"textLink.activeForeground": string;
|
|
135
|
+
"textLink.foreground": string;
|
|
136
|
+
"textPreformat.foreground": string;
|
|
137
|
+
"textPreformat.background": string;
|
|
138
|
+
"textSeparator.foreground": string;
|
|
139
|
+
"titleBar.activeBackground": string;
|
|
140
|
+
"titleBar.activeForeground": string;
|
|
141
|
+
"titleBar.border": string;
|
|
142
|
+
"titleBar.inactiveBackground": string;
|
|
143
|
+
"titleBar.inactiveForeground": string;
|
|
144
|
+
"welcomePage.tileBackground": string;
|
|
145
|
+
"welcomePage.progress.foreground": string;
|
|
146
|
+
"widget.border": string;
|
|
147
|
+
};
|
|
148
|
+
tokenColors: ({
|
|
149
|
+
scope: string[];
|
|
150
|
+
settings: {
|
|
151
|
+
foreground: string;
|
|
152
|
+
fontStyle?: undefined;
|
|
153
|
+
};
|
|
154
|
+
name?: undefined;
|
|
155
|
+
} | {
|
|
156
|
+
scope: string[];
|
|
157
|
+
settings: {
|
|
158
|
+
foreground: string;
|
|
159
|
+
fontStyle: string;
|
|
160
|
+
};
|
|
161
|
+
name?: undefined;
|
|
162
|
+
} | {
|
|
163
|
+
scope: string;
|
|
164
|
+
settings: {
|
|
165
|
+
fontStyle: string;
|
|
166
|
+
foreground?: undefined;
|
|
167
|
+
};
|
|
168
|
+
name?: undefined;
|
|
169
|
+
} | {
|
|
170
|
+
scope: string;
|
|
171
|
+
settings: {
|
|
172
|
+
foreground: string;
|
|
173
|
+
fontStyle?: undefined;
|
|
174
|
+
};
|
|
175
|
+
name?: undefined;
|
|
176
|
+
} | {
|
|
177
|
+
scope: string;
|
|
178
|
+
settings: {
|
|
179
|
+
fontStyle: string;
|
|
180
|
+
foreground: string;
|
|
181
|
+
};
|
|
182
|
+
name?: undefined;
|
|
183
|
+
} | {
|
|
184
|
+
name: string;
|
|
185
|
+
scope: string;
|
|
186
|
+
settings: {
|
|
187
|
+
foreground: string;
|
|
188
|
+
fontStyle?: undefined;
|
|
189
|
+
};
|
|
190
|
+
} | {
|
|
191
|
+
name: string;
|
|
192
|
+
scope: string[];
|
|
193
|
+
settings: {
|
|
194
|
+
foreground: string;
|
|
195
|
+
fontStyle?: undefined;
|
|
196
|
+
};
|
|
197
|
+
})[];
|
|
198
|
+
semanticHighlighting: boolean;
|
|
199
|
+
semanticTokenColors: {
|
|
200
|
+
newOperator: string;
|
|
201
|
+
stringLiteral: string;
|
|
202
|
+
customLiteral: string;
|
|
203
|
+
numberLiteral: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
declare const webgalWhiteTheme: {
|
|
207
|
+
inherit: boolean;
|
|
208
|
+
base: string;
|
|
209
|
+
colors: {
|
|
210
|
+
focusBorder: string;
|
|
211
|
+
"editor.background": string;
|
|
212
|
+
"editor.foreground": string;
|
|
213
|
+
"editor.lineHighlightBackground": string;
|
|
214
|
+
"editorIndentGuide.background": string;
|
|
215
|
+
"editorLineNumber.foreground": string;
|
|
216
|
+
"editorBracketMatch.background": string;
|
|
217
|
+
"editorBracketMatch.border": string;
|
|
218
|
+
"statusBar.foreground": string;
|
|
219
|
+
"statusBar.noFolderForeground": string;
|
|
220
|
+
"statusBar.background": string;
|
|
221
|
+
"statusBar.noFolderBackground": string;
|
|
222
|
+
"statusBar.border": string;
|
|
223
|
+
"statusBar.debuggingBackground": string;
|
|
224
|
+
"statusBar.debuggingForeground": string;
|
|
225
|
+
"activityBarBadge.background": string;
|
|
226
|
+
"sideBar.foreground": string;
|
|
227
|
+
"sideBar.border": string;
|
|
228
|
+
"sideBarTitle.foreground": string;
|
|
229
|
+
"sideBarSectionHeader.background": string;
|
|
230
|
+
"sideBarSectionHeader.foreground": string;
|
|
231
|
+
"editorGroupHeader.tabsBorder": string;
|
|
232
|
+
"tab.activeBorder": string;
|
|
233
|
+
"tab.inactiveForeground": string;
|
|
234
|
+
"scrollbar.shadow": string;
|
|
235
|
+
"activityBar.background": string;
|
|
236
|
+
"activityBar.foreground": string;
|
|
237
|
+
"activityBar.inactiveForeground": string;
|
|
238
|
+
"activityBar.border": string;
|
|
239
|
+
"sideBar.background": string;
|
|
240
|
+
"tab.inactiveBackground": string;
|
|
241
|
+
"breadcrumb.background": string;
|
|
242
|
+
"tab.border": string;
|
|
243
|
+
"tab.hoverBackground": string;
|
|
244
|
+
"tab.activeBackground": string;
|
|
245
|
+
"editorGroupHeader.tabsBackground": string;
|
|
246
|
+
"titleBar.activeBackground": string;
|
|
247
|
+
"titleBar.inactiveBackground": string;
|
|
248
|
+
"titleBar.border": string;
|
|
249
|
+
"editorIndentGuide.activeBackground": string;
|
|
250
|
+
"terminal.foreground": string;
|
|
251
|
+
"terminalCursor.background": string;
|
|
252
|
+
"terminalCursor.foreground": string;
|
|
253
|
+
"terminal.ansiBlack": string;
|
|
254
|
+
"terminal.ansiBlue": string;
|
|
255
|
+
"terminal.ansiBrightBlack": string;
|
|
256
|
+
"terminal.ansiBrightBlue": string;
|
|
257
|
+
"terminal.ansiBrightCyan": string;
|
|
258
|
+
"terminal.ansiBrightGreen": string;
|
|
259
|
+
"terminal.ansiBrightMagenta": string;
|
|
260
|
+
"terminal.ansiBrightRed": string;
|
|
261
|
+
"terminal.ansiBrightWhite": string;
|
|
262
|
+
"terminal.ansiBrightYellow": string;
|
|
263
|
+
"terminal.ansiCyan": string;
|
|
264
|
+
"terminal.ansiGreen": string;
|
|
265
|
+
"terminal.ansiMagenta": string;
|
|
266
|
+
"terminal.ansiRed": string;
|
|
267
|
+
"terminal.ansiWhite": string;
|
|
268
|
+
"terminal.ansiYellow": string;
|
|
269
|
+
};
|
|
270
|
+
rules: ({
|
|
271
|
+
foreground: string;
|
|
272
|
+
token: string;
|
|
273
|
+
fontStyle?: undefined;
|
|
274
|
+
} | {
|
|
275
|
+
fontStyle: string;
|
|
276
|
+
foreground: string;
|
|
277
|
+
token: string;
|
|
278
|
+
} | {
|
|
279
|
+
fontStyle: string;
|
|
280
|
+
token: string;
|
|
281
|
+
foreground?: undefined;
|
|
282
|
+
})[];
|
|
283
|
+
encodedTokensColors: never[];
|
|
284
|
+
};
|
|
285
|
+
//#endregion
|
|
286
|
+
export { webgalDarkTheme, webgalWhiteTheme };
|
package/build/themes.mjs
ADDED