Latest Wiki Articles
- Signal inputsSignal inputs allow values to be bound from parent components. Those values are exposed using a Signal and can change during the lifecycle of your component. HELPFUL: Signal inputs are currently in developer preview. Angular supports two variants of inputs:… Read more: Signal inputs
- RxJS InteropIMPORTANT: The RxJS Interop package is available for developer preview. It’s ready for you to try, but it might change before it is stable. Angular’s @angular/core/rxjs-interop package provides useful utilities to integrate Angular Signals with RxJS Observables. toSignal Use the… Read more: RxJS Interop
- SignalsWhat are signals? A signal is a wrapper around a value that notifies interested consumers when that value changes. Signals can contain any value, from primitives to complex data structures. You read a signal’s value by calling its getter function,… Read more: Signals