Merge commit 'e9fbae40b3042e7e8751ef45dcd6e4b0354fee18' into feature/separatorCellsRefactoring
# Conflicts: # CHANGELOG.md
This commit is contained in:
commit
7c089f0d85
|
|
@ -29,6 +29,10 @@
|
|||
|
||||
## 0.5.12
|
||||
|
||||
- **Fix**: Update type of `viewModel` in `ConfigurableController` to `ImplicitlyUwrappedOptional<ViewModelT>` instead of `ViewModelT`
|
||||
|
||||
## 0.5.13
|
||||
|
||||
- **Change**: Remove type erasure behavior from `AnyBaseTableRow`
|
||||
- **Change**: Rename `AnyBaseTableRow` class to `SeparatorRowBox`
|
||||
- **Change**: Move `anyRow` property from `EmptyCellRow` to `TableRow` extension and rename it to `separatorRowBox`.
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ public protocol ConfigurableController {
|
|||
|
||||
associatedtype ViewModelT
|
||||
|
||||
var viewModel: ViewModelT { get }
|
||||
var viewModel: ViewModelT! { get }
|
||||
|
||||
func bindViews()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue