Skip to content

Commit

Permalink
Refactor SafariView presentation modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
vsanthanam committed Mar 23, 2024
1 parent c5cfcc6 commit ceac562
Show file tree
Hide file tree
Showing 10 changed files with 1,000 additions and 786 deletions.
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

0 comments on commit ceac562

Please sign in to comment.