Skip to content
Open
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
1 change: 0 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,5 @@ package.targets.forEach {
.enableUpcomingFeature("BareSlashRegexLiterals"), // SE-0354
.enableUpcomingFeature("ImportObjcForwardDeclarations"), // SE-0384
.enableUpcomingFeature("DisableOutwardActorInference"), // SE-0401
.enableUpcomingFeature("InternalImportsByDefault"), // SE-0409
]
}
2 changes: 1 addition & 1 deletion Sources/Control/AsyncButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Core
import SwiftUI
public import SwiftUI

/// A control that initiates an action.
/// - SeeAlso: [`SwiftUI.Button`](https://developer.apple.com/documentation/swiftui/button)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Control/AsyncTextFieldLink.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Core
import SwiftUI
public import SwiftUI

/// A control that requests text input from the user when pressed.
@available(watchOS 9.0, *)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Core/AsyncControl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by treastrain on 2023/11/03.
//

import SwiftUI
public import SwiftUI

@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, visionOS 1.0, *)
package protocol AsyncControl: View {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Core/AsyncControlView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by treastrain on 2023/11/03.
//

import SwiftUI
public import SwiftUI

@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, visionOS 1.0, *)
package struct AsyncControlView<Base: View, Value>: View {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Core/_AsyncControlTriggerPreferenceKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by treastrain on 2023/11/03.
//

import SwiftUI
public import SwiftUI

@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, visionOS 1.0, *)
package struct _AsyncControlTriggerPreferenceKey<Value>: PreferenceKey {
Expand Down