@angular/platform-browser 7.0.0-rc.1 → 7.0.3

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 (73) hide show
  1. package/animations/src/module.d.ts +2 -2
  2. package/animations/src/providers.d.ts +1 -1
  3. package/bundles/platform-browser-animations.umd.js +4 -4
  4. package/bundles/platform-browser-animations.umd.js.map +1 -1
  5. package/bundles/platform-browser-animations.umd.min.js +1 -1
  6. package/bundles/platform-browser-animations.umd.min.js.map +1 -1
  7. package/bundles/platform-browser-testing.umd.js +3 -3
  8. package/bundles/platform-browser-testing.umd.js.map +1 -1
  9. package/bundles/platform-browser-testing.umd.min.js +1 -1
  10. package/bundles/platform-browser-testing.umd.min.js.map +1 -1
  11. package/bundles/platform-browser.umd.js +32 -23
  12. package/bundles/platform-browser.umd.js.map +1 -1
  13. package/bundles/platform-browser.umd.min.js +2 -2
  14. package/bundles/platform-browser.umd.min.js.map +1 -1
  15. package/esm2015/animations/src/module.js +3 -3
  16. package/esm2015/animations/src/providers.js +2 -2
  17. package/esm2015/src/browser/meta.js +2 -2
  18. package/esm2015/src/browser/title.js +2 -2
  19. package/esm2015/src/browser/tools/common_tools.js +2 -6
  20. package/esm2015/src/browser/tools/tools.js +3 -3
  21. package/esm2015/src/browser/transfer_state.js +4 -4
  22. package/esm2015/src/browser.js +6 -6
  23. package/esm2015/src/dom/debug/by.js +2 -2
  24. package/esm2015/src/dom/dom_tokens.js +2 -1
  25. package/esm2015/src/dom/events/event_manager.js +5 -1
  26. package/esm2015/src/dom/events/hammer_gestures.js +5 -3
  27. package/esm2015/src/dom/events/key_events.js +2 -2
  28. package/esm2015/src/security/dom_sanitization_service.js +8 -8
  29. package/esm2015/src/version.js +5 -3
  30. package/esm2015/testing/src/browser.js +3 -3
  31. package/esm5/animations/src/module.js +3 -3
  32. package/esm5/animations/src/providers.js +2 -2
  33. package/esm5/src/browser/meta.js +2 -2
  34. package/esm5/src/browser/title.js +2 -2
  35. package/esm5/src/browser/tools/common_tools.js +1 -5
  36. package/esm5/src/browser/tools/tools.js +3 -3
  37. package/esm5/src/browser/transfer_state.js +4 -4
  38. package/esm5/src/browser.js +6 -5
  39. package/esm5/src/dom/debug/by.js +2 -2
  40. package/esm5/src/dom/dom_tokens.js +2 -1
  41. package/esm5/src/dom/events/event_manager.js +5 -1
  42. package/esm5/src/dom/events/hammer_gestures.js +8 -4
  43. package/esm5/src/dom/events/key_events.js +2 -2
  44. package/esm5/src/security/dom_sanitization_service.js +2 -2
  45. package/esm5/src/version.js +5 -2
  46. package/esm5/testing/src/browser.js +3 -3
  47. package/fesm2015/animations.js +4 -4
  48. package/fesm2015/animations.js.map +1 -1
  49. package/fesm2015/platform-browser.js +31 -26
  50. package/fesm2015/platform-browser.js.map +1 -1
  51. package/fesm2015/testing.js +3 -3
  52. package/fesm2015/testing.js.map +1 -1
  53. package/fesm5/animations.js +4 -4
  54. package/fesm5/animations.js.map +1 -1
  55. package/fesm5/platform-browser.js +32 -23
  56. package/fesm5/platform-browser.js.map +1 -1
  57. package/fesm5/testing.js +3 -3
  58. package/fesm5/testing.js.map +1 -1
  59. package/package.json +3 -3
  60. package/platform-browser.metadata.json +1 -1
  61. package/src/browser/meta.d.ts +2 -2
  62. package/src/browser/title.d.ts +1 -1
  63. package/src/browser/tools/tools.d.ts +2 -2
  64. package/src/browser/transfer_state.d.ts +4 -4
  65. package/src/browser.d.ts +5 -4
  66. package/src/dom/debug/by.d.ts +1 -1
  67. package/src/dom/dom_tokens.d.ts +1 -0
  68. package/src/dom/events/event_manager.d.ts +4 -0
  69. package/src/dom/events/hammer_gestures.d.ts +12 -4
  70. package/src/dom/events/key_events.d.ts +1 -1
  71. package/src/security/dom_sanitization_service.d.ts +7 -7
  72. package/src/version.d.ts +3 -0
  73. package/testing/src/browser.d.ts +2 -2
@@ -10,42 +10,42 @@ export { SecurityContext };
10
10
  /**
11
11
  * Marker interface for a value that's safe to use in a particular context.
12
12
  *
13
- *
13
+ * @publicApi
14
14
  */
15
15
  export interface SafeValue {
16
16
  }
17
17
  /**
18
18
  * Marker interface for a value that's safe to use as HTML.
19
19
  *
20
- *
20
+ * @publicApi
21
21
  */
22
22
  export interface SafeHtml extends SafeValue {
23
23
  }
24
24
  /**
25
25
  * Marker interface for a value that's safe to use as style (CSS).
26
26
  *
27
- *
27
+ * @publicApi
28
28
  */
29
29
  export interface SafeStyle extends SafeValue {
30
30
  }
31
31
  /**
32
32
  * Marker interface for a value that's safe to use as JavaScript.
33
33
  *
34
- *
34
+ * @publicApi
35
35
  */
36
36
  export interface SafeScript extends SafeValue {
37
37
  }
38
38
  /**
39
39
  * Marker interface for a value that's safe to use as a URL linking to a document.
40
40
  *
41
- *
41
+ * @publicApi
42
42
  */
43
43
  export interface SafeUrl extends SafeValue {
44
44
  }
45
45
  /**
46
46
  * Marker interface for a value that's safe to use as a URL to load executable code from.
47
47
  *
48
- *
48
+ * @publicApi
49
49
  */
50
50
  export interface SafeResourceUrl extends SafeValue {
51
51
  }
@@ -78,7 +78,7 @@ export interface SafeResourceUrl extends SafeValue {
78
78
  * into this call. Make sure any user data is appropriately escaped for this security context.
79
79
  * For more detail, see the [Security Guide](http://g.co/ng/security).
80
80
  *
81
- *
81
+ * @publicApi
82
82
  */
83
83
  export declare abstract class DomSanitizer implements Sanitizer {
84
84
  /**
package/src/version.d.ts CHANGED
@@ -11,4 +11,7 @@
11
11
  * Entry point for all public APIs of the common package.
12
12
  */
13
13
  import { Version } from '@angular/core';
14
+ /**
15
+ * @publicApi
16
+ */
14
17
  export declare const VERSION: Version;
@@ -9,13 +9,13 @@ import { PlatformRef, StaticProvider } from '@angular/core';
9
9
  /**
10
10
  * Platform for testing
11
11
  *
12
- *
12
+ * @publicApi
13
13
  */
14
14
  export declare const platformBrowserTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
15
15
  /**
16
16
  * NgModule for testing.
17
17
  *
18
- *
18
+ * @publicApi
19
19
  */
20
20
  export declare class BrowserTestingModule {
21
21
  }