Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 63c2778

Browse files
authoredDec 31, 2024··
docs(playgrounds): update angular to standalone (#3981)
Co-authored-by: Brandy Carney <[email protected]>
1 parent 8557af0 commit 63c2778

File tree

1,845 files changed

+15621
-2693
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,845 files changed

+15621
-2693
lines changed
 

‎docs/api/infinite-scroll.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ The Infinite Scroll component calls an action to be performed when the user scro
2121

2222
The expression assigned to the `ionInfinite` event is called when the user reaches that defined distance. When this expression has finished any and all tasks, it should call the `complete()` method on the infinite scroll instance.
2323

24+
## Basic Usage
25+
2426
import Basic from '@site/static/usage/v8/infinite-scroll/basic/index.md';
2527

2628
<Basic />
@@ -118,4 +120,4 @@ interface InfiniteScrollCustomEvent extends CustomEvent {
118120
<CustomProps />
119121

120122
## Slots
121-
<Slots />
123+
<Slots />

‎docs/api/reorder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ In order to sort the array upon completion of the reorder, the array should be p
6767

6868
In some cases, it may be necessary for an app to reorder both the array and the DOM nodes on its own. If this is required, `false` should be passed as a parameter to the `complete` method. This will prevent Ionic from reordering any DOM nodes inside of the reorder group.
6969

70-
Regardless of the approach taken, a stable identity should be provided to reorder items if provided in a loop. This means using `trackBy` for Angular, and `key` for React and Vue.
70+
Regardless of the approach taken, a stable identity should be provided to reorder items if provided in a loop. This means using `track` for Angular, and `key` for React and Vue.
7171

7272
import UpdatingData from '@site/static/usage/v8/reorder/updating-data/index.md';
7373

0 commit comments

Comments
 (0)
Please sign in to comment.