Skip to content

Commit 84aff99

Browse files
committed
fix(cdk/tree): update goldens
1 parent e254baa commit 84aff99

File tree

1 file changed

+2
-1
lines changed
  • tools/public_api_guard/material

1 file changed

+2
-1
lines changed

tools/public_api_guard/material/tree.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import { OnDestroy } from '@angular/core';
2323
import { OnInit } from '@angular/core';
2424
import { TreeControl } from '@angular/cdk/tree';
2525
import { ViewContainerRef } from '@angular/core';
26+
import { WritableSignal } from '@angular/core';
2627

2728
// @public
2829
export class MatNestedTreeNode<T, K = T> extends CdkNestedTreeNode<T, K> implements AfterContentInit, OnDestroy, OnInit {
@@ -119,7 +120,7 @@ export class MatTreeNode<T, K = T> extends CdkTreeNode<T, K> implements OnInit,
119120
get disabled(): boolean;
120121
set disabled(value: boolean);
121122
// (undocumented)
122-
protected _getTabindexAttribute(): number | null;
123+
protected _getTabindexAttribute(): number | WritableSignal<number | null>;
123124
// (undocumented)
124125
static ngAcceptInputType_disabled: unknown;
125126
// (undocumented)

0 commit comments

Comments
 (0)