Review notes
This commit is contained in:
parent
c49a05270f
commit
360bcde3f9
|
|
@ -1,7 +1,7 @@
|
|||
# Changelog
|
||||
|
||||
### 0.7.14
|
||||
- **Update**: `PaginationWrapper` separating state views from data loading.
|
||||
- **[Breaking Change]**: `PaginationWrapper` separating state views from data loading.
|
||||
|
||||
### 0.7.13
|
||||
- **Update**: Migrate from `Variable` to `BehaviorRelay`.
|
||||
|
|
|
|||
|
|
@ -44,3 +44,11 @@ public protocol PaginationWrapperDelegate: class {
|
|||
/// Handles empty data state.
|
||||
func clearData()
|
||||
}
|
||||
|
||||
public extension PaginationWrapperDelegate
|
||||
where DataSourceType: ResettableRxDataSourceCursor,
|
||||
DataSourceType.ResultType == [DataSourceType.Element] {
|
||||
|
||||
/// Convenient typealias.
|
||||
typealias PaginationWrapperType = PaginationWrapper<DataSourceType, Self>
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue