Skip to content

Commit a95c060

Browse files
committed
main - d4adbaa fix(material/bottom-sheet): add height minHeight maxHeight to config (#29794)
1 parent bbb9ea8 commit a95c060

File tree

2 files changed

+47
-8
lines changed

2 files changed

+47
-8
lines changed

docs-content/api-docs/material-bottom-sheet.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,45 @@ <h4 id="MatBottomSheetConfig" class="docs-header-link docs-api-h4 docs-api-class
349349

350350

351351

352+
<tr class="docs-api-properties-row">
353+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
354+
<code>height: string</code>
355+
</p>
356+
</td>
357+
<td class="docs-api-property-description"><p>Height for the bottom sheet.</p>
358+
</td>
359+
</tr>
360+
361+
362+
363+
364+
365+
<tr class="docs-api-properties-row">
366+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
367+
<code>maxHeight: number | string</code>
368+
</p>
369+
</td>
370+
<td class="docs-api-property-description"><p>Maximum height for the bottom sheet. If a number is provided, assumes pixel units.</p>
371+
</td>
372+
</tr>
373+
374+
375+
376+
377+
378+
<tr class="docs-api-properties-row">
379+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
380+
<code>minHeight: number | string</code>
381+
</p>
382+
</td>
383+
<td class="docs-api-property-description"><p>Minimum height for the bottom sheet. If a number is provided, assumes pixel units.</p>
384+
</td>
385+
</tr>
386+
387+
388+
389+
390+
352391
<tr class="docs-api-properties-row">
353392
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
354393
<code>panelClass: string | string[]</code>

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": "19.1.0-next.0+sha-91adc48",
3+
"version": "19.1.0-next.0+sha-d4adbaa",
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": "19.1.0-next.0+sha-91adc48",
263-
"@angular/cdk-experimental": "19.1.0-next.0+sha-91adc48",
262+
"@angular/cdk": "19.1.0-next.0+sha-d4adbaa",
263+
"@angular/cdk-experimental": "19.1.0-next.0+sha-d4adbaa",
264264
"@angular/core": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0",
265265
"@angular/common": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0",
266-
"@angular/material": "19.1.0-next.0+sha-91adc48",
267-
"@angular/material-experimental": "19.1.0-next.0+sha-91adc48",
268-
"@angular/material-moment-adapter": "19.1.0-next.0+sha-91adc48",
269-
"@angular/material-luxon-adapter": "19.1.0-next.0+sha-91adc48",
270-
"@angular/material-date-fns-adapter": "19.1.0-next.0+sha-91adc48"
266+
"@angular/material": "19.1.0-next.0+sha-d4adbaa",
267+
"@angular/material-experimental": "19.1.0-next.0+sha-d4adbaa",
268+
"@angular/material-moment-adapter": "19.1.0-next.0+sha-d4adbaa",
269+
"@angular/material-luxon-adapter": "19.1.0-next.0+sha-d4adbaa",
270+
"@angular/material-date-fns-adapter": "19.1.0-next.0+sha-d4adbaa"
271271
},
272272
"dependencies": {
273273
"tslib": "^2.3.0"

0 commit comments

Comments
 (0)