Skip to content

Commit 5aebbfd

Browse files
committed
main - 9e25efb fix(material/table): return undefined sort and paginator (#31593)
1 parent e89ea91 commit 5aebbfd

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ <h4 id="MatTableDataSource" class="docs-header-link docs-api-h4 docs-api-class-n
18341834

18351835
<tr class="docs-api-properties-row">
18361836
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
1837-
<code>paginator: P | null</code>
1837+
<code>paginator: P | null | undefined</code>
18381838
</p>
18391839
</td>
18401840
<td class="docs-api-property-description"><p>Instance of the paginator component used by the table to control what page of the data is
@@ -1853,7 +1853,7 @@ <h4 id="MatTableDataSource" class="docs-header-link docs-api-h4 docs-api-class-n
18531853

18541854
<tr class="docs-api-properties-row">
18551855
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
1856-
<code>sort: MatSort | null</code>
1856+
<code>sort: MatSort | null | undefined</code>
18571857
</p>
18581858
</td>
18591859
<td class="docs-api-property-description"><p>Instance of the MatSort directive used by the table to control its sorting. Sort changes

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": "20.2.0-next.1+sha-409948f",
3+
"version": "20.2.0-next.1+sha-9e25efb",
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": "20.2.0-next.1+sha-409948f",
263-
"@angular/cdk-experimental": "20.2.0-next.1+sha-409948f",
262+
"@angular/cdk": "20.2.0-next.1+sha-9e25efb",
263+
"@angular/cdk-experimental": "20.2.0-next.1+sha-9e25efb",
264264
"@angular/core": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
265265
"@angular/common": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0",
266-
"@angular/material": "20.2.0-next.1+sha-409948f",
267-
"@angular/material-experimental": "20.2.0-next.1+sha-409948f",
268-
"@angular/material-moment-adapter": "20.2.0-next.1+sha-409948f",
269-
"@angular/material-luxon-adapter": "20.2.0-next.1+sha-409948f",
270-
"@angular/material-date-fns-adapter": "20.2.0-next.1+sha-409948f"
266+
"@angular/material": "20.2.0-next.1+sha-9e25efb",
267+
"@angular/material-experimental": "20.2.0-next.1+sha-9e25efb",
268+
"@angular/material-moment-adapter": "20.2.0-next.1+sha-9e25efb",
269+
"@angular/material-luxon-adapter": "20.2.0-next.1+sha-9e25efb",
270+
"@angular/material-date-fns-adapter": "20.2.0-next.1+sha-9e25efb"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)