made private

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-05-03 09:59:24 -05:00
parent 12322130db
commit e8eeddc889

View File

@ -108,6 +108,10 @@ open class TileContainerBase<PaddingType: DefaultValuing>: Control where Padding
$0.clipsToBounds = true
}
private var containerView = View().with {
$0.isUserInteractionEnabled = false
}
//--------------------------------------------------
// MARK: - Public Properties
//--------------------------------------------------
@ -119,11 +123,6 @@ open class TileContainerBase<PaddingType: DefaultValuing>: Control where Padding
$0.isUserInteractionEnabled = false
}
/// This is the container in which views will be pinned.
open var containerView = View().with {
$0.isUserInteractionEnabled = false
}
/// This is the view used to show the high light color for a onClick.
open var highlightView = View().with {
$0.isUserInteractionEnabled = false