@angular/compiler 14.0.0-next.8 → 14.0.0-next.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.
- package/esm2020/src/render3/partial/class_metadata.mjs +1 -1
- package/esm2020/src/render3/partial/directive.mjs +1 -1
- package/esm2020/src/render3/partial/factory.mjs +1 -1
- package/esm2020/src/render3/partial/injectable.mjs +1 -1
- package/esm2020/src/render3/partial/injector.mjs +1 -1
- package/esm2020/src/render3/partial/ng_module.mjs +1 -1
- package/esm2020/src/render3/partial/pipe.mjs +1 -1
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/compiler.mjs +9 -9
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +9 -9
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION = '12.0.0';
|
|
|
19
19
|
export function compileDeclareClassMetadata(metadata) {
|
|
20
20
|
const definitionMap = new DefinitionMap();
|
|
21
21
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
22
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
23
23
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
24
24
|
definitionMap.set('type', metadata.type);
|
|
25
25
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -35,7 +35,7 @@ export function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
35
35
|
export function createDirectiveDefinitionMap(meta) {
|
|
36
36
|
const definitionMap = new DefinitionMap();
|
|
37
37
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
38
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
38
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
39
39
|
// e.g. `type: MyDirective`
|
|
40
40
|
definitionMap.set('type', meta.internalType);
|
|
41
41
|
// e.g. `selector: 'some-dir'`
|
|
@@ -21,7 +21,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION = '12.0.0';
|
|
|
21
21
|
export function compileDeclareFactoryFunction(meta) {
|
|
22
22
|
const definitionMap = new DefinitionMap();
|
|
23
23
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
24
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
24
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
25
25
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
26
26
|
definitionMap.set('type', meta.internalType);
|
|
27
27
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -34,7 +34,7 @@ export function compileDeclareInjectableFromMetadata(meta) {
|
|
|
34
34
|
export function createInjectableDefinitionMap(meta) {
|
|
35
35
|
const definitionMap = new DefinitionMap();
|
|
36
36
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
37
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
37
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
38
38
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
39
39
|
definitionMap.set('type', meta.internalType);
|
|
40
40
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -29,7 +29,7 @@ export function compileDeclareInjectorFromMetadata(meta) {
|
|
|
29
29
|
function createInjectorDefinitionMap(meta) {
|
|
30
30
|
const definitionMap = new DefinitionMap();
|
|
31
31
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
32
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
32
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
33
33
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
34
34
|
definitionMap.set('type', meta.internalType);
|
|
35
35
|
definitionMap.set('providers', meta.providers);
|
|
@@ -30,7 +30,7 @@ export function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
30
30
|
function createNgModuleDefinitionMap(meta) {
|
|
31
31
|
const definitionMap = new DefinitionMap();
|
|
32
32
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
33
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
33
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
34
34
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
35
35
|
definitionMap.set('type', meta.internalType);
|
|
36
36
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -32,7 +32,7 @@ export function compileDeclarePipeFromMetadata(meta) {
|
|
|
32
32
|
export function createPipeDefinitionMap(meta) {
|
|
33
33
|
const definitionMap = new DefinitionMap();
|
|
34
34
|
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
35
|
-
definitionMap.set('version', o.literal('14.0.0-next.
|
|
35
|
+
definitionMap.set('version', o.literal('14.0.0-next.9'));
|
|
36
36
|
definitionMap.set('ngImport', o.importExpr(R3.core));
|
|
37
37
|
// e.g. `type: MyPipe`
|
|
38
38
|
definitionMap.set('type', meta.internalType);
|
package/esm2020/src/version.mjs
CHANGED
|
@@ -11,5 +11,5 @@
|
|
|
11
11
|
* Entry point for all public APIs of the compiler package.
|
|
12
12
|
*/
|
|
13
13
|
import { Version } from './util';
|
|
14
|
-
export const VERSION = new Version('14.0.0-next.
|
|
14
|
+
export const VERSION = new Version('14.0.0-next.9');
|
|
15
15
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVIOzs7O0dBSUc7QUFFSCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sUUFBUSxDQUFDO0FBRS9CLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbi8qKlxuICogQG1vZHVsZVxuICogQGRlc2NyaXB0aW9uXG4gKiBFbnRyeSBwb2ludCBmb3IgYWxsIHB1YmxpYyBBUElzIG9mIHRoZSBjb21waWxlciBwYWNrYWdlLlxuICovXG5cbmltcG9ydCB7VmVyc2lvbn0gZnJvbSAnLi91dGlsJztcblxuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbignMC4wLjAtUExBQ0VIT0xERVInKTtcbiJdfQ==
|
package/fesm2015/compiler.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.0-next.
|
|
2
|
+
* @license Angular v14.0.0-next.9
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19727,7 +19727,7 @@ function publishFacade(global) {
|
|
|
19727
19727
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19728
19728
|
* found in the LICENSE file at https://angular.io/license
|
|
19729
19729
|
*/
|
|
19730
|
-
const VERSION = new Version('14.0.0-next.
|
|
19730
|
+
const VERSION = new Version('14.0.0-next.9');
|
|
19731
19731
|
|
|
19732
19732
|
/**
|
|
19733
19733
|
* @license
|
|
@@ -21754,7 +21754,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21754
21754
|
function compileDeclareClassMetadata(metadata) {
|
|
21755
21755
|
const definitionMap = new DefinitionMap();
|
|
21756
21756
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21757
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
21757
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
21758
21758
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21759
21759
|
definitionMap.set('type', metadata.type);
|
|
21760
21760
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -21871,7 +21871,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
21871
21871
|
function createDirectiveDefinitionMap(meta) {
|
|
21872
21872
|
const definitionMap = new DefinitionMap();
|
|
21873
21873
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
21874
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
21874
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
21875
21875
|
// e.g. `type: MyDirective`
|
|
21876
21876
|
definitionMap.set('type', meta.internalType);
|
|
21877
21877
|
// e.g. `selector: 'some-dir'`
|
|
@@ -22092,7 +22092,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22092
22092
|
function compileDeclareFactoryFunction(meta) {
|
|
22093
22093
|
const definitionMap = new DefinitionMap();
|
|
22094
22094
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22095
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
22095
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
22096
22096
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22097
22097
|
definitionMap.set('type', meta.internalType);
|
|
22098
22098
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22134,7 +22134,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22134
22134
|
function createInjectableDefinitionMap(meta) {
|
|
22135
22135
|
const definitionMap = new DefinitionMap();
|
|
22136
22136
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22137
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
22137
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
22138
22138
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22139
22139
|
definitionMap.set('type', meta.internalType);
|
|
22140
22140
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22192,7 +22192,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22192
22192
|
function createInjectorDefinitionMap(meta) {
|
|
22193
22193
|
const definitionMap = new DefinitionMap();
|
|
22194
22194
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22195
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
22195
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
22196
22196
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22197
22197
|
definitionMap.set('type', meta.internalType);
|
|
22198
22198
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22229,7 +22229,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22229
22229
|
function createNgModuleDefinitionMap(meta) {
|
|
22230
22230
|
const definitionMap = new DefinitionMap();
|
|
22231
22231
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22232
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
22232
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
22233
22233
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22234
22234
|
definitionMap.set('type', meta.internalType);
|
|
22235
22235
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22287,7 +22287,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22287
22287
|
function createPipeDefinitionMap(meta) {
|
|
22288
22288
|
const definitionMap = new DefinitionMap();
|
|
22289
22289
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22290
|
-
definitionMap.set('version', literal('14.0.0-next.
|
|
22290
|
+
definitionMap.set('version', literal('14.0.0-next.9'));
|
|
22291
22291
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22292
22292
|
// e.g. `type: MyPipe`
|
|
22293
22293
|
definitionMap.set('type', meta.internalType);
|