The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build UIKitPlus, reference master (f1d23d), with Swift 6.1 for macOS (SPM) on 15 Jun 2025 21:53:20 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[174/296] Compiling UIKitPlus ContentInsetAdjustment.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[175/296] Compiling UIKitPlus DeclarativeConstraintAnySide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[176/296] Compiling UIKitPlus MacOS+VisualEffectView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[177/296] Compiling UIKitPlus PopupButton.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[178/296] Compiling UIKitPlus SecureTextField.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[179/296] Compiling UIKitPlus Button.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[180/296] Compiling UIKitPlus Collection.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[181/296] Compiling UIKitPlus CollectionDynamicCell.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[182/296] Compiling UIKitPlus CollectionView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[183/296] Compiling UIKitPlus CollectionViewAlignedFlowLayout.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[184/296] Compiling UIKitPlus CollectionViewCell.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[185/296] Compiling UIKitPlus CollectionViewFlowLayout.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[186/296] Compiling UIKitPlus ControlView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[187/296] Compiling UIKitPlus DatePickerView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[188/296] Compiling UIKitPlus DynamicPickerView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[189/296] Compiling UIKitPlus ImageView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[190/296] Compiling UIKitPlus InputView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[191/296] Compiling UIKitPlus LayerView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[192/296] Compiling UIKitPlus List.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[193/296] Compiling UIKitPlus ListDynamicCell.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[194/296] Compiling UIKitPlus PickerView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[195/296] Compiling UIKitPlus RefreshControl.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[196/296] Compiling UIKitPlus ScrollView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[197/296] Compiling UIKitPlus SegmentedControl.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[198/296] Compiling UIKitPlus SliderView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[199/296] Compiling UIKitPlus StaticListCell.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[200/296] Compiling UIKitPlus Stepper.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[201/296] Compiling UIKitPlus TableView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[202/296] Compiling UIKitPlus TableViewCell.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[203/296] Compiling UIKitPlus Text.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[204/296] Compiling UIKitPlus TextField.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[205/296] Compiling UIKitPlus TextView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[206/296] Compiling UIKitPlus Toggle.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[207/296] Compiling UIKitPlus VerificationCodeView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[208/296] Compiling UIKitPlus VisualEffectView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[209/296] Compiling UIKitPlus WrappedViewControllerView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[210/296] Compiling UIKitPlus ActivityIndicator.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[211/296] Compiling UIKitPlus BarButtonItemView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[212/296] Compiling UIKitPlus BaseView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[213/296] Compiling UIKitPlus HScrollStack.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[214/296] Compiling UIKitPlus HSpace.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[215/296] Compiling UIKitPlus HStack.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[216/296] Compiling UIKitPlus HUD.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[217/296] Compiling UIKitPlus Space.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[218/296] Compiling UIKitPlus StackView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[219/296] Compiling UIKitPlus VScrollStack.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[220/296] Compiling UIKitPlus VSpace.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[221/296] Compiling UIKitPlus VStack.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[222/296] Compiling UIKitPlus View.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[223/296] Compiling UIKitPlus WrapperView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift:11:42: warning: 'HUD' is deprecated: renamed to 'UHUD'
  9 |
 10 | open class UHUD: UView {
 11 |     override public var declarativeView: HUD { return self }
    |                                          |- warning: 'HUD' is deprecated: renamed to 'UHUD'
    |                                          `- note: use 'UHUD' instead
 12 |
 13 |     var imageHeight: CGFloat = 50
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift:252:25: warning: 'StackView' is deprecated: renamed to 'UStackView'
250 |     #if os(macOS)
251 |     fileprivate func flatten(_ orientation: NSUserInterfaceLayoutOrientation) -> BaseView {
252 |         let stackView = StackView().orientation(orientation)
    |                         |- warning: 'StackView' is deprecated: renamed to 'UStackView'
    |                         `- note: use 'UStackView' instead
253 |         forEach { stackView.add(item: $0) }
254 |         return stackView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:207:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
205 |             _touchPanHandler?(.began, .zero, .zero)
206 |         case .changed:
207 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
208 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
209 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:213:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
211 |             }
212 |         case .ended:
213 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
214 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
215 |                 scrollLastDeltaPoint.y += event.scrollingDeltaY
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:224:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
222 |             }
223 |         case .cancelled:
224 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
225 |                 _touchPanHandler?(.cancelled, .zero, .zero)
226 |                 self.scrollBeganPoint = nil
/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift:233:20: warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
231 |             break
232 |         default:
233 |             if let scrollBeganPoint = scrollBeganPoint {
    |                    `- warning: value 'scrollBeganPoint' was defined but never used; consider replacing with boolean test
234 |                 print(event)
235 |                 scrollLastDeltaPoint.x += event.scrollingDeltaX
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[224/296] Compiling UIKitPlus Borders.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[225/296] Compiling UIKitPlus CodableState.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[226/296] Compiling UIKitPlus ConstraintValueType.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[227/296] Compiling UIKitPlus CustomCorners.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[228/296] Compiling UIKitPlus DeclarativeViewConstraints.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[229/296] Compiling UIKitPlus ExpressableState.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[230/296] Compiling UIKitPlus GesturesBuilder.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[231/296] Compiling UIKitPlus ImageReloadingStyle.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[232/296] Compiling UIKitPlus InnerState.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[233/296] Compiling UIKitPlus LivePreview.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[234/296] Compiling UIKitPlus PreviewBuilder.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[235/296] Compiling UIKitPlus PreviewBuilderItem.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[236/296] Compiling UIKitPlus ShortcutBuilder.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[237/296] Compiling UIKitPlus Spoken.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[238/296] Compiling UIKitPlus State.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[239/296] Compiling UIKitPlus StateStringBuilder.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[240/296] Compiling UIKitPlus UILayoutPriority.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[241/296] Compiling UIKitPlus ViewContext.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[242/296] Compiling UIKitPlus TextFieldStyle.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[243/296] Compiling UIKitPlus MacOS+Button.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[244/296] Compiling UIKitPlus MacOS+ImageView.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[245/296] Compiling UIKitPlus MacOS+ScrollView.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[246/296] Compiling UIKitPlus MacOS+Text.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[247/296] Compiling UIKitPlus MacOS+TextField.swift
/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: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/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[248/296] Compiling UIKitPlus Identable.swift
[249/296] Compiling UIKitPlus KeyMaskable.swift
[250/296] Compiling UIKitPlus Keyable.swift
[251/296] Compiling UIKitPlus Keyboardable.swift
[252/296] Compiling UIKitPlus Menuable.swift
[253/296] Compiling UIKitPlus Messageable.swift
[254/296] Compiling UIKitPlus MixedStateAllowable.swift
[255/296] Compiling UIKitPlus MultiClickIgnorable.swift
[256/296] Compiling UIKitPlus NavigationControllerable.swift
[257/296] Compiling UIKitPlus Placeholderable.swift
[258/296] Compiling UIKitPlus PullsDownable.swift
[259/296] Compiling UIKitPlus Refreshable.swift
[260/296] Compiling UIKitPlus Scrollable.swift
[261/296] Compiling UIKitPlus Secureable.swift
[262/296] Compiling UIKitPlus SegmentControlable.swift
[263/296] Compiling UIKitPlus SideViewProtocol.swift
[264/296] Compiling UIKitPlus Soundable.swift
[265/296] Compiling UIKitPlus StackForEach.swift
[266/296] Compiling UIKitPlus SwiftUIable.swift
[267/296] Compiling UIKitPlus Taggable.swift
[268/296] Compiling UIKitPlus TextAdjustsFontSizeable.swift
[269/296] Compiling UIKitPlus TextAligmentable.swift
[270/296] Compiling UIKitPlus TextAttributesEditingAllowable.swift
[271/296] Compiling UIKitPlus TextAutocapitalizationable.swift
[272/296] Compiling UIKitPlus DeclarativeConstraintCSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[273/296] Compiling UIKitPlus DeclarativeConstraintDSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[274/296] Compiling UIKitPlus DeclarativeConstraintXSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[275/296] Compiling UIKitPlus DeclarativeConstraintYSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[276/296] Compiling UIKitPlus Language.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[277/296] Compiling UIKitPlus LocalizedString.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[278/296] Compiling UIKitPlus MacOS+TextFieldContentType.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[279/296] Compiling UIKitPlus NavigationControllerStyle.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[280/296] Compiling UIKitPlus PushNotificationOption.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[281/296] Compiling UIKitPlus PushNotificationsAuthorizationStatus.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[282/296] Compiling UIKitPlus RootTransitionAnimation.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[283/296] Compiling UIKitPlus SegmentControlableItem.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[284/296] Compiling UIKitPlus StatusBarStyle.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[285/296] Compiling UIKitPlus TextFieldContentType.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[286/296] Compiling UIKitPlus TextItemInteraction.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[287/296] Compiling UIKitPlus Array+Diff.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[288/296] Compiling UIKitPlus AttrStr+Concat.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[289/296] Compiling UIKitPlus AttrStr+Joined.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[290/296] Compiling UIKitPlus ClosedRange+NSRange.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[291/296] Compiling UIKitPlus CollectionView+Cellable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[292/296] Compiling UIKitPlus ConstraintValueType+Operators.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[293/296] Compiling UIKitPlus DeclarativeProtocol+Alpha.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[294/296] Compiling UIKitPlus DeclarativeProtocol+Apply.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[295/296] Compiling UIKitPlus DeclarativeProtocol+Background.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[296/296] Compiling UIKitPlus DeclarativeProtocol+Borders.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
BUILD FAILURE 6.1 macosSpm