diff --git a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift index 0aae75b..7a309f1 100644 --- a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift +++ b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift @@ -50,7 +50,7 @@ open class BasePassCodeViewController: UIViewController { @IBOutlet public weak var errorLabel: UILabel? @IBOutlet public weak var dotStackView: UIStackView! - let disposeBag = DisposeBag() + public let disposeBag = DisposeBag() fileprivate lazy var fakeTextField: UITextField = { let fakeTextField = UITextField() diff --git a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/ViewModel/BasePassCodeViewModel.swift b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/ViewModel/BasePassCodeViewModel.swift index 333e65d..f5701fa 100644 --- a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/ViewModel/BasePassCodeViewModel.swift +++ b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/ViewModel/BasePassCodeViewModel.swift @@ -56,9 +56,9 @@ open class BasePassCodeViewModel: BaseViewModel { return PassCodeHolderBuilder.build(with: self.controllerType) }() - init(controllerType: PassCodeControllerType, - passCodeConfiguration: PassCodeConfiguration, - touchIdService: TouchIDService? = nil) { + public init(controllerType: PassCodeControllerType, + passCodeConfiguration: PassCodeConfiguration, + touchIdService: TouchIDService? = nil) { self.controllerType = controllerType self.passCodeConfiguration = passCodeConfiguration