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 macOS (SPM) on 2 Jun 2025 19:58:37 UTC.

Swift 6 data race errors: 121

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

  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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
[319/320] Compiling Slipstream FrameMinHeightValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Layout/View+placement.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 PlacementValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'PlacementValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" placement value.
  6 |   public static let auto = PlacementValue(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 |   /// A static instance representing the "full" placement value.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Layout/View+placement.swift:9:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 PlacementValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'PlacementValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" placement value.
  6 |   public static let auto = PlacementValue(.auto)
  7 |
  8 |   /// A static instance representing the "full" placement value.
  9 |   public static let full = PlacementValue(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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
 10 |
 11 |   public init(integerLiteral value: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:7:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:8:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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 |
 10 |   /// Sets a view's height to the smallest possible height of the viewport.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:11:21: warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  9 |
 10 |   /// Sets a view's height to the smallest possible height of the viewport.
 11 |   public static let svh = Self(.svh)
    |                     |- warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 12 |
 13 |   /// Sets a view's height to the largest possible height of the viewport.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:14:21: warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 12 |
 13 |   /// Sets a view's height to the largest possible height of the viewport.
 14 |   public static let lvh = Self(.lvh)
    |                     |- warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 15 |
 16 |   /// Sets a view's height to span the entire height of the viewport and
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:18:21: warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 16 |   /// Sets a view's height to span the entire height of the viewport and
 17 |   /// changes as the browser UI expands or contracts.
 18 |   public static let dvh = Self(.dvh)
    |                     |- warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 19 |
 20 |   public static let min = Self(.min)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:20:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 18 |   public static let dvh = Self(.dvh)
 19 |
 20 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:21:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 19 |
 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 'FrameHeightValue' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:22:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 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 'FrameHeightValue' 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 |
 24 |   public init(integerLiteral value: Int) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
[320/320] Compiling Slipstream FrameMinWidthValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Layout/View+placement.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 PlacementValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'PlacementValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" placement value.
  6 |   public static let auto = PlacementValue(.auto)
    |                     |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 |   /// A static instance representing the "full" placement value.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Layout/View+placement.swift:9:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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 PlacementValue: ExpressibleByFloatLiteral, ExpressibleByIntegerLiteral {
    |               `- note: consider making struct 'PlacementValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" placement value.
  6 |   public static let auto = PlacementValue(.auto)
  7 |
  8 |   /// A static instance representing the "full" placement value.
  9 |   public static let full = PlacementValue(.full)
    |                     |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'PlacementValue' 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
 10 |
 11 |   public init(integerLiteral value: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:6:21: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:7:21: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:8:21: warning: static property 'screen' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' 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 'FrameHeightValue' 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 |
 10 |   /// Sets a view's height to the smallest possible height of the viewport.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:11:21: warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
  9 |
 10 |   /// Sets a view's height to the smallest possible height of the viewport.
 11 |   public static let svh = Self(.svh)
    |                     |- warning: static property 'svh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 12 |
 13 |   /// Sets a view's height to the largest possible height of the viewport.
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:14:21: warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 12 |
 13 |   /// Sets a view's height to the largest possible height of the viewport.
 14 |   public static let lvh = Self(.lvh)
    |                     |- warning: static property 'lvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 15 |
 16 |   /// Sets a view's height to span the entire height of the viewport and
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:18:21: warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 16 |   /// Sets a view's height to span the entire height of the viewport and
 17 |   /// changes as the browser UI expands or contracts.
 18 |   public static let dvh = Self(.dvh)
    |                     |- warning: static property 'dvh' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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
 19 |
 20 |   public static let min = Self(.min)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:20:21: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 18 |   public static let dvh = Self(.dvh)
 19 |
 20 |   public static let min = Self(.min)
    |                     |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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)
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:21:21: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 19 |
 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 'FrameHeightValue' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/Slipstream/TailwindCSS/Sizing/FrameTypes/FrameHeightValue.swift:22:21: warning: static property 'fit' is not concurrency-safe because non-'Sendable' type 'FrameHeightValue' 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 FrameHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
    |               `- note: consider making struct 'FrameHeightValue' conform to the 'Sendable' protocol
  5 |   /// A static instance representing the "auto" frame value.
  6 |   public static let auto = Self(.auto)
    :
 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 'FrameHeightValue' 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 |
 24 |   public init(integerLiteral value: Int) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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) {
Build complete! (18.81s)
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" : "/Users/admin/builder/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"
}
Done.