You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`.cdk-drop`| Corresponds to the `cdkDrop` container. |
60
+
|`.cdk-drop-list`| Corresponds to the `cdkDropList` container. |
61
61
|`.cdk-drag`| Corresponds to a `cdkDrag` instance. |
62
62
|`.cdk-drag-preview`| This is the element that will be rendered next to the user's cursor as they're dragging an item in a sortable list. By default the element looks exactly like the element that is being dragged. |
63
-
|`.cdk-drag-placeholder`| This is element that will be shown instead of the real element as it's being dragged inside a `cdkDrop`. By default this will look exactly like the element that is being sorted. |
64
-
|`.cdk-drop-dragging`| A class that is added to `cdkDrop` while the user is dragging an item. |
63
+
|`.cdk-drag-placeholder`| This is element that will be shown instead of the real element as it's being dragged inside a `cdkDropList`. By default this will look exactly like the element that is being sorted. |
64
+
|`.cdk-drop-dragging`| A class that is added to `cdkDropList` while the user is dragging an item. |
65
65
66
66
### Animations
67
67
The drag-and-drop module supports animations both while sorting an element inside a list, as well as
@@ -73,7 +73,7 @@ following classes can be used for animations:
73
73
through a list.
74
74
*`.cdk-drag-animating` - This class is added to a `cdkDrag` when the user has stopped dragging.
75
75
If you add a `transition` to it, the CDK will animate the element from its drop position to
76
-
the final position inside the `cdkDrop` container.
76
+
the final position inside the `cdkDropList` container.
77
77
78
78
Example animations:
79
79
@@ -105,14 +105,14 @@ This preview can be customized, though, by providing a custom template via `*cdk
105
105
<!-- example(cdk-drag-drop-custom-preview) -->
106
106
107
107
### List orientation
108
-
The `cdkDrop` directive assumes that lists are vertical by default. This can be
108
+
The `cdkDropList` directive assumes that lists are vertical by default. This can be
109
109
changed by setting the `orientation` property to `"horizontal".
0 commit comments