@angular/core 11.2.5 → 11.2.9
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 +120 -59
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +133 -133
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +56 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/core_render3_private_export.js +1 -1
- package/esm2015/src/render3/definition.js +3 -2
- package/esm2015/src/render3/empty.js +1 -4
- package/esm2015/src/render3/features/inherit_definition_feature.js +3 -2
- package/esm2015/src/render3/features/ng_onchanges_feature.js +2 -2
- package/esm2015/src/render3/hooks.js +16 -3
- package/esm2015/src/render3/instructions/listener.js +16 -10
- package/esm2015/src/render3/instructions/shared.js +8 -2
- package/esm2015/src/render3/interfaces/view.js +1 -1
- package/esm2015/src/render3/jit/directive.js +3 -2
- package/esm2015/src/render3/profiler.js +36 -0
- package/esm2015/src/render3/util/global_utils.js +8 -1
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +120 -59
- 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.9
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -10956,6 +10956,61 @@ export declare function ɵppd(checkIndex: number, argCount: number): NodeDef;
|
|
|
10956
10956
|
|
|
10957
10957
|
export declare function ɵprd(flags: ɵNodeFlags, matchedQueries: null | [string | number, ɵQueryValueType][], token: any, value: any, deps: ([ɵDepFlags, any] | any)[]): NodeDef;
|
|
10958
10958
|
|
|
10959
|
+
/**
|
|
10960
|
+
* Profiler function which the runtime will invoke before and after user code.
|
|
10961
|
+
*/
|
|
10962
|
+
export declare interface ɵProfiler {
|
|
10963
|
+
(event: ɵProfilerEvent, instance: {} | null, hookOrListener?: (e?: any) => any): void;
|
|
10964
|
+
}
|
|
10965
|
+
|
|
10966
|
+
|
|
10967
|
+
/**
|
|
10968
|
+
* Profiler events is an enum used by the profiler to distinguish between different calls of user
|
|
10969
|
+
* code invoked throughout the application lifecycle.
|
|
10970
|
+
*/
|
|
10971
|
+
export declare const enum ɵProfilerEvent {
|
|
10972
|
+
/**
|
|
10973
|
+
* Corresponds to the point in time before the runtime has called the template function of a
|
|
10974
|
+
* component with `RenderFlags.Create`.
|
|
10975
|
+
*/
|
|
10976
|
+
TemplateCreateStart = 0,
|
|
10977
|
+
/**
|
|
10978
|
+
* Corresponds to the point in time after the runtime has called the template function of a
|
|
10979
|
+
* component with `RenderFlags.Create`.
|
|
10980
|
+
*/
|
|
10981
|
+
TemplateCreateEnd = 1,
|
|
10982
|
+
/**
|
|
10983
|
+
* Corresponds to the point in time before the runtime has called the template function of a
|
|
10984
|
+
* component with `RenderFlags.Update`.
|
|
10985
|
+
*/
|
|
10986
|
+
TemplateUpdateStart = 2,
|
|
10987
|
+
/**
|
|
10988
|
+
* Corresponds to the point in time after the runtime has called the template function of a
|
|
10989
|
+
* component with `RenderFlags.Update`.
|
|
10990
|
+
*/
|
|
10991
|
+
TemplateUpdateEnd = 3,
|
|
10992
|
+
/**
|
|
10993
|
+
* Corresponds to the point in time before the runtime has called a lifecycle hook of a component
|
|
10994
|
+
* or directive.
|
|
10995
|
+
*/
|
|
10996
|
+
LifecycleHookStart = 4,
|
|
10997
|
+
/**
|
|
10998
|
+
* Corresponds to the point in time after the runtime has called a lifecycle hook of a component
|
|
10999
|
+
* or directive.
|
|
11000
|
+
*/
|
|
11001
|
+
LifecycleHookEnd = 5,
|
|
11002
|
+
/**
|
|
11003
|
+
* Corresponds to the point in time before the runtime has evaluated an expression associated with
|
|
11004
|
+
* an event or an output.
|
|
11005
|
+
*/
|
|
11006
|
+
OutputStart = 6,
|
|
11007
|
+
/**
|
|
11008
|
+
* Corresponds to the point in time after the runtime has evaluated an expression associated with
|
|
11009
|
+
* an event or an output.
|
|
11010
|
+
*/
|
|
11011
|
+
OutputEnd = 7
|
|
11012
|
+
}
|
|
11013
|
+
|
|
10959
11014
|
/**
|
|
10960
11015
|
* Publishes a collection of default debug tools onto`window.ng`.
|
|
10961
11016
|
*
|