Skip to content

Commit

Permalink
Merge pull request #37 from Infomaniak/buttonheight-public
Browse files Browse the repository at this point in the history
feat: Make `IKButtonHeight` public
  • Loading branch information
Ambrdctr authored Aug 22, 2024
2 parents d1d2116 + 2f23e52 commit 9238a60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/realm/realm-swift",
"state" : {
"revision" : "5221a83dc720823e3017493394d00d49ccf13446",
"version" : "10.52.3"
"revision" : "9815e6c29d43cb5314add5dff8705c5476ab556c",
"version" : "10.53.0"
}
},
{
"identity" : "sentry-cocoa",
"kind" : "remoteSourceControl",
"location" : "https://github.com/getsentry/sentry-cocoa",
"state" : {
"revision" : "d2ced2d961b34573ebd2ea0567a2f1408e90f0ae",
"version" : "8.34.0"
"revision" : "e2ac1723a4a9632e291c171b6e25a0c403b0fecb",
"version" : "8.35.0"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
import SwiftUI

@available(iOS 15.0, *)
enum IKButtonHeight {
static let extraLarge: CGFloat = 64
static let large: CGFloat = 56
static let medium: CGFloat = 40
public enum IKButtonHeight {
public static let extraLarge: CGFloat = 64
public static let large: CGFloat = 56
public static let medium: CGFloat = 40

static func convert(controlSize: ControlSize) -> CGFloat {
if controlSize == .large {
Expand Down

0 comments on commit 9238a60

Please sign in to comment.