@angular/language-service 14.0.0 → 14.0.1

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.0
3
+ * @license Angular v14.0.1
4
4
  * Copyright Google LLC All Rights Reserved.
5
5
  * License: MIT
6
6
  */
@@ -19546,7 +19546,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
19546
19546
  * Use of this source code is governed by an MIT-style license that can be
19547
19547
  * found in the LICENSE file at https://angular.io/license
19548
19548
  */
19549
- new Version('14.0.0');
19549
+ new Version('14.0.1');
19550
19550
 
19551
19551
  /**
19552
19552
  * @license
@@ -20106,7 +20106,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20106
20106
  function compileDeclareClassMetadata(metadata) {
20107
20107
  const definitionMap = new DefinitionMap();
20108
20108
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$6));
20109
- definitionMap.set('version', literal$1('14.0.0'));
20109
+ definitionMap.set('version', literal$1('14.0.1'));
20110
20110
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20111
20111
  definitionMap.set('type', metadata.type);
20112
20112
  definitionMap.set('decorators', metadata.decorators);
@@ -20223,7 +20223,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20223
20223
  function createDirectiveDefinitionMap(meta) {
20224
20224
  const definitionMap = new DefinitionMap();
20225
20225
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$5));
20226
- definitionMap.set('version', literal$1('14.0.0'));
20226
+ definitionMap.set('version', literal$1('14.0.1'));
20227
20227
  // e.g. `type: MyDirective`
20228
20228
  definitionMap.set('type', meta.internalType);
20229
20229
  if (meta.isStandalone) {
@@ -20434,7 +20434,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20434
20434
  function compileDeclareFactoryFunction(meta) {
20435
20435
  const definitionMap = new DefinitionMap();
20436
20436
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$4));
20437
- definitionMap.set('version', literal$1('14.0.0'));
20437
+ definitionMap.set('version', literal$1('14.0.1'));
20438
20438
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20439
20439
  definitionMap.set('type', meta.internalType);
20440
20440
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -20476,7 +20476,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20476
20476
  function createInjectableDefinitionMap(meta) {
20477
20477
  const definitionMap = new DefinitionMap();
20478
20478
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$3));
20479
- definitionMap.set('version', literal$1('14.0.0'));
20479
+ definitionMap.set('version', literal$1('14.0.1'));
20480
20480
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20481
20481
  definitionMap.set('type', meta.internalType);
20482
20482
  // Only generate providedIn property if it has a non-null value
@@ -20534,7 +20534,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20534
20534
  function createInjectorDefinitionMap(meta) {
20535
20535
  const definitionMap = new DefinitionMap();
20536
20536
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$2));
20537
- definitionMap.set('version', literal$1('14.0.0'));
20537
+ definitionMap.set('version', literal$1('14.0.1'));
20538
20538
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20539
20539
  definitionMap.set('type', meta.internalType);
20540
20540
  definitionMap.set('providers', meta.providers);
@@ -20571,7 +20571,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20571
20571
  function createNgModuleDefinitionMap(meta) {
20572
20572
  const definitionMap = new DefinitionMap();
20573
20573
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION$1));
20574
- definitionMap.set('version', literal$1('14.0.0'));
20574
+ definitionMap.set('version', literal$1('14.0.1'));
20575
20575
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20576
20576
  definitionMap.set('type', meta.internalType);
20577
20577
  // We only generate the keys in the metadata if the arrays contain values.
@@ -20629,7 +20629,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20629
20629
  function createPipeDefinitionMap(meta) {
20630
20630
  const definitionMap = new DefinitionMap();
20631
20631
  definitionMap.set('minVersion', literal$1(MINIMUM_PARTIAL_LINKER_VERSION));
20632
- definitionMap.set('version', literal$1('14.0.0'));
20632
+ definitionMap.set('version', literal$1('14.0.1'));
20633
20633
  definitionMap.set('ngImport', importExpr(Identifiers.core));
20634
20634
  // e.g. `type: MyPipe`
20635
20635
  definitionMap.set('type', meta.internalType);
@@ -20664,7 +20664,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
20664
20664
  * Use of this source code is governed by an MIT-style license that can be
20665
20665
  * found in the LICENSE file at https://angular.io/license
20666
20666
  */
20667
- new Version('14.0.0');
20667
+ new Version('14.0.1');
20668
20668
 
20669
20669
  /**
20670
20670
  * @license
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/language-service",
3
- "version": "14.0.0",
3
+ "version": "14.0.1",
4
4
  "description": "Angular - language services",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",