Skip to content

Commit 85f9560

Browse files
committed
main - 29f0bb2 feat(material/chips): make ChipInput optional for MatChipGrid (#31693)
1 parent daea3bc commit 85f9560

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs-content/overviews/material/chips/chips.md.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h3 id="chips-connected-to-an-input-field" class="docs-header-link">
3838
Chips connected to an input field
3939
</h3>
4040
<p>Use <code>&lt;mat-chip-grid&gt;</code> and <code>&lt;mat-chip-row&gt;</code> for assisting users with text entry.</p>
41-
<p>Chips are always used inside a container. To create chips connected to an input field, start by creating a <code>&lt;mat-chip-grid&gt;</code> as the container. Add an <code>&lt;input/&gt;</code> element, and register it to the <code>&lt;mat-chip-grid&gt;</code> by passing the <code>matChipInputFor</code> Input. Always use an <code>&lt;input/&gt;</code> element with <code>&lt;mat-chip-grid&gt;</code>. Nest a <code>&lt;mat-chip-row&gt;</code> element inside the <code>&lt;mat-chip-grid&gt;</code> for each piece of data entered by the user. An example of using chips for text input.</p>
41+
<p>Chips are always used inside a container. To create chips connected to an input field, start by creating a <code>&lt;mat-chip-grid&gt;</code> as the container. Add an <code>&lt;input/&gt;</code> element, and register it to the <code>&lt;mat-chip-grid&gt;</code> by passing the <code>matChipInputFor</code> Input. Nest a <code>&lt;mat-chip-row&gt;</code> element inside the <code>&lt;mat-chip-grid&gt;</code> for each piece of data entered by the user. An example of using chips for text input.</p>
4242
</div><div material-docs-example="chips-input"></div><div class="docs-markdown">
4343

4444

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": "21.0.0-next.0+sha-df0d753",
3+
"version": "21.0.0-next.0+sha-29f0bb2",
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/cdk": "21.0.0-next.0+sha-df0d753",
263-
"@angular/cdk-experimental": "21.0.0-next.0+sha-df0d753",
262+
"@angular/cdk": "21.0.0-next.0+sha-29f0bb2",
263+
"@angular/cdk-experimental": "21.0.0-next.0+sha-29f0bb2",
264264
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
265265
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
266-
"@angular/material": "21.0.0-next.0+sha-df0d753",
267-
"@angular/material-experimental": "21.0.0-next.0+sha-df0d753",
268-
"@angular/material-moment-adapter": "21.0.0-next.0+sha-df0d753",
269-
"@angular/material-luxon-adapter": "21.0.0-next.0+sha-df0d753",
270-
"@angular/material-date-fns-adapter": "21.0.0-next.0+sha-df0d753"
266+
"@angular/material": "21.0.0-next.0+sha-29f0bb2",
267+
"@angular/material-experimental": "21.0.0-next.0+sha-29f0bb2",
268+
"@angular/material-moment-adapter": "21.0.0-next.0+sha-29f0bb2",
269+
"@angular/material-luxon-adapter": "21.0.0-next.0+sha-29f0bb2",
270+
"@angular/material-date-fns-adapter": "21.0.0-next.0+sha-29f0bb2"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)