avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+11 -1
View File
@@ -1,5 +1,5 @@
/**
* @license Angular v20.3.11
* @license Angular v20.3.21
* (c) 2010-2025 Google LLC. https://angular.dev/
* License: MIT
*/
@@ -31,6 +31,7 @@ import { Observable, MonoTypeOperatorFunction, Subscribable } from 'rxjs';
* nameChange = outputFromObservable(this.nameChange$);
* }
* ```
* @see [RxJS interop with component and directive outputs](ecosystem/rxjs-interop/output-interop)
*
* @publicApi 19.0
*/
@@ -43,6 +44,8 @@ declare function outputFromObservable<T>(observable: Observable<T>, opts?: Outpu
*
* You can subscribe to the output via `Observable.subscribe` then.
*
* @see [RxJS interop with component and directive outputs](ecosystem/rxjs-interop/output-interop)
*
* @publicApi 19.0
*/
declare function outputToObservable<T>(ref: OutputRef<T>): Observable<T>;
@@ -55,6 +58,8 @@ declare function outputToObservable<T>(ref: OutputRef<T>): Observable<T>;
* passed explicitly to use `takeUntilDestroyed` outside of an [injection
* context](guide/di/dependency-injection-context). Otherwise, the current `DestroyRef` is injected.
*
* @see [Unsubscribing with takeUntilDestroyed](ecosystem/rxjs-interop/take-until-destroyed)
*
* @publicApi 19.0
*/
declare function takeUntilDestroyed<T>(destroyRef?: DestroyRef): MonoTypeOperatorFunction<T>;
@@ -81,6 +86,9 @@ interface ToObservableOptions {
*
* `toObservable` must be called in an injection context unless an injector is provided via options.
*
* @see [RxJS interop with Angular signals](ecosystem/rxjs-interop)
* @see [Create an RxJS Observable from a signal with toObservable](ecosystem/rxjs-interop#create-an-rxjs-observable-from-a-signal-with-toobservable)
*
* @publicApi 20.0
*/
declare function toObservable<T>(source: Signal<T>, options?: ToObservableOptions): Observable<T>;
@@ -169,6 +177,8 @@ interface RxResourceOptions<T, R> extends BaseResourceOptions<T, R> {
* Like `resource` but uses an RxJS based `loader` which maps the request to an `Observable` of the
* resource's value.
*
* @see [Using rxResource for async data](ecosystem/rxjs-interop#using-rxresource-for-async-data)
*
* @experimental
*/
declare function rxResource<T, R>(opts: RxResourceOptions<T, R> & {