The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build UIKitPlus, reference master (6932b7), with Swift 6.1 for watchOS using Xcode 16.3 on 29 Apr 2025 12:41:58 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme UIKitPlus -destination generic/platform=watchOS

Build Log

open class UStepper: UIStepper, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:5:12: note: add stubs for conformance
open class UStepper: UIStepper, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: protocol requires property 'tag' with type 'Int'
    var tag: Int { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:33:9: error: 'super' cannot be used in class 'UStepper' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:33:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:34:14: error: cannot assign to value: 'value' is a method
        self.value = value
        ~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:34:22: error: no 'value' candidates produce the expected contextual result type '(Double) -> UStepper'
        self.value = value
                     ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:32:19: note: 'value' produces 'Double', not the expected contextual result type '(Double) -> UStepper'
    public init(_ value: Double) {
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:32:19: note: 'value' produces 'Double', not the expected contextual result type '(State<Double>) -> UStepper'
    public init(_ value: Double) {
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:39:9: error: 'super' cannot be used in class 'UStepper' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:39:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:41:14: error: cannot assign to value: 'value' is a method
        self.value = state.wrappedValue
        ~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:41:28: error: no 'wrappedValue' candidates produce the expected contextual result type '(Double) -> UStepper'
        self.value = state.wrappedValue
                           ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(Double) -> UStepper'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(State<Double>) -> UStepper'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:46:9: error: 'super' cannot be used in class 'UStepper' because it has no superclass
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:55:9: error: cannot find 'translatesAutoresizingMaskIntoConstraints' in scope
        translatesAutoresizingMaskIntoConstraints = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:56:9: error: cannot find 'addTarget' in scope
        addTarget(self, action: #selector(valueChanged), for: .valueChanged)
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:56:64: error: cannot infer contextual base in reference to member 'valueChanged'
        addTarget(self, action: #selector(valueChanged), for: .valueChanged)
                                                              ~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:60:9: error: 'super' cannot be used in class 'UStepper' because it has no superclass
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:65:9: error: 'super' cannot be used in class 'UStepper' because it has no superclass
        super.didMoveToSuperview()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:82:22: error: type of expression is ambiguous without a type annotation
        _valueChanged?(value)
        ~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:83:38: error: no 'value' candidates produce the expected contextual result type 'Double'
        valueBinding?.wrappedValue = value
                                     ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:139:17: note: 'value' produces '(Double) -> UStepper', not the expected contextual result type 'Double'
    public func value(_ value: Double) -> Self {
                ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:146:17: note: 'value' produces '(State<Double>) -> UStepper', not the expected contextual result type 'Double'
    public func value(_ state: UIKitPlus.State<Double>) -> Self {
                ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:96:9: error: cannot assign to value: 'isContinuous' is a method
        isContinuous = value
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:96:24: error: no 'value' candidates produce the expected contextual result type '(Bool) -> Self'
        isContinuous = value
                       ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:94:32: note: 'value' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public func isContinuous(_ value: Bool = true) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:94:32: note: 'value' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public func isContinuous(_ value: Bool = true) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:103:9: error: cannot assign to value: 'isContinuous' is a method
        isContinuous = state.wrappedValue
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:103:30: error: no 'wrappedValue' candidates produce the expected contextual result type '(Bool) -> Self'
        isContinuous = state.wrappedValue
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:111:9: error: cannot assign to value: 'autorepeat' is a method
        autorepeat = value
        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:111:22: error: no 'value' candidates produce the expected contextual result type '(Bool) -> Self'
        autorepeat = value
                     ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:109:30: note: 'value' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public func autorepeat(_ value: Bool = true) -> Self {
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:109:30: note: 'value' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public func autorepeat(_ value: Bool = true) -> Self {
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:118:9: error: cannot assign to value: 'autorepeat' is a method
        autorepeat = state.wrappedValue
        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:118:28: error: no 'wrappedValue' candidates produce the expected contextual result type '(Bool) -> Self'
        autorepeat = state.wrappedValue
                           ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:126:9: error: cannot assign to value: 'wraps' is a method
        wraps = value
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:126:17: error: no 'value' candidates produce the expected contextual result type '(Bool) -> Self'
        wraps = value
                ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:124:25: note: 'value' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public func wraps(_ value: Bool = true) -> Self {
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:124:25: note: 'value' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public func wraps(_ value: Bool = true) -> Self {
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:133:9: error: cannot assign to value: 'wraps' is a method
        wraps = state.wrappedValue
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:133:23: error: no 'wrappedValue' candidates produce the expected contextual result type '(Bool) -> Self'
        wraps = state.wrappedValue
                      ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(Bool) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Bool', not the expected contextual result type '(State<Bool>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:141:14: error: cannot assign to value: 'value' is a method
        self.value = value
        ~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:141:22: error: no 'value' candidates produce the expected contextual result type '(Double) -> Self'
        self.value = value
                     ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:139:25: note: 'value' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public func value(_ value: Double) -> Self {
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:139:25: note: 'value' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public func value(_ value: Double) -> Self {
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:148:9: error: cannot assign to value: 'value' is a method
        value = state.wrappedValue
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:148:23: error: no 'wrappedValue' candidates produce the expected contextual result type '(Double) -> Self'
        value = state.wrappedValue
                      ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:156:9: error: cannot assign to value: 'minimumValue' is a method
        minimumValue = value
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:156:24: error: no 'value' candidates produce the expected contextual result type '(Double) -> Self'
        minimumValue = value
                       ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:154:32: note: 'value' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public func minimumValue(_ value: Double) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:154:32: note: 'value' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public func minimumValue(_ value: Double) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:163:9: error: cannot assign to value: 'minimumValue' is a method
        minimumValue = state.wrappedValue
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:163:30: error: no 'wrappedValue' candidates produce the expected contextual result type '(Double) -> Self'
        minimumValue = state.wrappedValue
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:171:9: error: cannot assign to value: 'maximumValue' is a method
        maximumValue = value
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:171:24: error: no 'value' candidates produce the expected contextual result type '(Double) -> Self'
        maximumValue = value
                       ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:169:32: note: 'value' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public func maximumValue(_ value: Double) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:169:32: note: 'value' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public func maximumValue(_ value: Double) -> Self {
                               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:178:9: error: cannot assign to value: 'maximumValue' is a method
        maximumValue = state.wrappedValue
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:178:30: error: no 'wrappedValue' candidates produce the expected contextual result type '(Double) -> Self'
        maximumValue = state.wrappedValue
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:186:9: error: cannot assign to value: 'stepValue' is a method
        stepValue = value
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:186:21: error: no 'value' candidates produce the expected contextual result type '(Double) -> Self'
        stepValue = value
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:184:29: note: 'value' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public func stepValue(_ value: Double) -> Self {
                            ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:184:29: note: 'value' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public func stepValue(_ value: Double) -> Self {
                            ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:193:9: error: cannot assign to value: 'stepValue' is a method
        stepValue = state.wrappedValue
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift:193:27: error: no 'wrappedValue' candidates produce the expected contextual result type '(Double) -> Self'
        stepValue = state.wrappedValue
                          ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(Double) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Structs/State.swift:19:16: note: 'wrappedValue' produces 'Double', not the expected contextual result type '(State<Double>) -> Self'
    public var wrappedValue: Value {
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:60: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                                                           ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:57: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                                                        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:58: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:55: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:19: error: method cannot be marked @objc because the type of the parameter 1 cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:42: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:53: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                                                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:54: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                                                     ^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:36:27: error: cannot find type 'UITableView' in scope
    public init (_ style: UITableView.Style = .plain) {
                          ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:41:48: error: cannot find type 'UITableView' in scope
    public override init(frame: CGRect, style: UITableView.Style) {
                                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:54:24: error: method does not override any method from its superclass
    open override func layoutSubviews() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:59:24: error: method does not override any method from its superclass
    open override func didMoveToSuperview() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:67:45: error: cannot find type 'UIScrollView' in scope
    public func keyboardDismissMode(_ mode: UIScrollView.KeyboardDismissMode) -> Self {
                                            ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:75:50: error: cannot find type 'UIRefreshControl' in scope
    public func refreshControl(_ refreshControl: UIRefreshControl) -> Self {
                                                 ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:87:45: error: cannot find type 'NSLayoutConstraint' in scope
    public func hideIndicator(_ indicators: NSLayoutConstraint.Axis...) -> Self {
                                            ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:164:35: error: cannot find type 'UITableViewDelegate' in scope
    public func delegate(_ value: UITableViewDelegate) -> Self {
                                  ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:170:37: error: cannot find type 'UITableViewDataSource' in scope
    public func dataSource(_ value: UITableViewDataSource) -> Self {
                                    ^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:182:41: error: cannot find type 'UITableViewCell' in scope
    public func separatorStyle(_ value: UITableViewCell.SeparatorStyle) -> Self {
                                        ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:7:24: error: cannot find type 'UITableView' in scope
open class UTableView: UITableView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
                       ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:7:12: error: type 'UTableView' does not conform to protocol 'DeclarativeProtocol'
open class UTableView: UITableView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:7:12: note: add stubs for conformance
open class UTableView: UITableView, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: protocol requires property 'tag' with type 'Int'
    var tag: Int { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:200:22: error: cannot find type 'UIScrollViewDelegate' in scope
extension TableView: UIScrollViewDelegate {
                     ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:213:51: error: cannot find type 'UIScrollView' in scope
    public func scrollViewDidScroll(_ scrollView: UIScrollView) {
                                                  ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:200:11: warning: 'TableView' is deprecated: renamed to 'UTableView'
extension TableView: UIScrollViewDelegate {
          ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:200:11: note: use 'UTableView' instead
extension TableView: UIScrollViewDelegate {
          ^~~~~~~~~
          UTableView
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:37:9: error: 'super' cannot be used in class 'UTableView' because it has no superclass
        super.init(frame: .zero, style: style)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:37:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero, style: style)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:42:9: error: 'super' cannot be used in class 'UTableView' because it has no superclass
        super.init(frame: frame, style: style)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:47:9: error: cannot find 'translatesAutoresizingMaskIntoConstraints' in scope
        translatesAutoresizingMaskIntoConstraints = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:55:9: error: 'super' cannot be used in class 'UTableView' because it has no superclass
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:60:9: error: 'super' cannot be used in class 'UTableView' because it has no superclass
        super.didMoveToSuperview()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:79:13: error: cannot find 'addSubview' in scope
            addSubview(refreshControl)
            ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:88:33: error: cannot infer contextual base in reference to member 'horizontal'
        if indicators.contains(.horizontal) {
                               ~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:89:13: error: cannot find 'showsHorizontalScrollIndicator' in scope
            showsHorizontalScrollIndicator = false
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:91:33: error: cannot infer contextual base in reference to member 'vertical'
        if indicators.contains(.vertical) {
                               ~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:92:13: error: cannot find 'showsVerticalScrollIndicator' in scope
            showsVerticalScrollIndicator = false
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:101:9: error: cannot find 'showsHorizontalScrollIndicator' in scope
        showsHorizontalScrollIndicator = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:102:9: error: cannot find 'showsVerticalScrollIndicator' in scope
        showsVerticalScrollIndicator = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:110:9: error: cannot assign to value: 'contentInset' is a method
        contentInset = .init(top: top, left: left, bottom: bottom, right: right)
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:110:25: error: reference to member 'init' cannot be resolved without a contextual type
        contentInset = .init(top: top, left: left, bottom: bottom, right: right)
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:131:9: error: cannot assign to value: 'scrollIndicatorInsets' is a method
        scrollIndicatorInsets = .init(top: top, left: left, bottom: bottom, right: right)
        ^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:131:34: error: reference to member 'init' cannot be resolved without a contextual type
        scrollIndicatorInsets = .init(top: top, left: left, bottom: bottom, right: right)
                                 ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:152:9: error: cannot assign to value: 'contentOffset' is a method
        contentOffset = .init(x: 0, y: value)
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:152:26: error: reference to member 'init' cannot be resolved without a contextual type
        contentOffset = .init(x: 0, y: value)
                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:158:9: error: cannot find 'rowHeight' in scope
        rowHeight = UITableView.automaticDimension
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:158:21: error: cannot find 'UITableView' in scope
        rowHeight = UITableView.automaticDimension
                    ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:159:14: error: value of type 'Self' has no member 'estimatedRowHeight'
        self.estimatedRowHeight = estimatedRowHeight
        ~~~~ ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:177:9: error: cannot assign to value: 'separatorColor' is a method
        separatorColor = value
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:189:9: error: cannot assign to value: 'separatorInset' is a method
        separatorInset = value
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:189:26: error: no 'value' candidates produce the expected contextual result type '(UIEdgeInsets) -> Self'
        separatorInset = value
                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:188:34: note: 'value' produces 'UIEdgeInsets', not the expected contextual result type '(UIEdgeInsets) -> Self'
    public func separatorInset(_ value: UIEdgeInsets) -> Self {
                                 ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:188:34: note: 'value' produces 'UIEdgeInsets', not the expected contextual result type '(CGFloat, CGFloat, CGFloat, CGFloat) -> Self'
    public func separatorInset(_ value: UIEdgeInsets) -> Self {
                                 ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:195:9: error: cannot assign to value: 'separatorInset' is a method
        separatorInset = .init(top: top, left: left, bottom: bottom, right: right)
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:195:27: error: reference to member 'init' cannot be resolved without a contextual type
        separatorInset = .init(top: top, left: left, bottom: bottom, right: right)
                          ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift:203:9: error: cannot find 'setContentOffset' in scope
        setContentOffset(position, animated: animated)
        ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:60: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                                                           ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:57: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                                                        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:58: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:55: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:19: error: method cannot be marked @objc because the type of the parameter 1 cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:42: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:53: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                                                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:54: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                                                     ^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:34:33: error: cannot find type 'UITableViewCell' in scope
    public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
                                ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:48:24: error: method does not override any method from its superclass
    open override func layoutSubviews() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:53:24: error: method does not override any method from its superclass
    open override func didMoveToSuperview() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:7:28: error: cannot find type 'UITableViewCell' in scope
open class UTableViewCell: UITableViewCell, AnyDeclarativeProtocol, DeclarativeProtocolInternal, Cellable {
                           ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:7:12: error: type 'UTableViewCell' does not conform to protocol 'DeclarativeProtocol'
open class UTableViewCell: UITableViewCell, AnyDeclarativeProtocol, DeclarativeProtocolInternal, Cellable {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:7:12: note: add stubs for conformance
open class UTableViewCell: UITableViewCell, AnyDeclarativeProtocol, DeclarativeProtocolInternal, Cellable {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: protocol requires property 'tag' with type 'Int'
    var tag: Int { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:35:9: error: 'super' cannot be used in class 'UTableViewCell' because it has no superclass
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:44:9: error: cannot find 'backgroundColor' in scope
        backgroundColor = .clear
        ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:45:9: error: cannot find 'contentView' in scope
        contentView.backgroundColor = .clear
        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:49:9: error: 'super' cannot be used in class 'UTableViewCell' because it has no superclass
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift:54:9: error: 'super' cannot be used in class 'UTableViewCell' because it has no superclass
        super.didMoveToSuperview()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:60: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                                                           ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:57: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                                                        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:58: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:55: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:19: error: method cannot be marked @objc because the type of the parameter 1 cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:42: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:53: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                                                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:54: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                                                     ^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:70:21: error: initializer does not override a designated initializer from its superclass
    public override init(frame: CGRect) {
           ~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:84:24: error: method does not override any method from its superclass
    open override func layoutSubviews() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:89:24: error: method does not override any method from its superclass
    open override func didMoveToSuperview() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:7:19: error: cannot find type 'UILabel' in scope
open class UText: UILabel, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
                  ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:7:12: error: type 'UText' does not conform to protocol 'DeclarativeProtocol'
open class UText: UILabel, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:7:12: note: add stubs for conformance
open class UText: UILabel, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: protocol requires property 'tag' with type 'Int'
    var tag: Int { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:118:32: error: cannot find type 'UIView' in scope
    var _textChangeTransition: UIView.AnimationOptions? {
                               ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:36:32: error: cannot find type 'UIView' in scope
    var _textChangeTransition: UIView.AnimationOptions? { get set }
                               ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift:10:40: error: cannot find type 'UIView' in scope
    func textChangeTransition(_ value: UIView.AnimationOptions) -> Self
                                       ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:130:30: error: cannot find type 'UIView' in scope
    var _transitionableView: UIView { self }
                             ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/ViewTransitionable.swift:5:30: error: cannot find type 'UIView' in scope
    var _transitionableView: UIView { get }
                             ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/ViewTransitionable.swift:7:59: error: cannot find type 'UIView' in scope
    func _transition(_ duration: TimeInterval, _ options: UIView.AnimationOptions, animations: @escaping () -> Void)
                                                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/ViewTransitionable.swift:8:59: error: cannot find type 'UIView' in scope
    func _transition(_ duration: TimeInterval, _ options: UIView.AnimationOptions, animations: @escaping () -> Void, completion: (@escaping (Bool) -> Void))
                                                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:35:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:35:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:41:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:41:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:47:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:47:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:53:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:53:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:59:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:59:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:65:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:65:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:71:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:80:9: error: cannot find 'translatesAutoresizingMaskIntoConstraints' in scope
        translatesAutoresizingMaskIntoConstraints = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:81:9: error: cannot assign to value: 'clipsToBounds' is a method
        clipsToBounds = true
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:85:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:90:9: error: 'super' cannot be used in class 'UText' because it has no superclass
        super.didMoveToSuperview()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:106:9: error: cannot assign to value: 'font' is a method
        font = v
        ^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:106:16: error: no 'v' candidates produce the expected contextual result type '(UFont?) -> UText' (aka '(Optional<UIFont>) -> UText')
        font = v
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:105:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(UFont?) -> UText' (aka '(Optional<UIFont>) -> UText')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:105:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(FontIdentifier, CGFloat) -> UText'
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:105:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(State<UFont>) -> UText' (aka '(State<UIFont>) -> UText')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:105:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(UFont?) -> UText' (aka '(Optional<UIFont>) -> UText')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:111:42: error: binary operator '??' cannot be applied to operands of type '(LocalizedString...) -> UText' and 'String'
    var _currentText: String { self.text ?? "" }
                               ~~~~~~~~~ ^  ~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:111:42: error: no '??' candidates produce the expected contextual result type 'String'
    var _currentText: String { self.text ?? "" }
                                         ^
Swift.??:1:13: note: '??' produces '(LocalizedString...) -> UText', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([LocalizedString]) -> UText', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(any AnyString...) -> UText', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([any AnyString]) -> UText', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(@escaping AnyStringBuilder.Handler) -> UText' (aka '(@escaping () -> any AnyString) -> UText'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([any AnyString]) -> UText', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(@escaping AnyStringBuilder.Handler) -> UText' (aka '(@escaping () -> any AnyString) -> UText'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((LocalizedString...) -> UText)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([LocalizedString]) -> UText)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((any AnyString...) -> UText)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([any AnyString]) -> UText)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((@escaping AnyStringBuilder.Handler) -> UText)?' (aka 'Optional<(@escaping () -> any AnyString) -> UText>'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([any AnyString]) -> UText)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((@escaping AnyStringBuilder.Handler) -> UText)?' (aka 'Optional<(@escaping () -> any AnyString) -> UText>'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
/Users/admin/builder/spi-builder-workspace/Classes/Objects/PropertiesInternal.swift:17:31: error: cannot find type 'UIView' in scope
    var textChangeTransition: UIView.AnimationOptions?
                              ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:124:9: error: cannot find 'attributedText' in scope
        attributedText = nil // hack to update attributed string with changed paragraph style
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:125:9: error: cannot find 'attributedText' in scope
        attributedText = v
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:137:9: error: cannot find 'textColor' in scope
        textColor = v
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:146:63: error: cannot find 'attributedText' in scope
        let str = NSMutableAttributedString(attributedString: attributedText ?? .init())
                                                              ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:147:27: error: cannot infer contextual base in reference to member 'paragraphStyle'
        str.addAttribute(.paragraphStyle, value: p, range: NSRange(location: 0, length: str.length))
                         ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:148:9: error: cannot find 'attributedText' in scope
        attributedText = str
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:149:9: error: cannot find 'textAlignment' in scope
        textAlignment = v
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:155:9: error: cannot find 'numberOfLines' in scope
        numberOfLines = v
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:161:9: error: cannot assign to value: 'lineBreakMode' is a method
        lineBreakMode = v
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:161:25: error: cannot assign value of type 'NSLineBreakMode' to type '(NSLineBreakMode) -> UText'
        lineBreakMode = v
                        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:167:9: error: cannot assign to value: 'adjustsFontSizeToFitWidth' is a method
        adjustsFontSizeToFitWidth = v
        ^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:167:37: error: no 'v' candidates produce the expected contextual result type '() -> UText'
        adjustsFontSizeToFitWidth = v
                                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:166:42: note: 'v' produces 'Bool', not the expected contextual result type '() -> UText'
    func _setAdjustsFontSizeToFitWidth(_ v: Bool) {
                                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:166:42: note: 'v' produces 'Bool', not the expected contextual result type '(Bool) -> UText'
    func _setAdjustsFontSizeToFitWidth(_ v: Bool) {
                                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:166:42: note: 'v' produces 'Bool', not the expected contextual result type '(State<Bool>) -> UText'
    func _setAdjustsFontSizeToFitWidth(_ v: Bool) {
                                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:166:42: note: 'v' produces 'Bool', not the expected contextual result type '(Bool) -> UText'
    func _setAdjustsFontSizeToFitWidth(_ v: Bool) {
                                         ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:173:9: error: cannot assign to value: 'minimumScaleFactor' is a method
        minimumScaleFactor = v
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift:173:30: error: cannot assign value of type 'CGFloat' to type '(CGFloat) -> UText'
        minimumScaleFactor = v
                             ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:60: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                                                           ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:57: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                                                        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:58: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:55: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:19: error: method cannot be marked @objc because the type of the parameter 1 cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:42: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:53: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                                                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:54: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                                                     ^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:71:21: error: initializer does not override a designated initializer from its superclass
    public override init(frame: CGRect) {
           ~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:80:24: error: method does not override any method from its superclass
    open override func layoutSubviews() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:85:24: error: method does not override any method from its superclass
    open override func didMoveToSuperview() {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:105:24: error: method does not override any method from its superclass
    open override func textRect(forBounds bounds: CGRect) -> CGRect {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:125:24: error: method does not override any method from its superclass
    open override func editingRect(forBounds bounds: CGRect) -> CGRect {
         ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:5:24: error: cannot find type 'UITextField' in scope
open class UTextField: UITextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
                       ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:5:12: error: type 'UTextField' does not conform to protocol 'DeclarativeProtocol'
open class UTextField: UITextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:5:12: note: add stubs for conformance
open class UTextField: UITextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/DeclarativeProtocol.swift:26:9: note: protocol requires property 'tag' with type 'Int'
    var tag: Int { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:258:45: error: cannot find type 'UITextFieldDelegate' in scope
fileprivate class _InnerDelegate: NSObject, UITextFieldDelegate {
                                            ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:291:58: error: cannot find type 'UITextField' in scope
    public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {
                                                         ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:295:55: error: cannot find type 'UITextField' in scope
    public func textFieldDidBeginEditing(_ textField: UITextField) {
                                                      ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:300:56: error: cannot find type 'UITextField' in scope
    public func textFieldShouldEndEditing(_ textField: UITextField) -> Bool {
                                                       ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:304:53: error: cannot find type 'UITextField' in scope
    public func textFieldDidEndEditing(_ textField: UITextField) {
                                                    ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:309:40: error: cannot find type 'UITextField' in scope
    public func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
                                       ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:324:51: error: cannot find type 'UITextField' in scope
    public func textFieldShouldClear(_ textField: UITextField) -> Bool {
                                                  ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:328:52: error: cannot find type 'UITextField' in scope
    public func textFieldShouldReturn(_ textField: UITextField) -> Bool {
                                                   ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:399:32: error: cannot find type 'UIView' in scope
    var _textChangeTransition: UIView.AnimationOptions? {
                               ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:433:39: error: cannot find type 'UIView' in scope
    var _placeholderChangeTransition: UIView.AnimationOptions? {
                                      ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Placeholderable.swift:35:39: error: cannot find type 'UIView' in scope
    var _placeholderChangeTransition: UIView.AnimationOptions? { get set }
                                      ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Placeholderable.swift:10:47: error: cannot find type 'UIView' in scope
    func placeholderChangeTransition(_ value: UIView.AnimationOptions) -> Self
                                              ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:446:32: error: cannot find type 'UIKeyboardType' in scope
    func _setKeyboardType(_ v: UIKeyboardType) {
                               ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:450:33: error: cannot find type 'UIReturnKeyType' in scope
    func _setReturnKeyType(_ v: UIReturnKeyType) {
                                ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:454:38: error: cannot find type 'UIKeyboardAppearance' in scope
    func _setKeyboardAppearance(_ v: UIKeyboardAppearance) {
                                     ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:458:29: error: cannot find type 'UIView' in scope
    func _setInputView(_ v: UIView?) {
                            ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:462:38: error: cannot find type 'UIView' in scope
    func _setInputAccessoryView(_ v: UIView?) {
                                     ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:22:32: error: cannot find type 'UIKeyboardType' in scope
    func _setKeyboardType(_ v: UIKeyboardType)
                               ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:23:33: error: cannot find type 'UIReturnKeyType' in scope
    func _setReturnKeyType(_ v: UIReturnKeyType)
                                ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:24:38: error: cannot find type 'UIKeyboardAppearance' in scope
    func _setKeyboardAppearance(_ v: UIKeyboardAppearance)
                                     ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:25:29: error: cannot find type 'UIView' in scope
    func _setInputView(_ v: UIView?)
                            ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:26:38: error: cannot find type 'UIView' in scope
    func _setInputAccessoryView(_ v: UIView?)
                                     ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:6:31: error: cannot find type 'UIKeyboardType' in scope
    func keyboard(_ keyboard: UIKeyboardType) -> Self
                              ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:9:32: error: cannot find type 'UIReturnKeyType' in scope
    func returnKeyType(_ type: UIReturnKeyType) -> Self
                               ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:12:43: error: cannot find type 'UIKeyboardAppearance' in scope
    func keyboardAppearance(_ appearance: UIKeyboardAppearance) -> Self
                                          ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:15:28: error: cannot find type 'UIView' in scope
    func inputView(_ view: UIView) -> Self
                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:18:37: error: cannot find type 'UIView' in scope
    func inputAccessoryView(_ view: UIView) -> Self
                                    ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:468:46: error: cannot find type 'UITextAutocapitalizationType' in scope
    func _setTextAutocapitalizationType(_ v: UITextAutocapitalizationType) {
                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocapitalizationable.swift:10:46: error: cannot find type 'UITextAutocapitalizationType' in scope
    func _setTextAutocapitalizationType(_ v: UITextAutocapitalizationType)
                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocapitalizationable.swift:6:37: error: cannot find type 'UITextAutocapitalizationType' in scope
    func autocapitalization(_ type: UITextAutocapitalizationType) -> Self
                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:474:42: error: cannot find type 'UITextAutocorrectionType' in scope
    func _setTextAutocorrectionType(_ v: UITextAutocorrectionType) {
                                         ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocorrectionable.swift:10:42: error: cannot find type 'UITextAutocorrectionType' in scope
    func _setTextAutocorrectionType(_ v: UITextAutocorrectionType)
                                         ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocorrectionable.swift:6:33: error: cannot find type 'UITextAutocorrectionType' in scope
    func autocorrection(_ type: UITextAutocorrectionType) -> Self
                                ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:490:26: error: cannot find type 'UIView' in scope
    func _setLeftView(v: UIView) {
                         ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:494:30: error: cannot find type 'UITextField' in scope
    func _setLeftViewMode(v: UITextField.ViewMode) {
                             ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:499:60: error: cannot find type 'UIView' in scope
    public func leftView(_ view: @escaping (UTextField) -> UIView) -> Self {
                                                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:499:34: error: @escaping attribute only applies to function types
    public func leftView(_ view: @escaping (UTextField) -> UIView) -> Self {
                                 ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:504:32: error: cannot find type 'UITextField' in scope
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:504:88: error: cannot find type 'UIView' in scope
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                                                                                       ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:504:62: error: @escaping attribute only applies to function types
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                                                             ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:12:26: error: cannot find type 'UIView' in scope
    func _setLeftView(v: UIView)
                         ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:13:30: error: cannot find type 'UITextField' in scope
    func _setLeftViewMode(v: UITextField.ViewMode)
                             ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:5:27: error: cannot find type 'UIView' in scope
    func leftView(_ view: UIView) -> Self
                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:6:27: error: cannot find type 'UIView' in scope
    func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self
                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:6:41: error: cannot find type 'UITextField' in scope
    func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self
                                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:7:43: error: cannot find type 'UIView' in scope
    func leftView(_ view: @escaping () -> UIView) -> Self
                                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:7:27: error: @escaping attribute only applies to function types
    func leftView(_ view: @escaping () -> UIView) -> Self
                          ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:8:25: error: cannot find type 'UITextField' in scope
    func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:8:71: error: cannot find type 'UIView' in scope
    func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                                                                      ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:8:55: error: @escaping attribute only applies to function types
    func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                                                      ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:510:27: error: cannot find type 'UIView' in scope
    func _setRightView(v: UIView) {
                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:514:31: error: cannot find type 'UITextField' in scope
    func _setRightViewMode(v: UITextField.ViewMode) {
                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:519:61: error: cannot find type 'UIView' in scope
    public func rightView(_ view: @escaping (UTextField) -> UIView) -> Self {
                                                            ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:519:35: error: @escaping attribute only applies to function types
    public func rightView(_ view: @escaping (UTextField) -> UIView) -> Self {
                                  ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:524:33: error: cannot find type 'UITextField' in scope
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                                ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:524:89: error: cannot find type 'UIView' in scope
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                                                                                        ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:524:63: error: @escaping attribute only applies to function types
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping (UTextField) -> UIView) -> Self {
                                                              ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:12:27: error: cannot find type 'UIView' in scope
    func _setRightView(v: UIView)
                          ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:13:31: error: cannot find type 'UITextField' in scope
    func _setRightViewMode(v: UITextField.ViewMode)
                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:5:28: error: cannot find type 'UIView' in scope
    func rightView(_ view: UIView) -> Self
                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:6:28: error: cannot find type 'UIView' in scope
    func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self
                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:6:42: error: cannot find type 'UITextField' in scope
    func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self
                                         ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:7:44: error: cannot find type 'UIView' in scope
    func rightView(_ view: @escaping () -> UIView) -> Self
                                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:7:28: error: @escaping attribute only applies to function types
    func rightView(_ view: @escaping () -> UIView) -> Self
                           ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:8:26: error: cannot find type 'UITextField' in scope
    func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                         ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:8:72: error: cannot find type 'UIView' in scope
    func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                                                                       ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:8:56: error: @escaping attribute only applies to function types
    func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self
                                                       ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:36:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:36:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:42:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:42:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:48:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:48:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:54:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:54:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:60:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:60:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:66:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: .zero)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:66:28: error: cannot infer contextual base in reference to member 'zero'
        super.init(frame: .zero)
                          ~^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:72:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:81:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:86:9: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        super.didMoveToSuperview()
        ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:93:9: error: cannot find 'translatesAutoresizingMaskIntoConstraints' in scope
        translatesAutoresizingMaskIntoConstraints = false
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:94:9: error: cannot assign to value: 'delegate' is a method
        delegate = _innerDelegate
        ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:109:16: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        return super.textRect(forBounds: bounds)
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:114:20: error: cannot find 'bounds' in scope
        textRect = bounds.inset(by: insets)
                   ^~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:129:16: error: 'super' cannot be used in class 'UTextField' because it has no superclass
        return super.editingRect(forBounds: bounds)
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:134:23: error: cannot find 'bounds' in scope
        editingRect = bounds.inset(by: insets)
                      ^~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:264:16: error: value of type 'UTextField' has no member 'addTarget'
        parent.addTarget(self, action: #selector(editingDidBegin), for: .editingDidBegin)
        ~~~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:264:74: error: cannot infer contextual base in reference to member 'editingDidBegin'
        parent.addTarget(self, action: #selector(editingDidBegin), for: .editingDidBegin)
                                                                        ~^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:265:16: error: value of type 'UTextField' has no member 'addTarget'
        parent.addTarget(self, action: #selector(editingChanged), for: .editingChanged)
        ~~~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:265:73: error: cannot infer contextual base in reference to member 'editingChanged'
        parent.addTarget(self, action: #selector(editingChanged), for: .editingChanged)
                                                                       ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:266:16: error: value of type 'UTextField' has no member 'addTarget'
        parent.addTarget(self, action: #selector(editingDidEnd), for: .editingDidEnd)
        ~~~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:266:72: error: cannot infer contextual base in reference to member 'editingDidEnd'
        parent.addTarget(self, action: #selector(editingDidEnd), for: .editingDidEnd)
                                                                      ~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:283:17: error: no exact matches in call to initializer
            $0(.init(string: parent.text ?? ""))
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h:48:1: note: candidate expects value of type 'String' for parameter #1 (got '(LocalizedString...) -> UTextField')
- (instancetype)initWithString:(NSString *)str;
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h:49:1: note: candidate expects value of type 'String' for parameter #1 (got '(LocalizedString...) -> UTextField')
- (instancetype)initWithString:(NSString *)str attributes:(nullable NSDictionary<NSAttributedStringKey, id> *)attrs;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:283:42: error: binary operator '??' cannot be applied to operands of type '(LocalizedString...) -> UTextField' and 'String'
            $0(.init(string: parent.text ?? ""))
                             ~~~~~~~~~~~ ^  ~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:17:86: error: 'DidEndEditingReason' is not a member type of class 'UIKitPlus.UTextField'
    optional func textFieldDidEndEditing(_ textField: UTextField, reason: UTextField.DidEndEditingReason)
                                                                          ~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:5:12: note: 'UTextField' declared here
open class UTextField: UITextField, AnyDeclarativeProtocol, DeclarativeProtocolInternal {
           ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:345:9: error: cannot find 'isEnabled' in scope
        isEnabled = v
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:351:9: error: cannot assign to value: 'font' is a method
        font = v
        ^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:351:16: error: no 'v' candidates produce the expected contextual result type '(UFont?) -> UTextField' (aka '(Optional<UIFont>) -> UTextField')
        font = v
               ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:350:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(UFont?) -> UTextField' (aka '(Optional<UIFont>) -> UTextField')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:350:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(FontIdentifier, CGFloat) -> UTextField'
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:350:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(State<UFont>) -> UTextField' (aka '(State<UIFont>) -> UTextField')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:350:21: note: 'v' produces 'UIFont?', not the expected contextual result type '(UFont?) -> UTextField' (aka '(Optional<UIFont>) -> UTextField')
    func _setFont(_ v: UIFont?) {
                    ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:357:9: error: cannot assign to value: 'text' is a method
        text = ""
        ^~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:366:9: error: cannot find 'textColor' in scope
        textColor = v
        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:373:9: error: cannot find 'textAlignment' in scope
        textAlignment = v
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:379:9: error: cannot find 'isSecureTextEntry' in scope
        isSecureTextEntry = v
        ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:392:42: error: binary operator '??' cannot be applied to operands of type '(LocalizedString...) -> UTextField' and 'String'
    var _currentText: String { self.text ?? "" }
                               ~~~~~~~~~ ^  ~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:392:42: error: no '??' candidates produce the expected contextual result type 'String'
    var _currentText: String { self.text ?? "" }
                                         ^
Swift.??:1:13: note: '??' produces '(LocalizedString...) -> UTextField', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([LocalizedString]) -> UTextField', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(any AnyString...) -> UTextField', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([any AnyString]) -> UTextField', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(@escaping AnyStringBuilder.Handler) -> UTextField' (aka '(@escaping () -> any AnyString) -> UTextField'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '([any AnyString]) -> UTextField', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(@escaping AnyStringBuilder.Handler) -> UTextField' (aka '(@escaping () -> any AnyString) -> UTextField'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T) rethrows -> T where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((LocalizedString...) -> UTextField)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([LocalizedString]) -> UTextField)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((any AnyString...) -> UTextField)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([any AnyString]) -> UTextField)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((@escaping AnyStringBuilder.Handler) -> UTextField)?' (aka 'Optional<(@escaping () -> any AnyString) -> UTextField>'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '(([any AnyString]) -> UTextField)?', not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
Swift.??:1:13: note: '??' produces '((@escaping AnyStringBuilder.Handler) -> UTextField)?' (aka 'Optional<(@escaping () -> any AnyString) -> UTextField>'), not the expected contextual result type 'String'
public func ?? <T>(optional: consuming T?, defaultValue: @autoclosure () throws -> T?) rethrows -> T? where T : ~Copyable
            ^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:405:9: error: cannot find 'attributedText' in scope
        attributedText = nil // hack to update attributed string with changed paragraph style
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:406:9: error: cannot find 'attributedText' in scope
        attributedText = v
        ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Objects/PropertiesInternal.swift:25:38: error: cannot find type 'UIView' in scope
    var placeholderChangeTransition: UIView.AnimationOptions?
                                     ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:439:9: error: cannot find 'attributedPlaceholder' in scope
        attributedPlaceholder = nil // hack to update attributed string with changed paragraph style
        ^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:440:9: error: cannot find 'attributedPlaceholder' in scope
        attributedPlaceholder = v
        ^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:447:9: error: cannot find 'keyboardType' in scope
        keyboardType = v
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:51:39: error: cannot find type 'UIReturnKeyType' in scope
    public func returnKeyType(_ type: UIReturnKeyType) -> Self {
                                      ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:88:39: error: cannot find type 'UIReturnKeyType' in scope
    public func returnKeyType(_ type: UIReturnKeyType) -> Self {
                                      ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:58:50: error: cannot find type 'UIKeyboardAppearance' in scope
    public func keyboardAppearance(_ appearance: UIKeyboardAppearance) -> Self {
                                                 ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:94:50: error: cannot find type 'UIKeyboardAppearance' in scope
    public func keyboardAppearance(_ appearance: UIKeyboardAppearance) -> Self {
                                                 ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:31:45: error: cannot find type 'UIView' in scope
    public func inputView(_ view: (Self) -> UIView) -> Self {
                                            ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:65:35: error: cannot find type 'UIView' in scope
    public func inputView(_ view: UIView) -> Self {
                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:100:35: error: cannot find type 'UIView' in scope
    public func inputView(_ view: UIView) -> Self {
                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:36:54: error: cannot find type 'UIView' in scope
    public func inputAccessoryView(_ view: (Self) -> UIView) -> Self {
                                                     ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:72:44: error: cannot find type 'UIView' in scope
    public func inputAccessoryView(_ view: UIView) -> Self {
                                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/Keyboardable.swift:106:44: error: cannot find type 'UIView' in scope
    public func inputAccessoryView(_ view: UIView) -> Self {
                                           ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:469:9: error: cannot find 'autocapitalizationType' in scope
        autocapitalizationType = v
        ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:475:9: error: cannot find 'autocorrectionType' in scope
        autocorrectionType = v
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Enums/TextFieldContentType.swift:14:15: error: cannot find type 'UITextContentType' in scope
    var type: UITextContentType? {
              ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:483:17: error: cannot find 'textContentType' in scope
                textContentType = type
                ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:18:34: error: cannot find type 'UIView' in scope
    public func leftView(_ view: UIView) -> Self {
                                 ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:23:50: error: cannot find type 'UIView' in scope
    public func leftView(_ view: @escaping () -> UIView) -> Self {
                                                 ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:23:34: error: @escaping attribute only applies to function types
    public func leftView(_ view: @escaping () -> UIView) -> Self {
                                 ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:28:32: error: cannot find type 'UITextField' in scope
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:28:78: error: cannot find type 'UIView' in scope
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                                                                             ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:28:62: error: @escaping attribute only applies to function types
    public func leftView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                                                             ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:36:34: error: cannot find type 'UIView' in scope
    public func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                 ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:36:48: error: cannot find type 'UITextField' in scope
    public func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:47:34: error: cannot find type 'UIView' in scope
    public func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                 ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift:47:48: error: cannot find type 'UITextField' in scope
    public func leftView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:495:9: error: cannot find 'leftViewMode' in scope
        leftViewMode = v
        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:500:25: error: cannot infer contextual base in reference to member 'always'
        leftView(mode: .always) { view(self) }
                       ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:18:35: error: cannot find type 'UIView' in scope
    public func rightView(_ view: UIView) -> Self {
                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:23:51: error: cannot find type 'UIView' in scope
    public func rightView(_ view: @escaping () -> UIView) -> Self {
                                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:23:35: error: @escaping attribute only applies to function types
    public func rightView(_ view: @escaping () -> UIView) -> Self {
                                  ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:28:33: error: cannot find type 'UITextField' in scope
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                                ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:28:79: error: cannot find type 'UIView' in scope
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                                                                              ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:28:63: error: @escaping attribute only applies to function types
    public func rightView(mode: UITextField.ViewMode, _ view: @escaping () -> UIView) -> Self {
                                                              ^~~~~~~~~~

/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:36:35: error: cannot find type 'UIView' in scope
    public func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:36:49: error: cannot find type 'UITextField' in scope
    public func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                                ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:47:35: error: cannot find type 'UIView' in scope
    public func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                  ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift:47:49: error: cannot find type 'UITextField' in scope
    public func rightView(_ view: UIView, mode: UITextField.ViewMode) -> Self {
                                                ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:515:9: error: cannot find 'rightViewMode' in scope
        rightViewMode = v
        ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift:520:26: error: cannot infer contextual base in reference to member 'always'
        rightView(mode: .always) { view(self) }
                        ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:4:60: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldBeginEditing(_ textField: UTextField) -> Bool
                                                           ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:7:57: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidBeginEditing(_ textField: UTextField)
                                                        ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:10:58: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldEndEditing(_ textField: UTextField) -> Bool
                                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:13:55: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldDidEndEditing(_ textField: UTextField)
                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:19: error: method cannot be marked @objc because the type of the parameter 1 cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:21:42: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textField(_ textField: UTextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool
                                         ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:24:53: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldClear(_ textField: UTextField) -> Bool
                                                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:19: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                  ^
/Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift:27:54: note: classes not annotated with @objc cannot be represented in Objective-C
    optional func textFieldShouldReturn(_ textField: UTextField) -> Bool
                                                     ^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Toggle.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/VerificationCodeView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/VisualEffectView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/WrappedViewControllerView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/ActivityIndicator.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/BarButtonItemView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/BaseView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HScrollStack.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HSpace.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HStack.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/HUD.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/Space.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/StackView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/VScrollStack.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/VSpace.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/VStack.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/View.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/WrapperView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UIColor+Hex.swift,\ UIControl+ActionHandler.swift,\ UIDevice+Model.swift,\ UIDeviceOrientation+Description.swift,\ UIFont+Family.swift,\ UIFont+PrintAll.swift,\ UIGestureRecognizer+GestureRecognizerable.swift,\ UIImage+Blur.swift,\ UIImage+Resize.swift,\ UIImage+SegmentControlable.swift,\ UIInterfaceOrientation+Description.swift,\ UIViewController+Body.swift,\ UIVisualEffect+Effects.swift,\ UNAuthorizationStatus+Status.swift,\ View+Add.swift,\ View+Body.swift,\ View+Menuable.swift,\ View+SafeArea.swift,\ View+Shake.swift,\ View+ViewWithTag.swift,\ WrappedViewControllerable+Hidden.swift,\ Animation.swift,\ AttributedString.swift,\ ClickGestureRecognizer.swift,\ ForEach.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Hex.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+Family.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+PrintAll.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+SegmentControlable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Add.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Menuable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+ViewWithTag.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/Animation.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/AttributedString.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ClickGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift (in target 'UIKitPlus' from project 'UIKitPlus')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/sources-3 -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Hex.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+Family.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+PrintAll.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+SegmentControlable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Add.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Menuable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+ViewWithTag.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Objects/Animation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Objects/AttributedString.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Objects/ClickGestureRecognizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIKitPlus_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name UIKitPlus -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIColor+Hex.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIControl+ActionHandler.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIDevice+Model.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIDeviceOrientation+Description.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIFont+Family.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIFont+PrintAll.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIGestureRecognizer+GestureRecognizerable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+Blur.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+Resize.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+SegmentControlable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIInterfaceOrientation+Description.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIViewController+Body.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIVisualEffect+Effects.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UNAuthorizationStatus+Status.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Add.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Body.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Menuable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+SafeArea.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Shake.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+ViewWithTag.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/WrappedViewControllerable+Hidden.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/Animation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/AttributedString.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/ClickGestureRecognizer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/ForEach.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIColor+Hex.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIControl+ActionHandler.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIDevice+Model.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIDeviceOrientation+Description.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIFont+Family.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIFont+PrintAll.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIGestureRecognizer+GestureRecognizerable.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+Blur.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+Resize.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIImage+SegmentControlable.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIInterfaceOrientation+Description.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIViewController+Body.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UIVisualEffect+Effects.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/UNAuthorizationStatus+Status.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Add.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Body.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Menuable.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+SafeArea.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+Shake.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/View+ViewWithTag.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/WrappedViewControllerable+Hidden.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/Animation.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/AttributedString.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/ClickGestureRecognizer.o -index-unit-output-path /UIKitPlus.build/Debug-watchos/UIKitPlus.build/Objects-normal/arm64/ForEach.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Hex.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift:4:11: error: cannot find type 'UIControl' in scope
extension UIControl {
          ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift:18:47: error: cannot find type 'UIControl' in scope
    func actionHandler(controlEvents control: UIControl.Event, forAction action: @escaping () -> Void) {
                                              ^~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift:6:11: error: cannot find type 'UIDevice' in scope
extension UIDevice {
          ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift:58:87: error: cannot find type 'DeviceType' in scope
        static func byScreenNativeHeight(_ screenNativeHeight: ScreenNativeHeight) -> DeviceType {
                                                                                      ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift:58:64: error: cannot find type 'ScreenNativeHeight' in scope
        static func byScreenNativeHeight(_ screenNativeHeight: ScreenNativeHeight) -> DeviceType {
                                                               ^~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift:11:11: error: cannot find type 'UIDeviceOrientation' in scope
extension UIDeviceOrientation: CustomStringConvertible {
          ^~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+Family.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+PrintAll.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift:9:39: error: cannot find type 'UIGestureRecognizer' in scope
public typealias UGestureRecognizer = UIGestureRecognizer
                                      ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift:10:47: error: cannot find type 'UIGestureRecognizerDelegate' in scope
public typealias UGestureRecognizerDelegate = UIGestureRecognizerDelegate
                                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:10:32: error: cannot find type 'UIImageView' in scope
public typealias _UImageView = UIImageView
                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:17:26: error: cannot find 'CIImage' in scope
        let inputImage = CIImage(cgImage: (cgImage)!)
                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:18:22: error: cannot find 'CIFilter' in scope
        let filter = CIFilter(name: "CIGaussianBlur")
                     ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:28:68: error: cannot find type 'CIImage' in scope
        let resultImage = filter?.value(forKey: "outputImage") as! CIImage
                                                                   ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:29:23: error: cannot find 'CIContext' in scope
        let context = CIContext(options: nil)
                      ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift:29:42: error: 'nil' requires a contextual type
        let context = CIContext(options: nil)
                                         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift:9:25: error: cannot find 'UIImageView' in scope
        let imageView = UIImageView(frame: CGRect(origin: .zero, size: CGSize(width: size.width * percentage, height: size.height * percentage)))
                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift:10:34: error: cannot infer contextual base in reference to member 'scaleAspectFit'
        imageView.contentMode = .scaleAspectFit
                                ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift:21:25: error: cannot find 'UIImageView' in scope
        let imageView = UIImageView(frame: CGRect(origin: .zero, size: CGSize(width: width, height: CGFloat(ceil(width/size.width * size.height)))))
                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift:22:34: error: cannot infer contextual base in reference to member 'scaleAspectFit'
        imageView.contentMode = .scaleAspectFit
                                ~^~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+SegmentControlable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift:11:11: error: cannot find type 'UIInterfaceOrientation' in scope
extension UIInterfaceOrientation: CustomStringConvertible {
          ^~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Controllers/ViewController.swift:11:39: error: cannot find type 'UIViewController' in scope
public typealias BaseViewController = UIViewController
                                      ^~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:4:11: error: cannot find type 'UIVisualEffect' in scope
extension UIVisualEffect {
          ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:5:33: error: cannot find type 'UIVisualEffect' in scope
    public static var darkBlur: UIVisualEffect { UIBlurEffect(style: .dark) }
                                ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:6:34: error: cannot find type 'UIVisualEffect' in scope
    public static var lightBlur: UIVisualEffect { UIBlurEffect(style: .light) }
                                 ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:7:39: error: cannot find type 'UIVisualEffect' in scope
    public static var extraLightBlur: UIVisualEffect { UIBlurEffect(style: .extraLight) }
                                      ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:9:38: error: cannot find type 'UIVisualEffect' in scope
    public static var prominentBlur: UIVisualEffect {UIBlurEffect(style: .prominent) }
                                     ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift:11:36: error: cannot find type 'UIVisualEffect' in scope
    public static var regularBlur: UIVisualEffect { UIBlurEffect(style: .regular) }
                                   ^~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift:12:11: error: cannot find type 'UNAuthorizationStatus' in scope
extension UNAuthorizationStatus {
          ^~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Add.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Views/Universal/BaseView.swift:8:29: error: cannot find type 'UIView' in scope
public typealias BaseView = UIView
                            ^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Menuable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:47:35: error: cannot find type 'NSLayoutXAxisAnchor' in scope
        public var leadingAnchor: NSLayoutXAxisAnchor {
                                  ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:56:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
        public var trailingAnchor: NSLayoutXAxisAnchor {
                                   ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:65:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
        public var leftAnchor: NSLayoutXAxisAnchor {
                               ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:74:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
        public var rightAnchor: NSLayoutXAxisAnchor {
                                ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:83:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
        public var topAnchor: NSLayoutYAxisAnchor {
                              ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:92:34: error: cannot find type 'NSLayoutYAxisAnchor' in scope
        public var bottomAnchor: NSLayoutYAxisAnchor {
                                 ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:101:33: error: cannot find type 'NSLayoutDimension' in scope
        public var widthAnchor: NSLayoutDimension {
                                ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:110:34: error: cannot find type 'NSLayoutDimension' in scope
        public var heightAnchor: NSLayoutDimension {
                                 ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:119:35: error: cannot find type 'NSLayoutXAxisAnchor' in scope
        public var centerXAnchor: NSLayoutXAxisAnchor {
                                  ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:128:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
        public var centerYAnchor: NSLayoutYAxisAnchor {
                                  ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift:138:26: error: cannot find type 'SafeAnchors' in scope
    public var safeArea: SafeAnchors { .init(self) }
                         ^~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift:14:29: error: cannot find type 'NSLayoutConstraint' in scope
                      axis: NSLayoutConstraint.Axis = .horizontal,
                            ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift:15:31: error: cannot find type 'CAMediaTimingFunctionName' in scope
                      timing: CAMediaTimingFunctionName = .linear) {
                              ^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift:30:29: error: cannot find type 'NSLayoutConstraint' in scope
                      axis: NSLayoutConstraint.Axis = .horizontal,
                            ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift:31:31: error: cannot find type 'CAMediaTimingFunctionName' in scope
                      timing: CAMediaTimingFunctionName = .linear) {
                              ^~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+ViewWithTag.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Extensions/ConstraintValueType+Operators.swift:47:42: error: cannot find type 'UILayoutPriority' in scope
public func !(lhs: ConstraintValue, rhs: UILayoutPriority) -> ConstraintValue {
                                         ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift:9:39: error: value of type 'UView' has no member 'isHidden'
        guard hidden == !protocolView.isHidden else { return }
                         ~~~~~~~~~~~~ ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/Animation.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/AttributedString.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ClickGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift (in target 'UIKitPlus' from project 'UIKitPlus')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift:11:15: error: cannot find type 'NSLayoutConstraint' in scope
    var axis: NSLayoutConstraint.Axis? { get }
              ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift:31:22: error: cannot find type 'NSLayoutConstraint' in scope
    public var axis: NSLayoutConstraint.Axis? { nil }
                     ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift:125:31: error: cannot find type 'NSLayoutConstraint' in scope
    public override var axis: NSLayoutConstraint.Axis? { .vertical }
                              ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift:133:31: error: cannot find type 'NSLayoutConstraint' in scope
    public override var axis: NSLayoutConstraint.Axis? { .horizontal }
                              ^~~~~~~~~~~~~~~~~~
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintCSide.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintDSide.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintXSide.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintYSide.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/PushNotificationOption.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/StatusBarStyle.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/TextFieldContentType.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Enums/TextItemInteraction.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/CollectionView+Cellable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/ConstraintValueType+Operators.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Alpha.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Background.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Borders.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 Compiling\ DeclarativeConstraintCSide.swift,\ DeclarativeConstraintDSide.swift,\ DeclarativeConstraintXSide.swift,\ DeclarativeConstraintYSide.swift,\ Language.swift,\ LocalizedString.swift,\ MacOS+TextFieldContentType.swift,\ NavigationControllerStyle.swift,\ PushNotificationOption.swift,\ PushNotificationsAuthorizationStatus.swift,\ RootTransitionAnimation.swift,\ SegmentControlableItem.swift,\ StatusBarStyle.swift,\ TextFieldContentType.swift,\ TextItemInteraction.swift,\ Array+Diff.swift,\ AttrStr+Concat.swift,\ AttrStr+Joined.swift,\ ClosedRange+NSRange.swift,\ CollectionView+Cellable.swift,\ ConstraintValueType+Operators.swift,\ DeclarativeProtocol+Alpha.swift,\ DeclarativeProtocol+Apply.swift,\ DeclarativeProtocol+Background.swift,\ DeclarativeProtocol+Borders.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintCSide.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintDSide.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintXSide.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/DeclarativeConstraintYSide.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/Language.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/LocalizedString.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/MacOS+TextFieldContentType.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/NavigationControllerStyle.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/PushNotificationOption.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/PushNotificationsAuthorizationStatus.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/RootTransitionAnimation.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/SegmentControlableItem.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/StatusBarStyle.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/TextFieldContentType.swift /Users/admin/builder/spi-builder-workspace/Classes/Enums/TextItemInteraction.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/Array+Diff.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Concat.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/ClosedRange+NSRange.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/CollectionView+Cellable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/ConstraintValueType+Operators.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Alpha.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Apply.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Background.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Borders.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Rasterize.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Rotation.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+ScreenEdgePan.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Shadow.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Swipe.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Tap.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Tint.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+UserInteraction.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+Activated.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+AllAttributes.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+Update.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NavigationController+FadeTo.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/Number+ConstraintValue.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/Numeric+Device.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/TableView+Cellable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Dynamic.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 Compiling\ DeclarativeProtocol+Rasterize.swift,\ DeclarativeProtocol+Rotation.swift,\ DeclarativeProtocol+ScreenEdgePan.swift,\ DeclarativeProtocol+Shadow.swift,\ DeclarativeProtocol+Swipe.swift,\ DeclarativeProtocol+Tag.swift,\ DeclarativeProtocol+Tap.swift,\ DeclarativeProtocol+Tint.swift,\ DeclarativeProtocol+UserInteraction.swift,\ NSEvent+Key.swift,\ NSLayoutConstraint+Activated.swift,\ NSLayoutConstraint+AllAttributes.swift,\ NSLayoutConstraint+Update.swift,\ NSSound+System.swift,\ NSView+BringToFront.swift,\ NavigationController+FadeTo.swift,\ NotificationCenter+Name.swift,\ Number+ConstraintValue.swift,\ Numeric+Device.swift,\ String+AttributedString.swift,\ String+LocalizedString.swift,\ String+SegmentControlable.swift,\ TableView+Cellable.swift,\ UIColor+Aplha.swift,\ UIColor+Dynamic.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Rasterize.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Rotation.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+ScreenEdgePan.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Shadow.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Swipe.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Tag.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Tap.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+Tint.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/DeclarativeProtocol+UserInteraction.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSEvent+Key.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+Activated.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+AllAttributes.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSLayoutConstraint+Update.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSSound+System.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NavigationController+FadeTo.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/Number+ConstraintValue.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/Numeric+Device.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/String+AttributedString.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/String+LocalizedString.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/String+SegmentControlable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/TableView+Cellable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Aplha.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Dynamic.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Button.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Collection.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/CollectionDynamicCell.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/CollectionView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 Compiling\ GestureDelegator.swift,\ GestureTracker.swift,\ HoverGestureRecognizer.swift,\ ImageLoader.swift,\ ImpactFeedback.swift,\ Localization.swift,\ LongPressGestureRecognizer.swift,\ MagnificationGestureRecognizer.swift,\ PanGestureRecognizer.swift,\ ParagraphStyle.swift,\ PinchGestureRecognizer.swift,\ PreConstraint.swift,\ PressGestureRecognizer.swift,\ Properties.swift,\ PropertiesInternal.swift,\ RotationGestureRecognizer.swift,\ ScreenEdgePanGestureRecognizer.swift,\ SwipeGestureRecognizer.swift,\ TapGestureRecognizer.swift,\ TextViewDelegate.swift,\ UIViewPropertyAnimator.swift,\ Alternateable.swift,\ AnyScene.swift,\ ArrowPositionable.swift,\ BackgroundColorable.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/GestureDelegator.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/GestureTracker.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/HoverGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ImageLoader.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ImpactFeedback.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/Localization.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/LongPressGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/MagnificationGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/PanGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ParagraphStyle.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/PinchGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/PreConstraint.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/PressGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/PropertiesInternal.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/RotationGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ScreenEdgePanGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/SwipeGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/TapGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/TextViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/UIViewPropertyAnimator.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Alternateable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/AnyScene.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/ArrowPositionable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/BackgroundColorable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/GestureDelegator.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/GestureTracker.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/HoverGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ImageLoader.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ImpactFeedback.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/LongPressGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/PanGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ParagraphStyle.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/PinchGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/PreConstraint.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/PropertiesInternal.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/RotationGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ScreenEdgePanGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/SwipeGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/TapGestureRecognizer.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/TextViewDelegate.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/AnyScene.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 Compiling\ TextAutocorrectionable.swift,\ TextBindable.swift,\ TextFieldContentTypeable.swift,\ TextFieldDelegate.swift,\ TextFieldLeftViewable.swift,\ TextFieldRightViewable.swift,\ TextLineBreakModeable.swift,\ TextLineable.swift,\ TextScaleable.swift,\ Textable.swift,\ Tintable.swift,\ Titleable.swift,\ Typeable.swift,\ UIButtonable.swift,\ UICollectionViewable.swift,\ UILabelable.swift,\ UIScrollViewable.swift,\ UITableViewable.swift,\ UIViewable.swift,\ ViewTransitionable.swift,\ WrappedViewControllerable.swift,\ AppBuilder.swift,\ BodyBuilder.swift,\ BodyBuilderItems.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocorrectionable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextBindable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldContentTypeable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextLineBreakModeable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextLineable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextScaleable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Tintable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Titleable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Typeable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UIButtonable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UICollectionViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UILabelable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UIScrollViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UITableViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UIViewable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/ViewTransitionable.swift /Users/admin/builder/spi-builder-workspace/Classes/Protocols/WrappedViewControllerable.swift /Users/admin/builder/spi-builder-workspace/Classes/Structs/AppBuilder.swift /Users/admin/builder/spi-builder-workspace/Classes/Structs/BodyBuilder.swift /Users/admin/builder/spi-builder-workspace/Classes/Structs/BodyBuilderItems.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextAutocorrectionable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldDelegate.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldLeftViewable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/TextFieldRightViewable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Textable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/Titleable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UIButtonable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UICollectionViewable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UILabelable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UIScrollViewable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/UITableViewable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/ViewTransitionable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Protocols/WrappedViewControllerable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Structs/AppBuilder.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Stepper.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableView.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TableViewCell.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/Text.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Views/Not-MacOS/TextField.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 Compiling\ UIColor+Hex.swift,\ UIControl+ActionHandler.swift,\ UIDevice+Model.swift,\ UIDeviceOrientation+Description.swift,\ UIFont+Family.swift,\ UIFont+PrintAll.swift,\ UIGestureRecognizer+GestureRecognizerable.swift,\ UIImage+Blur.swift,\ UIImage+Resize.swift,\ UIImage+SegmentControlable.swift,\ UIInterfaceOrientation+Description.swift,\ UIViewController+Body.swift,\ UIVisualEffect+Effects.swift,\ UNAuthorizationStatus+Status.swift,\ View+Add.swift,\ View+Body.swift,\ View+Menuable.swift,\ View+SafeArea.swift,\ View+Shake.swift,\ View+ViewWithTag.swift,\ WrappedViewControllerable+Hidden.swift,\ Animation.swift,\ AttributedString.swift,\ ClickGestureRecognizer.swift,\ ForEach.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIColor+Hex.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+Family.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIFont+PrintAll.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+SegmentControlable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Add.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Menuable.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+ViewWithTag.swift /Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/Animation.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/AttributedString.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ClickGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIControl+ActionHandler.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDevice+Model.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIDeviceOrientation+Description.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIGestureRecognizer+GestureRecognizerable.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Blur.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIImage+Resize.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIInterfaceOrientation+Description.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIVisualEffect+Effects.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/UNAuthorizationStatus+Status.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Add.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+SafeArea.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Shake.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Extensions/WrappedViewControllerable+Hidden.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Classes/Objects/ForEach.swift (in target 'UIKitPlus' from project 'UIKitPlus')
	Building workspace spi-builder-workspace with scheme UIKitPlus
(90 failures)
BUILD FAILURE 6.1 watchOS