# Conflicts: # aio/content/cli/index.md # aio/content/file-not-found.md # aio/content/guide/architecture-modules.md # aio/content/guide/architecture-services.md # aio/content/guide/build.md # aio/content/guide/deployment.md # aio/content/guide/elements.md # aio/content/guide/feature-modules.md # aio/content/guide/file-structure.md # aio/content/guide/forms-overview.md # aio/content/guide/glossary.md # aio/content/guide/i18n.md # aio/content/guide/npm-packages.md # aio/content/guide/releases.md # aio/content/guide/router.md # aio/content/guide/service-worker-config.md # aio/content/guide/service-worker-intro.md # aio/content/guide/testing.md # aio/content/guide/upgrade-performance.md # aio/content/navigation.json # aio/content/tutorial/toh-pt0.md # aio/content/tutorial/toh-pt5.md # aio/content/tutorial/toh-pt6.md # aio/package.json # aio/src/app/custom-elements/api/api-list.component.ts # aio/src/app/documents/document.service.ts # aio/src/app/layout/top-menu/top-menu.component.ts # aio/src/index.html # aio/src/styles/2-modules/_api-pages.scss # aio/tools/transforms/templates/api/base.template.html # aio/tools/transforms/templates/api/lib/memberHelpers.html # aio/tools/transforms/templates/cli/cli-container.template.html # aio/tools/transforms/templates/lib/githubLinks.html # aio/yarn.lock # packages/animations/src/animation_metadata.ts # packages/common/http/src/backend.ts # packages/common/http/src/client.ts # packages/common/http/src/headers.ts # packages/common/http/src/interceptor.ts # packages/common/http/src/module.ts # packages/common/http/src/params.ts # packages/common/http/src/request.ts # packages/common/http/src/response.ts # packages/common/src/common_module.ts # packages/common/src/directives/ng_class.ts # packages/common/src/directives/ng_style.ts # packages/common/src/directives/ng_switch.ts # packages/common/src/i18n/format_date.ts # packages/common/src/pipes/number_pipe.ts # packages/core/src/change_detection/change_detection_util.ts # packages/core/src/change_detection/pipe_transform.ts # packages/core/src/di/injectable.ts # packages/core/src/linker/element_ref.ts # packages/core/src/linker/template_ref.ts # packages/core/src/metadata/di.ts # packages/core/src/metadata/directives.ts # packages/core/src/metadata/lifecycle_hooks.ts # packages/core/src/metadata/ng_module.ts # packages/core/src/render/api.ts # packages/forms/src/directives/form_interface.ts # packages/forms/src/directives/ng_form.ts # packages/forms/src/directives/ng_model.ts # packages/forms/src/directives/reactive_directives/form_control_name.ts # packages/forms/src/directives/select_control_value_accessor.ts # packages/forms/src/directives/validators.ts # packages/forms/src/form_builder.ts # packages/forms/src/form_providers.ts # packages/forms/src/model.ts # packages/forms/src/validators.ts # packages/platform-browser/src/browser.ts # packages/platform-browser/src/security/dom_sanitization_service.ts # packages/router/src/config.ts # packages/router/src/events.ts # packages/router/src/router.ts # packages/router/src/router_module.ts # packages/router/src/shared.ts
66 lines
2.2 KiB
TypeScript
66 lines
2.2 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
|
|
*/
|
|
|
|
import {NgModule} from '@angular/core';
|
|
import {COMMON_DIRECTIVES} from './directives/index';
|
|
import {DEPRECATED_PLURAL_FN, NgLocaleLocalization, NgLocalization, getPluralCase} from './i18n/localization';
|
|
import {COMMON_DEPRECATED_I18N_PIPES} from './pipes/deprecated/index';
|
|
import {COMMON_PIPES} from './pipes/index';
|
|
|
|
|
|
// Note: This does not contain the location providers,
|
|
// as they need some platform specific implementations to work.
|
|
/**
|
|
* Exports all the basic Angular directives and pipes,
|
|
* such as `NgIf`, `NgForOf`, `DecimalPipe`, and so on.
|
|
* Re-exported by `BrowserModule`, which is included automatically in the root
|
|
* `AppModule` when you create a new app with the CLI `new` command.
|
|
*
|
|
* 导出所有基本的 Angular 指令和管道,例如 `NgIf`、`NgForOf`、`DecimalPipe` 等。
|
|
* 它会由 `BrowserModule` 进行二次导出,当你使用 CLI 的 `new` 命令创建新应用时,`BrowserModule` 会自动包含在根模块 `AppModule` 中。
|
|
*
|
|
* * The `providers` options configure the NgModule's injector to provide
|
|
* localization dependencies to members.
|
|
*
|
|
* `providers` 选项配置了 NgModule 的注入器,来为其成员提供本地化依赖。
|
|
*
|
|
* * The `exports` options make the declared directives and pipes available for import
|
|
* by other NgModules.
|
|
*
|
|
* `exports` 选项让这里声明的指令和管道可以被导入到其它 NgModule 中。
|
|
*
|
|
* @publicApi
|
|
*/
|
|
@NgModule({
|
|
declarations: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
exports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
providers: [
|
|
{provide: NgLocalization, useClass: NgLocaleLocalization},
|
|
],
|
|
})
|
|
export class CommonModule {
|
|
}
|
|
|
|
/**
|
|
* A module that contains the deprecated i18n pipes.
|
|
*
|
|
* 该模块包含了已废弃的 i18n 管道。
|
|
*
|
|
* @deprecated from v5
|
|
*
|
|
* 从 Angular v5 开始
|
|
* @publicApi
|
|
*/
|
|
@NgModule({
|
|
declarations: [COMMON_DEPRECATED_I18N_PIPES],
|
|
exports: [COMMON_DEPRECATED_I18N_PIPES],
|
|
providers: [{provide: DEPRECATED_PLURAL_FN, useValue: getPluralCase}],
|
|
})
|
|
export class DeprecatedI18NPipesModule {
|
|
}
|