From 6902dea1397ad74c6776f7aa994a847ac04eec95 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 14:39:26 -0500 Subject: [PATCH 1/8] CXTDT-544383 - removed 2x and replaced with 3x Signed-off-by: Matt Bruce --- VDS/Components/TileContainer/TileContainer.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index 248093e2..1d415393 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -14,7 +14,7 @@ open class TileContainer: TileContainerBase { /// Enum used to describe the padding choices used for this component. public enum Padding: DefaultValuing { - case padding2X + case padding3X case padding4X case padding6X case padding8X @@ -25,8 +25,8 @@ open class TileContainer: TileContainerBase { public var value: CGFloat { switch self { - case .padding2X: - return VDSLayout.space2X + case .padding3X: + return VDSLayout.space3X case .padding4X: return VDSLayout.space4X case .padding6X: From 07d162c5c0b22fc8f94c68c16f2c0e729f281f7d Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 14:40:39 -0500 Subject: [PATCH 2/8] updated release notes Signed-off-by: Matt Bruce --- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index 62650dfc..878f1f96 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -1,6 +1,7 @@ 1.0.59 ---------------- - CXTDT-540077 - BadgeIndicator Font +- CXTDT-544383 - TileContainer - Removed spacing2x and replaced with spacing3x 1.0.58 ---------------- From a4b0ffd391b7bda781c8dc25db3e1f35f844bfd7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:47:19 -0500 Subject: [PATCH 3/8] CXTDT-544384 - TileContainer Background Image stretch Signed-off-by: Matt Bruce --- .../TileContainer/TileContainer.swift | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index 1d415393..61b91eaf 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -239,12 +239,12 @@ open class TileContainerBase: Control where Padding heightConstraint = layoutGuide.heightAnchor.constraint(equalToConstant: 0) - backgroundImageView - .pinTop(layoutGuide.topAnchor) - .pinLeading(layoutGuide.leadingAnchor) - .pinTrailing(layoutGuide.trailingAnchor) - .pinBottom(layoutGuide.bottomAnchor, 0, .defaultLow) + backgroundImageView.pinToSuperView() + backgroundImageView.setContentHuggingPriority(.defaultLow, for: .horizontal) + backgroundImageView.setContentHuggingPriority(.defaultLow, for: .vertical) + backgroundImageView.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) + backgroundImageView.setContentCompressionResistancePriority(.defaultLow, for: .vertical) backgroundImageView.isUserInteractionEnabled = false backgroundImageView.isHidden = true @@ -286,15 +286,6 @@ open class TileContainerBase: Control where Padding highlightView.backgroundColor = hightLightViewColorConfiguration.getColor(self) highlightView.isHidden = !isHighlighted - if let backgroundImage { - backgroundImageView.image = backgroundImage - backgroundImageView.isHidden = false - backgroundColor = imageFallbackColorConfiguration.getColor(self) - } else { - backgroundImageView.isHidden = true - backgroundColor = backgroundColorConfiguration.getColor(self) - } - layer.borderColor = borderColorConfiguration.getColor(self).cgColor layer.borderWidth = showBorder ? VDSFormControls.borderWidth : 0 From 9404082544bf0fd0d339b32bd2115489c8b1d69d Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:49:27 -0500 Subject: [PATCH 4/8] updated release notes Signed-off-by: Matt Bruce --- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index 878f1f96..4f832b21 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -2,6 +2,7 @@ ---------------- - CXTDT-540077 - BadgeIndicator Font - CXTDT-544383 - TileContainer - Removed spacing2x and replaced with spacing3x +- CXTDT-544384 - TileContainer - BackgroundImage strecthing screen 1.0.58 ---------------- From 2c8279f512d948d6d1f8e38732d61da1c53b3868 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:50:58 -0500 Subject: [PATCH 5/8] added vds scheme Signed-off-by: Matt Bruce --- .../xcshareddata/xcschemes/VDS.xcscheme | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 VDS.xcodeproj/xcshareddata/xcschemes/VDS.xcscheme diff --git a/VDS.xcodeproj/xcshareddata/xcschemes/VDS.xcscheme b/VDS.xcodeproj/xcshareddata/xcschemes/VDS.xcscheme new file mode 100644 index 00000000..470df395 --- /dev/null +++ b/VDS.xcodeproj/xcshareddata/xcschemes/VDS.xcscheme @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + From d57f72aad934616b260faeaa87c12338a4d2019a Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:52:41 -0500 Subject: [PATCH 6/8] updated text Signed-off-by: Matt Bruce --- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index 4f832b21..edb7cb48 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -3,6 +3,7 @@ - CXTDT-540077 - BadgeIndicator Font - CXTDT-544383 - TileContainer - Removed spacing2x and replaced with spacing3x - CXTDT-544384 - TileContainer - BackgroundImage strecthing screen +- CXTDT-546824 - Notification - Accessibility - Improper label for close notification button & icon 1.0.58 ---------------- From 6f0cb9924fce714fff3c67885e7ba130b42aa428 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:54:26 -0500 Subject: [PATCH 7/8] updated release notes Signed-off-by: Matt Bruce --- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index edb7cb48..6f3c0804 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -1,5 +1,6 @@ 1.0.59 ---------------- +- ONEAPP-7135 - DropdownSelect - Finished Development - CXTDT-540077 - BadgeIndicator Font - CXTDT-544383 - TileContainer - Removed spacing2x and replaced with spacing3x - CXTDT-544384 - TileContainer - BackgroundImage strecthing screen From a8e1f96d9b6b30f4d451269d804a817a0047c7da Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 15:55:45 -0500 Subject: [PATCH 8/8] updated version Signed-off-by: Matt Bruce --- VDS.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VDS.xcodeproj/project.pbxproj b/VDS.xcodeproj/project.pbxproj index 9728129c..2a44d3da 100644 --- a/VDS.xcodeproj/project.pbxproj +++ b/VDS.xcodeproj/project.pbxproj @@ -1377,7 +1377,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 58; + CURRENT_PROJECT_VERSION = 59; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1; @@ -1414,7 +1414,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 58; + CURRENT_PROJECT_VERSION = 59; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1;