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 UIKitPlus, reference master (6932b7), with Swift 6.0 for macOS (SPM) on 1 Dec 2024 22:49:52 UTC.

Swift 6 data race errors: 360

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

350 |     func _setAllowMixedState(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setAllowMixedState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setAllowMixedState' to make this instance method not isolated to the actor
351 |         allowsMixedState = v
352 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/MixedStateAllowable.swift:21:10: note: mark the protocol requirement '_setAllowMixedState' 'async' to allow actor-isolated conformances
19 |     var _allowMixedStateState: State<Bool> { get }
20 |
21 |     func _setAllowMixedState(_ v: Bool)
   |          `- note: mark the protocol requirement '_setAllowMixedState' 'async' to allow actor-isolated conformances
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:35:14: warning: main actor-isolated property '_ignoreMultiClickState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 33 |     lazy var _buttonTypeState: State<NSButton.ButtonType> = .init(wrappedValue: .momentaryPushIn)
 34 |     lazy var _allowMixedStateState: State<Bool> = .init(wrappedValue: allowsMixedState)
 35 |     lazy var _ignoreMultiClickState: State<Bool> = .init(wrappedValue: ignoresMultiClick)
    |              `- warning: main actor-isolated property '_ignoreMultiClickState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 36 |     lazy var _continuousState: State<Bool> = .init(wrappedValue: isContinuous)
 37 |     lazy var _refuseFirstResponderState: State<Bool> = .init(wrappedValue: refusesFirstResponder)
    :
353 | }
354 |
355 | extension UButton: _MultiClickIgnorable {
    |                    `- note: add '@preconcurrency' to the '_MultiClickIgnorable' conformance to defer isolation checking to run time
356 |     func _setIgnoreMultiClick(_ v: Bool) {
357 |         ignoresMultiClick = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/MultiClickIgnorable.swift:19:9: note: '_ignoreMultiClickState' declared here
17 |
18 | protocol _MultiClickIgnorable: MultiClickIgnorable {
19 |     var _ignoreMultiClickState: State<Bool> { get }
   |         `- note: '_ignoreMultiClickState' declared here
20 |
21 |     func _setIgnoreMultiClick(_ v: Bool)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:356:10: warning: main actor-isolated instance method '_setIgnoreMultiClick' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
354 |
355 | extension UButton: _MultiClickIgnorable {
356 |     func _setIgnoreMultiClick(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setIgnoreMultiClick' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setIgnoreMultiClick' to make this instance method not isolated to the actor
357 |         ignoresMultiClick = v
358 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/MultiClickIgnorable.swift:21:10: note: mark the protocol requirement '_setIgnoreMultiClick' 'async' to allow actor-isolated conformances
19 |     var _ignoreMultiClickState: State<Bool> { get }
20 |
21 |     func _setIgnoreMultiClick(_ v: Bool)
   |          `- note: mark the protocol requirement '_setIgnoreMultiClick' 'async' to allow actor-isolated conformances
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:36:14: warning: main actor-isolated property '_continuousState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 34 |     lazy var _allowMixedStateState: State<Bool> = .init(wrappedValue: allowsMixedState)
 35 |     lazy var _ignoreMultiClickState: State<Bool> = .init(wrappedValue: ignoresMultiClick)
 36 |     lazy var _continuousState: State<Bool> = .init(wrappedValue: isContinuous)
    |              `- warning: main actor-isolated property '_continuousState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 37 |     lazy var _refuseFirstResponderState: State<Bool> = .init(wrappedValue: refusesFirstResponder)
 38 |     lazy var _borderedState: State<Bool> = .init(wrappedValue: isBordered)
    :
359 | }
360 |
361 | extension UButton: _Continuousable {
    |                    `- note: add '@preconcurrency' to the '_Continuousable' conformance to defer isolation checking to run time
362 |     func _setContinuous(_ v: Bool) {
363 |         isContinuous = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Continuousable.swift:19:9: note: '_continuousState' declared here
17 |
18 | protocol _Continuousable: Continuousable {
19 |     var _continuousState: State<Bool> { get }
   |         `- note: '_continuousState' declared here
20 |
21 |     func _setContinuous(_ v: Bool)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:362:10: warning: main actor-isolated instance method '_setContinuous' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
360 |
361 | extension UButton: _Continuousable {
362 |     func _setContinuous(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setContinuous' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setContinuous' to make this instance method not isolated to the actor
363 |         isContinuous = v
364 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Continuousable.swift:21:10: note: mark the protocol requirement '_setContinuous' 'async' to allow actor-isolated conformances
19 |     var _continuousState: State<Bool> { get }
20 |
21 |     func _setContinuous(_ v: Bool)
   |          `- note: mark the protocol requirement '_setContinuous' 'async' to allow actor-isolated conformances
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:37:14: warning: main actor-isolated property '_refuseFirstResponderState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 35 |     lazy var _ignoreMultiClickState: State<Bool> = .init(wrappedValue: ignoresMultiClick)
 36 |     lazy var _continuousState: State<Bool> = .init(wrappedValue: isContinuous)
 37 |     lazy var _refuseFirstResponderState: State<Bool> = .init(wrappedValue: refusesFirstResponder)
    |              `- warning: main actor-isolated property '_refuseFirstResponderState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 38 |     lazy var _borderedState: State<Bool> = .init(wrappedValue: isBordered)
 39 |
    :
365 | }
366 |
367 | extension UButton: _FirstResponderRefusable {
    |                    `- note: add '@preconcurrency' to the '_FirstResponderRefusable' conformance to defer isolation checking to run time
368 |     func _setRefuseFirstResponder(_ v: Bool) {
369 |         refusesFirstResponder = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/FirstResponderRefusable.swift:19:9: note: '_refuseFirstResponderState' declared here
17 |
18 | protocol _FirstResponderRefusable: FirstResponderRefusable {
19 |     var _refuseFirstResponderState: State<Bool> { get }
   |         `- note: '_refuseFirstResponderState' declared here
20 |
21 |     func _setRefuseFirstResponder(_ v: Bool)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:368:10: warning: main actor-isolated instance method '_setRefuseFirstResponder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
366 |
367 | extension UButton: _FirstResponderRefusable {
368 |     func _setRefuseFirstResponder(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setRefuseFirstResponder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setRefuseFirstResponder' to make this instance method not isolated to the actor
369 |         refusesFirstResponder = v
370 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/FirstResponderRefusable.swift:21:10: note: mark the protocol requirement '_setRefuseFirstResponder' 'async' to allow actor-isolated conformances
19 |     var _refuseFirstResponderState: State<Bool> { get }
20 |
21 |     func _setRefuseFirstResponder(_ v: Bool)
   |          `- note: mark the protocol requirement '_setRefuseFirstResponder' 'async' to allow actor-isolated conformances
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:38:14: warning: main actor-isolated property '_borderedState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 36 |     lazy var _continuousState: State<Bool> = .init(wrappedValue: isContinuous)
 37 |     lazy var _refuseFirstResponderState: State<Bool> = .init(wrappedValue: refusesFirstResponder)
 38 |     lazy var _borderedState: State<Bool> = .init(wrappedValue: isBordered)
    |              `- warning: main actor-isolated property '_borderedState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 39 |
 40 |     // MARK: Initialization
    :
371 | }
372 |
373 | extension UButton: _Borderedable {
    |                    `- note: add '@preconcurrency' to the '_Borderedable' conformance to defer isolation checking to run time
374 |     func _setBordered(_ v: Bool) {
375 |         isBordered = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Borderedable.swift:19:9: note: '_borderedState' declared here
17 |
18 | protocol _Borderedable: Borderedable {
19 |     var _borderedState: State<Bool> { get }
   |         `- note: '_borderedState' declared here
20 |
21 |     func _setBordered(_ v: Bool)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:374:10: warning: main actor-isolated instance method '_setBordered' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
372 |
373 | extension UButton: _Borderedable {
374 |     func _setBordered(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setBordered' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setBordered' to make this instance method not isolated to the actor
375 |         isBordered = v
376 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Borderedable.swift:21:10: note: mark the protocol requirement '_setBordered' 'async' to allow actor-isolated conformances
19 |     var _borderedState: State<Bool> { get }
20 |
21 |     func _setBordered(_ v: Bool)
   |          `- note: mark the protocol requirement '_setBordered' 'async' to allow actor-isolated conformances
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:380:10: warning: main actor-isolated instance method '_setSound' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
377 | }
378 |
379 | extension UButton: _Soundable {
    |                    `- note: add '@preconcurrency' to the '_Soundable' conformance to defer isolation checking to run time
380 |     func _setSound(_ v: NSSound?) {
    |          |- warning: main actor-isolated instance method '_setSound' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setSound' to make this instance method not isolated to the actor
381 |         sound = v
382 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Soundable.swift:13:10: note: mark the protocol requirement '_setSound' 'async' to allow actor-isolated conformances
11 |
12 | protocol _Soundable: Soundable {
13 |     func _setSound(_ v: NSSound?)
   |          `- note: mark the protocol requirement '_setSound' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:386:10: warning: main actor-isolated instance method '_setKey' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
383 | }
384 |
385 | extension UButton: _Keyable {
    |                    `- note: add '@preconcurrency' to the '_Keyable' conformance to defer isolation checking to run time
386 |     func _setKey(_ v: String) {
    |          |- warning: main actor-isolated instance method '_setKey' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setKey' to make this instance method not isolated to the actor
387 |         keyEquivalent = v
388 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyable.swift:13:10: note: mark the protocol requirement '_setKey' 'async' to allow actor-isolated conformances
11 |
12 | protocol _Keyable: Keyable {
13 |     func _setKey(_ v: String)
   |          `- note: mark the protocol requirement '_setKey' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:392:10: warning: main actor-isolated instance method '_setKeyMask' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
389 | }
390 |
391 | extension UButton: _KeyMaskable {
    |                    `- note: add '@preconcurrency' to the '_KeyMaskable' conformance to defer isolation checking to run time
392 |     func _setKeyMask(_ v: NSEvent.ModifierFlags) {
    |          |- warning: main actor-isolated instance method '_setKeyMask' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setKeyMask' to make this instance method not isolated to the actor
393 |         keyEquivalentModifierMask = v
394 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/KeyMaskable.swift:20:10: note: mark the protocol requirement '_setKeyMask' 'async' to allow actor-isolated conformances
18 |
19 | protocol _KeyMaskable: KeyMaskable {
20 |     func _setKeyMask(_ v: NSEvent.ModifierFlags)
   |          `- note: mark the protocol requirement '_setKeyMask' 'async' to allow actor-isolated conformances
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:31:14: warning: main actor-isolated property '_stateState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __centerY: UIKitPlus.State<CGFloat> { $centerY }
 30 |
 31 |     lazy var _stateState: State<NSControl.StateValue> = .init(wrappedValue: state)
    |              `- warning: main actor-isolated property '_stateState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 32 |     lazy var _bezelStyleState: State<NSButton.BezelStyle> = .init(wrappedValue: bezelStyle)
 33 |     lazy var _buttonTypeState: State<NSButton.ButtonType> = .init(wrappedValue: .momentaryPushIn)
    :
395 | }
396 |
397 | extension UButton: _ControlStateable {
    |                    `- note: add '@preconcurrency' to the '_ControlStateable' conformance to defer isolation checking to run time
398 |     func _setState(_ v: NSControl.StateValue) {
399 |         state = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/ControlStateable.swift:13:9: note: '_stateState' declared here
11 |
12 | protocol _ControlStateable: ControlStateable {
13 |     var _stateState: State<NSControl.StateValue> { get set }
   |         `- note: '_stateState' declared here
14 |
15 |     func _setState(_ v: NSControl.StateValue)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Button.swift:398:10: warning: main actor-isolated instance method '_setState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
396 |
397 | extension UButton: _ControlStateable {
398 |     func _setState(_ v: NSControl.StateValue) {
    |          |- warning: main actor-isolated instance method '_setState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setState' to make this instance method not isolated to the actor
399 |         state = v
400 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/ControlStateable.swift:15:10: note: mark the protocol requirement '_setState' 'async' to allow actor-isolated conformances
13 |     var _stateState: State<NSControl.StateValue> { get set }
14 |
15 |     func _setState(_ v: NSControl.StateValue)
   |          `- note: mark the protocol requirement '_setState' 'async' to allow actor-isolated conformances
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:7:14: warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  2 | import AppKit
  3 |
  4 | open class UImage: NSImageView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
    |                                                         `- note: add '@preconcurrency' to the 'DeclarativeProtocolInternal' conformance to defer isolation checking to run time
  5 |     public var declarativeView: UImage { self }
  6 |     public lazy var properties = Properties<UImage>()
  7 |     lazy var _properties = PropertiesInternal()
    |              `- warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |
  9 |     @State public var height: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:8:9: note: '_properties' declared here
 6 |
 7 | internal protocol DeclarativeProtocolInternal {
 8 |     var _properties: PropertiesInternal { get set }
   |         `- note: '_properties' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:20:9: warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @State public var centerY: CGFloat = 0
 19 |
 20 |     var __height: State<CGFloat> { _height }
    |         `- warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:10:9: note: '__height' declared here
 8 |     var _properties: PropertiesInternal { get set }
 9 |
10 |     var __height: State<CGFloat> { get }
   |         `- note: '__height' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:21:9: warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |
 20 |     var __height: State<CGFloat> { _height }
 21 |     var __width: State<CGFloat> { _width }
    |         `- warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:11:9: note: '__width' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
   |         `- note: '__width' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:22:9: warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |     var __height: State<CGFloat> { _height }
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
    |         `- warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:12:9: note: '__top' declared here
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
   |         `- note: '__top' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:23:9: warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
    |         `- warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:13:9: note: '__leading' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
   |         `- note: '__leading' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:24:9: warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
    |         `- warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:14:9: note: '__left' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
   |         `- note: '__left' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:25:9: warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
    |         `- warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:15:9: note: '__trailing' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
   |         `- note: '__trailing' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:26:9: warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
    |         `- warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:16:9: note: '__right' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
   |         `- note: '__right' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:27:9: warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
    |         `- warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __centerX: State<CGFloat> { _centerX }
 29 |     var __centerY: State<CGFloat> { _centerY }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:17:9: note: '__bottom' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
   |         `- note: '__bottom' declared here
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:28:9: warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
    |         `- warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __centerY: State<CGFloat> { _centerY }
 30 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:18:9: note: '__centerX' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
   |         `- note: '__centerX' declared here
19 |     var __centerY: State<CGFloat> { get }
20 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:29:9: warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
 29 |     var __centerY: State<CGFloat> { _centerY }
    |         `- warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 30 |
 31 |     var _imageLoader: ImageLoader = .defaultRelease
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:19:9: note: '__centerY' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
   |         `- note: '__centerY' declared here
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:5:16: warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  3 |
  4 | open class UImage: NSImageView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  5 |     public var declarativeView: UImage { self }
    |                `- warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  6 |     public lazy var properties = Properties<UImage>()
  7 |     lazy var _properties = PropertiesInternal()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:10:9: note: 'declarativeView' declared here
 8 |     associatedtype V: BaseView, DeclarativeProtocol = Self
 9 |
10 |     var declarativeView: V { get }
   |         `- note: 'declarativeView' declared here
11 |     var properties: Properties<V> { get set }
12 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:6:21: warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  4 | open class UImage: NSImageView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  5 |     public var declarativeView: UImage { self }
  6 |     public lazy var properties = Properties<UImage>()
    |                     `- warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     lazy var _properties = PropertiesInternal()
  8 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:11:9: note: 'properties' declared here
 9 |
10 |     var declarativeView: V { get }
11 |     var properties: Properties<V> { get set }
   |         `- note: 'properties' declared here
12 |
13 |     // MARK: Public Constraints
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:9:23: warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     lazy var _properties = PropertiesInternal()
  8 |
  9 |     @State public var height: CGFloat = 0
    |                       `- warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:15:9: note: 'height' declared here
13 |     // MARK: Public Constraints
14 |
15 |     var height: CGFloat { get set }
   |         `- note: 'height' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:10:23: warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |
  9 |     @State public var height: CGFloat = 0
 10 |     @State public var width: CGFloat = 0
    |                       `- warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:16:9: note: 'width' declared here
14 |
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
   |         `- note: 'width' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:11:23: warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  9 |     @State public var height: CGFloat = 0
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
    |                       `- warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:17:9: note: 'top' declared here
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
   |         `- note: 'top' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:12:23: warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
    |                       `- warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:18:9: note: 'leading' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
   |         `- note: 'leading' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:13:23: warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
    |                       `- warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:19:9: note: 'left' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
   |         `- note: 'left' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:14:23: warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
    |                       `- warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:20:9: note: 'trailing' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
   |         `- note: 'trailing' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:15:23: warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
    |                       `- warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:21:9: note: 'right' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
   |         `- note: 'right' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:16:23: warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
    |                       `- warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @State public var centerX: CGFloat = 0
 18 |     @State public var centerY: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:22:9: note: 'bottom' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
   |         `- note: 'bottom' declared here
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:17:23: warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @State public var centerY: CGFloat = 0
 19 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:23:9: note: 'centerX' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
   |         `- note: 'centerX' declared here
24 |     var centerY: CGFloat { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:18:23: warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
 18 |     @State public var centerY: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |
 20 |     var __height: State<CGFloat> { _height }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:24:9: note: 'centerY' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
   |         `- note: 'centerY' declared here
25 |
26 |     var tag: Int { get set }
AppKit.NSControl:6:25: warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 4 |     weak open var target: AnyObject? { get set }
 5 |     open var action: Selector? { get set }
 6 |     @MainActor open var tag: Int { get set }
   |                         `- warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     @MainActor open var ignoresMultiClick: Bool { get set }
 8 |     @MainActor open var isContinuous: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: 'tag' declared here
24 |     var centerY: CGFloat { get set }
25 |
26 |     var tag: Int { get set }
   |         `- note: 'tag' declared here
27 | }
28 | protocol AnyDeclarativeProtocol: DeclarativeProtocol, _BackgroundColorable {}
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:185:9: warning: main actor-isolated property '_tintState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
182 | }
183 |
184 | extension UImage: _Tintable {
    |                   `- note: add '@preconcurrency' to the '_Tintable' conformance to defer isolation checking to run time
185 |     var _tintState: State<UColor> {
    |         `- warning: main actor-isolated property '_tintState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
186 |         get { properties.tintState }
187 |         set {}
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Tintable.swift:19:9: note: '_tintState' declared here
17 |
18 | protocol _Tintable: Tintable {
19 |     var _tintState: State<UColor> { get }
   |         `- note: '_tintState' declared here
20 |
21 |     #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:190:10: warning: main actor-isolated instance method '_setTint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
188 |     }
189 |
190 |     func _setTint(_ v: NSColor?) {
    |          |- warning: main actor-isolated instance method '_setTint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTint' to make this instance method not isolated to the actor
191 |         guard let v = v else { return }
192 |         image = tintedImage(with: v)
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Tintable.swift:22:10: note: mark the protocol requirement '_setTint' 'async' to allow actor-isolated conformances
20 |
21 |     #if os(macOS)
22 |     func _setTint(_ v: NSColor?)
   |          `- note: mark the protocol requirement '_setTint' 'async' to allow actor-isolated conformances
23 |     #else
24 |     func _setTint(_ v: UColor?)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:7:14: warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  2 | import AppKit
  3 |
  4 | open class UScrollView: NSScrollView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
    |                                                               `- note: add '@preconcurrency' to the 'DeclarativeProtocolInternal' conformance to defer isolation checking to run time
  5 |     public var declarativeView: UScrollView { self }
  6 |     public lazy var properties = Properties<UScrollView>()
  7 |     lazy var _properties = PropertiesInternal()
    |              `- warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |
  9 |     @State public var height: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:8:9: note: '_properties' declared here
 6 |
 7 | internal protocol DeclarativeProtocolInternal {
 8 |     var _properties: PropertiesInternal { get set }
   |         `- note: '_properties' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:20:9: warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @State public var centerY: CGFloat = 0
 19 |
 20 |     var __height: State<CGFloat> { _height }
    |         `- warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:10:9: note: '__height' declared here
 8 |     var _properties: PropertiesInternal { get set }
 9 |
10 |     var __height: State<CGFloat> { get }
   |         `- note: '__height' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:21:9: warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |
 20 |     var __height: State<CGFloat> { _height }
 21 |     var __width: State<CGFloat> { _width }
    |         `- warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:11:9: note: '__width' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
   |         `- note: '__width' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:22:9: warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |     var __height: State<CGFloat> { _height }
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
    |         `- warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:12:9: note: '__top' declared here
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
   |         `- note: '__top' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:23:9: warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     var __width: State<CGFloat> { _width }
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
    |         `- warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:13:9: note: '__leading' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
   |         `- note: '__leading' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:24:9: warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __top: State<CGFloat> { _top }
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
    |         `- warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:14:9: note: '__left' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
   |         `- note: '__left' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:25:9: warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __leading: State<CGFloat> { _leading }
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
    |         `- warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:15:9: note: '__trailing' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
   |         `- note: '__trailing' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:26:9: warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __left: State<CGFloat> { _left }
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
    |         `- warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:16:9: note: '__right' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
   |         `- note: '__right' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:27:9: warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __trailing: State<CGFloat> { _trailing }
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
    |         `- warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __centerX: State<CGFloat> { _centerX }
 29 |     var __centerY: State<CGFloat> { _centerY }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:17:9: note: '__bottom' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
   |         `- note: '__bottom' declared here
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:28:9: warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __right: State<CGFloat> { _right }
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
    |         `- warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __centerY: State<CGFloat> { _centerY }
 30 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:18:9: note: '__centerX' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
   |         `- note: '__centerX' declared here
19 |     var __centerY: State<CGFloat> { get }
20 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:29:9: warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __bottom: State<CGFloat> { _bottom }
 28 |     var __centerX: State<CGFloat> { _centerX }
 29 |     var __centerY: State<CGFloat> { _centerY }
    |         `- warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 30 |
 31 |     var scrollPosition: State<CGPoint>?
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:19:9: note: '__centerY' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
   |         `- note: '__centerY' declared here
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:5:16: warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  3 |
  4 | open class UScrollView: NSScrollView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  5 |     public var declarativeView: UScrollView { self }
    |                `- warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  6 |     public lazy var properties = Properties<UScrollView>()
  7 |     lazy var _properties = PropertiesInternal()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:10:9: note: 'declarativeView' declared here
 8 |     associatedtype V: BaseView, DeclarativeProtocol = Self
 9 |
10 |     var declarativeView: V { get }
   |         `- note: 'declarativeView' declared here
11 |     var properties: Properties<V> { get set }
12 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:6:21: warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  4 | open class UScrollView: NSScrollView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  5 |     public var declarativeView: UScrollView { self }
  6 |     public lazy var properties = Properties<UScrollView>()
    |                     `- warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     lazy var _properties = PropertiesInternal()
  8 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:11:9: note: 'properties' declared here
 9 |
10 |     var declarativeView: V { get }
11 |     var properties: Properties<V> { get set }
   |         `- note: 'properties' declared here
12 |
13 |     // MARK: Public Constraints
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:9:23: warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     lazy var _properties = PropertiesInternal()
  8 |
  9 |     @State public var height: CGFloat = 0
    |                       `- warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:15:9: note: 'height' declared here
13 |     // MARK: Public Constraints
14 |
15 |     var height: CGFloat { get set }
   |         `- note: 'height' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:10:23: warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |
  9 |     @State public var height: CGFloat = 0
 10 |     @State public var width: CGFloat = 0
    |                       `- warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:16:9: note: 'width' declared here
14 |
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
   |         `- note: 'width' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:11:23: warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  9 |     @State public var height: CGFloat = 0
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
    |                       `- warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:17:9: note: 'top' declared here
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
   |         `- note: 'top' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:12:23: warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     @State public var width: CGFloat = 0
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
    |                       `- warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:18:9: note: 'leading' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
   |         `- note: 'leading' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:13:23: warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var top: CGFloat = 0
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
    |                       `- warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:19:9: note: 'left' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
   |         `- note: 'left' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:14:23: warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var leading: CGFloat = 0
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
    |                       `- warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:20:9: note: 'trailing' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
   |         `- note: 'trailing' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:15:23: warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var left: CGFloat = 0
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
    |                       `- warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:21:9: note: 'right' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
   |         `- note: 'right' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:16:23: warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var trailing: CGFloat = 0
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
    |                       `- warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @State public var centerX: CGFloat = 0
 18 |     @State public var centerY: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:22:9: note: 'bottom' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
   |         `- note: 'bottom' declared here
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:17:23: warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var right: CGFloat = 0
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @State public var centerY: CGFloat = 0
 19 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:23:9: note: 'centerX' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
   |         `- note: 'centerX' declared here
24 |     var centerY: CGFloat { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:18:23: warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var bottom: CGFloat = 0
 17 |     @State public var centerX: CGFloat = 0
 18 |     @State public var centerY: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |
 20 |     var __height: State<CGFloat> { _height }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:24:9: note: 'centerY' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
   |         `- note: 'centerY' declared here
25 |
26 |     var tag: Int { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ScrollView.swift:34:25: warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 32 |
 33 |     private lazy var  _tag: Int = -1
 34 |     public override var tag: Int {
    |                         `- warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 35 |         get { _tag }
 36 |         set { _tag = newValue }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: 'tag' declared here
24 |     var centerY: CGFloat { get set }
25 |
26 |     var tag: Int { get set }
   |         `- note: 'tag' declared here
27 | }
28 | protocol AnyDeclarativeProtocol: DeclarativeProtocol, _BackgroundColorable {}
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:8:14: warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  3 |
  4 | /// aka `NSLabel`
  5 | open class UText: NSTextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
    |                                                        `- note: add '@preconcurrency' to the 'DeclarativeProtocolInternal' conformance to defer isolation checking to run time
  6 |     public var declarativeView: UText { self }
  7 |     public lazy var properties = Properties<UText>()
  8 |     lazy var _properties = PropertiesInternal()
    |              `- warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  9 |
 10 |     @State public var height: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:8:9: note: '_properties' declared here
 6 |
 7 | internal protocol DeclarativeProtocolInternal {
 8 |     var _properties: PropertiesInternal { get set }
   |         `- note: '_properties' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:21:9: warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |     @State public var centerY: CGFloat = 0
 20 |
 21 |     var __height: State<CGFloat> { _height }
    |         `- warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __width: State<CGFloat> { _width }
 23 |     var __top: State<CGFloat> { _top }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:10:9: note: '__height' declared here
 8 |     var _properties: PropertiesInternal { get set }
 9 |
10 |     var __height: State<CGFloat> { get }
   |         `- note: '__height' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:22:9: warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |
 21 |     var __height: State<CGFloat> { _height }
 22 |     var __width: State<CGFloat> { _width }
    |         `- warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __top: State<CGFloat> { _top }
 24 |     var __leading: State<CGFloat> { _leading }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:11:9: note: '__width' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
   |         `- note: '__width' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:23:9: warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     var __height: State<CGFloat> { _height }
 22 |     var __width: State<CGFloat> { _width }
 23 |     var __top: State<CGFloat> { _top }
    |         `- warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __leading: State<CGFloat> { _leading }
 25 |     var __left: State<CGFloat> { _left }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:12:9: note: '__top' declared here
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
   |         `- note: '__top' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:24:9: warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |     var __width: State<CGFloat> { _width }
 23 |     var __top: State<CGFloat> { _top }
 24 |     var __leading: State<CGFloat> { _leading }
    |         `- warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __left: State<CGFloat> { _left }
 26 |     var __trailing: State<CGFloat> { _trailing }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:13:9: note: '__leading' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
   |         `- note: '__leading' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:25:9: warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __top: State<CGFloat> { _top }
 24 |     var __leading: State<CGFloat> { _leading }
 25 |     var __left: State<CGFloat> { _left }
    |         `- warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __trailing: State<CGFloat> { _trailing }
 27 |     var __right: State<CGFloat> { _right }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:14:9: note: '__left' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
   |         `- note: '__left' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:26:9: warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __leading: State<CGFloat> { _leading }
 25 |     var __left: State<CGFloat> { _left }
 26 |     var __trailing: State<CGFloat> { _trailing }
    |         `- warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __right: State<CGFloat> { _right }
 28 |     var __bottom: State<CGFloat> { _bottom }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:15:9: note: '__trailing' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
   |         `- note: '__trailing' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:27:9: warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __left: State<CGFloat> { _left }
 26 |     var __trailing: State<CGFloat> { _trailing }
 27 |     var __right: State<CGFloat> { _right }
    |         `- warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __bottom: State<CGFloat> { _bottom }
 29 |     var __centerX: State<CGFloat> { _centerX }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:16:9: note: '__right' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
   |         `- note: '__right' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:28:9: warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __trailing: State<CGFloat> { _trailing }
 27 |     var __right: State<CGFloat> { _right }
 28 |     var __bottom: State<CGFloat> { _bottom }
    |         `- warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __centerX: State<CGFloat> { _centerX }
 30 |     var __centerY: State<CGFloat> { _centerY }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:17:9: note: '__bottom' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
   |         `- note: '__bottom' declared here
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:29:9: warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __right: State<CGFloat> { _right }
 28 |     var __bottom: State<CGFloat> { _bottom }
 29 |     var __centerX: State<CGFloat> { _centerX }
    |         `- warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 30 |     var __centerY: State<CGFloat> { _centerY }
 31 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:18:9: note: '__centerX' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
   |         `- note: '__centerX' declared here
19 |     var __centerY: State<CGFloat> { get }
20 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:30:9: warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __bottom: State<CGFloat> { _bottom }
 29 |     var __centerX: State<CGFloat> { _centerX }
 30 |     var __centerY: State<CGFloat> { _centerY }
    |         `- warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 31 |
 32 |     public init (_ string: AnyString...) {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:19:9: note: '__centerY' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
   |         `- note: '__centerY' declared here
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:6:16: warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  4 | /// aka `NSLabel`
  5 | open class UText: NSTextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  6 |     public var declarativeView: UText { self }
    |                `- warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     public lazy var properties = Properties<UText>()
  8 |     lazy var _properties = PropertiesInternal()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:10:9: note: 'declarativeView' declared here
 8 |     associatedtype V: BaseView, DeclarativeProtocol = Self
 9 |
10 |     var declarativeView: V { get }
   |         `- note: 'declarativeView' declared here
11 |     var properties: Properties<V> { get set }
12 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:7:21: warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  5 | open class UText: NSTextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  6 |     public var declarativeView: UText { self }
  7 |     public lazy var properties = Properties<UText>()
    |                     `- warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |     lazy var _properties = PropertiesInternal()
  9 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:11:9: note: 'properties' declared here
 9 |
10 |     var declarativeView: V { get }
11 |     var properties: Properties<V> { get set }
   |         `- note: 'properties' declared here
12 |
13 |     // MARK: Public Constraints
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:10:23: warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  8 |     lazy var _properties = PropertiesInternal()
  9 |
 10 |     @State public var height: CGFloat = 0
    |                       `- warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var width: CGFloat = 0
 12 |     @State public var top: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:15:9: note: 'height' declared here
13 |     // MARK: Public Constraints
14 |
15 |     var height: CGFloat { get set }
   |         `- note: 'height' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:11:23: warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  9 |
 10 |     @State public var height: CGFloat = 0
 11 |     @State public var width: CGFloat = 0
    |                       `- warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var top: CGFloat = 0
 13 |     @State public var leading: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:16:9: note: 'width' declared here
14 |
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
   |         `- note: 'width' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:12:23: warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     @State public var height: CGFloat = 0
 11 |     @State public var width: CGFloat = 0
 12 |     @State public var top: CGFloat = 0
    |                       `- warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var leading: CGFloat = 0
 14 |     @State public var left: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:17:9: note: 'top' declared here
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
   |         `- note: 'top' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:13:23: warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |     @State public var width: CGFloat = 0
 12 |     @State public var top: CGFloat = 0
 13 |     @State public var leading: CGFloat = 0
    |                       `- warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var left: CGFloat = 0
 15 |     @State public var trailing: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:18:9: note: 'leading' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
   |         `- note: 'leading' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:14:23: warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @State public var top: CGFloat = 0
 13 |     @State public var leading: CGFloat = 0
 14 |     @State public var left: CGFloat = 0
    |                       `- warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var trailing: CGFloat = 0
 16 |     @State public var right: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:19:9: note: 'left' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
   |         `- note: 'left' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:15:23: warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @State public var leading: CGFloat = 0
 14 |     @State public var left: CGFloat = 0
 15 |     @State public var trailing: CGFloat = 0
    |                       `- warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var right: CGFloat = 0
 17 |     @State public var bottom: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:20:9: note: 'trailing' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
   |         `- note: 'trailing' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:16:23: warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @State public var left: CGFloat = 0
 15 |     @State public var trailing: CGFloat = 0
 16 |     @State public var right: CGFloat = 0
    |                       `- warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @State public var bottom: CGFloat = 0
 18 |     @State public var centerX: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:21:9: note: 'right' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
   |         `- note: 'right' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:17:23: warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @State public var trailing: CGFloat = 0
 16 |     @State public var right: CGFloat = 0
 17 |     @State public var bottom: CGFloat = 0
    |                       `- warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @State public var centerX: CGFloat = 0
 19 |     @State public var centerY: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:22:9: note: 'bottom' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
   |         `- note: 'bottom' declared here
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:18:23: warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @State public var right: CGFloat = 0
 17 |     @State public var bottom: CGFloat = 0
 18 |     @State public var centerX: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |     @State public var centerY: CGFloat = 0
 20 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:23:9: note: 'centerX' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
   |         `- note: 'centerX' declared here
24 |     var centerY: CGFloat { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:19:23: warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @State public var bottom: CGFloat = 0
 18 |     @State public var centerX: CGFloat = 0
 19 |     @State public var centerY: CGFloat = 0
    |                       `- warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |
 21 |     var __height: State<CGFloat> { _height }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:24:9: note: 'centerY' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
   |         `- note: 'centerY' declared here
25 |
26 |     var tag: Int { get set }
AppKit.NSControl:6:25: warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 4 |     weak open var target: AnyObject? { get set }
 5 |     open var action: Selector? { get set }
 6 |     @MainActor open var tag: Int { get set }
   |                         `- warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     @MainActor open var ignoresMultiClick: Bool { get set }
 8 |     @MainActor open var isContinuous: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: 'tag' declared here
24 |     var centerY: CGFloat { get set }
25 |
26 |     var tag: Int { get set }
   |         `- note: 'tag' declared here
27 | }
28 | protocol AnyDeclarativeProtocol: DeclarativeProtocol, _BackgroundColorable {}
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:98:17: warning: main actor-isolated instance method 'refresh()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 94 | }
 95 |
 96 | extension UText: Refreshable {
    |                  `- note: add '@preconcurrency' to the 'Refreshable' conformance to defer isolation checking to run time
 97 |     /// Refreshes using `RefreshHandler`
 98 |     public func refresh() {
    |                 |- warning: main actor-isolated instance method 'refresh()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'refresh()' to make this instance method not isolated to the actor
 99 |         if let statedText = _properties.statedText {
100 |             text(statedText())
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Refreshable.swift:2:10: note: mark the protocol requirement 'refresh()' 'async' to allow actor-isolated conformances
 1 | public protocol Refreshable: AnyObject {
 2 |     func refresh()
   |          `- note: mark the protocol requirement 'refresh()' 'async' to allow actor-isolated conformances
 3 | }
 4 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:106:10: warning: main actor-isolated instance method '_setFont' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
103 | }
104 |
105 | extension UText: _Fontable {
    |                  `- note: add '@preconcurrency' to the '_Fontable' conformance to defer isolation checking to run time
106 |     func _setFont(_ v: UFont?) {
    |          |- warning: main actor-isolated instance method '_setFont' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setFont' to make this instance method not isolated to the actor
107 |         font = v
108 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Fontable.swift:16:10: note: mark the protocol requirement '_setFont' 'async' to allow actor-isolated conformances
14 |
15 | protocol _Fontable: Fontable {
16 |     func _setFont(_ v: UFont?)
   |          `- note: mark the protocol requirement '_setFont' 'async' to allow actor-isolated conformances
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:112:9: warning: main actor-isolated property '_currentText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
109 | }
110 |
111 | extension UText: _Textable {
    |                  `- note: add '@preconcurrency' to the '_Textable' conformance to defer isolation checking to run time
112 |     var _currentText: String { self.stringValue }
    |         `- warning: main actor-isolated property '_currentText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
113 |
114 |     var _statedText: AnyStringBuilder.Handler? {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:33:9: note: '_currentText' declared here
 31 |
 32 | protocol _Textable: Textable {
 33 |     var _currentText: String { get }
    |         `- note: '_currentText' declared here
 34 |     var _statedText: AnyStringBuilder.Handler? { get set }
 35 |     #if !os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:114:9: warning: main actor-isolated property '_statedText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
112 |     var _currentText: String { self.stringValue }
113 |
114 |     var _statedText: AnyStringBuilder.Handler? {
    |         `- warning: main actor-isolated property '_statedText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
115 |         get { _properties.statedText }
116 |         set { _properties.statedText = newValue }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:34:9: note: '_statedText' declared here
 32 | protocol _Textable: Textable {
 33 |     var _currentText: String { get }
 34 |     var _statedText: AnyStringBuilder.Handler? { get set }
    |         `- note: '_statedText' declared here
 35 |     #if !os(macOS)
 36 |     var _textChangeTransition: UIView.AnimationOptions? { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:119:10: warning: main actor-isolated instance method '_setText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
117 |     }
118 |
119 |     func _setText(_ v: NSAttributedString?) {
    |          |- warning: main actor-isolated instance method '_setText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setText' to make this instance method not isolated to the actor
120 |         attributedStringValue = .init() // hack to update attributed string with changed paragraph style
121 |         attributedStringValue = v ?? .init()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:39:10: note: mark the protocol requirement '_setText' 'async' to allow actor-isolated conformances
 37 |     #endif
 38 |
 39 |     func _setText(_ v: NSAttributedString?)
    |          `- note: mark the protocol requirement '_setText' 'async' to allow actor-isolated conformances
 40 | }
 41 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:126:9: warning: main actor-isolated property '_colorState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
123 | }
124 |
125 | extension UText: _Colorable {
    |                  `- note: add '@preconcurrency' to the '_Colorable' conformance to defer isolation checking to run time
126 |     var _colorState: State<UColor> { properties.textColorState }
    |         `- warning: main actor-isolated property '_colorState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
127 |
128 |     func _setColor(_ v: NSColor?) {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Colorable.swift:19:9: note: '_colorState' declared here
17 |
18 | protocol _Colorable: Colorable {
19 |     var _colorState: State<UColor> { get }
   |         `- note: '_colorState' declared here
20 |
21 |     #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:128:10: warning: main actor-isolated instance method '_setColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
126 |     var _colorState: State<UColor> { properties.textColorState }
127 |
128 |     func _setColor(_ v: NSColor?) {
    |          |- warning: main actor-isolated instance method '_setColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setColor' to make this instance method not isolated to the actor
129 |         let str = NSMutableAttributedString(attributedString: attributedStringValue)
130 |         if let v = v {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Colorable.swift:22:10: note: mark the protocol requirement '_setColor' 'async' to allow actor-isolated conformances
20 |
21 |     #if os(macOS)
22 |     func _setColor(_ v: NSColor?)
   |          `- note: mark the protocol requirement '_setColor' 'async' to allow actor-isolated conformances
23 |     #else
24 |     func _setColor(_ v: UColor?)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:140:10: warning: main actor-isolated instance method '_setTextAlignment(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
137 | }
138 |
139 | extension UText: _TextAligmentable {
    |                  `- note: add '@preconcurrency' to the '_TextAligmentable' conformance to defer isolation checking to run time
140 |     func _setTextAlignment(v: NSTextAlignment) {
    |          |- warning: main actor-isolated instance method '_setTextAlignment(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTextAlignment(v:)' to make this instance method not isolated to the actor
141 |         let p = NSMutableParagraphStyle()
142 |         p.alignment = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAligmentable.swift:12:10: note: mark the protocol requirement '_setTextAlignment(v:)' 'async' to allow actor-isolated conformances
10 |
11 | protocol _TextAligmentable: TextAligmentable {
12 |     func _setTextAlignment(v: NSTextAlignment)
   |          `- note: mark the protocol requirement '_setTextAlignment(v:)' 'async' to allow actor-isolated conformances
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:151:10: warning: main actor-isolated instance method '_setNumbelOfLines' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
148 | }
149 |
150 | extension UText: _TextLineable {
    |                  `- note: add '@preconcurrency' to the '_TextLineable' conformance to defer isolation checking to run time
151 |     func _setNumbelOfLines(_ v: Int) {
    |          |- warning: main actor-isolated instance method '_setNumbelOfLines' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setNumbelOfLines' to make this instance method not isolated to the actor
152 |         maximumNumberOfLines = v
153 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextLineable.swift:16:10: note: mark the protocol requirement '_setNumbelOfLines' 'async' to allow actor-isolated conformances
14 |
15 | protocol _TextLineable: TextLineable {
16 |     func _setNumbelOfLines(_ v: Int)
   |          `- note: mark the protocol requirement '_setNumbelOfLines' 'async' to allow actor-isolated conformances
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+Text.swift:157:10: warning: main actor-isolated instance method '_setLineBreakMode' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
154 | }
155 |
156 | extension UText: _TextLineBreakModeable {
    |                  `- note: add '@preconcurrency' to the '_TextLineBreakModeable' conformance to defer isolation checking to run time
157 |     func _setLineBreakMode(_ v: NSLineBreakMode) {
    |          |- warning: main actor-isolated instance method '_setLineBreakMode' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setLineBreakMode' to make this instance method not isolated to the actor
158 |         lineBreakMode = v
159 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextLineBreakModeable.swift:13:10: note: mark the protocol requirement '_setLineBreakMode' 'async' to allow actor-isolated conformances
11 |
12 | protocol _TextLineBreakModeable: TextLineBreakModeable {
13 |     func _setLineBreakMode(_ v: NSLineBreakMode)
   |          `- note: mark the protocol requirement '_setLineBreakMode' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:9:14: warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  3 | import AppKit
  4 |
  5 | open class UTextField: NSTextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
    |                                                             `- note: add '@preconcurrency' to the 'DeclarativeProtocolInternal' conformance to defer isolation checking to run time
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- warning: main actor-isolated property '_properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:8:9: note: '_properties' declared here
 6 |
 7 | internal protocol DeclarativeProtocolInternal {
 8 |     var _properties: PropertiesInternal { get set }
   |         `- note: '_properties' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:23:9: warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     @UIKitPlus.State public var centerY: CGFloat = 0
 22 |
 23 |     var __height: UIKitPlus.State<CGFloat> { $height }
    |         `- warning: main actor-isolated property '__height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __width: UIKitPlus.State<CGFloat> { $width }
 25 |     var __top: UIKitPlus.State<CGFloat> { $top }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:10:9: note: '__height' declared here
 8 |     var _properties: PropertiesInternal { get set }
 9 |
10 |     var __height: State<CGFloat> { get }
   |         `- note: '__height' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:24:9: warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |
 23 |     var __height: UIKitPlus.State<CGFloat> { $height }
 24 |     var __width: UIKitPlus.State<CGFloat> { $width }
    |         `- warning: main actor-isolated property '__width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __top: UIKitPlus.State<CGFloat> { $top }
 26 |     var __leading: UIKitPlus.State<CGFloat> { $leading }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:11:9: note: '__width' declared here
 9 |
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
   |         `- note: '__width' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:25:9: warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 |     var __height: UIKitPlus.State<CGFloat> { $height }
 24 |     var __width: UIKitPlus.State<CGFloat> { $width }
 25 |     var __top: UIKitPlus.State<CGFloat> { $top }
    |         `- warning: main actor-isolated property '__top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __leading: UIKitPlus.State<CGFloat> { $leading }
 27 |     var __left: UIKitPlus.State<CGFloat> { $left }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:12:9: note: '__top' declared here
10 |     var __height: State<CGFloat> { get }
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
   |         `- note: '__top' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:26:9: warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 24 |     var __width: UIKitPlus.State<CGFloat> { $width }
 25 |     var __top: UIKitPlus.State<CGFloat> { $top }
 26 |     var __leading: UIKitPlus.State<CGFloat> { $leading }
    |         `- warning: main actor-isolated property '__leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __left: UIKitPlus.State<CGFloat> { $left }
 28 |     var __trailing: UIKitPlus.State<CGFloat> { $trailing }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:13:9: note: '__leading' declared here
11 |     var __width: State<CGFloat> { get }
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
   |         `- note: '__leading' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:27:9: warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 25 |     var __top: UIKitPlus.State<CGFloat> { $top }
 26 |     var __leading: UIKitPlus.State<CGFloat> { $leading }
 27 |     var __left: UIKitPlus.State<CGFloat> { $left }
    |         `- warning: main actor-isolated property '__left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __trailing: UIKitPlus.State<CGFloat> { $trailing }
 29 |     var __right: UIKitPlus.State<CGFloat> { $right }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:14:9: note: '__left' declared here
12 |     var __top: State<CGFloat> { get }
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
   |         `- note: '__left' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:28:9: warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 26 |     var __leading: UIKitPlus.State<CGFloat> { $leading }
 27 |     var __left: UIKitPlus.State<CGFloat> { $left }
 28 |     var __trailing: UIKitPlus.State<CGFloat> { $trailing }
    |         `- warning: main actor-isolated property '__trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __right: UIKitPlus.State<CGFloat> { $right }
 30 |     var __bottom: UIKitPlus.State<CGFloat> { $bottom }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:15:9: note: '__trailing' declared here
13 |     var __leading: State<CGFloat> { get }
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
   |         `- note: '__trailing' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:29:9: warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 |     var __left: UIKitPlus.State<CGFloat> { $left }
 28 |     var __trailing: UIKitPlus.State<CGFloat> { $trailing }
 29 |     var __right: UIKitPlus.State<CGFloat> { $right }
    |         `- warning: main actor-isolated property '__right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 30 |     var __bottom: UIKitPlus.State<CGFloat> { $bottom }
 31 |     var __centerX: UIKitPlus.State<CGFloat> { $centerX }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:16:9: note: '__right' declared here
14 |     var __left: State<CGFloat> { get }
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
   |         `- note: '__right' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:30:9: warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 28 |     var __trailing: UIKitPlus.State<CGFloat> { $trailing }
 29 |     var __right: UIKitPlus.State<CGFloat> { $right }
 30 |     var __bottom: UIKitPlus.State<CGFloat> { $bottom }
    |         `- warning: main actor-isolated property '__bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 31 |     var __centerX: UIKitPlus.State<CGFloat> { $centerX }
 32 |     var __centerY: UIKitPlus.State<CGFloat> { $centerY }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:17:9: note: '__bottom' declared here
15 |     var __trailing: State<CGFloat> { get }
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
   |         `- note: '__bottom' declared here
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:31:9: warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 |     var __right: UIKitPlus.State<CGFloat> { $right }
 30 |     var __bottom: UIKitPlus.State<CGFloat> { $bottom }
 31 |     var __centerX: UIKitPlus.State<CGFloat> { $centerX }
    |         `- warning: main actor-isolated property '__centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 32 |     var __centerY: UIKitPlus.State<CGFloat> { $centerY }
 33 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:18:9: note: '__centerX' declared here
16 |     var __right: State<CGFloat> { get }
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
   |         `- note: '__centerX' declared here
19 |     var __centerY: State<CGFloat> { get }
20 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:32:9: warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 30 |     var __bottom: UIKitPlus.State<CGFloat> { $bottom }
 31 |     var __centerX: UIKitPlus.State<CGFloat> { $centerX }
 32 |     var __centerY: UIKitPlus.State<CGFloat> { $centerY }
    |         `- warning: main actor-isolated property '__centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 33 |
 34 |     fileprivate weak var outsideDelegate: TextFieldDelegate?
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocolInternal.swift:19:9: note: '__centerY' declared here
17 |     var __bottom: State<CGFloat> { get }
18 |     var __centerX: State<CGFloat> { get }
19 |     var __centerY: State<CGFloat> { get }
   |         `- note: '__centerY' declared here
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:6:16: warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  4 |
  5 | open class UTextField: NSTextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
  6 |     public var declarativeView: UTextField { self }
    |                `- warning: main actor-isolated property 'declarativeView' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:10:9: note: 'declarativeView' declared here
 8 |     associatedtype V: BaseView, DeclarativeProtocol = Self
 9 |
10 |     var declarativeView: V { get }
   |         `- note: 'declarativeView' declared here
11 |     var properties: Properties<V> { get set }
12 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:8:21: warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- warning: main actor-isolated property 'properties' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:11:9: note: 'properties' declared here
 9 |
10 |     var declarativeView: V { get }
11 |     var properties: Properties<V> { get set }
   |         `- note: 'properties' declared here
12 |
13 |     // MARK: Public Constraints
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:12:33: warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
 12 |     @UIKitPlus.State public var height: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'height' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @UIKitPlus.State public var width: CGFloat = 0
 14 |     @UIKitPlus.State public var top: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:15:9: note: 'height' declared here
13 |     // MARK: Public Constraints
14 |
15 |     var height: CGFloat { get set }
   |         `- note: 'height' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:13:33: warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |
 12 |     @UIKitPlus.State public var height: CGFloat = 0
 13 |     @UIKitPlus.State public var width: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'width' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @UIKitPlus.State public var top: CGFloat = 0
 15 |     @UIKitPlus.State public var leading: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:16:9: note: 'width' declared here
14 |
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
   |         `- note: 'width' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:14:33: warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 12 |     @UIKitPlus.State public var height: CGFloat = 0
 13 |     @UIKitPlus.State public var width: CGFloat = 0
 14 |     @UIKitPlus.State public var top: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'top' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @UIKitPlus.State public var leading: CGFloat = 0
 16 |     @UIKitPlus.State public var left: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:17:9: note: 'top' declared here
15 |     var height: CGFloat { get set }
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
   |         `- note: 'top' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:15:33: warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 13 |     @UIKitPlus.State public var width: CGFloat = 0
 14 |     @UIKitPlus.State public var top: CGFloat = 0
 15 |     @UIKitPlus.State public var leading: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'leading' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @UIKitPlus.State public var left: CGFloat = 0
 17 |     @UIKitPlus.State public var trailing: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:18:9: note: 'leading' declared here
16 |     var width: CGFloat { get set }
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
   |         `- note: 'leading' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:16:33: warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 14 |     @UIKitPlus.State public var top: CGFloat = 0
 15 |     @UIKitPlus.State public var leading: CGFloat = 0
 16 |     @UIKitPlus.State public var left: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'left' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @UIKitPlus.State public var trailing: CGFloat = 0
 18 |     @UIKitPlus.State public var right: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:19:9: note: 'left' declared here
17 |     var top: CGFloat { get set }
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
   |         `- note: 'left' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:17:33: warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 15 |     @UIKitPlus.State public var leading: CGFloat = 0
 16 |     @UIKitPlus.State public var left: CGFloat = 0
 17 |     @UIKitPlus.State public var trailing: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'trailing' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @UIKitPlus.State public var right: CGFloat = 0
 19 |     @UIKitPlus.State public var bottom: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:20:9: note: 'trailing' declared here
18 |     var leading: CGFloat { get set }
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
   |         `- note: 'trailing' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:18:33: warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     @UIKitPlus.State public var left: CGFloat = 0
 17 |     @UIKitPlus.State public var trailing: CGFloat = 0
 18 |     @UIKitPlus.State public var right: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'right' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |     @UIKitPlus.State public var bottom: CGFloat = 0
 20 |     @UIKitPlus.State public var centerX: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:21:9: note: 'right' declared here
19 |     var left: CGFloat { get set }
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
   |         `- note: 'right' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:19:33: warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |     @UIKitPlus.State public var trailing: CGFloat = 0
 18 |     @UIKitPlus.State public var right: CGFloat = 0
 19 |     @UIKitPlus.State public var bottom: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'bottom' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |     @UIKitPlus.State public var centerX: CGFloat = 0
 21 |     @UIKitPlus.State public var centerY: CGFloat = 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:22:9: note: 'bottom' declared here
20 |     var trailing: CGFloat { get set }
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
   |         `- note: 'bottom' declared here
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:20:33: warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     @UIKitPlus.State public var right: CGFloat = 0
 19 |     @UIKitPlus.State public var bottom: CGFloat = 0
 20 |     @UIKitPlus.State public var centerX: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'centerX' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |     @UIKitPlus.State public var centerY: CGFloat = 0
 22 |
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:23:9: note: 'centerX' declared here
21 |     var right: CGFloat { get set }
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
   |         `- note: 'centerX' declared here
24 |     var centerY: CGFloat { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:21:33: warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |     @UIKitPlus.State public var bottom: CGFloat = 0
 20 |     @UIKitPlus.State public var centerX: CGFloat = 0
 21 |     @UIKitPlus.State public var centerY: CGFloat = 0
    |                                 `- warning: main actor-isolated property 'centerY' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 22 |
 23 |     var __height: UIKitPlus.State<CGFloat> { $height }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:24:9: note: 'centerY' declared here
22 |     var bottom: CGFloat { get set }
23 |     var centerX: CGFloat { get set }
24 |     var centerY: CGFloat { get set }
   |         `- note: 'centerY' declared here
25 |
26 |     var tag: Int { get set }
AppKit.NSControl:6:25: warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 4 |     weak open var target: AnyObject? { get set }
 5 |     open var action: Selector? { get set }
 6 |     @MainActor open var tag: Int { get set }
   |                         `- warning: main actor-isolated property 'tag' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     @MainActor open var ignoresMultiClick: Bool { get set }
 8 |     @MainActor open var isContinuous: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: 'tag' declared here
24 |     var centerY: CGFloat { get set }
25 |
26 |     var tag: Int { get set }
   |         `- note: 'tag' declared here
27 | }
28 | protocol AnyDeclarativeProtocol: DeclarativeProtocol, _BackgroundColorable {}
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:524:10: warning: main actor-isolated instance method '_setBackgroundColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
522 |     // MARK:
523 |
524 |     func _setBackgroundColor(_ v: NSColor?) {
    |          |- warning: main actor-isolated instance method '_setBackgroundColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setBackgroundColor' to make this instance method not isolated to the actor
525 |         guard v != .clear else {
526 |             (cell as? NSTextFieldCell)?.drawsBackground = false
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/BackgroundColorable.swift:22:10: note: mark the protocol requirement '_setBackgroundColor' 'async' to allow actor-isolated conformances
20 |
21 |     #if os(macOS)
22 |     func _setBackgroundColor(_ v: NSColor?)
   |          `- note: mark the protocol requirement '_setBackgroundColor' 'async' to allow actor-isolated conformances
23 |     #else
24 |     func _setBackgroundColor(_ v: UColor?)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:679:10: warning: main actor-isolated instance method '_setEditable' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
676 | }
677 |
678 | extension UTextField: _Editableable {
    |                       `- note: add '@preconcurrency' to the '_Editableable' conformance to defer isolation checking to run time
679 |     func _setEditable(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setEditable' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setEditable' to make this instance method not isolated to the actor
680 |         isEditable = v
681 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Editableable.swift:19:10: note: mark the protocol requirement '_setEditable' 'async' to allow actor-isolated conformances
17 |
18 | protocol _Editableable: Editableable {
19 |     func _setEditable(_ v: Bool)
   |          `- note: mark the protocol requirement '_setEditable' 'async' to allow actor-isolated conformances
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:685:10: warning: main actor-isolated instance method '_setAllowEditingTextAttributes' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
682 | }
683 |
684 | extension UTextField: _TextAttributesEditingAllowable {
    |                       `- note: add '@preconcurrency' to the '_TextAttributesEditingAllowable' conformance to defer isolation checking to run time
685 |     func _setAllowEditingTextAttributes(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setAllowEditingTextAttributes' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setAllowEditingTextAttributes' to make this instance method not isolated to the actor
686 |         allowsEditingTextAttributes = v
687 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAttributesEditingAllowable.swift:19:10: note: mark the protocol requirement '_setAllowEditingTextAttributes' 'async' to allow actor-isolated conformances
17 |
18 | protocol _TextAttributesEditingAllowable: TextAttributesEditingAllowable {
19 |     func _setAllowEditingTextAttributes(_ v: Bool)
   |          `- note: mark the protocol requirement '_setAllowEditingTextAttributes' 'async' to allow actor-isolated conformances
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:691:10: warning: main actor-isolated instance method '_setBezeled' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
688 | }
689 |
690 | extension UTextField: _Bezeledable {
    |                       `- note: add '@preconcurrency' to the '_Bezeledable' conformance to defer isolation checking to run time
691 |     func _setBezeled(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setBezeled' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setBezeled' to make this instance method not isolated to the actor
692 |         isBezeled = v
693 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Bezeledable.swift:19:10: note: mark the protocol requirement '_setBezeled' 'async' to allow actor-isolated conformances
17 |
18 | protocol _Bezeledable: Bezeledable {
19 |     func _setBezeled(_ v: Bool)
   |          `- note: mark the protocol requirement '_setBezeled' 'async' to allow actor-isolated conformances
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:697:10: warning: main actor-isolated instance method '_setFocusRingType' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
694 | }
695 |
696 | extension UTextField: _FocusRingTypeable {
    |                       `- note: add '@preconcurrency' to the '_FocusRingTypeable' conformance to defer isolation checking to run time
697 |     func _setFocusRingType(_ v: NSFocusRingType) {
    |          |- warning: main actor-isolated instance method '_setFocusRingType' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setFocusRingType' to make this instance method not isolated to the actor
698 |         focusRingType = v
699 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/FocusRingTypeable.swift:13:10: note: mark the protocol requirement '_setFocusRingType' 'async' to allow actor-isolated conformances
11 |
12 | protocol _FocusRingTypeable: FocusRingTypeable {
13 |     func _setFocusRingType(_ v: NSFocusRingType)
   |          `- note: mark the protocol requirement '_setFocusRingType' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:704:17: warning: main actor-isolated instance method 'refresh()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
700 | }
701 |
702 | extension UTextField: Refreshable {
    |                       `- note: add '@preconcurrency' to the 'Refreshable' conformance to defer isolation checking to run time
703 |     /// Refreshes using `RefreshHandler`
704 |     public func refresh() {
    |                 |- warning: main actor-isolated instance method 'refresh()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'refresh()' to make this instance method not isolated to the actor
705 |         if let statedText = _properties.statedText {
706 |             text(statedText())
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Refreshable.swift:2:10: note: mark the protocol requirement 'refresh()' 'async' to allow actor-isolated conformances
 1 | public protocol Refreshable: AnyObject {
 2 |     func refresh()
   |          `- note: mark the protocol requirement 'refresh()' 'async' to allow actor-isolated conformances
 3 | }
 4 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:712:10: warning: main actor-isolated instance method '_setEnabled' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
709 | }
710 |
711 | extension UTextField: _Enableable {
    |                       `- note: add '@preconcurrency' to the '_Enableable' conformance to defer isolation checking to run time
712 |     func _setEnabled(_ v: Bool) {
    |          |- warning: main actor-isolated instance method '_setEnabled' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setEnabled' to make this instance method not isolated to the actor
713 |         isEnabled = v
714 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Enableable.swift:19:10: note: mark the protocol requirement '_setEnabled' 'async' to allow actor-isolated conformances
17 |
18 | protocol _Enableable: Enableable {
19 |     func _setEnabled(_ v: Bool)
   |          `- note: mark the protocol requirement '_setEnabled' 'async' to allow actor-isolated conformances
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:718:10: warning: main actor-isolated instance method '_setFont' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
715 | }
716 |
717 | extension UTextField: _Fontable {
    |                       `- note: add '@preconcurrency' to the '_Fontable' conformance to defer isolation checking to run time
718 |     func _setFont(_ v: UFont?) {
    |          |- warning: main actor-isolated instance method '_setFont' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setFont' to make this instance method not isolated to the actor
719 |         font = v
720 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Fontable.swift:16:10: note: mark the protocol requirement '_setFont' 'async' to allow actor-isolated conformances
14 |
15 | protocol _Fontable: Fontable {
16 |     func _setFont(_ v: UFont?)
   |          `- note: mark the protocol requirement '_setFont' 'async' to allow actor-isolated conformances
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:724:10: warning: main actor-isolated instance method '_cleanup()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
721 | }
722 |
723 | extension UTextField: _Cleanupable {
    |                       `- note: add '@preconcurrency' to the '_Cleanupable' conformance to defer isolation checking to run time
724 |     func _cleanup() {
    |          |- warning: main actor-isolated instance method '_cleanup()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_cleanup()' to make this instance method not isolated to the actor
725 |         attributedStringValue = .init()
726 |         _innerDelegate.controlTextDidChange(.init(name: Notification.Name.init("")))
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Cleanupable.swift:13:10: note: mark the protocol requirement '_cleanup()' 'async' to allow actor-isolated conformances
11 |
12 | protocol _Cleanupable: Cleanupable {
13 |     func _cleanup()
   |          `- note: mark the protocol requirement '_cleanup()' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:731:9: warning: main actor-isolated property '_colorState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
728 | }
729 |
730 | extension UTextField: _Colorable {
    |                       `- note: add '@preconcurrency' to the '_Colorable' conformance to defer isolation checking to run time
731 |     var _colorState: UState<UColor> { properties.textColorState }
    |         `- warning: main actor-isolated property '_colorState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
732 |
733 |     func _setColor(_ v: NSColor?) {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Colorable.swift:19:9: note: '_colorState' declared here
17 |
18 | protocol _Colorable: Colorable {
19 |     var _colorState: State<UColor> { get }
   |         `- note: '_colorState' declared here
20 |
21 |     #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:733:10: warning: main actor-isolated instance method '_setColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
731 |     var _colorState: UState<UColor> { properties.textColorState }
732 |
733 |     func _setColor(_ v: NSColor?) {
    |          |- warning: main actor-isolated instance method '_setColor' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setColor' to make this instance method not isolated to the actor
734 |         let str = NSMutableAttributedString(attributedString: attributedStringValue)
735 |         if let v = v {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Colorable.swift:22:10: note: mark the protocol requirement '_setColor' 'async' to allow actor-isolated conformances
20 |
21 |     #if os(macOS)
22 |     func _setColor(_ v: NSColor?)
   |          `- note: mark the protocol requirement '_setColor' 'async' to allow actor-isolated conformances
23 |     #else
24 |     func _setColor(_ v: UColor?)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:745:10: warning: main actor-isolated instance method '_setTextAlignment(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
742 | }
743 |
744 | extension UTextField: _TextAligmentable {
    |                       `- note: add '@preconcurrency' to the '_TextAligmentable' conformance to defer isolation checking to run time
745 |     func _setTextAlignment(v: NSTextAlignment) {
    |          |- warning: main actor-isolated instance method '_setTextAlignment(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTextAlignment(v:)' to make this instance method not isolated to the actor
746 |         let p = NSMutableParagraphStyle()
747 |         p.alignment = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAligmentable.swift:12:10: note: mark the protocol requirement '_setTextAlignment(v:)' 'async' to allow actor-isolated conformances
10 |
11 | protocol _TextAligmentable: TextAligmentable {
12 |     func _setTextAlignment(v: NSTextAlignment)
   |          `- note: mark the protocol requirement '_setTextAlignment(v:)' 'async' to allow actor-isolated conformances
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:756:10: warning: main actor-isolated instance method '_setTextBind' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
753 | }
754 |
755 | extension UTextField: _TextBindable {
    |                       `- note: add '@preconcurrency' to the '_TextBindable' conformance to defer isolation checking to run time
756 |     func _setTextBind<A: AnyString>(_ binding: UIKitPlus.State<A>?) {
    |          |- warning: main actor-isolated instance method '_setTextBind' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTextBind' to make this instance method not isolated to the actor
757 |         _properties.textChangeListeners.append({ new in
758 |             binding?.wrappedValue = A.make(new)
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextBindable.swift:13:10: note: mark the protocol requirement '_setTextBind' 'async' to allow actor-isolated conformances
11 |
12 | protocol _TextBindable: TextBindable {
13 |     func _setTextBind<A: AnyString>(_ binding: State<A>?)
   |          `- note: mark the protocol requirement '_setTextBind' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:764:9: warning: main actor-isolated property '_currentText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
761 | }
762 |
763 | extension UTextField: _Textable {
    |                       `- note: add '@preconcurrency' to the '_Textable' conformance to defer isolation checking to run time
764 |     var _currentText: String { self.stringValue }
    |         `- warning: main actor-isolated property '_currentText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
765 |
766 |     var _statedText: AnyStringBuilder.Handler? {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:33:9: note: '_currentText' declared here
 31 |
 32 | protocol _Textable: Textable {
 33 |     var _currentText: String { get }
    |         `- note: '_currentText' declared here
 34 |     var _statedText: AnyStringBuilder.Handler? { get set }
 35 |     #if !os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:766:9: warning: main actor-isolated property '_statedText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
764 |     var _currentText: String { self.stringValue }
765 |
766 |     var _statedText: AnyStringBuilder.Handler? {
    |         `- warning: main actor-isolated property '_statedText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
767 |         get { _properties.statedText }
768 |         set { _properties.statedText = newValue }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:34:9: note: '_statedText' declared here
 32 | protocol _Textable: Textable {
 33 |     var _currentText: String { get }
 34 |     var _statedText: AnyStringBuilder.Handler? { get set }
    |         `- note: '_statedText' declared here
 35 |     #if !os(macOS)
 36 |     var _textChangeTransition: UIView.AnimationOptions? { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:771:10: warning: main actor-isolated instance method '_setText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
769 |     }
770 |
771 |     func _setText(_ v: NSAttributedString?) {
    |          |- warning: main actor-isolated instance method '_setText' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setText' to make this instance method not isolated to the actor
772 |         let selection = currentEditor()?.selectedRange
773 |         let wasEmpty = attributedStringValue.string.count == 0
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:39:10: note: mark the protocol requirement '_setText' 'async' to allow actor-isolated conformances
 37 |     #endif
 38 |
 39 |     func _setText(_ v: NSAttributedString?)
    |          `- note: mark the protocol requirement '_setText' 'async' to allow actor-isolated conformances
 40 | }
 41 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:785:10: warning: main actor-isolated instance method '_setTypingInterval' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
782 | }
783 |
784 | extension UTextField: _Typeable {
    |                       `- note: add '@preconcurrency' to the '_Typeable' conformance to defer isolation checking to run time
785 |     func _setTypingInterval(_ v: TimeInterval) {
    |          |- warning: main actor-isolated instance method '_setTypingInterval' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTypingInterval' to make this instance method not isolated to the actor
786 |         _properties.typingInterval = v
787 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Typeable.swift:16:10: note: mark the protocol requirement '_setTypingInterval' 'async' to allow actor-isolated conformances
14 |
15 | protocol _Typeable: Typeable {
16 |     func _setTypingInterval(_ v: TimeInterval)
   |          `- note: mark the protocol requirement '_setTypingInterval' 'async' to allow actor-isolated conformances
17 |     func _observeTypingState(_ v: State<Bool>)
18 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:789:10: warning: main actor-isolated instance method '_observeTypingState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
787 |     }
788 |
789 |     func _observeTypingState(_ v: UIKitPlus.State<Bool>) {
    |          |- warning: main actor-isolated instance method '_observeTypingState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_observeTypingState' to make this instance method not isolated to the actor
790 |         _properties.isTypingState.listen { [weak v] in
791 |             guard let v = v else { return }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Typeable.swift:17:10: note: mark the protocol requirement '_observeTypingState' 'async' to allow actor-isolated conformances
15 | protocol _Typeable: Typeable {
16 |     func _setTypingInterval(_ v: TimeInterval)
17 |     func _observeTypingState(_ v: State<Bool>)
   |          `- note: mark the protocol requirement '_observeTypingState' 'async' to allow actor-isolated conformances
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:802:9: warning: main actor-isolated property '_statedPlaceholder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
799 | }
800 |
801 | extension UTextField: _Placeholderable {
    |                       `- note: add '@preconcurrency' to the '_Placeholderable' conformance to defer isolation checking to run time
802 |     var _statedPlaceholder: AnyStringBuilder.Handler? {
    |         `- warning: main actor-isolated property '_statedPlaceholder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
803 |         get { _properties.statedPlaceholder }
804 |         set { _properties.statedPlaceholder = newValue }
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Placeholderable.swift:33:9: note: '_statedPlaceholder' declared here
 31 |
 32 | protocol _Placeholderable: Placeholderable {
 33 |     var _statedPlaceholder: AnyStringBuilder.Handler? { get set }
    |         `- note: '_statedPlaceholder' declared here
 34 |     #if !os(macOS)
 35 |     var _placeholderChangeTransition: UIView.AnimationOptions? { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:807:10: warning: main actor-isolated instance method '_setPlaceholder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
805 |     }
806 |
807 |     func _setPlaceholder(_ v: NSAttributedString?) {
    |          |- warning: main actor-isolated instance method '_setPlaceholder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setPlaceholder' to make this instance method not isolated to the actor
808 |         (cell as? NSTextFieldCell)?.placeholderAttributedString = nil // hack to update attributed string with changed paragraph style
809 |         (cell as? NSTextFieldCell)?.placeholderAttributedString = v
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Placeholderable.swift:38:10: note: mark the protocol requirement '_setPlaceholder' 'async' to allow actor-isolated conformances
 36 |     #endif
 37 |
 38 |     func _setPlaceholder(_ v: NSAttributedString?)
    |          `- note: mark the protocol requirement '_setPlaceholder' 'async' to allow actor-isolated conformances
 39 | }
 40 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:833:9: warning: main actor-isolated property '_tintState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
830 | }
831 |
832 | extension UTextField: _Tintable {
    |                       `- note: add '@preconcurrency' to the '_Tintable' conformance to defer isolation checking to run time
833 |     var _tintState: State<UColor> { properties.tintState }
    |         `- warning: main actor-isolated property '_tintState' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
834 |
835 |     func _setTint(_ v: NSColor?) {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Tintable.swift:19:9: note: '_tintState' declared here
17 |
18 | protocol _Tintable: Tintable {
19 |     var _tintState: State<UColor> { get }
   |         `- note: '_tintState' declared here
20 |
21 |     #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:835:10: warning: main actor-isolated instance method '_setTint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
833 |     var _tintState: State<UColor> { properties.tintState }
834 |
835 |     func _setTint(_ v: NSColor?) {
    |          |- warning: main actor-isolated instance method '_setTint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTint' to make this instance method not isolated to the actor
836 |         _tintColor = v
837 |         _updateCursorColor()
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Tintable.swift:22:10: note: mark the protocol requirement '_setTint' 'async' to allow actor-isolated conformances
20 |
21 |     #if os(macOS)
22 |     func _setTint(_ v: NSColor?)
   |          `- note: mark the protocol requirement '_setTint' 'async' to allow actor-isolated conformances
23 |     #else
24 |     func _setTint(_ v: UColor?)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:855:10: warning: main actor-isolated instance method '_setTextFieldContentType(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
851 | //}
852 |
853 | extension UTextField: _TextFieldContentTypeable {
    |                       `- note: add '@preconcurrency' to the '_TextFieldContentTypeable' conformance to defer isolation checking to run time
854 |     /// Works only since macOS 10.16 or 11 (Big Sur and higher)
855 |     func _setTextFieldContentType(v: TextFieldContentType) {
    |          |- warning: main actor-isolated instance method '_setTextFieldContentType(v:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |          `- note: add 'nonisolated' to '_setTextFieldContentType(v:)' to make this instance method not isolated to the actor
856 |         #if swift(>=5.3)
857 |         if #available(macOS 10.16, *) {
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldContentTypeable.swift:12:10: note: mark the protocol requirement '_setTextFieldContentType(v:)' 'async' to allow actor-isolated conformances
10 |
11 | protocol _TextFieldContentTypeable: TextFieldContentTypeable {
12 |     func _setTextFieldContentType(v: TextFieldContentType)
   |          `- note: mark the protocol requirement '_setTextFieldContentType(v:)' 'async' to allow actor-isolated conformances
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:864:19: warning: class '_Formatter' must restate inherited '@unchecked Sendable' conformance
862 | }
863 |
864 | fileprivate class _Formatter<TF>: NumberFormatter where TF: UTextField {
    |                   `- warning: class '_Formatter' must restate inherited '@unchecked Sendable' conformance
865 |     let tf: TF
866 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:539:38: warning: result of call to function returning 'Bool?' is unused
537 |     public func `return`() {
538 |         _innerDelegate.action()
539 |         _innerDelegate.newLineHandler?()
    |                                      `- warning: result of call to function returning 'Bool?' is unused
540 |     }
541 | }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:549:16: warning: main actor-isolated property 'target' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
547 |         parent = textField
548 |         super.init()
549 |         parent.target = self
    |                `- warning: main actor-isolated property 'target' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
550 |         parent.action = #selector(action)
551 |     }
AppKit.NSControl:4:19: note: mutation of this property is only permitted within the actor
 2 |     @MainActor public init(frame frameRect: NSRect)
 3 |     @MainActor public init?(coder: NSCoder)
 4 |     weak open var target: AnyObject? { get set }
   |                   `- note: mutation of this property is only permitted within the actor
 5 |     open var action: Selector? { get set }
 6 |     @MainActor open var tag: Int { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:550:16: warning: main actor-isolated property 'action' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
548 |         super.init()
549 |         parent.target = self
550 |         parent.action = #selector(action)
    |                `- warning: main actor-isolated property 'action' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
551 |     }
552 |
AppKit.NSControl:5:14: note: mutation of this property is only permitted within the actor
 3 |     @MainActor public init?(coder: NSCoder)
 4 |     weak open var target: AnyObject? { get set }
 5 |     open var action: Selector? { get set }
   |              `- note: mutation of this property is only permitted within the actor
 6 |     @MainActor open var tag: Int { get set }
 7 |     @MainActor open var ignoresMultiClick: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:563:16: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
560 |     var cancelOperationHandler: (() -> Bool)?
561 |
562 |     @objc func action() {
    |                `- note: add '@MainActor' to make instance method 'action()' part of global actor 'MainActor'
563 |         parent.properties._textFieldAction.forEach { $0(self.parent) }
    |                `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
564 |         parent.properties._textFieldEmptyAction.forEach { $0() }
565 |     }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:564:16: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
560 |     var cancelOperationHandler: (() -> Bool)?
561 |
562 |     @objc func action() {
    |                `- note: add '@MainActor' to make instance method 'action()' part of global actor 'MainActor'
563 |         parent.properties._textFieldAction.forEach { $0(self.parent) }
564 |         parent.properties._textFieldEmptyAction.forEach { $0() }
    |                `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
565 |     }
566 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:568:16: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
565 |     }
566 |
567 |     @objc func editingDidBegin() {
    |                `- note: add '@MainActor' to make instance method 'editingDidBegin()' part of global actor 'MainActor'
568 |         parent.properties._editingDidBegin.forEach { $0(self.parent) }
    |                `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
569 |     }
570 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:572:16: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
569 |     }
570 |
571 |     @objc private func invalidateTimer() {
    |                        `- note: add '@MainActor' to make instance method 'invalidateTimer()' part of global actor 'MainActor'
572 |         parent._properties.isTyping = false
    |                `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
573 |     }
574 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:576:16: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
    |                `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
578 |         parent._properties.isTyping = true
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:577:16: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
    |                `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
578 |         parent._properties.isTyping = true
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:577:84: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
    |                                                                                    `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
578 |         parent._properties.isTyping = true
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:578:16: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
578 |         parent._properties.isTyping = true
    |                `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
580 |         parent._properties.textChangeListeners.forEach {
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:579:16: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
578 |         parent._properties.isTyping = true
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
    |                `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
580 |         parent._properties.textChangeListeners.forEach {
581 |             $0(parent.attributedStringValue)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:580:16: warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
  9 |     lazy var _properties = PropertiesInternal()
    |              `- note: property declared here
 10 |     fileprivate lazy var _formatter = _Formatter(self)
 11 |
    :
573 |     }
574 |
575 |     @objc func editingChanged() {
    |                `- note: add '@MainActor' to make instance method 'editingChanged()' part of global actor 'MainActor'
576 |         parent._properties.typingTimer?.invalidate()
577 |         parent._properties.typingTimer = Timer.scheduledTimer(timeInterval: parent._properties.typingInterval, target: self, selector: #selector(invalidateTimer), userInfo: nil, repeats: false)
578 |         parent._properties.isTyping = true
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
580 |         parent._properties.textChangeListeners.forEach {
    |                `- warning: main actor-isolated property '_properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
581 |             $0(parent.attributedStringValue)
582 |         }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:581:23: warning: main actor-isolated property 'attributedStringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
579 |         parent.properties._editingChanged.forEach { $0(self.parent) }
580 |         parent._properties.textChangeListeners.forEach {
581 |             $0(parent.attributedStringValue)
    |                       `- warning: main actor-isolated property 'attributedStringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
582 |         }
583 |     }
AppKit.NSControl:25:25: note: property declared here
23 |     open var objectValue: Any? { get set }
24 |     open var stringValue: String { get set }
25 |     @NSCopying open var attributedStringValue: NSAttributedString { get set }
   |                         `- note: property declared here
26 |     open var intValue: Int32 { get set }
27 |     open var integerValue: Int { get set }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:591:14: warning: no method declared with Objective-C selector 'noop:'
589 |     func control(_ control: NSControl, textView: NSTextView, doCommandBy commandSelector: Selector) -> Bool {
590 |         switch commandSelector {
591 |         case "noop:": // any unsupported combination
    |              `- warning: no method declared with Objective-C selector 'noop:'
592 |             guard let event = NSApp.currentEvent else {
593 |                 return false
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:892:16: warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 89 |     }
 90 |
 91 |     fileprivate lazy var _innerDelegate = _InnerDelegate(self)
    |                          `- note: property declared here
 92 |
 93 |     open override var stringValue: String {
    :
890 |         var origString = origString
891 |         guard let origReplaceRange = Range<String.Index>.init(NSRange(location: 0, length: origSelRange.location + origSelRange.length), in: origString) else {
892 |             tf._innerDelegate.editingChanged()
    |                `- warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
893 |             return true
894 |         }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:899:16: warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 89 |     }
 90 |
 91 |     fileprivate lazy var _innerDelegate = _InnerDelegate(self)
    |                          `- note: property declared here
 92 |
 93 |     open override var stringValue: String {
    :
897 |         var replacementString = String(partialStringPtr.pointee)
898 |         guard let range = Range<String.Index>.init(NSRange(location: 0, length: origSelRange.location), in: replacementString) else {
899 |             tf._innerDelegate.editingChanged()
    |                `- warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
900 |             return true
901 |         }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:907:28: warning: main actor-isolated property 'outsideDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 32 |     var __centerY: UIKitPlus.State<CGFloat> { $centerY }
 33 |
 34 |     fileprivate weak var outsideDelegate: TextFieldDelegate?
    |                          `- note: property declared here
 35 |
 36 |     public init (_ string: AnyString...) {
    :
905 |         }
906 |
907 |         if let result = tf.outsideDelegate?.textField?(self.tf, shouldChangeCharactersIn: origSelRange, replacementString: replacementString) {
    |                            `- warning: main actor-isolated property 'outsideDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
908 |             return result
909 |         }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:910:29: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
908 |             return result
909 |         }
910 |         if let handler = tf.properties._shouldFormatCharacters {
    |                             `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
911 |             let origStr = self.tf.stringValue
912 |             handler(self.tf, origSelRange, replacementString)
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:911:35: warning: main actor-isolated property 'stringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 91 |     fileprivate lazy var _innerDelegate = _InnerDelegate(self)
 92 |
 93 |     open override var stringValue: String {
    |                       `- note: property declared here
 94 |         get { attributedStringValue.string }
 95 |         set { attributedStringValue = .init(string: newValue) }
    :
909 |         }
910 |         if let handler = tf.properties._shouldFormatCharacters {
911 |             let origStr = self.tf.stringValue
    |                                   `- warning: main actor-isolated property 'stringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
912 |             handler(self.tf, origSelRange, replacementString)
913 |             if origStr != self.tf.stringValue {
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:913:35: warning: main actor-isolated property 'stringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 91 |     fileprivate lazy var _innerDelegate = _InnerDelegate(self)
 92 |
 93 |     open override var stringValue: String {
    |                       `- note: property declared here
 94 |         get { attributedStringValue.string }
 95 |         set { attributedStringValue = .init(string: newValue) }
    :
911 |             let origStr = self.tf.stringValue
912 |             handler(self.tf, origSelRange, replacementString)
913 |             if origStr != self.tf.stringValue {
    |                                   `- warning: main actor-isolated property 'stringValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
914 |                 tf._innerDelegate.editingChanged()
915 |             }
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:914:20: warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 89 |     }
 90 |
 91 |     fileprivate lazy var _innerDelegate = _InnerDelegate(self)
    |                          `- note: property declared here
 92 |
 93 |     open override var stringValue: String {
    :
912 |             handler(self.tf, origSelRange, replacementString)
913 |             if origStr != self.tf.stringValue {
914 |                 tf._innerDelegate.editingChanged()
    |                    `- warning: main actor-isolated property '_innerDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
915 |             }
916 |             return false
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+TextField.swift:918:29: warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
  6 |     public var declarativeView: UTextField { self }
  7 |     public typealias P = Properties<UTextField>
  8 |     public lazy var properties = P()
    |                     `- note: property declared here
  9 |     lazy var _properties = PropertiesInternal()
 10 |     fileprivate lazy var _formatter = _Formatter(self)
    :
916 |             return false
917 |         }
918 |         if let handler = tf.properties._shouldChangeCharacters {
    |                             `- warning: main actor-isolated property 'properties' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
919 |             return handler(tf, origSelRange, replacementString)
920 |         }
/Users/admin/builder/spi-builder-workspace/Classes/Structs/LivePreview.swift:147:16: warning: sending 'block' risks causing data races; this is an error in the Swift 6 language mode
145 |
146 |     public init(@BodyBuilder block: BodyBuilder.SingleView) {
147 |         view = UView(block: block).edgesToSuperview()
    |                |- warning: sending 'block' risks causing data races; this is an error in the Swift 6 language mode
    |                `- note: sending task-isolated 'block' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
148 |     }
149 |
/Users/admin/builder/spi-builder-workspace/Classes/Views/MacOS/MacOS+ImageView.swift:139:9: warning: cannot access property '_imageLoader' with a non-sendable type 'ImageLoader' from nonisolated deinit; this is an error in the Swift 6 language mode
137 |
138 |     deinit {
139 |         _imageLoader.cancel()
    |         `- warning: cannot access property '_imageLoader' with a non-sendable type 'ImageLoader' from nonisolated deinit; this is an error in the Swift 6 language mode
140 |     }
141 |
/Users/admin/builder/spi-builder-workspace/Classes/Objects/ImageLoader.swift:24:12: note: class 'ImageLoader' does not conform to the 'Sendable' protocol
 22 | }
 23 |
 24 | open class ImageLoader {
    |            `- note: class 'ImageLoader' does not conform to the 'Sendable' protocol
 25 |     lazy var fm = FileManager()
 26 |
Build complete! (30.40s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "UIKitPlus",
  "name" : "UIKitPlus",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "UIKitPlus",
      "targets" : [
        "UIKitPlus"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UIKitPlus",
      "module_type" : "SwiftTarget",
      "name" : "UIKitPlus",
      "path" : "Classes",
      "product_memberships" : [
        "UIKitPlus"
      ],
      "sources" : [
        "Controllers/AlertController.swift",
        "Controllers/BaseApp/BaseApp+MainScene.swift",
        "Controllers/BaseApp/BaseApp+Scene.swift",
        "Controllers/BaseApp/BaseApp+Shortcut.swift",
        "Controllers/BaseApp/BaseApp+Shortcuts.swift",
        "Controllers/BaseApp/BaseApp.swift",
        "Controllers/BaseApp/LifeCycle.swift",
        "Controllers/BaseApp/SceneScreenType.swift",
        "Controllers/BaseApp/_Scene.swift",
        "Controllers/BaseApp/_SceneDelegate.swift",
        "Controllers/Exports.swift",
        "Controllers/FormViewController.swift",
        "Controllers/MacApp.swift",
        "Controllers/MacOS+NavigationController.swift",
        "Controllers/MediaPicker.swift",
        "Controllers/Menu.swift",
        "Controllers/MenuItem.swift",
        "Controllers/NavigationController.swift",
        "Controllers/NotImplementedViewController.swift",
        "Controllers/StatusItem.swift",
        "Controllers/TabViewController.swift",
        "Controllers/ViewController.swift",
        "Controllers/Window.swift",
        "Enums/ContentInsetAdjustment.swift",
        "Enums/DeclarativeConstraintAnySide.swift",
        "Enums/DeclarativeConstraintCSide.swift",
        "Enums/DeclarativeConstraintDSide.swift",
        "Enums/DeclarativeConstraintXSide.swift",
        "Enums/DeclarativeConstraintYSide.swift",
        "Enums/Language.swift",
        "Enums/LocalizedString.swift",
        "Enums/MacOS+TextFieldContentType.swift",
        "Enums/NavigationControllerStyle.swift",
        "Enums/PushNotificationOption.swift",
        "Enums/PushNotificationsAuthorizationStatus.swift",
        "Enums/RootTransitionAnimation.swift",
        "Enums/SegmentControlableItem.swift",
        "Enums/StatusBarStyle.swift",
        "Enums/TextFieldContentType.swift",
        "Enums/TextItemInteraction.swift",
        "Extensions/Array+Diff.swift",
        "Extensions/AttrStr+Concat.swift",
        "Extensions/AttrStr+Joined.swift",
        "Extensions/ClosedRange+NSRange.swift",
        "Extensions/CollectionView+Cellable.swift",
        "Extensions/ConstraintValueType+Operators.swift",
        "Extensions/DeclarativeProtocol+Alpha.swift",
        "Extensions/DeclarativeProtocol+Apply.swift",
        "Extensions/DeclarativeProtocol+Background.swift",
        "Extensions/DeclarativeProtocol+Borders.swift",
        "Extensions/DeclarativeProtocol+Bounds.swift",
        "Extensions/DeclarativeProtocol+Click.swift",
        "Extensions/DeclarativeProtocol+CompressionResistance.swift",
        "Extensions/DeclarativeProtocol+ConstraintLinks.swift",
        "Extensions/DeclarativeProtocol+Constraints.swift",
        "Extensions/DeclarativeProtocol+ConstraintsRelative.swift",
        "Extensions/DeclarativeProtocol+ConstraintsSolo.swift",
        "Extensions/DeclarativeProtocol+ConstraintsSuper.swift",
        "Extensions/DeclarativeProtocol+Corners.swift",
        "Extensions/DeclarativeProtocol+DeclarativeView.swift",
        "Extensions/DeclarativeProtocol+Gesture.swift",
        "Extensions/DeclarativeProtocol+Hidden.swift",
        "Extensions/DeclarativeProtocol+Hover.swift",
        "Extensions/DeclarativeProtocol+HuggingPriority.swift",
        "Extensions/DeclarativeProtocol+Itself.swift",
        "Extensions/DeclarativeProtocol+LayoutMargin.swift",
        "Extensions/DeclarativeProtocol+LayoutSubviews.swift",
        "Extensions/DeclarativeProtocol+LongPress.swift",
        "Extensions/DeclarativeProtocol+Magnification.swift",
        "Extensions/DeclarativeProtocol+MovedToSuperview.swift",
        "Extensions/DeclarativeProtocol+NextResponder.swift",
        "Extensions/DeclarativeProtocol+Opacity.swift",
        "Extensions/DeclarativeProtocol+Pan.swift",
        "Extensions/DeclarativeProtocol+Pinch.swift",
        "Extensions/DeclarativeProtocol+Press.swift",
        "Extensions/DeclarativeProtocol+Rasterize.swift",
        "Extensions/DeclarativeProtocol+Rotation.swift",
        "Extensions/DeclarativeProtocol+ScreenEdgePan.swift",
        "Extensions/DeclarativeProtocol+Shadow.swift",
        "Extensions/DeclarativeProtocol+Swipe.swift",
        "Extensions/DeclarativeProtocol+Tag.swift",
        "Extensions/DeclarativeProtocol+Tap.swift",
        "Extensions/DeclarativeProtocol+Tint.swift",
        "Extensions/DeclarativeProtocol+UserInteraction.swift",
        "Extensions/NSEvent+Key.swift",
        "Extensions/NSLayoutConstraint+Activated.swift",
        "Extensions/NSLayoutConstraint+AllAttributes.swift",
        "Extensions/NSLayoutConstraint+Update.swift",
        "Extensions/NSSound+System.swift",
        "Extensions/NSView+BringToFront.swift",
        "Extensions/NavigationController+FadeTo.swift",
        "Extensions/NotificationCenter+Name.swift",
        "Extensions/Number+ConstraintValue.swift",
        "Extensions/Numeric+Device.swift",
        "Extensions/String+AttributedString.swift",
        "Extensions/String+LocalizedString.swift",
        "Extensions/String+SegmentControlable.swift",
        "Extensions/TableView+Cellable.swift",
        "Extensions/UIColor+Aplha.swift",
        "Extensions/UIColor+Dynamic.swift",
        "Extensions/UIColor+Hex.swift",
        "Extensions/UIControl+ActionHandler.swift",
        "Extensions/UIDevice+Model.swift",
        "Extensions/UIDeviceOrientation+Description.swift",
        "Extensions/UIFont+Family.swift",
        "Extensions/UIFont+PrintAll.swift",
        "Extensions/UIGestureRecognizer+GestureRecognizerable.swift",
        "Extensions/UIImage+Blur.swift",
        "Extensions/UIImage+Resize.swift",
        "Extensions/UIImage+SegmentControlable.swift",
        "Extensions/UIInterfaceOrientation+Description.swift",
        "Extensions/UIViewController+Body.swift",
        "Extensions/UIVisualEffect+Effects.swift",
        "Extensions/UNAuthorizationStatus+Status.swift",
        "Extensions/View+Add.swift",
        "Extensions/View+Body.swift",
        "Extensions/View+Menuable.swift",
        "Extensions/View+SafeArea.swift",
        "Extensions/View+Shake.swift",
        "Extensions/View+ViewWithTag.swift",
        "Extensions/WrappedViewControllerable+Hidden.swift",
        "Objects/Animation.swift",
        "Objects/AttributedString.swift",
        "Objects/ClickGestureRecognizer.swift",
        "Objects/ForEach.swift",
        "Objects/GestureDelegator.swift",
        "Objects/GestureTracker.swift",
        "Objects/HoverGestureRecognizer.swift",
        "Objects/ImageLoader.swift",
        "Objects/ImpactFeedback.swift",
        "Objects/Localization.swift",
        "Objects/LongPressGestureRecognizer.swift",
        "Objects/MagnificationGestureRecognizer.swift",
        "Objects/PanGestureRecognizer.swift",
        "Objects/ParagraphStyle.swift",
        "Objects/PinchGestureRecognizer.swift",
        "Objects/PreConstraint.swift",
        "Objects/PressGestureRecognizer.swift",
        "Objects/Properties.swift",
        "Objects/PropertiesInternal.swift",
        "Objects/RotationGestureRecognizer.swift",
        "Objects/ScreenEdgePanGestureRecognizer.swift",
        "Objects/SwipeGestureRecognizer.swift",
        "Objects/TapGestureRecognizer.swift",
        "Objects/TextViewDelegate.swift",
        "Objects/UIViewPropertyAnimator.swift",
        "Protocols/Alternateable.swift",
        "Protocols/AnyScene.swift",
        "Protocols/ArrowPositionable.swift",
        "Protocols/BackgroundColorable.swift",
        "Protocols/BezelStyleable.swift",
        "Protocols/Bezeledable.swift",
        "Protocols/BodyBuilderItem.swift",
        "Protocols/Borderedable.swift",
        "Protocols/BulletsEchoable.swift",
        "Protocols/Cellable.swift",
        "Protocols/Cleanupable.swift",
        "Protocols/Colorable.swift",
        "Protocols/ConstraintValue.swift",
        "Protocols/Contextable.swift",
        "Protocols/Continuousable.swift",
        "Protocols/ControlStateable.swift",
        "Protocols/DeclarativeProtocol.swift",
        "Protocols/DeclarativeProtocolInternal.swift",
        "Protocols/EditableStackView.swift",
        "Protocols/Editableable.swift",
        "Protocols/Enableable.swift",
        "Protocols/FirstResponderRefusable.swift",
        "Protocols/FocusRingTypeable.swift",
        "Protocols/Fontable.swift",
        "Protocols/GestureDelegatorable.swift",
        "Protocols/GestureRecognizerable.swift",
        "Protocols/GestureTrackable.swift",
        "Protocols/Hiddenable.swift",
        "Protocols/Identable.swift",
        "Protocols/KeyMaskable.swift",
        "Protocols/Keyable.swift",
        "Protocols/Keyboardable.swift",
        "Protocols/Menuable.swift",
        "Protocols/Messageable.swift",
        "Protocols/MixedStateAllowable.swift",
        "Protocols/MultiClickIgnorable.swift",
        "Protocols/NavigationControllerable.swift",
        "Protocols/Placeholderable.swift",
        "Protocols/PullsDownable.swift",
        "Protocols/Refreshable.swift",
        "Protocols/Scrollable.swift",
        "Protocols/Secureable.swift",
        "Protocols/SegmentControlable.swift",
        "Protocols/SideViewProtocol.swift",
        "Protocols/Soundable.swift",
        "Protocols/StackForEach.swift",
        "Protocols/SwiftUIable.swift",
        "Protocols/Taggable.swift",
        "Protocols/TextAdjustsFontSizeable.swift",
        "Protocols/TextAligmentable.swift",
        "Protocols/TextAttributesEditingAllowable.swift",
        "Protocols/TextAutocapitalizationable.swift",
        "Protocols/TextAutocorrectionable.swift",
        "Protocols/TextBindable.swift",
        "Protocols/TextFieldContentTypeable.swift",
        "Protocols/TextFieldDelegate.swift",
        "Protocols/TextFieldLeftViewable.swift",
        "Protocols/TextFieldRightViewable.swift",
        "Protocols/TextLineBreakModeable.swift",
        "Protocols/TextLineable.swift",
        "Protocols/TextScaleable.swift",
        "Protocols/Textable.swift",
        "Protocols/Tintable.swift",
        "Protocols/Titleable.swift",
        "Protocols/Typeable.swift",
        "Protocols/UIButtonable.swift",
        "Protocols/UICollectionViewable.swift",
        "Protocols/UILabelable.swift",
        "Protocols/UIScrollViewable.swift",
        "Protocols/UITableViewable.swift",
        "Protocols/UIViewable.swift",
        "Protocols/ViewTransitionable.swift",
        "Protocols/WrappedViewControllerable.swift",
        "Structs/AppBuilder.swift",
        "Structs/BodyBuilder.swift",
        "Structs/BodyBuilderItems.swift",
        "Structs/Borders.swift",
        "Structs/CodableState.swift",
        "Structs/ConstraintValueType.swift",
        "Structs/CustomCorners.swift",
        "Structs/DeclarativeViewConstraints.swift",
        "Structs/ExpressableState.swift",
        "Structs/GesturesBuilder.swift",
        "Structs/ImageReloadingStyle.swift",
        "Structs/InnerState.swift",
        "Structs/LivePreview.swift",
        "Structs/PreviewBuilder.swift",
        "Structs/PreviewBuilderItem.swift",
        "Structs/ShortcutBuilder.swift",
        "Structs/Spoken.swift",
        "Structs/State.swift",
        "Structs/StateStringBuilder.swift",
        "Structs/UILayoutPriority.swift",
        "Structs/ViewContext.swift",
        "Styles/TextFieldStyle.swift",
        "Views/MacOS/MacOS+Button.swift",
        "Views/MacOS/MacOS+ImageView.swift",
        "Views/MacOS/MacOS+ScrollView.swift",
        "Views/MacOS/MacOS+Text.swift",
        "Views/MacOS/MacOS+TextField.swift",
        "Views/MacOS/MacOS+VisualEffectView.swift",
        "Views/MacOS/PopupButton.swift",
        "Views/MacOS/SecureTextField.swift",
        "Views/Not-MacOS/Button.swift",
        "Views/Not-MacOS/Collection.swift",
        "Views/Not-MacOS/CollectionDynamicCell.swift",
        "Views/Not-MacOS/CollectionView.swift",
        "Views/Not-MacOS/CollectionViewAlignedFlowLayout.swift",
        "Views/Not-MacOS/CollectionViewCell.swift",
        "Views/Not-MacOS/CollectionViewFlowLayout.swift",
        "Views/Not-MacOS/ControlView.swift",
        "Views/Not-MacOS/DatePickerView.swift",
        "Views/Not-MacOS/DynamicPickerView.swift",
        "Views/Not-MacOS/ImageView.swift",
        "Views/Not-MacOS/InputView.swift",
        "Views/Not-MacOS/LayerView.swift",
        "Views/Not-MacOS/List.swift",
        "Views/Not-MacOS/ListDynamicCell.swift",
        "Views/Not-MacOS/PickerView.swift",
        "Views/Not-MacOS/RefreshControl.swift",
        "Views/Not-MacOS/ScrollView.swift",
        "Views/Not-MacOS/SegmentedControl.swift",
        "Views/Not-MacOS/SliderView.swift",
        "Views/Not-MacOS/StaticListCell.swift",
        "Views/Not-MacOS/Stepper.swift",
        "Views/Not-MacOS/TableView.swift",
        "Views/Not-MacOS/TableViewCell.swift",
        "Views/Not-MacOS/Text.swift",
        "Views/Not-MacOS/TextField.swift",
        "Views/Not-MacOS/TextView.swift",
        "Views/Not-MacOS/Toggle.swift",
        "Views/Not-MacOS/VerificationCodeView.swift",
        "Views/Not-MacOS/VisualEffectView.swift",
        "Views/Not-MacOS/WrappedViewControllerView.swift",
        "Views/Universal/ActivityIndicator.swift",
        "Views/Universal/BarButtonItemView.swift",
        "Views/Universal/BaseView.swift",
        "Views/Universal/HScrollStack.swift",
        "Views/Universal/HSpace.swift",
        "Views/Universal/HStack.swift",
        "Views/Universal/HUD.swift",
        "Views/Universal/Space.swift",
        "Views/Universal/StackView.swift",
        "Views/Universal/VScrollStack.swift",
        "Views/Universal/VSpace.swift",
        "Views/Universal/VStack.swift",
        "Views/Universal/View.swift",
        "Views/Universal/WrapperView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.