mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00

* Move link button * Always show indent buttons * Fix code blocks and quote block styles * Fix code blocks and quotes style * Update composer attachment icon * Fix send message icon * Fix composer border * Fix rte border * Update RTE button assets * Update close rte icon * Refactor RTE and composer layout * more padding fixes * Update compound * Update WysiwygComposer to 2.11.0 * Fix ui tests * Fix composer bottom padding * Update snapshot tests
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: "562988911c79e81c70ecc40ceb469b65e46e82dc"),
|
|
.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")
|
|
]
|
|
)
|