Build Information
Successful build of swiftui-property-picker, reference main (cc5719
), with Swift 6.0 for macOS (SPM) on 19 Feb 2025 17:39:20 UTC.
Swift 6 data race errors: 10
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
16 | data.rows = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:19:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
20 | data.title = newValue
21 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:20:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
20 | data.title = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:23:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
24 | data.rowBuilders = newValue
25 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:24:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
24 | data.rowBuilders = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
25 | }
26 | }.environmentObject(data)
[18/33] Compiling PropertyPicker PropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[19/33] Compiling PropertyPicker PropertyPickerState.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[20/33] Compiling PropertyPicker PropertyPickerKey.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[21/33] Compiling PropertyPicker PropertyPickerTextTransformation.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[22/33] Compiling PropertyPicker RowBuilder.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[23/33] Compiling PropertyPicker PropertyPicker+View.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[24/33] Compiling PropertyPicker PropertyPickerStyle.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[25/33] Compiling PropertyPicker _InlinePropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[26/33] Compiling PropertyPicker _ListPropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[27/33] Compiling PropertyPicker PropertyOption.swift
[28/33] Compiling PropertyPicker PropertyPickerRowSorting.swift
[29/33] Compiling PropertyPicker PropertyPickerSafeAreaAdjustmentStyle.swift
[30/33] Compiling PropertyPicker InlineRow.swift
[31/33] Compiling PropertyPicker ListRow.swift
[32/33] Compiling PropertyPicker Rows.swift
[33/33] Compiling PropertyPicker Title.swift
[34/37] Compiling PropertyPicker_Examples SheetExample.swift
/Users/admin/builder/spi-builder-workspace/Examples/SheetExample.swift:76:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private enum InteractionKey: String, PropertyPickerKey {
76 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | case disabled, enabled
[35/37] Compiling PropertyPicker_Examples ListExample.swift
[36/37] Compiling PropertyPicker_Examples InlineExample.swift
/Users/admin/builder/spi-builder-workspace/Examples/InlineExample.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
79 |
80 | private enum InteractionKey: String, PropertyPickerKey {
81 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | case disabled, enabled
[37/37] Emitting module PropertyPicker_Examples
/Users/admin/builder/spi-builder-workspace/Examples/InlineExample.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
79 |
80 | private enum InteractionKey: String, PropertyPickerKey {
81 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | case disabled, enabled
/Users/admin/builder/spi-builder-workspace/Examples/SheetExample.swift:76:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private enum InteractionKey: String, PropertyPickerKey {
76 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | case disabled, enabled
Build complete! (31.94s)
Build complete.
{
"dependencies" : [
{
"identity" : "swiftlintplugins",
"requirement" : {
"range" : [
{
"lower_bound" : "0.55.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SimplyDanny/SwiftLintPlugins"
}
],
"manifest_display_name" : "swiftui-property-picker",
"name" : "swiftui-property-picker",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "PropertyPicker",
"targets" : [
"PropertyPicker"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "PropertyPicker-Examples",
"targets" : [
"PropertyPicker-Examples"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "PropertyPicker_Examples",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker-Examples",
"path" : "Examples",
"product_memberships" : [
"PropertyPicker-Examples"
],
"sources" : [
"InlineExample.swift",
"ListExample.swift",
"SheetExample.swift"
],
"target_dependencies" : [
"PropertyPicker"
],
"type" : "library"
},
{
"c99name" : "PropertyPicker",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker",
"path" : "Development",
"product_dependencies" : [
"SwiftLintBuildToolPlugin"
],
"product_memberships" : [
"PropertyPicker",
"PropertyPicker-Examples"
],
"sources" : [
"Environment/EvironmentKeys.swift",
"Environment/PreferenceKeys.swift",
"Models/AnimationBox.swift",
"Models/Context.Data.swift",
"Models/Property.swift",
"Models/PropertyID.swift",
"Models/PropertyOption.swift",
"Models/PropertyPickerRowSorting.swift",
"Models/PropertyPickerSafeAreaAdjustmentStyle.swift",
"Models/PropertyPickerTextTransformation.swift",
"Models/RowBuilder.swift",
"PropertyPicker+View.swift",
"PropertyPicker.swift",
"PropertyWrappers/PropertyPickerState.swift",
"Protocols/PropertyPickerKey.swift",
"Protocols/PropertyPickerStyle.swift",
"Styles/_InlinePropertyPicker.swift",
"Styles/_ListPropertyPicker.swift",
"Styles/_SheetPropertyPicker.swift",
"ViewModifiers/Context.swift",
"ViewModifiers/PreferenceWriter.swift",
"ViewModifiers/PropertyWriter.swift",
"ViewModifiers/RowBuilderWriter.swift",
"Views/InlineRow.swift",
"Views/ListRow.swift",
"Views/Rows.swift",
"Views/Title.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/ipedro/swiftui-property-picker/main
Repository: ipedro/swiftui-property-picker
Swift version used: 6.0
Target: PropertyPicker
Extracting symbol information for 'PropertyPicker'...
Finished extracting symbol information for 'PropertyPicker'. (11.99s)
Building documentation for 'PropertyPicker'...
warning: Parameter 'animation' not found in instance method declaration
--> Development/PropertyPicker+View.swift:226:11-226:76
224 | /// - state: A ``PropertyPickerState`` instance which holds the current selection state and is used to update
225 | /// and react to changes in the property picker's selected value.
226 + /// - animation: Override the global when the user selection changes.
| ╰─suggestion: Remove 'animation' parameter documentation
227 | /// - Returns: A view that binds the property picker's selection to the provided state, ensuring the UI reflects
228 | /// changes to and from the state.
warning: Parameter 'animation' not found in instance method declaration
--> Development/PropertyPicker+View.swift:226:11-226:76
224 | /// - state: A ``PropertyPickerState`` instance which holds the current selection state and is used to update
225 | /// and react to changes in the property picker's selected value.
226 + /// - animation: Override the global when the user selection changes.
| ╰─suggestion: Remove 'animation' parameter documentation
227 | /// - Returns: A view that binds the property picker's selection to the provided state, ensuring the UI reflects
228 | /// changes to and from the state.
warning: 'Binding' doesn't exist at '/PropertyPicker/SwiftUICore/View/propertyPickerPresentationDetents(_:selection:)'
--> Development/PropertyPicker+View.swift:303:28-303:35
301 | /// If you provide more that one detent, people can drag the sheet
302 | /// to resize it.
303 + /// - selection: A ``Binding`` to the currently selected detent.
304 | /// Ensure that the value matches one of the detents that you
305 | /// provide for the `detents` parameter.
warning: 'Binding' doesn't exist at '/PropertyPicker/PropertyPicker/propertyPickerPresentationDetents(_:selection:)'
--> Development/PropertyPicker+View.swift:303:28-303:35
301 | /// If you provide more that one detent, people can drag the sheet
302 | /// to resize it.
303 + /// - selection: A ``Binding`` to the currently selected detent.
304 | /// Ensure that the value matches one of the detents that you
305 | /// provide for the `detents` parameter.
warning: Parameter 'key' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:57:11-57:47
55 | /// - Parameters:
56 | /// - value: An initial value to store in the state property.
57 + /// - key: The type of the property key.
| ╰─suggestion: Remove 'key' parameter documentation
58 | init(wrappedValue value: Key = .defaultValue, _: Key.Type = Key.self) {
59 | storage = .state(State(initialValue: value))
warning: Parameter '' is missing documentation
--> Development/PropertyWrappers/PropertyPickerState.swift:57:47-57:47
55 | /// - Parameters:
56 | /// - value: An initial value to store in the state property.
57 + /// - key: The type of the property key.
| ╰─suggestion: Document '' parameter
58 | init(wrappedValue value: Key = .defaultValue, _: Key.Type = Key.self) {
59 | storage = .state(State(initialValue: value))
warning: Parameter 'key' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:66:11-66:47
64 | /// - Parameters:
65 | /// - value: An initial value to store in the state property.
66 + /// - key: The type of the property key.
| ╰─suggestion: Remove 'key' parameter documentation
67 | init(wrappedValue value: Key = .defaultValue) where Key == Key.PickerValue {
68 | storage = .state(State(initialValue: value))
warning: Parameter 'value' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:86:11-86:68
84 | /// Initializes the property picker state, linking the local selection to an environment value.
85 | /// - Parameters:
86 + /// - value: An initial value to store in the state property.
| ╰─suggestion: Remove 'value' parameter documentation
87 | /// - key: The type of the property key.
88 | /// - keyPath: A key path to an environment value that this picker state will sync with.
warning: Parameter 'key' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:87:13-87:16
85 | /// - Parameters:
86 | /// - value: An initial value to store in the state property.
87 + /// - key: The type of the property key.
| ╰─suggestion: Replace 'key' with 'keyPath'
88 | /// - keyPath: A key path to an environment value that this picker state will sync with.
89 | @_disfavoredOverload
warning: Parameter 'selection' is missing documentation
--> Development/PropertyWrappers/PropertyPickerState.swift:88:95-88:95
86 | /// - value: An initial value to store in the state property.
87 | /// - key: The type of the property key.
88 + /// - keyPath: A key path to an environment value that this picker state will sync with.
| ╰─suggestion: Document 'selection' parameter
89 | @_disfavoredOverload
90 | init(keyPath: Key.KeyPath, selection: Binding<Key>) {
warning: Parameter 'key' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:98:13-98:16
96 | /// - Parameters:
97 | /// - value: An initial value to store in the state property.
98 + /// - key: The type of the property key.
| ╰─suggestion: Replace 'key' with 'keyPath'
99 | /// - keyPath: A key path to an environment value that this picker state will sync with.
100 | @_disfavoredOverload
warning: Parameter '' is missing documentation
--> Development/PropertyWrappers/PropertyPickerState.swift:99:95-99:95
97 | /// - value: An initial value to store in the state property.
98 | /// - key: The type of the property key.
99 + /// - keyPath: A key path to an environment value that this picker state will sync with.
| ╰─suggestion: Document '' parameter
100 | @_disfavoredOverload
101 | init(wrappedValue value: Key = .defaultValue, _: Key.Type = Key.self, keyPath: Key.KeyPath) {
warning: Parameter 'key' not found in initializer declaration
--> Development/PropertyWrappers/PropertyPickerState.swift:109:13-109:16
107 | /// - Parameters:
108 | /// - value: An initial value to store in the state property.
109 + /// - key: The type of the property key.
| ╰─suggestion: Replace 'key' with 'keyPath'
110 | /// - keyPath: A key path to an environment value that this picker state will sync with.
111 | @available(*, deprecated, renamed: "init(_:keyPath:)", message: "Renamed")
warning: Parameter '' is missing documentation
--> Development/PropertyWrappers/PropertyPickerState.swift:110:95-110:95
108 | /// - value: An initial value to store in the state property.
109 | /// - key: The type of the property key.
110 + /// - keyPath: A key path to an environment value that this picker state will sync with.
| ╰─suggestion: Document '' parameter
111 | @available(*, deprecated, renamed: "init(_:keyPath:)", message: "Renamed")
112 | @_disfavoredOverloadFinished building documentation for 'PropertyPicker' (0.77s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/ipedro/swiftui-property-picker/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2050] Fetching swift-docc-plugin
Updating https://github.com/SimplyDanny/SwiftLintPlugins
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.28s)
Updated https://github.com/SimplyDanny/SwiftLintPlugins (0.48s)
Computing version for https://github.com/SimplyDanny/SwiftLintPlugins
Computed https://github.com/SimplyDanny/SwiftLintPlugins at 0.57.0 (0.40s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.52s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3309] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.31s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.55s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-5BDAB9E9C0126B9D.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Relationship.swift
[8/57] Compiling SymbolKit RelationshipKind.swift
[9/57] Compiling SymbolKit SourceOrigin.swift
[10/57] Compiling SymbolKit GenericConstraints.swift
[11/57] Compiling SymbolKit Swift.swift
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit SourceRange.swift
[18/57] Compiling SymbolKit Metadata.swift
[19/57] Compiling SymbolKit Module.swift
[20/57] Compiling SymbolKit OperatingSystem.swift
[21/57] Compiling SymbolKit Platform.swift
[22/57] Compiling SymbolKit Identifier.swift
[23/57] Compiling SymbolKit KindIdentifier.swift
[24/57] Compiling SymbolKit Location.swift
[25/57] Compiling SymbolKit Mutability.swift
[26/57] Compiling SymbolKit GenericConstraint.swift
[27/57] Compiling SymbolKit GenericParameter.swift
[28/57] Compiling SymbolKit Generics.swift
[29/57] Compiling SymbolKit Namespace.swift
[30/57] Compiling SymbolKit Symbol.swift
[31/57] Compiling SymbolKit SymbolKind.swift
[32/57] Compiling SymbolKit SymbolGraph.swift
[33/57] Compiling SymbolKit GraphCollector.swift
[34/57] Compiling SymbolKit SemanticVersion.swift
[35/57] Compiling SymbolKit AccessControl.swift
[36/57] Compiling SymbolKit Availability.swift
[37/57] Compiling SymbolKit AvailabilityItem.swift
[38/57] Compiling SymbolKit Domain.swift
[39/57] Compiling Snippets SnippetParser.swift
[40/57] Compiling Snippets Snippet.swift
[41/57] Emitting module Snippets
[42/57] Compiling SymbolKit Names.swift
[43/57] Compiling SymbolKit SPI.swift
[44/57] Compiling SymbolKit Snippet.swift
[45/57] Compiling SymbolKit Extension.swift
[46/57] Compiling SymbolKit DeclarationFragments.swift
[47/57] Compiling SymbolKit Fragment.swift
[48/57] Compiling SymbolKit FragmentKind.swift
[49/57] Compiling SymbolKit FunctionParameter.swift
[50/57] Compiling SymbolKit FunctionSignature.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.72s)
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/27] Compiling PropertyPicker InlineRow.swift
[3/27] Compiling PropertyPicker ListRow.swift
[4/27] Compiling PropertyPicker EvironmentKeys.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[5/27] Compiling PropertyPicker PreferenceKeys.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[6/27] Compiling PropertyPicker AnimationBox.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[7/29] Emitting module PropertyPicker
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
[8/29] Compiling PropertyPicker PropertyWriter.swift
[9/29] Compiling PropertyPicker RowBuilderWriter.swift
[10/29] Compiling PropertyPicker PropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[11/29] Compiling PropertyPicker PropertyPickerState.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[12/29] Compiling PropertyPicker PropertyPickerKey.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
[13/29] Compiling PropertyPicker PropertyPickerTextTransformation.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[14/29] Compiling PropertyPicker RowBuilder.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[15/29] Compiling PropertyPicker PropertyPicker+View.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'capitalize' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'lowercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'uppercase' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'camelCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'snakeCaseToWords' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[16/29] Compiling PropertyPicker Context.Data.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
[17/29] Compiling PropertyPicker Property.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
[18/29] Compiling PropertyPicker PropertyID.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
[19/29] Compiling PropertyPicker PropertyOption.swift
[20/29] Compiling PropertyPicker PropertyPickerRowSorting.swift
[21/29] Compiling PropertyPicker PropertyPickerSafeAreaAdjustmentStyle.swift
[22/29] Compiling PropertyPicker PropertyPickerStyle.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[23/29] Compiling PropertyPicker _InlinePropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[24/29] Compiling PropertyPicker _ListPropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/ListRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct ListRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| `- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(data:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/InlineRow.swift:3:8: note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct InlineRow: View {
| `- note: calls to initializer 'init(data:)' from outside of its actor context are implicitly asynchronous
4 | var data: Property
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
4 | @EnvironmentObject
5 | private var context: Context.Data
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Styles/_InlinePropertyPicker.swift:33:21: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
31 | .padding()
32 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
33 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
34 | }
35 | }
:
40 |
41 | @State
42 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
43 |
44 | private var contentBackground: some ShapeStyle {
/Users/admin/builder/spi-builder-workspace/Development/Styles/_ListPropertyPicker.swift:42:33: warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
18 |
19 | @State
20 | private var backgroundPreference = ContentBackgroundStylePreference.defaultValue
| `- note: mutation of this property is only permitted within the actor
21 |
22 | private var contentBackground: some ShapeStyle {
:
40 | .padding()
41 | .onPreferenceChange(ContentBackgroundStylePreference.self) {
42 | backgroundPreference = $0
| `- warning: main actor-isolated property 'backgroundPreference' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| |- warning: sending 'data' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'data' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
22 | }
23 |
[25/29] Compiling PropertyPicker _SheetPropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:15:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
13 | func body(content: Content) -> some View {
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
16 | data.rows = newValue
17 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:16:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
16 | data.rows = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:19:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
20 | data.title = newValue
21 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:20:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
20 | data.title = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:23:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
24 | data.rowBuilders = newValue
25 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:24:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
24 | data.rowBuilders = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
25 | }
26 | }.environmentObject(data)
[26/29] Compiling PropertyPicker Context.swift
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:15:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
13 | func body(content: Content) -> some View {
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
16 | data.rows = newValue
17 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:16:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
16 | data.rows = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:19:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
20 | data.title = newValue
21 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:20:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
20 | data.title = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:23:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
24 | data.rowBuilders = newValue
25 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:24:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
24 | data.rowBuilders = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
25 | }
26 | }.environmentObject(data)
[27/29] Compiling PropertyPicker PreferenceWriter.swift
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:15:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
13 | func body(content: Content) -> some View {
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
16 | data.rows = newValue
17 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:16:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
14 | content.onPreferenceChange(PropertyPreference.self) { newValue in
15 | if data.rows != newValue {
16 | data.rows = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:19:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
17 | }
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
20 | data.title = newValue
21 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:20:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
18 | }.onPreferenceChange(TitlePreference.self) { newValue in
19 | if data.title != newValue {
20 | data.title = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:23:16: warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: property declared here
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
21 | }
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
| `- warning: main actor-isolated property 'data' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
24 | data.rowBuilders = newValue
25 | }
/Users/admin/builder/spi-builder-workspace/Development/ViewModifiers/Context.swift:24:17: warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
8 | /// A context object that holds and manages UI related data for property pickers within a SwiftUI application.
9 | @StateObject
10 | private var data = Data()
| `- note: mutation of this property is only permitted within the actor
11 |
12 | /// The body of the modifier which subscribes to preference changes and updates the context.
:
22 | }.onPreferenceChange(ViewBuilderPreference.self) { newValue in
23 | if data.rowBuilders != newValue {
24 | data.rowBuilders = newValue
| `- warning: main actor-isolated property 'data' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
25 | }
26 | }.environmentObject(data)
[28/29] Compiling PropertyPicker Rows.swift
[29/29] Compiling PropertyPicker Title.swift
Build of target: 'PropertyPicker' complete! (1.53s)
1746
13 /Users/admin/builder/spi-builder-workspace/.docs/ipedro/swiftui-property-picker/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/ipedro/swiftui-property-picker/main
File count: 1746
Doc size: 13.0MB
Preparing doc bundle ...
Uploading prod-ipedro-swiftui-property-picker-main-1454c225.zip to s3://spi-docs-inbox/prod-ipedro-swiftui-property-picker-main-1454c225.zip
Copying... [12%]
Copying... [22%]
Copying... [32%]
Copying... [42%]
Copying... [52%]
Copying... [62%]
Copying... [72%]
Copying... [82%]
Copying... [92%]
Copying... [100%]
Done.