@angular/core 16.0.5 → 16.0.6

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.5
2
+ * @license Angular v16.0.6
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -7143,6 +7143,7 @@ declare interface RElement extends RNode {
7143
7143
  className: string;
7144
7144
  tagName: string;
7145
7145
  textContent: string | null;
7146
+ hasAttribute(name: string): boolean;
7146
7147
  getAttribute(name: string): string | null;
7147
7148
  setAttribute(name: string, value: string | TrustedHTML | TrustedScript | TrustedScriptURL): void;
7148
7149
  removeAttribute(name: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "16.0.5",
3
+ "version": "16.0.6",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.5
2
+ * @license Angular v16.0.6
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -18550,7 +18550,7 @@ function publishFacade(global2) {
18550
18550
  }
18551
18551
 
18552
18552
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
18553
- var VERSION2 = new Version("16.0.5");
18553
+ var VERSION2 = new Version("16.0.6");
18554
18554
 
18555
18555
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
18556
18556
  var _I18N_ATTR = "i18n";
@@ -19869,7 +19869,7 @@ var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
19869
19869
  function compileDeclareClassMetadata(metadata) {
19870
19870
  const definitionMap = new DefinitionMap();
19871
19871
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
19872
- definitionMap.set("version", literal("16.0.5"));
19872
+ definitionMap.set("version", literal("16.0.6"));
19873
19873
  definitionMap.set("ngImport", importExpr(Identifiers.core));
19874
19874
  definitionMap.set("type", metadata.type);
19875
19875
  definitionMap.set("decorators", metadata.decorators);
@@ -19938,7 +19938,7 @@ function createDirectiveDefinitionMap(meta) {
19938
19938
  var _a2;
19939
19939
  const definitionMap = new DefinitionMap();
19940
19940
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
19941
- definitionMap.set("version", literal("16.0.5"));
19941
+ definitionMap.set("version", literal("16.0.6"));
19942
19942
  definitionMap.set("type", meta.type.value);
19943
19943
  if (meta.isStandalone) {
19944
19944
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -20120,7 +20120,7 @@ var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
20120
20120
  function compileDeclareFactoryFunction(meta) {
20121
20121
  const definitionMap = new DefinitionMap();
20122
20122
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
20123
- definitionMap.set("version", literal("16.0.5"));
20123
+ definitionMap.set("version", literal("16.0.6"));
20124
20124
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20125
20125
  definitionMap.set("type", meta.type.value);
20126
20126
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -20143,7 +20143,7 @@ function compileDeclareInjectableFromMetadata(meta) {
20143
20143
  function createInjectableDefinitionMap(meta) {
20144
20144
  const definitionMap = new DefinitionMap();
20145
20145
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
20146
- definitionMap.set("version", literal("16.0.5"));
20146
+ definitionMap.set("version", literal("16.0.6"));
20147
20147
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20148
20148
  definitionMap.set("type", meta.type.value);
20149
20149
  if (meta.providedIn !== void 0) {
@@ -20181,7 +20181,7 @@ function compileDeclareInjectorFromMetadata(meta) {
20181
20181
  function createInjectorDefinitionMap(meta) {
20182
20182
  const definitionMap = new DefinitionMap();
20183
20183
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
20184
- definitionMap.set("version", literal("16.0.5"));
20184
+ definitionMap.set("version", literal("16.0.6"));
20185
20185
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20186
20186
  definitionMap.set("type", meta.type.value);
20187
20187
  definitionMap.set("providers", meta.providers);
@@ -20202,7 +20202,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
20202
20202
  function createNgModuleDefinitionMap(meta) {
20203
20203
  const definitionMap = new DefinitionMap();
20204
20204
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
20205
- definitionMap.set("version", literal("16.0.5"));
20205
+ definitionMap.set("version", literal("16.0.6"));
20206
20206
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20207
20207
  definitionMap.set("type", meta.type.value);
20208
20208
  if (meta.bootstrap.length > 0) {
@@ -20237,7 +20237,7 @@ function compileDeclarePipeFromMetadata(meta) {
20237
20237
  function createPipeDefinitionMap(meta) {
20238
20238
  const definitionMap = new DefinitionMap();
20239
20239
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
20240
- definitionMap.set("version", literal("16.0.5"));
20240
+ definitionMap.set("version", literal("16.0.6"));
20241
20241
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20242
20242
  definitionMap.set("type", meta.type.value);
20243
20243
  if (meta.isStandalone) {
@@ -20254,7 +20254,7 @@ function createPipeDefinitionMap(meta) {
20254
20254
  publishFacade(_global);
20255
20255
 
20256
20256
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
20257
- var VERSION3 = new Version("16.0.5");
20257
+ var VERSION3 = new Version("16.0.6");
20258
20258
 
20259
20259
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
20260
20260
  var EmitFlags;