Skip to content

Commit

Permalink
refactor(core): mark @defer APIs as stable
Browse files Browse the repository at this point in the history
This commit removes the `@developerPreview` annotation from the `@defer` APIs, effectively promoting them (and the entire feature!) to stable.
  • Loading branch information
AndrewKushnir committed May 1, 2024
1 parent b9a997c commit 8f50a62
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions packages/core/src/defer/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ export interface TDeferBlockDetails {
* Describes the current state of this defer block instance.
*
* @publicApi
* @developerPreview
*/
export enum DeferBlockState {
/** The placeholder block content is rendered */
Expand Down Expand Up @@ -212,7 +211,6 @@ export interface DeferBlockConfig {
/**
* Options for configuring defer blocks behavior.
* @publicApi
* @developerPreview
*/
export enum DeferBlockBehavior {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/core/testing/src/component_fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ export abstract class ComponentFixture<T> {

/**
* Retrieves all defer block fixtures in the component fixture.
*
* @developerPreview
*/
getDeferBlocks(): Promise<DeferBlockFixture[]> {
const deferBlocks: DeferBlockDetails[] = [];
Expand Down
1 change: 0 additions & 1 deletion packages/core/testing/src/defer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import type {ComponentFixture} from './component_fixture';
* Represents an individual defer block for testing purposes.
*
* @publicApi
* @developerPreview
*/
export class DeferBlockFixture {
/** @nodoc */
Expand Down

0 comments on commit 8f50a62

Please sign in to comment.