Skip to content

Commit 5d22793

Browse files
committed
main - c386d0e fix(cdk/listbox): coerce tabindex value (#31597)
1 parent 94758a1 commit 5d22793

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

docs-content/api-docs/cdk-listbox.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ <h4 id="CdkOption" class="docs-header-link docs-api-h4 docs-api-class-name">
6969

7070

7171
<tr class="docs-api-properties-row">
72-
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;tabindex&#39;</span>)
72+
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">{
73+
alias: &#39;tabindex&#39;,
74+
transform: (value: unknown) =&gt; (value == null ? undefined : numberAttribute(value)),
75+
}</span>)
7376
</div><p class="docs-api-property-name">
7477
<code>enabledTabIndex: </code>
7578
</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": "20.2.0-next.1+sha-3dfe50a",
3+
"version": "20.2.0-next.1+sha-c386d0e",
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-3dfe50a",
263-
"@angular/cdk-experimental": "20.2.0-next.1+sha-3dfe50a",
262+
"@angular/cdk": "20.2.0-next.1+sha-c386d0e",
263+
"@angular/cdk-experimental": "20.2.0-next.1+sha-c386d0e",
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-3dfe50a",
267-
"@angular/material-experimental": "20.2.0-next.1+sha-3dfe50a",
268-
"@angular/material-moment-adapter": "20.2.0-next.1+sha-3dfe50a",
269-
"@angular/material-luxon-adapter": "20.2.0-next.1+sha-3dfe50a",
270-
"@angular/material-date-fns-adapter": "20.2.0-next.1+sha-3dfe50a"
266+
"@angular/material": "20.2.0-next.1+sha-c386d0e",
267+
"@angular/material-experimental": "20.2.0-next.1+sha-c386d0e",
268+
"@angular/material-moment-adapter": "20.2.0-next.1+sha-c386d0e",
269+
"@angular/material-luxon-adapter": "20.2.0-next.1+sha-c386d0e",
270+
"@angular/material-date-fns-adapter": "20.2.0-next.1+sha-c386d0e"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)