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, reference 0.9.7 (863e1b), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 10:26:18 UTC.

Swift 6 data race errors: 7

Build Command

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

Build Log

156 |
157 |     private func xlat<Element>(_ direction: TablerSort<Element>.Direction) -> SortOrder {
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     @objc deinit
3 | }
[33/78] Compiling Tabler ListRowMod.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1B.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1C.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 StackRowModM.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1B.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1C.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStackB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStackC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGrid+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGrid1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGrid1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGrid1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGridB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGridC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGridM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGridMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerGridMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerList1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerListMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStack1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStackB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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 TablerStackC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:25: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
23 |     public static let tablePadding: EdgeInsets = .init()
24 |
25 |     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
26 |         Image(systemName: "chevron.up")
27 |             .foregroundColor(.secondary)
SwiftUICore.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:29: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
27 |             .foregroundColor(.secondary)
28 |     )
29 |     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
30 |         Image(systemName: "chevron.down")
31 |             .foregroundColor(.secondary)
SwiftUICore.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:33: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
31 |             .foregroundColor(.secondary)
32 |     )
33 |     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
34 |         // The same width as the other two, to avoid title changing position as indicator changes.
35 |         Image(systemName: "chevron.up")
SwiftUICore.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! (29.68s)
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.3"
}
Done.