- ts-api-guardian will now error if a new public symbol is added with a stability marker (`@stable`, `@experimental`, `@deprecated`) - DomEventsPlugin and KeyEventsPlugin were removed from public api surface - these classes is an implementation detail - deprecated BROWSER_PROVIDERS was removed completely - `@angular/compiler` was removed from the ts-api-guardian check since this package shouldn't contain anything that users need to directly import - the rest of the api surface was conservatively marked as stable or experimental BREAKING CHANGES: DomEventsPlugin and KeyEventsPlugin previously exported from core are no longer public - these classes are implementation detail. Previously deprecated BROWSER_PROVIDERS was completely removed from platform-browser. Closes #9236 Closes #9235 Ref #9234
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google Inc. All Rights Reserved.
 | |
|  *
 | |
|  * Use of this source code is governed by an MIT-style license that can be
 | |
|  * found in the LICENSE file at https://angular.io/license
 | |
|  */
 | |
| 
 | |
| export {BrowserPlatformLocation} from './src/browser/location/browser_platform_location';
 | |
| export {Title} from './src/browser/title';
 | |
| export {disableDebugTools, enableDebugTools} from './src/browser/tools/tools';
 | |
| export {By} from './src/dom/debug/by';
 | |
| export {DOCUMENT} from './src/dom/dom_tokens';
 | |
| export {EVENT_MANAGER_PLUGINS, EventManager} from './src/dom/events/event_manager';
 | |
| export {HAMMER_GESTURE_CONFIG, HammerGestureConfig} from './src/dom/events/hammer_gestures';
 | |
| export {DomSanitizationService, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl, SecurityContext} from './src/security/dom_sanitization_service';
 | |
| 
 | |
| export * from './src/browser';
 | |
| 
 | |
| // Web Workers
 | |
| export {ClientMessageBroker, ClientMessageBrokerFactory, FnArg, UiArguments} from './src/web_workers/shared/client_message_broker';
 | |
| export {ReceivedMessage, ServiceMessageBroker, ServiceMessageBrokerFactory} from './src/web_workers/shared/service_message_broker';
 | |
| export {PRIMITIVE} from './src/web_workers/shared/serializer';
 | |
| export * from './src/web_workers/shared/message_bus';
 | |
| export {WORKER_APP_LOCATION_PROVIDERS} from './src/web_workers/worker/location_providers';
 | |
| export {WORKER_UI_LOCATION_PROVIDERS} from './src/web_workers/ui/location_providers';
 | |
| 
 | |
| export * from './src/worker_render';
 | |
| export * from './src/worker_app';
 | |
| 
 | |
| export * from './private_export';
 |