Skip to content

Commit b5cc788

Browse files
committed
fix(cdk/tree): update API goldens
1 parent 0c62254 commit b5cc788

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/public_api_guard/cdk/tree.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import { TrackByFunction } from '@angular/core';
2727
import { TreeKeyManagerItem } from '@angular/cdk/a11y';
2828
import { TreeKeyManagerStrategy } from '@angular/cdk/a11y';
2929
import { ViewContainerRef } from '@angular/core';
30+
import { WritableSignal } from '@angular/core';
3031

3132
// @public @deprecated
3233
export abstract class BaseTreeControl<T, K = T> implements TreeControl<T, K> {
@@ -202,7 +203,7 @@ export class CdkTreeNode<T, K = T> implements OnDestroy, OnInit, TreeKeyManagerI
202203
// (undocumented)
203204
_setActiveItem(): void;
204205
// (undocumented)
205-
protected _tabindex: number | null;
206+
protected readonly _tabindex: WritableSignal<number | null>;
206207
// (undocumented)
207208
protected _tree: CdkTree<T, K>;
208209
typeaheadLabel: string | null;

0 commit comments

Comments
 (0)