@angular/core 11.2.2 → 11.2.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/bundles/core-testing.umd.js +1 -1
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +2 -2
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +2 -2
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +11 -12
- package/core.metadata.json +1 -1
- package/esm2015/src/change_detection/pipe_transform.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +2 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v11.2.
|
|
2
|
+
* @license Angular v11.2.3
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -5141,20 +5141,19 @@ declare type PipeDefListOrFactory = (() => PipeDefList) | PipeDefList;
|
|
|
5141
5141
|
*
|
|
5142
5142
|
* @usageNotes
|
|
5143
5143
|
*
|
|
5144
|
-
* In the following example, `
|
|
5144
|
+
* In the following example, `TruncatePipe` returns the shortened value with an added ellipses.
|
|
5145
5145
|
*
|
|
5146
|
-
*
|
|
5147
|
-
* import {Pipe, PipeTransform} from '@angular/core';
|
|
5146
|
+
* <code-example path="core/ts/pipes/simple_truncate.ts" header="simple_truncate.ts"></code-example>
|
|
5148
5147
|
*
|
|
5149
|
-
*
|
|
5150
|
-
*
|
|
5151
|
-
*
|
|
5152
|
-
*
|
|
5153
|
-
*
|
|
5154
|
-
*
|
|
5155
|
-
* ```
|
|
5148
|
+
* Invoking `{{ 'It was the best of times' | truncate }}` in a template will produce `It was...`.
|
|
5149
|
+
*
|
|
5150
|
+
* In the following example, `TruncatePipe` takes parameters that sets the truncated length and the
|
|
5151
|
+
* string to append with.
|
|
5152
|
+
*
|
|
5153
|
+
* <code-example path="core/ts/pipes/truncate.ts" header="truncate.ts"></code-example>
|
|
5156
5154
|
*
|
|
5157
|
-
* Invoking `{{ '
|
|
5155
|
+
* Invoking `{{ 'It was the best of times' | truncate:4:'....' }}` in a template will produce `It
|
|
5156
|
+
* was the best....`.
|
|
5158
5157
|
*
|
|
5159
5158
|
* @publicApi
|
|
5160
5159
|
*/
|