@angular/core 21.0.5 → 21.0.7
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/fesm2022/_attribute-chunk.mjs +1 -1
- package/fesm2022/_debug_node-chunk.mjs +122 -92
- package/fesm2022/_debug_node-chunk.mjs.map +1 -1
- package/fesm2022/_effect-chunk.mjs +3 -3
- package/fesm2022/_effect-chunk.mjs.map +1 -1
- package/fesm2022/_linked_signal-chunk.mjs +2 -2
- package/fesm2022/_linked_signal-chunk.mjs.map +1 -1
- package/fesm2022/_not_found-chunk.mjs +1 -1
- package/fesm2022/_resource-chunk.mjs +1 -1
- package/fesm2022/_untracked-chunk.mjs +12 -3
- package/fesm2022/_untracked-chunk.mjs.map +1 -1
- package/fesm2022/_weak_ref-chunk.mjs +1 -1
- package/fesm2022/core.mjs +5 -5
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives-di.mjs +1 -1
- package/fesm2022/primitives-event-dispatch.mjs +1 -1
- package/fesm2022/primitives-signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/fesm2022/testing.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/bundles/add-bootstrap-context-to-server-main.cjs +1 -1
- package/schematics/bundles/application-config-core.cjs +1 -1
- package/schematics/bundles/apply_import_manager-1Zs_gpB6.cjs +1 -1
- package/schematics/bundles/bootstrap-options-migration.cjs +1 -1
- package/schematics/bundles/cleanup-unused-imports.cjs +1 -1
- package/schematics/bundles/common-to-standalone-migration.cjs +1 -1
- package/schematics/bundles/compiler_host-DBwYMlTo.cjs +1 -1
- package/schematics/bundles/control-flow-migration.cjs +1 -1
- package/schematics/bundles/imports-DP72APSx.cjs +1 -1
- package/schematics/bundles/{index-B7I9sIUx.cjs → index-CP6pC5TJ.cjs} +2 -2
- package/schematics/bundles/inject-migration.cjs +1 -1
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/{migrate_ts_type_references-UGIUl7En.cjs → migrate_ts_type_references--PJz69_w.cjs} +2 -2
- package/schematics/bundles/ng_component_template-Dsuq1Lw7.cjs +1 -1
- package/schematics/bundles/ng_decorators-DSFlWYQY.cjs +1 -1
- package/schematics/bundles/ngclass-to-class-migration.cjs +1 -1
- package/schematics/bundles/ngstyle-to-style-migration.cjs +1 -1
- package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
- package/schematics/bundles/output-migration.cjs +2 -2
- package/schematics/bundles/parse_html-8VLCL37B.cjs +1 -1
- package/schematics/bundles/project_paths-DvD50ouC.cjs +1 -1
- package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +1 -1
- package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
- package/schematics/bundles/route-lazy-loading.cjs +1 -1
- package/schematics/bundles/router-current-navigation.cjs +1 -1
- package/schematics/bundles/router-last-successful-navigation.cjs +1 -1
- package/schematics/bundles/router-testing-module-migration.cjs +1 -1
- package/schematics/bundles/self-closing-tags-migration.cjs +1 -1
- package/schematics/bundles/signal-input-migration.cjs +3 -3
- package/schematics/bundles/signal-queries-migration.cjs +3 -3
- package/schematics/bundles/signals.cjs +3 -3
- package/schematics/bundles/standalone-migration.cjs +1 -1
- package/schematics/bundles/symbol-BObKoqes.cjs +1 -1
- package/types/_api-chunk.d.ts +1 -1
- package/types/_chrome_dev_tools_performance-chunk.d.ts +1 -1
- package/types/_discovery-chunk.d.ts +7 -5
- package/types/_effect-chunk.d.ts +1 -1
- package/types/_event_dispatcher-chunk.d.ts +1 -1
- package/types/_formatter-chunk.d.ts +1 -1
- package/types/_weak_ref-chunk.d.ts +1 -1
- package/types/core.d.ts +39 -26
- package/types/primitives-di.d.ts +1 -1
- package/types/primitives-event-dispatch.d.ts +1 -1
- package/types/primitives-signals.d.ts +1 -1
- package/types/rxjs-interop.d.ts +1 -1
- package/types/testing.d.ts +7 -7
package/types/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.
|
|
2
|
+
* @license Angular v21.0.7
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -965,6 +965,7 @@ interface ContentChildrenDecorator {
|
|
|
965
965
|
* {@example core/di/ts/contentChildren/content_children_example.ts region='Component'}
|
|
966
966
|
*
|
|
967
967
|
* @Annotation
|
|
968
|
+
* @see [Content queries](guide/components/queries#decorator-content-queries)
|
|
968
969
|
*/
|
|
969
970
|
(selector: ProviderToken<unknown> | Function | string, opts?: {
|
|
970
971
|
descendants?: boolean;
|
|
@@ -1057,6 +1058,7 @@ interface ContentChildDecorator {
|
|
|
1057
1058
|
* {@example core/di/ts/contentChild/content_child_example.ts region='Component'}
|
|
1058
1059
|
*
|
|
1059
1060
|
* @Annotation
|
|
1061
|
+
* @see [Content queries](guide/components/queries#decorator-content-queries)
|
|
1060
1062
|
*/
|
|
1061
1063
|
(selector: ProviderToken<unknown> | Function | string, opts?: {
|
|
1062
1064
|
descendants?: boolean;
|
|
@@ -1142,6 +1144,7 @@ interface ViewChildrenDecorator {
|
|
|
1142
1144
|
* {@example core/di/ts/viewChildren/view_children_example.ts region='Component'}
|
|
1143
1145
|
*
|
|
1144
1146
|
* @Annotation
|
|
1147
|
+
* @see [View queries](guide/components/queries#decorator-view-queries)
|
|
1145
1148
|
*/
|
|
1146
1149
|
(selector: ProviderToken<unknown> | Function | string, opts?: {
|
|
1147
1150
|
read?: any;
|
|
@@ -1225,6 +1228,7 @@ interface ViewChildDecorator {
|
|
|
1225
1228
|
* {@example core/di/ts/viewChild/view_child_howto.ts region='HowTo'}
|
|
1226
1229
|
*
|
|
1227
1230
|
* @Annotation
|
|
1231
|
+
* @see [View queries](guide/components/queries#decorator-view-queries)
|
|
1228
1232
|
*/
|
|
1229
1233
|
(selector: ProviderToken<unknown> | Function | string, opts?: {
|
|
1230
1234
|
read?: any;
|
|
@@ -2648,6 +2652,7 @@ declare function afterRenderEffect<E = never, W = never, M = never>(spec: {
|
|
|
2648
2652
|
* to disallow certain code from running inside a reactive context (see {@link /api/core/rxjs-interop/toSignal toSignal})
|
|
2649
2653
|
*
|
|
2650
2654
|
* @param debugFn a reference to the function making the assertion (used for the error message).
|
|
2655
|
+
* @see [Asserts the reactive context](guide/signals#asserts-the-reactive-context)
|
|
2651
2656
|
*
|
|
2652
2657
|
* @publicApi
|
|
2653
2658
|
*/
|
|
@@ -3515,6 +3520,8 @@ declare function getNgModuleById<T>(id: string): Type$1<T>;
|
|
|
3515
3520
|
*
|
|
3516
3521
|
* @see {@link ViewContainerRef}
|
|
3517
3522
|
*
|
|
3523
|
+
* @see [Getting a reference to a template fragment](guide/templates/ng-template#getting-a-reference-to-a-template-fragment)
|
|
3524
|
+
*
|
|
3518
3525
|
* @publicApi
|
|
3519
3526
|
*/
|
|
3520
3527
|
declare class TemplateRef<C> {
|
|
@@ -3586,6 +3593,7 @@ declare class TemplateRef<C> {
|
|
|
3586
3593
|
*
|
|
3587
3594
|
* @see {@link ComponentRef}
|
|
3588
3595
|
* @see {@link EmbeddedViewRef}
|
|
3596
|
+
* @see [Using ViewContainerRef](guide/components/programmatic-rendering#using-viewcontainerref)
|
|
3589
3597
|
*
|
|
3590
3598
|
* @publicApi
|
|
3591
3599
|
*/
|
|
@@ -4494,6 +4502,7 @@ declare const platformCore: (extraProviders?: StaticProvider[] | undefined) => P
|
|
|
4494
4502
|
* ```
|
|
4495
4503
|
*
|
|
4496
4504
|
* @publicApi
|
|
4505
|
+
* @see [Import global variants of the locale data](guide/i18n/import-global-variants)
|
|
4497
4506
|
*/
|
|
4498
4507
|
declare const LOCALE_ID: InjectionToken<string>;
|
|
4499
4508
|
/**
|
|
@@ -4889,6 +4898,11 @@ declare const enum RuntimeErrorCode {
|
|
|
4889
4898
|
MISSING_DIRECTIVE_DEFINITION = 916,
|
|
4890
4899
|
NO_COMPONENT_FACTORY_FOUND = 917,
|
|
4891
4900
|
EXTERNAL_RESOURCE_LOADING_FAILED = 918,
|
|
4901
|
+
DEF_TYPE_UNDEFINED = -919,
|
|
4902
|
+
NG_MODULE_ID_NOT_FOUND = 920,
|
|
4903
|
+
DUPLICATE_NG_MODULE_ID = 921,
|
|
4904
|
+
VIEW_DESTROYED_INSERT_ERROR = 922,
|
|
4905
|
+
VIEW_DESTROYED_MOVE_ERROR = 923,
|
|
4892
4906
|
REQUIRED_INPUT_NO_VALUE = -950,
|
|
4893
4907
|
REQUIRED_QUERY_NO_VALUE = -951,
|
|
4894
4908
|
REQUIRED_MODEL_NO_VALUE = 952,
|
|
@@ -5120,7 +5134,7 @@ declare function registerLocaleData(data: any, localeId?: string | any, extraDat
|
|
|
5120
5134
|
*
|
|
5121
5135
|
* @param locale The locale code.
|
|
5122
5136
|
* @returns The locale data.
|
|
5123
|
-
* @see [Internationalization (i18n) Guide](
|
|
5137
|
+
* @see [Internationalization (i18n) Guide](guide/i18n)
|
|
5124
5138
|
*/
|
|
5125
5139
|
declare function findLocaleData(locale: string): any;
|
|
5126
5140
|
/**
|
|
@@ -5571,7 +5585,7 @@ declare const PERFORMANCE_MARK_PREFIX = "\uD83C\uDD70\uFE0F";
|
|
|
5571
5585
|
* Function that will start measuring against the performance API
|
|
5572
5586
|
* Should be used in pair with stopMeasuring
|
|
5573
5587
|
*/
|
|
5574
|
-
declare function startMeasuring
|
|
5588
|
+
declare function startMeasuring(label: string): void;
|
|
5575
5589
|
/**
|
|
5576
5590
|
* Function that will stop measuring against the performance API
|
|
5577
5591
|
* Should be used in pair with startMeasuring
|
|
@@ -5738,7 +5752,7 @@ declare class DehydratedBlockRegistry {
|
|
|
5738
5752
|
* to avoid calling `setTimeout` for each defer block (e.g. if defer blocks
|
|
5739
5753
|
* are created inside a for loop).
|
|
5740
5754
|
*/
|
|
5741
|
-
declare class TimerScheduler {
|
|
5755
|
+
declare class TimerScheduler implements OnDestroy {
|
|
5742
5756
|
executingCallbacks: boolean;
|
|
5743
5757
|
timeoutId: number | null;
|
|
5744
5758
|
invokeTimerAt: number | null;
|
|
@@ -5761,7 +5775,8 @@ declare class TimerScheduler {
|
|
|
5761
5775
|
*/
|
|
5762
5776
|
declare function ɵassertType<T>(value: unknown): asserts value is T;
|
|
5763
5777
|
|
|
5764
|
-
|
|
5778
|
+
/** Tracks the IDs of LViews with leaving animations. */
|
|
5779
|
+
declare const allLeavingAnimations: Set<number>;
|
|
5765
5780
|
|
|
5766
5781
|
declare function compileNgModuleFactory<M>(injector: Injector, options: CompilerOptions, moduleType: Type$1<M>): Promise<NgModuleFactory$1<M>>;
|
|
5767
5782
|
|
|
@@ -6647,7 +6662,7 @@ declare function ɵɵcontrolCreate(): void;
|
|
|
6647
6662
|
*
|
|
6648
6663
|
* @codeGenApi
|
|
6649
6664
|
*/
|
|
6650
|
-
declare function ɵɵcontrol<T>(value: T, sanitizer?: SanitizerFn | null): void;
|
|
6665
|
+
declare function ɵɵcontrol<T>(value: T, name: string, sanitizer?: SanitizerFn | null): void;
|
|
6651
6666
|
/**
|
|
6652
6667
|
* Calls {@link updateControl} with the current `LView` and selected `TNode`.
|
|
6653
6668
|
*
|
|
@@ -8093,12 +8108,11 @@ declare function ɵɵpipeBindV(index: number, slotOffset: number, values: [any,
|
|
|
8093
8108
|
*
|
|
8094
8109
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
8095
8110
|
* @param pureFn Function that returns a value
|
|
8096
|
-
* @param thisArg Optional calling context of pureFn
|
|
8097
8111
|
* @returns value
|
|
8098
8112
|
*
|
|
8099
8113
|
* @codeGenApi
|
|
8100
8114
|
*/
|
|
8101
|
-
declare function ɵɵpureFunction0<T>(slotOffset: number, pureFn: () => T
|
|
8115
|
+
declare function ɵɵpureFunction0<T>(slotOffset: number, pureFn: () => T): T;
|
|
8102
8116
|
/**
|
|
8103
8117
|
* If the value of the provided exp has changed, calls the pure function to return
|
|
8104
8118
|
* an updated value. Or if the value has not changed, returns cached value.
|
|
@@ -8106,12 +8120,11 @@ declare function ɵɵpureFunction0<T>(slotOffset: number, pureFn: () => T, thisA
|
|
|
8106
8120
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
8107
8121
|
* @param pureFn Function that returns an updated value
|
|
8108
8122
|
* @param exp Updated expression value
|
|
8109
|
-
* @param thisArg Optional calling context of pureFn
|
|
8110
8123
|
* @returns Updated or cached value
|
|
8111
8124
|
*
|
|
8112
8125
|
* @codeGenApi
|
|
8113
8126
|
*/
|
|
8114
|
-
declare function ɵɵpureFunction1(slotOffset: number, pureFn: (v: any) => any, exp: any
|
|
8127
|
+
declare function ɵɵpureFunction1(slotOffset: number, pureFn: (v: any) => any, exp: any): any;
|
|
8115
8128
|
/**
|
|
8116
8129
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8117
8130
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8120,12 +8133,11 @@ declare function ɵɵpureFunction1(slotOffset: number, pureFn: (v: any) => any,
|
|
|
8120
8133
|
* @param pureFn
|
|
8121
8134
|
* @param exp1
|
|
8122
8135
|
* @param exp2
|
|
8123
|
-
* @param thisArg Optional calling context of pureFn
|
|
8124
8136
|
* @returns Updated or cached value
|
|
8125
8137
|
*
|
|
8126
8138
|
* @codeGenApi
|
|
8127
8139
|
*/
|
|
8128
|
-
declare function ɵɵpureFunction2(slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any
|
|
8140
|
+
declare function ɵɵpureFunction2(slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any): any;
|
|
8129
8141
|
/**
|
|
8130
8142
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8131
8143
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8135,12 +8147,11 @@ declare function ɵɵpureFunction2(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8135
8147
|
* @param exp1
|
|
8136
8148
|
* @param exp2
|
|
8137
8149
|
* @param exp3
|
|
8138
|
-
* @param thisArg Optional calling context of pureFn
|
|
8139
8150
|
* @returns Updated or cached value
|
|
8140
8151
|
*
|
|
8141
8152
|
* @codeGenApi
|
|
8142
8153
|
*/
|
|
8143
|
-
declare function ɵɵpureFunction3(slotOffset: number, pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any
|
|
8154
|
+
declare function ɵɵpureFunction3(slotOffset: number, pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any): any;
|
|
8144
8155
|
/**
|
|
8145
8156
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8146
8157
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8151,7 +8162,6 @@ declare function ɵɵpureFunction3(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8151
8162
|
* @param exp2
|
|
8152
8163
|
* @param exp3
|
|
8153
8164
|
* @param exp4
|
|
8154
|
-
* @param thisArg Optional calling context of pureFn
|
|
8155
8165
|
* @returns Updated or cached value
|
|
8156
8166
|
*
|
|
8157
8167
|
* @codeGenApi
|
|
@@ -8168,12 +8178,11 @@ declare function ɵɵpureFunction4(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8168
8178
|
* @param exp3
|
|
8169
8179
|
* @param exp4
|
|
8170
8180
|
* @param exp5
|
|
8171
|
-
* @param thisArg Optional calling context of pureFn
|
|
8172
8181
|
* @returns Updated or cached value
|
|
8173
8182
|
*
|
|
8174
8183
|
* @codeGenApi
|
|
8175
8184
|
*/
|
|
8176
|
-
declare function ɵɵpureFunction5(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any
|
|
8185
|
+
declare function ɵɵpureFunction5(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any): any;
|
|
8177
8186
|
/**
|
|
8178
8187
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8179
8188
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8186,12 +8195,11 @@ declare function ɵɵpureFunction5(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8186
8195
|
* @param exp4
|
|
8187
8196
|
* @param exp5
|
|
8188
8197
|
* @param exp6
|
|
8189
|
-
* @param thisArg Optional calling context of pureFn
|
|
8190
8198
|
* @returns Updated or cached value
|
|
8191
8199
|
*
|
|
8192
8200
|
* @codeGenApi
|
|
8193
8201
|
*/
|
|
8194
|
-
declare function ɵɵpureFunction6(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any
|
|
8202
|
+
declare function ɵɵpureFunction6(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any): any;
|
|
8195
8203
|
/**
|
|
8196
8204
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8197
8205
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8205,12 +8213,11 @@ declare function ɵɵpureFunction6(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8205
8213
|
* @param exp5
|
|
8206
8214
|
* @param exp6
|
|
8207
8215
|
* @param exp7
|
|
8208
|
-
* @param thisArg Optional calling context of pureFn
|
|
8209
8216
|
* @returns Updated or cached value
|
|
8210
8217
|
*
|
|
8211
8218
|
* @codeGenApi
|
|
8212
8219
|
*/
|
|
8213
|
-
declare function ɵɵpureFunction7(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any
|
|
8220
|
+
declare function ɵɵpureFunction7(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any): any;
|
|
8214
8221
|
/**
|
|
8215
8222
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
8216
8223
|
* an updated value. Or if no values have changed, returns cached value.
|
|
@@ -8225,12 +8232,11 @@ declare function ɵɵpureFunction7(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8225
8232
|
* @param exp6
|
|
8226
8233
|
* @param exp7
|
|
8227
8234
|
* @param exp8
|
|
8228
|
-
* @param thisArg Optional calling context of pureFn
|
|
8229
8235
|
* @returns Updated or cached value
|
|
8230
8236
|
*
|
|
8231
8237
|
* @codeGenApi
|
|
8232
8238
|
*/
|
|
8233
|
-
declare function ɵɵpureFunction8(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any, v8: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, exp8: any
|
|
8239
|
+
declare function ɵɵpureFunction8(slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any, v8: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, exp8: any): any;
|
|
8234
8240
|
/**
|
|
8235
8241
|
* pureFunction instruction that can support any number of bindings.
|
|
8236
8242
|
*
|
|
@@ -8241,12 +8247,11 @@ declare function ɵɵpureFunction8(slotOffset: number, pureFn: (v1: any, v2: any
|
|
|
8241
8247
|
* @param pureFn A pure function that takes binding values and builds an object or array
|
|
8242
8248
|
* containing those values.
|
|
8243
8249
|
* @param exps An array of binding values
|
|
8244
|
-
* @param thisArg Optional calling context of pureFn
|
|
8245
8250
|
* @returns Updated or cached value
|
|
8246
8251
|
*
|
|
8247
8252
|
* @codeGenApi
|
|
8248
8253
|
*/
|
|
8249
|
-
declare function ɵɵpureFunctionV(slotOffset: number, pureFn: (...v: any[]) => any, exps: any[]
|
|
8254
|
+
declare function ɵɵpureFunctionV(slotOffset: number, pureFn: (...v: any[]) => any, exps: any[]): any;
|
|
8250
8255
|
|
|
8251
8256
|
/**
|
|
8252
8257
|
*
|
|
@@ -9439,6 +9444,14 @@ declare function mergeApplicationConfig(...configs: ApplicationConfig[]): Applic
|
|
|
9439
9444
|
* @publicApi
|
|
9440
9445
|
*/
|
|
9441
9446
|
declare const REQUEST: InjectionToken<Request | null>;
|
|
9447
|
+
/**
|
|
9448
|
+
* Type that represents the initialization options for a response.
|
|
9449
|
+
*
|
|
9450
|
+
* @publicApi
|
|
9451
|
+
*/
|
|
9452
|
+
type ResponseInit = {
|
|
9453
|
+
-readonly [P in keyof globalThis.ResponseInit]: globalThis.ResponseInit[P];
|
|
9454
|
+
};
|
|
9442
9455
|
/**
|
|
9443
9456
|
* Injection token for response initialization options.
|
|
9444
9457
|
*
|
|
@@ -9498,4 +9511,4 @@ declare const DOCUMENT: InjectionToken<Document>;
|
|
|
9498
9511
|
declare function provideNgReflectAttributes(): EnvironmentProviders;
|
|
9499
9512
|
|
|
9500
9513
|
export { ANIMATION_MODULE_TYPE, APP_ID, APP_INITIALIZER, AfterRenderRef, AnimationFunction, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, Binding, CSP_NONCE, ChangeDetectionStrategy$1 as ChangeDetectionStrategy, ChangeDetectorRef, ClassProvider, ClassSansProvider, CompilerOptions, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ConstructorProvider, ConstructorSansProvider, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DOCUMENT, DefaultIterableDiffer, Directive, ENVIRONMENT_INITIALIZER, EffectCleanupRegisterFn, ElementRef, EmbeddedViewRef, EnvironmentInjector, EnvironmentProviders, ErrorHandler, ExistingProvider, ExistingSansProvider, FactoryProvider, FactorySansProvider, HOST_TAG_NAME, Host, HostAttributeToken, INJECTOR, Inject, InjectOptions, Injectable, InjectionToken, Injector, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithProviders, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgZone, Optional, OutputRef, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Provider, ProviderToken, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Resource, ResourceOptions, ResourceRef, ResourceStatus, ResourceStreamingLoader, SchemaMetadata, Self, Signal, SimpleChange, SkipSelf, StaticClassProvider, StaticClassSansProvider, StaticProvider, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type$1 as Type, TypeDecorator, TypeProvider, VERSION, ValueEqualityFn, ValueProvider, ValueSansProvider, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef$1 as ViewRef, WritableResource, WritableSignal, afterEveryRender, afterNextRender, afterRenderEffect, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, destroyPlatform, enableProdMode, enableProfiling$1 as enableProfiling, forwardRef, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, platformCore, provideAppInitializer, provideBrowserGlobalErrorListeners, provideCheckNoChangesConfig, provideEnvironmentInitializer, provideNgReflectAttributes, providePlatformInitializer, provideZoneChangeDetection, provideZonelessChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, untracked, viewChild, viewChildren, AcxChangeDetectionStrategy as ɵAcxChangeDetectionStrategy, AcxViewEncapsulation as ɵAcxViewEncapsulation, BypassType as ɵBypassType, CLIENT_RENDER_MODE_FLAG as ɵCLIENT_RENDER_MODE_FLAG, ɵCONTROL, ComponentDef as ɵComponentDef, ComponentFactory$1 as ɵComponentFactory, ComponentType as ɵComponentType, Console as ɵConsole, CssSelectorList as ɵCssSelectorList, CurrencyIndex as ɵCurrencyIndex, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DEHYDRATED_BLOCK_REGISTRY as ɵDEHYDRATED_BLOCK_REGISTRY, DeferBlockConfig as ɵDeferBlockConfig, DeferBlockDependencyInterceptor as ɵDeferBlockDependencyInterceptor, DeferBlockState as ɵDeferBlockState, DirectiveDef as ɵDirectiveDef, DirectiveType as ɵDirectiveType, ENABLE_ROOT_COMPONENT_BOOTSTRAP as ɵENABLE_ROOT_COMPONENT_BOOTSTRAP, ExtraLocaleDataIndex as ɵExtraLocaleDataIndex, Framework as ɵFramework, HydrationStatus as ɵHydrationStatus, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_ENABLED_BLOCKING_INITIAL_NAVIGATION as ɵIS_ENABLED_BLOCKING_INITIAL_NAVIGATION, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, InputSignalNode as ɵInputSignalNode, JSACTION_BLOCK_ELEMENT_MAP as ɵJSACTION_BLOCK_ELEMENT_MAP, LContext as ɵLContext, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasksInternal, ProfilerEvent as ɵProfilerEvent, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, ResourceImpl as ɵResourceImpl, RuntimeError as ɵRuntimeError, RuntimeErrorCode as ɵRuntimeErrorCode, SIGNAL as ɵSIGNAL, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TimerScheduler as ɵTimerScheduler, ViewRef as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allLeavingAnimations as ɵallLeavingAnimations, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, ɵassertType, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, ɵcontrolUpdate, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, createOrReusePlatformInjector as ɵcreateOrReusePlatformInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, encapsulateResourceError as ɵencapsulateResourceError, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getComponentDef as ɵgetComponentDef, getDirectives as ɵgetDirectives, getDocument as ɵgetDocument, getHostElement as ɵgetHostElement, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, getTransferState as ɵgetTransferState, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, inferTagNameFromDefinition as ɵinferTagNameFromDefinition, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, isViewDirty as ɵisViewDirty, markForRefresh as ɵmarkForRefresh, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, provideZonelessChangeDetectionInternal as ɵprovideZonelessChangeDetectionInternal, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetIncrementalHydrationEnabledWarnedForTests as ɵresetIncrementalHydrationEnabledWarnedForTests, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, startMeasuring as ɵstartMeasuring, stopMeasuring as ɵstopMeasuring, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵExternalStylesFeature, __FactoryDeclaration as ɵɵFactoryDeclaration, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, __InjectableDeclaration as ɵɵInjectableDeclaration, __InjectorDeclaration as ɵɵInjectorDeclaration, __NgModuleDeclaration as ɵɵNgModuleDeclaration, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵanimateEnter, ɵɵanimateEnterListener, ɵɵanimateLeave, ɵɵanimateLeaveListener, ɵɵariaProperty, ɵɵattachSourceLocations, ɵɵattribute, ɵɵclassMap, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵconditionalBranchCreate, ɵɵconditionalCreate, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵcontrol, ɵɵcontrolCreate, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferHydrateNever, ɵɵdeferHydrateOnHover, ɵɵdeferHydrateOnIdle, ɵɵdeferHydrateOnImmediate, ɵɵdeferHydrateOnInteraction, ɵɵdeferHydrateOnTimer, ɵɵdeferHydrateOnViewport, ɵɵdeferHydrateWhen, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵdomElement, ɵɵdomElementContainer, ɵɵdomElementContainerEnd, ɵɵdomElementContainerStart, ɵɵdomElementEnd, ɵɵdomElementStart, ɵɵdomListener, ɵɵdomProperty, ɵɵdomTemplate, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵgetReplaceMetadataURL, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinterpolate, ɵɵinterpolate1, ɵɵinterpolate2, ɵɵinterpolate3, ɵɵinterpolate4, ɵɵinterpolate5, ɵɵinterpolate6, ɵɵinterpolate7, ɵɵinterpolate8, ɵɵinterpolateV, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareClassMetadataAsync, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreadContextLet, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵreplaceMetadata, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstoreLet, ɵɵstyleMap, ɵɵstyleProp, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
9501
|
-
export type { AfterContentChecked, AfterContentInit, AfterRenderOptions, AfterViewChecked, AfterViewInit, ApplicationConfig, AttributeDecorator, ComponentMirror, ContentChildDecorator, ContentChildFunction, ContentChildrenDecorator, CreateComputedOptions, DoBootstrap, DoCheck, ForwardRefFn, GetTestability, HostDecorator, ImportProvidersSource, InjectDecorator, InjectableDecorator, InjectableProvider, InputFunction, InputOptions, InputOptionsWithTransform, InputOptionsWithoutTransform, InputSignal, InputSignalWithTransform, IterableChangeRecord, IterableChanges, IterableDiffer, IterableDifferFactory, KeyValueChangeRecord, KeyValueChanges, KeyValueDiffer, KeyValueDifferFactory, ModelFunction, ModelOptions, ModelSignal, NgIterable, NgZoneOptions, OnChanges, OnDestroy, OnInit, OptionalDecorator, PipeTransform, SelfDecorator, SimpleChanges, SkipSelfDecorator, StateKey, TrackByFunction, ViewChildDecorator, ViewChildFunction, ViewChildrenDecorator, AcxComponentDebugMetadata as ɵAcxComponentDebugMetadata, AcxDirectiveDebugMetadata as ɵAcxDirectiveDebugMetadata, AngularComponentDebugMetadata as ɵAngularComponentDebugMetadata, AngularDirectiveDebugMetadata as ɵAngularDirectiveDebugMetadata, BaseDirectiveDebugMetadata as ɵBaseDirectiveDebugMetadata, ɵControl, DeferBlockData as ɵDeferBlockData, DirectiveDebugMetadata as ɵDirectiveDebugMetadata, ɵFieldState, ɵFirstAvailable, ɵFirstAvailableSignal, FrameworkAgnosticGlobalUtils as ɵFrameworkAgnosticGlobalUtils, GlobalDevModeUtils as ɵGlobalDevModeUtils, HydratedNode as ɵHydratedNode, HydrationInfo as ɵHydrationInfo, ImageConfig as ɵImageConfig, InjectorProfilerContext as ɵInjectorProfilerContext, ɵInteropControl, NgModuleDef as ɵNgModuleDef, NgModuleTransitiveScopes as ɵNgModuleTransitiveScopes, NgModuleType as ɵNgModuleType, Profiler as ɵProfiler, ProviderRecord as ɵProviderRecord, SafeHtml as ɵSafeHtml, SafeResourceUrl as ɵSafeResourceUrl, SafeScript as ɵSafeScript, SafeStyle as ɵSafeStyle, SafeUrl as ɵSafeUrl, SafeValue as ɵSafeValue, ɵUnwrapDirectiveSignalInputs, WizComponentDebugMetadata as ɵWizComponentDebugMetadata };
|
|
9514
|
+
export type { AfterContentChecked, AfterContentInit, AfterRenderOptions, AfterViewChecked, AfterViewInit, ApplicationConfig, AttributeDecorator, ComponentMirror, ContentChildDecorator, ContentChildFunction, ContentChildrenDecorator, CreateComputedOptions, DoBootstrap, DoCheck, ForwardRefFn, GetTestability, HostDecorator, ImportProvidersSource, InjectDecorator, InjectableDecorator, InjectableProvider, InputFunction, InputOptions, InputOptionsWithTransform, InputOptionsWithoutTransform, InputSignal, InputSignalWithTransform, IterableChangeRecord, IterableChanges, IterableDiffer, IterableDifferFactory, KeyValueChangeRecord, KeyValueChanges, KeyValueDiffer, KeyValueDifferFactory, ModelFunction, ModelOptions, ModelSignal, NgIterable, NgZoneOptions, OnChanges, OnDestroy, OnInit, OptionalDecorator, PipeTransform, ResponseInit, SelfDecorator, SimpleChanges, SkipSelfDecorator, StateKey, TrackByFunction, ViewChildDecorator, ViewChildFunction, ViewChildrenDecorator, AcxComponentDebugMetadata as ɵAcxComponentDebugMetadata, AcxDirectiveDebugMetadata as ɵAcxDirectiveDebugMetadata, AngularComponentDebugMetadata as ɵAngularComponentDebugMetadata, AngularDirectiveDebugMetadata as ɵAngularDirectiveDebugMetadata, BaseDirectiveDebugMetadata as ɵBaseDirectiveDebugMetadata, ɵControl, DeferBlockData as ɵDeferBlockData, DirectiveDebugMetadata as ɵDirectiveDebugMetadata, ɵFieldState, ɵFirstAvailable, ɵFirstAvailableSignal, FrameworkAgnosticGlobalUtils as ɵFrameworkAgnosticGlobalUtils, GlobalDevModeUtils as ɵGlobalDevModeUtils, HydratedNode as ɵHydratedNode, HydrationInfo as ɵHydrationInfo, ImageConfig as ɵImageConfig, InjectorProfilerContext as ɵInjectorProfilerContext, ɵInteropControl, NgModuleDef as ɵNgModuleDef, NgModuleTransitiveScopes as ɵNgModuleTransitiveScopes, NgModuleType as ɵNgModuleType, Profiler as ɵProfiler, ProviderRecord as ɵProviderRecord, SafeHtml as ɵSafeHtml, SafeResourceUrl as ɵSafeResourceUrl, SafeScript as ɵSafeScript, SafeStyle as ɵSafeStyle, SafeUrl as ɵSafeUrl, SafeValue as ɵSafeValue, ɵUnwrapDirectiveSignalInputs, WizComponentDebugMetadata as ɵWizComponentDebugMetadata };
|
package/types/primitives-di.d.ts
CHANGED
package/types/rxjs-interop.d.ts
CHANGED
package/types/testing.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.
|
|
2
|
+
* @license Angular v21.0.7
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -147,7 +147,7 @@ declare class ComponentFixture<T> {
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
/**
|
|
150
|
-
* IMPORTANT: This API requires Zone.js
|
|
150
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
151
151
|
*
|
|
152
152
|
* Clears out the shared fake async zone for a test.
|
|
153
153
|
* To be called in a global `beforeEach`.
|
|
@@ -156,7 +156,7 @@ declare class ComponentFixture<T> {
|
|
|
156
156
|
*/
|
|
157
157
|
declare function resetFakeAsyncZone(): void;
|
|
158
158
|
/**
|
|
159
|
-
* IMPORTANT: This API requires Zone.js
|
|
159
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
160
160
|
*
|
|
161
161
|
* Wraps a function to be executed in the `fakeAsync` zone:
|
|
162
162
|
* - Microtasks are manually executed by calling `flushMicrotasks()`.
|
|
@@ -185,7 +185,7 @@ declare function fakeAsync(fn: Function, options?: {
|
|
|
185
185
|
flush?: boolean;
|
|
186
186
|
}): (...args: any[]) => any;
|
|
187
187
|
/**
|
|
188
|
-
* IMPORTANT: This API requires Zone.js
|
|
188
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
189
189
|
*
|
|
190
190
|
* Simulates the asynchronous passage of time for the timers in the `fakeAsync` zone.
|
|
191
191
|
*
|
|
@@ -254,7 +254,7 @@ declare function tick(millis?: number, tickOptions?: {
|
|
|
254
254
|
processNewMacroTasksSynchronously: boolean;
|
|
255
255
|
}): void;
|
|
256
256
|
/**
|
|
257
|
-
* IMPORTANT: This API requires Zone.js
|
|
257
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
258
258
|
*
|
|
259
259
|
* Flushes any pending microtasks and simulates the asynchronous passage of time for the timers in
|
|
260
260
|
* the `fakeAsync` zone by
|
|
@@ -268,7 +268,7 @@ declare function tick(millis?: number, tickOptions?: {
|
|
|
268
268
|
*/
|
|
269
269
|
declare function flush(maxTurns?: number): number;
|
|
270
270
|
/**
|
|
271
|
-
* IMPORTANT: This API requires Zone.js
|
|
271
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
272
272
|
*
|
|
273
273
|
* Discard all remaining periodic tasks.
|
|
274
274
|
*
|
|
@@ -276,7 +276,7 @@ declare function flush(maxTurns?: number): number;
|
|
|
276
276
|
*/
|
|
277
277
|
declare function discardPeriodicTasks(): void;
|
|
278
278
|
/**
|
|
279
|
-
* IMPORTANT: This API requires Zone.js
|
|
279
|
+
* IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner
|
|
280
280
|
*
|
|
281
281
|
* Flush any pending microtasks.
|
|
282
282
|
*
|