@angular/compiler 16.0.0-next.1 → 16.0.0-next.2
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/index.d.ts +1 -1
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2015/testing.mjs
CHANGED
package/fesm2020/compiler.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19887,7 +19887,7 @@ function publishFacade(global) {
|
|
|
19887
19887
|
* @description
|
|
19888
19888
|
* Entry point for all public APIs of the compiler package.
|
|
19889
19889
|
*/
|
|
19890
|
-
const VERSION = new Version('16.0.0-next.
|
|
19890
|
+
const VERSION = new Version('16.0.0-next.2');
|
|
19891
19891
|
|
|
19892
19892
|
class CompilerConfig {
|
|
19893
19893
|
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, useJit = true, missingTranslation = null, preserveWhitespaces, strictInjectionParameters } = {}) {
|
|
@@ -21811,7 +21811,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21811
21811
|
function compileDeclareClassMetadata(metadata) {
|
|
21812
21812
|
const definitionMap = new DefinitionMap();
|
|
21813
21813
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21814
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
21814
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
21815
21815
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21816
21816
|
definitionMap.set('type', metadata.type);
|
|
21817
21817
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -21914,7 +21914,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
21914
21914
|
function createDirectiveDefinitionMap(meta) {
|
|
21915
21915
|
const definitionMap = new DefinitionMap();
|
|
21916
21916
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
21917
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
21917
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
21918
21918
|
// e.g. `type: MyDirective`
|
|
21919
21919
|
definitionMap.set('type', meta.internalType);
|
|
21920
21920
|
if (meta.isStandalone) {
|
|
@@ -22139,7 +22139,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22139
22139
|
function compileDeclareFactoryFunction(meta) {
|
|
22140
22140
|
const definitionMap = new DefinitionMap();
|
|
22141
22141
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22142
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
22142
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
22143
22143
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22144
22144
|
definitionMap.set('type', meta.internalType);
|
|
22145
22145
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22174,7 +22174,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22174
22174
|
function createInjectableDefinitionMap(meta) {
|
|
22175
22175
|
const definitionMap = new DefinitionMap();
|
|
22176
22176
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22177
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
22177
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
22178
22178
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22179
22179
|
definitionMap.set('type', meta.internalType);
|
|
22180
22180
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22225,7 +22225,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22225
22225
|
function createInjectorDefinitionMap(meta) {
|
|
22226
22226
|
const definitionMap = new DefinitionMap();
|
|
22227
22227
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22228
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
22228
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
22229
22229
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22230
22230
|
definitionMap.set('type', meta.internalType);
|
|
22231
22231
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22255,7 +22255,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22255
22255
|
function createNgModuleDefinitionMap(meta) {
|
|
22256
22256
|
const definitionMap = new DefinitionMap();
|
|
22257
22257
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22258
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
22258
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
22259
22259
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22260
22260
|
definitionMap.set('type', meta.internalType);
|
|
22261
22261
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22306,7 +22306,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22306
22306
|
function createPipeDefinitionMap(meta) {
|
|
22307
22307
|
const definitionMap = new DefinitionMap();
|
|
22308
22308
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22309
|
-
definitionMap.set('version', literal('16.0.0-next.
|
|
22309
|
+
definitionMap.set('version', literal('16.0.0-next.2'));
|
|
22310
22310
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22311
22311
|
// e.g. `type: MyPipe`
|
|
22312
22312
|
definitionMap.set('type', meta.internalType);
|