Skip to content

Commit a6b66bf

Browse files
committed
fix
1 parent 93bd21f commit a6b66bf

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

goldens/material/chips/index.api.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ export class MatChipSet implements AfterViewInit, OnDestroy {
526526
protected _originatesFromChip(event: Event): boolean;
527527
get role(): string | null;
528528
set role(value: string | null);
529-
protected _skipPredicate(action: MatChipAction): boolean;
529+
protected _skipPredicate(action: MatChipContent): boolean;
530530
protected _syncChipsState(): void;
531531
tabIndex: number;
532532
// (undocumented)
@@ -557,8 +557,7 @@ export interface MatChipTextControl {
557557
}
558558

559559
// @public
560-
export class MatChipTrailingIcon extends MatChipAction {
561-
isInteractive: boolean;
560+
export class MatChipTrailingIcon extends MatChipContent {
562561
// (undocumented)
563562
_isPrimary: boolean;
564563
// (undocumented)

src/material/chips/chip-action.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import {_StructuralStylesLoader} from '../core';
3434
'[attr.disabled]': '_getDisabledAttribute()',
3535
'[attr.aria-disabled]': 'disabled',
3636
},
37-
standalone: true,
3837
})
3938
export class MatChipContent {
4039
_elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
@@ -109,7 +108,6 @@ export class MatChipContent {
109108
'(click)': '_handleClick($event)',
110109
'(keydown)': '_handleKeydown($event)',
111110
},
112-
standalone: true,
113111
})
114112
export class MatChipAction extends MatChipContent {
115113
/**

0 commit comments

Comments
 (0)