This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftTabler with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 7

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[33/78] Compiling Tabler TablerStackConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[34/78] Compiling Tabler TablerStackM.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[35/78] Compiling Tabler TablerStackMB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[36/78] Compiling Tabler TablerStackMC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[37/78] Compiling Tabler TablerConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[38/78] Compiling Tabler TablerContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[39/78] Compiling Tabler TablerSort.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[40/78] Compiling Tabler ListRowMod.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[41/78] Compiling Tabler TablerList.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[42/78] Compiling Tabler TablerList1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[43/78] Compiling Tabler TablerList1B.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[44/78] Compiling Tabler TablerList1C.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[45/78] Compiling Tabler TablerListB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[46/78] Compiling Tabler TablerListC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[47/78] Compiling Tabler TablerStackM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[48/78] Compiling Tabler TablerStackMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[49/78] Compiling Tabler TablerStackMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[50/78] Compiling Tabler BaseGrid.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[51/78] Compiling Tabler GridItemMod.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[52/78] Compiling Tabler GridItemMod1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[53/78] Compiling Tabler GridItemModM.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[54/78] Compiling Tabler TablerGrid.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[55/78] Compiling Tabler TablerGridMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[56/78] Compiling Tabler TablerList+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[57/78] Compiling Tabler TablerList1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[58/78] Compiling Tabler TablerList1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[59/78] Compiling Tabler TablerList1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[60/78] Compiling Tabler TablerListB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[61/78] Compiling Tabler TablerListC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[62/78] Compiling Tabler TablerListM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[63/78] Compiling Tabler TablerListMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[64/78] Compiling Tabler TablerListMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[65/78] Compiling Tabler TablerStack+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[66/78] Compiling Tabler TablerStack1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[67/78] Compiling Tabler TablerStack1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[68/78] Compiling Tabler TablerStack1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[69/78] Compiling Tabler TablerStackB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[70/78] Compiling Tabler TablerStackC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[71/78] Compiling Tabler TablerGrid+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[72/78] Compiling Tabler TablerGrid1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[73/78] Compiling Tabler TablerGrid1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[74/78] Compiling Tabler TablerGrid1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[75/78] Compiling Tabler TablerGridB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[76/78] Compiling Tabler TablerGridC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[77/78] Compiling Tabler TablerGridM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
[78/78] Compiling Tabler TablerGridMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
SwiftUI.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen public struct AnyView : View {
  |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
3 |     public init<V>(_ view: V) where V : View
4 |     public init<V>(erasing view: V) where V : View
Build complete! (46.40s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftTabler",
  "name" : "SwiftTabler",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Tabler",
      "targets" : [
        "Tabler"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Tabler",
      "module_type" : "SwiftTarget",
      "name" : "Tabler",
      "path" : "Sources",
      "product_memberships" : [
        "Tabler"
      ],
      "sources" : [
        "Generated/TablerGrid+AutoInit.generated.swift",
        "Generated/TablerGrid1+AutoInit.generated.swift",
        "Generated/TablerGrid1B+AutoInit.generated.swift",
        "Generated/TablerGrid1C+AutoInit.generated.swift",
        "Generated/TablerGridB+AutoInit.generated.swift",
        "Generated/TablerGridC+AutoInit.generated.swift",
        "Generated/TablerGridM+AutoInit.generated.swift",
        "Generated/TablerGridMB+AutoInit.generated.swift",
        "Generated/TablerGridMC+AutoInit.generated.swift",
        "Generated/TablerList+AutoInit.generated.swift",
        "Generated/TablerList1+AutoInit.generated.swift",
        "Generated/TablerList1B+AutoInit.generated.swift",
        "Generated/TablerList1C+AutoInit.generated.swift",
        "Generated/TablerListB+AutoInit.generated.swift",
        "Generated/TablerListC+AutoInit.generated.swift",
        "Generated/TablerListM+AutoInit.generated.swift",
        "Generated/TablerListMB+AutoInit.generated.swift",
        "Generated/TablerListMC+AutoInit.generated.swift",
        "Generated/TablerStack+AutoInit.generated.swift",
        "Generated/TablerStack1+AutoInit.generated.swift",
        "Generated/TablerStack1B+AutoInit.generated.swift",
        "Generated/TablerStack1C+AutoInit.generated.swift",
        "Generated/TablerStackB+AutoInit.generated.swift",
        "Generated/TablerStackC+AutoInit.generated.swift",
        "Generated/TablerStackM+AutoInit.generated.swift",
        "Generated/TablerStackMB+AutoInit.generated.swift",
        "Generated/TablerStackMC+AutoInit.generated.swift",
        "Grid/Internal/BaseGrid.swift",
        "Grid/Internal/GridItemMod.swift",
        "Grid/Internal/GridItemMod1.swift",
        "Grid/Internal/GridItemModM.swift",
        "Grid/TablerGrid.swift",
        "Grid/TablerGrid1.swift",
        "Grid/TablerGrid1B.swift",
        "Grid/TablerGrid1C.swift",
        "Grid/TablerGridB.swift",
        "Grid/TablerGridC.swift",
        "Grid/TablerGridConfig.swift",
        "Grid/TablerGridM.swift",
        "Grid/TablerGridMB.swift",
        "Grid/TablerGridMC.swift",
        "Internal/BaseTable.swift",
        "Internal/ObservableHolder.swift",
        "Internal/TablerSpacedConfig.swift",
        "List/Internal/BaseList.swift",
        "List/Internal/BaseList1.swift",
        "List/Internal/BaseListM.swift",
        "List/Internal/ListRowMod.swift",
        "List/TablerList.swift",
        "List/TablerList1.swift",
        "List/TablerList1B.swift",
        "List/TablerList1C.swift",
        "List/TablerListB.swift",
        "List/TablerListC.swift",
        "List/TablerListConfig.swift",
        "List/TablerListM.swift",
        "List/TablerListMB.swift",
        "List/TablerListMC.swift",
        "Stack/Internal/BaseStack.swift",
        "Stack/Internal/StackRowMod.swift",
        "Stack/Internal/StackRowMod1.swift",
        "Stack/Internal/StackRowModM.swift",
        "Stack/TablerStack.swift",
        "Stack/TablerStack1.swift",
        "Stack/TablerStack1B.swift",
        "Stack/TablerStack1C.swift",
        "Stack/TablerStackB.swift",
        "Stack/TablerStackC.swift",
        "Stack/TablerStackConfig.swift",
        "Stack/TablerStackM.swift",
        "Stack/TablerStackMB.swift",
        "Stack/TablerStackMC.swift",
        "TablerConfig.swift",
        "TablerContext.swift",
        "TablerSort.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.