Skip to content

Commit a7921ff

Browse files
committed
main - b6d8193 fix(material/table): style no data row properly (#31895)
1 parent 629409a commit a7921ff

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs-content/api-docs/material-table-testing.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ <h4 id="MatRowHarness" class="docs-header-link docs-api-h4 docs-api-class-name">
840840

841841
<tr class="docs-api-properties-row">
842842
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
843-
<code>static&nbsp;hostSelector: &#39;.mat-mdc-row&#39;</code>
843+
<code>static&nbsp;hostSelector: &#39;.mat-mdc-row:not(.mat-mdc-no-data-row)&#39;</code>
844844
</p>
845845
</td>
846846
<td class="docs-api-property-description"><p>The selector for the host element of a <code>MatRowHarness</code> instance.</p>
@@ -1613,7 +1613,7 @@ <h4 id="MatCellHarness" class="docs-header-link docs-api-h4 docs-api-class-name"
16131613

16141614
<tr class="docs-api-properties-row">
16151615
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
1616-
<code>static&nbsp;hostSelector: &#39;.mat-mdc-cell&#39;</code>
1616+
<code>static&nbsp;hostSelector: &#39;.mat-mdc-cell:not(.mat-no-data-cell)&#39;</code>
16171617
</p>
16181618
</td>
16191619
<td class="docs-api-property-description"><p>The selector for the host element of a <code>MatCellHarness</code> instance.</p>

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.4+sha-977f46f",
3+
"version": "21.0.0-next.4+sha-b6d8193",
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.4+sha-977f46f",
263-
"@angular/cdk-experimental": "21.0.0-next.4+sha-977f46f",
262+
"@angular/cdk": "21.0.0-next.4+sha-b6d8193",
263+
"@angular/cdk-experimental": "21.0.0-next.4+sha-b6d8193",
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.4+sha-977f46f",
267-
"@angular/material-experimental": "21.0.0-next.4+sha-977f46f",
268-
"@angular/material-moment-adapter": "21.0.0-next.4+sha-977f46f",
269-
"@angular/material-luxon-adapter": "21.0.0-next.4+sha-977f46f",
270-
"@angular/material-date-fns-adapter": "21.0.0-next.4+sha-977f46f"
266+
"@angular/material": "21.0.0-next.4+sha-b6d8193",
267+
"@angular/material-experimental": "21.0.0-next.4+sha-b6d8193",
268+
"@angular/material-moment-adapter": "21.0.0-next.4+sha-b6d8193",
269+
"@angular/material-luxon-adapter": "21.0.0-next.4+sha-b6d8193",
270+
"@angular/material-date-fns-adapter": "21.0.0-next.4+sha-b6d8193"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)