@angular/core 11.2.13 → 11.2.14
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 +23 -8
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +69 -69
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +19 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/core_private_export.js +2 -1
- package/esm2015/src/di/injector.js +1 -1
- package/esm2015/src/render3/error_code.js +1 -1
- package/esm2015/src/render3/jit/module.js +5 -5
- package/esm2015/src/render3/node_manipulation.js +18 -3
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +23 -9
- 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.14
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -11215,6 +11215,24 @@ export declare function ɵresolveComponentResources(resourceResolver: (url: stri
|
|
|
11215
11215
|
text(): Promise<string>;
|
|
11216
11216
|
}>)): Promise<void>;
|
|
11217
11217
|
|
|
11218
|
+
export declare class ɵRuntimeError extends Error {
|
|
11219
|
+
code: ɵRuntimeErrorCode;
|
|
11220
|
+
constructor(code: ɵRuntimeErrorCode, message: string);
|
|
11221
|
+
}
|
|
11222
|
+
|
|
11223
|
+
|
|
11224
|
+
export declare const enum ɵRuntimeErrorCode {
|
|
11225
|
+
EXPRESSION_CHANGED_AFTER_CHECKED = "100",
|
|
11226
|
+
CYCLIC_DI_DEPENDENCY = "200",
|
|
11227
|
+
PROVIDER_NOT_FOUND = "201",
|
|
11228
|
+
MULTIPLE_COMPONENTS_MATCH = "300",
|
|
11229
|
+
EXPORT_NOT_FOUND = "301",
|
|
11230
|
+
PIPE_NOT_FOUND = "302",
|
|
11231
|
+
UNKNOWN_BINDING = "303",
|
|
11232
|
+
UNKNOWN_ELEMENT = "304",
|
|
11233
|
+
TEMPLATE_STRUCTURE_ERROR = "305"
|
|
11234
|
+
}
|
|
11235
|
+
|
|
11218
11236
|
/**
|
|
11219
11237
|
* Marker interface for a value that's safe to use as HTML.
|
|
11220
11238
|
*
|