
This contains major changes to the compiler, bootstrap of the platforms and test environment initialization. Main part of #10043 Closes #10164 BREAKING CHANGE: - Semantics and name of `@AppModule` (now `@NgModule`) changed quite a bit. This is actually not breaking as `@AppModules` were not part of rc.4. We will have detailed docs on `@NgModule` separately. - `coreLoadAndBootstrap` and `coreBootstrap` can't be used any more (without migration support). Use `bootstrapModule` / `bootstrapModuleFactory` instead. - All Components listed in routes have to be part of the `declarations` of an NgModule. Either directly on the bootstrap module / lazy loaded module, or in an NgModule imported by them.
39 lines
1.7 KiB
TypeScript
39 lines
1.7 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
|
|
*/
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point from which you should import all public core APIs.
|
|
*/
|
|
export * from './src/metadata';
|
|
export * from './src/util';
|
|
export * from './src/di';
|
|
export {createPlatform, assertPlatform, disposePlatform, getPlatform, bootstrapModuleFactory, bootstrapModule, coreBootstrap, coreLoadAndBootstrap, PlatformRef, ApplicationRef, enableProdMode, lockRunMode, isDevMode, createPlatformFactory} from './src/application_ref';
|
|
export {APP_ID, APP_INITIALIZER, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER} from './src/application_tokens';
|
|
export * from './src/zone';
|
|
export * from './src/render';
|
|
export * from './src/linker';
|
|
export {DebugElement, DebugNode, asNativeElements, getDebugNode} from './src/debug/debug_node';
|
|
export * from './src/testability/testability';
|
|
export * from './src/change_detection';
|
|
export * from './src/platform_directives_and_pipes';
|
|
export * from './src/platform_core_providers';
|
|
export {APPLICATION_COMMON_PROVIDERS, ApplicationModule} from './src/application_module';
|
|
export {wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, WtfScopeFn} from './src/profile/profile';
|
|
|
|
export {Type} from './src/facade/lang';
|
|
export {EventEmitter} from './src/facade/async';
|
|
export {ExceptionHandler, WrappedException, BaseException} from './src/facade/exceptions';
|
|
export * from './private_export';
|
|
|
|
export * from './src/animation/metadata';
|
|
export {AnimationPlayer} from './src/animation/animation_player';
|
|
|
|
export {SanitizationService, SecurityContext} from './src/security';
|