@angular/core 14.2.0-next.1 → 14.2.0-rc.0
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/esm2020/src/core_private_export.mjs +2 -2
- package/esm2020/src/linker/template_ref.mjs +1 -1
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/esm2020/testing/src/resolvers.mjs +1 -1
- package/fesm2015/core.mjs +3 -3
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +2 -2
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3 -3
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +2 -2
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +8 -3
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.2.0-
|
|
2
|
+
* @license Angular v14.2.0-rc.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -7660,8 +7660,7 @@ export declare abstract class TemplateRef<C> {
|
|
|
7660
7660
|
*/
|
|
7661
7661
|
abstract readonly elementRef: ElementRef;
|
|
7662
7662
|
/**
|
|
7663
|
-
* Instantiates an embedded view based on this template
|
|
7664
|
-
* and attaches it to the view container.
|
|
7663
|
+
* Instantiates an unattached embedded view based on this template.
|
|
7665
7664
|
* @param context The data-binding context of the embedded view, as declared
|
|
7666
7665
|
* in the `<ng-template>` usage.
|
|
7667
7666
|
* @param injector Injector to be used within the embedded view.
|
|
@@ -10194,6 +10193,12 @@ export declare function ɵfindLocaleData(locale: string): any;
|
|
|
10194
10193
|
*/
|
|
10195
10194
|
export declare function ɵflushModuleScopingQueueAsMuchAsPossible(): void;
|
|
10196
10195
|
|
|
10196
|
+
/**
|
|
10197
|
+
* Called to format a runtime error.
|
|
10198
|
+
* See additional info on the `message` argument type in the `RuntimeError` class description.
|
|
10199
|
+
*/
|
|
10200
|
+
export declare function ɵformatRuntimeError<T extends number = RuntimeErrorCode>(code: T, message: null | false | string): string;
|
|
10201
|
+
|
|
10197
10202
|
export declare function ɵgetDebugNodeR2(_nativeNode: any): DebugNode | null;
|
|
10198
10203
|
|
|
10199
10204
|
/**
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED