@angular/platform-browser 14.0.0-next.9 → 14.0.0-rc.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.
Files changed (35) hide show
  1. package/animations/{animations.d.ts → index.d.ts} +155 -154
  2. package/esm2020/animations/src/animation_builder.mjs +3 -3
  3. package/esm2020/animations/src/animation_renderer.mjs +3 -3
  4. package/esm2020/animations/src/module.mjs +8 -8
  5. package/esm2020/animations/src/providers.mjs +3 -3
  6. package/esm2020/src/browser/meta.mjs +3 -3
  7. package/esm2020/src/browser/testability.mjs +2 -5
  8. package/esm2020/src/browser/title.mjs +3 -3
  9. package/esm2020/src/browser/transfer_state.mjs +8 -8
  10. package/esm2020/src/browser/xhr.mjs +3 -3
  11. package/esm2020/src/browser.mjs +111 -19
  12. package/esm2020/src/dom/dom_renderer.mjs +3 -3
  13. package/esm2020/src/dom/events/dom_events.mjs +3 -3
  14. package/esm2020/src/dom/events/event_manager.mjs +3 -3
  15. package/esm2020/src/dom/events/hammer_gestures.mjs +10 -10
  16. package/esm2020/src/dom/events/key_events.mjs +3 -3
  17. package/esm2020/src/dom/shared_styles_host.mjs +6 -6
  18. package/esm2020/src/platform-browser.mjs +2 -2
  19. package/esm2020/src/security/dom_sanitization_service.mjs +12 -12
  20. package/esm2020/src/version.mjs +1 -1
  21. package/esm2020/testing/src/browser.mjs +4 -4
  22. package/esm2020/testing/src/matchers.mjs +1 -18
  23. package/fesm2015/animations.mjs +18 -18
  24. package/fesm2015/platform-browser.mjs +171 -81
  25. package/fesm2015/platform-browser.mjs.map +1 -1
  26. package/fesm2015/testing.mjs +5 -5
  27. package/fesm2020/animations.mjs +18 -18
  28. package/fesm2020/platform-browser.mjs +170 -81
  29. package/fesm2020/platform-browser.mjs.map +1 -1
  30. package/fesm2020/testing.mjs +5 -5
  31. package/{platform-browser.d.ts → index.d.ts} +896 -832
  32. package/package.json +8 -8
  33. package/testing/{testing.d.ts → index.d.ts} +26 -25
  34. package/animations/package.json +0 -10
  35. package/testing/package.json +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/platform-browser",
3
- "version": "14.0.0-next.9",
3
+ "version": "14.0.0-rc.0",
4
4
  "description": "Angular - library for using Angular in a web browser",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,9 +11,9 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/animations": "14.0.0-next.9",
15
- "@angular/core": "14.0.0-next.9",
16
- "@angular/common": "14.0.0-next.9"
14
+ "@angular/animations": "14.0.0-rc.0",
15
+ "@angular/core": "14.0.0-rc.0",
16
+ "@angular/common": "14.0.0-rc.0"
17
17
  },
18
18
  "peerDependenciesMeta": {
19
19
  "@angular/animations": {
@@ -49,7 +49,7 @@
49
49
  "fesm2020": "./fesm2020/platform-browser.mjs",
50
50
  "fesm2015": "./fesm2015/platform-browser.mjs",
51
51
  "esm2020": "./esm2020/platform-browser.mjs",
52
- "typings": "./platform-browser.d.ts",
52
+ "typings": "./index.d.ts",
53
53
  "module": "./fesm2015/platform-browser.mjs",
54
54
  "es2020": "./fesm2020/platform-browser.mjs",
55
55
  "type": "module",
@@ -58,7 +58,7 @@
58
58
  "default": "./package.json"
59
59
  },
60
60
  ".": {
61
- "types": "./platform-browser.d.ts",
61
+ "types": "./index.d.ts",
62
62
  "esm2020": "./esm2020/platform-browser.mjs",
63
63
  "es2020": "./fesm2020/platform-browser.mjs",
64
64
  "es2015": "./fesm2015/platform-browser.mjs",
@@ -66,7 +66,7 @@
66
66
  "default": "./fesm2020/platform-browser.mjs"
67
67
  },
68
68
  "./animations": {
69
- "types": "./animations/animations.d.ts",
69
+ "types": "./animations/index.d.ts",
70
70
  "esm2020": "./esm2020/animations/animations.mjs",
71
71
  "es2020": "./fesm2020/animations.mjs",
72
72
  "es2015": "./fesm2015/animations.mjs",
@@ -74,7 +74,7 @@
74
74
  "default": "./fesm2020/animations.mjs"
75
75
  },
76
76
  "./testing": {
77
- "types": "./testing/testing.d.ts",
77
+ "types": "./testing/index.d.ts",
78
78
  "esm2020": "./esm2020/testing/testing.mjs",
79
79
  "es2020": "./fesm2020/testing.mjs",
80
80
  "es2015": "./fesm2015/testing.mjs",
@@ -1,30 +1,31 @@
1
1
  /**
2
- * @license Angular v14.0.0-next.9
2
+ * @license Angular v14.0.0-rc.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
6
6
 
7
- import * as i0 from '@angular/core';
8
- import * as i1 from '@angular/platform-browser';
9
- import { PlatformRef } from '@angular/core';
10
- import { StaticProvider } from '@angular/core';
11
-
12
- /**
13
- * NgModule for testing.
14
- *
15
- * @publicApi
16
- */
17
- export declare class BrowserTestingModule {
18
- static ɵfac: i0.ɵɵFactoryDeclaration<BrowserTestingModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<BrowserTestingModule, never, never, [typeof i1.BrowserModule]>;
20
- static ɵinj: i0.ɵɵInjectorDeclaration<BrowserTestingModule>;
21
- }
22
-
23
- /**
24
- * Platform for testing
25
- *
26
- * @publicApi
27
- */
28
- export declare const platformBrowserTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
29
-
30
- export { }
7
+
8
+ import * as i0 from '@angular/core';
9
+ import * as i1 from '@angular/platform-browser';
10
+ import { PlatformRef } from '@angular/core';
11
+ import { StaticProvider } from '@angular/core';
12
+
13
+ /**
14
+ * NgModule for testing.
15
+ *
16
+ * @publicApi
17
+ */
18
+ export declare class BrowserTestingModule {
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<BrowserTestingModule, never>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BrowserTestingModule, never, never, [typeof i1.BrowserModule]>;
21
+ static ɵinj: i0.ɵɵInjectorDeclaration<BrowserTestingModule>;
22
+ }
23
+
24
+ /**
25
+ * Platform for testing
26
+ *
27
+ * @publicApi
28
+ */
29
+ export declare const platformBrowserTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
30
+
31
+ export { }
@@ -1,10 +0,0 @@
1
- {
2
- "name": "@angular/platform-browser/animations",
3
- "sideEffects": false,
4
- "fesm2020": "../fesm2020/animations.mjs",
5
- "fesm2015": "../fesm2015/animations.mjs",
6
- "esm2020": "../esm2020/animations/animations.mjs",
7
- "typings": "./animations.d.ts",
8
- "module": "../fesm2015/animations.mjs",
9
- "es2020": "../fesm2020/animations.mjs"
10
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@angular/platform-browser/testing",
3
- "fesm2020": "../fesm2020/testing.mjs",
4
- "fesm2015": "../fesm2015/testing.mjs",
5
- "esm2020": "../esm2020/testing/testing.mjs",
6
- "typings": "./testing.d.ts",
7
- "module": "../fesm2015/testing.mjs",
8
- "es2020": "../fesm2020/testing.mjs"
9
- }