@angular/core 9.0.3 → 9.0.7
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 +613 -579
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +157 -156
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +45 -45
- package/core.metadata.json +1 -1
- package/esm2015/core.js +2 -2
- package/esm2015/src/di/jit/injectable.js +2 -2
- package/esm2015/src/di/r3_injector.js +27 -9
- package/esm2015/src/render3/assert.js +4 -1
- package/esm2015/src/render3/definition.js +60 -60
- package/esm2015/src/render3/di.js +25 -19
- package/esm2015/src/render3/errors.js +1 -3
- package/esm2015/src/render3/features/ng_onchanges_feature.js +8 -13
- package/esm2015/src/render3/i18n.js +14 -7
- package/esm2015/src/render3/instructions/attribute.js +6 -6
- package/esm2015/src/render3/instructions/attribute_interpolation.js +29 -47
- package/esm2015/src/render3/instructions/host_property.js +13 -10
- package/esm2015/src/render3/instructions/property.js +8 -9
- package/esm2015/src/render3/instructions/property_interpolation.js +40 -39
- package/esm2015/src/render3/instructions/shared.js +18 -27
- package/esm2015/src/render3/jit/module.js +18 -18
- package/esm2015/src/render3/ng_module_ref.js +7 -3
- package/esm2015/src/render3/node_assert.js +1 -1
- package/esm2015/src/render3/pure_function.js +23 -6
- package/esm2015/src/render3/query.js +2 -5
- package/esm2015/src/render3/state.js +11 -1
- package/esm2015/src/util/assert.js +1 -3
- package/esm2015/src/util/closure.js +2 -2
- package/esm2015/src/util/decorators.js +87 -80
- package/esm2015/src/util/ng_dev_mode.js +1 -1
- package/esm2015/src/util/ng_i18n_closure_mode.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/core.js +2 -2
- package/esm5/src/di/jit/injectable.js +2 -2
- package/esm5/src/di/r3_injector.js +19 -5
- package/esm5/src/render3/assert.js +3 -1
- package/esm5/src/render3/definition.js +51 -51
- package/esm5/src/render3/di.js +16 -13
- package/esm5/src/render3/errors.js +1 -3
- package/esm5/src/render3/features/ng_onchanges_feature.js +8 -9
- package/esm5/src/render3/i18n.js +13 -6
- package/esm5/src/render3/instructions/attribute.js +5 -5
- package/esm5/src/render3/instructions/attribute_interpolation.js +29 -38
- package/esm5/src/render3/instructions/host_property.js +10 -8
- package/esm5/src/render3/instructions/property.js +7 -7
- package/esm5/src/render3/instructions/property_interpolation.js +31 -30
- package/esm5/src/render3/instructions/shared.js +10 -14
- package/esm5/src/render3/jit/module.js +12 -12
- package/esm5/src/render3/ng_module_ref.js +7 -3
- package/esm5/src/render3/node_assert.js +1 -1
- package/esm5/src/render3/pure_function.js +19 -6
- package/esm5/src/render3/query.js +2 -4
- package/esm5/src/render3/state.js +9 -1
- package/esm5/src/util/assert.js +1 -3
- package/esm5/src/util/closure.js +2 -2
- package/esm5/src/util/decorators.js +101 -94
- package/esm5/src/util/ng_dev_mode.js +1 -1
- package/esm5/src/util/ng_i18n_closure_mode.js +1 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +1130 -1101
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +613 -579
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +1 -1
- package/schematics/migrations/undecorated-classes-with-di/create_ngc_program.js +13 -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 v9.0.
|
|
2
|
+
* @license Angular v9.0.7
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3709,7 +3709,7 @@ declare interface LContainer extends Array<any> {
|
|
|
3709
3709
|
* The host could be an LView if this container is on a component node.
|
|
3710
3710
|
* In that case, the component LView is its HOST.
|
|
3711
3711
|
*/
|
|
3712
|
-
readonly [HOST]: RElement | RComment | ɵ
|
|
3712
|
+
readonly [HOST]: RElement | RComment | ɵangular_packages_core_core_bp;
|
|
3713
3713
|
/**
|
|
3714
3714
|
* This is a type field which allows us to differentiate `LContainer` from `StylingContext` in an
|
|
3715
3715
|
* efficient way. The value is always set to `true`
|
|
@@ -3734,18 +3734,18 @@ declare interface LContainer extends Array<any> {
|
|
|
3734
3734
|
* Access to the parent view is necessary so we can propagate back
|
|
3735
3735
|
* up from inside a container to parent[NEXT].
|
|
3736
3736
|
*/
|
|
3737
|
-
[PARENT]: ɵ
|
|
3737
|
+
[PARENT]: ɵangular_packages_core_core_bp;
|
|
3738
3738
|
/**
|
|
3739
3739
|
* This allows us to jump from a container to a sibling container or component
|
|
3740
3740
|
* view with the same parent, so we can remove listeners efficiently.
|
|
3741
3741
|
*/
|
|
3742
|
-
[NEXT]: ɵ
|
|
3742
|
+
[NEXT]: ɵangular_packages_core_core_bp | LContainer | null;
|
|
3743
3743
|
/**
|
|
3744
3744
|
* A collection of views created based on the underlying `<ng-template>` element but inserted into
|
|
3745
3745
|
* a different `LContainer`. We need to track views created from a given declaration point since
|
|
3746
3746
|
* queries collect matches from the embedded view declaration point and _not_ the insertion point.
|
|
3747
3747
|
*/
|
|
3748
|
-
[MOVED_VIEWS]: ɵ
|
|
3748
|
+
[MOVED_VIEWS]: ɵangular_packages_core_core_bp[] | null;
|
|
3749
3749
|
/**
|
|
3750
3750
|
* Pointer to the `TNode` which represents the host of the container.
|
|
3751
3751
|
*/
|
|
@@ -3782,7 +3782,7 @@ declare interface LFrame {
|
|
|
3782
3782
|
* An array of nodes (text, element, container, etc), pipes, their bindings, and
|
|
3783
3783
|
* any local variables that need to be stored between invocations.
|
|
3784
3784
|
*/
|
|
3785
|
-
lView: ɵ
|
|
3785
|
+
lView: ɵangular_packages_core_core_bp;
|
|
3786
3786
|
/**
|
|
3787
3787
|
* Current `TView` associated with the `LFrame.lView`.
|
|
3788
3788
|
*
|
|
@@ -3818,7 +3818,7 @@ declare interface LFrame {
|
|
|
3818
3818
|
*
|
|
3819
3819
|
* e.g. const inner = x().$implicit; const outer = x().$implicit;
|
|
3820
3820
|
*/
|
|
3821
|
-
contextLView: ɵ
|
|
3821
|
+
contextLView: ɵangular_packages_core_core_bp;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* Store the element depth count. This is used to identify the root elements of the template
|
|
3824
3824
|
* so that we can then attach patch data `LView` to only those elements. We know that those
|
|
@@ -3883,7 +3883,7 @@ export declare const LOCALE_ID: InjectionToken<string>;
|
|
|
3883
3883
|
* - `<div #nativeDivEl>` - `nativeDivEl` should point to the native `<div>` element;
|
|
3884
3884
|
* - `<ng-template #tplRef>` - `tplRef` should point to the `TemplateRef` instance;
|
|
3885
3885
|
*/
|
|
3886
|
-
declare type LocalRefExtractor = (tNode: TNodeWithLocalRefs, currentView: ɵ
|
|
3886
|
+
declare type LocalRefExtractor = (tNode: TNodeWithLocalRefs, currentView: ɵangular_packages_core_core_bp) => any;
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
3889
|
* lQueries represent a collection of individual LQuery objects tracked in a given view.
|
|
@@ -7493,7 +7493,7 @@ declare interface TView {
|
|
|
7493
7493
|
* This is a blueprint used to generate LView instances for this TView. Copying this
|
|
7494
7494
|
* blueprint is faster than creating a new LView from scratch.
|
|
7495
7495
|
*/
|
|
7496
|
-
blueprint: ɵ
|
|
7496
|
+
blueprint: ɵangular_packages_core_core_bp;
|
|
7497
7497
|
/**
|
|
7498
7498
|
* The template function used to refresh the view of dynamically created views
|
|
7499
7499
|
* and components. Will be null for inline views.
|
|
@@ -8241,14 +8241,14 @@ declare class ViewRef_2<T> implements EmbeddedViewRef<T>, InternalViewRef, viewE
|
|
|
8241
8241
|
*
|
|
8242
8242
|
* @internal
|
|
8243
8243
|
*/
|
|
8244
|
-
_lView: ɵ
|
|
8244
|
+
_lView: ɵangular_packages_core_core_bp,
|
|
8245
8245
|
/**
|
|
8246
8246
|
* This represents the `LView` associated with the point where `ChangeDetectorRef` was
|
|
8247
8247
|
* requested.
|
|
8248
8248
|
*
|
|
8249
8249
|
* This may be different from `_lView` if the `_cdRefInjectingView` is an embedded view.
|
|
8250
8250
|
*/
|
|
8251
|
-
_cdRefInjectingView?: ɵ
|
|
8251
|
+
_cdRefInjectingView?: ɵangular_packages_core_core_bp | undefined);
|
|
8252
8252
|
get context(): T;
|
|
8253
8253
|
get destroyed(): boolean;
|
|
8254
8254
|
destroy(): void;
|
|
@@ -8535,7 +8535,7 @@ export declare function ɵangular_packages_core_core_b<T>(token: Type<T> | Injec
|
|
|
8535
8535
|
/**
|
|
8536
8536
|
* Return the current `LView`.
|
|
8537
8537
|
*/
|
|
8538
|
-
export declare function ɵangular_packages_core_core_ba(): ɵ
|
|
8538
|
+
export declare function ɵangular_packages_core_core_ba(): ɵangular_packages_core_core_bp;
|
|
8539
8539
|
|
|
8540
8540
|
export declare function ɵangular_packages_core_core_bb(): TNode;
|
|
8541
8541
|
|
|
@@ -8575,7 +8575,7 @@ export declare interface ɵangular_packages_core_core_be extends TNode {
|
|
|
8575
8575
|
* @param thisArg Optional calling context of pureFn
|
|
8576
8576
|
* @returns Updated or cached value
|
|
8577
8577
|
*/
|
|
8578
|
-
export declare function ɵangular_packages_core_core_bf(lView: ɵ
|
|
8578
|
+
export declare function ɵangular_packages_core_core_bf(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v: any) => any, exp: any, thisArg?: any): any;
|
|
8579
8579
|
|
|
8580
8580
|
/**
|
|
8581
8581
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
@@ -8590,7 +8590,7 @@ export declare function ɵangular_packages_core_core_bf(lView: ɵangular_package
|
|
|
8590
8590
|
* @param thisArg Optional calling context of pureFn
|
|
8591
8591
|
* @returns Updated or cached value
|
|
8592
8592
|
*/
|
|
8593
|
-
export declare function ɵangular_packages_core_core_bg(lView: ɵ
|
|
8593
|
+
export declare function ɵangular_packages_core_core_bg(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any, thisArg?: any): any;
|
|
8594
8594
|
|
|
8595
8595
|
/**
|
|
8596
8596
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
@@ -8606,7 +8606,7 @@ export declare function ɵangular_packages_core_core_bg(lView: ɵangular_package
|
|
|
8606
8606
|
* @param thisArg Optional calling context of pureFn
|
|
8607
8607
|
* @returns Updated or cached value
|
|
8608
8608
|
*/
|
|
8609
|
-
export declare function ɵangular_packages_core_core_bh(lView: ɵ
|
|
8609
|
+
export declare function ɵangular_packages_core_core_bh(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;
|
|
8610
8610
|
|
|
8611
8611
|
/**
|
|
8612
8612
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
@@ -8624,7 +8624,7 @@ export declare function ɵangular_packages_core_core_bh(lView: ɵangular_package
|
|
|
8624
8624
|
* @returns Updated or cached value
|
|
8625
8625
|
*
|
|
8626
8626
|
*/
|
|
8627
|
-
export declare function ɵangular_packages_core_core_bi(lView: ɵ
|
|
8627
|
+
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, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, thisArg?: any): any;
|
|
8628
8628
|
|
|
8629
8629
|
/**
|
|
8630
8630
|
* pureFunction instruction that can support any number of bindings.
|
|
@@ -8641,7 +8641,7 @@ export declare function ɵangular_packages_core_core_bi(lView: ɵangular_package
|
|
|
8641
8641
|
* @param thisArg Optional calling context of pureFn
|
|
8642
8642
|
* @returns Updated or cached value
|
|
8643
8643
|
*/
|
|
8644
|
-
export declare function ɵangular_packages_core_core_bj(lView: ɵ
|
|
8644
|
+
export declare function ɵangular_packages_core_core_bj(lView: ɵangular_packages_core_core_bp, bindingRoot: number, slotOffset: number, pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any;
|
|
8645
8645
|
|
|
8646
8646
|
/**
|
|
8647
8647
|
* Detects which sanitizer to use for URL property, based on tag name and prop name.
|
|
@@ -8659,6 +8659,18 @@ export declare function ɵangular_packages_core_core_bm(name: string, props?: (.
|
|
|
8659
8659
|
|
|
8660
8660
|
export declare function ɵangular_packages_core_core_bn<T>(objWithPropertyToExtract: T): string;
|
|
8661
8661
|
|
|
8662
|
+
|
|
8663
|
+
/**
|
|
8664
|
+
* Convince closure compiler that the wrapped function has no side-effects.
|
|
8665
|
+
*
|
|
8666
|
+
* Closure compiler always assumes that `toString` has no side-effects. We use this quirk to
|
|
8667
|
+
* allow us to execute a function but have closure compiler mark the call as no-side-effects.
|
|
8668
|
+
* It is important that the return value for the `noSideEffects` function be assigned
|
|
8669
|
+
* to something which is retained otherwise the call to `noSideEffects` will be removed by closure
|
|
8670
|
+
* compiler.
|
|
8671
|
+
*/
|
|
8672
|
+
export declare function ɵangular_packages_core_core_bo<T>(fn: () => T): T;
|
|
8673
|
+
|
|
8662
8674
|
/**
|
|
8663
8675
|
* `LView` stores all of the information needed to process the instructions as
|
|
8664
8676
|
* they are invoked from the template. Each embedded view and component view has its
|
|
@@ -8669,7 +8681,7 @@ export declare function ɵangular_packages_core_core_bn<T>(objWithPropertyToExtr
|
|
|
8669
8681
|
* Keeping separate state for each view facilities view insertion / deletion, so we
|
|
8670
8682
|
* don't have to edit the data array based on which views are present.
|
|
8671
8683
|
*/
|
|
8672
|
-
export declare interface ɵ
|
|
8684
|
+
export declare interface ɵangular_packages_core_core_bp extends Array<any> {
|
|
8673
8685
|
/**
|
|
8674
8686
|
* The host node for this LView instance, if this is a component view.
|
|
8675
8687
|
* If this is an embedded view, HOST will be null.
|
|
@@ -8692,7 +8704,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8692
8704
|
*
|
|
8693
8705
|
* `LContainer` - The current view is part of a container, and is an embedded view.
|
|
8694
8706
|
*/
|
|
8695
|
-
[PARENT]: ɵ
|
|
8707
|
+
[PARENT]: ɵangular_packages_core_core_bp | LContainer | null;
|
|
8696
8708
|
/**
|
|
8697
8709
|
*
|
|
8698
8710
|
* The next sibling LView or LContainer.
|
|
@@ -8702,7 +8714,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8702
8714
|
* views in the same container. We need a way to link component views and views
|
|
8703
8715
|
* across containers as well.
|
|
8704
8716
|
*/
|
|
8705
|
-
[NEXT]: ɵ
|
|
8717
|
+
[NEXT]: ɵangular_packages_core_core_bp | LContainer | null;
|
|
8706
8718
|
/** Queries active for this view - nodes from a view are reported to those queries. */
|
|
8707
8719
|
[QUERIES]: LQueries | null;
|
|
8708
8720
|
/**
|
|
@@ -8748,14 +8760,14 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8748
8760
|
* Necessary to store this so views can traverse through their nested views
|
|
8749
8761
|
* to remove listeners and call onDestroy callbacks.
|
|
8750
8762
|
*/
|
|
8751
|
-
[CHILD_HEAD]: ɵ
|
|
8763
|
+
[CHILD_HEAD]: ɵangular_packages_core_core_bp | LContainer | null;
|
|
8752
8764
|
/**
|
|
8753
8765
|
* The last LView or LContainer beneath this LView in the hierarchy.
|
|
8754
8766
|
*
|
|
8755
8767
|
* The tail allows us to quickly add a new state to the end of the view list
|
|
8756
8768
|
* without having to propagate starting from the first child.
|
|
8757
8769
|
*/
|
|
8758
|
-
[CHILD_TAIL]: ɵ
|
|
8770
|
+
[CHILD_TAIL]: ɵangular_packages_core_core_bp | LContainer | null;
|
|
8759
8771
|
/**
|
|
8760
8772
|
* View where this view's template was declared.
|
|
8761
8773
|
*
|
|
@@ -8780,7 +8792,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8780
8792
|
* template function during change detection, we need the declaration view to get inherited
|
|
8781
8793
|
* context.
|
|
8782
8794
|
*/
|
|
8783
|
-
[DECLARATION_VIEW]: ɵ
|
|
8795
|
+
[DECLARATION_VIEW]: ɵangular_packages_core_core_bp | null;
|
|
8784
8796
|
/**
|
|
8785
8797
|
* Points to the declaration component view, used to track transplanted `LView`s.
|
|
8786
8798
|
*
|
|
@@ -8850,7 +8862,7 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8850
8862
|
* - `LView[DECLARATION_LCONTAINER]` similar problem for queries
|
|
8851
8863
|
* - `LContainer[MOVED_VIEWS]` similar problem for queries
|
|
8852
8864
|
*/
|
|
8853
|
-
[DECLARATION_COMPONENT_VIEW]: ɵ
|
|
8865
|
+
[DECLARATION_COMPONENT_VIEW]: ɵangular_packages_core_core_bp;
|
|
8854
8866
|
/**
|
|
8855
8867
|
* A declaration point of embedded views (ones instantiated based on the content of a
|
|
8856
8868
|
* <ng-template>), null for other types of views.
|
|
@@ -8866,18 +8878,6 @@ export declare interface ɵangular_packages_core_core_bo extends Array<any> {
|
|
|
8866
8878
|
[PREORDER_HOOK_FLAGS]: PreOrderHookFlags;
|
|
8867
8879
|
}
|
|
8868
8880
|
|
|
8869
|
-
|
|
8870
|
-
/**
|
|
8871
|
-
* Convince closure compiler that the wrapped function has no side-effects.
|
|
8872
|
-
*
|
|
8873
|
-
* Closure compiler always assumes that `toString` has no side-effects. We use this quirk to
|
|
8874
|
-
* allow us to execute a function but have closure compiler mark the call as no-side-effects.
|
|
8875
|
-
* It is important that the return value for the `noSideEffects` function be assigned
|
|
8876
|
-
* to something which is retained otherwise the call to `noSideEffects` will be removed by closure
|
|
8877
|
-
* compiler.
|
|
8878
|
-
*/
|
|
8879
|
-
export declare function ɵangular_packages_core_core_bp(fn: () => void): string;
|
|
8880
|
-
|
|
8881
8881
|
/**
|
|
8882
8882
|
* Returns the `RootContext` instance that is associated with
|
|
8883
8883
|
* the application where the target is situated. It does this by walking the parent views until it
|
|
@@ -8885,7 +8885,7 @@ export declare function ɵangular_packages_core_core_bp(fn: () => void): string;
|
|
|
8885
8885
|
*
|
|
8886
8886
|
* @param viewOrComponent the `LView` or component to get the root context for.
|
|
8887
8887
|
*/
|
|
8888
|
-
export declare function ɵangular_packages_core_core_bq(viewOrComponent: ɵ
|
|
8888
|
+
export declare function ɵangular_packages_core_core_bq(viewOrComponent: ɵangular_packages_core_core_bp | {}): RootContext;
|
|
8889
8889
|
|
|
8890
8890
|
export declare class ɵangular_packages_core_core_c implements Injector {
|
|
8891
8891
|
get(token: any, notFoundValue?: any): any;
|
|
@@ -8943,7 +8943,7 @@ export declare function ɵangular_packages_core_core_g(): string;
|
|
|
8943
8943
|
* @param view The view to which the node belongs
|
|
8944
8944
|
* @returns The ElementRef instance to use
|
|
8945
8945
|
*/
|
|
8946
|
-
export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof ElementRef, tNode: TNode, view: ɵ
|
|
8946
|
+
export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof ElementRef, tNode: TNode, view: ɵangular_packages_core_core_bp): ElementRef;
|
|
8947
8947
|
|
|
8948
8948
|
/**
|
|
8949
8949
|
* Creates a TemplateRef and stores it on the injector.
|
|
@@ -8954,7 +8954,7 @@ export declare function ɵangular_packages_core_core_h(ElementRefToken: typeof E
|
|
|
8954
8954
|
* @param hostView The view to which the node belongs
|
|
8955
8955
|
* @returns The TemplateRef instance or null if we can't create a TemplateRef on a given node type
|
|
8956
8956
|
*/
|
|
8957
|
-
export declare function ɵangular_packages_core_core_i<T>(TemplateRefToken: typeof TemplateRef, ElementRefToken: typeof ElementRef, hostTNode: TNode, hostView: ɵ
|
|
8957
|
+
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;
|
|
8958
8958
|
|
|
8959
8959
|
export declare function ɵangular_packages_core_core_j(id: string): NgModuleFactory<any>;
|
|
8960
8960
|
|
|
@@ -9934,7 +9934,7 @@ export declare interface ɵLContext {
|
|
|
9934
9934
|
/**
|
|
9935
9935
|
* The component's parent view data.
|
|
9936
9936
|
*/
|
|
9937
|
-
lView: ɵ
|
|
9937
|
+
lView: ɵangular_packages_core_core_bp;
|
|
9938
9938
|
/**
|
|
9939
9939
|
* The index instance of the node.
|
|
9940
9940
|
*/
|
|
@@ -10437,7 +10437,7 @@ export declare class ɵRender3ComponentRef<T> extends ComponentRef<T> {
|
|
|
10437
10437
|
hostView: ViewRef_2<T>;
|
|
10438
10438
|
changeDetectorRef: ChangeDetectorRef;
|
|
10439
10439
|
componentType: Type<T>;
|
|
10440
|
-
constructor(componentType: Type<T>, instance: T, location: ElementRef, _rootLView: ɵ
|
|
10440
|
+
constructor(componentType: Type<T>, instance: T, location: ElementRef, _rootLView: ɵangular_packages_core_core_bp, _tNode: ɵangular_packages_core_core_be | TContainerNode | TElementContainerNode);
|
|
10441
10441
|
get injector(): Injector;
|
|
10442
10442
|
destroy(): void;
|
|
10443
10443
|
onDestroy(callback: () => void): void;
|
|
@@ -10609,7 +10609,7 @@ export declare function ɵsetLocaleId(localeId: string): void;
|
|
|
10609
10609
|
export declare type ɵSetterFn = (obj: any, value: any) => void;
|
|
10610
10610
|
|
|
10611
10611
|
/** Store a value in the `data` at a given `index`. */
|
|
10612
|
-
export declare function ɵstore<T>(tView: TView, lView: ɵ
|
|
10612
|
+
export declare function ɵstore<T>(tView: TView, lView: ɵangular_packages_core_core_bp, index: number, value: T): void;
|
|
10613
10613
|
|
|
10614
10614
|
|
|
10615
10615
|
export declare function ɵstringify(token: any): string;
|
|
@@ -12483,13 +12483,13 @@ export declare type ɵɵNgModuleDefWithMeta<T, Declarations, Imports, Exports> =
|
|
|
12483
12483
|
* static ɵcmp = defineComponent({
|
|
12484
12484
|
* ...
|
|
12485
12485
|
* inputs: {name: 'publicName'},
|
|
12486
|
-
* features: [NgOnChangesFeature
|
|
12486
|
+
* features: [NgOnChangesFeature]
|
|
12487
12487
|
* });
|
|
12488
12488
|
* ```
|
|
12489
12489
|
*
|
|
12490
12490
|
* @codeGenApi
|
|
12491
12491
|
*/
|
|
12492
|
-
export declare function ɵɵNgOnChangesFeature<T>():
|
|
12492
|
+
export declare function ɵɵNgOnChangesFeature<T>(definition: ɵDirectiveDef<T>): void;
|
|
12493
12493
|
|
|
12494
12494
|
|
|
12495
12495
|
/**
|
|
@@ -14139,7 +14139,7 @@ export declare function ɵɵtemplate(index: number, templateFn: ComponentTemplat
|
|
|
14139
14139
|
*
|
|
14140
14140
|
* @codeGenApi
|
|
14141
14141
|
*/
|
|
14142
|
-
export declare function ɵɵtemplateRefExtractor(tNode: TNode, currentView: ɵ
|
|
14142
|
+
export declare function ɵɵtemplateRefExtractor(tNode: TNode, currentView: ɵangular_packages_core_core_bp): TemplateRef<unknown> | null;
|
|
14143
14143
|
|
|
14144
14144
|
/**
|
|
14145
14145
|
* Create static text node
|