Skip to content

Commit

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

// @public
export class MatNestedTreeNode<T, K = T> extends CdkNestedTreeNode<T, K> implements AfterContentInit, OnDestroy, OnInit {
Expand Down Expand Up @@ -123,7 +124,7 @@ export class MatTreeNode<T, K = T> extends CdkTreeNode<T, K> implements OnInit,
get disabled(): boolean;
set disabled(value: boolean);
// (undocumented)
protected _getTabindexAttribute(): number | null;
protected _getTabindexAttribute(): number | WritableSignal<number | null>;
// (undocumented)
static ngAcceptInputType_disabled: unknown;
// (undocumented)
Expand Down

0 comments on commit c1115f6

Please sign in to comment.