The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of CompactSlider, reference main (f07c7a), with Swift 6.1 for macOS (SPM) on 1 May 2025 02:53:48 UTC.

Swift 6 data race errors: 21

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.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

    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[49/74] Compiling CompactSlider LinearScaleShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:57:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 | struct CompactSliderStyleKey: EnvironmentKey {
 57 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | }
 59 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:61:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 | struct CompactSliderGridStyleKey: EnvironmentKey {
 61 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.grid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[50/74] Compiling CompactSlider ScaleLabels.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:57:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 | struct CompactSliderStyleKey: EnvironmentKey {
 57 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | }
 59 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:61:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 | struct CompactSliderGridStyleKey: EnvironmentKey {
 61 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.grid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[51/74] Compiling CompactSlider BackgroundViewWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:57:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 | struct CompactSliderStyleKey: EnvironmentKey {
 57 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | }
 59 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:61:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 | struct CompactSliderGridStyleKey: EnvironmentKey {
 61 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.grid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[52/74] Compiling CompactSlider ClipShapeStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:57:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 | struct CompactSliderStyleKey: EnvironmentKey {
 57 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | }
 59 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:61:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 | struct CompactSliderGridStyleKey: EnvironmentKey {
 61 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.grid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[53/74] Compiling CompactSlider CompactSliderStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:57:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 | struct CompactSliderStyleKey: EnvironmentKey {
 57 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | }
 59 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:61:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 | struct CompactSliderGridStyleKey: EnvironmentKey {
 61 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.grid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | }
 63 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/CompactSliderStyle.swift:65:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |
 64 | struct CompactSliderCircularGridStyleKey: EnvironmentKey {
 65 |     static let defaultValue = AnyCompactSliderStyle(DefaultCompactSliderStyle.circularGrid())
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyCompactSliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | }
 67 |
    :
 83 | }
 84 |
 85 | struct AnyCompactSliderStyle: CompactSliderStyle {
    |        `- note: consider making struct 'AnyCompactSliderStyle' conform to the 'Sendable' protocol
 86 |     let type: CompactSliderType
 87 |     let padding: EdgeInsets
[54/74] Compiling CompactSlider Functions.swift
[55/74] Compiling CompactSlider HapticFeedback.swift
[56/74] Compiling CompactSlider ScreenScaleFactor.swift
[57/74] Compiling CompactSlider ScrollWheelModifier.swift
[58/74] Compiling CompactSlider View.swift
[59/74] Compiling CompactSlider WatchOSFillMaterial.swift
[60/74] Compiling CompactSlider resource_bundle_accessor.swift
[61/74] Compiling CompactSlider SystemSliderBackgroundView.swift
[62/74] Compiling CompactSlider SystemSliderHandleView.swift
[63/74] Compiling CompactSlider SystemSliderProgressView.swift
[64/74] Compiling CompactSlider SystemSliderType.swift
[65/74] Compiling CompactSlider ClosedRange.swift
[66/74] Compiling CompactSlider CoreGraphics.swift
[67/74] Compiling CompactSlider Defaults.swift
[68/74] Compiling CompactSlider DefaultCompactSliderStyle+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[69/74] Compiling CompactSlider DefaultCompactSliderStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[70/74] Compiling CompactSlider HandleViewWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[71/74] Compiling CompactSlider ProgressViewWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[72/74] Compiling CompactSlider ScaleViewWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[73/74] Compiling CompactSlider Convertor.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
[74/74] Compiling CompactSlider EdgeInsets.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          `- warning: call to main actor-isolated instance method 'contentShape' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:111:10: note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
109 |
110 |     @ViewBuilder
111 |     func contentShape(_ clipShape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'contentShape' from outside of its actor context are implicitly asynchronous
112 |         if let shape = clipShape {
113 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 `- warning: call to main actor-isolated initializer 'init(sliderOptions:progressView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ProgressViewWrapper.swift:8:8: note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ProgressViewWrapper: View {
   |        |- note: calls to initializer 'init(sliderOptions:progressView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.compactSliderOptions) var sliderOptions
10 |     @Environment(\.compactSliderProgressView) var progressView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(scaleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ScaleViewWrapper.swift:8:8: note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct ScaleViewWrapper: View {
   |        |- note: calls to initializer 'init(scaleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.scaleView) var scaleView
10 |     let configuration: CompactSliderStyleConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             `- warning: call to main actor-isolated initializer 'init(environmentHandleStyle:handleView:configuration:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/HandleViewWrapper.swift:8:8: note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
 6 | import SwiftUI
 7 |
 8 | struct HandleViewWrapper: View {
   |        |- note: calls to initializer 'init(environmentHandleStyle:handleView:configuration:)' from outside of its actor context are implicitly asynchronous
   |        `- note: main actor isolation inferred from conformance to protocol 'View'
 9 |     @Environment(\.handleStyle) var environmentHandleStyle
10 |     @Environment(\.compactSliderHandleView) var handleView
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  `- warning: call to main actor-isolated instance method 'clipShapeStyleIf(_:shape:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:93:10: note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 91 | extension View {
 92 |     @ViewBuilder
 93 |     func clipShapeStyleIf(_ condition: Bool, shape: ClipShapeStyle.Shape?) -> some View {
    |          `- note: calls to instance method 'clipShapeStyleIf(_:shape:)' from outside of its actor context are implicitly asynchronous
 94 |         if condition, let shape {
 95 |             switch shape {
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
41 |     }
42 |
43 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@MainActor' to make instance method 'makeBody(configuration:)' part of global actor 'MainActor'
44 |         ZStack {
45 |             if !configuration.progress.isMultipleValues,
   :
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             `- warning: call to main actor-isolated initializer 'init(configuration:padding:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/BackgroundViewWrapper.swift:14:5: note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
12 |     let padding: EdgeInsets
13 |
14 |     init(configuration: CompactSliderStyleConfiguration, padding: EdgeInsets = .zero) {
   |     |- note: calls to initializer 'init(configuration:padding:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'View'
15 |         self.configuration = configuration
16 |         self.padding = padding
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'ClipShapeStyle.Shape?' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'ClipShapeStyle.Shape?' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:74:10: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
72 |         )
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
   |          |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending value of non-Sendable type 'some View' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |                           `- note: access can happen concurrently
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
77 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:75:10: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
73 |         .compositingGroup()
74 |         .contentShape(ClipShapeStyle.default(for: configuration.type).shape)
75 |         .clipShapeStyleIf(clipShapeStyle.options.contains(.all), shape: clipShapeStyle.shape)
   |          |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |          `- note: sending main actor-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
76 |         .environment(\.compactSliderStyleConfiguration, configuration)
   |          `- note: access can happen concurrently
77 |     }
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:67:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
65 |         .padding(padding)
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
68 |                 .clipShapeStyleIf(
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:68:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
66 |         .background(
67 |             BackgroundViewWrapper(configuration: configuration, padding: padding)
68 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
69 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.background),
70 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:49:17: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
47 |                !configuration.progress.isCircularGridValues,
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
   |                 |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
50 |                     .clipShapeStyleIf(
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:50:22: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
48 |                !configuration.type.isScrollable {
49 |                 ProgressViewWrapper(configuration: configuration)
50 |                     .clipShapeStyleIf(
   |                      |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                      `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
51 |                         !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.progress),
52 |                         shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:56:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
54 |             }
55 |
56 |             ScaleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
57 |                 .clipShapeStyleIf(
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:57:18: warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
55 |
56 |             ScaleViewWrapper(configuration: configuration)
57 |                 .clipShapeStyleIf(
   |                  |- warning: sending 'self.clipShapeStyle.shape' risks causing data races; this is an error in the Swift 6 language mode
   |                  `- note: sending task-isolated 'self.clipShapeStyle.shape' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
58 |                     !clipShapeStyle.options.contains(.all) && clipShapeStyle.options.contains(.scale),
59 |                     shape: clipShapeStyle.shape
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:62:13: warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
60 |                 )
61 |
62 |             HandleViewWrapper(configuration: configuration)
   |             |- warning: sending 'configuration' risks causing data races; this is an error in the Swift 6 language mode
   |             `- note: sending task-isolated 'configuration' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
63 |         }
64 |         .frame(maxWidth: .infinity, maxHeight: .infinity)
Build complete! (11.04s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CompactSlider",
  "name" : "CompactSlider",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "CompactSlider",
      "targets" : [
        "CompactSlider"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CompactSlider",
      "module_type" : "SwiftTarget",
      "name" : "CompactSlider",
      "path" : "Sources/CompactSlider",
      "product_memberships" : [
        "CompactSlider"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CompactSlider+Dragging.swift",
        "CompactSlider+OnChange.swift",
        "CompactSlider+ScrollWheel.swift",
        "CompactSlider.swift",
        "CompactSliderAnimations.swift",
        "CompactSliderOnChangeAction.swift",
        "CompactSliderOption.swift",
        "CompactSliderPoint.swift",
        "CompactSliderPolarPoint.swift",
        "CompactSliderStep.swift",
        "CompactSliderStyleConfiguration.swift",
        "CompactSliderType.swift",
        "Components/Background/BackgroundContainerView.swift",
        "Components/Background/DefaultBackgroundView.swift",
        "Components/Background/EnvironmentBackgroundViewKey.swift",
        "Components/Background/GridBackgroundView.swift",
        "Components/Background/GridView.swift",
        "Components/CompactSliderVisibility.swift",
        "Components/Gauge/GaugeStyle.swift",
        "Components/Gauge/GaugeView.swift",
        "Components/Grid/Grid.swift",
        "Components/Handle/EnvironmentHandleStyleKey.swift",
        "Components/Handle/EnvironmentHandleViewKey.swift",
        "Components/Handle/HandleStyle.swift",
        "Components/Handle/HandleView.swift",
        "Components/Handle/HandleViewContainerView.swift",
        "Components/Progress/EnvironmentProgressViewKey.swift",
        "Components/Progress/Progress.swift",
        "Components/Progress/ProgressContainerView.swift",
        "Components/Progress/ProgressView.swift",
        "Components/Scale/DefaultScaleView.swift",
        "Components/Scale/EnvironmentScaleViewKey.swift",
        "Components/Scale/ScaleContainerView.swift",
        "Components/Scale/ScaleShapeStyle.swift",
        "Components/Scale/ScaleView.swift",
        "Components/Scale/ScaleZStackView.swift",
        "Components/Scale/Scales/CircularScaleShape.swift",
        "Components/Scale/Scales/LinearScaleShape.swift",
        "Components/Scale/Scales/ScaleLabels.swift",
        "Styles/BackgroundViewWrapper.swift",
        "Styles/ClipShapeStyle.swift",
        "Styles/CompactSliderStyle.swift",
        "Styles/DefaultCompactSliderStyle+Init.swift",
        "Styles/DefaultCompactSliderStyle.swift",
        "Styles/HandleViewWrapper.swift",
        "Styles/ProgressViewWrapper.swift",
        "Styles/ScaleViewWrapper.swift",
        "Treats/Convertor.swift",
        "Treats/EdgeInsets.swift",
        "Treats/GradientMask.swift",
        "Treats/OptionalCGSize.swift",
        "Treats/ReversedMask.swift",
        "Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift",
        "Treats/SystemSlider/HandleStyle+SystemSlider.swift",
        "Treats/SystemSlider/SystemSlider+ViewFrame.swift",
        "Treats/SystemSlider/SystemSlider.swift",
        "Treats/SystemSlider/SystemSliderBackgroundView.swift",
        "Treats/SystemSlider/SystemSliderHandleView.swift",
        "Treats/SystemSlider/SystemSliderProgressView.swift",
        "Treats/SystemSlider/SystemSliderType.swift",
        "Utils/ClosedRange.swift",
        "Utils/CoreGraphics.swift",
        "Utils/Defaults.swift",
        "Utils/Functions.swift",
        "Utils/HapticFeedback.swift",
        "Utils/ScreenScaleFactor.swift",
        "Utils/ScrollWheelModifier.swift",
        "Utils/View.swift",
        "Utils/WatchOSFillMaterial.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/buh/compactslider/main
Repository:               buh/CompactSlider
Swift version used:       6.1
Target:                   CompactSlider
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            release/6.2 -> FETCH_HEAD
 * [new branch]      release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'CompactSlider'...
Finished extracting symbol information for 'CompactSlider'. (6.54s)
Building documentation for 'CompactSlider'...
warning: '.compactSliderOptions()' doesn't exist at '/CompactSlider/CompactSlider'
  --> Sources/CompactSlider/CompactSlider.swift:44:53-44:76
42 | ///
43 | ///  The slider can be customized with a variety of options, including the possibility to enable haptic feedback,
44 + ///  snap to steps, and scroll wheel support. Use ``.compactSliderOptions()`` and ``.compactSliderOptionsByAdding()``
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptions(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptionsByAdding(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptionsByRemoving(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOnChange(action:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderAnimation(_:when:)'
   |                                                     ╰─suggestion: Replace '.compactSliderOptions()' with 'compactSliderStyle(_:)'
45 | ///  modifiers to change options.
46 | ///
warning: '.compactSliderOptionsByAdding()' doesn't exist at '/CompactSlider/CompactSlider'
  --> Sources/CompactSlider/CompactSlider.swift:44:85-44:116
42 | ///
43 | ///  The slider can be customized with a variety of options, including the possibility to enable haptic feedback,
44 + ///  snap to steps, and scroll wheel support. Use ``.compactSliderOptions()`` and ``.compactSliderOptionsByAdding()``
   |                                                                                     ├─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptionsByAdding(_:)'
   |                                                                                     ├─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptionsByRemoving(_:)'
   |                                                                                     ╰─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptions(_:)'
45 | ///  modifiers to change options.
46 | ///
warning: '.simultaneousGesture' doesn't exist at '/CompactSlider/CompactSliderOption/highPriorityGesture'
  --> Sources/CompactSlider/CompactSliderOption.swift:15:87-15:107
13 |     /// Default value is 1 and 0 for macOS.
14 |     case dragGestureMinimumDistance(CGFloat)
15 +     /// Attaches a high priority gesture to the slider and it has the priority over ``.simultaneousGesture`` option.
16 |     case highPriorityGesture
17 |     /// Attaches a simultaneous gesture to the slider and it has less priority than ``.highPriorityGesture`` option.
warning: '.highPriorityGesture' doesn't exist at '/CompactSlider/CompactSliderOption/simultaneousGesture'
  --> Sources/CompactSlider/CompactSliderOption.swift:17:87-17:107
15 |     /// Attaches a high priority gesture to the slider and it has the priority over ``.simultaneousGesture`` option.
16 |     case highPriorityGesture
17 +     /// Attaches a simultaneous gesture to the slider and it has less priority than ``.highPriorityGesture`` option.
18 |     case simultaneousGesture
19 |     /// Delays the touch gesture. Enabled by default for iOS.
warning: Parameter 'inverse' is missing documentation
  --> Sources/CompactSlider/Components/Grid/Grid.swift:43:70-43:70
41 |     ///   - countY: the number of shapes in the Y-axis.
42 |     ///   - size: the size of grid shapes.
43 +     ///   - padding: the padding from the edges (default is `.zero`).
   |                                                                      ╰─suggestion: Document 'inverse' parameter
44 |     public init(
45 |         type: GridType = .circle,
Finished building documentation for 'CompactSlider' (5.90s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/buh/compactslider/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.49s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.21s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.71s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.35s)
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
[2/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling Snippets Snippet.swift
[7/53] Compiling Snippets SnippetParser.swift
[8/53] Emitting module SymbolKit
[9/57] Emitting module Snippets
[10/57] Compiling SymbolKit GenericConstraint.swift
[11/57] Compiling SymbolKit GenericParameter.swift
[12/57] Compiling SymbolKit Generics.swift
[13/57] Compiling SymbolKit Namespace.swift
[14/57] Compiling SymbolKit Identifier.swift
[15/57] Compiling SymbolKit KindIdentifier.swift
[16/57] Compiling SymbolKit Location.swift
[17/57] Compiling SymbolKit Mutability.swift
[18/57] Compiling SymbolKit DeclarationFragments.swift
[19/57] Compiling SymbolKit Fragment.swift
[20/57] Compiling SymbolKit FragmentKind.swift
[21/57] Compiling SymbolKit FunctionParameter.swift
[22/57] Compiling SymbolKit FunctionSignature.swift
[23/57] Compiling SymbolKit SemanticVersion.swift
[24/57] Compiling SymbolKit AccessControl.swift
[25/57] Compiling SymbolKit Availability.swift
[26/57] Compiling SymbolKit AvailabilityItem.swift
[27/57] Compiling SymbolKit Domain.swift
[28/57] Compiling SymbolKit Mixin+Equals.swift
[29/57] Compiling SymbolKit Mixin+Hash.swift
[30/57] Compiling SymbolKit Mixin.swift
[31/57] Compiling SymbolKit LineList.swift
[32/57] Compiling SymbolKit Position.swift
[33/57] Compiling SymbolKit SourceRange.swift
[34/57] Compiling SymbolKit Metadata.swift
[35/57] Compiling SymbolKit Module.swift
[36/57] Compiling SymbolKit OperatingSystem.swift
[37/57] Compiling SymbolKit Platform.swift
[38/57] Compiling SymbolKit Symbol.swift
[39/57] Compiling SymbolKit SymbolKind.swift
[40/57] Compiling SymbolKit SymbolGraph.swift
[41/57] Compiling SymbolKit GraphCollector.swift
[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 Relationship.swift
[47/57] Compiling SymbolKit RelationshipKind.swift
[48/57] Compiling SymbolKit SourceOrigin.swift
[49/57] Compiling SymbolKit GenericConstraints.swift
[50/57] Compiling SymbolKit Swift.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] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.96s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/65] Compiling CompactSlider SystemSliderBackgroundView.swift
[3/65] Compiling CompactSlider SystemSliderHandleView.swift
[4/65] Compiling CompactSlider SystemSliderProgressView.swift
[5/65] Compiling CompactSlider SystemSliderType.swift
[6/65] Compiling CompactSlider ClosedRange.swift
[7/65] Compiling CompactSlider CoreGraphics.swift
[8/65] Compiling CompactSlider Defaults.swift
[9/72] Compiling CompactSlider DefaultCompactSliderStyle+Init.swift
[10/72] Compiling CompactSlider DefaultCompactSliderStyle.swift
[11/72] Compiling CompactSlider HandleViewWrapper.swift
[12/72] Compiling CompactSlider ProgressViewWrapper.swift
[13/72] Compiling CompactSlider ScaleViewWrapper.swift
[14/72] Compiling CompactSlider Convertor.swift
[15/72] Compiling CompactSlider EdgeInsets.swift
[16/72] Compiling CompactSlider EnvironmentHandleStyleKey.swift
[17/72] Compiling CompactSlider EnvironmentHandleViewKey.swift
[18/72] Compiling CompactSlider HandleStyle.swift
[19/72] Compiling CompactSlider HandleView.swift
[20/72] Compiling CompactSlider HandleViewContainerView.swift
[21/72] Compiling CompactSlider EnvironmentProgressViewKey.swift
[22/72] Compiling CompactSlider Progress.swift
[23/72] Emitting module CompactSlider
[24/72] Compiling CompactSlider Functions.swift
[25/72] Compiling CompactSlider HapticFeedback.swift
[26/72] Compiling CompactSlider ScreenScaleFactor.swift
[27/72] Compiling CompactSlider ScrollWheelModifier.swift
[28/72] Compiling CompactSlider View.swift
[29/72] Compiling CompactSlider WatchOSFillMaterial.swift
[30/72] Compiling CompactSlider resource_bundle_accessor.swift
[31/72] Compiling CompactSlider GradientMask.swift
[32/72] Compiling CompactSlider OptionalCGSize.swift
[33/72] Compiling CompactSlider ReversedMask.swift
[34/72] Compiling CompactSlider EnvironmentSystemSliderStyleKey.swift
[35/72] Compiling CompactSlider HandleStyle+SystemSlider.swift
[36/72] Compiling CompactSlider SystemSlider+ViewFrame.swift
[37/72] Compiling CompactSlider SystemSlider.swift
[38/72] Compiling CompactSlider CompactSliderPoint.swift
[39/72] Compiling CompactSlider CompactSliderPolarPoint.swift
[40/72] Compiling CompactSlider CompactSliderStep.swift
[41/72] Compiling CompactSlider CompactSliderStyleConfiguration.swift
[42/72] Compiling CompactSlider CompactSliderType.swift
[43/72] Compiling CompactSlider BackgroundContainerView.swift
[44/72] Compiling CompactSlider DefaultBackgroundView.swift
[45/72] Compiling CompactSlider ProgressContainerView.swift
[46/72] Compiling CompactSlider ProgressView.swift
[47/72] Compiling CompactSlider DefaultScaleView.swift
[48/72] Compiling CompactSlider EnvironmentScaleViewKey.swift
[49/72] Compiling CompactSlider ScaleContainerView.swift
[50/72] Compiling CompactSlider ScaleShapeStyle.swift
[51/72] Compiling CompactSlider ScaleView.swift
[52/72] Compiling CompactSlider EnvironmentBackgroundViewKey.swift
[53/72] Compiling CompactSlider GridBackgroundView.swift
[54/72] Compiling CompactSlider GridView.swift
[55/72] Compiling CompactSlider CompactSliderVisibility.swift
[56/72] Compiling CompactSlider GaugeStyle.swift
[57/72] Compiling CompactSlider GaugeView.swift
[58/72] Compiling CompactSlider Grid.swift
[59/72] Compiling CompactSlider ScaleZStackView.swift
[60/72] Compiling CompactSlider CircularScaleShape.swift
[61/72] Compiling CompactSlider LinearScaleShape.swift
[62/72] Compiling CompactSlider ScaleLabels.swift
[63/72] Compiling CompactSlider BackgroundViewWrapper.swift
[64/72] Compiling CompactSlider ClipShapeStyle.swift
[65/72] Compiling CompactSlider CompactSliderStyle.swift
[66/72] Compiling CompactSlider CompactSlider+Dragging.swift
[67/72] Compiling CompactSlider CompactSlider+OnChange.swift
[68/72] Compiling CompactSlider CompactSlider+ScrollWheel.swift
[69/72] Compiling CompactSlider CompactSlider.swift
[70/72] Compiling CompactSlider CompactSliderAnimations.swift
[71/72] Compiling CompactSlider CompactSliderOnChangeAction.swift
[72/72] Compiling CompactSlider CompactSliderOption.swift
Build of target: 'CompactSlider' complete! (2.19s)
   18478
120	/Users/admin/builder/spi-builder-workspace/.docs/buh/compactslider/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/buh/compactslider/main
File count: 18478
Doc size:   120.0MB
Preparing doc bundle ...
Uploading prod-buh-compactslider-main-24beb731.zip to s3://spi-docs-inbox/prod-buh-compactslider-main-24beb731.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.