Skip to content

Commit e2012ad

Browse files
committed
docs(reorder): rename playgrounds
1 parent 11aefdb commit e2012ad

File tree

16 files changed

+6
-6
lines changed

16 files changed

+6
-6
lines changed

docs/api/reorder.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ The `ionReorderStart` event is emitted when the user begins a reorder gesture. T
8181

8282
The `ionReorderEnd` event is emitted when the user completes the reorder gesture by removing their pointer from the screen. The event includes the `from` and `to` indices of the item, as well as the `complete` method that should be called to finalize the reorder operation. The `from` index will always be the position of the item when the gesture started, while the `to` index will be its final position. This event will fire even if no items have changed position, in which case the `from` and `to` indices will be the same.
8383

84-
import ReorderStartEnd from '@site/static/usage/v8/reorder/reorder-start-end/index.md';
84+
import ReorderStartEndEvents from '@site/static/usage/v8/reorder/reorder-start-end-events/index.md';
8585

86-
<ReorderStartEnd />
86+
<ReorderStartEndEvents />
8787

8888
### Using `ionReorderMove`
8989

@@ -93,9 +93,9 @@ The `ionReorderMove` event is emitted continuously during the reorder gesture as
9393
Do not call the `complete` method during the `ionReorderMove` event as it can break the gesture.
9494
:::
9595

96-
import ReorderMove from '@site/static/usage/v8/reorder/reorder-move/index.md';
96+
import ReorderMoveEvent from '@site/static/usage/v8/reorder/reorder-move-event/index.md';
9797

98-
<ReorderMove />
98+
<ReorderMoveEvent />
9999

100100
## Usage with Virtual Scroll
101101

static/usage/v8/reorder/reorder-move/index.md renamed to static/usage/v8/reorder/reorder-move-event/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import angular_example_component_html from './angular/example_component_html.md'
2020
},
2121
},
2222
}}
23-
src="usage/v8/reorder/reorder-move/demo.html"
23+
src="usage/v8/reorder/reorder-move-event/demo.html"
2424
size="300px"
2525
showConsole={true}
2626
/>

0 commit comments

Comments
 (0)