@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.
Files changed (40) hide show
  1. package/bundles/core-testing.umd.js +1 -1
  2. package/bundles/core-testing.umd.min.js +1 -1
  3. package/bundles/core-testing.umd.min.js.map +1 -1
  4. package/bundles/core.umd.js +51 -39
  5. package/bundles/core.umd.js.map +1 -1
  6. package/bundles/core.umd.min.js +74 -82
  7. package/bundles/core.umd.min.js.map +1 -1
  8. package/core.d.ts +17 -5
  9. package/core.metadata.json +1 -1
  10. package/esm2015/src/di/injectable.js +1 -1
  11. package/esm2015/src/render3/component_ref.js +2 -4
  12. package/esm2015/src/render3/index.js +1 -1
  13. package/esm2015/src/render3/instructions/all.js +2 -2
  14. package/esm2015/src/render3/instructions/projection.js +52 -13
  15. package/esm2015/src/render3/interfaces/projection.js +1 -1
  16. package/esm2015/src/render3/node_selector_matcher.js +2 -27
  17. package/esm2015/src/render3/styling/class_and_style_bindings.js +2 -2
  18. package/esm2015/src/version.js +1 -1
  19. package/esm5/src/di/injectable.js +1 -1
  20. package/esm5/src/render3/component_ref.js +2 -4
  21. package/esm5/src/render3/index.js +1 -1
  22. package/esm5/src/render3/instructions/projection.js +49 -14
  23. package/esm5/src/render3/interfaces/projection.js +1 -1
  24. package/esm5/src/render3/node_selector_matcher.js +2 -23
  25. package/esm5/src/render3/styling/class_and_style_bindings.js +2 -2
  26. package/esm5/src/version.js +1 -1
  27. package/fesm2015/core.js +54 -42
  28. package/fesm2015/core.js.map +1 -1
  29. package/fesm2015/testing.js +1 -1
  30. package/fesm5/core.js +51 -39
  31. package/fesm5/core.js.map +1 -1
  32. package/fesm5/testing.js +1 -1
  33. package/package.json +1 -1
  34. package/schematics/migrations/injectable-pipe/index.js +5 -2
  35. package/schematics/migrations/move-document/index.js +5 -2
  36. package/schematics/migrations/static-queries/index.js +5 -2
  37. package/schematics/migrations/template-var-assignment/index.js +6 -3
  38. package/src/r3_symbols.d.ts +1 -1
  39. package/testing/testing.d.ts +1 -1
  40. package/testing.d.ts +1 -1
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.0.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
- *Z
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 selectors A collection of parsed CSS selectors
12222
- * @param rawSelectors A collection of CSS selectors in the raw, un-parsed form
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(selectors?: ɵCssSelectorList[]): void;
12238
+ export declare function ɵɵprojectionDef(projectionSlots?: ProjectionSlots): void;
12227
12239
 
12228
12240
  /**
12229
12241
  * Update a property on a selected element.