@angular/core 19.1.0-next.1 → 19.1.0-next.3
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/core.mjs +274 -96
- package/fesm2022/core.mjs.map +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 +10 -10
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +174 -122
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{checker-a00b735e.js → checker-228cb8a8.js} +143 -40
- package/schematics/bundles/{combine_units-4983dfd3.js → combine_units-5d6a7099.js} +3 -3
- package/schematics/bundles/{compiler_host-3e96c3f7.js → compiler_host-fc806dbe.js} +2 -2
- package/schematics/bundles/control-flow-migration.js +3 -3
- package/schematics/bundles/explicit-standalone-flag.js +5 -5
- package/schematics/bundles/{imports-44987700.js → imports-abe29092.js} +2 -2
- package/schematics/bundles/inject-migration.js +10 -10
- package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
- package/schematics/bundles/{migrate_ts_type_references-58326be5.js → migrate_ts_type_references-d02c6750.js} +9 -9
- package/schematics/bundles/{nodes-b12e919a.js → nodes-a9f0b985.js} +2 -2
- package/schematics/bundles/output-migration.js +5 -5
- package/schematics/bundles/pending-tasks.js +5 -5
- package/schematics/bundles/{program-37562cc3.js → program-1591ec8f.js} +31 -24
- package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
- package/schematics/bundles/provide-initializer.js +5 -5
- package/schematics/bundles/route-lazy-loading.js +4 -4
- package/schematics/bundles/signal-input-migration.js +8 -8
- package/schematics/bundles/signal-queries-migration.js +7 -7
- package/schematics/bundles/signals.js +7 -7
- package/schematics/bundles/standalone-migration.js +8 -8
- package/testing/index.d.ts +5 -5
package/testing/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.1.0-next.
|
|
2
|
+
* @license Angular v19.1.0-next.3
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -226,7 +226,7 @@ export declare function getTestBed(): TestBed;
|
|
|
226
226
|
*
|
|
227
227
|
* Example:
|
|
228
228
|
*
|
|
229
|
-
* ```
|
|
229
|
+
* ```ts
|
|
230
230
|
* beforeEach(inject([Dependency, AClass], (dep, object) => {
|
|
231
231
|
* // some code that uses `dep` and `object`
|
|
232
232
|
* // ...
|
|
@@ -492,7 +492,7 @@ export declare interface TestModuleMetadata {
|
|
|
492
492
|
* `processNewMacroTasksSynchronously` defaults to true, and the nested
|
|
493
493
|
* function is executed on each tick.
|
|
494
494
|
*
|
|
495
|
-
* ```
|
|
495
|
+
* ```ts
|
|
496
496
|
* it ('test with nested setTimeout', fakeAsync(() => {
|
|
497
497
|
* let nestedTimeoutInvoked = false;
|
|
498
498
|
* function funcWithNestedTimeout() {
|
|
@@ -509,7 +509,7 @@ export declare interface TestModuleMetadata {
|
|
|
509
509
|
* In the following case, `processNewMacroTasksSynchronously` is explicitly
|
|
510
510
|
* set to false, so the nested timeout function is not invoked.
|
|
511
511
|
*
|
|
512
|
-
* ```
|
|
512
|
+
* ```ts
|
|
513
513
|
* it ('test with nested setTimeout', fakeAsync(() => {
|
|
514
514
|
* let nestedTimeoutInvoked = false;
|
|
515
515
|
* function funcWithNestedTimeout() {
|
|
@@ -538,7 +538,7 @@ export declare function tick(millis?: number, tickOptions?: {
|
|
|
538
538
|
*
|
|
539
539
|
* Example:
|
|
540
540
|
*
|
|
541
|
-
* ```
|
|
541
|
+
* ```ts
|
|
542
542
|
* it('...', waitForAsync(inject([AClass], (object) => {
|
|
543
543
|
* object.doSomething.then(() => {
|
|
544
544
|
* expect(...);
|