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 main (b55030), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 10:25:55 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

   |                              `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:25:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:26:32: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
   |                                `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
28 |
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:27:31: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
   :
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
   |                               `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |
29 |     public let canMove: CanMove<Element>
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 BaseStack.swift
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:24:30: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
   |                              `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:25:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:26:32: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
   |                                `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
28 |
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:27:31: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
   :
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
   |                               `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |
29 |     public let canMove: CanMove<Element>
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 StackRowMod.swift
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:24:30: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
   |                              `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:25:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:26:32: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
   |                                `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
28 |
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:27:31: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
   :
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
   |                               `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |
29 |     public let canMove: CanMove<Element>
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 StackRowMod1.swift
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:24:30: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
   |                              `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:25:29: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
   |                             `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:26:32: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
24 |     public typealias CanMove<Element> = (Element) -> Bool
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
   |                                `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
28 |
/Users/admin/builder/spi-builder-workspace/Sources/List/TablerListConfig.swift:27:31: warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
19 | import SwiftUI
20 |
21 | public class TablerListConfig<Element>: TablerConfig<Element>
   |                               `- note: 'Element' previously declared here
22 |     where Element: Identifiable
23 | {
   :
25 |     public typealias OnMove<Element> = (IndexSet, Int) -> Void
26 |     public typealias CanDelete<Element> = (Element) -> Bool
27 |     public typealias OnDelete<Element> = (IndexSet) -> Void
   |                               `- warning: generic parameter 'Element' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
28 |
29 |     public let canMove: CanMove<Element>
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 ListRowMod.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerList.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerList1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerList1B.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerList1C.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerListB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerListC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerListMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerListMC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStack+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStack1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStack1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStack1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStackB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerStackC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1B.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1C.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridC.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridM.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridMB.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1B+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGrid1C+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridC+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridM+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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 TablerGridMB+AutoInit.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/TablerConfig.swift:24:23: warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
22 |     public static let tablePadding: EdgeInsets = .init()
23 |
24 |     public static let sortIndicatorForward = AnyView(
   |                       |- warning: static property 'sortIndicatorForward' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorForward' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         Image(systemName: "chevron.up")
26 |             .foregroundColor(.secondary)
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:28:23: warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
26 |             .foregroundColor(.secondary)
27 |     )
28 |     public static let sortIndicatorReverse = AnyView(
   |                       |- warning: static property 'sortIndicatorReverse' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorReverse' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |         Image(systemName: "chevron.down")
30 |             .foregroundColor(.secondary)
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:32:23: warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
30 |             .foregroundColor(.secondary)
31 |     )
32 |     public static let sortIndicatorNeutral = AnyView(
   |                       |- warning: static property 'sortIndicatorNeutral' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sortIndicatorNeutral' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |         // The same width as the other two, to avoid title changing position as indicator changes.
34 |         Image(systemName: "chevron.up")
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! (36.69s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftTabler",
  "name" : "SwiftTabler",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Tabler",
      "targets" : [
        "Tabler"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Tabler",
      "module_type" : "SwiftTarget",
      "name" : "Tabler",
      "path" : "Sources",
      "product_memberships" : [
        "Tabler"
      ],
      "sources" : [
        "Generated/TablerGrid+AutoInit.generated.swift",
        "Generated/TablerGrid1+AutoInit.generated.swift",
        "Generated/TablerGrid1B+AutoInit.generated.swift",
        "Generated/TablerGrid1C+AutoInit.generated.swift",
        "Generated/TablerGridB+AutoInit.generated.swift",
        "Generated/TablerGridC+AutoInit.generated.swift",
        "Generated/TablerGridM+AutoInit.generated.swift",
        "Generated/TablerGridMB+AutoInit.generated.swift",
        "Generated/TablerGridMC+AutoInit.generated.swift",
        "Generated/TablerList+AutoInit.generated.swift",
        "Generated/TablerList1+AutoInit.generated.swift",
        "Generated/TablerList1B+AutoInit.generated.swift",
        "Generated/TablerList1C+AutoInit.generated.swift",
        "Generated/TablerListB+AutoInit.generated.swift",
        "Generated/TablerListC+AutoInit.generated.swift",
        "Generated/TablerListM+AutoInit.generated.swift",
        "Generated/TablerListMB+AutoInit.generated.swift",
        "Generated/TablerListMC+AutoInit.generated.swift",
        "Generated/TablerStack+AutoInit.generated.swift",
        "Generated/TablerStack1+AutoInit.generated.swift",
        "Generated/TablerStack1B+AutoInit.generated.swift",
        "Generated/TablerStack1C+AutoInit.generated.swift",
        "Generated/TablerStackB+AutoInit.generated.swift",
        "Generated/TablerStackC+AutoInit.generated.swift",
        "Generated/TablerStackM+AutoInit.generated.swift",
        "Generated/TablerStackMB+AutoInit.generated.swift",
        "Generated/TablerStackMC+AutoInit.generated.swift",
        "Grid/Internal/BaseGrid.swift",
        "Grid/Internal/GridItemMod.swift",
        "Grid/Internal/GridItemMod1.swift",
        "Grid/Internal/GridItemModM.swift",
        "Grid/TablerGrid.swift",
        "Grid/TablerGrid1.swift",
        "Grid/TablerGrid1B.swift",
        "Grid/TablerGrid1C.swift",
        "Grid/TablerGridB.swift",
        "Grid/TablerGridC.swift",
        "Grid/TablerGridConfig.swift",
        "Grid/TablerGridM.swift",
        "Grid/TablerGridMB.swift",
        "Grid/TablerGridMC.swift",
        "Internal/BaseTable.swift",
        "Internal/ObservableHolder.swift",
        "Internal/TablerSpacedConfig.swift",
        "List/Internal/BaseList.swift",
        "List/Internal/BaseList1.swift",
        "List/Internal/BaseListM.swift",
        "List/Internal/ListRowMod.swift",
        "List/TablerList.swift",
        "List/TablerList1.swift",
        "List/TablerList1B.swift",
        "List/TablerList1C.swift",
        "List/TablerListB.swift",
        "List/TablerListC.swift",
        "List/TablerListConfig.swift",
        "List/TablerListM.swift",
        "List/TablerListMB.swift",
        "List/TablerListMC.swift",
        "Stack/Internal/BaseStack.swift",
        "Stack/Internal/StackRowMod.swift",
        "Stack/Internal/StackRowMod1.swift",
        "Stack/Internal/StackRowModM.swift",
        "Stack/TablerStack.swift",
        "Stack/TablerStack1.swift",
        "Stack/TablerStack1B.swift",
        "Stack/TablerStack1C.swift",
        "Stack/TablerStackB.swift",
        "Stack/TablerStackC.swift",
        "Stack/TablerStackConfig.swift",
        "Stack/TablerStackM.swift",
        "Stack/TablerStackMB.swift",
        "Stack/TablerStackMC.swift",
        "TablerConfig.swift",
        "TablerContext.swift",
        "TablerSort.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.