Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Compound and handle API breaks in Introspect. #3083

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ElementX.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7613,7 +7613,7 @@
repositoryURL = "https://github.com/element-hq/compound-ios";
requirement = {
kind = revision;
revision = 4c682f497b7b1c2ebbe84f564a1cecd2ed201414;
revision = ab79d0cc5e5bb2ef3624b76c99471e414c12e8da;
};
};
F76A08D0EA29A07A54F4EB4D /* XCRemoteSwiftPackageReference "swift-collections" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/element-hq/compound-design-tokens",
"state" : {
"revision" : "5350cf2871ef7edcf043ef57b8990858463db51b",
"version" : "1.6.0"
"revision" : "b9723186abc3623c9648b1500c6e3d56e4571179",
"version" : "1.7.0"
}
},
{
"identity" : "compound-ios",
"kind" : "remoteSourceControl",
"location" : "https://github.com/element-hq/compound-ios",
"state" : {
"revision" : "4c682f497b7b1c2ebbe84f564a1cecd2ed201414"
"revision" : "ab79d0cc5e5bb2ef3624b76c99471e414c12e8da"
}
},
{
Expand Down Expand Up @@ -275,8 +275,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/siteline/SwiftUI-Introspect",
"state" : {
"revision" : "668a65735751432b640260c56dfa621cec568368",
"version" : "1.2.0"
"revision" : "807f73ce09a9b9723f12385e592b4e0aaebd3336",
"version" : "1.3.0"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct FullscreenDialog<Content: View, BottomContent: View>: View {
}

/// A layout where the content scrolls with the bottom content overlaid. Used with regular font sizes.
var standardLayout: some View {
@MainActor var standardLayout: some View {
GeometryReader { geometry in
ScrollView {
VStack(spacing: 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ public struct AuthenticationTextFieldStyle: TextFieldStyle {
self.accessibilityIdentifier = accessibilityIdentifier
}

@MainActor
public func _body(configuration: TextField<_Label>) -> some View {
let rectangle = RoundedRectangle(cornerRadius: 14.0)

Expand Down
2 changes: 1 addition & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ packages:
# path: ../matrix-rust-sdk
Compound:
url: https://github.com/element-hq/compound-ios
revision: 4c682f497b7b1c2ebbe84f564a1cecd2ed201414
revision: ab79d0cc5e5bb2ef3624b76c99471e414c12e8da
# path: ../compound-ios
AnalyticsEvents:
url: https://github.com/matrix-org/matrix-analytics-events
Expand Down
Loading