Skip to content

Commit ae42234

Browse files
committed
main - 54f641e fix(cdk/drag-drop): allow axis lock to be reset (#31829)
1 parent 4fc69fc commit ae42234

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

docs-content/api-docs/cdk-drag-drop.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ <h4 id="CdkDropList" class="docs-header-link docs-api-h4 docs-api-class-name">
337337
<tr class="docs-api-properties-row">
338338
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;cdkDropListLockAxis&#39;</span>)
339339
</div><p class="docs-api-property-name">
340-
<code>lockAxis: DragAxis</code>
340+
<code>lockAxis: DragAxis | null</code>
341341
</p>
342342
</td>
343343
<td class="docs-api-property-description"><p>Locks the position of the draggable elements inside the container along the specified axis.</p>
@@ -729,7 +729,7 @@ <h4 id="CdkDrag" class="docs-header-link docs-api-h4 docs-api-class-name">
729729
<tr class="docs-api-properties-row">
730730
<td class="docs-api-properties-name-cell"><div class="docs-api-input-marker">@Input(<span class="docs-api-input-alias">&#39;cdkDragLockAxis&#39;</span>)
731731
</div><p class="docs-api-property-name">
732-
<code>lockAxis: DragAxis</code>
732+
<code>lockAxis: DragAxis | null</code>
733733
</p>
734734
</td>
735735
<td class="docs-api-property-description"><p>Locks the position of the dragged element along the specified axis.</p>
@@ -1448,7 +1448,7 @@ <h4 id="DragRef" class="docs-header-link docs-api-h4 docs-api-class-name">
14481448

14491449
<tr class="docs-api-properties-row">
14501450
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
1451-
<code>lockAxis: &#39;x&#39; | &#39;y&#39;</code>
1451+
<code>lockAxis: &#39;x&#39; | &#39;y&#39; | null</code>
14521452
</p>
14531453
</td>
14541454
<td class="docs-api-property-description"><p>Axis along which dragging is locked.</p>
@@ -2459,7 +2459,7 @@ <h4 id="DropListRef" class="docs-header-link docs-api-h4 docs-api-class-name">
24592459

24602460
<tr class="docs-api-properties-row">
24612461
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
2462-
<code>lockAxis: &#39;x&#39; | &#39;y&#39;</code>
2462+
<code>lockAxis: &#39;x&#39; | &#39;y&#39; | null</code>
24632463
</p>
24642464
</td>
24652465
<td class="docs-api-property-description"><p>Locks the position of the draggable elements inside the container along the specified axis.</p>
@@ -4130,7 +4130,7 @@ <h4 id="DragDropConfig" class="docs-header-link docs-api-h4 docs-api-interface-n
41304130

41314131
<tr class="docs-api-properties-row">
41324132
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
4133-
<code>lockAxis: DragAxis</code>
4133+
<code>lockAxis: DragAxis | null</code>
41344134
</p>
41354135
</td>
41364136
<td class="docs-api-property-description"></td>

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

0 commit comments

Comments
 (0)