@angular/core 15.0.0-next.6 → 15.0.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/di/provider_collection.mjs +1 -2
- package/esm2020/src/di/r3_injector.mjs +1 -3
- package/esm2020/src/metadata/directives.mjs +1 -1
- package/esm2020/src/render3/features/host_directives_feature.mjs +6 -7
- package/esm2020/src/render3/ng_module_ref.mjs +1 -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 +7 -12
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +7 -12
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +7 -12
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +7 -12
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +1 -12
- 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 v15.0.0-
|
|
2
|
+
* @license Angular v15.0.0-rc.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1034,8 +1034,6 @@ export declare interface Component extends Directive {
|
|
|
1034
1034
|
*
|
|
1035
1035
|
* More information about standalone components, directives, and pipes can be found in [this
|
|
1036
1036
|
* guide](guide/standalone-components).
|
|
1037
|
-
*
|
|
1038
|
-
* @developerPreview
|
|
1039
1037
|
*/
|
|
1040
1038
|
standalone?: boolean;
|
|
1041
1039
|
/**
|
|
@@ -1048,8 +1046,6 @@ export declare interface Component extends Directive {
|
|
|
1048
1046
|
*
|
|
1049
1047
|
* More information about standalone components, directives, and pipes can be found in [this
|
|
1050
1048
|
* guide](guide/standalone-components).
|
|
1051
|
-
*
|
|
1052
|
-
* @developerPreview
|
|
1053
1049
|
*/
|
|
1054
1050
|
imports?: (Type<any> | any[])[];
|
|
1055
1051
|
/**
|
|
@@ -1734,7 +1730,6 @@ export declare function createComponent<C>(component: Type<C>, options: {
|
|
|
1734
1730
|
* messages.
|
|
1735
1731
|
*
|
|
1736
1732
|
* @publicApi
|
|
1737
|
-
* @developerPreview
|
|
1738
1733
|
*/
|
|
1739
1734
|
export declare function createEnvironmentInjector(providers: Array<Provider | EnvironmentProviders>, parent: EnvironmentInjector, debugName?: string | null): EnvironmentInjector;
|
|
1740
1735
|
|
|
@@ -2386,8 +2381,6 @@ export declare interface Directive {
|
|
|
2386
2381
|
*
|
|
2387
2382
|
* More information about standalone components, directives, and pipes can be found in [this
|
|
2388
2383
|
* guide](guide/standalone-components).
|
|
2389
|
-
*
|
|
2390
|
-
* @developerPreview
|
|
2391
2384
|
*/
|
|
2392
2385
|
standalone?: boolean;
|
|
2393
2386
|
/**
|
|
@@ -2727,8 +2720,6 @@ export declare const ENVIRONMENT_INITIALIZER: InjectionToken<() => void>;
|
|
|
2727
2720
|
/**
|
|
2728
2721
|
* An `Injector` that's part of the environment injector hierarchy, which exists outside of the
|
|
2729
2722
|
* component tree.
|
|
2730
|
-
*
|
|
2731
|
-
* @developerPreview
|
|
2732
2723
|
*/
|
|
2733
2724
|
export declare abstract class EnvironmentInjector implements Injector {
|
|
2734
2725
|
/**
|
|
@@ -3722,14 +3713,12 @@ export declare type ImportedNgModuleProviders = EnvironmentProviders;
|
|
|
3722
3713
|
*
|
|
3723
3714
|
* @returns Collected providers from the specified list of types.
|
|
3724
3715
|
* @publicApi
|
|
3725
|
-
* @developerPreview
|
|
3726
3716
|
*/
|
|
3727
3717
|
export declare function importProvidersFrom(...sources: ImportProvidersSource[]): EnvironmentProviders;
|
|
3728
3718
|
|
|
3729
3719
|
/**
|
|
3730
3720
|
* A source of providers for the `importProvidersFrom` function.
|
|
3731
3721
|
*
|
|
3732
|
-
* @developerPreview
|
|
3733
3722
|
* @publicApi
|
|
3734
3723
|
*/
|
|
3735
3724
|
export declare type ImportProvidersSource = Type<unknown> | ModuleWithProviders<unknown> | Array<ImportProvidersSource>;
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED