Skip to content

Commit

Permalink
fix(cdk/tree): update API goldens
Browse files Browse the repository at this point in the history
  • Loading branch information
BobobUnicorn committed Sep 17, 2024
1 parent 3b3b263 commit 8c0222a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/public_api_guard/cdk/tree.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { TrackByFunction } from '@angular/core';
import { TreeKeyManagerItem } from '@angular/cdk/a11y';
import { TreeKeyManagerStrategy } from '@angular/cdk/a11y';
import { ViewContainerRef } from '@angular/core';
import { WritableSignal } from '@angular/core';

// @public @deprecated
export abstract class BaseTreeControl<T, K = T> implements TreeControl<T, K> {
Expand Down Expand Up @@ -202,7 +203,7 @@ export class CdkTreeNode<T, K = T> implements OnDestroy, OnInit, TreeKeyManagerI
// (undocumented)
_setActiveItem(): void;
// (undocumented)
protected _tabindex: number | null;
protected readonly _tabindex: WritableSignal<number | null>;
// (undocumented)
protected _tree: CdkTree<T, K>;
typeaheadLabel: string | null;
Expand Down

0 comments on commit 8c0222a

Please sign in to comment.