@angular/core 10.0.1 → 10.0.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.
Files changed (54) hide show
  1. package/bundles/core-testing.umd.js +320 -271
  2. package/bundles/core-testing.umd.js.map +1 -1
  3. package/bundles/core-testing.umd.min.js +11 -25
  4. package/bundles/core-testing.umd.min.js.map +1 -1
  5. package/bundles/core.umd.js +834 -1043
  6. package/bundles/core.umd.js.map +1 -1
  7. package/bundles/core.umd.min.js +132 -286
  8. package/bundles/core.umd.min.js.map +1 -1
  9. package/core.d.ts +193 -183
  10. package/core.metadata.json +1 -1
  11. package/esm2015/core.js +11 -10
  12. package/esm2015/src/application_init.js +9 -5
  13. package/esm2015/src/application_tokens.js +16 -12
  14. package/esm2015/src/change_detection/change_detector_ref.js +6 -3
  15. package/esm2015/src/change_detection/constants.js +3 -1
  16. package/esm2015/src/core_render3_private_export.js +2 -2
  17. package/esm2015/src/di/injectable.js +1 -1
  18. package/esm2015/src/di/metadata.js +2 -2
  19. package/esm2015/src/interface/type.js +2 -2
  20. package/esm2015/src/linker/ng_module_factory.js +3 -5
  21. package/esm2015/src/linker/view_ref.js +3 -6
  22. package/esm2015/src/metadata/directives.js +1 -1
  23. package/esm2015/src/metadata/ng_module.js +1 -1
  24. package/esm2015/src/render3/definition.js +3 -11
  25. package/esm2015/src/render3/di.js +13 -5
  26. package/esm2015/src/render3/di_setup.js +5 -5
  27. package/esm2015/src/render3/features/inherit_definition_feature.js +1 -11
  28. package/esm2015/src/render3/features/ng_onchanges_feature.js +32 -22
  29. package/esm2015/src/render3/hooks.js +27 -23
  30. package/esm2015/src/render3/i18n.js +3 -3
  31. package/esm2015/src/render3/index.js +3 -3
  32. package/esm2015/src/render3/instructions/element.js +4 -4
  33. package/esm2015/src/render3/instructions/host_property.js +3 -3
  34. package/esm2015/src/render3/instructions/listener.js +3 -3
  35. package/esm2015/src/render3/instructions/shared.js +15 -26
  36. package/esm2015/src/render3/interfaces/definition.js +1 -1
  37. package/esm2015/src/render3/interfaces/node.js +1 -1
  38. package/esm2015/src/render3/jit/environment.js +3 -3
  39. package/esm2015/src/render3/util/discovery_utils.js +2 -2
  40. package/esm2015/src/render3/view_ref.js +3 -3
  41. package/esm2015/src/sanitization/html_sanitizer.js +3 -3
  42. package/esm2015/src/sanitization/inert_body.js +39 -82
  43. package/esm2015/src/util/ng_dev_mode.js +2 -2
  44. package/esm2015/src/version.js +1 -1
  45. package/esm2015/testing/src/fake_async_fallback.js +5 -1
  46. package/fesm2015/core.js +266 -309
  47. package/fesm2015/core.js.map +1 -1
  48. package/fesm2015/testing.js +5 -1
  49. package/fesm2015/testing.js.map +1 -1
  50. package/package.json +1 -1
  51. package/src/r3_symbols.d.ts +15 -17
  52. package/testing/testing.d.ts +1 -1
  53. package/testing.d.ts +1 -1
  54. package/esm2015/src/util/WrappedValue.js +0 -48
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v10.0.1
2
+ * @license Angular v10.0.5
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -166,44 +166,51 @@ export declare interface AfterViewInit {
166
166
  export declare const ANALYZE_FOR_ENTRY_COMPONENTS: InjectionToken<any>;
167
167
 
168
168
  /**
169
- * All callbacks provided via this token will be called for every component that is bootstrapped.
170
- * Signature of the callback:
169
+ * A [DI token](guide/glossary#di-token "DI token definition") that provides a set of callbacks to
170
+ * be called for every component that is bootstrapped.
171
171
  *
172
- * `(componentRef: ComponentRef) => void`.
172
+ * Each callback must take a `ComponentRef` instance and return nothing.
173
+ *
174
+ * `(componentRef: ComponentRef) => void`
173
175
  *
174
176
  * @publicApi
175
177
  */
176
178
  export declare const APP_BOOTSTRAP_LISTENER: InjectionToken<((compRef: ComponentRef<any>) => void)[]>;
177
179
 
178
180
  /**
179
- * A DI Token representing a unique string id assigned to the application by Angular and used
181
+ * A [DI token](guide/glossary#di-token "DI token definition") representing a unique string ID, used
180
182
  * primarily for prefixing application attributes and CSS styles when
181
183
  * {@link ViewEncapsulation#Emulated ViewEncapsulation.Emulated} is being used.
182
184
  *
183
- * If you need to avoid randomly generated value to be used as an application id, you can provide
184
- * a custom value via a DI provider <!-- TODO: provider --> configuring the root {@link Injector}
185
- * using this token.
185
+ * BY default, the value is randomly generated and assigned to the application by Angular.
186
+ * To provide a custom ID value, use a DI provider <!-- TODO: provider --> to configure
187
+ * the root {@link Injector} that uses this token.
188
+ *
186
189
  * @publicApi
187
190
  */
188
191
  export declare const APP_ID: InjectionToken<string>;
189
192
 
190
193
  /**
191
- * An injection token that allows you to provide one or more initialization functions.
192
- * These function are injected at application startup and executed during
194
+ * A [DI token](guide/glossary#di-token "DI token definition") that you can use to provide
195
+ * one or more initialization functions.
196
+ *
197
+ * The provided function are injected at application startup and executed during
193
198
  * app initialization. If any of these functions returns a Promise, initialization
194
199
  * does not complete until the Promise is resolved.
195
200
  *
196
201
  * You can, for example, create a factory function that loads language data
197
202
  * or an external configuration, and provide that function to the `APP_INITIALIZER` token.
198
- * That way, the function is executed during the application bootstrap process,
203
+ * The function is executed during the application bootstrap process,
199
204
  * and the needed data is available on startup.
200
205
  *
206
+ * @see `ApplicationInitStatus`
207
+ *
201
208
  * @publicApi
202
209
  */
203
210
  export declare const APP_INITIALIZER: InjectionToken<(() => void)[]>;
204
211
 
205
212
  /**
206
- * A class that reflects the state of running {@link APP_INITIALIZER}s.
213
+ * A class that reflects the state of running {@link APP_INITIALIZER} functions.
207
214
  *
208
215
  * @publicApi
209
216
  */
@@ -446,11 +453,11 @@ export declare interface AttributeDecorator {
446
453
  * <input type="text">
447
454
  * ```
448
455
  *
449
- * The following example uses the decorator to inject the string literal `text`.
456
+ * The following example uses the decorator to inject the string literal `text` in a directive.
450
457
  *
451
458
  * {@example core/ts/metadata/metadata.ts region='attributeMetadata'}
452
459
  *
453
- * ### Example as TypeScript Decorator
460
+ * The following example uses the decorator in a component constructor.
454
461
  *
455
462
  * {@example core/ts/metadata/metadata.ts region='attributeFactory'}
456
463
  *
@@ -509,6 +516,8 @@ declare interface BootstrapOptions {
509
516
  * The strategy that the default change detector uses to detect changes.
510
517
  * When set, takes effect the next time change detection is triggered.
511
518
  *
519
+ * @see {@link ChangeDetectorRef#usage-notes Change detection usage}
520
+ *
512
521
  * @publicApi
513
522
  */
514
523
  export declare enum ChangeDetectionStrategy {
@@ -527,10 +536,13 @@ export declare enum ChangeDetectionStrategy {
527
536
  }
528
537
 
529
538
  /**
530
- * Base class for Angular Views, provides change detection functionality.
539
+ * Base class that provides change detection functionality.
531
540
  * A change-detection tree collects all views that are to be checked for changes.
532
541
  * Use the methods to add and remove views from the tree, initiate change-detection,
533
- * and explicitly mark views as _dirty_, meaning that they have changed and need to be rerendered.
542
+ * and explicitly mark views as _dirty_, meaning that they have changed and need to be re-rendered.
543
+ *
544
+ * @see [Using change detection hooks](guide/lifecycle-hooks#using-change-detection-hooks)
545
+ * @see [Defining custom change detection](guide/lifecycle-hooks#defining-custom-change-detection)
534
546
  *
535
547
  * @usageNotes
536
548
  *
@@ -888,7 +900,8 @@ export declare interface ComponentDecorator {
888
900
  * An Angular app contains a tree of Angular components.
889
901
  *
890
902
  * Angular components are a subset of directives, always associated with a template.
891
- * Unlike other directives, only one component can be instantiated per an element in a template.
903
+ * Unlike other directives, only one component can be instantiated for a given element in a
904
+ * template.
892
905
  *
893
906
  * A component must belong to an NgModule in order for it to be available
894
907
  * to another component or application. To make it a member of an NgModule,
@@ -1936,10 +1949,10 @@ export declare interface Directive {
1936
1949
  [key: string]: string;
1937
1950
  };
1938
1951
  /**
1939
- * If true, this directive/component will be skipped by the AOT compiler and so will always be
1940
- * compiled using JIT.
1941
- *
1942
- * This exists to support future Ivy work and has no effect currently.
1952
+ * When present, this directive/component is ignored by the AOT compiler.
1953
+ * It remains in distributed code, and the JIT compiler attempts to compile it
1954
+ * at run time, in the browser.
1955
+ * To ensure the correct behavior, the app must import `@angular/compiler`.
1943
1956
  */
1944
1957
  jit?: true;
1945
1958
  }
@@ -2666,7 +2679,7 @@ export declare interface HostBindingDecorator {
2666
2679
  declare type HostBindingsFunction<T> = <U extends T>(rf: ɵRenderFlags, ctx: U) => void;
2667
2680
 
2668
2681
  /**
2669
- * Type of the Host decorator / constructor function.
2682
+ * Type of the `Host` decorator / constructor function.
2670
2683
  *
2671
2684
  * @publicApi
2672
2685
  */
@@ -2676,15 +2689,15 @@ export declare interface HostDecorator {
2676
2689
  * that tells the DI framework to resolve the view by checking injectors of child
2677
2690
  * elements, and stop when reaching the host element of the current component.
2678
2691
  *
2679
- * For an extended example, see
2680
- * ["Dependency Injection Guide"](guide/dependency-injection-in-action#optional).
2681
- *
2682
2692
  * @usageNotes
2683
2693
  *
2684
2694
  * The following shows use with the `@Optional` decorator, and allows for a null result.
2685
2695
  *
2686
2696
  * <code-example path="core/di/ts/metadata_spec.ts" region="Host">
2687
2697
  * </code-example>
2698
+ *
2699
+ * For an extended example, see ["Dependency Injection
2700
+ * Guide"](guide/dependency-injection-in-action#optional).
2688
2701
  */
2689
2702
  (): any;
2690
2703
  new (): Host;
@@ -3028,8 +3041,8 @@ export declare interface Injectable {
3028
3041
  * - 'root' : The application-level injector in most apps.
3029
3042
  * - 'platform' : A special singleton platform injector shared by all
3030
3043
  * applications on the page.
3031
- * - 'any' : Provides a unique instance in every module (including lazy modules) that injects the
3032
- * token.
3044
+ * - 'any' : Provides a unique instance in each lazy loaded module while all eagerly loaded
3045
+ * modules share one instance.
3033
3046
  *
3034
3047
  */
3035
3048
  providedIn?: Type<any> | 'root' | 'platform' | 'any' | null;
@@ -3114,8 +3127,6 @@ export declare interface InjectDecorator {
3114
3127
  * Parameter decorator on a dependency parameter of a class constructor
3115
3128
  * that specifies a custom provider of the dependency.
3116
3129
  *
3117
- * Learn more in the ["Dependency Injection Guide"](guide/dependency-injection).
3118
- *
3119
3130
  * @usageNotes
3120
3131
  * The following example shows a class constructor that specifies a
3121
3132
  * custom provider of a dependency using the parameter decorator.
@@ -3125,6 +3136,9 @@ export declare interface InjectDecorator {
3125
3136
  *
3126
3137
  * <code-example path="core/di/ts/metadata_spec.ts" region="InjectWithoutDecorator">
3127
3138
  * </code-example>
3139
+ *
3140
+ * @see ["Dependency Injection Guide"](guide/dependency-injection)
3141
+ *
3128
3142
  */
3129
3143
  (token: any): any;
3130
3144
  new (token: any): Inject;
@@ -3394,7 +3408,7 @@ export declare interface InputDecorator {
3394
3408
  * class App {}
3395
3409
  * ```
3396
3410
  *
3397
- * @see [Input and Output properties](guide/template-syntax#input-and-output-properties)
3411
+ * @see [Input and Output properties](guide/inputs-outputs)
3398
3412
  */
3399
3413
  (bindingPropertyName?: string): any;
3400
3414
  new (bindingPropertyName?: string): any;
@@ -3761,7 +3775,7 @@ declare interface LContainer extends Array<any> {
3761
3775
  * The host could be an LView if this container is on a component node.
3762
3776
  * In that case, the component LView is its HOST.
3763
3777
  */
3764
- readonly [HOST]: RElement | RComment | ɵangular_packages_core_core_bo;
3778
+ readonly [HOST]: RElement | RComment | ɵangular_packages_core_core_bp;
3765
3779
  /**
3766
3780
  * This is a type field which allows us to differentiate `LContainer` from `StylingContext` in an
3767
3781
  * efficient way. The value is always set to `true`
@@ -3778,12 +3792,12 @@ declare interface LContainer extends Array<any> {
3778
3792
  * Access to the parent view is necessary so we can propagate back
3779
3793
  * up from inside a container to parent[NEXT].
3780
3794
  */
3781
- [PARENT]: ɵangular_packages_core_core_bo;
3795
+ [PARENT]: ɵangular_packages_core_core_bp;
3782
3796
  /**
3783
3797
  * This allows us to jump from a container to a sibling container or component
3784
3798
  * view with the same parent, so we can remove listeners efficiently.
3785
3799
  */
3786
- [NEXT]: ɵangular_packages_core_core_bo | LContainer | null;
3800
+ [NEXT]: ɵangular_packages_core_core_bp | LContainer | null;
3787
3801
  /**
3788
3802
  * The number of direct transplanted views which need a refresh or have descendants themselves
3789
3803
  * that need a refresh but have not marked their ancestors as Dirty. This tells us that during
@@ -3796,7 +3810,7 @@ declare interface LContainer extends Array<any> {
3796
3810
  * a different `LContainer`. We need to track views created from a given declaration point since
3797
3811
  * queries collect matches from the embedded view declaration point and _not_ the insertion point.
3798
3812
  */
3799
- [MOVED_VIEWS]: ɵangular_packages_core_core_bo[] | null;
3813
+ [MOVED_VIEWS]: ɵangular_packages_core_core_bp[] | null;
3800
3814
  /**
3801
3815
  * Pointer to the `TNode` which represents the host of the container.
3802
3816
  */
@@ -3833,7 +3847,7 @@ declare interface LFrame {
3833
3847
  * An array of nodes (text, element, container, etc), pipes, their bindings, and
3834
3848
  * any local variables that need to be stored between invocations.
3835
3849
  */
3836
- lView: ɵangular_packages_core_core_bo;
3850
+ lView: ɵangular_packages_core_core_bp;
3837
3851
  /**
3838
3852
  * Current `TView` associated with the `LFrame.lView`.
3839
3853
  *
@@ -3869,7 +3883,7 @@ declare interface LFrame {
3869
3883
  *
3870
3884
  * e.g. const inner = x().$implicit; const outer = x().$implicit;
3871
3885
  */
3872
- contextLView: ɵangular_packages_core_core_bo;
3886
+ contextLView: ɵangular_packages_core_core_bp;
3873
3887
  /**
3874
3888
  * Store the element depth count. This is used to identify the root elements of the template
3875
3889
  * so that we can then attach patch data `LView` to only those elements. We know that those
@@ -3930,7 +3944,7 @@ export declare const LOCALE_ID: InjectionToken<string>;
3930
3944
  * - `<div #nativeDivEl>` - `nativeDivEl` should point to the native `<div>` element;
3931
3945
  * - `<ng-template #tplRef>` - `tplRef` should point to the `TemplateRef` instance;
3932
3946
  */
3933
- declare type LocalRefExtractor = (tNode: TNodeWithLocalRefs, currentView: ɵangular_packages_core_core_bo) => any;
3947
+ declare type LocalRefExtractor = (tNode: TNodeWithLocalRefs, currentView: ɵangular_packages_core_core_bp) => any;
3934
3948
 
3935
3949
  /**
3936
3950
  * lQueries represent a collection of individual LQuery objects tracked in a given view.
@@ -4089,12 +4103,10 @@ export declare class ModuleWithComponentFactories<T> {
4089
4103
  }
4090
4104
 
4091
4105
  /**
4092
- * A wrapper around an NgModule that associates it with the providers.
4106
+ * A wrapper around an NgModule that associates it with [providers](guide/glossary#provider
4107
+ * "Definition"). Usage without a generic type is deprecated.
4093
4108
  *
4094
- * @param T the module type.
4095
- *
4096
- * Note that using ModuleWithProviders without a generic type is deprecated.
4097
- * The generic will become required in a future version of Angular.
4109
+ * @see [Deprecations](guide/deprecations#modulewithproviders-type-without-a-generic)
4098
4110
  *
4099
4111
  * @publicApi
4100
4112
  */
@@ -4306,10 +4318,10 @@ export declare interface NgModule {
4306
4318
  */
4307
4319
  id?: string;
4308
4320
  /**
4309
- * If true, this module will be skipped by the AOT compiler and so will always be compiled
4310
- * using JIT.
4311
- *
4312
- * This exists to support future Ivy work and has no effect currently.
4321
+ * When present, this module is ignored by the AOT compiler.
4322
+ * It remains in distributed code, and the JIT compiler attempts to compile it
4323
+ * at run time, in the browser.
4324
+ * To ensure the correct behavior, the app must import `@angular/compiler`.
4313
4325
  */
4314
4326
  jit?: true;
4315
4327
  }
@@ -4373,25 +4385,23 @@ declare interface NgModuleProviderDef {
4373
4385
  }
4374
4386
 
4375
4387
  /**
4376
- * Represents an instance of an NgModule created via a {@link NgModuleFactory}.
4377
- *
4378
- * `NgModuleRef` provides access to the NgModule Instance as well other objects related to this
4379
- * NgModule Instance.
4388
+ * Represents an instance of an `NgModule` created by an `NgModuleFactory`.
4389
+ * Provides access to the `NgModule` instance and related objects.
4380
4390
  *
4381
4391
  * @publicApi
4382
4392
  */
4383
4393
  export declare abstract class NgModuleRef<T> {
4384
4394
  /**
4385
- * The injector that contains all of the providers of the NgModule.
4395
+ * The injector that contains all of the providers of the `NgModule`.
4386
4396
  */
4387
4397
  abstract get injector(): Injector;
4388
4398
  /**
4389
- * The ComponentFactoryResolver to get hold of the ComponentFactories
4399
+ * The resolver that can retrieve the component factories
4390
4400
  * declared in the `entryComponents` property of the module.
4391
4401
  */
4392
4402
  abstract get componentFactoryResolver(): ComponentFactoryResolver;
4393
4403
  /**
4394
- * The NgModule instance.
4404
+ * The `NgModule` instance.
4395
4405
  */
4396
4406
  abstract get instance(): T;
4397
4407
  /**
@@ -4399,7 +4409,7 @@ export declare abstract class NgModuleRef<T> {
4399
4409
  */
4400
4410
  abstract destroy(): void;
4401
4411
  /**
4402
- * Allows to register a callback that will be called when the module is destroyed.
4412
+ * Registers a callback to be executed when the module is destroyed.
4403
4413
  */
4404
4414
  abstract onDestroy(callback: () => void): void;
4405
4415
  }
@@ -4785,8 +4795,6 @@ export declare interface OptionalDecorator {
4785
4795
  * Can be used together with other parameter decorators
4786
4796
  * that modify how dependency injection operates.
4787
4797
  *
4788
- * Learn more in the ["Dependency Injection Guide"](guide/dependency-injection).
4789
- *
4790
4798
  * @usageNotes
4791
4799
  *
4792
4800
  * The following code allows the possibility of a null result:
@@ -4794,6 +4802,7 @@ export declare interface OptionalDecorator {
4794
4802
  * <code-example path="core/di/ts/metadata_spec.ts" region="Optional">
4795
4803
  * </code-example>
4796
4804
  *
4805
+ * @see ["Dependency Injection Guide"](guide/dependency-injection).
4797
4806
  */
4798
4807
  (): any;
4799
4808
  new (): Optional;
@@ -4836,7 +4845,7 @@ export declare interface OutputDecorator {
4836
4845
  *
4837
4846
  * See `Input` decorator for an example of providing a binding name.
4838
4847
  *
4839
- * @see [Input and Output properties](guide/template-syntax#input-and-output-properties)
4848
+ * @see [Input and Output properties](guide/inputs-outputs)
4840
4849
  *
4841
4850
  */
4842
4851
  (bindingPropertyName?: string): any;
@@ -4856,7 +4865,8 @@ declare const enum OutputType {
4856
4865
  }
4857
4866
 
4858
4867
  /**
4859
- * A token which indicates the root directory of the application
4868
+ * A [DI token](guide/glossary#di-token "DI token definition") that indicates the root directory of
4869
+ * the application
4860
4870
  * @publicApi
4861
4871
  */
4862
4872
  export declare const PACKAGE_ROOT_URL: InjectionToken<string>;
@@ -4979,13 +4989,13 @@ declare type PipeTypeList = (PipeType<any> | Type<any>)[];
4979
4989
  declare type PipeTypesOrFactory = (() => PipeTypeList) | PipeTypeList;
4980
4990
 
4981
4991
  /**
4982
- * A token that indicates an opaque platform id.
4992
+ * A token that indicates an opaque platform ID.
4983
4993
  * @publicApi
4984
4994
  */
4985
4995
  export declare const PLATFORM_ID: InjectionToken<Object>;
4986
4996
 
4987
4997
  /**
4988
- * A function that will be executed when a platform is initialized.
4998
+ * A function that is executed when a platform is initialized.
4989
4999
  * @publicApi
4990
5000
  */
4991
5001
  export declare const PLATFORM_INITIALIZER: InjectionToken<(() => void)[]>;
@@ -5723,6 +5733,18 @@ declare interface RElement extends RNode {
5723
5733
  setProperty?(name: string, value: any): void;
5724
5734
  }
5725
5735
 
5736
+ /**
5737
+ * This is a synthetic lifecycle hook which gets inserted into `TView.preOrderHooks` to simulate
5738
+ * `ngOnChanges`.
5739
+ *
5740
+ * The hook reads the `NgSimpleChangesStore` data from the component instance and if changes are
5741
+ * found it invokes `ngOnChanges` on the component instance.
5742
+ *
5743
+ * @param this Component instance. Because this function gets inserted into `TView.preOrderHooks`,
5744
+ * it is guaranteed to be called with component instance.
5745
+ */
5746
+ declare function rememberChangeHistoryAndInvokeOnChangesHook(this: OnChanges): void;
5747
+
5726
5748
  declare const RENDERER = 11;
5727
5749
 
5728
5750
  /**
@@ -6249,7 +6271,6 @@ export declare interface SelfDecorator {
6249
6271
  * <code-example path="core/di/ts/metadata_spec.ts" region="Self">
6250
6272
  * </code-example>
6251
6273
  *
6252
- *
6253
6274
  * @see `SkipSelf`
6254
6275
  * @see `Optional`
6255
6276
  *
@@ -6299,7 +6320,7 @@ export declare interface SimpleChanges {
6299
6320
  }
6300
6321
 
6301
6322
  /**
6302
- * Type of the SkipSelf metadata.
6323
+ * Type of the `SkipSelf` metadata.
6303
6324
  *
6304
6325
  * @publicApi
6305
6326
  */
@@ -6307,7 +6328,7 @@ export declare interface SkipSelf {
6307
6328
  }
6308
6329
 
6309
6330
  /**
6310
- * SkipSelf decorator and metadata.
6331
+ * `SkipSelf` decorator and metadata.
6311
6332
  *
6312
6333
  * @Annotation
6313
6334
  * @publicApi
@@ -6315,7 +6336,7 @@ export declare interface SkipSelf {
6315
6336
  export declare const SkipSelf: SkipSelfDecorator;
6316
6337
 
6317
6338
  /**
6318
- * Type of the SkipSelf decorator / constructor function.
6339
+ * Type of the `SkipSelf` decorator / constructor function.
6319
6340
  *
6320
6341
  * @publicApi
6321
6342
  */
@@ -6334,9 +6355,7 @@ export declare interface SkipSelfDecorator {
6334
6355
  * <code-example path="core/di/ts/metadata_spec.ts" region="SkipSelf">
6335
6356
  * </code-example>
6336
6357
  *
6337
- * Learn more in the
6338
- * [Dependency Injection guide](guide/dependency-injection-in-action#skip).
6339
- *
6358
+ * @see [Dependency Injection guide](guide/dependency-injection-in-action#skip).
6340
6359
  * @see `Self`
6341
6360
  * @see `Optional`
6342
6361
  *
@@ -6472,7 +6491,7 @@ declare interface TContainerNode extends TNode {
6472
6491
  * - They are the first node of a component or embedded view
6473
6492
  * - They are dynamically created
6474
6493
  */
6475
- parent: ɵangular_packages_core_core_be | TElementContainerNode | null;
6494
+ parent: ɵangular_packages_core_core_bf | TElementContainerNode | null;
6476
6495
  tViews: TView | TView[] | null;
6477
6496
  projection: null;
6478
6497
  }
@@ -6510,8 +6529,8 @@ declare type TData = (TNode | ɵPipeDef<any> | ɵDirectiveDef<any> | ɵComponent
6510
6529
  declare interface TElementContainerNode extends TNode {
6511
6530
  /** Index in the LView[] array. */
6512
6531
  index: number;
6513
- child: ɵangular_packages_core_core_be | TTextNode | TContainerNode | TElementContainerNode | TProjectionNode | null;
6514
- parent: ɵangular_packages_core_core_be | TElementContainerNode | null;
6532
+ child: ɵangular_packages_core_core_bf | TTextNode | TContainerNode | TElementContainerNode | TProjectionNode | null;
6533
+ parent: ɵangular_packages_core_core_bf | TElementContainerNode | null;
6515
6534
  tViews: null;
6516
6535
  projection: null;
6517
6536
  }
@@ -6951,7 +6970,7 @@ declare interface TNode {
6951
6970
  *
6952
6971
  * If this is an inline view node (V), the parent will be its container.
6953
6972
  */
6954
- parent: ɵangular_packages_core_core_be | TContainerNode | null;
6973
+ parent: ɵangular_packages_core_core_bf | TContainerNode | null;
6955
6974
  /**
6956
6975
  * List of projected TNodes for a given component host element OR index into the said nodes.
6957
6976
  *
@@ -7139,14 +7158,14 @@ declare const enum TNodeFlags {
7139
7158
  * Corresponds to the TNode.providerIndexes property.
7140
7159
  */
7141
7160
  declare const enum TNodeProviderIndexes {
7142
- /** The index of the first provider on this node is encoded on the least significant bits */
7143
- ProvidersStartIndexMask = 65535,
7161
+ /** The index of the first provider on this node is encoded on the least significant bits. */
7162
+ ProvidersStartIndexMask = 1048575,
7144
7163
  /**
7145
- The count of view providers from the component on this node is encoded on the 16 most
7146
- significant bits
7164
+ * The count of view providers from the component on this node is
7165
+ * encoded on the 20 most significant bits.
7147
7166
  */
7148
- CptViewProvidersCountShift = 16,
7149
- CptViewProvidersCountShifter = 65536
7167
+ CptViewProvidersCountShift = 20,
7168
+ CptViewProvidersCountShifter = 1048576
7150
7169
  }
7151
7170
 
7152
7171
  /**
@@ -7182,7 +7201,7 @@ declare const enum TNodeType {
7182
7201
  /**
7183
7202
  * Type representing a set of TNodes that can have local refs (`#foo`) placed on them.
7184
7203
  */
7185
- declare type TNodeWithLocalRefs = TContainerNode | ɵangular_packages_core_core_be | TElementContainerNode;
7204
+ declare type TNodeWithLocalRefs = TContainerNode | ɵangular_packages_core_core_bf | TElementContainerNode;
7186
7205
 
7187
7206
  /** Static data for an LProjectionNode */
7188
7207
  declare interface TProjectionNode extends TNode {
@@ -7193,7 +7212,7 @@ declare interface TProjectionNode extends TNode {
7193
7212
  * or embedded view (which means their parent is in a different view and must be
7194
7213
  * retrieved using LView.node).
7195
7214
  */
7196
- parent: ɵangular_packages_core_core_be | TElementContainerNode | null;
7215
+ parent: ɵangular_packages_core_core_bf | TElementContainerNode | null;
7197
7216
  tViews: null;
7198
7217
  /** Index of the projection node. (See TNode.projection for more info.) */
7199
7218
  projection: number;
@@ -7513,7 +7532,7 @@ declare interface TTextNode extends TNode {
7513
7532
  * embedded view (which means their parent is in a different view and must be
7514
7533
  * retrieved using LView.node).
7515
7534
  */
7516
- parent: ɵangular_packages_core_core_be | TElementContainerNode | null;
7535
+ parent: ɵangular_packages_core_core_bf | TElementContainerNode | null;
7517
7536
  tViews: null;
7518
7537
  projection: null;
7519
7538
  }
@@ -7543,7 +7562,7 @@ declare interface TView {
7543
7562
  * This is a blueprint used to generate LView instances for this TView. Copying this
7544
7563
  * blueprint is faster than creating a new LView from scratch.
7545
7564
  */
7546
- blueprint: ɵangular_packages_core_core_bo;
7565
+ blueprint: ɵangular_packages_core_core_bp;
7547
7566
  /**
7548
7567
  * The template function used to refresh the view of dynamically created views
7549
7568
  * and components. Will be null for inline views.
@@ -7568,7 +7587,7 @@ declare interface TView {
7568
7587
  * different host TNodes, depending on where the component is being used. These host
7569
7588
  * TNodes cannot be shared (due to different indices, etc).
7570
7589
  */
7571
- node: TViewNode | ɵangular_packages_core_core_be | null;
7590
+ node: TViewNode | ɵangular_packages_core_core_bf | null;
7572
7591
  /** Whether or not this template has been processed in creation mode. */
7573
7592
  firstCreatePass: boolean;
7574
7593
  /**
@@ -7769,7 +7788,7 @@ declare interface TView {
7769
7788
  declare interface TViewNode extends TNode {
7770
7789
  /** If -1, it's a dynamically created view. Otherwise, it is the view block ID. */
7771
7790
  index: number;
7772
- child: ɵangular_packages_core_core_be | TTextNode | TElementContainerNode | TContainerNode | TProjectionNode | null;
7791
+ child: ɵangular_packages_core_core_bf | TTextNode | TElementContainerNode | TContainerNode | TProjectionNode | null;
7773
7792
  parent: TContainerNode | null;
7774
7793
  tViews: null;
7775
7794
  projection: null;
@@ -7814,7 +7833,7 @@ declare const TYPE = 1;
7814
7833
  *
7815
7834
  * Represents a type that a Component or other object is instances of.
7816
7835
  *
7817
- * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is be represented by
7836
+ * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is represented by
7818
7837
  * the `MyCustomComponent` constructor function.
7819
7838
  *
7820
7839
  * @publicApi
@@ -8245,12 +8264,9 @@ declare interface ViewHandleEventFn {
8245
8264
  declare type ViewQueriesFunction<T> = <U extends T>(rf: ɵRenderFlags, ctx: U) => void;
8246
8265
 
8247
8266
  /**
8248
- * Represents an Angular [view](guide/glossary#view),
8249
- * specifically the [host view](guide/glossary#view-tree) that is defined by a component.
8250
- * Also serves as the base class
8251
- * that adds destroy methods for [embedded views](guide/glossary#view-tree).
8267
+ * Represents an Angular [view](guide/glossary#view "Definition").
8252
8268
  *
8253
- * @see `EmbeddedViewRef`
8269
+ * @see {@link ChangeDetectorRef#usage-notes Change detection usage}
8254
8270
  *
8255
8271
  * @publicApi
8256
8272
  */
@@ -8296,14 +8312,14 @@ declare class ViewRef_2<T> implements EmbeddedViewRef<T>, InternalViewRef, viewE
8296
8312
  *
8297
8313
  * @internal
8298
8314
  */
8299
- _lView: ɵangular_packages_core_core_bo,
8315
+ _lView: ɵangular_packages_core_core_bp,
8300
8316
  /**
8301
8317
  * This represents the `LView` associated with the point where `ChangeDetectorRef` was
8302
8318
  * requested.
8303
8319
  *
8304
8320
  * This may be different from `_lView` if the `_cdRefInjectingView` is an embedded view.
8305
8321
  */
8306
- _cdRefInjectingView?: ɵangular_packages_core_core_bo | undefined);
8322
+ _cdRefInjectingView?: ɵangular_packages_core_core_bp | undefined);
8307
8323
  get context(): T;
8308
8324
  get destroyed(): boolean;
8309
8325
  destroy(): void;
@@ -8582,28 +8598,30 @@ export declare function ɵangular_packages_core_core_b<T>(token: Type<T> | Injec
8582
8598
 
8583
8599
  export declare function ɵangular_packages_core_core_b<T>(token: Type<T> | InjectionToken<T>, flags?: InjectFlags): T | null;
8584
8600
 
8601
+ export declare const ɵangular_packages_core_core_ba: InstructionState;
8602
+
8585
8603
  /**
8586
8604
  * Return the current `LView`.
8587
8605
  */
8588
- export declare function ɵangular_packages_core_core_ba(): ɵangular_packages_core_core_bo;
8606
+ export declare function ɵangular_packages_core_core_bb(): ɵangular_packages_core_core_bp;
8589
8607
 
8590
- export declare function ɵangular_packages_core_core_bb(): TNode;
8608
+ export declare function ɵangular_packages_core_core_bc(): TNode;
8591
8609
 
8592
- export declare function ɵangular_packages_core_core_bc(): number;
8610
+ export declare function ɵangular_packages_core_core_bd(): number;
8593
8611
 
8594
- export declare function ɵangular_packages_core_core_bd<T = any>(level: number): T;
8612
+ export declare function ɵangular_packages_core_core_be<T = any>(level: number): T;
8595
8613
 
8596
8614
  /** Static data for an element */
8597
- export declare interface ɵangular_packages_core_core_be extends TNode {
8615
+ export declare interface ɵangular_packages_core_core_bf extends TNode {
8598
8616
  /** Index in the data[] array */
8599
8617
  index: number;
8600
- child: ɵangular_packages_core_core_be | TTextNode | TElementContainerNode | TContainerNode | TProjectionNode | null;
8618
+ child: ɵangular_packages_core_core_bf | TTextNode | TElementContainerNode | TContainerNode | TProjectionNode | null;
8601
8619
  /**
8602
8620
  * Element nodes will have parents unless they are the first node of a component or
8603
8621
  * embedded view (which means their parent is in a different view and must be
8604
8622
  * retrieved using viewData[HOST_NODE]).
8605
8623
  */
8606
- parent: ɵangular_packages_core_core_be | TElementContainerNode | null;
8624
+ parent: ɵangular_packages_core_core_bf | TElementContainerNode | null;
8607
8625
  tViews: null;
8608
8626
  /**
8609
8627
  * If this is a component TNode with projection, this will be an array of projected
@@ -8625,7 +8643,7 @@ export declare interface ɵangular_packages_core_core_be extends TNode {
8625
8643
  * @param thisArg Optional calling context of pureFn
8626
8644
  * @returns Updated or cached value
8627
8645
  */
8628
- export declare function ɵangular_packages_core_core_bf(lView: ɵangular_packages_core_core_bo, bindingRoot: number, slotOffset: number, pureFn: (v: any) => any, exp: any, thisArg?: any): any;
8646
+ export declare function ɵangular_packages_core_core_bg(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v: any) => any, exp: any, thisArg?: any): any;
8629
8647
 
8630
8648
  /**
8631
8649
  * If the value of any provided exp has changed, calls the pure function to return
@@ -8640,7 +8658,7 @@ export declare function ɵangular_packages_core_core_bf(lView: ɵangular_package
8640
8658
  * @param thisArg Optional calling context of pureFn
8641
8659
  * @returns Updated or cached value
8642
8660
  */
8643
- export declare function ɵangular_packages_core_core_bg(lView: ɵangular_packages_core_core_bo, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any, thisArg?: any): any;
8661
+ export declare function ɵangular_packages_core_core_bh(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any, thisArg?: any): any;
8644
8662
 
8645
8663
  /**
8646
8664
  * If the value of any provided exp has changed, calls the pure function to return
@@ -8656,7 +8674,7 @@ export declare function ɵangular_packages_core_core_bg(lView: ɵangular_package
8656
8674
  * @param thisArg Optional calling context of pureFn
8657
8675
  * @returns Updated or cached value
8658
8676
  */
8659
- export declare function ɵangular_packages_core_core_bh(lView: ɵangular_packages_core_core_bo, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any, thisArg?: any): any;
8677
+ export declare function ɵangular_packages_core_core_bi(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any, thisArg?: any): any;
8660
8678
 
8661
8679
  /**
8662
8680
  * If the value of any provided exp has changed, calls the pure function to return
@@ -8674,7 +8692,7 @@ export declare function ɵangular_packages_core_core_bh(lView: ɵangular_package
8674
8692
  * @returns Updated or cached value
8675
8693
  *
8676
8694
  */
8677
- export declare function ɵangular_packages_core_core_bi(lView: ɵangular_packages_core_core_bo, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, thisArg?: any): any;
8695
+ export declare function ɵangular_packages_core_core_bj(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, thisArg?: any): any;
8678
8696
 
8679
8697
  /**
8680
8698
  * pureFunction instruction that can support any number of bindings.
@@ -8691,7 +8709,7 @@ export declare function ɵangular_packages_core_core_bi(lView: ɵangular_package
8691
8709
  * @param thisArg Optional calling context of pureFn
8692
8710
  * @returns Updated or cached value
8693
8711
  */
8694
- export declare function ɵangular_packages_core_core_bj(lView: ɵangular_packages_core_core_bo, bindingRoot: number, slotOffset: number, pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any;
8712
+ export declare function ɵangular_packages_core_core_bk(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any;
8695
8713
 
8696
8714
  /**
8697
8715
  * Detects which sanitizer to use for URL property, based on tag name and prop name.
@@ -8700,14 +8718,14 @@ export declare function ɵangular_packages_core_core_bj(lView: ɵangular_package
8700
8718
  * `packages/compiler/src/schema/dom_security_schema.ts`.
8701
8719
  * If tag and prop names don't match Resource URL schema, use URL sanitizer.
8702
8720
  */
8703
- export declare function ɵangular_packages_core_core_bk(tag: string, prop: string): typeof ɵɵsanitizeResourceUrl;
8721
+ export declare function ɵangular_packages_core_core_bl(tag: string, prop: string): typeof ɵɵsanitizeResourceUrl;
8704
8722
 
8705
- export declare function ɵangular_packages_core_core_bl(name: string, props?: (...args: any[]) => any, parentClass?: any): any;
8723
+ export declare function ɵangular_packages_core_core_bm(name: string, props?: (...args: any[]) => any, parentClass?: any): any;
8706
8724
 
8707
- export declare function ɵangular_packages_core_core_bm(name: string, props?: (...args: any[]) => any, parentClass?: any, additionalProcessing?: (target: any, name: string, ...args: any[]) => void): any;
8725
+ export declare function ɵangular_packages_core_core_bn(name: string, props?: (...args: any[]) => any, parentClass?: any, additionalProcessing?: (target: any, name: string, ...args: any[]) => void): any;
8708
8726
 
8709
8727
 
8710
- export declare function ɵangular_packages_core_core_bn<T>(objWithPropertyToExtract: T): string;
8728
+ export declare function ɵangular_packages_core_core_bo<T>(objWithPropertyToExtract: T): string;
8711
8729
 
8712
8730
  /**
8713
8731
  * `LView` stores all of the information needed to process the instructions as
@@ -8719,7 +8737,7 @@ export declare function ɵangular_packages_core_core_bn<T>(objWithPropertyToExtr
8719
8737
  * Keeping separate state for each view facilities view insertion / deletion, so we
8720
8738
  * don't have to edit the data array based on which views are present.
8721
8739
  */
8722
- export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8740
+ export declare interface ɵangular_packages_core_core_bp extends Array<any> {
8723
8741
  /**
8724
8742
  * The host node for this LView instance, if this is a component view.
8725
8743
  * If this is an embedded view, HOST will be null.
@@ -8742,7 +8760,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8742
8760
  *
8743
8761
  * `LContainer` - The current view is part of a container, and is an embedded view.
8744
8762
  */
8745
- [PARENT]: ɵangular_packages_core_core_bo | LContainer | null;
8763
+ [PARENT]: ɵangular_packages_core_core_bp | LContainer | null;
8746
8764
  /**
8747
8765
  *
8748
8766
  * The next sibling LView or LContainer.
@@ -8752,7 +8770,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8752
8770
  * views in the same container. We need a way to link component views and views
8753
8771
  * across containers as well.
8754
8772
  */
8755
- [NEXT]: ɵangular_packages_core_core_bo | LContainer | null;
8773
+ [NEXT]: ɵangular_packages_core_core_bp | LContainer | null;
8756
8774
  /** Queries active for this view - nodes from a view are reported to those queries. */
8757
8775
  [QUERIES]: LQueries | null;
8758
8776
  /**
@@ -8765,7 +8783,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8765
8783
  *
8766
8784
  * If null, this is the root view of an application (root component is in this view).
8767
8785
  */
8768
- [T_HOST]: TViewNode | ɵangular_packages_core_core_be | null;
8786
+ [T_HOST]: TViewNode | ɵangular_packages_core_core_bf | null;
8769
8787
  /**
8770
8788
  * When a view is destroyed, listeners need to be released and outputs need to be
8771
8789
  * unsubscribed. This context array stores both listener functions wrapped with
@@ -8798,14 +8816,14 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8798
8816
  * Necessary to store this so views can traverse through their nested views
8799
8817
  * to remove listeners and call onDestroy callbacks.
8800
8818
  */
8801
- [CHILD_HEAD]: ɵangular_packages_core_core_bo | LContainer | null;
8819
+ [CHILD_HEAD]: ɵangular_packages_core_core_bp | LContainer | null;
8802
8820
  /**
8803
8821
  * The last LView or LContainer beneath this LView in the hierarchy.
8804
8822
  *
8805
8823
  * The tail allows us to quickly add a new state to the end of the view list
8806
8824
  * without having to propagate starting from the first child.
8807
8825
  */
8808
- [CHILD_TAIL]: ɵangular_packages_core_core_bo | LContainer | null;
8826
+ [CHILD_TAIL]: ɵangular_packages_core_core_bp | LContainer | null;
8809
8827
  /**
8810
8828
  * View where this view's template was declared.
8811
8829
  *
@@ -8830,7 +8848,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8830
8848
  * template function during change detection, we need the declaration view to get inherited
8831
8849
  * context.
8832
8850
  */
8833
- [DECLARATION_VIEW]: ɵangular_packages_core_core_bo | null;
8851
+ [DECLARATION_VIEW]: ɵangular_packages_core_core_bp | null;
8834
8852
  /**
8835
8853
  * Points to the declaration component view, used to track transplanted `LView`s.
8836
8854
  *
@@ -8900,7 +8918,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8900
8918
  * - `LView[DECLARATION_LCONTAINER]` similar problem for queries
8901
8919
  * - `LContainer[MOVED_VIEWS]` similar problem for queries
8902
8920
  */
8903
- [DECLARATION_COMPONENT_VIEW]: ɵangular_packages_core_core_bo;
8921
+ [DECLARATION_COMPONENT_VIEW]: ɵangular_packages_core_core_bp;
8904
8922
  /**
8905
8923
  * A declaration point of embedded views (ones instantiated based on the content of a
8906
8924
  * <ng-template>), null for other types of views.
@@ -8933,7 +8951,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
8933
8951
  * to something which is retained otherwise the call to `noSideEffects` will be removed by closure
8934
8952
  * compiler.
8935
8953
  */
8936
- export declare function ɵangular_packages_core_core_bp<T>(fn: () => T): T;
8954
+ export declare function ɵangular_packages_core_core_bq<T>(fn: () => T): T;
8937
8955
 
8938
8956
  /**
8939
8957
  * Returns the `RootContext` instance that is associated with
@@ -8942,7 +8960,7 @@ export declare function ɵangular_packages_core_core_bp<T>(fn: () => T): T;
8942
8960
  *
8943
8961
  * @param viewOrComponent the `LView` or component to get the root context for.
8944
8962
  */
8945
- export declare function ɵangular_packages_core_core_bq(viewOrComponent: ɵangular_packages_core_core_bo | {}): RootContext;
8963
+ export declare function ɵangular_packages_core_core_br(viewOrComponent: ɵangular_packages_core_core_bp | {}): RootContext;
8946
8964
 
8947
8965
  export declare class ɵangular_packages_core_core_c implements Injector {
8948
8966
  get(token: any, notFoundValue?: any): any;
@@ -9000,7 +9018,7 @@ export declare function ɵangular_packages_core_core_g(): string;
9000
9018
  * @param view The view to which the node belongs
9001
9019
  * @returns The ElementRef instance to use
9002
9020
  */
9003
- export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof ElementRef, tNode: TNode, view: ɵangular_packages_core_core_bo): ElementRef;
9021
+ export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof ElementRef, tNode: TNode, view: ɵangular_packages_core_core_bp): ElementRef;
9004
9022
 
9005
9023
  /**
9006
9024
  * Creates a TemplateRef and stores it on the injector.
@@ -9011,7 +9029,7 @@ export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof E
9011
9029
  * @param hostView The view to which the node belongs
9012
9030
  * @returns The TemplateRef instance or null if we can't create a TemplateRef on a given node type
9013
9031
  */
9014
- export declare function ɵangular_packages_core_core_i<T>(TemplateRefToken: typeof TemplateRef, ElementRefToken: typeof ElementRef, hostTNode: TNode, hostView: ɵangular_packages_core_core_bo): TemplateRef<T> | null;
9032
+ export declare function ɵangular_packages_core_core_i<T>(TemplateRefToken: typeof TemplateRef, ElementRefToken: typeof ElementRef, hostTNode: TNode, hostView: ɵangular_packages_core_core_bp): TemplateRef<T> | null;
9015
9033
 
9016
9034
  export declare function ɵangular_packages_core_core_j(id: string): NgModuleFactory<any>;
9017
9035
 
@@ -9118,11 +9136,13 @@ export declare abstract class ɵangular_packages_core_core_w {
9118
9136
  abstract logError(console: Console, ...values: any[]): void;
9119
9137
  }
9120
9138
 
9139
+ export declare function ɵangular_packages_core_core_x<T>(definition: ɵDirectiveDef<T>): typeof rememberChangeHistoryAndInvokeOnChangesHook;
9140
+
9121
9141
  /**
9122
9142
  * A change detection scheduler token for {@link RootContext}. This token is the default value used
9123
9143
  * for the default `RootContext` found in the {@link ROOT_CONTEXT} token.
9124
9144
  */
9125
- export declare const ɵangular_packages_core_core_x: InjectionToken<(fn: () => void) => void>;
9145
+ export declare const ɵangular_packages_core_core_y: InjectionToken<(fn: () => void) => void>;
9126
9146
 
9127
9147
  /**
9128
9148
  * Inject static attribute value into directive constructor.
@@ -9155,12 +9175,10 @@ export declare const ɵangular_packages_core_core_x: InjectionToken<(fn: () => v
9155
9175
  *
9156
9176
  * @publicApi
9157
9177
  */
9158
- export declare function ɵangular_packages_core_core_y(tNode: TNode, attrNameToInject: string): string | null;
9159
-
9160
- export declare const ɵangular_packages_core_core_z: InstructionState;
9178
+ export declare function ɵangular_packages_core_core_z(tNode: TNode, attrNameToInject: string): string | null;
9161
9179
 
9162
9180
  /**
9163
- * Providers that will generate a random APP_ID_TOKEN.
9181
+ * Providers that generate a random `APP_ID_TOKEN`.
9164
9182
  * @publicApi
9165
9183
  */
9166
9184
  export declare const ɵAPP_ID_RANDOM_PROVIDER: {
@@ -9773,14 +9791,6 @@ export declare interface ɵDirectiveDef<T> {
9773
9791
  * Populated when the factory is first requested by directive instantiation logic.
9774
9792
  */
9775
9793
  readonly factory: FactoryFn<T> | null;
9776
- readonly onChanges: (() => void) | null;
9777
- readonly onInit: (() => void) | null;
9778
- readonly doCheck: (() => void) | null;
9779
- readonly afterContentInit: (() => void) | null;
9780
- readonly afterContentChecked: (() => void) | null;
9781
- readonly afterViewInit: (() => void) | null;
9782
- readonly afterViewChecked: (() => void) | null;
9783
- readonly onDestroy: (() => void) | null;
9784
9794
  /**
9785
9795
  * The features applied to this directive
9786
9796
  */
@@ -9992,7 +10002,7 @@ export declare interface ɵLContext {
9992
10002
  /**
9993
10003
  * The component's parent view data.
9994
10004
  */
9995
- lView: ɵangular_packages_core_core_bo;
10005
+ lView: ɵangular_packages_core_core_bp;
9996
10006
  /**
9997
10007
  * The index instance of the node.
9998
10008
  */
@@ -10493,7 +10503,7 @@ export declare class ɵRender3ComponentRef<T> extends ComponentRef<T> {
10493
10503
  hostView: ViewRef_2<T>;
10494
10504
  changeDetectorRef: ChangeDetectorRef;
10495
10505
  componentType: Type<T>;
10496
- constructor(componentType: Type<T>, instance: T, location: ElementRef, _rootLView: ɵangular_packages_core_core_bo, _tNode: ɵangular_packages_core_core_be | TContainerNode | TElementContainerNode);
10506
+ constructor(componentType: Type<T>, instance: T, location: ElementRef, _rootLView: ɵangular_packages_core_core_bp, _tNode: ɵangular_packages_core_core_bf | TContainerNode | TElementContainerNode);
10497
10507
  get injector(): Injector;
10498
10508
  destroy(): void;
10499
10509
  onDestroy(callback: () => void): void;
@@ -10667,7 +10677,7 @@ export declare function ɵsetLocaleId(localeId: string): void;
10667
10677
  export declare type ɵSetterFn = (obj: any, value: any) => void;
10668
10678
 
10669
10679
  /** Store a value in the `data` at a given `index`. */
10670
- export declare function ɵstore<T>(tView: TView, lView: ɵangular_packages_core_core_bo, index: number, value: T): void;
10680
+ export declare function ɵstore<T>(tView: TView, lView: ɵangular_packages_core_core_bp, index: number, value: T): void;
10671
10681
 
10672
10682
 
10673
10683
  export declare function ɵstringify(token: any): string;
@@ -11429,29 +11439,6 @@ export declare type ɵɵComponentDefWithMeta<T, Selector extends String, ExportA
11429
11439
  [key: string]: string;
11430
11440
  }, QueryFields extends string[], NgContentSelectors extends string[]> = ɵComponentDef<T>;
11431
11441
 
11432
- /**
11433
- * Registers a synthetic host listener (e.g. `(@foo.start)`) on a component or directive.
11434
- *
11435
- * This instruction is for compatibility purposes and is designed to ensure that a
11436
- * synthetic host listener (e.g. `@HostListener('@foo.start')`) properly gets rendered
11437
- * in the component's renderer. Normally all host listeners are evaluated with the
11438
- * parent component's renderer, but, in the case of animation @triggers, they need
11439
- * to be evaluated with the sub component's renderer (because that's where the
11440
- * animation triggers are defined).
11441
- *
11442
- * Do not use this instruction as a replacement for `listener`. This instruction
11443
- * only exists to ensure compatibility with the ViewEngine's host binding behavior.
11444
- *
11445
- * @param eventName Name of the event
11446
- * @param listenerFn The function to be called when event emits
11447
- * @param useCapture Whether or not to use capture in event listener
11448
- * @param eventTargetResolver Function that returns global target information in case this listener
11449
- * should be attached to a global object like window, document or body
11450
- *
11451
- * @codeGenApi
11452
- */
11453
- export declare function ɵɵcomponentHostSyntheticListener(eventName: string, listenerFn: (e?: any) => any, useCapture?: boolean, eventTargetResolver?: GlobalTargetResolver): typeof ɵɵcomponentHostSyntheticListener;
11454
-
11455
11442
  /**
11456
11443
  * Registers a QueryList, associated with a content query, for later refresh (part of a view
11457
11444
  * refresh).
@@ -12492,7 +12479,7 @@ export declare type ɵɵNgModuleDefWithMeta<T, Declarations, Imports, Exports> =
12492
12479
  *
12493
12480
  * @codeGenApi
12494
12481
  */
12495
- export declare function ɵɵNgOnChangesFeature<T>(definition: ɵDirectiveDef<T>): void;
12482
+ export declare function ɵɵNgOnChangesFeature<T>(): DirectiveDefFeature;
12496
12483
 
12497
12484
 
12498
12485
  /**
@@ -14092,6 +14079,52 @@ export declare function ɵɵstylePropInterpolate8(prop: string, prefix: string,
14092
14079
  */
14093
14080
  export declare function ɵɵstylePropInterpolateV(prop: string, values: any[], valueSuffix?: string | null): typeof ɵɵstylePropInterpolateV;
14094
14081
 
14082
+ /**
14083
+ * Registers a synthetic host listener (e.g. `(@foo.start)`) on a component or directive.
14084
+ *
14085
+ * This instruction is for compatibility purposes and is designed to ensure that a
14086
+ * synthetic host listener (e.g. `@HostListener('@foo.start')`) properly gets rendered
14087
+ * in the component's renderer. Normally all host listeners are evaluated with the
14088
+ * parent component's renderer, but, in the case of animation @triggers, they need
14089
+ * to be evaluated with the sub component's renderer (because that's where the
14090
+ * animation triggers are defined).
14091
+ *
14092
+ * Do not use this instruction as a replacement for `listener`. This instruction
14093
+ * only exists to ensure compatibility with the ViewEngine's host binding behavior.
14094
+ *
14095
+ * @param eventName Name of the event
14096
+ * @param listenerFn The function to be called when event emits
14097
+ * @param useCapture Whether or not to use capture in event listener
14098
+ * @param eventTargetResolver Function that returns global target information in case this listener
14099
+ * should be attached to a global object like window, document or body
14100
+ *
14101
+ * @codeGenApi
14102
+ */
14103
+ export declare function ɵɵsyntheticHostListener(eventName: string, listenerFn: (e?: any) => any, useCapture?: boolean, eventTargetResolver?: GlobalTargetResolver): typeof ɵɵsyntheticHostListener;
14104
+
14105
+ /**
14106
+ * Updates a synthetic host binding (e.g. `[@foo]`) on a component or directive.
14107
+ *
14108
+ * This instruction is for compatibility purposes and is designed to ensure that a
14109
+ * synthetic host binding (e.g. `@HostBinding('@foo')`) properly gets rendered in
14110
+ * the component's renderer. Normally all host bindings are evaluated with the parent
14111
+ * component's renderer, but, in the case of animation @triggers, they need to be
14112
+ * evaluated with the sub component's renderer (because that's where the animation
14113
+ * triggers are defined).
14114
+ *
14115
+ * Do not use this instruction as a replacement for `elementProperty`. This instruction
14116
+ * only exists to ensure compatibility with the ViewEngine's host binding behavior.
14117
+ *
14118
+ * @param index The index of the element to update in the data array
14119
+ * @param propName Name of property. Because it is going to DOM, this is not subject to
14120
+ * renaming as part of minification.
14121
+ * @param value New value to write.
14122
+ * @param sanitizer An optional function used to sanitize the value.
14123
+ *
14124
+ * @codeGenApi
14125
+ */
14126
+ export declare function ɵɵsyntheticHostProperty<T>(propName: string, value: T | ɵNO_CHANGE, sanitizer?: SanitizerFn | null): typeof ɵɵsyntheticHostProperty;
14127
+
14095
14128
  /**
14096
14129
  * Creates an LContainer for an ng-template (dynamically-inserted view), e.g.
14097
14130
  *
@@ -14119,7 +14152,7 @@ export declare function ɵɵtemplate(index: number, templateFn: ComponentTemplat
14119
14152
  *
14120
14153
  * @codeGenApi
14121
14154
  */
14122
- export declare function ɵɵtemplateRefExtractor(tNode: TNode, currentView: ɵangular_packages_core_core_bo): TemplateRef<unknown> | null;
14155
+ export declare function ɵɵtemplateRefExtractor(tNode: TNode, currentView: ɵangular_packages_core_core_bp): TemplateRef<unknown> | null;
14123
14156
 
14124
14157
  /**
14125
14158
  * Create static text node
@@ -14355,29 +14388,6 @@ export declare function ɵɵtextInterpolate8(prefix: string, v0: any, i0: string
14355
14388
  */
14356
14389
  export declare function ɵɵtextInterpolateV(values: any[]): typeof ɵɵtextInterpolateV;
14357
14390
 
14358
- /**
14359
- * Updates a synthetic host binding (e.g. `[@foo]`) on a component or directive.
14360
- *
14361
- * This instruction is for compatibility purposes and is designed to ensure that a
14362
- * synthetic host binding (e.g. `@HostBinding('@foo')`) properly gets rendered in
14363
- * the component's renderer. Normally all host bindings are evaluated with the parent
14364
- * component's renderer, but, in the case of animation @triggers, they need to be
14365
- * evaluated with the sub component's renderer (because that's where the animation
14366
- * triggers are defined).
14367
- *
14368
- * Do not use this instruction as a replacement for `elementProperty`. This instruction
14369
- * only exists to ensure compatibility with the ViewEngine's host binding behavior.
14370
- *
14371
- * @param index The index of the element to update in the data array
14372
- * @param propName Name of property. Because it is going to DOM, this is not subject to
14373
- * renaming as part of minification.
14374
- * @param value New value to write.
14375
- * @param sanitizer An optional function used to sanitize the value.
14376
- *
14377
- * @codeGenApi
14378
- */
14379
- export declare function ɵɵupdateSyntheticHostBinding<T>(propName: string, value: T | ɵNO_CHANGE, sanitizer?: SanitizerFn | null): typeof ɵɵupdateSyntheticHostBinding;
14380
-
14381
14391
  /**
14382
14392
  * Creates new QueryList, stores the reference in LView and returns QueryList.
14383
14393
  *