The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of ComponentsKit, reference main (621676), with Swift 6.1 for iOS using Xcode 16.3 on 26 Jun 2025 13:04:41 UTC.

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ComponentsKit -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:223:17: note: add '@MainActor' to make static method 'textFieldContainer(_:model:)' part of global actor 'MainActor'
    static func textFieldContainer(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:236:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.attributedText = model.nsAttributedTitle
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:60:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSAttributedString *attributedText API_AVAILABLE(ios(6.0));  // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:232:17: note: add '@MainActor' to make static method 'titleLabel(_:model:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:237:13: warning: main actor-isolated property 'isVisible' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.isVisible = model.title.isNotNilAndEmpty
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIView+Helpers.swift:5:7: note: mutation of this property is only permitted within the actor
  var isVisible: Bool {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:232:17: note: add '@MainActor' to make static method 'titleLabel(_:model:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:243:17: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.font = model.preferredFont.uiFont
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:58:63: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIFont                 *font;                 // default is nil. use system font 12 pt
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:244:17: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.textColor = model.foregroundColor.uiColor
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:57:63: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIColor                *textColor;            // default is nil. use opaque black
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:245:17: warning: main actor-isolated property 'tintColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.tintColor = model.tintColor.uiColor
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:319:56: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic, strong) UIColor *tintColor API_AVAILABLE(ios(7.0));
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:246:17: warning: main actor-isolated property 'attributedPlaceholder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.attributedPlaceholder = model.nsAttributedPlaceholder
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h:64:63: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSAttributedString     *attributedPlaceholder API_AVAILABLE(ios(6.0)); // default is nil
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:247:17: warning: main actor-isolated property 'keyboardType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.keyboardType = model.keyboardType
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:250:37: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIKeyboardType keyboardType;                         // default is UIKeyboardTypeDefault
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:248:17: warning: main actor-isolated property 'returnKeyType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.returnKeyType = model.submitType.returnKeyType
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:252:38: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIReturnKeyType returnKeyType;                       // default is UIReturnKeyDefault (See note under UIReturnKeyType enum)
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:249:17: warning: main actor-isolated property 'isSecureTextEntry' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.isSecureTextEntry = model.isSecureInput
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:254:52: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isSecureTextEntry) BOOL secureTextEntry;       // default is NO
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:250:17: warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.isEnabled = model.isEnabled
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h:84:44: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isEnabled) BOOL enabled;                                  // default is YES. if NO, ignores touch events and subclasses may draw differently
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:251:17: warning: main actor-isolated property 'autocorrectionType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.autocorrectionType = model.autocorrectionType
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:239:47: note: mutation of this property is only permitted within the actor
@property(nonatomic) UITextAutocorrectionType autocorrectionType;         // default is UITextAutocorrectionTypeDefault
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:252:17: warning: main actor-isolated property 'autocapitalizationType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textField.autocapitalizationType = model.autocapitalization.textAutocapitalizationType
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:238:51: note: mutation of this property is only permitted within the actor
@property(nonatomic) UITextAutocapitalizationType autocapitalizationType; // default is UITextAutocapitalizationTypeSentences
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:239:17: note: add '@MainActor' to make static method 'textField(_:model:)' part of global actor 'MainActor'
    static func textField(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:258:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.text = model.caption
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString           *text; // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:254:17: note: add '@MainActor' to make static method 'captionLabel(_:model:)' part of global actor 'MainActor'
    static func captionLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:259:13: warning: main actor-isolated property 'isVisible' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.isVisible = model.caption.isNotNilAndEmpty
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIView+Helpers.swift:5:7: note: mutation of this property is only permitted within the actor
  var isVisible: Bool {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:254:17: note: add '@MainActor' to make static method 'captionLabel(_:model:)' part of global actor 'MainActor'
    static func captionLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:260:13: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.textColor = model.captionColor.uiColor
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:37:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIColor     *textColor UI_APPEARANCE_SELECTOR; // default is labelColor
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:254:17: note: add '@MainActor' to make static method 'captionLabel(_:model:)' part of global actor 'MainActor'
    static func captionLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:261:13: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.font = model.preferredCaptionFont.uiFont
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:254:17: note: add '@MainActor' to make static method 'captionLabel(_:model:)' part of global actor 'MainActor'
    static func captionLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:262:13: warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.numberOfLines = 0
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:74:32: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger numberOfLines;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:254:17: note: add '@MainActor' to make static method 'captionLabel(_:model:)' part of global actor 'MainActor'
    static func captionLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:268:17: warning: main actor-isolated property 'axis' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.axis = .horizontal
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: mutation of this property is only permitted within the actor
@property(nonatomic) UILayoutConstraintAxis axis;
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:264:17: note: add '@MainActor' to make static method 'horizontalStackView(_:model:)' part of global actor 'MainActor'
    static func horizontalStackView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:269:17: warning: main actor-isolated property 'spacing' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.spacing = model.spacing
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat spacing;
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:264:17: note: add '@MainActor' to make static method 'horizontalStackView(_:model:)' part of global actor 'MainActor'
    static func horizontalStackView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:275:17: warning: main actor-isolated property 'axis' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.axis = .vertical
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: mutation of this property is only permitted within the actor
@property(nonatomic) UILayoutConstraintAxis axis;
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:271:17: note: add '@MainActor' to make static method 'verticalStackView(_:model:)' part of global actor 'MainActor'
    static func verticalStackView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:276:17: warning: main actor-isolated property 'spacing' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.spacing = model.spacing
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat spacing;
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:271:17: note: add '@MainActor' to make static method 'verticalStackView(_:model:)' part of global actor 'MainActor'
    static func verticalStackView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:277:17: warning: main actor-isolated property 'alignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.alignment = .leading
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIStackViewAlignment alignment;
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:271:17: note: add '@MainActor' to make static method 'verticalStackView(_:model:)' part of global actor 'MainActor'
    static func verticalStackView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:278:17: warning: main actor-isolated property 'distribution' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.distribution = .fillProportionally
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIStackViewDistribution distribution;
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/InputField/UKInputField.swift:271:17: note: add '@MainActor' to make static method 'verticalStackView(_:model:)' part of global actor 'MainActor'
    static func verticalStackView(
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Loading/Models/LoadingStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Loading/Models/LoadingVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Loading/SULoading.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Loading/UKLoading.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/BottomModalVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/CenterModalVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/ModalOverlayStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/ModalSize.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/ModalTransition.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/Models/ModalVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ModalAnimation.swift,\ ModalPresentationModifier.swift,\ ModalPresentationWithItemModifier.swift,\ View+Helpers.swift,\ ModalContent.swift,\ ModalOverlay.swift,\ SUBottomModal.swift,\ SUCenterModal.swift,\ ContentSizedScrollView.swift,\ UKBottomModalController.swift,\ UKCenterModalController.swift,\ UKModalController.swift,\ ProgressBarStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SharedHelpers/ModalAnimation.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/ModalPresentationModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/ModalPresentationWithItemModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/View+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/ModalContent.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/ModalOverlay.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/SUBottomModal.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/SUCenterModal.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/Helpers/ContentSizedScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKBottomModalController.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKCenterModalController.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/Models/ProgressBarStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SharedHelpers/ModalAnimation.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/ModalPresentationModifier.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/ModalPresentationWithItemModifier.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/Helpers/View+Helpers.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/ModalContent.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/ModalOverlay.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/SUBottomModal.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/SwiftUI/SUCenterModal.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/Helpers/ContentSizedScrollView.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKBottomModalController.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKCenterModalController.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:255:14: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.backgroundColor = .black.withAlphaComponent(0.7)
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:252:17: note: add '@MainActor' to make static method 'overlay(_:model:)' part of global actor 'MainActor'
    static func overlay(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:257:14: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.backgroundColor = .clear
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:252:17: note: add '@MainActor' to make static method 'overlay(_:model:)' part of global actor 'MainActor'
    static func overlay(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:259:40: warning: main actor-isolated property 'effect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        (view as? UIVisualEffectView)?.effect = UIBlurEffect(style: .systemUltraThinMaterial)
                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h:32:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, copy, nullable) UIVisualEffect *effect;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:252:17: note: add '@MainActor' to make static method 'overlay(_:model:)' part of global actor 'MainActor'
    static func overlay(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:259:49: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        (view as? UIVisualEffectView)?.effect = UIBlurEffect(style: .systemUltraThinMaterial)
                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:63:1: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
+ (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;
^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:252:17: note: add '@MainActor' to make static method 'overlay(_:model:)' part of global actor 'MainActor'
    static func overlay(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:263:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.preferredBackgroundColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:262:17: note: add '@MainActor' to make static method 'contentView(_:model:)' part of global actor 'MainActor'
    static func contentView(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:264:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius.value
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:262:17: note: add '@MainActor' to make static method 'contentView(_:model:)' part of global actor 'MainActor'
    static func contentView(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:265:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderColor = UniversalColor.divider.cgColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:262:17: note: add '@MainActor' to make static method 'contentView(_:model:)' part of global actor 'MainActor'
    static func contentView(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:266:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderWidth = model.borderWidth.value
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:262:17: note: add '@MainActor' to make static method 'contentView(_:model:)' part of global actor 'MainActor'
    static func contentView(_ view: UIView, model: VM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:269:18: warning: main actor-isolated property 'delaysContentTouches' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      scrollView.delaysContentTouches = false
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:170:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL delaysContentTouches;       // default is YES. if NO, we immediately call -touchesShouldBegin:withEvent:inContentView:. this has no effect on presses
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:268:17: note: add '@MainActor' to make static method 'bodyWrapper' part of global actor 'MainActor'
    static func bodyWrapper(_ scrollView: UIScrollView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:270:18: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      scrollView.contentInsetAdjustmentBehavior = .never
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:268:17: note: add '@MainActor' to make static method 'bodyWrapper' part of global actor 'MainActor'
    static func bodyWrapper(_ scrollView: UIScrollView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:271:18: warning: main actor-isolated property 'automaticallyAdjustsScrollIndicatorInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      scrollView.automaticallyAdjustsScrollIndicatorInsets = false
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:81:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL automaticallyAdjustsScrollIndicatorInsets API_AVAILABLE(ios(13.0), tvos(13.0)) API_UNAVAILABLE(watchos);
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Modal/UIKit/UKModalController.swift:268:17: note: add '@MainActor' to make static method 'bodyWrapper' part of global actor 'MainActor'
    static func bodyWrapper(_ scrollView: UIScrollView) {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/Models/ProgressBarStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ProgressBarVM.swift,\ SUProgressBar.swift,\ UKProgressBar.swift,\ RadioGroupVM.swift,\ RadioItemVM.swift,\ SURadioGroup.swift,\ RadioGroupItemView.swift,\ UKRadioGroup.swift,\ SegmentedControlItemVM.swift,\ SegmentedControlVM.swift,\ SUSegmentedControl.swift,\ UKSegmentedControl.swift,\ SliderStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/Models/ProgressBarVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/SUProgressBar.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/Models/RadioGroupVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/Models/RadioItemVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/SwiftUI/SURadioGroup.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/Models/SegmentedControlItemVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/Models/SegmentedControlVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/SUSegmentedControl.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/Models/SliderStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/Models/ProgressBarVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/SUProgressBar.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:217:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.backgroundColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:216:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:218:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:216:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:218:62: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:216:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:222:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.barColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:221:17: note: add '@MainActor' to make static method 'progressView(_:model:)' part of global actor 'MainActor'
    static func progressView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:223:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:221:17: note: add '@MainActor' to make static method 'progressView(_:model:)' part of global actor 'MainActor'
    static func progressView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:223:62: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:221:17: note: add '@MainActor' to make static method 'progressView(_:model:)' part of global actor 'MainActor'
    static func progressView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:224:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.masksToBounds = true
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/ProgressBar/UKProgressBar.swift:221:17: note: add '@MainActor' to make static method 'progressView(_:model:)' part of global actor 'MainActor'
    static func progressView(_ view: UIView, model: ProgressBarVM) {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/Models/RadioGroupVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/Models/RadioItemVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/SwiftUI/SURadioGroup.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:192:12: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.isUserInteractionEnabled = groupVM.isItemEnabled(itemVM)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:187:17: note: add '@MainActor' to make static method 'mainView(_:itemVM:groupVM:)' part of global actor 'MainActor'
    static func mainView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:201:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = groupVM.circleSize / 2
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:195:17: note: add '@MainActor' to make static method 'radioView(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func radioView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:202:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderWidth = groupVM.lineWidth
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:195:17: note: add '@MainActor' to make static method 'radioView(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func radioView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:203:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderColor = groupVM.radioItemColor(for: itemVM, isSelected: isSelected).uiColor.cgColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:195:17: note: add '@MainActor' to make static method 'radioView(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func radioView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:204:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = .clear
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:195:17: note: add '@MainActor' to make static method 'radioView(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func radioView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:213:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = groupVM.innerCircleSize / 2
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:207:17: note: add '@MainActor' to make static method 'innerCircle(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func innerCircle(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:214:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = groupVM.radioItemColor(for: itemVM, isSelected: isSelected).uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:207:17: note: add '@MainActor' to make static method 'innerCircle(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func innerCircle(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:215:12: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.alpha = isSelected ? 1 : 0
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 CGFloat           alpha;                      // animatable. default is 1.0
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:207:17: note: add '@MainActor' to make static method 'innerCircle(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func innerCircle(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:216:12: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.transform = isSelected ? .identity : .init(scaleX: 0.1, y: 0.1)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform;   // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:207:17: note: add '@MainActor' to make static method 'innerCircle(_:itemVM:groupVM:isSelected:)' part of global actor 'MainActor'
    static func innerCircle(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:224:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.text = itemVM.title
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString           *text; // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:219:17: note: add '@MainActor' to make static method 'titleLabel(_:itemVM:groupVM:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:225:13: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.font = groupVM.preferredFont(for: itemVM.id).uiFont
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:219:17: note: add '@MainActor' to make static method 'titleLabel(_:itemVM:groupVM:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:226:13: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.textColor = groupVM.textColor(for: itemVM).uiColor
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:37:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIColor     *textColor UI_APPEARANCE_SELECTOR; // default is labelColor
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:219:17: note: add '@MainActor' to make static method 'titleLabel(_:itemVM:groupVM:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:227:13: warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.numberOfLines = 0
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:74:32: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger numberOfLines;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/RadioGroupItemView.swift:219:17: note: add '@MainActor' to make static method 'titleLabel(_:itemVM:groupVM:)' part of global actor 'MainActor'
    static func titleLabel(
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:185:17: warning: main actor-isolated property 'axis' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.axis = .vertical
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: mutation of this property is only permitted within the actor
@property(nonatomic) UILayoutConstraintAxis axis;
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:184:17: note: add '@MainActor' to make static method 'stackView(_:model:)' part of global actor 'MainActor'
    static func stackView(_ stackView: UIStackView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:186:17: warning: main actor-isolated property 'alignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.alignment = .leading
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIStackViewAlignment alignment;
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:184:17: note: add '@MainActor' to make static method 'stackView(_:model:)' part of global actor 'MainActor'
    static func stackView(_ stackView: UIStackView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:187:17: warning: main actor-isolated property 'spacing' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.spacing = model.spacing
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat spacing;
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:184:17: note: add '@MainActor' to make static method 'stackView(_:model:)' part of global actor 'MainActor'
    static func stackView(_ stackView: UIStackView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:188:17: warning: main actor-isolated property 'distribution' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      stackView.distribution = .equalSpacing
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIStackViewDistribution distribution;
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/RadioGroup/UIKit/UKRadioGroup.swift:184:17: note: add '@MainActor' to make static method 'stackView(_:model:)' part of global actor 'MainActor'
    static func stackView(_ stackView: UIStackView, model: Model) {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/Models/SegmentedControlItemVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/Models/SegmentedControlVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/SUSegmentedControl.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:312:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.backgroundColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:311:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:313:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius.value(
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:311:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:314:19: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        for: view.bounds.height
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:311:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:316:12: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.isUserInteractionEnabled = model.isEnabled
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:311:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:320:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.selectedSegmentColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:319:17: note: add '@MainActor' to make static method 'selectedSegment(_:model:)' part of global actor 'MainActor'
    static func selectedSegment(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:321:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.selectedSegmentCornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:319:17: note: add '@MainActor' to make static method 'selectedSegment(_:model:)' part of global actor 'MainActor'
    static func selectedSegment(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:321:77: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.selectedSegmentCornerRadius(for: view.bounds.height)
                                                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:319:17: note: add '@MainActor' to make static method 'selectedSegment(_:model:)' part of global actor 'MainActor'
    static func selectedSegment(_ view: UIView, model: Model) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:329:50: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      guard let itemVM = model.item(for: segment.id) else {
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:349:33: note: property declared here
    public fileprivate(set) var id: ID
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:332:15: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      segment.text = itemVM.title
              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString           *text; // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:333:15: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      segment.font = model.preferredFont(for: segment.id).uiFont
              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:333:55: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      segment.font = model.preferredFont(for: segment.id).uiFont
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:349:33: note: property declared here
    public fileprivate(set) var id: ID
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:334:15: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      segment.textColor = model.foregroundColor(
              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:37:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIColor     *textColor UI_APPEARANCE_SELECTOR; // default is labelColor
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:335:21: warning: main actor-isolated property 'id' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        id: segment.id,
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:349:33: note: property declared here
    public fileprivate(set) var id: ID
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:338:15: warning: main actor-isolated property 'textAlignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      segment.textAlignment = .center
              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:56:48: note: mutation of this property is only permitted within the actor
@property(nonatomic)        NSTextAlignment    textAlignment;   // default is NSTextAlignmentNatural (before iOS 9, the default was NSTextAlignmentLeft)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:339:15: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      segment.isUserInteractionEnabled = itemVM.isEnabled
              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:67:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is NO
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/SegmentedControl/UKSegmentedControl.swift:324:17: note: add '@MainActor' to make static method 'segment(_:model:selectedId:)' part of global actor 'MainActor'
    static func segment(
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/Models/SliderStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ ComponentsKit (in target 'ComponentsKit' from project 'ComponentsKit')
EmitSwiftModule normal arm64 (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Alert/Helpers/AlertButtonsOrientationCalculator.swift:9:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
  private static let primaryButton = UKButton(model: .init())
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Alert/Helpers/AlertButtonsOrientationCalculator.swift:10:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
  private static let secondaryButton = UKButton(model: .init())
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Alert/Models/AlertVM.swift:102:14: warning: static property 'defaultButtonVM' is not concurrency-safe because non-'Sendable' type 'ButtonVM' may have shared mutable state; this is an error in the Swift 6 language mode
  static let defaultButtonVM = ButtonVM {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Button/Models/ButtonVM.swift:4:15: note: consider making struct 'ButtonVM' conform to the 'Sendable' protocol
public struct ButtonVM: ComponentVM {
              ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Alert/Models/AlertVM.swift:102:14: note: add '@MainActor' to make static property 'defaultButtonVM' part of global actor 'MainActor'
  static let defaultButtonVM = ButtonVM {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Alert/Models/AlertVM.swift:102:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let defaultButtonVM = ButtonVM {
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Avatar/Helpers/AvatarImageManager.swift:8:22: warning: static property 'remoteImagesCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var remoteImagesCache = NSCache<NSString, UIImage>()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Avatar/Helpers/AvatarImageManager.swift:8:22: note: convert 'remoteImagesCache' to a 'let' constant to make 'Sendable' shared state immutable
  private static var remoteImagesCache = NSCache<NSString, UIImage>()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Avatar/Helpers/AvatarImageManager.swift:8:22: note: add '@MainActor' to make static property 'remoteImagesCache' part of global actor 'MainActor'
  private static var remoteImagesCache = NSCache<NSString, UIImage>()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Avatar/Helpers/AvatarImageManager.swift:8:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var remoteImagesCache = NSCache<NSString, UIImage>()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Countdown/Helpers/CountdownWidthCalculator.swift:4:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
  private static let label = UILabel()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Countdown/Localization/UnitsLocalization.swift:64:14: warning: static property 'defaultLocalizations' is not concurrency-safe because non-'Sendable' type '[Locale : UnitsLocalization]' may have shared mutable state; this is an error in the Swift 6 language mode
  static let defaultLocalizations: [Locale: UnitsLocalization] = [
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Countdown/Localization/UnitsLocalization.swift:6:15: note: consider making struct 'UnitsLocalization' conform to the 'Sendable' protocol
public struct UnitsLocalization: Equatable {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Countdown/Localization/UnitsLocalization.swift:64:14: note: add '@MainActor' to make static property 'defaultLocalizations' part of global actor 'MainActor'
  static let defaultLocalizations: [Locale: UnitsLocalization] = [
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Countdown/Localization/UnitsLocalization.swift:64:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let defaultLocalizations: [Locale: UnitsLocalization] = [
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:4:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
  private static let textView = UITextView()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var current = Self() {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
  public static var current = Self() {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
  public static var current = Self() {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var current = Self() {
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ NSObject+ObserveThemeChange.swift,\ UIEdgeInsets+Helpers.swift,\ UIView+Helpers.swift,\ ComponentColor.swift,\ UniversalColor.swift,\ UniversalFont.swift,\ ComponentVM.swift,\ Initializable.swift,\ UKComponent.swift,\ Updatable.swift,\ AnimationScale.swift,\ BorderWidth.swift,\ ButtonStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/NSObject+ObserveThemeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIEdgeInsets+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIView+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Colors/ComponentColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Colors/UniversalColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Fonts/UniversalFont.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/ComponentVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/Initializable.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/UKComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/Updatable.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/AnimationScale.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/BorderWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ButtonStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/NSObject+ObserveThemeChange.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIEdgeInsets+Helpers.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIView+Helpers.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Colors/ComponentColor.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Colors/UniversalColor.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Fonts/UniversalFont.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/ComponentVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/Initializable.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/UKComponent.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Protocols/Updatable.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/AnimationScale.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/BorderWidth.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ButtonStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling LayoutConstraints.swift (in target 'AutoLayout' from project 'AutoLayout')
SwiftCompile normal arm64 Compiling\ ComponentRadius.swift,\ ComponentSize.swift,\ ContainerRadius.swift,\ ImageRenderingMode.swift,\ InputStyle.swift,\ Paddings.swift,\ Shadow.swift,\ SubmitType.swift,\ TextAutocapitalization.swift,\ Layout.swift,\ Palette.swift,\ Theme.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ComponentRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ComponentSize.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ContainerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ImageRenderingMode.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/InputStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/Paddings.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/Shadow.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/SubmitType.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/TextAutocapitalization.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Layout.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Palette.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ComponentRadius.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ComponentSize.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ContainerRadius.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/ImageRenderingMode.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/InputStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/Paddings.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/Shadow.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/SubmitType.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Shared/Types/TextAutocapitalization.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Layout.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Palette.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var current = Self() {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
  public static var current = Self() {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
  public static var current = Self() {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Theme/Theme.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var current = Self() {
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UIView+Layout.swift (in target 'AutoLayout' from project 'AutoLayout')
SwiftCompile normal arm64 Compiling\ SliderVM.swift,\ SUSlider.swift,\ UKSlider.swift,\ TextInputHeightCalculator.swift,\ TextInputVM.swift,\ SUTextInput.swift,\ UKTextInput.swift,\ Array+Safe.swift,\ Collection+Helpers.swift,\ Optional+Helpers.swift,\ ThemeChangeObserver.swift,\ View+Observe.swift,\ FullWidthComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/Models/SliderVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/SUSlider.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Models/TextInputVM.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/SUTextInput.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Array+Safe.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Collection+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Optional+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/SwiftUI/ThemeChangeObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/SwiftUI/View+Observe.swift /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/FullWidthComponent.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/Models/SliderVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/SUSlider.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:257:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.color.background.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:256:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:259:14: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.backgroundColor = .clear
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:256:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:261:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:256:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:261:62: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:256:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:262:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.masksToBounds = true
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:256:17: note: add '@MainActor' to make static method 'backgroundView(_:model:)' part of global actor 'MainActor'
    static func backgroundView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:266:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.color.main.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:265:17: note: add '@MainActor' to make static method 'barView(_:model:)' part of global actor 'MainActor'
    static func barView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:267:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:265:17: note: add '@MainActor' to make static method 'barView(_:model:)' part of global actor 'MainActor'
    static func barView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:267:62: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: view.bounds.height)
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:265:17: note: add '@MainActor' to make static method 'barView(_:model:)' part of global actor 'MainActor'
    static func barView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:268:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.masksToBounds = true
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:265:17: note: add '@MainActor' to make static method 'barView(_:model:)' part of global actor 'MainActor'
    static func barView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:282:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.color.main.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:281:17: note: add '@MainActor' to make static method 'handleView(_:model:)' part of global actor 'MainActor'
    static func handleView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:283:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: model.handleSize.width)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:281:17: note: add '@MainActor' to make static method 'handleView(_:model:)' part of global actor 'MainActor'
    static func handleView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:284:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.masksToBounds = true
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:281:17: note: add '@MainActor' to make static method 'handleView(_:model:)' part of global actor 'MainActor'
    static func handleView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:288:12: warning: main actor-isolated property 'isVisible' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.isVisible = model.isHandleOverlayVisible
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/UIView+Helpers.swift:5:7: note: mutation of this property is only permitted within the actor
  var isVisible: Bool {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:287:17: note: add '@MainActor' to make static method 'handleOverlayView(_:model:)' part of global actor 'MainActor'
    static func handleOverlayView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:289:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.color.contrast.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:287:17: note: add '@MainActor' to make static method 'handleOverlayView(_:model:)' part of global actor 'MainActor'
    static func handleOverlayView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:290:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.cornerRadius(for: model.handleOverlaySide)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/Slider/UKSlider.swift:287:17: note: add '@MainActor' to make static method 'handleOverlayView(_:model:)' part of global actor 'MainActor'
    static func handleOverlayView(_ view: UIView, model: SliderVM) {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:4:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
  private static let textView = UITextView()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:13:19: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    self.textView.text = text
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:197:53: note: mutation of this property is only permitted within the actor
@property(null_resettable,nonatomic,copy) NSString *text;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:8:15: note: add '@MainActor' to make static method 'preferredHeight(for:model:width:)' part of global actor 'MainActor'
  static func preferredHeight(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:17:41: warning: call to main actor-isolated instance method 'sizeThatFits' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    let estimatedHeight = self.textView.sizeThatFits(targetSize).height
                                        ^
UIKit.UIView.sizeThatFits:2:22: note: calls to instance method 'sizeThatFits' from outside of its actor context are implicitly asynchronous
@MainActor open func sizeThatFits(_ size: CGSize) -> CGSize}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:8:15: note: add '@MainActor' to make static method 'preferredHeight(for:model:width:)' part of global actor 'MainActor'
  static func preferredHeight(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:23:19: warning: main actor-isolated property 'isScrollEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    self.textView.isScrollEnabled = false
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:22:23: note: add '@MainActor' to make static method 'style(_:with:)' part of global actor 'MainActor'
  private static func style(_ textView: UITextView, with model: TextInputVM) {
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:24:19: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    self.textView.font = model.preferredFont.uiFont
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: mutation of this property is only permitted within the actor
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:22:23: note: add '@MainActor' to make static method 'style(_:with:)' part of global actor 'MainActor'
  private static func style(_ textView: UITextView, with model: TextInputVM) {
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:25:19: warning: main actor-isolated property 'textContainerInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    self.textView.textContainerInset = .init(inset: model.contentPadding)
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:236:43: note: mutation of this property is only permitted within the actor
@property(nonatomic, assign) UIEdgeInsets textContainerInset API_AVAILABLE(ios(7.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:22:23: note: add '@MainActor' to make static method 'style(_:with:)' part of global actor 'MainActor'
  private static func style(_ textView: UITextView, with model: TextInputVM) {
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:26:19: warning: main actor-isolated property 'textContainer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    self.textView.textContainer.lineFragmentPadding = 0
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:234:49: note: mutation of this property is only permitted within the actor
@property(nonatomic, readonly) NSTextContainer *textContainer API_AVAILABLE(ios(7.0));
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Helpers/TextInputHeightCalculator.swift:22:23: note: add '@MainActor' to make static method 'style(_:with:)' part of global actor 'MainActor'
  private static func style(_ textView: UITextView, with model: TextInputVM) {
                      ^
  @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/Models/TextInputVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/SUTextInput.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:205:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.backgroundColor = model.backgroundColor.uiColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:204:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: TextInputVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:206:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.adaptedCornerRadius(for: view.bounds.height)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:204:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: TextInputVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:206:69: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.cornerRadius = model.adaptedCornerRadius(for: view.bounds.height)
                                                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:204:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: TextInputVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:207:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderColor = model.borderColor.cgColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:204:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: TextInputVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:208:12: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      view.layer.borderWidth = model.borderWidth
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:204:17: note: add '@MainActor' to make static method 'mainView(_:model:)' part of global actor 'MainActor'
    static func mainView(_ view: UIView, model: TextInputVM) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:215:16: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.font = model.preferredFont.uiFont
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: mutation of this property is only permitted within the actor
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:216:16: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textColor = model.foregroundColor.uiColor
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:199:47: note: mutation of this property is only permitted within the actor
@property(nullable,nonatomic,strong) UIColor *textColor;
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:217:16: warning: main actor-isolated property 'tintColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.tintColor = model.tintColor.uiColor
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:319:56: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic, strong) UIColor *tintColor API_AVAILABLE(ios(7.0));
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:218:16: warning: main actor-isolated property 'autocorrectionType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.autocorrectionType = model.autocorrectionType
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:239:47: note: mutation of this property is only permitted within the actor
@property(nonatomic) UITextAutocorrectionType autocorrectionType;         // default is UITextAutocorrectionTypeDefault
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:219:16: warning: main actor-isolated property 'autocapitalizationType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.autocapitalizationType = model.autocapitalization.textAutocapitalizationType
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:238:51: note: mutation of this property is only permitted within the actor
@property(nonatomic) UITextAutocapitalizationType autocapitalizationType; // default is UITextAutocapitalizationTypeSentences
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:220:16: warning: main actor-isolated property 'isEditable' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.isEditable = model.isEnabled
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:202:45: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isEditable) BOOL editable API_UNAVAILABLE(tvos);
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:221:16: warning: main actor-isolated property 'isSelectable' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.isSelectable = model.isEnabled
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:205:47: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isSelectable) BOOL selectable API_AVAILABLE(ios(7.0));
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:222:16: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.backgroundColor = .clear
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:211:17: note: add '@MainActor' to make static method 'textView(_:model:)' part of global actor 'MainActor'
    static func textView(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:227:16: warning: main actor-isolated property 'textContainer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textContainer.lineFragmentPadding = 0
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:234:49: note: mutation of this property is only permitted within the actor
@property(nonatomic, readonly) NSTextContainer *textContainer API_AVAILABLE(ios(7.0));
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:226:17: note: add '@MainActor' to make static method 'textView(_:padding:)' part of global actor 'MainActor'
    static func textView(_ textView: UITextView, padding: CGFloat) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:228:16: warning: main actor-isolated property 'textContainerInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textContainerInset.top = padding
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:236:43: note: mutation of this property is only permitted within the actor
@property(nonatomic, assign) UIEdgeInsets textContainerInset API_AVAILABLE(ios(7.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:226:17: note: add '@MainActor' to make static method 'textView(_:padding:)' part of global actor 'MainActor'
    static func textView(_ textView: UITextView, padding: CGFloat) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:229:16: warning: main actor-isolated property 'textContainerInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textContainerInset.left = padding
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:236:43: note: mutation of this property is only permitted within the actor
@property(nonatomic, assign) UIEdgeInsets textContainerInset API_AVAILABLE(ios(7.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:226:17: note: add '@MainActor' to make static method 'textView(_:padding:)' part of global actor 'MainActor'
    static func textView(_ textView: UITextView, padding: CGFloat) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:230:16: warning: main actor-isolated property 'textContainerInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textContainerInset.right = padding
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:236:43: note: mutation of this property is only permitted within the actor
@property(nonatomic, assign) UIEdgeInsets textContainerInset API_AVAILABLE(ios(7.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:226:17: note: add '@MainActor' to make static method 'textView(_:padding:)' part of global actor 'MainActor'
    static func textView(_ textView: UITextView, padding: CGFloat) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:231:16: warning: main actor-isolated property 'textContainerInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      textView.textContainerInset.bottom = padding
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:236:43: note: mutation of this property is only permitted within the actor
@property(nonatomic, assign) UIEdgeInsets textContainerInset API_AVAILABLE(ios(7.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:226:17: note: add '@MainActor' to make static method 'textView(_:padding:)' part of global actor 'MainActor'
    static func textView(_ textView: UITextView, padding: CGFloat) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:238:13: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.font = model.preferredFont.uiFont
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:234:17: note: add '@MainActor' to make static method 'placeholder(_:model:)' part of global actor 'MainActor'
    static func placeholder(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:239:13: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.textColor = model.placeholderColor.uiColor
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:37:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIColor     *textColor UI_APPEARANCE_SELECTOR; // default is labelColor
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:234:17: note: add '@MainActor' to make static method 'placeholder(_:model:)' part of global actor 'MainActor'
    static func placeholder(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:240:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.text = model.placeholder
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString           *text; // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:234:17: note: add '@MainActor' to make static method 'placeholder(_:model:)' part of global actor 'MainActor'
    static func placeholder(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:241:13: warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      label.numberOfLines = 0
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:74:32: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger numberOfLines;
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Components/TextInput/UKTextInput.swift:234:17: note: add '@MainActor' to make static method 'placeholder(_:model:)' part of global actor 'MainActor'
    static func placeholder(
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Array+Safe.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Collection+Helpers.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/Swift/Optional+Helpers.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/SwiftUI/ThemeChangeObserver.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/SwiftUI/View+Observe.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Helpers/UIKit/FullWidthComponent.swift (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for ComponentsKit (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling NSObject+ObserveThemeChange.swift, UIEdgeInsets+Helpers.swift, UIView+Helpers.swift, ComponentColor.swift, UniversalColor.swift, UniversalFont.swift, ComponentVM.swift, Initializable.swift, UKComponent.swift, Updatable.swift, AnimationScale.swift, BorderWidth.swift, ButtonStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriver\ Compilation\ Requirements ComponentsKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComponentsKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation AutoLayout normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AutoLayout' from project 'AutoLayout')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AutoLayout -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name autolayout -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ComponentRadius.swift, ComponentSize.swift, ContainerRadius.swift, ImageRenderingMode.swift, InputStyle.swift, Paddings.swift, Shadow.swift, SubmitType.swift, TextAutocapitalization.swift, Layout.swift, Palette.swift, Theme.swift, GeneratedAssetSymbols.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling CountdownHelpers.swift, CountdownWidthCalculator.swift, UnitsLocalization.swift, CountdownManager.swift, CountdownStyle.swift, CountdownVM.swift, SUCountdown.swift, UKCountdown.swift, DividerOrientation.swift, DividerVM.swift, SUDivider.swift, UKDivider.swift, InputFieldTitlePosition.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling AvatarGroupVM.swift, AvatarItemVM.swift, SUAvatarGroup.swift, AvatarContainer.swift, UKAvatarGroup.swift, BadgeStyle.swift, BadgeVM.swift, SUBadge.swift, UKBadge.swift, ButtonImageLocation.swift, ButtonImageSource.swift, ButtonVM.swift, SUButton.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling SliderVM.swift, SUSlider.swift, UKSlider.swift, TextInputHeightCalculator.swift, TextInputVM.swift, SUTextInput.swift, UKTextInput.swift, Array+Safe.swift, Collection+Helpers.swift, Optional+Helpers.swift, ThemeChangeObserver.swift, View+Observe.swift, FullWidthComponent.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling InputFieldVM.swift, SUInputField.swift, UKInputField.swift, LoadingStyle.swift, LoadingVM.swift, SULoading.swift, UKLoading.swift, BottomModalVM.swift, CenterModalVM.swift, ModalOverlayStyle.swift, ModalSize.swift, ModalTransition.swift, ModalVM.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AlertButtonsOrientationCalculator.swift, AlertButtonVM.swift, AlertVM.swift, SUAlert.swift, UKAlertController.swift, AvatarImageManager.swift, AvatarImageSource.swift, AvatarPlaceholder.swift, AvatarVM.swift, AvatarContent.swift, SUAvatar.swift, UKAvatar.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling UKButton.swift, CardVM.swift, SUCard.swift, UKCard.swift, CheckboxAnimationDurations.swift, CheckboxVM.swift, SUCheckbox.swift, UKCheckbox.swift, CircularProgressLineCap.swift, CircularProgressShape.swift, CircularProgressVM.swift, SUCircularProgress.swift, UKCircularProgress.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ComponentsKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-Swift.h (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ComponentsKit-Swift.h
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.o normal (in target 'AutoLayout' from project 'AutoLayout')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AutoLayout
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.o
SwiftDriverJobDiscovery normal arm64 Compiling ModalAnimation.swift, ModalPresentationModifier.swift, ModalPresentationWithItemModifier.swift, View+Helpers.swift, ModalContent.swift, ModalOverlay.swift, SUBottomModal.swift, SUCenterModal.swift, ContentSizedScrollView.swift, UKBottomModalController.swift, UKCenterModalController.swift, UKModalController.swift, ProgressBarStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
SwiftDriverJobDiscovery normal arm64 Compiling ProgressBarVM.swift, SUProgressBar.swift, UKProgressBar.swift, RadioGroupVM.swift, RadioItemVM.swift, SURadioGroup.swift, RadioGroupItemView.swift, UKRadioGroup.swift, SegmentedControlItemVM.swift, SegmentedControlVM.swift, SUSegmentedControl.swift, UKSegmentedControl.swift, SliderStyle.swift (in target 'ComponentsKit' from project 'ComponentsKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.abi.json (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftmodule (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftdoc (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftsourceinfo (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver\ Compilation ComponentsKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComponentsKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'AutoLayout' from project 'AutoLayout')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AutoLayout
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name AutoLayout --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier autolayout.AutoLayout --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/AutoLayout.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/AutoLayout.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AutoLayout.build/Debug-iphoneos/AutoLayout.build/Objects-normal/arm64/AutoLayout.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-26 06:04:40.590 appintentsmetadataprocessor[772:4629] Starting appintentsmetadataprocessor export
2025-06-26 06:04:40.629 appintentsmetadataprocessor[772:4629] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.o (in target 'AutoLayout' from project 'AutoLayout')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AutoLayout
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AutoLayout.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.o normal (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.o
ExtractAppIntentsMetadata (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ComponentsKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.ComponentsKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/ComponentsKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/ComponentsKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ComponentsKit.build/Debug-iphoneos/ComponentsKit.build/Objects-normal/arm64/ComponentsKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-26 06:04:40.715 appintentsmetadataprocessor[775:4645] Starting appintentsmetadataprocessor export
2025-06-26 06:04:40.751 appintentsmetadataprocessor[775:4645] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.o (in target 'ComponentsKit' from project 'ComponentsKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComponentsKit.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "autolayout",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/componentskit/AutoLayout"
    }
  ],
  "manifest_display_name" : "ComponentsKit",
  "name" : "ComponentsKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "ComponentsKit",
      "targets" : [
        "ComponentsKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ComponentsKit",
      "module_type" : "SwiftTarget",
      "name" : "ComponentsKit",
      "path" : "Sources/ComponentsKit",
      "product_dependencies" : [
        "AutoLayout"
      ],
      "product_memberships" : [
        "ComponentsKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/ComponentsKit/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Components/Alert/Helpers/AlertButtonsOrientationCalculator.swift",
        "Components/Alert/Models/AlertButtonVM.swift",
        "Components/Alert/Models/AlertVM.swift",
        "Components/Alert/SUAlert.swift",
        "Components/Alert/UKAlertController.swift",
        "Components/Avatar/Helpers/AvatarImageManager.swift",
        "Components/Avatar/Models/AvatarImageSource.swift",
        "Components/Avatar/Models/AvatarPlaceholder.swift",
        "Components/Avatar/Models/AvatarVM.swift",
        "Components/Avatar/SwiftUI/AvatarContent.swift",
        "Components/Avatar/SwiftUI/SUAvatar.swift",
        "Components/Avatar/UIKit/UKAvatar.swift",
        "Components/AvatarGroup/Models/AvatarGroupVM.swift",
        "Components/AvatarGroup/Models/AvatarItemVM.swift",
        "Components/AvatarGroup/SwiftUI/SUAvatarGroup.swift",
        "Components/AvatarGroup/UIKit/AvatarContainer.swift",
        "Components/AvatarGroup/UIKit/UKAvatarGroup.swift",
        "Components/Badge/Models/BadgeStyle.swift",
        "Components/Badge/Models/BadgeVM.swift",
        "Components/Badge/SUBadge.swift",
        "Components/Badge/UKBadge.swift",
        "Components/Button/Models/ButtonImageLocation.swift",
        "Components/Button/Models/ButtonImageSource.swift",
        "Components/Button/Models/ButtonVM.swift",
        "Components/Button/SUButton.swift",
        "Components/Button/UKButton.swift",
        "Components/Card/Models/CardVM.swift",
        "Components/Card/SUCard.swift",
        "Components/Card/UKCard.swift",
        "Components/Checkbox/Helpers/CheckboxAnimationDurations.swift",
        "Components/Checkbox/Models/CheckboxVM.swift",
        "Components/Checkbox/SUCheckbox.swift",
        "Components/Checkbox/UKCheckbox.swift",
        "Components/CircularProgress/Models/CircularProgressLineCap.swift",
        "Components/CircularProgress/Models/CircularProgressShape.swift",
        "Components/CircularProgress/Models/CircularProgressVM.swift",
        "Components/CircularProgress/SUCircularProgress.swift",
        "Components/CircularProgress/UKCircularProgress.swift",
        "Components/Countdown/Helpers/CountdownHelpers.swift",
        "Components/Countdown/Helpers/CountdownWidthCalculator.swift",
        "Components/Countdown/Localization/UnitsLocalization.swift",
        "Components/Countdown/Manager/CountdownManager.swift",
        "Components/Countdown/Models/CountdownStyle.swift",
        "Components/Countdown/Models/CountdownVM.swift",
        "Components/Countdown/SUCountdown.swift",
        "Components/Countdown/UKCountdown.swift",
        "Components/Divider/Models/DividerOrientation.swift",
        "Components/Divider/Models/DividerVM.swift",
        "Components/Divider/SUDivider.swift",
        "Components/Divider/UKDivider.swift",
        "Components/InputField/Models/InputFieldTitlePosition.swift",
        "Components/InputField/Models/InputFieldVM.swift",
        "Components/InputField/SUInputField.swift",
        "Components/InputField/UKInputField.swift",
        "Components/Loading/Models/LoadingStyle.swift",
        "Components/Loading/Models/LoadingVM.swift",
        "Components/Loading/SULoading.swift",
        "Components/Loading/UKLoading.swift",
        "Components/Modal/Models/BottomModalVM.swift",
        "Components/Modal/Models/CenterModalVM.swift",
        "Components/Modal/Models/ModalOverlayStyle.swift",
        "Components/Modal/Models/ModalSize.swift",
        "Components/Modal/Models/ModalTransition.swift",
        "Components/Modal/Models/ModalVM.swift",
        "Components/Modal/SharedHelpers/ModalAnimation.swift",
        "Components/Modal/SwiftUI/Helpers/ModalPresentationModifier.swift",
        "Components/Modal/SwiftUI/Helpers/ModalPresentationWithItemModifier.swift",
        "Components/Modal/SwiftUI/Helpers/View+Helpers.swift",
        "Components/Modal/SwiftUI/ModalContent.swift",
        "Components/Modal/SwiftUI/ModalOverlay.swift",
        "Components/Modal/SwiftUI/SUBottomModal.swift",
        "Components/Modal/SwiftUI/SUCenterModal.swift",
        "Components/Modal/UIKit/Helpers/ContentSizedScrollView.swift",
        "Components/Modal/UIKit/UKBottomModalController.swift",
        "Components/Modal/UIKit/UKCenterModalController.swift",
        "Components/Modal/UIKit/UKModalController.swift",
        "Components/ProgressBar/Models/ProgressBarStyle.swift",
        "Components/ProgressBar/Models/ProgressBarVM.swift",
        "Components/ProgressBar/SUProgressBar.swift",
        "Components/ProgressBar/UKProgressBar.swift",
        "Components/RadioGroup/Models/RadioGroupVM.swift",
        "Components/RadioGroup/Models/RadioItemVM.swift",
        "Components/RadioGroup/SwiftUI/SURadioGroup.swift",
        "Components/RadioGroup/UIKit/RadioGroupItemView.swift",
        "Components/RadioGroup/UIKit/UKRadioGroup.swift",
        "Components/SegmentedControl/Models/SegmentedControlItemVM.swift",
        "Components/SegmentedControl/Models/SegmentedControlVM.swift",
        "Components/SegmentedControl/SUSegmentedControl.swift",
        "Components/SegmentedControl/UKSegmentedControl.swift",
        "Components/Slider/Models/SliderStyle.swift",
        "Components/Slider/Models/SliderVM.swift",
        "Components/Slider/SUSlider.swift",
        "Components/Slider/UKSlider.swift",
        "Components/TextInput/Helpers/TextInputHeightCalculator.swift",
        "Components/TextInput/Models/TextInputVM.swift",
        "Components/TextInput/SUTextInput.swift",
        "Components/TextInput/UKTextInput.swift",
        "Helpers/Swift/Array+Safe.swift",
        "Helpers/Swift/Collection+Helpers.swift",
        "Helpers/Swift/Optional+Helpers.swift",
        "Helpers/SwiftUI/ThemeChangeObserver.swift",
        "Helpers/SwiftUI/View+Observe.swift",
        "Helpers/UIKit/FullWidthComponent.swift",
        "Helpers/UIKit/NSObject+ObserveThemeChange.swift",
        "Helpers/UIKit/UIEdgeInsets+Helpers.swift",
        "Helpers/UIKit/UIView+Helpers.swift",
        "Shared/Colors/ComponentColor.swift",
        "Shared/Colors/UniversalColor.swift",
        "Shared/Fonts/UniversalFont.swift",
        "Shared/Protocols/ComponentVM.swift",
        "Shared/Protocols/Initializable.swift",
        "Shared/Protocols/UKComponent.swift",
        "Shared/Protocols/Updatable.swift",
        "Shared/Types/AnimationScale.swift",
        "Shared/Types/BorderWidth.swift",
        "Shared/Types/ButtonStyle.swift",
        "Shared/Types/ComponentRadius.swift",
        "Shared/Types/ComponentSize.swift",
        "Shared/Types/ContainerRadius.swift",
        "Shared/Types/ImageRenderingMode.swift",
        "Shared/Types/InputStyle.swift",
        "Shared/Types/Paddings.swift",
        "Shared/Types/Shadow.swift",
        "Shared/Types/SubmitType.swift",
        "Shared/Types/TextAutocapitalization.swift",
        "Theme/Layout.swift",
        "Theme/Palette.swift",
        "Theme/Theme.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.