@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.
- package/animations/src/module.d.ts +2 -2
- package/animations/src/providers.d.ts +1 -1
- package/bundles/platform-browser-animations.umd.js +4 -4
- package/bundles/platform-browser-animations.umd.js.map +1 -1
- package/bundles/platform-browser-animations.umd.min.js +1 -1
- package/bundles/platform-browser-animations.umd.min.js.map +1 -1
- package/bundles/platform-browser-testing.umd.js +3 -3
- package/bundles/platform-browser-testing.umd.js.map +1 -1
- package/bundles/platform-browser-testing.umd.min.js +1 -1
- package/bundles/platform-browser-testing.umd.min.js.map +1 -1
- package/bundles/platform-browser.umd.js +32 -23
- package/bundles/platform-browser.umd.js.map +1 -1
- package/bundles/platform-browser.umd.min.js +2 -2
- package/bundles/platform-browser.umd.min.js.map +1 -1
- package/esm2015/animations/src/module.js +3 -3
- package/esm2015/animations/src/providers.js +2 -2
- package/esm2015/src/browser/meta.js +2 -2
- package/esm2015/src/browser/title.js +2 -2
- package/esm2015/src/browser/tools/common_tools.js +2 -6
- package/esm2015/src/browser/tools/tools.js +3 -3
- package/esm2015/src/browser/transfer_state.js +4 -4
- package/esm2015/src/browser.js +6 -6
- package/esm2015/src/dom/debug/by.js +2 -2
- package/esm2015/src/dom/dom_tokens.js +2 -1
- package/esm2015/src/dom/events/event_manager.js +5 -1
- package/esm2015/src/dom/events/hammer_gestures.js +5 -3
- package/esm2015/src/dom/events/key_events.js +2 -2
- package/esm2015/src/security/dom_sanitization_service.js +8 -8
- package/esm2015/src/version.js +5 -3
- package/esm2015/testing/src/browser.js +3 -3
- package/esm5/animations/src/module.js +3 -3
- package/esm5/animations/src/providers.js +2 -2
- package/esm5/src/browser/meta.js +2 -2
- package/esm5/src/browser/title.js +2 -2
- package/esm5/src/browser/tools/common_tools.js +1 -5
- package/esm5/src/browser/tools/tools.js +3 -3
- package/esm5/src/browser/transfer_state.js +4 -4
- package/esm5/src/browser.js +6 -5
- package/esm5/src/dom/debug/by.js +2 -2
- package/esm5/src/dom/dom_tokens.js +2 -1
- package/esm5/src/dom/events/event_manager.js +5 -1
- package/esm5/src/dom/events/hammer_gestures.js +8 -4
- package/esm5/src/dom/events/key_events.js +2 -2
- package/esm5/src/security/dom_sanitization_service.js +2 -2
- package/esm5/src/version.js +5 -2
- package/esm5/testing/src/browser.js +3 -3
- package/fesm2015/animations.js +4 -4
- package/fesm2015/animations.js.map +1 -1
- package/fesm2015/platform-browser.js +31 -26
- package/fesm2015/platform-browser.js.map +1 -1
- package/fesm2015/testing.js +3 -3
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/animations.js +4 -4
- package/fesm5/animations.js.map +1 -1
- package/fesm5/platform-browser.js +32 -23
- package/fesm5/platform-browser.js.map +1 -1
- package/fesm5/testing.js +3 -3
- package/fesm5/testing.js.map +1 -1
- package/package.json +3 -3
- package/platform-browser.metadata.json +1 -1
- package/src/browser/meta.d.ts +2 -2
- package/src/browser/title.d.ts +1 -1
- package/src/browser/tools/tools.d.ts +2 -2
- package/src/browser/transfer_state.d.ts +4 -4
- package/src/browser.d.ts +5 -4
- package/src/dom/debug/by.d.ts +1 -1
- package/src/dom/dom_tokens.d.ts +1 -0
- package/src/dom/events/event_manager.d.ts +4 -0
- package/src/dom/events/hammer_gestures.d.ts +12 -4
- package/src/dom/events/key_events.d.ts +1 -1
- package/src/security/dom_sanitization_service.d.ts +7 -7
- package/src/version.d.ts +3 -0
- 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
package/testing/src/browser.d.ts
CHANGED
@@ -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
|
}
|