@angular/platform-browser 12.2.0 → 12.2.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.2.0
2
+ * @license Angular v12.2.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/animations.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.0
2
+ * @license Angular v12.2.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.2.0
2
+ * @license Angular v12.2.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.2.0
2
+ * @license Angular v12.2.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.2.0
2
+ * @license Angular v12.2.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -451,9 +451,10 @@
451
451
  // the server.
452
452
  injector.get(i0.ApplicationInitStatus).donePromise.then(function () {
453
453
  var dom = common.ɵgetDOM();
454
- var styles = Array.prototype.slice.apply(document.querySelectorAll("style[ng-transition]"));
455
- styles.filter(function (el) { return el.getAttribute('ng-transition') === transitionId; })
456
- .forEach(function (el) { return dom.remove(el); });
454
+ var styles = document.querySelectorAll("style[ng-transition=\"" + transitionId + "\"]");
455
+ for (var i = 0; i < styles.length; i++) {
456
+ dom.remove(styles[i]);
457
+ }
457
458
  });
458
459
  };
459
460
  }
@@ -2404,7 +2405,7 @@
2404
2405
  /**
2405
2406
  * @publicApi
2406
2407
  */
2407
- var VERSION = new i0.Version('12.2.0');
2408
+ var VERSION = new i0.Version('12.2.4');
2408
2409
 
2409
2410
  /**
2410
2411
  * @license