@angular/compiler 15.1.0-rc.0 → 15.2.0-next.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.
- 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 +8 -8
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2020/compiler.mjs +8 -8
- package/fesm2020/compiler.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2020/compiler.mjs
CHANGED
|
@@ -19913,7 +19913,7 @@ function publishFacade(global) {
|
|
|
19913
19913
|
* @description
|
|
19914
19914
|
* Entry point for all public APIs of the compiler package.
|
|
19915
19915
|
*/
|
|
19916
|
-
const VERSION = new Version('15.
|
|
19916
|
+
const VERSION = new Version('15.2.0-next.0');
|
|
19917
19917
|
|
|
19918
19918
|
class CompilerConfig {
|
|
19919
19919
|
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, useJit = true, missingTranslation = null, preserveWhitespaces, strictInjectionParameters } = {}) {
|
|
@@ -21838,7 +21838,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21838
21838
|
function compileDeclareClassMetadata(metadata) {
|
|
21839
21839
|
const definitionMap = new DefinitionMap();
|
|
21840
21840
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21841
|
-
definitionMap.set('version', literal('15.
|
|
21841
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
21842
21842
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21843
21843
|
definitionMap.set('type', metadata.type);
|
|
21844
21844
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -21941,7 +21941,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
21941
21941
|
function createDirectiveDefinitionMap(meta) {
|
|
21942
21942
|
const definitionMap = new DefinitionMap();
|
|
21943
21943
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
21944
|
-
definitionMap.set('version', literal('15.
|
|
21944
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
21945
21945
|
// e.g. `type: MyDirective`
|
|
21946
21946
|
definitionMap.set('type', meta.internalType);
|
|
21947
21947
|
if (meta.isStandalone) {
|
|
@@ -22166,7 +22166,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22166
22166
|
function compileDeclareFactoryFunction(meta) {
|
|
22167
22167
|
const definitionMap = new DefinitionMap();
|
|
22168
22168
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22169
|
-
definitionMap.set('version', literal('15.
|
|
22169
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
22170
22170
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22171
22171
|
definitionMap.set('type', meta.internalType);
|
|
22172
22172
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22201,7 +22201,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22201
22201
|
function createInjectableDefinitionMap(meta) {
|
|
22202
22202
|
const definitionMap = new DefinitionMap();
|
|
22203
22203
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22204
|
-
definitionMap.set('version', literal('15.
|
|
22204
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
22205
22205
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22206
22206
|
definitionMap.set('type', meta.internalType);
|
|
22207
22207
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22252,7 +22252,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22252
22252
|
function createInjectorDefinitionMap(meta) {
|
|
22253
22253
|
const definitionMap = new DefinitionMap();
|
|
22254
22254
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22255
|
-
definitionMap.set('version', literal('15.
|
|
22255
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
22256
22256
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22257
22257
|
definitionMap.set('type', meta.internalType);
|
|
22258
22258
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22282,7 +22282,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22282
22282
|
function createNgModuleDefinitionMap(meta) {
|
|
22283
22283
|
const definitionMap = new DefinitionMap();
|
|
22284
22284
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22285
|
-
definitionMap.set('version', literal('15.
|
|
22285
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
22286
22286
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22287
22287
|
definitionMap.set('type', meta.internalType);
|
|
22288
22288
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22333,7 +22333,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22333
22333
|
function createPipeDefinitionMap(meta) {
|
|
22334
22334
|
const definitionMap = new DefinitionMap();
|
|
22335
22335
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22336
|
-
definitionMap.set('version', literal('15.
|
|
22336
|
+
definitionMap.set('version', literal('15.2.0-next.0'));
|
|
22337
22337
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22338
22338
|
// e.g. `type: MyPipe`
|
|
22339
22339
|
definitionMap.set('type', meta.internalType);
|