@angular/platform-browser 12.2.1 → 12.2.5
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/animations.d.ts +1 -1
- package/animations.d.ts +1 -1
- package/bundles/platform-browser-animations.umd.js +1 -1
- package/bundles/platform-browser-testing.umd.js +1 -1
- package/bundles/platform-browser.umd.js +6 -5
- package/bundles/platform-browser.umd.js.map +1 -1
- package/esm2015/src/browser/server-transition.js +5 -4
- package/esm2015/src/version.js +1 -1
- package/fesm2015/animations.js +1 -1
- package/fesm2015/platform-browser.js +6 -5
- package/fesm2015/platform-browser.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +4 -4
- package/platform-browser.d.ts +1 -1
- package/platform-browser.metadata.json +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/animations.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v12.2.
|
2
|
+
* @license Angular v12.2.5
|
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 =
|
455
|
-
|
456
|
-
|
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.
|
2408
|
+
var VERSION = new i0.Version('12.2.5');
|
2408
2409
|
|
2409
2410
|
/**
|
2410
2411
|
* @license
|