@angular/language-server 21.0.7 → 21.0.9

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 (2) hide show
  1. package/index.js +9 -6
  2. 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 Inc. All Rights Reserved.
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.io/license
371
+ * found in the LICENSE file at https://angular.dev/license
372
372
  */
373
373
  require = requireOverride;
374
374
  //# sourceMappingURL=banner.js.map
@@ -31122,6 +31122,7 @@ var require_completion = __commonJS({
31122
31122
  CompletionKind2["reference"] = "reference";
31123
31123
  CompletionKind2["variable"] = "variable";
31124
31124
  CompletionKind2["entity"] = "entity";
31125
+ CompletionKind2["enumMember"] = "enum member";
31125
31126
  })(CompletionKind || (CompletionKind = {}));
31126
31127
  function readNgCompletionData(item) {
31127
31128
  if (item.data === void 0) {
@@ -31156,6 +31157,8 @@ var require_completion = __commonJS({
31156
31157
  return lsp.CompletionItemKind.Variable;
31157
31158
  case CompletionKind.block:
31158
31159
  return lsp.CompletionItemKind.Keyword;
31160
+ case CompletionKind.enumMember:
31161
+ return lsp.CompletionItemKind.EnumMember;
31159
31162
  case CompletionKind.entity:
31160
31163
  default:
31161
31164
  return lsp.CompletionItemKind.Text;
@@ -248156,12 +248159,12 @@ function main() {
248156
248159
  session.listen();
248157
248160
  }
248158
248161
  main();
248159
- /**
248162
+ /*!
248160
248163
  * @license
248161
- * Copyright Google Inc. All Rights Reserved.
248164
+ * Copyright Google LLC All Rights Reserved.
248162
248165
  *
248163
248166
  * Use of this source code is governed by an MIT-style license that can be
248164
- * found in the LICENSE file at https://angular.io/license
248167
+ * found in the LICENSE file at https://angular.dev/license
248165
248168
  */
248166
248169
  /*! Bundled license information:
248167
248170
 
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.0.7",
4
+ "version": "21.0.9",
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.0.7",
20
+ "@angular/language-service": "21.0.9",
21
21
  "typescript": "5.9.3"
22
22
  },
23
23
  "devDependencies": {