@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.
- package/bundles/core-testing.umd.js +1 -1
- package/bundles/core.umd.js +9 -2
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +52 -3
- package/core.metadata.json +1 -1
- package/esm2015/src/change_detection/differs/iterable_differs.js +1 -1
- package/esm2015/src/linker/component_factory_resolver.js +4 -1
- package/esm2015/src/metadata/di.js +1 -1
- package/esm2015/src/metadata/ng_module.js +1 -1
- package/esm2015/src/metadata/schema.js +5 -1
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +9 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +4 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/bundles/core.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.0.
|
|
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.
|
|
22041
|
+
var VERSION = new Version('12.0.4');
|
|
22035
22042
|
|
|
22036
22043
|
/**
|
|
22037
22044
|
* @license
|