@angular/language-service 14.0.4 → 14.0.5

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * @license Angular v14.0.4
3
+ * @license Angular v14.0.5
4
4
  * Copyright Google LLC All Rights Reserved.
5
5
  * License: MIT
6
6
  */
@@ -19549,7 +19549,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
19549
19549
  * Use of this source code is governed by an MIT-style license that can be
19550
19550
  * found in the LICENSE file at https://angular.io/license
19551
19551
  */
19552
- new Version('14.0.4');
19552
+ new Version('14.0.5');
19553
19553
 
19554
19554
  /**
19555
19555
  * @license
@@ -20109,7 +20109,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20109
20109
  function compileDeclareClassMetadata(metadata) {
20110
20110
  const definitionMap = new DefinitionMap();
20111
20111
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$6));
20112
- definitionMap.set('version', literal$1('14.0.4'));
20112
+ definitionMap.set('version', literal$1('14.0.5'));
20113
20113
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20114
20114
  definitionMap.set('type', metadata.type);
20115
20115
  definitionMap.set('decorators', metadata.decorators);
@@ -20226,7 +20226,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20226
20226
  function createDirectiveDefinitionMap(meta) {
20227
20227
  const definitionMap = new DefinitionMap();
20228
20228
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$5));
20229
- definitionMap.set('version', literal$1('14.0.4'));
20229
+ definitionMap.set('version', literal$1('14.0.5'));
20230
20230
  // e.g. `type: MyDirective`
20231
20231
  definitionMap.set('type', meta.internalType);
20232
20232
  if (meta.isStandalone) {
@@ -20437,7 +20437,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20437
20437
  function compileDeclareFactoryFunction(meta) {
20438
20438
  const definitionMap = new DefinitionMap();
20439
20439
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$4));
20440
- definitionMap.set('version', literal$1('14.0.4'));
20440
+ definitionMap.set('version', literal$1('14.0.5'));
20441
20441
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20442
20442
  definitionMap.set('type', meta.internalType);
20443
20443
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -20479,7 +20479,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20479
20479
  function createInjectableDefinitionMap(meta) {
20480
20480
  const definitionMap = new DefinitionMap();
20481
20481
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$3));
20482
- definitionMap.set('version', literal$1('14.0.4'));
20482
+ definitionMap.set('version', literal$1('14.0.5'));
20483
20483
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20484
20484
  definitionMap.set('type', meta.internalType);
20485
20485
  // Only generate providedIn property if it has a non-null value
@@ -20537,7 +20537,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20537
20537
  function createInjectorDefinitionMap(meta) {
20538
20538
  const definitionMap = new DefinitionMap();
20539
20539
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$2));
20540
- definitionMap.set('version', literal$1('14.0.4'));
20540
+ definitionMap.set('version', literal$1('14.0.5'));
20541
20541
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20542
20542
  definitionMap.set('type', meta.internalType);
20543
20543
  definitionMap.set('providers', meta.providers);
@@ -20574,7 +20574,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20574
20574
  function createNgModuleDefinitionMap(meta) {
20575
20575
  const definitionMap = new DefinitionMap();
20576
20576
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$1));
20577
- definitionMap.set('version', literal$1('14.0.4'));
20577
+ definitionMap.set('version', literal$1('14.0.5'));
20578
20578
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20579
20579
  definitionMap.set('type', meta.internalType);
20580
20580
  // We only generate the keys in the metadata if the arrays contain values.
@@ -20632,7 +20632,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20632
20632
  function createPipeDefinitionMap(meta) {
20633
20633
  const definitionMap = new DefinitionMap();
20634
20634
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION));
20635
- definitionMap.set('version', literal$1('14.0.4'));
20635
+ definitionMap.set('version', literal$1('14.0.5'));
20636
20636
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20637
20637
  // e.g. `type: MyPipe`
20638
20638
  definitionMap.set('type', meta.internalType);
@@ -20667,7 +20667,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20667
20667
  * Use of this source code is governed by an MIT-style license that can be
20668
20668
  * found in the LICENSE file at https://angular.io/license
20669
20669
  */
20670
- new Version('14.0.4');
20670
+ new Version('14.0.5');
20671
20671
 
20672
20672
  /**
20673
20673
  * @license
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/language-service",
3
- "version": "14.0.4",
3
+ "version": "14.0.5",
4
4
  "description": "Angular - language services",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",