From e2d21fa8e513f9fa5794f93242a1cba6df213fae Mon Sep 17 00:00:00 2001 From: Karan Mistry <karan.mistry@siemens.com> Date: Fri, 27 Jun 2025 15:28:06 +0530 Subject: [PATCH 1/2] docs(material/form-field): update documentation to replace mat-chip-list with mat-chip-grid Remove deprecated object from the form-field.md Fixes #30122 --- src/material/form-field/form-field.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/form-field/form-field.md b/src/material/form-field/form-field.md index 3a0aa7a00f74..87e25dcec8bc 100644 --- a/src/material/form-field/form-field.md +++ b/src/material/form-field/form-field.md @@ -154,5 +154,5 @@ This error occurs if you have added multiple hints for the same side. Keep in mi This error occurs when you have not added a form field control to your form field. If your form field contains a native `<input>` or `<textarea>` element, make sure you've added the `matInput` directive to it and have imported `MatInputModule`. Other components that can act as a form field -control include `<mat-select>`, `<mat-chip-list>`, and any custom form field controls you've +control include `<mat-select>`, `<mat-chip-grid>`, and any custom form field controls you've created. From 65cb37cb523a8dadd4dafd57387a03277963656d Mon Sep 17 00:00:00 2001 From: Karan Mistry <karan.mistry@siemens.com> Date: Fri, 27 Jun 2025 15:28:14 +0530 Subject: [PATCH 2/2] docs(material/chips): update interface description to reflect mat-chip-grid usage --- src/material/chips/chip-text-control.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/chips/chip-text-control.ts b/src/material/chips/chip-text-control.ts index cf7b9e7a20d2..da91c1958695 100644 --- a/src/material/chips/chip-text-control.ts +++ b/src/material/chips/chip-text-control.ts @@ -6,7 +6,7 @@ * found in the LICENSE file at https://angular.dev/license */ -/** Interface for a text control that is used to drive interaction with a mat-chip-list. */ +/** Interface for a text control that is used to drive interaction with a mat-chip-grid. */ export interface MatChipTextControl { /** Unique identifier for the text control. */ id: string;