From 57449701bab1a6a64d6147d50d7fd798de99de9c Mon Sep 17 00:00:00 2001 From: Michael Small Date: Wed, 2 Sep 2026 17:41:21 -0500 Subject: [PATCH] docs: update `withResource` note on future plans --- docs/docs/with-resource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/with-resource.md b/docs/docs/with-resource.md index b0277812..3da0649d 100644 --- a/docs/docs/with-resource.md +++ b/docs/docs/with-resource.md @@ -6,7 +6,7 @@ title: withResource() import { withResource } from '@ngrx-toolkit/core'; ``` -> **⚠️ Important Note**: This extension is very likely to land in NgRx once Angular's `Resource` enters developer preview. The `withResource` extension provides early access to this functionality and will be maintained for compatibility until the official NgRx implementation is available. +> **⚠️ Important Note**: This extension is likely to land in NgRx, pending further considerations. The `withResource` extension provides early access to this functionality and will be maintained for compatibility until the official NgRx implementation is available. `withResource()` is a feature in NgRx SignalStore that connects Angular's Resource API with the store. The idea: you can use a store to directly manage async data (like loading from an API), and `withResource()` helps you wire that in.