@angular/core 8.2.1 → 8.2.5
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/bundles/core-testing.umd.js +94 -1
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +3 -2
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +394 -41
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +36 -55
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +5 -2
- package/core.metadata.json +1 -1
- package/esm2015/core.externs.js +4 -4
- package/esm2015/src/metadata/directives.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/metadata/directives.js +1 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +7323 -42
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +593 -2
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/core.js +295 -40
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +15 -2
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/schematics/migrations/static-queries/strategies/usage_strategy/usage_strategy.js +5 -5
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
- package/schematics/migrations/injectable-pipe/angular/injectable_pipe_visitor.d.ts +0 -30
- package/schematics/migrations/injectable-pipe/angular/injectable_pipe_visitor.js +0 -68
- package/schematics/migrations/injectable-pipe/index.d.ts +0 -14
- package/schematics/migrations/injectable-pipe/index.js +0 -85
- package/schematics/migrations/injectable-pipe/util.d.ts +0 -19
- package/schematics/migrations/injectable-pipe/util.js +0 -44
package/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v8.2.
|
|
2
|
+
* @license Angular v8.2.5
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4526,7 +4526,8 @@ declare const PARENT = 3;
|
|
|
4526
4526
|
export declare interface Pipe {
|
|
4527
4527
|
/**
|
|
4528
4528
|
* The pipe name to use in template bindings.
|
|
4529
|
-
*
|
|
4529
|
+
* Typically uses [lowerCamelCase](guide/glossary#case-types)
|
|
4530
|
+
* because the name cannot contain hyphens.
|
|
4530
4531
|
*/
|
|
4531
4532
|
name: string;
|
|
4532
4533
|
/**
|
|
@@ -4572,6 +4573,8 @@ export declare interface PipeDecorator {
|
|
|
4572
4573
|
* to a template. To make it a member of an NgModule,
|
|
4573
4574
|
* list it in the `declarations` field of the `NgModule` metadata.
|
|
4574
4575
|
*
|
|
4576
|
+
* @see [Style Guide: Pipe Names](guide/styleguide#02-09)
|
|
4577
|
+
*
|
|
4575
4578
|
*/
|
|
4576
4579
|
(obj: Pipe): TypeDecorator;
|
|
4577
4580
|
/**
|