From 9f1e8d84e028c018ab0381e191f0cd3f51939bc3 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 5 Jun 2023 14:47:01 -0500 Subject: [PATCH 1/2] CXTDT-420885 - spacing between items in groups update Signed-off-by: Matt Bruce --- VDS/Components/Checkbox/CheckboxGroup.swift | 2 +- VDS/Components/RadioBox/RadioBoxGroup.swift | 2 +- VDS/Components/RadioButton/RadioButtonGroup.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VDS/Components/Checkbox/CheckboxGroup.swift b/VDS/Components/Checkbox/CheckboxGroup.swift index 7c4817fc..530484ca 100644 --- a/VDS/Components/Checkbox/CheckboxGroup.swift +++ b/VDS/Components/Checkbox/CheckboxGroup.swift @@ -83,7 +83,7 @@ open class CheckboxGroup: SelectorGroupHandlerBase { $0.alignment = .fill $0.distribution = .fill $0.axis = .vertical - $0.spacing = 10 + $0.spacing = VDSLayout.Spacing.space6X.value } }() diff --git a/VDS/Components/RadioBox/RadioBoxGroup.swift b/VDS/Components/RadioBox/RadioBoxGroup.swift index 3196de93..ef6fade0 100644 --- a/VDS/Components/RadioBox/RadioBoxGroup.swift +++ b/VDS/Components/RadioBox/RadioBoxGroup.swift @@ -56,7 +56,7 @@ open class RadioBoxGroup: SelectorGroupSelectedHandlerBase { private var mainStackView: UIStackView = { return UIStackView().with { $0.translatesAutoresizingMaskIntoConstraints = false - $0.spacing = 12 + $0.spacing = VDSLayout.Spacing.space3X.value } }() diff --git a/VDS/Components/RadioButton/RadioButtonGroup.swift b/VDS/Components/RadioButton/RadioButtonGroup.swift index 992d76a5..2a017d1b 100644 --- a/VDS/Components/RadioButton/RadioButtonGroup.swift +++ b/VDS/Components/RadioButton/RadioButtonGroup.swift @@ -76,7 +76,7 @@ open class RadioButtonGroup: SelectorGroupSelectedHandlerBase { $0.alignment = .fill $0.distribution = .fill $0.axis = .vertical - $0.spacing = 10 + $0.spacing = VDSLayout.Spacing.space6X.value } }() From 31a96dab9d15e401dc4bbe92e09831d6ed7bc03f Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 5 Jun 2023 14:52:09 -0500 Subject: [PATCH 2/2] updated version and release notes for new build Signed-off-by: Matt Bruce --- VDS.xcodeproj/project.pbxproj | 4 ++-- VDS/SupportingFiles/ReleaseNotes.txt | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/VDS.xcodeproj/project.pbxproj b/VDS.xcodeproj/project.pbxproj index 80db9b43..62838196 100644 --- a/VDS.xcodeproj/project.pbxproj +++ b/VDS.xcodeproj/project.pbxproj @@ -1090,7 +1090,7 @@ buildSettings = { BUILD_LIBRARY_FOR_DISTRIBUTION = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 19; + CURRENT_PROJECT_VERSION = 20; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1; @@ -1123,7 +1123,7 @@ buildSettings = { BUILD_LIBRARY_FOR_DISTRIBUTION = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 19; + CURRENT_PROJECT_VERSION = 20; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1; diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index 75bee841..b641760d 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -1,3 +1,8 @@ +1.0.20 +======= +- CXTDT-420885 - CheckboxGroup - Spacing between CheckboxItems +- CXTDT-420483 - Checkbox/CheckboxItem - Corner Radius, State Issues + 1.0.19 ======= - CXTDT-419731 - TextLinkCaret - Spacing issue