Skip to content

Commit a7eff3f

Browse files
committedSep 24, 2024
feat(core): mark signal-based query APIs as stable (#57921)
This commit marks the contentChild, contentChildren, viewChild and viewChildren APIs (along with any associated APIs) as stable and thus exits the dev preview phase for those APIs. PR Close #57921
1 parent 48216a2 commit a7eff3f

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed
 

‎adev/src/content/guide/signals/queries.md

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ There are two categories of query: view queries and content queries.
88

99
Signal queries supply query results as a reactive signal primitive. You can use query results in `computed` and `effect`, composing these results with other signals.
1010

11-
IMPORTANT: Signal queries are in [developer preview](reference/releases#developer-preview). APIs may change based on feedback without going through Angular's deprecation cycle.
12-
1311
If you're already familiar with Angular queries, you can jump straight to [Comparing signal-based queries to decorator-based queries](#comparing-signal-based-queries-to-decorator-based-queries)
1412

1513
## View queries

‎packages/core/src/authoring/queries.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ function viewChildRequiredFn<LocatorT, ReadT>(
3737
* It is a special function that also provides access to required query results via the `.required`
3838
* property.
3939
*
40-
* @developerPreview
40+
* @publicAPI
4141
* @docsPrivate Ignored because `viewChild` is the canonical API entry.
4242
*/
4343
export interface ViewChildFunction {
4444
/**
4545
* Initializes a view child query. Consider using `viewChild.required` for queries that should
4646
* always match.
4747
*
48-
* @developerPreview
48+
* @publicAPI
4949
*/
5050
<LocatorT>(locator: ProviderToken<LocatorT> | string): Signal<LocatorT | undefined>;
5151
<LocatorT, ReadT>(
@@ -56,7 +56,7 @@ export interface ViewChildFunction {
5656
/**
5757
* Initializes a view child query that is expected to always match an element.
5858
*
59-
* @developerPreview
59+
* @publicAPI
6060
*/
6161
required: {
6262
<LocatorT>(locator: ProviderToken<LocatorT> | string): Signal<LocatorT>;
@@ -87,7 +87,7 @@ export interface ViewChildFunction {
8787
* }
8888
* ```
8989
*
90-
* @developerPreview
90+
* @publicAPI
9191
* @initializerApiFunction
9292
*/
9393
export const viewChild: ViewChildFunction = (() => {
@@ -124,7 +124,7 @@ export function viewChildren<LocatorT, ReadT>(
124124
* ```
125125
*
126126
* @initializerApiFunction
127-
* @developerPreview
127+
* @publicAPI
128128
*/
129129
export function viewChildren<LocatorT, ReadT>(
130130
locator: ProviderToken<LocatorT> | string,
@@ -156,15 +156,15 @@ function contentChildRequiredFn<LocatorT, ReadT>(
156156
* The contentChild function creates a singular content query. It is a special function that also
157157
* provides access to required query results via the `.required` property.
158158
*
159-
* @developerPreview
159+
* @publicAPI
160160
* @docsPrivate Ignored because `contentChild` is the canonical API entry.
161161
*/
162162
export interface ContentChildFunction {
163163
/**
164164
* Initializes a content child query.
165165
*
166166
* Consider using `contentChild.required` for queries that should always match.
167-
* @developerPreview
167+
* @publicAPI
168168
*/
169169
<LocatorT>(
170170
locator: ProviderToken<LocatorT> | string,
@@ -220,7 +220,7 @@ export interface ContentChildFunction {
220220
* ```
221221
*
222222
* @initializerApiFunction
223-
* @developerPreview
223+
* @publicAPI
224224
*/
225225
export const contentChild: ContentChildFunction = (() => {
226226
// Note: This may be considered a side-effect, but nothing will depend on
@@ -257,7 +257,7 @@ export function contentChildren<LocatorT, ReadT>(
257257
* ```
258258
*
259259
* @initializerApiFunction
260-
* @developerPreview
260+
* @publicAPI
261261
*/
262262
export function contentChildren<LocatorT, ReadT>(
263263
locator: ProviderToken<LocatorT> | string,

0 commit comments

Comments
 (0)
Please sign in to comment.