Merge branch 'refactor/checkbox' into 'develop'

refactored to new names

See merge request BPHV_MIPS/vds_ios_sample!45
This commit is contained in:
Bruce, Matt R 2023-06-05 19:05:03 +00:00
commit 61dae69dde
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
}