@angular/core 11.1.0 → 11.1.1
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-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +65 -47
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +106 -106
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +10 -2
- package/core.metadata.json +1 -1
- package/esm2015/src/linker/compiler.js +2 -2
- package/esm2015/src/render3/di.js +17 -32
- package/esm2015/src/render3/instructions/lview_debug.js +24 -4
- package/esm2015/src/render3/interfaces/view.js +1 -1
- package/esm2015/src/util/dom.js +25 -12
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +65 -47
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/schematics/migrations/static-queries/index.js +3 -8
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v11.1.
|
|
2
|
+
* @license Angular v11.1.1
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1611,6 +1611,10 @@ declare interface DebugNode_2 {
|
|
|
1611
1611
|
* HTML representation of the node.
|
|
1612
1612
|
*/
|
|
1613
1613
|
html: string | null;
|
|
1614
|
+
/**
|
|
1615
|
+
* Associated `TNode`
|
|
1616
|
+
*/
|
|
1617
|
+
tNode: TNode;
|
|
1614
1618
|
/**
|
|
1615
1619
|
* Human readable node type.
|
|
1616
1620
|
*/
|
|
@@ -1635,6 +1639,10 @@ declare interface DebugNode_2 {
|
|
|
1635
1639
|
* NodeInjector information.
|
|
1636
1640
|
*/
|
|
1637
1641
|
injector: NodeInjectorDebug;
|
|
1642
|
+
/**
|
|
1643
|
+
* Injector resolution path.
|
|
1644
|
+
*/
|
|
1645
|
+
injectorResolutionPath: any;
|
|
1638
1646
|
}
|
|
1639
1647
|
|
|
1640
1648
|
declare class DebugNode__POST_R3__ implements DebugNode {
|
|
@@ -4232,7 +4240,7 @@ export declare enum MissingTranslationStrategy {
|
|
|
4232
4240
|
}
|
|
4233
4241
|
|
|
4234
4242
|
/**
|
|
4235
|
-
* Combination of NgModuleFactory and
|
|
4243
|
+
* Combination of NgModuleFactory and ComponentFactories.
|
|
4236
4244
|
*
|
|
4237
4245
|
* @publicApi
|
|
4238
4246
|
*/
|