Skip to content

Commit 8d050b5

Browse files
pkozlowski-opensourceatscott
authored andcommitted
feat(core): stabilize linkedSignal API (#60741)
The linkedSignal API is now considered stable. PR Close #60741
1 parent 3ea0163 commit 8d050b5

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

adev/src/content/guide/signals/linked-signal.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Dependent state with `linkedSignal`
22

3-
IMPORTANT: `linkedSignal` is [developer preview](reference/releases#developer-preview). It's ready for you to try, but it might change before it is stable.
4-
53
You can use the `signal` function to hold some state in your Angular code. Sometimes, this state depends on some _other_ state. For example, imagine a component that lets the user select a shipping method for an order:
64

75
```typescript

packages/core/src/render3/reactivity/linked_signal.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ const identityFn = <T>(v: T) => v;
2222

2323
/**
2424
* Creates a writable signal whose value is initialized and reset by the linked, reactive computation.
25-
*
26-
* @developerPreview
2725
*/
2826
export function linkedSignal<D>(
2927
computation: () => D,

0 commit comments

Comments
 (0)