@angular/language-server 21.1.0-next.4 → 21.1.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/index.js +9 -6
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -363,12 +363,12 @@ function requireOverride(moduleName) {
|
|
|
363
363
|
return originalRequire(moduleName);
|
|
364
364
|
}
|
|
365
365
|
requireOverride.resolve = originalRequire.resolve;
|
|
366
|
-
|
|
366
|
+
/*!
|
|
367
367
|
* @license
|
|
368
|
-
* Copyright Google
|
|
368
|
+
* Copyright Google LLC All Rights Reserved.
|
|
369
369
|
*
|
|
370
370
|
* Use of this source code is governed by an MIT-style license that can be
|
|
371
|
-
* found in the LICENSE file at https://angular.
|
|
371
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
372
372
|
*/
|
|
373
373
|
require = requireOverride;
|
|
374
374
|
//# sourceMappingURL=banner.js.map
|
|
@@ -31169,6 +31169,7 @@ var require_completion = __commonJS({
|
|
|
31169
31169
|
CompletionKind2["reference"] = "reference";
|
|
31170
31170
|
CompletionKind2["variable"] = "variable";
|
|
31171
31171
|
CompletionKind2["entity"] = "entity";
|
|
31172
|
+
CompletionKind2["enumMember"] = "enum member";
|
|
31172
31173
|
})(CompletionKind || (CompletionKind = {}));
|
|
31173
31174
|
function readNgCompletionData(item) {
|
|
31174
31175
|
if (item.data === void 0) {
|
|
@@ -31203,6 +31204,8 @@ var require_completion = __commonJS({
|
|
|
31203
31204
|
return lsp.CompletionItemKind.Variable;
|
|
31204
31205
|
case CompletionKind.block:
|
|
31205
31206
|
return lsp.CompletionItemKind.Keyword;
|
|
31207
|
+
case CompletionKind.enumMember:
|
|
31208
|
+
return lsp.CompletionItemKind.EnumMember;
|
|
31206
31209
|
case CompletionKind.entity:
|
|
31207
31210
|
default:
|
|
31208
31211
|
return lsp.CompletionItemKind.Text;
|
|
@@ -248203,12 +248206,12 @@ function main() {
|
|
|
248203
248206
|
session.listen();
|
|
248204
248207
|
}
|
|
248205
248208
|
main();
|
|
248206
|
-
|
|
248209
|
+
/*!
|
|
248207
248210
|
* @license
|
|
248208
|
-
* Copyright Google
|
|
248211
|
+
* Copyright Google LLC All Rights Reserved.
|
|
248209
248212
|
*
|
|
248210
248213
|
* Use of this source code is governed by an MIT-style license that can be
|
|
248211
|
-
* found in the LICENSE file at https://angular.
|
|
248214
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
248212
248215
|
*/
|
|
248213
248216
|
/*! Bundled license information:
|
|
248214
248217
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/language-server",
|
|
3
3
|
"description": "LSP server for Angular Language Service",
|
|
4
|
-
"version": "21.1.0
|
|
4
|
+
"version": "21.1.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/angular/angular.git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"ngserver": "./bin/ngserver"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@angular/language-service": "21.1.0
|
|
20
|
+
"@angular/language-service": "21.1.0",
|
|
21
21
|
"typescript": "5.9.3"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|