Skip to content

Commit 7dd550a

Browse files
author
Christian Elies
committed
docs(readme): highlight default values
1 parent 34d4bff commit 7dd550a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private(set) lazy var pagination: AdvancedListPagination<AnyView, AnyView> = {
8888
### 📁 Move and 🗑️ delete items
8989

9090
You can define which actions your list should support through the `supportedListActions` property of your `ListService` instance.
91-
Choose between `delete`, `move`, `moveAndDelete` and `none`. The default is `none`.
91+
Choose between `delete`, `move`, `moveAndDelete` and `none`. **The default is `none`.**
9292

9393
```swift
9494
let listService = ListService()
@@ -101,7 +101,7 @@ listService.supportedListActions = .moveAndDelete(onMove: { indexSet, index in
101101

102102
### 🎛️ Filtering
103103

104-
The `AdvancedList` supports filtering (disabled by default). You only have to set the closure `excludeItem: (AnyListItem) -> Bool)` on your `ListService` instance.
104+
The `AdvancedList` supports filtering (**disabled by default**). You only have to set the closure `excludeItem: (AnyListItem) -> Bool)` on your `ListService` instance.
105105
`AnyListItem` gives you access to the item (`Any`). **Keep in mind that you have to cast this item to your custom type!**
106106

107107
```swift

0 commit comments

Comments
 (0)