@angular/core 8.0.0 → 8.0.1
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 +51 -39
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +74 -82
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +17 -5
- package/core.metadata.json +1 -1
- package/esm2015/src/di/injectable.js +1 -1
- package/esm2015/src/render3/component_ref.js +2 -4
- package/esm2015/src/render3/index.js +1 -1
- package/esm2015/src/render3/instructions/all.js +2 -2
- package/esm2015/src/render3/instructions/projection.js +52 -13
- package/esm2015/src/render3/interfaces/projection.js +1 -1
- package/esm2015/src/render3/node_selector_matcher.js +2 -27
- package/esm2015/src/render3/styling/class_and_style_bindings.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/esm5/src/di/injectable.js +1 -1
- package/esm5/src/render3/component_ref.js +2 -4
- package/esm5/src/render3/index.js +1 -1
- package/esm5/src/render3/instructions/projection.js +49 -14
- package/esm5/src/render3/interfaces/projection.js +1 -1
- package/esm5/src/render3/node_selector_matcher.js +2 -23
- package/esm5/src/render3/styling/class_and_style_bindings.js +2 -2
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +54 -42
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +51 -39
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +1 -1
- package/schematics/migrations/injectable-pipe/index.js +5 -2
- package/schematics/migrations/move-document/index.js +5 -2
- package/schematics/migrations/static-queries/index.js +5 -2
- package/schematics/migrations/template-var-assignment/index.js +6 -3
- 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 v8.0.
|
|
2
|
+
* @license Angular v8.0.1
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3155,7 +3155,7 @@ export declare interface InjectableDecorator {
|
|
|
3155
3155
|
*
|
|
3156
3156
|
* The following example shows how service classes are properly marked as
|
|
3157
3157
|
* injectable.
|
|
3158
|
-
*
|
|
3158
|
+
*
|
|
3159
3159
|
* <code-example path="core/di/ts/metadata_spec.ts" region="Injectable"></code-example>
|
|
3160
3160
|
*
|
|
3161
3161
|
*/
|
|
@@ -5156,6 +5156,16 @@ declare interface ProceduralRenderer3 {
|
|
|
5156
5156
|
*/
|
|
5157
5157
|
declare type ProcessProvidersFunction = (providers: Provider[]) => Provider[];
|
|
5158
5158
|
|
|
5159
|
+
/**
|
|
5160
|
+
* List of slots for a projection. A slot can be either based on a parsed CSS selector
|
|
5161
|
+
* which will be used to determine nodes which are projected into that slot.
|
|
5162
|
+
*
|
|
5163
|
+
* When set to "*", the slot is reserved and can be used for multi-slot projection
|
|
5164
|
+
* using {@link ViewContainerRef#createComponent}. The last slot that specifies the
|
|
5165
|
+
* wildcard selector will retrieve all projectable nodes which do not match any selector.
|
|
5166
|
+
*/
|
|
5167
|
+
declare type ProjectionSlots = (ɵCssSelectorList | '*')[];
|
|
5168
|
+
|
|
5159
5169
|
/**
|
|
5160
5170
|
* This mapping is necessary so we can set input properties and output listeners
|
|
5161
5171
|
* properly at runtime when property names are minified or aliased.
|
|
@@ -12218,12 +12228,14 @@ export declare function ɵɵprojection(nodeIndex: number, selectorIndex?: number
|
|
|
12218
12228
|
* - we can't have only a parsed as we can't re-construct textual form from it (as entered by a
|
|
12219
12229
|
* template author).
|
|
12220
12230
|
*
|
|
12221
|
-
* @param
|
|
12222
|
-
*
|
|
12231
|
+
* @param projectionSlots? A collection of projection slots. A projection slot can be based
|
|
12232
|
+
* on a parsed CSS selectors or set to the wildcard selector ("*") in order to match
|
|
12233
|
+
* all nodes which do not match any selector. If not specified, a single wildcard
|
|
12234
|
+
* selector projection slot will be defined.
|
|
12223
12235
|
*
|
|
12224
12236
|
* @codeGenApi
|
|
12225
12237
|
*/
|
|
12226
|
-
export declare function ɵɵprojectionDef(
|
|
12238
|
+
export declare function ɵɵprojectionDef(projectionSlots?: ProjectionSlots): void;
|
|
12227
12239
|
|
|
12228
12240
|
/**
|
|
12229
12241
|
* Update a property on a selected element.
|