Skip to content

Commit 6bbd565

Browse files
committed
main - d829d1c docs(material/form-field): fix incorrect chip component reference (#33161)
1 parent a3847c4 commit 6bbd565

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

docs-content/overviews/material/form-field/form-field.md.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<li><a href="https://material.angular.dev/components/input/overview"><code>&lt;input matNativeControl&gt;</code> &amp; <code>&lt;textarea matNativeControl&gt;</code></a></li>
1010
<li><a href="https://material.angular.dev/components/select/overview"><code>&lt;select matNativeControl&gt;</code></a></li>
1111
<li><a href="https://material.angular.dev/components/select/overview"><code>&lt;mat-select&gt;</code></a></li>
12-
<li><a href="https://material.angular.dev/components/chips/overview"><code>&lt;mat-chip-set&gt;</code></a></li>
12+
<li><a href="https://material.angular.dev/components/chips/overview"><code>&lt;mat-chip-grid&gt;</code></a></li>
1313
</ul>
14+
<p>Note: <code>&lt;mat-form-field&gt;</code> requires a child component that implements <code>MatFormFieldControl</code>. Among the chips components, only <code>&lt;mat-chip-grid&gt;</code> supports this integration.</p>
1415
</div><div material-docs-example="form-field-overview"></div><div class="docs-markdown">
1516
<h3 id="form-field-appearance-variants" class="docs-header-link">
1617
<span header-link="form-field-appearance-variants"></span>

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/components-examples",
3-
"version": "22.1.0-next.1+sha-d81320f",
3+
"version": "22.1.0-next.1+sha-d829d1c",
44
"description": "Angular Components Examples",
55
"private": true,
66
"repository": {
@@ -259,15 +259,15 @@
259259
},
260260
"homepage": "https://github.com/angular/components#readme",
261261
"peerDependencies": {
262-
"@angular/aria": "22.1.0-next.1+sha-d81320f",
263-
"@angular/cdk": "22.1.0-next.1+sha-d81320f",
264-
"@angular/cdk-experimental": "22.1.0-next.1+sha-d81320f",
262+
"@angular/aria": "22.1.0-next.1+sha-d829d1c",
263+
"@angular/cdk": "22.1.0-next.1+sha-d829d1c",
264+
"@angular/cdk-experimental": "22.1.0-next.1+sha-d829d1c",
265265
"@angular/core": "^22.0.0-0 || ^22.1.0-0 || ^22.2.0-0 || ^22.3.0-0 || ^23.0.0-0",
266266
"@angular/common": "^22.0.0-0 || ^22.1.0-0 || ^22.2.0-0 || ^22.3.0-0 || ^23.0.0-0",
267-
"@angular/material": "22.1.0-next.1+sha-d81320f",
268-
"@angular/material-experimental": "22.1.0-next.1+sha-d81320f",
269-
"@angular/material-luxon-adapter": "22.1.0-next.1+sha-d81320f",
270-
"@angular/material-date-fns-adapter": "22.1.0-next.1+sha-d81320f"
267+
"@angular/material": "22.1.0-next.1+sha-d829d1c",
268+
"@angular/material-experimental": "22.1.0-next.1+sha-d829d1c",
269+
"@angular/material-luxon-adapter": "22.1.0-next.1+sha-d829d1c",
270+
"@angular/material-date-fns-adapter": "22.1.0-next.1+sha-d829d1c"
271271
},
272272
"devDependencies": {
273273
"@angular/aria": "workspace:*",

0 commit comments

Comments
 (0)