@angular/compiler-cli 19.2.11 → 19.2.13

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 (32) hide show
  1. package/bundles/{chunk-YBCHZNNP.js → chunk-2PYABK44.js} +3 -3
  2. package/bundles/{chunk-QZPLIVJG.js → chunk-6JLQ22O6.js} +2 -2
  3. package/bundles/{chunk-EGTPNAWG.js → chunk-BSAOKZSO.js} +29 -19
  4. package/bundles/chunk-BSAOKZSO.js.map +6 -0
  5. package/bundles/{chunk-WIAPFYJX.js → chunk-ERYCP7NI.js} +18 -17
  6. package/bundles/chunk-ERYCP7NI.js.map +6 -0
  7. package/bundles/{chunk-PLOJWHUQ.js → chunk-LCO4W4EJ.js} +5 -5
  8. package/bundles/{chunk-ARPXJQKJ.js → chunk-LHXVN5NW.js} +3 -3
  9. package/bundles/{chunk-OWM3CFGF.js → chunk-Y7CS6SFM.js} +2 -2
  10. package/bundles/{chunk-4GCU2QCV.js → chunk-YSO53PBA.js} +2 -2
  11. package/bundles/index.js +9 -7
  12. package/bundles/index.js.map +1 -1
  13. package/bundles/linker/babel/index.js +3 -3
  14. package/bundles/linker/index.js +3 -3
  15. package/bundles/private/localize.js +3 -1
  16. package/bundles/private/migrations.js +3 -3
  17. package/bundles/private/tooling.js +5 -5
  18. package/bundles/src/bin/ng_xi18n.js +6 -6
  19. package/bundles/src/bin/ngc.js +6 -6
  20. package/bundles_metadata.json +1 -1
  21. package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
  22. package/package.json +2 -2
  23. package/src/ngtsc/file_system/index.d.ts +1 -0
  24. package/src/ngtsc/typecheck/src/checker.d.ts +2 -1
  25. package/bundles/chunk-EGTPNAWG.js.map +0 -6
  26. package/bundles/chunk-WIAPFYJX.js.map +0 -6
  27. /package/bundles/{chunk-YBCHZNNP.js.map → chunk-2PYABK44.js.map} +0 -0
  28. /package/bundles/{chunk-QZPLIVJG.js.map → chunk-6JLQ22O6.js.map} +0 -0
  29. /package/bundles/{chunk-PLOJWHUQ.js.map → chunk-LCO4W4EJ.js.map} +0 -0
  30. /package/bundles/{chunk-ARPXJQKJ.js.map → chunk-LHXVN5NW.js.map} +0 -0
  31. /package/bundles/{chunk-OWM3CFGF.js.map → chunk-Y7CS6SFM.js.map} +0 -0
  32. /package/bundles/{chunk-4GCU2QCV.js.map → chunk-YSO53PBA.js.map} +0 -0
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
9
9
  import { AstObject, AstValue } from '../../ast/ast_value';
10
- export declare const PLACEHOLDER_VERSION = "19.2.11";
10
+ export declare const PLACEHOLDER_VERSION = "19.2.13";
11
11
  export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
12
12
  /**
13
13
  * Parses the value of an enum from the AST value's symbol name.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler-cli",
3
- "version": "19.2.11",
3
+ "version": "19.2.13",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -53,7 +53,7 @@
53
53
  "yargs": "^17.2.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@angular/compiler": "19.2.11",
56
+ "@angular/compiler": "19.2.13",
57
57
  "typescript": ">=5.5 <5.9"
58
58
  },
59
59
  "devDependencies": {
@@ -12,3 +12,4 @@ export { NodeJSFileSystem } from './src/node_js_file_system';
12
12
  export { AbsoluteFsPath, FileStats, FileSystem, PathManipulation, PathSegment, PathString, ReadonlyFileSystem, } from './src/types';
13
13
  export { getSourceFileOrError } from './src/util';
14
14
  export { createFileSystemTsReadDirectoryFn } from './src/ts_read_directory';
15
+ export { InvalidFileSystem } from './src/invalid_file_system';
@@ -74,6 +74,7 @@ export declare class TemplateTypeCheckerImpl implements TemplateTypeChecker {
74
74
  */
75
75
  private elementTagCache;
76
76
  private isComplete;
77
+ private priorResultsAdopted;
77
78
  constructor(originalProgram: ts.Program, programDriver: ProgramDriver, typeCheckAdapter: ProgramTypeCheckAdapter, config: TypeCheckingConfig, refEmitter: ReferenceEmitter, reflector: ReflectionHost, compilerHost: Pick<ts.CompilerHost, 'getCanonicalFileName'>, priorBuild: IncrementalBuild<unknown, FileTypeCheckingData>, metaReader: MetadataReader, localMetaReader: MetadataReaderWithIndex, ngModuleIndex: NgModuleIndex, componentScopeReader: ComponentScopeReader, typeCheckScopeRegistry: TypeCheckScopeRegistry, perf: PerfRecorder);
78
79
  getTemplate(component: ts.ClassDeclaration, optimizeFor?: OptimizeFor): TmplAstNode[] | null;
79
80
  getUsedDirectives(component: ts.ClassDeclaration): TypeCheckableDirectiveMeta[] | null;
@@ -103,7 +104,7 @@ export declare class TemplateTypeCheckerImpl implements TemplateTypeChecker {
103
104
  sourceFile: ts.SourceFile;
104
105
  }[]): NgTemplateDiagnostic<T>;
105
106
  private getOrCreateCompletionEngine;
106
- private maybeAdoptPriorResultsForFile;
107
+ private maybeAdoptPriorResults;
107
108
  private ensureAllShimsForAllFiles;
108
109
  private ensureAllShimsForOneFile;
109
110
  private ensureShimForComponent;