- Fix sheet backgrounds in dark mode. - Fix background colours for reaction buttons. - Reply view layout. - Update separator colours. - Don't show sender name/avatar in DMs. - Fix inconsistent line heights with formatted body text. - Use plain text for reply - Increase tappable size of collapsed state changes button. - Blockquote layout and text colour. - Tap to expand the topic in room details. - Change the topic and security font size in room details. - Add cancel button when inviting someone to an existing room. - Reword Add Friends to Add People in start chat screen. - Update compound.
32 lines
1.1 KiB
Swift
32 lines
1.1 KiB
Swift
// swift-tools-version: 5.7
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "DesignKit",
|
|
platforms: [
|
|
.iOS(.v16)
|
|
],
|
|
products: [
|
|
.library(name: "DesignKit", targets: ["DesignKit"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/vector-im/compound-ios.git", revision: "e8b35fdd8c4008079dfce203e63bf7a05582d7b9"),
|
|
.package(url: "https://github.com/vector-im/element-design-tokens.git", exact: "0.0.3"),
|
|
.package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.4")
|
|
],
|
|
targets: [
|
|
.target(name: "DesignKit",
|
|
dependencies: [
|
|
.product(name: "Compound", package: "compound-ios"),
|
|
.product(name: "DesignTokens", package: "element-design-tokens"),
|
|
.product(name: "Introspect", package: "SwiftUI-Introspect")
|
|
],
|
|
path: "Sources"),
|
|
.testTarget(name: "DesignKitTests",
|
|
dependencies: ["DesignKit"],
|
|
path: "Tests")
|
|
]
|
|
)
|