refactored to new names

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-06-05 11:02:11 -05:00
parent 8b2aaa1813
commit 1888618f45
4 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ class CheckboxGroupViewController: BaseViewController<CheckboxGroup> {
}
var checkbox: Checkbox? {
var checkbox: CheckboxItem? {
component.selectorViews.first
}

View File

@ -11,7 +11,7 @@ import VDS
import VDSColorTokens
import Combine
class CheckboxViewController: BaseViewController<Checkbox> {
class CheckboxViewController: BaseViewController<CheckboxItem> {
var disabledSwitch = Toggle()
var labelTextField = TextField()

View File

@ -104,7 +104,7 @@ class RadioBoxGroupViewController: BaseViewController<RadioBoxGroup>{
subTextRightField.text = radioBox1.subTextRight
}
var radioBox: RadioBox? {
var radioBox: RadioBoxItem? {
component.selectorViews.first
}

View File

@ -97,7 +97,7 @@ class RadioButtonViewController: BaseViewController<RadioButtonGroup> {
childTextField.text = radioButton1.childText
}
var radioButton: RadioButton? {
var radioButton: RadioButtonItem? {
component.selectorViews.first
}