Releases: Shopify/FunctionalTableData
Releases · Shopify/FunctionalTableData
v2.0.1
v2.0.0
Adds support for diffable data sources with UITableView
Adds full support for collection views, using diffable data sources or classic FTD diffing
1.3.1
Swift 4.2 Support
Merge pull request #110 from Shopify/swift42 Migrate to Swift 4.2
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
Enable support for duplicate section or row keys output as well as including that information as part of the FunctionalTableData
or FunctionalCollectionData
exception.
1.2.4
Enables support for specifying the layout of each edge of a cell. The usage is similar to the previous CombinedLayout
API, but extended to all four corners. Example:
// Layout pinned to the edges of the contentView
public typealias EdgeBasedTableItemLayout = Layout<EdgeLayout.Top, EdgeLayout.Leading, EdgeLayout.Bottom, EdgeLayout.Trailing>
// Layout respecting the margins of the contentView
public typealias LayoutMarginsTableItemLayout = Layout<MarginsLayout.Top, MarginsLayout.Leading, MarginsLayout.Bottom, MarginsLayout.Trailing>
The available options are `EdgeLayout`, and `MarginsLayout`. But, you can create your own as you wish.
Deprecated the use of CombinedLayout