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

Refactor SafariView presentation modifiers #33

Merged
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
27 changes: 21 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,40 @@ let package = Package(
products: [
.library(
name: "SafariUI",
targets: ["SafariUI"]
targets: [
"SafariUI"
]
),
.library(
name: "SafariView",
targets: ["SafariView"]
targets: [
"SafariView"
]
),
.library(
name: "WebAuthentication",
targets: ["WebAuthentication"]
targets: [
"WebAuthentication"
]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.51.15")
.package(
url: "https://github.com/apple/swift-docc-plugin",
from: "1.0.0"
),
.package(
url: "https://github.com/nicklockwood/SwiftFormat",
exact: "0.51.15"
)
],
targets: [
.target(
name: "SafariUI",
dependencies: ["SafariView", "WebAuthentication"]
dependencies: [
"SafariView",
"WebAuthentication"
]
),
.target(
name: "SafariView",
Expand Down
2 changes: 1 addition & 1 deletion Sources/SafariUI/SafariUI.docc/SafariView.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ UI features include the following:
You can present a `SafariView` using the built-in presentation view modifiers:

- ``SwiftUI/View/safari(isPresented:onDismiss:safariView:)``
- ``SwiftUI/View/safari(url:onDismiss:safariView:)``
- ``SwiftUI/View/safari(isPresented:url:onDismiss:)``
- ``SwiftUI/View/safari(item:onDismiss:safariView:)``
- ``SwiftUI/View/safari(item:id:onDismiss:safariView:)``

Expand Down
2 changes: 1 addition & 1 deletion Sources/SafariUI/SafariUI.docc/View.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SwiftUI view modifiers used to configure a ``SafariView`` or a ``WebAuthenticati
### SafariView Presentation

- ``SwiftUI/View/safari(isPresented:onDismiss:safariView:)``
- ``SwiftUI/View/safari(url:onDismiss:safariView:)``
- ``SwiftUI/View/safari(isPresented:url:onDismiss:)``
- ``SwiftUI/View/safari(item:onDismiss:safariView:)``
- ``SwiftUI/View/safari(item:id:onDismiss:safariView:)``

Expand Down
Loading
Loading