@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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.0-rc.0
2
+ * @license Angular v12.0.0
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.0-rc.0
2
+ * @license Angular v12.0.0
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.0-rc.0
2
+ * @license Angular v12.0.0
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.0-rc.0
2
+ * @license Angular v12.0.0
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/browser.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.0-rc.0
2
+ * @license Angular v12.0.0
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.0-rc.0
2
+ * @license Angular v12.0.0
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.0-rc.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.parentNode) {
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 an of an
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