@angular/upgrade 16.2.1 → 16.2.3

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.2.1
2
+ * @license Angular v16.2.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -17,7 +17,7 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
17
17
  /**
18
18
  * @publicApi
19
19
  */
20
- const VERSION = new Version('16.2.1');
20
+ const VERSION = new Version('16.2.3');
21
21
 
22
22
  function noNg() {
23
23
  throw new Error('AngularJS v1.x is not loaded!');
@@ -1288,10 +1288,10 @@ class UpgradeNg1ComponentAdapter {
1288
1288
  setComponentProperty(name, value) {
1289
1289
  this.destinationObj[this.propertyMap[name]] = value;
1290
1290
  }
1291
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: UpgradeNg1ComponentAdapter, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
1292
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: UpgradeNg1ComponentAdapter, usesOnChanges: true, ngImport: i0 }); }
1291
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: UpgradeNg1ComponentAdapter, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
1292
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: UpgradeNg1ComponentAdapter, usesOnChanges: true, ngImport: i0 }); }
1293
1293
  }
1294
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: UpgradeNg1ComponentAdapter, decorators: [{
1294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: UpgradeNg1ComponentAdapter, decorators: [{
1295
1295
  type: Directive
1296
1296
  }], ctorParameters: function () { return [{ type: UpgradeHelper }, { type: undefined }, { type: undefined }, { type: undefined }, { type: undefined }, { type: undefined }, { type: undefined }, { type: undefined }]; } });
1297
1297
 
@@ -1301,9 +1301,9 @@ let upgradeCount = 0;
1301
1301
  *
1302
1302
  * The `UpgradeAdapter` allows:
1303
1303
  * 1. creation of Angular component from AngularJS component directive
1304
- * (See [UpgradeAdapter#upgradeNg1Component()])
1304
+ * (See {@link UpgradeAdapter#upgradeNg1Component})
1305
1305
  * 2. creation of AngularJS directive from Angular component.
1306
- * (See [UpgradeAdapter#downgradeNg2Component()])
1306
+ * (See {@link UpgradeAdapter#downgradeNg2Component})
1307
1307
  * 3. Bootstrapping of a hybrid Angular application which contains both of the frameworks
1308
1308
  * coexisting in a single application.
1309
1309
  *