We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67094b4 commit b5951a7Copy full SHA for b5951a7
goldens/material/chips/index.api.md
@@ -449,7 +449,7 @@ export class MatChipRow extends MatChip implements AfterViewInit {
449
_handleFocus(): void;
450
// (undocumented)
451
_handleKeydown(event: KeyboardEvent): void;
452
- _hasLeadingIcon(): boolean;
+ protected _hasLeadingIcon(): boolean;
453
454
_hasTrailingIcon(): boolean;
455
src/material/chips/chip-row.ts
@@ -109,7 +109,7 @@ export class MatChipRow extends MatChip implements AfterViewInit {
109
}
110
111
/** Returns whether the chip has a leading icon. */
112
- _hasLeadingIcon() {
+ protected _hasLeadingIcon() {
113
return !this._isEditing && !!(this.editIcon || this.leadingIcon);
114
115
0 commit comments