@angular/core 14.2.4 → 14.2.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.
- package/esm2020/src/metadata/directives.mjs +1 -1
- package/esm2020/src/render3/jit/module.mjs +2 -2
- 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/fesm2015/core.mjs +3 -3
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +3 -3
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3 -3
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +3 -3
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +8 -8
- 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.
|
|
2
|
+
* @license Angular v14.2.5
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1029,10 +1029,10 @@ export declare interface Component extends Directive {
|
|
|
1029
1029
|
preserveWhitespaces?: boolean;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* Angular components marked as `standalone` do not need to be declared in an NgModule. Such
|
|
1032
|
-
* components directly manage their own template dependencies (components, directives and pipes
|
|
1032
|
+
* components directly manage their own template dependencies (components, directives, and pipes
|
|
1033
1033
|
* used in a template) via the imports property.
|
|
1034
1034
|
*
|
|
1035
|
-
* More information about standalone components, directives and pipes can be found in [this
|
|
1035
|
+
* More information about standalone components, directives, and pipes can be found in [this
|
|
1036
1036
|
* guide](guide/standalone-components).
|
|
1037
1037
|
*
|
|
1038
1038
|
* @developerPreview
|
|
@@ -1041,12 +1041,12 @@ export declare interface Component extends Directive {
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* The imports property specifies the standalone component's template dependencies — those
|
|
1043
1043
|
* directives, components, and pipes that can be used within its template. Standalone components
|
|
1044
|
-
* can import other standalone components, directives and pipes as well as existing NgModules.
|
|
1044
|
+
* can import other standalone components, directives, and pipes as well as existing NgModules.
|
|
1045
1045
|
*
|
|
1046
1046
|
* This property is only available for standalone components - specifying it for components
|
|
1047
1047
|
* declared in an NgModule generates a compilation error.
|
|
1048
1048
|
*
|
|
1049
|
-
* More information about standalone components, directives and pipes can be found in [this
|
|
1049
|
+
* More information about standalone components, directives, and pipes can be found in [this
|
|
1050
1050
|
* guide](guide/standalone-components).
|
|
1051
1051
|
*
|
|
1052
1052
|
* @developerPreview
|
|
@@ -1059,7 +1059,7 @@ export declare interface Component extends Directive {
|
|
|
1059
1059
|
* This property is only available for standalone components - specifying it for components
|
|
1060
1060
|
* declared in an NgModule generates a compilation error.
|
|
1061
1061
|
*
|
|
1062
|
-
* More information about standalone components, directives and pipes can be found in [this
|
|
1062
|
+
* More information about standalone components, directives, and pipes can be found in [this
|
|
1063
1063
|
* guide](guide/standalone-components).
|
|
1064
1064
|
*/
|
|
1065
1065
|
schemas?: SchemaMetadata[];
|
|
@@ -2384,7 +2384,7 @@ export declare interface Directive {
|
|
|
2384
2384
|
* directives don't depend on any "intermediate context" of an NgModule (ex. configured
|
|
2385
2385
|
* providers).
|
|
2386
2386
|
*
|
|
2387
|
-
* More information about standalone components, directives and pipes can be found in [this
|
|
2387
|
+
* More information about standalone components, directives, and pipes can be found in [this
|
|
2388
2388
|
* guide](guide/standalone-components).
|
|
2389
2389
|
*
|
|
2390
2390
|
* @developerPreview
|
|
@@ -5803,7 +5803,7 @@ export declare interface Pipe {
|
|
|
5803
5803
|
* Angular pipes marked as `standalone` do not need to be declared in an NgModule. Such
|
|
5804
5804
|
* pipes don't depend on any "intermediate context" of an NgModule (ex. configured providers).
|
|
5805
5805
|
*
|
|
5806
|
-
* More information about standalone components, directives and pipes can be found in [this
|
|
5806
|
+
* More information about standalone components, directives, and pipes can be found in [this
|
|
5807
5807
|
* guide](guide/standalone-components).
|
|
5808
5808
|
*/
|
|
5809
5809
|
standalone?: boolean;
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED