Skip to content

Commit c1115f6

Browse files
committed
fix(cdk/tree): update goldens
1 parent b6b1ea2 commit c1115f6

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
@@ -25,6 +25,7 @@ import { OnDestroy } from '@angular/core';
2525
import { OnInit } from '@angular/core';
2626
import { TreeControl } from '@angular/cdk/tree';
2727
import { ViewContainerRef } from '@angular/core';
28+
import { WritableSignal } from '@angular/core';
2829

2930
// @public
3031
export class MatNestedTreeNode<T, K = T> extends CdkNestedTreeNode<T, K> implements AfterContentInit, OnDestroy, OnInit {
@@ -123,7 +124,7 @@ export class MatTreeNode<T, K = T> extends CdkTreeNode<T, K> implements OnInit,
123124
get disabled(): boolean;
124125
set disabled(value: boolean);
125126
// (undocumented)
126-
protected _getTabindexAttribute(): number | null;
127+
protected _getTabindexAttribute(): number | WritableSignal<number | null>;
127128
// (undocumented)
128129
static ngAcceptInputType_disabled: unknown;
129130
// (undocumented)

0 commit comments

Comments
 (0)