@angular/core 12.0.3 → 12.0.4

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 v12.0.3
2
+ * @license Angular v12.0.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.3
2
+ * @license Angular v12.0.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -6888,6 +6888,10 @@
6888
6888
  /**
6889
6889
  * Defines a schema that allows any property on any element.
6890
6890
  *
6891
+ * This schema allows you to ignore the errors related to any unknown elements or properties in a
6892
+ * template. The usage of this schema is generally discouraged because it prevents useful validation
6893
+ * and may hide real errors in your template. Consider using the `CUSTOM_ELEMENTS_SCHEMA` instead.
6894
+ *
6891
6895
  * @publicApi
6892
6896
  */
6893
6897
  var NO_ERRORS_SCHEMA = {
@@ -21791,6 +21795,9 @@
21791
21795
  * then use the factory's `create()` method to create a component of that type.
21792
21796
  *
21793
21797
  * @see [Dynamic Components](guide/dynamic-component-loader)
21798
+ * @see [Usage Example](guide/dynamic-component-loader#resolving-components)
21799
+ * @see <live-example name="dynamic-component-loader" noDownload></live-example>
21800
+ of the code in this cookbook
21794
21801
  * @publicApi
21795
21802
  */
21796
21803
  var ComponentFactoryResolver = /** @class */ (function () {
@@ -22031,7 +22038,7 @@
22031
22038
  /**
22032
22039
  * @publicApi
22033
22040
  */
22034
- var VERSION = new Version('12.0.3');
22041
+ var VERSION = new Version('12.0.4');
22035
22042
 
22036
22043
  /**
22037
22044
  * @license