The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of slipstream, reference main (9dea9d), with Swift 6.1 for Android on 2 Jun 2025 19:58:27 UTC.

Swift 6 data race errors: 121

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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 2>&1

Build Log

 26 |   public static let screenLarge = Self(.screenLarge)
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
    |                     |- warning: static property 'screenExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |   public static let screenExtraExtraLarge = Self(.screenExtraExtraLarge)
 29 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:28:21: warning: static property 'screenExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 26 |   public static let screenLarge = Self(.screenLarge)
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
 28 |   public static let screenExtraExtraLarge = Self(.screenExtraExtraLarge)
    |                     |- warning: static property 'screenExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenExtraExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:5:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:6:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    |                     |- warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screen' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:7:21: warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
    |                     |- warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'svh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:8:21: warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
    |                     |- warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'lvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:9:21: warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
    |                     |- warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'dvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:10:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let max = Self(.max)
 12 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:11:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let fit = Self(.fit)
 13 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:12:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
 12 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:5:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
   |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:6:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
   |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   public static let max = Self(.max)
 8 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:7:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
   |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   public static let fit = Self(.fit)
 9 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:8:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
 8 |   public static let fit = Self(.fit)
   |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |
10 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'auto' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:7:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:8:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
    |                     |- warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screen' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:9:21: warning: static property 'svw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
    |                     |- warning: static property 'svw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'svw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:10:21: warning: static property 'lvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
    |                     |- warning: static property 'lvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'lvw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:11:21: warning: static property 'dvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
    |                     |- warning: static property 'dvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'dvw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:12:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |   public static let max = Self(.max)
 14 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:13:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   public static let fit = Self(.fit)
 15 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:14:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
 14 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Spacing/View+margin.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'MarginValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and the "auto" value.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct MarginValue {
    |               `- note: consider making struct 'MarginValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" margin value.
  6 |   public static let auto = MarginValue(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'MarginValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'auto' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |
  8 |   fileprivate init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:104:23: warning: static property 'hover' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
102 |     }
103 |
104 |     public static let hover = State.Set(.hover)
    |                       |- warning: static property 'hover' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hover' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:105:23: warning: static property 'focus' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
103 |
104 |     public static let hover = State.Set(.hover)
105 |     public static let focus = State.Set(.focus)
    |                       |- warning: static property 'focus' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focus' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:106:23: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
104 |     public static let hover = State.Set(.hover)
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
    |                       |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:107:23: warning: static property 'focusWithin' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
    |                       |- warning: static property 'focusWithin' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focusWithin' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:108:23: warning: static property 'focusVisible' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
    |                       |- warning: static property 'focusVisible' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focusVisible' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:109:23: warning: static property 'visited' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
    |                       |- warning: static property 'visited' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'visited' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:110:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
    |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'target' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:111:23: warning: static property 'first' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
    |                       |- warning: static property 'first' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'first' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:112:23: warning: static property 'last' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
    |                       |- warning: static property 'last' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'last' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:113:23: warning: static property 'only' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
    |                       |- warning: static property 'only' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'only' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:114:23: warning: static property 'odd' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
    |                       |- warning: static property 'odd' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'odd' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:115:23: warning: static property 'even' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
    |                       |- warning: static property 'even' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'even' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:116:23: warning: static property 'firstOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
    |                       |- warning: static property 'firstOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'firstOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:117:23: warning: static property 'lastOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
    |                       |- warning: static property 'lastOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'lastOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:118:23: warning: static property 'onlyOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
    |                       |- warning: static property 'onlyOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:119:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
    |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:120:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:121:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:122:23: warning: static property 'checked' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
    |                       |- warning: static property 'checked' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'checked' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:123:23: warning: static property 'indeterminate' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
    |                       |- warning: static property 'indeterminate' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'indeterminate' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:124:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:125:23: warning: static property 'required' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
    |                       |- warning: static property 'required' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'required' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:126:23: warning: static property 'valid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
    |                       |- warning: static property 'valid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'valid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:127:23: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
    |                       |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:128:23: warning: static property 'inRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
    |                       |- warning: static property 'inRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'inRange' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:129:23: warning: static property 'outOfRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
    |                       |- warning: static property 'outOfRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'outOfRange' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:130:23: warning: static property 'placeholderShown' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
    |                       |- warning: static property 'placeholderShown' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'placeholderShown' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:131:23: warning: static property 'autofill' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
    |                       |- warning: static property 'autofill' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'autofill' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |     public static let readonly = State.Set(.readonly)
133 |     public static let dark = State.Set(.dark)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:132:23: warning: static property 'readonly' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
    |                       |- warning: static property 'readonly' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'readonly' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     public static let dark = State.Set(.dark)
134 |   }
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:133:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
133 |     public static let dark = State.Set(.dark)
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dark' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   }
135 | }
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Transforms/View+offset.swift:6:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'OffsetValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and predefined values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct OffsetValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'OffsetValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "full" placement value.
  6 |   public static let full = OffsetValue(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'OffsetValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |
  8 |   public init(integerLiteral value: Int) {
[325/325] Compiling Slipstream View+fontSmoothing.swift
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:5:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' 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
  6 |   public static let full = Self(.full)
  7 |   public static let screen = Self(.screen)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:6:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let screen = Self(.screen)
  8 |   public static let svh = Self(.svh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:7:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
  7 |   public static let screen = Self(.screen)
    |                     |- warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screen' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let svh = Self(.svh)
  9 |   public static let lvh = Self(.lvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:8:21: warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
  7 |   public static let screen = Self(.screen)
  8 |   public static let svh = Self(.svh)
    |                     |- warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'svh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let lvh = Self(.lvh)
 10 |   public static let dvh = Self(.dvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:9:21: warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
  7 |   public static let screen = Self(.screen)
  8 |   public static let svh = Self(.svh)
  9 |   public static let lvh = Self(.lvh)
    |                     |- warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'lvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let dvh = Self(.dvh)
 11 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:10:21: warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
    :
  8 |   public static let svh = Self(.svh)
  9 |   public static let lvh = Self(.lvh)
 10 |   public static let dvh = Self(.dvh)
    |                     |- warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'dvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let min = Self(.min)
 12 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:11:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
    :
  9 |   public static let lvh = Self(.lvh)
 10 |   public static let dvh = Self(.dvh)
 11 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let max = Self(.max)
 13 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:12:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
    :
 10 |   public static let dvh = Self(.dvh)
 11 |   public static let min = Self(.min)
 12 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |   public static let fit = Self(.fit)
 14 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift:13:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxHeightValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let full = Self(.full)
    :
 11 |   public static let min = Self(.min)
 12 |   public static let max = Self(.max)
 13 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMaxHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |
 15 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:5:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' 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
  6 |   public static let extraSmall = Self(.extraSmall)
  7 |   public static let small = Self(.small)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:6:21: warning: static property 'extraSmall' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    |                     |- warning: static property 'extraSmall' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'extraSmall' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let small = Self(.small)
  8 |   public static let medium = Self(.medium)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:7:21: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
  7 |   public static let small = Self(.small)
    |                     |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let medium = Self(.medium)
  9 |   public static let large = Self(.large)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:8:21: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
  7 |   public static let small = Self(.small)
  8 |   public static let medium = Self(.medium)
    |                     |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'medium' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let large = Self(.large)
 10 |   public static let extraLarge = Self(.extraLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:9:21: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
  7 |   public static let small = Self(.small)
  8 |   public static let medium = Self(.medium)
  9 |   public static let large = Self(.large)
    |                     |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let extraLarge = Self(.extraLarge)
 11 |   public static let extraExtraLarge = Self(.extraExtraLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:10:21: warning: static property 'extraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
  8 |   public static let medium = Self(.medium)
  9 |   public static let large = Self(.large)
 10 |   public static let extraLarge = Self(.extraLarge)
    |                     |- warning: static property 'extraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'extraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let extraExtraLarge = Self(.extraExtraLarge)
 12 |   public static let extraExtraExtraLarge = Self(.extraExtraExtraLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:11:21: warning: static property 'extraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
  9 |   public static let large = Self(.large)
 10 |   public static let extraLarge = Self(.extraLarge)
 11 |   public static let extraExtraLarge = Self(.extraExtraLarge)
    |                     |- warning: static property 'extraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'extraExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let extraExtraExtraLarge = Self(.extraExtraExtraLarge)
 13 |   public static let fourXLarge = Self(.fourXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:12:21: warning: static property 'extraExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 10 |   public static let extraLarge = Self(.extraLarge)
 11 |   public static let extraExtraLarge = Self(.extraExtraLarge)
 12 |   public static let extraExtraExtraLarge = Self(.extraExtraExtraLarge)
    |                     |- warning: static property 'extraExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'extraExtraExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |   public static let fourXLarge = Self(.fourXLarge)
 14 |   public static let fiveXLarge = Self(.fiveXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:13:21: warning: static property 'fourXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 11 |   public static let extraExtraLarge = Self(.extraExtraLarge)
 12 |   public static let extraExtraExtraLarge = Self(.extraExtraExtraLarge)
 13 |   public static let fourXLarge = Self(.fourXLarge)
    |                     |- warning: static property 'fourXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fourXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   public static let fiveXLarge = Self(.fiveXLarge)
 15 |   public static let sixXLarge = Self(.sixXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:14:21: warning: static property 'fiveXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 12 |   public static let extraExtraExtraLarge = Self(.extraExtraExtraLarge)
 13 |   public static let fourXLarge = Self(.fourXLarge)
 14 |   public static let fiveXLarge = Self(.fiveXLarge)
    |                     |- warning: static property 'fiveXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fiveXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   public static let sixXLarge = Self(.sixXLarge)
 16 |   public static let sevenXLarge = Self(.sevenXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:15:21: warning: static property 'sixXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 13 |   public static let fourXLarge = Self(.fourXLarge)
 14 |   public static let fiveXLarge = Self(.fiveXLarge)
 15 |   public static let sixXLarge = Self(.sixXLarge)
    |                     |- warning: static property 'sixXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'sixXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |   public static let sevenXLarge = Self(.sevenXLarge)
 17 |   public static let eightXLarge = Self(.eightXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:16:21: warning: static property 'sevenXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 14 |   public static let fiveXLarge = Self(.fiveXLarge)
 15 |   public static let sixXLarge = Self(.sixXLarge)
 16 |   public static let sevenXLarge = Self(.sevenXLarge)
    |                     |- warning: static property 'sevenXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'sevenXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |   public static let eightXLarge = Self(.eightXLarge)
 18 |   public static let nineXLarge = Self(.nineXLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:17:21: warning: static property 'eightXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 15 |   public static let sixXLarge = Self(.sixXLarge)
 16 |   public static let sevenXLarge = Self(.sevenXLarge)
 17 |   public static let eightXLarge = Self(.eightXLarge)
    |                     |- warning: static property 'eightXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'eightXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |   public static let nineXLarge = Self(.nineXLarge)
 19 |   public static let full = Self(.full)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:18:21: warning: static property 'nineXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 16 |   public static let sevenXLarge = Self(.sevenXLarge)
 17 |   public static let eightXLarge = Self(.eightXLarge)
 18 |   public static let nineXLarge = Self(.nineXLarge)
    |                     |- warning: static property 'nineXLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'nineXLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |   public static let full = Self(.full)
 20 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:19:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 17 |   public static let eightXLarge = Self(.eightXLarge)
 18 |   public static let nineXLarge = Self(.nineXLarge)
 19 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |   public static let min = Self(.min)
 21 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:20:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 18 |   public static let nineXLarge = Self(.nineXLarge)
 19 |   public static let full = Self(.full)
 20 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |   public static let max = Self(.max)
 22 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:21:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 19 |   public static let full = Self(.full)
 20 |   public static let min = Self(.min)
 21 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |   public static let fit = Self(.fit)
 23 |   public static let prose = Self(.prose)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:22:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 20 |   public static let min = Self(.min)
 21 |   public static let max = Self(.max)
 22 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |   public static let prose = Self(.prose)
 24 |   public static let screenSmall = Self(.screenSmall)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:23:21: warning: static property 'prose' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 21 |   public static let max = Self(.max)
 22 |   public static let fit = Self(.fit)
 23 |   public static let prose = Self(.prose)
    |                     |- warning: static property 'prose' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'prose' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |   public static let screenSmall = Self(.screenSmall)
 25 |   public static let screenMedium = Self(.screenMedium)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:24:21: warning: static property 'screenSmall' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 22 |   public static let fit = Self(.fit)
 23 |   public static let prose = Self(.prose)
 24 |   public static let screenSmall = Self(.screenSmall)
    |                     |- warning: static property 'screenSmall' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenSmall' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |   public static let screenMedium = Self(.screenMedium)
 26 |   public static let screenLarge = Self(.screenLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:25:21: warning: static property 'screenMedium' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 23 |   public static let prose = Self(.prose)
 24 |   public static let screenSmall = Self(.screenSmall)
 25 |   public static let screenMedium = Self(.screenMedium)
    |                     |- warning: static property 'screenMedium' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenMedium' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |   public static let screenLarge = Self(.screenLarge)
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:26:21: warning: static property 'screenLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 24 |   public static let screenSmall = Self(.screenSmall)
 25 |   public static let screenMedium = Self(.screenMedium)
 26 |   public static let screenLarge = Self(.screenLarge)
    |                     |- warning: static property 'screenLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
 28 |   public static let screenExtraExtraLarge = Self(.screenExtraExtraLarge)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:27:21: warning: static property 'screenExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 25 |   public static let screenMedium = Self(.screenMedium)
 26 |   public static let screenLarge = Self(.screenLarge)
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
    |                     |- warning: static property 'screenExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |   public static let screenExtraExtraLarge = Self(.screenExtraExtraLarge)
 29 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift:28:21: warning: static property 'screenExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMaxWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMaxWidthValue' conform to the 'Sendable' protocol
  5 |   public static let none = Self(.none)
  6 |   public static let extraSmall = Self(.extraSmall)
    :
 26 |   public static let screenLarge = Self(.screenLarge)
 27 |   public static let screenExtraLarge = Self(.screenExtraLarge)
 28 |   public static let screenExtraExtraLarge = Self(.screenExtraExtraLarge)
    |                     |- warning: static property 'screenExtraExtraLarge' is not concurrency-safe because non-'Sendable' type 'FrameMaxWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screenExtraExtraLarge' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:5:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:6:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    |                     |- warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screen' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:7:21: warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
    |                     |- warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'svh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:8:21: warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
    |                     |- warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'lvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:9:21: warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
  7 |   public static let svh = Self(.svh)
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
    |                     |- warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'dvh' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:10:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
  8 |   public static let lvh = Self(.lvh)
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let max = Self(.max)
 12 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:11:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
  9 |   public static let dvh = Self(.dvh)
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let fit = Self(.fit)
 13 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift:12:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameMinHeightValue' conform to the 'Sendable' protocol
  5 |   public static let full = Self(.full)
  6 |   public static let screen = Self(.screen)
    :
 10 |   public static let min = Self(.min)
 11 |   public static let max = Self(.max)
 12 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinHeightValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:5:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
   |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:6:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
   |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   public static let max = Self(.max)
 8 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:7:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
   |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   public static let fit = Self(.fit)
 9 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift:8:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | /// for both numerical values and Tailwind CSS semantic values.
 3 | @available(iOS 17.0, macOS 14.0, *)
 4 | public struct FrameMinWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
   |               `- note: consider making struct 'FrameMinWidthValue' conform to the 'Sendable' protocol
 5 |   public static let full = Self(.full)
 6 |   public static let min = Self(.min)
 7 |   public static let max = Self(.max)
 8 |   public static let fit = Self(.fit)
   |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameMinWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |
10 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'auto' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:7:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:8:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
    |                     |- warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'screen' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:9:21: warning: static property 'svw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
  7 |   public static let full = Self(.full)
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
    |                     |- warning: static property 'svw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'svw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:10:21: warning: static property 'lvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  8 |   public static let screen = Self(.screen)
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
    |                     |- warning: static property 'lvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'lvw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:11:21: warning: static property 'dvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  9 |   public static let svw = Self(.svw)
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
    |                     |- warning: static property 'dvw' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'dvw' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:12:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 10 |   public static let lvw = Self(.lvw)
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'min' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |   public static let max = Self(.max)
 14 |   public static let fit = Self(.fit)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:13:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 11 |   public static let dvw = Self(.dvw)
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
    |                     |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   public static let fit = Self(.fit)
 15 |
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift:14:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and Tailwind CSS semantic values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct FrameWidthValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameWidthValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 12 |   public static let min = Self(.min)
 13 |   public static let max = Self(.max)
 14 |   public static let fit = Self(.fit)
    |                     |- warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameWidthValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'fit' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |   public init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Spacing/View+margin.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'MarginValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and the "auto" value.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct MarginValue {
    |               `- note: consider making struct 'MarginValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" margin value.
  6 |   public static let auto = MarginValue(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'MarginValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'auto' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |
  8 |   fileprivate init(integerLiteral value: Int) {
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:104:23: warning: static property 'hover' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
102 |     }
103 |
104 |     public static let hover = State.Set(.hover)
    |                       |- warning: static property 'hover' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hover' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:105:23: warning: static property 'focus' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
103 |
104 |     public static let hover = State.Set(.hover)
105 |     public static let focus = State.Set(.focus)
    |                       |- warning: static property 'focus' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focus' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:106:23: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
104 |     public static let hover = State.Set(.hover)
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
    |                       |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:107:23: warning: static property 'focusWithin' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
105 |     public static let focus = State.Set(.focus)
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
    |                       |- warning: static property 'focusWithin' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focusWithin' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:108:23: warning: static property 'focusVisible' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
106 |     public static let active = State.Set(.active)
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
    |                       |- warning: static property 'focusVisible' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'focusVisible' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:109:23: warning: static property 'visited' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
107 |     public static let focusWithin = State.Set(.focusWithin)
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
    |                       |- warning: static property 'visited' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'visited' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:110:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
108 |     public static let focusVisible = State.Set(.focusVisible)
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
    |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'target' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:111:23: warning: static property 'first' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
109 |     public static let visited = State.Set(.visited)
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
    |                       |- warning: static property 'first' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'first' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:112:23: warning: static property 'last' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
110 |     public static let target = State.Set(.target)
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
    |                       |- warning: static property 'last' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'last' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:113:23: warning: static property 'only' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
111 |     public static let first = State.Set(.first)
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
    |                       |- warning: static property 'only' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'only' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:114:23: warning: static property 'odd' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
112 |     public static let last = State.Set(.last)
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
    |                       |- warning: static property 'odd' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'odd' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:115:23: warning: static property 'even' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
113 |     public static let only = State.Set(.only)
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
    |                       |- warning: static property 'even' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'even' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:116:23: warning: static property 'firstOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
114 |     public static let odd = State.Set(.odd)
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
    |                       |- warning: static property 'firstOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'firstOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:117:23: warning: static property 'lastOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
115 |     public static let even = State.Set(.even)
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
    |                       |- warning: static property 'lastOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'lastOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:118:23: warning: static property 'onlyOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
116 |     public static let firstOfType = State.Set(.firstOfType)
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
    |                       |- warning: static property 'onlyOfType' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOfType' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:119:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
117 |     public static let lastOfType = State.Set(.lastOfType)
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
    |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:120:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
118 |     public static let onlyOfType = State.Set(.onlyOfType)
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:121:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
119 |     public static let empty = State.Set(.empty)
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:122:23: warning: static property 'checked' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
120 |     public static let disabled = State.Set(.disabled)
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
    |                       |- warning: static property 'checked' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'checked' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:123:23: warning: static property 'indeterminate' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
121 |     public static let enabled = State.Set(.enabled)
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
    |                       |- warning: static property 'indeterminate' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'indeterminate' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:124:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
122 |     public static let checked = State.Set(.checked)
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:125:23: warning: static property 'required' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
123 |     public static let indeterminate = State.Set(.indeterminate)
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
    |                       |- warning: static property 'required' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'required' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:126:23: warning: static property 'valid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
124 |     public static let `default` = State.Set(.`default`)
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
    |                       |- warning: static property 'valid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'valid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:127:23: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
125 |     public static let required = State.Set(.required)
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
    |                       |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:128:23: warning: static property 'inRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
126 |     public static let valid = State.Set(.valid)
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
    |                       |- warning: static property 'inRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'inRange' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:129:23: warning: static property 'outOfRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
127 |     public static let invalid = State.Set(.invalid)
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
    |                       |- warning: static property 'outOfRange' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'outOfRange' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:130:23: warning: static property 'placeholderShown' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
128 |     public static let inRange = State.Set(.inRange)
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
    |                       |- warning: static property 'placeholderShown' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'placeholderShown' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:131:23: warning: static property 'autofill' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
129 |     public static let outOfRange = State.Set(.outOfRange)
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
    |                       |- warning: static property 'autofill' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'autofill' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |     public static let readonly = State.Set(.readonly)
133 |     public static let dark = State.Set(.dark)
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:132:23: warning: static property 'readonly' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
130 |     public static let placeholderShown = State.Set(.placeholderShown)
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
    |                       |- warning: static property 'readonly' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'readonly' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     public static let dark = State.Set(.dark)
134 |   }
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/State.swift:133:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |   /// ```
 80 |   @available(iOS 17.0, macOS 14.0, *)
 81 |   public struct Set: OptionSet {
    |                 `- note: consider making struct 'Set' conform to the 'Sendable' protocol
 82 |     /// The element type of the option set.
 83 |     ///
    :
131 |     public static let autofill = State.Set(.autofill)
132 |     public static let readonly = State.Set(.readonly)
133 |     public static let dark = State.Set(.dark)
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'State.Set' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dark' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |   }
135 | }
/host/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Transforms/View+offset.swift:6:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'OffsetValue' may have shared mutable state; this is an error in the Swift 6 language mode
  2 | /// for both numerical values and predefined values.
  3 | @available(iOS 17.0, macOS 14.0, *)
  4 | public struct OffsetValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'OffsetValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "full" placement value.
  6 |   public static let full = OffsetValue(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'OffsetValue' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |
  8 |   public init(integerLiteral value: Int) {
Build complete! (31.65s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-markdown",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-markdown.git"
    },
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.8.7",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "slipstream",
  "name" : "slipstream",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14"
    },
    {
      "name" : "ios",
      "version" : "17"
    }
  ],
  "products" : [
    {
      "name" : "Slipstream",
      "targets" : [
        "Slipstream"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TypeIntrospectionTests",
      "module_type" : "SwiftTarget",
      "name" : "TypeIntrospectionTests",
      "path" : "Tests/TypeIntrospectionTests",
      "sources" : [
        "TypeIntrospectionTests.swift"
      ],
      "target_dependencies" : [
        "TypeIntrospection"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TypeIntrospection",
      "module_type" : "SwiftTarget",
      "name" : "TypeIntrospection",
      "path" : "Sources/TypeIntrospection",
      "product_memberships" : [
        "Slipstream"
      ],
      "sources" : [
        "Properties.swift",
        "PropertyIntrospection/PropertyIntrospection-Access.swift",
        "PropertyIntrospection/PropertyIntrospection.swift",
        "TypeIntrospection.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SlipstreamTests",
      "module_type" : "SwiftTarget",
      "name" : "SlipstreamTests",
      "path" : "Tests/SlipstreamTests",
      "sources" : [
        "AttributeModifierTests.swift",
        "Attributes/ClassTests.swift",
        "Attributes/DataTests.swift",
        "Attributes/IDTests.swift",
        "Attributes/LanguageTests.swift",
        "EnvironmentTests.swift",
        "HelloWorldTests.swift",
        "Markdown/MarkdownTests.swift",
        "Rendering/InlineHTMLTests.swift",
        "Rendering/RenderSitemapTests.swift",
        "Rendering/SitemapTests.swift",
        "Sites/CatalogSiteTests.swift",
        "StateTests.swift",
        "TailwindCSS/Backgrounds/BackgroundTests.swift",
        "TailwindCSS/Borders/BorderTests.swift",
        "TailwindCSS/Borders/CornerRadiusTests.swift",
        "TailwindCSS/Borders/OutlineTests.swift",
        "TailwindCSS/Borders/RingTests.swift",
        "TailwindCSS/Effects/OpacityTests.swift",
        "TailwindCSS/Effects/ShadowTests.swift",
        "TailwindCSS/Filters/ColorInvertTests.swift",
        "TailwindCSS/FlexboxAndGrid/AlignItemsTests.swift",
        "TailwindCSS/FlexboxAndGrid/FlexDirectionTests.swift",
        "TailwindCSS/FlexboxAndGrid/FlexGapTests.swift",
        "TailwindCSS/FlexboxAndGrid/GridCellColumnsTests.swift",
        "TailwindCSS/FlexboxAndGrid/GridCellRowsTests.swift",
        "TailwindCSS/FlexboxAndGrid/JustifyContentTests.swift",
        "TailwindCSS/Layout/ContainerTests.swift",
        "TailwindCSS/Layout/DisplayTests.swift",
        "TailwindCSS/Layout/FloatTests.swift",
        "TailwindCSS/Layout/HStackTests.swift",
        "TailwindCSS/Layout/OverflowTests.swift",
        "TailwindCSS/Layout/PlacementTests.swift",
        "TailwindCSS/Layout/PositionTests.swift",
        "TailwindCSS/Layout/ResponsiveStackTests.swift",
        "TailwindCSS/Layout/VStackTests.swift",
        "TailwindCSS/Sizing/FrameTests.swift",
        "TailwindCSS/Spacing/MarginTests.swift",
        "TailwindCSS/Spacing/PaddingTests.swift",
        "TailwindCSS/Transforms/OffsetTests.swift",
        "TailwindCSS/TransitionsAndAnimations/AnimationTests.swift",
        "TailwindCSS/TransitionsAndAnimations/TransitionTests.swift",
        "TailwindCSS/Typography/FontDesignTests.swift",
        "TailwindCSS/Typography/FontLeadingTests.swift",
        "TailwindCSS/Typography/FontSizeTests.swift",
        "TailwindCSS/Typography/FontSmoothingTests.swift",
        "TailwindCSS/Typography/FontStyleTests.swift",
        "TailwindCSS/Typography/FontWeightTests.swift",
        "TailwindCSS/Typography/ListStyleTests.swift",
        "TailwindCSS/Typography/TextAlignmentTests.swift",
        "TailwindCSS/Typography/TextColorTests.swift",
        "TailwindCSS/Typography/TextDecorationTests.swift",
        "TextTests.swift",
        "ViewBuilderTests.swift",
        "W3C/BlockquoteTests.swift",
        "W3C/BodyTests.swift",
        "W3C/CanonicalTests.swift",
        "W3C/CanvasTests.swift",
        "W3C/CharsetTests.swift",
        "W3C/CodeTests.swift",
        "W3C/CommentTests.swift",
        "W3C/DivTests.swift",
        "W3C/DividerTests.swift",
        "W3C/DocumentMainTests.swift",
        "W3C/FooterTests.swift",
        "W3C/Forms/ButtonTests.swift",
        "W3C/Forms/FormTests.swift",
        "W3C/Forms/OptionTests.swift",
        "W3C/Forms/PickerTests.swift",
        "W3C/Forms/TextFieldTests.swift",
        "W3C/HTMLTests.swift",
        "W3C/HeadTests.swift",
        "W3C/HeadingTests.swift",
        "W3C/IFrameTests.swift",
        "W3C/IconTests.swift",
        "W3C/ImageTests.swift",
        "W3C/LinebreakTests.swift",
        "W3C/LinkTests.swift",
        "W3C/ListTests.swift",
        "W3C/MetaTests.swift",
        "W3C/NavigationTests.swift",
        "W3C/ParagraphTests.swift",
        "W3C/PictureTests.swift",
        "W3C/PreconnectTests.swift",
        "W3C/PreformattedTests.swift",
        "W3C/PreloadTests.swift",
        "W3C/RawHTMLTests.swift",
        "W3C/RedirectTests.swift",
        "W3C/ScriptTests.swift",
        "W3C/SectionTests.swift",
        "W3C/SmallTests.swift",
        "W3C/SourceTests.swift",
        "W3C/SpanTests.swift",
        "W3C/StrongTests.swift",
        "W3C/StylesheetTests.swift",
        "W3C/TabularData/TableBodyTests.swift",
        "W3C/TabularData/TableCellTests.swift",
        "W3C/TabularData/TableHeaderCellTests.swift",
        "W3C/TabularData/TableHeaderTests.swift",
        "W3C/TabularData/TableRowTests.swift",
        "W3C/TabularData/TableTests.swift",
        "W3C/TitleTests.swift",
        "W3C/ViewportTests.swift"
      ],
      "target_dependencies" : [
        "Slipstream"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Slipstream",
      "module_type" : "SwiftTarget",
      "name" : "Slipstream",
      "path" : "Sources/Slipstream",
      "product_dependencies" : [
        "Markdown",
        "SwiftSoup"
      ],
      "product_memberships" : [
        "Slipstream"
      ],
      "sources" : [
        "Fundamentals/AnyView.swift",
        "Fundamentals/AttributeModifier.swift",
        "Fundamentals/ClassModifier.swift",
        "Fundamentals/DOMString.swift",
        "Fundamentals/DataAndStorage/Environment.swift",
        "Fundamentals/DataAndStorage/EnvironmentKey.swift",
        "Fundamentals/DataAndStorage/EnvironmentValues.swift",
        "Fundamentals/EmptyView.swift",
        "Fundamentals/View+environment.swift",
        "Fundamentals/View+modifier.swift",
        "Fundamentals/View.swift",
        "Fundamentals/ViewBuilder/ArrayView.swift",
        "Fundamentals/ViewBuilder/ConditionalView.swift",
        "Fundamentals/ViewBuilder/TupleView.swift",
        "Fundamentals/ViewBuilder/ViewBuilder.swift",
        "Fundamentals/ViewModifier.swift",
        "Markdown/MarkdownText.swift",
        "Rendering/Render.swift",
        "Rendering/RenderSitemap.swift",
        "Rendering/Sitemap.swift",
        "TailwindCSS/Animation.swift",
        "TailwindCSS/Axis.swift",
        "TailwindCSS/Backgrounds/View+background.swift",
        "TailwindCSS/Borders/View+border.swift",
        "TailwindCSS/Borders/View+cornerRadius.swift",
        "TailwindCSS/Borders/View+outline.swift",
        "TailwindCSS/Borders/View+ring.swift",
        "TailwindCSS/Breakpoint.swift",
        "TailwindCSS/Color.swift",
        "TailwindCSS/ColorPalette.swift",
        "TailwindCSS/Condition.swift",
        "TailwindCSS/Edge.swift",
        "TailwindCSS/Effects/View+opacity.swift",
        "TailwindCSS/Effects/View+shadow.swift",
        "TailwindCSS/Filters/View+colorInvert.swift",
        "TailwindCSS/FlexboxAndGrid/View+alignItems.swift",
        "TailwindCSS/FlexboxAndGrid/View+flexDirection.swift",
        "TailwindCSS/FlexboxAndGrid/View+flexGap.swift",
        "TailwindCSS/FlexboxAndGrid/View+gridCellColumns.swift",
        "TailwindCSS/FlexboxAndGrid/View+gridCellRows.swift",
        "TailwindCSS/FlexboxAndGrid/View+justifyContent.swift",
        "TailwindCSS/GridSpan.swift",
        "TailwindCSS/Layout/Container.swift",
        "TailwindCSS/Layout/HStack.swift",
        "TailwindCSS/Layout/ResponsiveStack.swift",
        "TailwindCSS/Layout/VStack.swift",
        "TailwindCSS/Layout/View+display.swift",
        "TailwindCSS/Layout/View+float.swift",
        "TailwindCSS/Layout/View+overflow.swift",
        "TailwindCSS/Layout/View+placement.swift",
        "TailwindCSS/Layout/View+position.swift",
        "TailwindCSS/Material.swift",
        "TailwindCSS/Size.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameMaxHeightValue.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameMaxWidthValue.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameMinHeightValue.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameMinWidthValue.swift",
        "TailwindCSS/Sizing/FrameTypes/FrameWidthValue.swift",
        "TailwindCSS/Sizing/View+frame.swift",
        "TailwindCSS/Spacing/View+margin.swift",
        "TailwindCSS/Spacing/View+padding.swift",
        "TailwindCSS/State.swift",
        "TailwindCSS/TailwindClassModifier.swift",
        "TailwindCSS/Transforms/View+offset.swift",
        "TailwindCSS/Transition.swift",
        "TailwindCSS/TransitionsAndAnimations/View+animation.swift",
        "TailwindCSS/TransitionsAndAnimations/View+transition.swift",
        "TailwindCSS/Typography/View+fontDesign.swift",
        "TailwindCSS/Typography/View+fontLeading.swift",
        "TailwindCSS/Typography/View+fontSize.swift",
        "TailwindCSS/Typography/View+fontSmoothing.swift",
        "TailwindCSS/Typography/View+fontStyle.swift",
        "TailwindCSS/Typography/View+fontWeight.swift",
        "TailwindCSS/Typography/View+listStyle.swift",
        "TailwindCSS/Typography/View+textAlignment.swift",
        "TailwindCSS/Typography/View+textColor.swift",
        "TailwindCSS/Typography/View+textDecoration.swift",
        "W3C/Attributes/CrossOrigin.swift",
        "W3C/Attributes/View+accessibilityLabel.swift",
        "W3C/Attributes/View+class.swift",
        "W3C/Attributes/View+data.swift",
        "W3C/Attributes/View+id.swift",
        "W3C/Attributes/View+language.swift",
        "W3C/Elements/Comment.swift",
        "W3C/Elements/DocumentMetadata/Canonical.swift",
        "W3C/Elements/DocumentMetadata/Charset.swift",
        "W3C/Elements/DocumentMetadata/Head.swift",
        "W3C/Elements/DocumentMetadata/Icon.swift",
        "W3C/Elements/DocumentMetadata/Meta.swift",
        "W3C/Elements/DocumentMetadata/Preconnect.swift",
        "W3C/Elements/DocumentMetadata/Preload.swift",
        "W3C/Elements/DocumentMetadata/Redirect.swift",
        "W3C/Elements/DocumentMetadata/Stylesheet.swift",
        "W3C/Elements/DocumentMetadata/Title.swift",
        "W3C/Elements/DocumentMetadata/Viewport.swift",
        "W3C/Elements/EmbeddedContent/IFrame.swift",
        "W3C/Elements/EmbeddedContent/Image.swift",
        "W3C/Elements/EmbeddedContent/Picture.swift",
        "W3C/Elements/EmbeddedContent/RawHTML.swift",
        "W3C/Elements/EmbeddedContent/Source.swift",
        "W3C/Elements/Forms/Button.swift",
        "W3C/Elements/Forms/Form.swift",
        "W3C/Elements/Forms/Option.swift",
        "W3C/Elements/Forms/Picker.swift",
        "W3C/Elements/Forms/TextField.swift",
        "W3C/Elements/GroupingContent/Blockquote.swift",
        "W3C/Elements/GroupingContent/Div.swift",
        "W3C/Elements/GroupingContent/Divider.swift",
        "W3C/Elements/GroupingContent/DocumentMain.swift",
        "W3C/Elements/GroupingContent/List.swift",
        "W3C/Elements/GroupingContent/Listitem.swift",
        "W3C/Elements/GroupingContent/Paragraph.swift",
        "W3C/Elements/GroupingContent/Preformatted.swift",
        "W3C/Elements/GroupingContent/Text.swift",
        "W3C/Elements/RootElement/HTML.swift",
        "W3C/Elements/Scripting/Canvas.swift",
        "W3C/Elements/Scripting/Script.swift",
        "W3C/Elements/Sections/Body.swift",
        "W3C/Elements/Sections/Footer.swift",
        "W3C/Elements/Sections/H1.swift",
        "W3C/Elements/Sections/H2.swift",
        "W3C/Elements/Sections/H3.swift",
        "W3C/Elements/Sections/H4.swift",
        "W3C/Elements/Sections/H5.swift",
        "W3C/Elements/Sections/H6.swift",
        "W3C/Elements/Sections/Heading.swift",
        "W3C/Elements/Sections/Navigation.swift",
        "W3C/Elements/Sections/Section.swift",
        "W3C/Elements/TabularData/Table.swift",
        "W3C/Elements/TabularData/TableBody.swift",
        "W3C/Elements/TabularData/TableCell.swift",
        "W3C/Elements/TabularData/TableHeader.swift",
        "W3C/Elements/TabularData/TableHeaderCell.swift",
        "W3C/Elements/TabularData/TableRow.swift",
        "W3C/Elements/TextLevelSemantics/Code.swift",
        "W3C/Elements/TextLevelSemantics/LineBreak.swift",
        "W3C/Elements/TextLevelSemantics/Link.swift",
        "W3C/Elements/TextLevelSemantics/Small.swift",
        "W3C/Elements/TextLevelSemantics/Span.swift",
        "W3C/Elements/TextLevelSemantics/Strong.swift",
        "W3C/Elements/W3CElement.swift"
      ],
      "target_dependencies" : [
        "TypeIntrospection"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.