@angular/animations 12.0.0-rc.0 → 12.0.0
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/animations.d.ts +1 -1
- package/browser/browser.d.ts +1 -1
- package/browser/testing/testing.d.ts +1 -1
- package/browser/testing.d.ts +1 -1
- package/browser.d.ts +1 -1
- package/bundles/animations-browser-testing.umd.js +1 -1
- package/bundles/animations-browser.umd.js +3 -3
- package/bundles/animations-browser.umd.js.map +1 -1
- package/bundles/animations.umd.js +1 -1
- package/esm2015/browser/src/render/transition_animation_engine.js +3 -3
- package/esm2015/src/version.js +1 -1
- package/fesm2015/animations.js +1 -1
- package/fesm2015/browser/testing.js +1 -1
- package/fesm2015/browser.js +3 -3
- package/fesm2015/browser.js.map +1 -1
- package/package.json +3 -3
package/animations.d.ts
CHANGED
package/browser/browser.d.ts
CHANGED
package/browser/testing.d.ts
CHANGED
package/browser.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.0.0
|
|
2
|
+
* @license Angular v12.0.0
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3176,7 +3176,7 @@
|
|
|
3176
3176
|
});
|
|
3177
3177
|
TransitionAnimationEngine.prototype.createNamespace = function (namespaceId, hostElement) {
|
|
3178
3178
|
var ns = new AnimationTransitionNamespace(namespaceId, hostElement, this);
|
|
3179
|
-
if (hostElement
|
|
3179
|
+
if (this.bodyNode && this.driver.containsElement(this.bodyNode, hostElement)) {
|
|
3180
3180
|
this._balanceNamespaceList(ns, hostElement);
|
|
3181
3181
|
}
|
|
3182
3182
|
else {
|
|
@@ -3185,7 +3185,7 @@
|
|
|
3185
3185
|
// the namespace list
|
|
3186
3186
|
this.newHostElements.set(hostElement, ns);
|
|
3187
3187
|
// given that this host element is apart of the animation code, it
|
|
3188
|
-
// may or may not be inserted by a parent node that is
|
|
3188
|
+
// may or may not be inserted by a parent node that is of an
|
|
3189
3189
|
// animation renderer type. If this happens then we can still have
|
|
3190
3190
|
// access to this item when we query for :enter nodes. If the parent
|
|
3191
3191
|
// is a renderer then the set data-structure will normalize the entry
|