@angular/compiler-cli 19.1.0-rc.0 → 19.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.
Files changed (39) hide show
  1. package/bundles/{chunk-NLSHLQF3.js → chunk-47HIVWNK.js} +81 -81
  2. package/bundles/{chunk-77D5CI2U.js → chunk-5UDS2TPQ.js} +7 -7
  3. package/bundles/{chunk-FKXFEX7K.js → chunk-GBKXY6BH.js} +3 -3
  4. package/bundles/{chunk-Q2WE7ECN.js → chunk-I6R3GL3L.js} +5 -5
  5. package/bundles/{chunk-T2HQMWRH.js → chunk-KEYCV7GA.js} +31 -31
  6. package/bundles/{chunk-PXMCBAEC.js → chunk-MIGBDOBM.js} +3 -3
  7. package/bundles/{chunk-BG43WWWL.js → chunk-MQBGWKBR.js} +5 -5
  8. package/bundles/{chunk-O7ZKVJOW.js → chunk-OJIDZREH.js} +143 -131
  9. package/bundles/{chunk-O7ZKVJOW.js.map → chunk-OJIDZREH.js.map} +1 -1
  10. package/bundles/{chunk-37JMVF7H.js → chunk-STORTTKY.js} +8 -8
  11. package/bundles/{chunk-FL5MUNIS.js → chunk-VDCSJC7H.js} +12 -12
  12. package/bundles/{chunk-MMGTGRB2.js → chunk-WKHF7UQD.js} +42 -42
  13. package/bundles/index.js +12 -12
  14. package/bundles/linker/babel/index.js +12 -12
  15. package/bundles/linker/index.js +4 -4
  16. package/bundles/ngcc/index.js +1 -1
  17. package/bundles/private/bazel.js +1 -1
  18. package/bundles/private/localize.js +3 -3
  19. package/bundles/private/migrations.js +4 -4
  20. package/bundles/private/tooling.js +6 -6
  21. package/bundles/src/bin/ng_xi18n.js +10 -10
  22. package/bundles/src/bin/ngc.js +8 -8
  23. package/bundles_metadata.json +1 -1
  24. package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
  25. package/package.json +2 -2
  26. package/src/ngtsc/diagnostics/src/error_code.d.ts +1 -1
  27. package/src/ngtsc/reflection/src/host.d.ts +4 -4
  28. package/src/ngtsc/reflection/src/typescript.d.ts +2 -2
  29. package/src/ngtsc/typecheck/api/symbols.d.ts +1 -1
  30. /package/bundles/{chunk-NLSHLQF3.js.map → chunk-47HIVWNK.js.map} +0 -0
  31. /package/bundles/{chunk-77D5CI2U.js.map → chunk-5UDS2TPQ.js.map} +0 -0
  32. /package/bundles/{chunk-FKXFEX7K.js.map → chunk-GBKXY6BH.js.map} +0 -0
  33. /package/bundles/{chunk-Q2WE7ECN.js.map → chunk-I6R3GL3L.js.map} +0 -0
  34. /package/bundles/{chunk-T2HQMWRH.js.map → chunk-KEYCV7GA.js.map} +0 -0
  35. /package/bundles/{chunk-PXMCBAEC.js.map → chunk-MIGBDOBM.js.map} +0 -0
  36. /package/bundles/{chunk-BG43WWWL.js.map → chunk-MQBGWKBR.js.map} +0 -0
  37. /package/bundles/{chunk-37JMVF7H.js.map → chunk-STORTTKY.js.map} +0 -0
  38. /package/bundles/{chunk-FL5MUNIS.js.map → chunk-VDCSJC7H.js.map} +0 -0
  39. /package/bundles/{chunk-MMGTGRB2.js.map → chunk-WKHF7UQD.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.1.0-rc.0";
10
+ export declare const PLACEHOLDER_VERSION = "19.1.0";
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.1.0-rc.0",
3
+ "version": "19.1.0",
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.1.0-rc.0",
56
+ "@angular/compiler": "19.1.0",
57
57
  "typescript": ">=5.5 <5.8"
58
58
  },
59
59
  "repository": {
@@ -224,7 +224,7 @@ export declare enum ErrorCode {
224
224
  * The left-hand side of an assignment expression was a template variable. Effectively, the
225
225
  * template looked like:
226
226
  *
227
- * ```
227
+ * ```html
228
228
  * <ng-template let-something>
229
229
  * <button (click)="something = ...">...</button>
230
230
  * </ng-template>
@@ -128,7 +128,7 @@ export interface ClassMember {
128
128
  *
129
129
  * For example, the TS code:
130
130
  *
131
- * ```
131
+ * ```ts
132
132
  * class Clazz {
133
133
  * static get property(): string {
134
134
  * return 'value';
@@ -138,7 +138,7 @@ export interface ClassMember {
138
138
  *
139
139
  * Downlevels to:
140
140
  *
141
- * ```
141
+ * ```ts
142
142
  * var Clazz = (function () {
143
143
  * function Clazz() {
144
144
  * }
@@ -157,7 +157,7 @@ export interface ClassMember {
157
157
  * Object.defineProperty ExpressionStatement, but the implementation would be this
158
158
  * FunctionDeclaration:
159
159
  *
160
- * ```
160
+ * ```ts
161
161
  * function () {
162
162
  * return 'value';
163
163
  * },
@@ -529,7 +529,7 @@ export interface ReflectionHost {
529
529
  * If the declaration is in a different module, and that module is imported via an absolute path,
530
530
  * this method also returns the absolute path of the imported module. For example, if the code is:
531
531
  *
532
- * ```
532
+ * ```ts
533
533
  * import {RouterModule} from '@angular/core';
534
534
  *
535
535
  * export const ROUTES = RouterModule.forRoot([...]);
@@ -39,13 +39,13 @@ export declare class TypeScriptReflectionHost implements ReflectionHost {
39
39
  *
40
40
  * For example, if the identifier is the `Directive` part of a qualified type chain like:
41
41
  *
42
- * ```
42
+ * ```ts
43
43
  * core.Directive
44
44
  * ```
45
45
  *
46
46
  * then it might be that `core` is a namespace import such as:
47
47
  *
48
- * ```
48
+ * ```ts
49
49
  * import * as core from 'tslib';
50
50
  * ```
51
51
  *
@@ -142,7 +142,7 @@ export interface ReferenceSymbol {
142
142
  /**
143
143
  * The location in the shim file of a variable that holds the type of the local ref.
144
144
  * For example, a reference declaration like the following:
145
- * ```
145
+ * ```ts
146
146
  * var _t1 = document.createElement('div');
147
147
  * var _t2 = _t1; // This is the reference declaration
148
148
  * ```