* Adopt ListRow Component. * Update snapshots. To check in future PR: - Pseudo Bug Report Attach Screenshot label - Bug Report screenshot padding (Use ListRow .custom?) - De-bold Analytics & Notification Settings footer links - Inline picker alignment perhaps? * Changelog * Update Compound. * Use the label on the login screen.
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", revision: "50bb7cf313bd1ad17201fc7e4c1184737a0f44c2"),
|
|
.package(url: "https://github.com/vector-im/element-design-tokens", exact: "0.0.3"),
|
|
.package(url: "https://github.com/siteline/SwiftUI-Introspect", from: "0.9.0")
|
|
],
|
|
targets: [
|
|
.target(name: "DesignKit",
|
|
dependencies: [
|
|
.product(name: "Compound", package: "compound-ios"),
|
|
.product(name: "DesignTokens", package: "element-design-tokens"),
|
|
.product(name: "SwiftUIIntrospect", package: "SwiftUI-Introspect")
|
|
],
|
|
path: "Sources"),
|
|
.testTarget(name: "DesignKitTests",
|
|
dependencies: ["DesignKit"],
|
|
path: "Tests")
|
|
]
|
|
)
|