mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

- Add an animation to long press on messages. - Make emojis bigger on the reactions picker screen. - Remove quote menu action. - Fix emoji picker handle overlapping focused search field. - Update launch, splash and onboarding screens. - Use elevation tokens in Forms. - Move the cancel button on the Start Chat flow.
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: "d1a28b8a311e33ddb517d10391037f1547a3c7b6"),
|
|
.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")
|
|
]
|
|
)
|